From e5e42dacf681e6753c2adb95bff82ed921b0fb85 Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Wed, 1 Jul 2026 08:51:41 -0500 Subject: [PATCH 1/2] fix for comment in interpolated string --- .gitignore | 3 + bindings/c/{tree_sitter => }/tree-sitter-nu.h | 0 grammar.js | 4 +- package.json | 10 +- src/grammar.json | 20 +- src/node-types.json | 2 - src/parser.c | 343255 +++++++-------- src/tree_sitter/alloc.h | 8 +- src/tree_sitter/array.h | 184 +- src/tree_sitter/parser.h | 34 +- test/corpus/expr/values.nu | 17 + 11 files changed, 171738 insertions(+), 171799 deletions(-) rename bindings/c/{tree_sitter => }/tree-sitter-nu.h (100%) diff --git a/.gitignore b/.gitignore index fdec7bc4..681c5326 100644 --- a/.gitignore +++ b/.gitignore @@ -46,3 +46,6 @@ zig-out/ *.tar.gz *.tgz *.zip + +# MacOs +.DS_Store \ No newline at end of file diff --git a/bindings/c/tree_sitter/tree-sitter-nu.h b/bindings/c/tree-sitter-nu.h similarity index 100% rename from bindings/c/tree_sitter/tree-sitter-nu.h rename to bindings/c/tree-sitter-nu.h diff --git a/grammar.js b/grammar.js index e56bf9c5..788bc239 100644 --- a/grammar.js +++ b/grammar.js @@ -1007,7 +1007,7 @@ module.exports = grammar({ ), expr_interpolated: $ => - seq(brack().open_paren, $._parenthesized_body, brack().close_paren), + seq(brack().open_paren, optional($._parenthesized_body), brack().close_paren), /// Collections @@ -1308,7 +1308,7 @@ module.exports = grammar({ /// Comments - comment: _ => seq('#', /.*/), + comment: _ => seq('#', /[^)\]}\n]*/), }, }); diff --git a/package.json b/package.json index 10a2d81c..7e4d72ea 100644 --- a/package.json +++ b/package.json @@ -50,5 +50,13 @@ "test": "node --test bindings/node/*_test.js", "lint": "eslint grammar.js", "format": "eslint --fix grammar.js" - } + }, + "tree-sitter": [ + { + "scope": "source.nu", + "injection-regex": "^nu$", + "file-types": ["nu"], + "highlights": "queries/nu/highlights.scm" + } + ] } diff --git a/src/grammar.json b/src/grammar.json index 0b9bcbbc..fbe966d0 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1,5 +1,4 @@ { - "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "nu", "word": "identifier", "rules": { @@ -15202,8 +15201,16 @@ "value": "(" }, { - "type": "SYMBOL", - "name": "_parenthesized_body" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_parenthesized_body" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -17610,7 +17617,7 @@ }, { "type": "PATTERN", - "value": ".*" + "value": "[^)\\]}\\n]*" } ] } @@ -17763,6 +17770,5 @@ "_stringish", "_terminator" ], - "supertypes": [], - "reserved": {} -} \ No newline at end of file + "supertypes": [] +} diff --git a/src/node-types.json b/src/node-types.json index 479cd896..2f367e38 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -562,7 +562,6 @@ { "type": "comment", "named": true, - "extra": true, "fields": {} }, { @@ -2743,7 +2742,6 @@ { "type": "nu_script", "named": true, - "root": true, "fields": {}, "children": { "multiple": true, diff --git a/src/parser.c b/src/parser.c index df971450..e644d1c1 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,5 +1,3 @@ -/* Automatically @generated by tree-sitter */ - #include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) @@ -14,8 +12,8 @@ #pragma GCC optimize ("O0") #endif -#define LANGUAGE_VERSION 15 -#define STATE_COUNT 5533 +#define LANGUAGE_VERSION 14 +#define STATE_COUNT 5535 #define LARGE_STATE_COUNT 1289 #define SYMBOL_COUNT 486 #define ALIAS_COUNT 3 @@ -23,9 +21,7 @@ #define EXTERNAL_TOKEN_COUNT 3 #define FIELD_COUNT 65 #define MAX_ALIAS_SEQUENCE_LENGTH 13 -#define MAX_RESERVED_WORD_SET_SIZE 0 #define PRODUCTION_ID_COUNT 295 -#define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { sym_identifier = 1, @@ -3598,7 +3594,7 @@ static const char * const ts_field_names[] = { [field_wildcard] = "wildcard", }; -static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { +static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [1] = {.index = 0, .length = 3}, [2] = {.index = 3, .length = 1}, [3] = {.index = 4, .length = 4}, @@ -5060,26 +5056,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4] = 3, [5] = 5, [6] = 5, - [7] = 3, - [8] = 5, - [9] = 3, - [10] = 3, - [11] = 3, - [12] = 3, - [13] = 3, - [14] = 3, - [15] = 3, + [7] = 5, + [8] = 3, + [9] = 5, + [10] = 5, + [11] = 5, + [12] = 5, + [13] = 5, + [14] = 5, + [15] = 5, [16] = 16, - [17] = 17, - [18] = 17, + [17] = 16, + [18] = 16, [19] = 16, - [20] = 20, - [21] = 17, - [22] = 17, - [23] = 20, - [24] = 17, - [25] = 17, - [26] = 17, + [20] = 16, + [21] = 21, + [22] = 16, + [23] = 23, + [24] = 23, + [25] = 21, + [26] = 16, [27] = 27, [28] = 27, [29] = 27, @@ -5089,667 +5085,667 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [33] = 27, [34] = 27, [35] = 35, - [36] = 36, + [36] = 35, [37] = 37, [38] = 37, [39] = 39, [40] = 40, - [41] = 39, - [42] = 42, - [43] = 35, - [44] = 40, - [45] = 36, + [41] = 37, + [42] = 35, + [43] = 43, + [44] = 35, + [45] = 39, [46] = 37, - [47] = 40, - [48] = 42, - [49] = 35, - [50] = 36, - [51] = 37, - [52] = 52, - [53] = 37, - [54] = 42, - [55] = 35, - [56] = 36, - [57] = 37, - [58] = 42, - [59] = 35, - [60] = 36, - [61] = 37, - [62] = 42, - [63] = 35, - [64] = 36, - [65] = 42, + [47] = 39, + [48] = 37, + [49] = 43, + [50] = 39, + [51] = 39, + [52] = 40, + [53] = 53, + [54] = 35, + [55] = 43, + [56] = 39, + [57] = 43, + [58] = 39, + [59] = 43, + [60] = 40, + [61] = 35, + [62] = 37, + [63] = 37, + [64] = 35, + [65] = 65, [66] = 35, - [67] = 36, - [68] = 35, - [69] = 35, - [70] = 35, - [71] = 35, - [72] = 37, - [73] = 42, - [74] = 74, - [75] = 75, + [67] = 35, + [68] = 43, + [69] = 43, + [70] = 39, + [71] = 71, + [72] = 71, + [73] = 65, + [74] = 35, + [75] = 35, [76] = 76, [77] = 77, - [78] = 74, - [79] = 74, - [80] = 75, - [81] = 77, + [78] = 78, + [79] = 77, + [80] = 77, + [81] = 76, [82] = 82, [83] = 83, - [84] = 84, + [84] = 83, [85] = 85, - [86] = 84, - [87] = 87, - [88] = 88, - [89] = 84, - [90] = 87, - [91] = 87, + [86] = 86, + [87] = 82, + [88] = 83, + [89] = 89, + [90] = 82, + [91] = 91, [92] = 92, [93] = 93, [94] = 92, - [95] = 93, - [96] = 92, - [97] = 93, + [95] = 95, + [96] = 96, + [97] = 92, [98] = 93, - [99] = 92, - [100] = 100, - [101] = 101, - [102] = 92, - [103] = 101, - [104] = 100, - [105] = 105, - [106] = 100, - [107] = 93, - [108] = 108, - [109] = 100, + [99] = 93, + [100] = 92, + [101] = 93, + [102] = 102, + [103] = 103, + [104] = 96, + [105] = 93, + [106] = 95, + [107] = 107, + [108] = 95, + [109] = 109, [110] = 110, - [111] = 111, - [112] = 101, - [113] = 113, - [114] = 101, - [115] = 115, - [116] = 100, - [117] = 117, - [118] = 92, - [119] = 108, - [120] = 113, - [121] = 108, - [122] = 115, - [123] = 115, - [124] = 110, - [125] = 108, - [126] = 105, - [127] = 93, - [128] = 115, - [129] = 113, - [130] = 105, - [131] = 105, - [132] = 101, - [133] = 113, + [111] = 92, + [112] = 95, + [113] = 96, + [114] = 114, + [115] = 96, + [116] = 107, + [117] = 103, + [118] = 102, + [119] = 103, + [120] = 110, + [121] = 107, + [122] = 103, + [123] = 110, + [124] = 107, + [125] = 92, + [126] = 110, + [127] = 102, + [128] = 95, + [129] = 96, + [130] = 102, + [131] = 109, + [132] = 93, + [133] = 133, [134] = 134, - [135] = 135, - [136] = 134, + [135] = 102, + [136] = 95, [137] = 137, - [138] = 138, + [138] = 96, [139] = 139, - [140] = 140, - [141] = 135, - [142] = 101, + [140] = 139, + [141] = 141, + [142] = 141, [143] = 143, - [144] = 143, - [145] = 105, + [144] = 144, + [145] = 143, [146] = 146, - [147] = 147, - [148] = 147, - [149] = 135, - [150] = 140, - [151] = 137, - [152] = 108, - [153] = 146, - [154] = 154, - [155] = 135, - [156] = 154, - [157] = 138, - [158] = 139, - [159] = 140, - [160] = 115, - [161] = 143, - [162] = 135, - [163] = 138, - [164] = 113, - [165] = 140, - [166] = 139, + [147] = 103, + [148] = 110, + [149] = 107, + [150] = 144, + [151] = 134, + [152] = 152, + [153] = 153, + [154] = 146, + [155] = 144, + [156] = 152, + [157] = 144, + [158] = 146, + [159] = 144, + [160] = 143, + [161] = 152, + [162] = 153, + [163] = 137, + [164] = 164, + [165] = 134, + [166] = 137, [167] = 143, - [168] = 138, - [169] = 139, - [170] = 147, - [171] = 100, + [168] = 134, + [169] = 137, + [170] = 146, + [171] = 164, [172] = 172, [173] = 173, [174] = 173, [175] = 173, - [176] = 108, - [177] = 177, - [178] = 177, - [179] = 177, - [180] = 173, - [181] = 173, - [182] = 173, + [176] = 172, + [177] = 172, + [178] = 172, + [179] = 172, + [180] = 180, + [181] = 172, + [182] = 110, [183] = 173, - [184] = 177, + [184] = 172, [185] = 173, - [186] = 177, - [187] = 105, - [188] = 113, - [189] = 115, - [190] = 173, - [191] = 191, + [186] = 102, + [187] = 172, + [188] = 107, + [189] = 172, + [190] = 190, + [191] = 103, [192] = 192, [193] = 193, - [194] = 192, - [195] = 193, - [196] = 192, + [194] = 193, + [195] = 192, + [196] = 193, [197] = 192, - [198] = 193, + [198] = 192, [199] = 193, [200] = 192, [201] = 193, [202] = 193, [203] = 192, - [204] = 110, + [204] = 109, [205] = 205, - [206] = 206, + [206] = 205, [207] = 207, [208] = 208, [209] = 209, - [210] = 210, + [210] = 205, [211] = 211, [212] = 212, - [213] = 213, - [214] = 214, - [215] = 205, + [213] = 211, + [214] = 209, + [215] = 208, [216] = 216, [217] = 217, - [218] = 218, - [219] = 219, + [218] = 207, + [219] = 212, [220] = 220, - [221] = 206, - [222] = 207, - [223] = 208, - [224] = 209, + [221] = 221, + [222] = 222, + [223] = 223, + [224] = 224, [225] = 225, - [226] = 226, - [227] = 227, + [226] = 207, + [227] = 208, [228] = 228, [229] = 229, [230] = 230, [231] = 231, [232] = 232, - [233] = 233, - [234] = 225, - [235] = 226, - [236] = 227, - [237] = 228, + [233] = 232, + [234] = 231, + [235] = 224, + [236] = 222, + [237] = 230, [238] = 229, - [239] = 230, - [240] = 231, - [241] = 220, - [242] = 233, - [243] = 210, - [244] = 211, - [245] = 212, - [246] = 213, - [247] = 214, - [248] = 216, - [249] = 217, - [250] = 218, - [251] = 219, - [252] = 220, - [253] = 206, - [254] = 207, - [255] = 208, - [256] = 209, - [257] = 225, - [258] = 226, - [259] = 227, - [260] = 228, - [261] = 229, - [262] = 230, - [263] = 231, - [264] = 232, - [265] = 233, - [266] = 210, - [267] = 211, - [268] = 212, - [269] = 218, - [270] = 213, - [271] = 214, - [272] = 205, - [273] = 216, - [274] = 217, - [275] = 219, - [276] = 232, + [239] = 228, + [240] = 209, + [241] = 217, + [242] = 242, + [243] = 220, + [244] = 244, + [245] = 221, + [246] = 223, + [247] = 225, + [248] = 248, + [249] = 225, + [250] = 244, + [251] = 223, + [252] = 252, + [253] = 253, + [254] = 242, + [255] = 248, + [256] = 221, + [257] = 216, + [258] = 220, + [259] = 212, + [260] = 244, + [261] = 222, + [262] = 224, + [263] = 253, + [264] = 228, + [265] = 217, + [266] = 248, + [267] = 242, + [268] = 253, + [269] = 252, + [270] = 211, + [271] = 229, + [272] = 230, + [273] = 231, + [274] = 232, + [275] = 216, + [276] = 252, [277] = 277, [278] = 277, [279] = 279, - [280] = 280, + [280] = 279, [281] = 277, - [282] = 280, - [283] = 280, - [284] = 277, - [285] = 280, - [286] = 277, - [287] = 280, + [282] = 282, + [283] = 282, + [284] = 279, + [285] = 279, + [286] = 282, + [287] = 277, [288] = 279, - [289] = 279, + [289] = 277, [290] = 93, [291] = 93, - [292] = 92, + [292] = 93, [293] = 92, - [294] = 93, + [294] = 92, [295] = 92, - [296] = 100, - [297] = 101, - [298] = 93, - [299] = 101, - [300] = 100, - [301] = 101, - [302] = 92, - [303] = 100, - [304] = 105, - [305] = 105, - [306] = 115, - [307] = 108, - [308] = 108, - [309] = 113, - [310] = 105, - [311] = 113, - [312] = 92, - [313] = 101, - [314] = 93, - [315] = 100, - [316] = 115, - [317] = 115, - [318] = 113, - [319] = 108, - [320] = 108, - [321] = 115, - [322] = 101, - [323] = 105, - [324] = 100, - [325] = 113, - [326] = 115, - [327] = 113, - [328] = 108, - [329] = 105, + [296] = 96, + [297] = 96, + [298] = 95, + [299] = 96, + [300] = 92, + [301] = 95, + [302] = 93, + [303] = 95, + [304] = 95, + [305] = 110, + [306] = 96, + [307] = 110, + [308] = 93, + [309] = 107, + [310] = 102, + [311] = 110, + [312] = 103, + [313] = 102, + [314] = 102, + [315] = 107, + [316] = 103, + [317] = 92, + [318] = 107, + [319] = 103, + [320] = 107, + [321] = 95, + [322] = 103, + [323] = 110, + [324] = 96, + [325] = 102, + [326] = 107, + [327] = 102, + [328] = 110, + [329] = 103, [330] = 330, [331] = 330, [332] = 330, - [333] = 192, + [333] = 193, [334] = 193, - [335] = 193, + [335] = 192, [336] = 192, [337] = 192, [338] = 193, [339] = 193, [340] = 192, - [341] = 192, - [342] = 193, + [341] = 193, + [342] = 192, [343] = 343, [344] = 344, [345] = 345, - [346] = 344, - [347] = 345, + [346] = 345, + [347] = 344, [348] = 348, [349] = 349, [350] = 350, - [351] = 350, - [352] = 352, - [353] = 353, + [351] = 349, + [352] = 349, + [353] = 349, [354] = 354, [355] = 350, [356] = 356, [357] = 357, - [358] = 352, - [359] = 353, - [360] = 350, - [361] = 350, - [362] = 348, - [363] = 356, - [364] = 357, - [365] = 350, + [358] = 358, + [359] = 349, + [360] = 360, + [361] = 349, + [362] = 357, + [363] = 348, + [364] = 358, + [365] = 349, [366] = 366, - [367] = 350, + [367] = 349, [368] = 368, - [369] = 369, - [370] = 350, - [371] = 350, - [372] = 350, - [373] = 350, - [374] = 374, - [375] = 374, - [376] = 349, - [377] = 354, - [378] = 378, - [379] = 379, - [380] = 344, + [369] = 368, + [370] = 366, + [371] = 371, + [372] = 349, + [373] = 349, + [374] = 349, + [375] = 375, + [376] = 360, + [377] = 371, + [378] = 344, + [379] = 345, + [380] = 380, [381] = 343, - [382] = 345, - [383] = 383, - [384] = 378, - [385] = 366, - [386] = 352, - [387] = 368, - [388] = 353, + [382] = 382, + [383] = 380, + [384] = 384, + [385] = 385, + [386] = 386, + [387] = 387, + [388] = 356, [389] = 389, - [390] = 354, - [391] = 348, - [392] = 392, - [393] = 356, - [394] = 357, - [395] = 392, + [390] = 389, + [391] = 391, + [392] = 389, + [393] = 375, + [394] = 389, + [395] = 348, [396] = 389, [397] = 389, - [398] = 398, + [398] = 368, [399] = 399, - [400] = 389, - [401] = 389, - [402] = 402, - [403] = 389, - [404] = 374, - [405] = 389, - [406] = 392, + [400] = 366, + [401] = 354, + [402] = 360, + [403] = 350, + [404] = 357, + [405] = 358, + [406] = 389, [407] = 389, - [408] = 349, - [409] = 409, - [410] = 389, - [411] = 369, + [408] = 399, + [409] = 389, + [410] = 399, + [411] = 371, [412] = 412, [413] = 413, [414] = 414, - [415] = 383, - [416] = 378, + [415] = 415, + [416] = 416, [417] = 417, - [418] = 418, - [419] = 345, - [420] = 420, - [421] = 421, - [422] = 409, - [423] = 423, - [424] = 424, + [418] = 343, + [419] = 419, + [420] = 344, + [421] = 382, + [422] = 422, + [423] = 386, + [424] = 380, [425] = 425, - [426] = 343, - [427] = 353, - [428] = 349, - [429] = 93, - [430] = 369, - [431] = 383, - [432] = 344, - [433] = 356, - [434] = 354, - [435] = 368, - [436] = 352, - [437] = 413, - [438] = 374, + [426] = 426, + [427] = 360, + [428] = 93, + [429] = 366, + [430] = 368, + [431] = 422, + [432] = 371, + [433] = 345, + [434] = 343, + [435] = 375, + [436] = 348, + [437] = 419, + [438] = 382, [439] = 357, - [440] = 343, - [441] = 92, - [442] = 366, - [443] = 399, - [444] = 402, - [445] = 445, - [446] = 425, - [447] = 348, - [448] = 100, + [440] = 350, + [441] = 387, + [442] = 442, + [443] = 92, + [444] = 356, + [445] = 391, + [446] = 358, + [447] = 354, + [448] = 354, [449] = 449, - [450] = 101, - [451] = 369, - [452] = 452, + [450] = 93, + [451] = 417, + [452] = 413, [453] = 453, - [454] = 424, - [455] = 417, - [456] = 418, - [457] = 421, - [458] = 458, - [459] = 459, - [460] = 460, - [461] = 458, - [462] = 452, - [463] = 463, - [464] = 458, - [465] = 412, - [466] = 466, - [467] = 449, - [468] = 378, - [469] = 420, - [470] = 449, - [471] = 93, - [472] = 366, - [473] = 452, - [474] = 458, - [475] = 458, - [476] = 458, - [477] = 458, - [478] = 458, - [479] = 368, - [480] = 92, - [481] = 115, + [454] = 414, + [455] = 95, + [456] = 449, + [457] = 426, + [458] = 425, + [459] = 449, + [460] = 380, + [461] = 461, + [462] = 449, + [463] = 453, + [464] = 96, + [465] = 415, + [466] = 375, + [467] = 467, + [468] = 468, + [469] = 469, + [470] = 470, + [471] = 453, + [472] = 461, + [473] = 473, + [474] = 449, + [475] = 449, + [476] = 449, + [477] = 449, + [478] = 356, + [479] = 92, + [480] = 461, + [481] = 95, [482] = 482, - [483] = 113, + [483] = 483, [484] = 484, - [485] = 449, - [486] = 100, - [487] = 105, - [488] = 101, + [485] = 461, + [486] = 96, + [487] = 103, + [488] = 488, [489] = 489, - [490] = 460, - [491] = 491, - [492] = 492, + [490] = 473, + [491] = 110, + [492] = 102, [493] = 493, - [494] = 466, - [495] = 357, - [496] = 496, - [497] = 383, - [498] = 348, - [499] = 499, - [500] = 356, + [494] = 467, + [495] = 358, + [496] = 360, + [497] = 345, + [498] = 344, + [499] = 461, + [500] = 348, [501] = 501, [502] = 502, - [503] = 503, - [504] = 352, - [505] = 459, - [506] = 344, - [507] = 414, - [508] = 354, - [509] = 509, - [510] = 510, - [511] = 511, - [512] = 512, - [513] = 353, - [514] = 514, - [515] = 423, + [503] = 416, + [504] = 504, + [505] = 505, + [506] = 110, + [507] = 507, + [508] = 508, + [509] = 371, + [510] = 412, + [511] = 469, + [512] = 468, + [513] = 357, + [514] = 350, + [515] = 515, [516] = 516, [517] = 517, [518] = 518, - [519] = 345, - [520] = 520, - [521] = 466, - [522] = 115, - [523] = 453, - [524] = 113, - [525] = 449, - [526] = 105, + [519] = 519, + [520] = 382, + [521] = 103, + [522] = 522, + [523] = 102, + [524] = 524, + [525] = 525, + [526] = 467, [527] = 527, [528] = 528, [529] = 529, [530] = 530, - [531] = 531, + [531] = 527, [532] = 532, [533] = 533, [534] = 534, [535] = 535, - [536] = 492, - [537] = 537, + [536] = 536, + [537] = 536, [538] = 538, - [539] = 539, + [539] = 528, [540] = 540, [541] = 541, [542] = 542, - [543] = 543, + [543] = 493, [544] = 544, - [545] = 545, + [545] = 535, [546] = 546, [547] = 547, [548] = 548, - [549] = 549, - [550] = 528, - [551] = 529, - [552] = 530, + [549] = 536, + [550] = 550, + [551] = 551, + [552] = 552, [553] = 553, - [554] = 531, - [555] = 555, - [556] = 538, - [557] = 540, - [558] = 553, - [559] = 555, + [554] = 541, + [555] = 550, + [556] = 556, + [557] = 557, + [558] = 558, + [559] = 559, [560] = 560, [561] = 561, - [562] = 562, - [563] = 560, - [564] = 564, + [562] = 530, + [563] = 563, + [564] = 542, [565] = 565, [566] = 566, - [567] = 561, - [568] = 568, - [569] = 569, + [567] = 567, + [568] = 540, + [569] = 560, [570] = 570, - [571] = 562, - [572] = 564, - [573] = 538, - [574] = 540, - [575] = 553, - [576] = 555, - [577] = 560, - [578] = 561, - [579] = 562, - [580] = 564, - [581] = 565, - [582] = 566, - [583] = 568, - [584] = 569, - [585] = 570, - [586] = 374, - [587] = 565, - [588] = 566, - [589] = 589, - [590] = 590, + [571] = 571, + [572] = 572, + [573] = 573, + [574] = 574, + [575] = 571, + [576] = 576, + [577] = 577, + [578] = 578, + [579] = 542, + [580] = 368, + [581] = 488, + [582] = 582, + [583] = 573, + [584] = 584, + [585] = 577, + [586] = 582, + [587] = 577, + [588] = 588, + [589] = 538, + [590] = 566, [591] = 591, [592] = 592, - [593] = 593, + [593] = 582, [594] = 594, - [595] = 595, - [596] = 596, + [595] = 588, + [596] = 594, [597] = 597, [598] = 598, - [599] = 599, - [600] = 527, - [601] = 601, - [602] = 602, - [603] = 603, - [604] = 604, - [605] = 605, - [606] = 606, - [607] = 607, - [608] = 608, - [609] = 609, - [610] = 610, - [611] = 611, - [612] = 612, - [613] = 532, - [614] = 534, - [615] = 615, - [616] = 568, - [617] = 569, - [618] = 541, - [619] = 542, - [620] = 543, - [621] = 544, - [622] = 545, - [623] = 546, - [624] = 547, - [625] = 548, - [626] = 549, - [627] = 607, - [628] = 529, - [629] = 530, - [630] = 531, - [631] = 570, - [632] = 349, + [599] = 588, + [600] = 600, + [601] = 532, + [602] = 533, + [603] = 534, + [604] = 547, + [605] = 548, + [606] = 584, + [607] = 563, + [608] = 597, + [609] = 546, + [610] = 528, + [611] = 530, + [612] = 527, + [613] = 535, + [614] = 532, + [615] = 533, + [616] = 534, + [617] = 547, + [618] = 618, + [619] = 619, + [620] = 565, + [621] = 567, + [622] = 574, + [623] = 560, + [624] = 557, + [625] = 578, + [626] = 538, + [627] = 541, + [628] = 591, + [629] = 571, + [630] = 591, + [631] = 631, + [632] = 550, [633] = 633, [634] = 634, - [635] = 609, - [636] = 589, - [637] = 590, - [638] = 591, - [639] = 592, - [640] = 593, - [641] = 594, - [642] = 595, - [643] = 596, - [644] = 597, - [645] = 598, - [646] = 599, - [647] = 527, - [648] = 601, - [649] = 649, - [650] = 602, - [651] = 603, - [652] = 652, - [653] = 604, - [654] = 605, - [655] = 606, - [656] = 607, - [657] = 608, - [658] = 609, - [659] = 491, - [660] = 589, - [661] = 610, - [662] = 611, - [663] = 590, - [664] = 591, - [665] = 612, - [666] = 532, - [667] = 343, - [668] = 534, - [669] = 610, - [670] = 611, - [671] = 612, - [672] = 592, - [673] = 593, - [674] = 594, - [675] = 608, - [676] = 541, - [677] = 542, - [678] = 595, - [679] = 543, - [680] = 596, - [681] = 597, - [682] = 544, - [683] = 598, - [684] = 599, - [685] = 545, - [686] = 601, - [687] = 602, - [688] = 546, - [689] = 547, - [690] = 603, - [691] = 604, - [692] = 548, - [693] = 549, - [694] = 605, - [695] = 606, - [696] = 528, + [635] = 635, + [636] = 559, + [637] = 576, + [638] = 638, + [639] = 366, + [640] = 548, + [641] = 563, + [642] = 600, + [643] = 598, + [644] = 644, + [645] = 597, + [646] = 565, + [647] = 567, + [648] = 648, + [649] = 574, + [650] = 556, + [651] = 578, + [652] = 634, + [653] = 648, + [654] = 654, + [655] = 573, + [656] = 598, + [657] = 657, + [658] = 634, + [659] = 600, + [660] = 618, + [661] = 558, + [662] = 631, + [663] = 663, + [664] = 561, + [665] = 633, + [666] = 566, + [667] = 657, + [668] = 556, + [669] = 654, + [670] = 657, + [671] = 663, + [672] = 540, + [673] = 654, + [674] = 558, + [675] = 592, + [676] = 644, + [677] = 592, + [678] = 663, + [679] = 644, + [680] = 638, + [681] = 638, + [682] = 343, + [683] = 648, + [684] = 584, + [685] = 635, + [686] = 633, + [687] = 631, + [688] = 618, + [689] = 576, + [690] = 690, + [691] = 561, + [692] = 635, + [693] = 594, + [694] = 559, + [695] = 557, + [696] = 546, [697] = 697, [698] = 698, [699] = 699, @@ -5757,16 +5753,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [701] = 701, [702] = 702, [703] = 703, - [704] = 704, + [704] = 468, [705] = 705, [706] = 706, [707] = 707, [708] = 708, - [709] = 459, + [709] = 709, [710] = 710, [711] = 711, - [712] = 712, - [713] = 713, + [712] = 375, + [713] = 356, [714] = 714, [715] = 715, [716] = 716, @@ -5774,42 +5770,42 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [718] = 718, [719] = 719, [720] = 720, - [721] = 633, - [722] = 722, + [721] = 721, + [722] = 380, [723] = 723, - [724] = 634, - [725] = 517, - [726] = 726, - [727] = 369, + [724] = 724, + [725] = 725, + [726] = 469, + [727] = 727, [728] = 728, [729] = 729, [730] = 730, [731] = 731, - [732] = 732, + [732] = 522, [733] = 733, - [734] = 501, + [734] = 551, [735] = 735, - [736] = 736, - [737] = 366, - [738] = 516, + [736] = 524, + [737] = 515, + [738] = 572, [739] = 739, - [740] = 453, - [741] = 502, - [742] = 368, + [740] = 740, + [741] = 525, + [742] = 742, [743] = 743, [744] = 744, - [745] = 378, - [746] = 746, - [747] = 747, + [745] = 745, + [746] = 354, + [747] = 488, [748] = 748, [749] = 749, [750] = 750, [751] = 751, [752] = 752, [753] = 753, - [754] = 754, + [754] = 516, [755] = 755, - [756] = 499, + [756] = 756, [757] = 757, [758] = 758, [759] = 759, @@ -5831,11 +5827,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [775] = 775, [776] = 776, [777] = 777, - [778] = 778, + [778] = 519, [779] = 779, - [780] = 780, + [780] = 777, [781] = 781, - [782] = 782, + [782] = 748, [783] = 783, [784] = 784, [785] = 785, @@ -5844,218 +5840,218 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [788] = 788, [789] = 789, [790] = 790, - [791] = 509, + [791] = 791, [792] = 792, - [793] = 510, + [793] = 793, [794] = 794, [795] = 795, [796] = 796, - [797] = 514, - [798] = 459, + [797] = 797, + [798] = 798, [799] = 799, - [800] = 649, + [800] = 800, [801] = 801, [802] = 802, [803] = 803, - [804] = 453, - [805] = 805, - [806] = 806, + [804] = 469, + [805] = 756, + [806] = 468, [807] = 807, [808] = 808, - [809] = 809, - [810] = 810, - [811] = 459, + [809] = 797, + [810] = 790, + [811] = 811, [812] = 812, - [813] = 813, - [814] = 814, - [815] = 491, - [816] = 492, - [817] = 817, + [813] = 756, + [814] = 789, + [815] = 815, + [816] = 797, + [817] = 790, [818] = 818, [819] = 819, [820] = 820, - [821] = 821, - [822] = 771, + [821] = 789, + [822] = 822, [823] = 823, - [824] = 772, - [825] = 825, - [826] = 826, - [827] = 827, - [828] = 511, - [829] = 829, - [830] = 773, + [824] = 788, + [825] = 788, + [826] = 786, + [827] = 785, + [828] = 784, + [829] = 748, + [830] = 781, [831] = 831, - [832] = 774, - [833] = 833, + [832] = 776, + [833] = 773, [834] = 834, - [835] = 775, - [836] = 836, - [837] = 776, - [838] = 838, - [839] = 771, - [840] = 772, - [841] = 773, - [842] = 774, - [843] = 775, - [844] = 776, - [845] = 777, - [846] = 778, - [847] = 779, - [848] = 780, - [849] = 781, - [850] = 782, - [851] = 783, - [852] = 777, - [853] = 778, - [854] = 779, - [855] = 780, - [856] = 781, - [857] = 782, - [858] = 858, - [859] = 859, - [860] = 860, + [835] = 786, + [836] = 785, + [837] = 493, + [838] = 784, + [839] = 839, + [840] = 748, + [841] = 841, + [842] = 781, + [843] = 843, + [844] = 844, + [845] = 845, + [846] = 846, + [847] = 777, + [848] = 848, + [849] = 797, + [850] = 850, + [851] = 851, + [852] = 852, + [853] = 508, + [854] = 797, + [855] = 773, + [856] = 756, + [857] = 857, + [858] = 776, + [859] = 776, + [860] = 790, [861] = 861, [862] = 862, [863] = 863, - [864] = 864, - [865] = 865, - [866] = 866, - [867] = 867, - [868] = 771, - [869] = 772, - [870] = 773, - [871] = 774, - [872] = 775, - [873] = 776, - [874] = 777, - [875] = 778, - [876] = 779, - [877] = 780, - [878] = 781, - [879] = 782, - [880] = 783, - [881] = 881, + [864] = 773, + [865] = 777, + [866] = 781, + [867] = 789, + [868] = 868, + [869] = 869, + [870] = 870, + [871] = 788, + [872] = 784, + [873] = 873, + [874] = 874, + [875] = 875, + [876] = 786, + [877] = 785, + [878] = 878, + [879] = 879, + [880] = 880, + [881] = 784, [882] = 882, - [883] = 883, - [884] = 783, - [885] = 885, + [883] = 748, + [884] = 781, + [885] = 777, [886] = 886, [887] = 887, - [888] = 888, + [888] = 776, [889] = 889, - [890] = 771, - [891] = 772, - [892] = 773, - [893] = 774, - [894] = 771, - [895] = 772, - [896] = 773, - [897] = 774, - [898] = 775, - [899] = 776, - [900] = 777, - [901] = 778, - [902] = 779, - [903] = 780, - [904] = 781, - [905] = 782, - [906] = 783, - [907] = 775, - [908] = 776, - [909] = 777, - [910] = 778, - [911] = 779, - [912] = 780, - [913] = 781, - [914] = 782, - [915] = 783, + [890] = 773, + [891] = 891, + [892] = 892, + [893] = 893, + [894] = 553, + [895] = 756, + [896] = 896, + [897] = 897, + [898] = 790, + [899] = 899, + [900] = 900, + [901] = 901, + [902] = 501, + [903] = 469, + [904] = 789, + [905] = 788, + [906] = 786, + [907] = 785, + [908] = 504, + [909] = 784, + [910] = 748, + [911] = 781, + [912] = 912, + [913] = 517, + [914] = 777, + [915] = 915, [916] = 916, - [917] = 917, - [918] = 918, - [919] = 518, + [917] = 785, + [918] = 786, + [919] = 788, [920] = 920, - [921] = 921, - [922] = 922, + [921] = 776, + [922] = 773, [923] = 923, - [924] = 924, - [925] = 925, - [926] = 926, - [927] = 927, - [928] = 716, + [924] = 797, + [925] = 789, + [926] = 790, + [927] = 756, + [928] = 928, [929] = 929, [930] = 930, [931] = 931, [932] = 932, - [933] = 512, - [934] = 722, - [935] = 935, - [936] = 708, - [937] = 493, - [938] = 717, + [933] = 933, + [934] = 934, + [935] = 483, + [936] = 936, + [937] = 937, + [938] = 938, [939] = 939, - [940] = 520, - [941] = 730, + [940] = 940, + [941] = 941, [942] = 942, - [943] = 517, + [943] = 943, [944] = 944, - [945] = 502, - [946] = 516, - [947] = 383, + [945] = 945, + [946] = 946, + [947] = 947, [948] = 948, - [949] = 949, - [950] = 491, - [951] = 935, - [952] = 952, - [953] = 953, - [954] = 715, + [949] = 502, + [950] = 525, + [951] = 951, + [952] = 740, + [953] = 742, + [954] = 954, [955] = 955, - [956] = 956, - [957] = 718, - [958] = 719, + [956] = 507, + [957] = 745, + [958] = 958, [959] = 959, [960] = 960, [961] = 961, - [962] = 699, - [963] = 963, - [964] = 964, - [965] = 965, - [966] = 966, + [962] = 716, + [963] = 697, + [964] = 484, + [965] = 725, + [966] = 731, [967] = 967, - [968] = 968, + [968] = 515, [969] = 969, - [970] = 970, + [970] = 524, [971] = 971, [972] = 972, [973] = 973, [974] = 974, - [975] = 975, + [975] = 493, [976] = 976, [977] = 977, - [978] = 978, - [979] = 979, + [978] = 382, + [979] = 706, [980] = 980, - [981] = 482, - [982] = 492, - [983] = 983, + [981] = 981, + [982] = 739, + [983] = 488, [984] = 984, [985] = 985, [986] = 986, - [987] = 987, - [988] = 935, - [989] = 989, + [987] = 974, + [988] = 988, + [989] = 974, [990] = 990, [991] = 991, [992] = 992, [993] = 993, - [994] = 952, + [994] = 994, [995] = 995, [996] = 996, [997] = 997, [998] = 998, - [999] = 999, - [1000] = 931, + [999] = 524, + [1000] = 1000, [1001] = 1001, - [1002] = 932, + [1002] = 1002, [1003] = 1003, [1004] = 1004, [1005] = 1005, @@ -6063,28 +6059,28 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1007] = 1007, [1008] = 1008, [1009] = 1009, - [1010] = 1010, - [1011] = 960, + [1010] = 733, + [1011] = 729, [1012] = 1012, [1013] = 1013, - [1014] = 961, + [1014] = 1014, [1015] = 1015, [1016] = 1016, [1017] = 1017, [1018] = 1018, [1019] = 1019, - [1020] = 987, + [1020] = 1020, [1021] = 1021, - [1022] = 956, + [1022] = 515, [1023] = 1023, [1024] = 1024, - [1025] = 743, + [1025] = 718, [1026] = 1026, - [1027] = 698, + [1027] = 730, [1028] = 1028, [1029] = 1029, [1030] = 1030, - [1031] = 1031, + [1031] = 996, [1032] = 1032, [1033] = 1033, [1034] = 1034, @@ -6092,15 +6088,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1036] = 1036, [1037] = 1037, [1038] = 1038, - [1039] = 1039, + [1039] = 961, [1040] = 1040, [1041] = 1041, [1042] = 1042, [1043] = 1043, [1044] = 1044, - [1045] = 1045, + [1045] = 946, [1046] = 1046, - [1047] = 1047, + [1047] = 1007, [1048] = 1048, [1049] = 1049, [1050] = 1050, @@ -6118,89 +6114,89 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1062] = 1062, [1063] = 1063, [1064] = 1064, - [1065] = 1065, + [1065] = 1007, [1066] = 1066, [1067] = 1067, [1068] = 1068, [1069] = 1069, - [1070] = 1070, + [1070] = 525, [1071] = 1071, - [1072] = 1072, + [1072] = 980, [1073] = 1073, [1074] = 1074, [1075] = 1075, [1076] = 1076, - [1077] = 1077, - [1078] = 1018, - [1079] = 1079, - [1080] = 1080, + [1077] = 985, + [1078] = 996, + [1079] = 977, + [1080] = 469, [1081] = 1081, [1082] = 1082, - [1083] = 1083, - [1084] = 1084, + [1083] = 967, + [1084] = 954, [1085] = 1085, [1086] = 1086, [1087] = 1087, - [1088] = 1088, - [1089] = 700, - [1090] = 701, - [1091] = 702, - [1092] = 703, - [1093] = 1093, - [1094] = 1094, - [1095] = 1064, - [1096] = 704, - [1097] = 1097, - [1098] = 705, - [1099] = 706, - [1100] = 1100, - [1101] = 707, - [1102] = 710, - [1103] = 459, - [1104] = 711, - [1105] = 1105, - [1106] = 712, + [1088] = 1086, + [1089] = 1089, + [1090] = 1090, + [1091] = 1091, + [1092] = 1092, + [1093] = 1001, + [1094] = 714, + [1095] = 1002, + [1096] = 1003, + [1097] = 916, + [1098] = 1098, + [1099] = 1099, + [1100] = 707, + [1101] = 1101, + [1102] = 1102, + [1103] = 1103, + [1104] = 1104, + [1105] = 724, + [1106] = 1106, [1107] = 1107, [1108] = 1108, - [1109] = 517, - [1110] = 502, + [1109] = 1109, + [1110] = 728, [1111] = 1111, - [1112] = 516, + [1112] = 1112, [1113] = 1113, [1114] = 1114, - [1115] = 1115, - [1116] = 723, - [1117] = 1117, - [1118] = 713, - [1119] = 714, - [1120] = 1120, + [1115] = 698, + [1116] = 1116, + [1117] = 735, + [1118] = 1118, + [1119] = 1119, + [1120] = 727, [1121] = 1121, - [1122] = 1122, + [1122] = 934, [1123] = 1123, - [1124] = 1018, - [1125] = 1029, - [1126] = 1030, - [1127] = 1031, + [1124] = 1124, + [1125] = 720, + [1126] = 1126, + [1127] = 711, [1128] = 1128, - [1129] = 1032, - [1130] = 887, + [1129] = 1129, + [1130] = 988, [1131] = 1131, [1132] = 1132, - [1133] = 929, + [1133] = 721, [1134] = 1134, - [1135] = 1135, + [1135] = 700, [1136] = 1136, - [1137] = 949, - [1138] = 1138, + [1137] = 1137, + [1138] = 703, [1139] = 1139, [1140] = 1140, [1141] = 1141, [1142] = 1142, [1143] = 1143, - [1144] = 729, - [1145] = 1032, + [1144] = 1144, + [1145] = 1145, [1146] = 1146, - [1147] = 1147, + [1147] = 708, [1148] = 1148, [1149] = 1149, [1150] = 1150, @@ -6215,22 +6211,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1159] = 1159, [1160] = 1160, [1161] = 1161, - [1162] = 1093, - [1163] = 1094, - [1164] = 733, + [1162] = 1162, + [1163] = 1163, + [1164] = 1164, [1165] = 1165, [1166] = 1166, [1167] = 1167, - [1168] = 1168, - [1169] = 917, - [1170] = 1170, + [1168] = 802, + [1169] = 1169, + [1170] = 715, [1171] = 1171, - [1172] = 736, - [1173] = 1173, + [1172] = 1172, + [1173] = 801, [1174] = 1174, [1175] = 1175, [1176] = 1176, - [1177] = 1177, + [1177] = 800, [1178] = 1178, [1179] = 1179, [1180] = 1180, @@ -6241,46 +6237,46 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1185] = 1185, [1186] = 1186, [1187] = 1187, - [1188] = 759, + [1188] = 1188, [1189] = 1189, [1190] = 1190, [1191] = 1191, [1192] = 1192, [1193] = 1193, - [1194] = 1194, + [1194] = 1165, [1195] = 1195, [1196] = 1196, [1197] = 1197, [1198] = 1198, [1199] = 1199, - [1200] = 749, + [1200] = 1200, [1201] = 1201, - [1202] = 750, + [1202] = 1090, [1203] = 1203, - [1204] = 1204, - [1205] = 1205, - [1206] = 1206, + [1204] = 1092, + [1205] = 755, + [1206] = 1162, [1207] = 1207, - [1208] = 1208, + [1208] = 749, [1209] = 1209, [1210] = 1210, [1211] = 1211, - [1212] = 1212, + [1212] = 701, [1213] = 1213, [1214] = 1214, [1215] = 1215, [1216] = 1216, [1217] = 1217, - [1218] = 1097, + [1218] = 1218, [1219] = 1219, [1220] = 1220, [1221] = 1221, - [1222] = 916, + [1222] = 1222, [1223] = 1223, [1224] = 1224, [1225] = 1225, [1226] = 1226, - [1227] = 1184, + [1227] = 1227, [1228] = 1228, [1229] = 1229, [1230] = 1230, @@ -6288,16 +6284,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1232] = 1232, [1233] = 1233, [1234] = 1234, - [1235] = 1235, + [1235] = 766, [1236] = 1236, - [1237] = 1186, + [1237] = 1237, [1238] = 1238, [1239] = 1239, [1240] = 1240, [1241] = 1241, [1242] = 1242, [1243] = 1243, - [1244] = 746, + [1244] = 1244, [1245] = 1245, [1246] = 1246, [1247] = 1247, @@ -6306,145 +6302,145 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1250] = 1250, [1251] = 1251, [1252] = 1252, - [1253] = 1093, - [1254] = 1094, - [1255] = 751, - [1256] = 1235, + [1253] = 1253, + [1254] = 1254, + [1255] = 1255, + [1256] = 1256, [1257] = 1257, [1258] = 1258, [1259] = 1259, - [1260] = 1064, + [1260] = 1260, [1261] = 1261, [1262] = 1262, [1263] = 1263, [1264] = 1264, [1265] = 1265, [1266] = 1266, - [1267] = 1267, + [1267] = 994, [1268] = 1268, [1269] = 1269, - [1270] = 1270, + [1270] = 709, [1271] = 1271, - [1272] = 1259, - [1273] = 1273, - [1274] = 1274, - [1275] = 1275, - [1276] = 1276, - [1277] = 1277, - [1278] = 1278, + [1272] = 1272, + [1273] = 1086, + [1274] = 1092, + [1275] = 1090, + [1276] = 1255, + [1277] = 1255, + [1278] = 1254, [1279] = 1279, - [1280] = 1280, + [1280] = 1255, [1281] = 1281, - [1282] = 1282, + [1282] = 1255, [1283] = 1283, [1284] = 1284, - [1285] = 1259, - [1286] = 1259, - [1287] = 1259, + [1285] = 1285, + [1286] = 1286, + [1287] = 1287, [1288] = 1288, - [1289] = 1203, - [1290] = 768, - [1291] = 769, - [1292] = 1292, - [1293] = 980, - [1294] = 959, - [1295] = 753, - [1296] = 760, - [1297] = 1297, - [1298] = 761, - [1299] = 1299, - [1300] = 762, - [1301] = 763, - [1302] = 764, - [1303] = 979, - [1304] = 765, - [1305] = 942, - [1306] = 747, - [1307] = 953, - [1308] = 889, - [1309] = 758, - [1310] = 976, - [1311] = 1225, - [1312] = 977, - [1313] = 1226, - [1314] = 964, - [1315] = 978, - [1316] = 1316, - [1317] = 920, - [1318] = 1178, - [1319] = 955, - [1320] = 922, - [1321] = 965, - [1322] = 923, - [1323] = 983, - [1324] = 1181, - [1325] = 925, - [1326] = 966, - [1327] = 989, - [1328] = 1201, - [1329] = 1329, - [1330] = 986, - [1331] = 967, - [1332] = 918, - [1333] = 755, - [1334] = 948, + [1289] = 897, + [1290] = 1290, + [1291] = 1291, + [1292] = 522, + [1293] = 923, + [1294] = 960, + [1295] = 851, + [1296] = 958, + [1297] = 896, + [1298] = 901, + [1299] = 948, + [1300] = 1221, + [1301] = 947, + [1302] = 1156, + [1303] = 971, + [1304] = 770, + [1305] = 1161, + [1306] = 945, + [1307] = 1243, + [1308] = 941, + [1309] = 1309, + [1310] = 940, + [1311] = 939, + [1312] = 1181, + [1313] = 931, + [1314] = 1314, + [1315] = 1185, + [1316] = 929, + [1317] = 1189, + [1318] = 928, + [1319] = 1193, + [1320] = 933, + [1321] = 1197, + [1322] = 942, + [1323] = 1201, + [1324] = 943, + [1325] = 1209, + [1326] = 951, + [1327] = 1213, + [1328] = 955, + [1329] = 972, + [1330] = 1330, + [1331] = 912, + [1332] = 915, + [1333] = 757, + [1334] = 986, [1335] = 1335, - [1336] = 888, - [1337] = 754, - [1338] = 501, - [1339] = 697, - [1340] = 939, - [1341] = 944, - [1342] = 968, - [1343] = 748, - [1344] = 1209, - [1345] = 726, - [1346] = 970, - [1347] = 1215, - [1348] = 971, - [1349] = 1217, - [1350] = 1350, - [1351] = 1351, - [1352] = 972, - [1353] = 1335, - [1354] = 785, - [1355] = 786, - [1356] = 973, - [1357] = 974, - [1358] = 985, - [1359] = 766, - [1360] = 1221, - [1361] = 767, - [1362] = 963, + [1336] = 920, + [1337] = 936, + [1338] = 944, + [1339] = 768, + [1340] = 710, + [1341] = 984, + [1342] = 1342, + [1343] = 938, + [1344] = 937, + [1345] = 930, + [1346] = 932, + [1347] = 969, + [1348] = 705, + [1349] = 812, + [1350] = 981, + [1351] = 771, + [1352] = 758, + [1353] = 752, + [1354] = 759, + [1355] = 772, + [1356] = 976, + [1357] = 760, + [1358] = 1358, + [1359] = 793, + [1360] = 761, + [1361] = 753, + [1362] = 762, [1363] = 1363, - [1364] = 1171, - [1365] = 752, - [1366] = 1366, - [1367] = 975, - [1368] = 1223, - [1369] = 969, - [1370] = 984, - [1371] = 1350, - [1372] = 1366, - [1373] = 1373, - [1374] = 1374, - [1375] = 1375, + [1364] = 763, + [1365] = 1365, + [1366] = 764, + [1367] = 1365, + [1368] = 794, + [1369] = 973, + [1370] = 796, + [1371] = 1371, + [1372] = 1372, + [1373] = 553, + [1374] = 1358, + [1375] = 1309, [1376] = 1376, - [1377] = 1377, - [1378] = 649, - [1379] = 1376, + [1377] = 1290, + [1378] = 1363, + [1379] = 1379, [1380] = 1380, - [1381] = 1363, - [1382] = 1316, + [1381] = 1381, + [1382] = 1372, [1383] = 1383, - [1384] = 1384, + [1384] = 1383, [1385] = 1385, - [1386] = 1386, + [1386] = 1379, [1387] = 1387, [1388] = 1388, - [1389] = 1374, + [1389] = 1389, [1390] = 1390, - [1391] = 1386, + [1391] = 1391, [1392] = 1392, [1393] = 1393, [1394] = 1394, @@ -6452,927 +6448,927 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1396] = 1396, [1397] = 1397, [1398] = 1398, - [1399] = 1399, - [1400] = 1400, + [1399] = 1398, + [1400] = 1398, [1401] = 1401, - [1402] = 1402, - [1403] = 1397, - [1404] = 1397, + [1402] = 1398, + [1403] = 1403, + [1404] = 1404, [1405] = 1405, - [1406] = 1397, - [1407] = 1407, - [1408] = 1397, + [1406] = 1406, + [1407] = 1398, + [1408] = 1408, [1409] = 1409, [1410] = 1410, - [1411] = 409, - [1412] = 1412, - [1413] = 425, + [1411] = 386, + [1412] = 422, + [1413] = 1413, [1414] = 1414, - [1415] = 409, - [1416] = 501, - [1417] = 1417, - [1418] = 413, - [1419] = 649, - [1420] = 1420, - [1421] = 92, - [1422] = 93, - [1423] = 1423, - [1424] = 413, - [1425] = 425, - [1426] = 1426, + [1415] = 1415, + [1416] = 419, + [1417] = 522, + [1418] = 386, + [1419] = 1419, + [1420] = 419, + [1421] = 422, + [1422] = 92, + [1423] = 93, + [1424] = 1424, + [1425] = 1425, + [1426] = 553, [1427] = 1427, - [1428] = 93, - [1429] = 92, - [1430] = 100, - [1431] = 460, - [1432] = 101, - [1433] = 115, + [1428] = 92, + [1429] = 96, + [1430] = 93, + [1431] = 95, + [1432] = 473, + [1433] = 95, [1434] = 1434, - [1435] = 1435, - [1436] = 101, - [1437] = 460, - [1438] = 113, - [1439] = 105, - [1440] = 1440, - [1441] = 453, - [1442] = 100, + [1435] = 110, + [1436] = 469, + [1437] = 1437, + [1438] = 1438, + [1439] = 1439, + [1440] = 102, + [1441] = 473, + [1442] = 103, [1443] = 1443, - [1444] = 459, - [1445] = 1445, - [1446] = 113, - [1447] = 453, - [1448] = 115, - [1449] = 105, - [1450] = 459, - [1451] = 491, - [1452] = 492, - [1453] = 517, - [1454] = 1454, - [1455] = 633, - [1456] = 634, - [1457] = 491, - [1458] = 502, - [1459] = 516, - [1460] = 492, - [1461] = 1461, - [1462] = 1461, - [1463] = 634, - [1464] = 517, - [1465] = 453, - [1466] = 459, - [1467] = 1454, - [1468] = 633, - [1469] = 1469, - [1470] = 1470, - [1471] = 502, - [1472] = 516, - [1473] = 1470, - [1474] = 1474, - [1475] = 1475, - [1476] = 459, - [1477] = 1477, - [1478] = 1478, + [1444] = 96, + [1445] = 468, + [1446] = 102, + [1447] = 103, + [1448] = 468, + [1449] = 488, + [1450] = 493, + [1451] = 110, + [1452] = 469, + [1453] = 515, + [1454] = 488, + [1455] = 551, + [1456] = 1456, + [1457] = 1457, + [1458] = 493, + [1459] = 524, + [1460] = 525, + [1461] = 572, + [1462] = 572, + [1463] = 1457, + [1464] = 469, + [1465] = 468, + [1466] = 1466, + [1467] = 1456, + [1468] = 525, + [1469] = 551, + [1470] = 524, + [1471] = 1471, + [1472] = 1466, + [1473] = 1473, + [1474] = 515, + [1475] = 469, + [1476] = 1476, + [1477] = 493, + [1478] = 488, [1479] = 1479, [1480] = 1480, [1481] = 1481, - [1482] = 1482, + [1482] = 1473, [1483] = 1483, [1484] = 1484, [1485] = 1485, [1486] = 1486, - [1487] = 491, - [1488] = 492, - [1489] = 1469, - [1490] = 453, + [1487] = 1487, + [1488] = 468, + [1489] = 1489, + [1490] = 1490, [1491] = 1491, [1492] = 1492, - [1493] = 516, - [1494] = 1494, - [1495] = 956, - [1496] = 887, + [1493] = 916, + [1494] = 967, + [1495] = 946, + [1496] = 493, [1497] = 1497, - [1498] = 929, - [1499] = 961, - [1500] = 931, - [1501] = 932, - [1502] = 960, - [1503] = 517, - [1504] = 1504, - [1505] = 1505, - [1506] = 491, - [1507] = 952, - [1508] = 987, - [1509] = 949, - [1510] = 502, - [1511] = 492, - [1512] = 1512, - [1513] = 956, - [1514] = 502, - [1515] = 516, - [1516] = 929, - [1517] = 931, - [1518] = 932, - [1519] = 1519, - [1520] = 887, - [1521] = 1512, - [1522] = 1522, - [1523] = 1523, - [1524] = 949, + [1498] = 525, + [1499] = 954, + [1500] = 488, + [1501] = 1501, + [1502] = 524, + [1503] = 1503, + [1504] = 977, + [1505] = 934, + [1506] = 515, + [1507] = 988, + [1508] = 1508, + [1509] = 961, + [1510] = 985, + [1511] = 980, + [1512] = 985, + [1513] = 1513, + [1514] = 967, + [1515] = 954, + [1516] = 980, + [1517] = 1517, + [1518] = 946, + [1519] = 1513, + [1520] = 961, + [1521] = 1092, + [1522] = 1513, + [1523] = 1513, + [1524] = 1090, [1525] = 1525, - [1526] = 1512, - [1527] = 1523, - [1528] = 1097, - [1529] = 1093, - [1530] = 1094, - [1531] = 952, - [1532] = 1512, - [1533] = 1064, - [1534] = 960, - [1535] = 1512, - [1536] = 517, - [1537] = 961, - [1538] = 987, - [1539] = 1512, - [1540] = 1512, - [1541] = 1512, + [1526] = 1526, + [1527] = 977, + [1528] = 994, + [1529] = 934, + [1530] = 1086, + [1531] = 515, + [1532] = 525, + [1533] = 1513, + [1534] = 1534, + [1535] = 524, + [1536] = 1513, + [1537] = 1534, + [1538] = 1513, + [1539] = 988, + [1540] = 1513, + [1541] = 916, [1542] = 1214, [1543] = 1543, - [1544] = 1544, - [1545] = 1545, - [1546] = 1546, + [1544] = 1252, + [1545] = 1245, + [1546] = 1236, [1547] = 1547, [1548] = 1548, - [1549] = 1549, - [1550] = 1093, - [1551] = 1094, + [1549] = 1229, + [1550] = 1550, + [1551] = 1551, [1552] = 1552, [1553] = 1553, - [1554] = 1554, - [1555] = 1555, - [1556] = 1556, - [1557] = 1557, - [1558] = 1548, - [1559] = 1549, - [1560] = 1552, - [1561] = 1553, - [1562] = 1562, - [1563] = 1563, - [1564] = 1564, - [1565] = 1565, + [1554] = 1174, + [1555] = 1268, + [1556] = 1090, + [1557] = 1271, + [1558] = 1178, + [1559] = 1559, + [1560] = 1259, + [1561] = 1257, + [1562] = 1180, + [1563] = 1253, + [1564] = 1251, + [1565] = 1182, [1566] = 1566, [1567] = 1567, - [1568] = 1554, - [1569] = 1555, - [1570] = 1556, - [1571] = 1557, - [1572] = 1572, - [1573] = 1573, - [1574] = 1574, - [1575] = 1575, - [1576] = 1576, - [1577] = 1577, - [1578] = 1543, - [1579] = 1544, - [1580] = 1545, - [1581] = 1546, - [1582] = 1572, - [1583] = 1577, - [1584] = 1064, - [1585] = 1562, - [1586] = 1563, - [1587] = 1564, - [1588] = 1565, - [1589] = 1573, - [1590] = 1574, - [1591] = 1566, - [1592] = 1097, - [1593] = 1567, - [1594] = 1276, - [1595] = 1284, - [1596] = 1161, - [1597] = 1232, - [1598] = 1269, - [1599] = 1179, - [1600] = 1229, - [1601] = 1240, - [1602] = 409, - [1603] = 1288, - [1604] = 1213, - [1605] = 1281, - [1606] = 1205, - [1607] = 1197, - [1608] = 1208, - [1609] = 1219, - [1610] = 1224, - [1611] = 1233, - [1612] = 1236, - [1613] = 1239, - [1614] = 1245, - [1615] = 1248, - [1616] = 1250, - [1617] = 1258, - [1618] = 1262, - [1619] = 1263, - [1620] = 1265, - [1621] = 1268, - [1622] = 1277, - [1623] = 1152, - [1624] = 1282, - [1625] = 1279, - [1626] = 1234, - [1627] = 1247, - [1628] = 1211, - [1629] = 1238, - [1630] = 1547, - [1631] = 1199, - [1632] = 1230, - [1633] = 1251, - [1634] = 1156, - [1635] = 1175, - [1636] = 1198, - [1637] = 1207, - [1638] = 1242, - [1639] = 1266, - [1640] = 1275, - [1641] = 1154, - [1642] = 1204, - [1643] = 1206, - [1644] = 1210, - [1645] = 1212, - [1646] = 1216, - [1647] = 1220, - [1648] = 1228, - [1649] = 1231, - [1650] = 1241, - [1651] = 1243, - [1652] = 1246, - [1653] = 1249, - [1654] = 1252, - [1655] = 1257, - [1656] = 1261, - [1657] = 1264, - [1658] = 1267, - [1659] = 1270, - [1660] = 1271, - [1661] = 1274, - [1662] = 1278, - [1663] = 1280, - [1664] = 1283, - [1665] = 1153, - [1666] = 1155, - [1667] = 1157, - [1668] = 1159, - [1669] = 1160, - [1670] = 1166, - [1671] = 1168, - [1672] = 1170, - [1673] = 1173, - [1674] = 1174, - [1675] = 1176, - [1676] = 1177, - [1677] = 1180, - [1678] = 1575, - [1679] = 1576, - [1680] = 1182, - [1681] = 1183, - [1682] = 1185, - [1683] = 1187, - [1684] = 1189, - [1685] = 1190, - [1686] = 1191, - [1687] = 1192, - [1688] = 1193, - [1689] = 1194, - [1690] = 1195, - [1691] = 1196, - [1692] = 1171, - [1693] = 1178, - [1694] = 1181, - [1695] = 1201, - [1696] = 1203, - [1697] = 1209, - [1698] = 1215, - [1699] = 1217, - [1700] = 1221, - [1701] = 1223, - [1702] = 1225, - [1703] = 1226, - [1704] = 1522, - [1705] = 1158, - [1706] = 1203, - [1707] = 1707, - [1708] = 425, - [1709] = 1171, - [1710] = 1710, - [1711] = 1178, - [1712] = 1181, - [1713] = 1713, - [1714] = 1201, - [1715] = 413, - [1716] = 1209, - [1717] = 1215, + [1568] = 1568, + [1569] = 1569, + [1570] = 1248, + [1571] = 1246, + [1572] = 1279, + [1573] = 1184, + [1574] = 1242, + [1575] = 1241, + [1576] = 1239, + [1577] = 1238, + [1578] = 1237, + [1579] = 1233, + [1580] = 1232, + [1581] = 1186, + [1582] = 1227, + [1583] = 1157, + [1584] = 1188, + [1585] = 1211, + [1586] = 1190, + [1587] = 1192, + [1588] = 1588, + [1589] = 1550, + [1590] = 1195, + [1591] = 1551, + [1592] = 1552, + [1593] = 1553, + [1594] = 1196, + [1595] = 1198, + [1596] = 1176, + [1597] = 1597, + [1598] = 1598, + [1599] = 1207, + [1600] = 1281, + [1601] = 1601, + [1602] = 1602, + [1603] = 1588, + [1604] = 1602, + [1605] = 1605, + [1606] = 1284, + [1607] = 1607, + [1608] = 1608, + [1609] = 1609, + [1610] = 1610, + [1611] = 1517, + [1612] = 1285, + [1613] = 1607, + [1614] = 1283, + [1615] = 1269, + [1616] = 1287, + [1617] = 994, + [1618] = 1266, + [1619] = 1288, + [1620] = 1172, + [1621] = 1272, + [1622] = 1169, + [1623] = 1264, + [1624] = 1166, + [1625] = 1625, + [1626] = 1213, + [1627] = 1209, + [1628] = 1628, + [1629] = 1164, + [1630] = 1262, + [1631] = 1159, + [1632] = 1260, + [1633] = 1203, + [1634] = 1258, + [1635] = 1158, + [1636] = 1636, + [1637] = 1220, + [1638] = 1605, + [1639] = 1601, + [1640] = 1598, + [1641] = 1625, + [1642] = 1628, + [1643] = 1261, + [1644] = 1256, + [1645] = 1547, + [1646] = 1597, + [1647] = 1199, + [1648] = 1086, + [1649] = 1559, + [1650] = 1636, + [1651] = 1191, + [1652] = 1216, + [1653] = 1154, + [1654] = 1187, + [1655] = 1218, + [1656] = 1155, + [1657] = 1230, + [1658] = 1548, + [1659] = 386, + [1660] = 1092, + [1661] = 1608, + [1662] = 1183, + [1663] = 1569, + [1664] = 1568, + [1665] = 1179, + [1666] = 1286, + [1667] = 1567, + [1668] = 1543, + [1669] = 1249, + [1670] = 1566, + [1671] = 1153, + [1672] = 1265, + [1673] = 1610, + [1674] = 1247, + [1675] = 1222, + [1676] = 1226, + [1677] = 1201, + [1678] = 1197, + [1679] = 1244, + [1680] = 1240, + [1681] = 1609, + [1682] = 1152, + [1683] = 1263, + [1684] = 1193, + [1685] = 1189, + [1686] = 1185, + [1687] = 1234, + [1688] = 1181, + [1689] = 1243, + [1690] = 1161, + [1691] = 1231, + [1692] = 1156, + [1693] = 1228, + [1694] = 1221, + [1695] = 1224, + [1696] = 1160, + [1697] = 1217, + [1698] = 1225, + [1699] = 1175, + [1700] = 1171, + [1701] = 1219, + [1702] = 1210, + [1703] = 1223, + [1704] = 1167, + [1705] = 1163, + [1706] = 1161, + [1707] = 1189, + [1708] = 1708, + [1709] = 1213, + [1710] = 1185, + [1711] = 1243, + [1712] = 1712, + [1713] = 1209, + [1714] = 422, + [1715] = 1715, + [1716] = 1181, + [1717] = 1156, [1718] = 1718, [1719] = 1719, - [1720] = 1217, - [1721] = 1221, - [1722] = 1223, - [1723] = 1225, - [1724] = 1226, - [1725] = 1725, - [1726] = 1726, - [1727] = 1707, - [1728] = 409, - [1729] = 1726, - [1730] = 1710, - [1731] = 1725, - [1732] = 1719, - [1733] = 93, - [1734] = 414, - [1735] = 1735, - [1736] = 344, - [1737] = 402, - [1738] = 345, - [1739] = 1739, - [1740] = 92, - [1741] = 413, - [1742] = 425, + [1720] = 1201, + [1721] = 419, + [1722] = 386, + [1723] = 1221, + [1724] = 1718, + [1725] = 1708, + [1726] = 1719, + [1727] = 1727, + [1728] = 1197, + [1729] = 1193, + [1730] = 1730, + [1731] = 1712, + [1732] = 1715, + [1733] = 1733, + [1734] = 387, + [1735] = 412, + [1736] = 93, + [1737] = 344, + [1738] = 92, + [1739] = 422, + [1740] = 416, + [1741] = 391, + [1742] = 1742, [1743] = 1743, - [1744] = 423, - [1745] = 399, - [1746] = 414, - [1747] = 1747, - [1748] = 344, + [1744] = 345, + [1745] = 419, + [1746] = 358, + [1747] = 92, + [1748] = 413, [1749] = 1749, - [1750] = 1750, - [1751] = 92, - [1752] = 460, - [1753] = 420, - [1754] = 101, + [1750] = 414, + [1751] = 1751, + [1752] = 93, + [1753] = 92, + [1754] = 93, [1755] = 1755, - [1756] = 349, - [1757] = 421, + [1756] = 95, + [1757] = 412, [1758] = 1758, - [1759] = 348, - [1760] = 1749, - [1761] = 374, - [1762] = 412, - [1763] = 356, - [1764] = 1764, - [1765] = 352, - [1766] = 357, - [1767] = 354, - [1768] = 1747, - [1769] = 423, - [1770] = 424, - [1771] = 417, - [1772] = 418, - [1773] = 1773, - [1774] = 93, + [1759] = 345, + [1760] = 1760, + [1761] = 417, + [1762] = 426, + [1763] = 1758, + [1764] = 368, + [1765] = 350, + [1766] = 96, + [1767] = 1767, + [1768] = 357, + [1769] = 473, + [1770] = 1770, + [1771] = 1771, + [1772] = 366, + [1773] = 360, + [1774] = 348, [1775] = 1775, - [1776] = 1764, - [1777] = 100, - [1778] = 1750, - [1779] = 92, - [1780] = 1764, - [1781] = 1750, - [1782] = 93, - [1783] = 1764, - [1784] = 1750, - [1785] = 1773, - [1786] = 345, - [1787] = 1787, - [1788] = 353, + [1776] = 1760, + [1777] = 1775, + [1778] = 1771, + [1779] = 416, + [1780] = 371, + [1781] = 344, + [1782] = 1760, + [1783] = 415, + [1784] = 1767, + [1785] = 1760, + [1786] = 425, + [1787] = 1758, + [1788] = 1758, [1789] = 1789, - [1790] = 1790, - [1791] = 353, - [1792] = 1792, - [1793] = 459, - [1794] = 1789, - [1795] = 113, - [1796] = 374, - [1797] = 378, - [1798] = 354, - [1799] = 1799, - [1800] = 349, - [1801] = 1801, + [1790] = 95, + [1791] = 343, + [1792] = 103, + [1793] = 95, + [1794] = 358, + [1795] = 357, + [1796] = 366, + [1797] = 1797, + [1798] = 1798, + [1799] = 1789, + [1800] = 360, + [1801] = 348, [1802] = 1802, - [1803] = 1799, - [1804] = 101, - [1805] = 105, - [1806] = 1801, - [1807] = 357, - [1808] = 1789, - [1809] = 100, - [1810] = 343, - [1811] = 1802, - [1812] = 348, - [1813] = 460, - [1814] = 356, - [1815] = 1802, - [1816] = 352, - [1817] = 101, - [1818] = 1802, - [1819] = 115, - [1820] = 100, - [1821] = 453, - [1822] = 1822, - [1823] = 1792, - [1824] = 1789, - [1825] = 1825, - [1826] = 1825, - [1827] = 105, - [1828] = 459, + [1803] = 1797, + [1804] = 96, + [1805] = 469, + [1806] = 371, + [1807] = 1798, + [1808] = 368, + [1809] = 1809, + [1810] = 102, + [1811] = 1797, + [1812] = 1812, + [1813] = 1802, + [1814] = 1797, + [1815] = 96, + [1816] = 1809, + [1817] = 1798, + [1818] = 380, + [1819] = 1819, + [1820] = 350, + [1821] = 1812, + [1822] = 110, + [1823] = 1823, + [1824] = 1798, + [1825] = 473, + [1826] = 468, + [1827] = 343, + [1828] = 102, [1829] = 1829, - [1830] = 1830, - [1831] = 115, - [1832] = 1829, - [1833] = 1830, + [1830] = 1829, + [1831] = 1831, + [1832] = 1832, + [1833] = 1829, [1834] = 1834, - [1835] = 113, + [1835] = 488, [1836] = 1836, - [1837] = 1836, - [1838] = 1836, - [1839] = 1834, - [1840] = 115, - [1841] = 113, - [1842] = 1836, - [1843] = 1843, - [1844] = 105, - [1845] = 1845, - [1846] = 1846, - [1847] = 1834, - [1848] = 1836, - [1849] = 1830, - [1850] = 369, - [1851] = 366, - [1852] = 1830, + [1837] = 1837, + [1838] = 1838, + [1839] = 468, + [1840] = 103, + [1841] = 469, + [1842] = 1842, + [1843] = 1832, + [1844] = 1829, + [1845] = 102, + [1846] = 1831, + [1847] = 1831, + [1848] = 354, + [1849] = 1832, + [1850] = 375, + [1851] = 1842, + [1852] = 103, [1853] = 1853, - [1854] = 1854, + [1854] = 1832, [1855] = 1855, - [1856] = 1856, - [1857] = 492, - [1858] = 343, - [1859] = 1829, - [1860] = 1830, - [1861] = 1834, - [1862] = 1829, - [1863] = 1863, - [1864] = 1834, - [1865] = 453, + [1856] = 110, + [1857] = 1831, + [1858] = 110, + [1859] = 1842, + [1860] = 1860, + [1861] = 1861, + [1862] = 493, + [1863] = 356, + [1864] = 380, + [1865] = 1865, [1866] = 1866, - [1867] = 1867, - [1868] = 368, - [1869] = 1829, - [1870] = 1830, - [1871] = 1836, - [1872] = 378, - [1873] = 1834, + [1867] = 1831, + [1868] = 1831, + [1869] = 1842, + [1870] = 1842, + [1871] = 1832, + [1872] = 1832, + [1873] = 1842, [1874] = 1829, - [1875] = 491, - [1876] = 633, - [1877] = 353, + [1875] = 1829, + [1876] = 382, + [1877] = 493, [1878] = 1878, - [1879] = 502, - [1880] = 354, - [1881] = 516, - [1882] = 491, - [1883] = 383, - [1884] = 348, - [1885] = 356, - [1886] = 357, - [1887] = 368, - [1888] = 369, - [1889] = 1889, - [1890] = 1890, - [1891] = 733, - [1892] = 766, - [1893] = 1893, - [1894] = 785, - [1895] = 786, - [1896] = 736, - [1897] = 492, - [1898] = 493, - [1899] = 767, - [1900] = 517, - [1901] = 768, - [1902] = 769, - [1903] = 482, - [1904] = 352, - [1905] = 634, - [1906] = 366, + [1879] = 488, + [1880] = 524, + [1881] = 1881, + [1882] = 348, + [1883] = 354, + [1884] = 715, + [1885] = 515, + [1886] = 772, + [1887] = 771, + [1888] = 356, + [1889] = 572, + [1890] = 375, + [1891] = 358, + [1892] = 551, + [1893] = 753, + [1894] = 752, + [1895] = 371, + [1896] = 525, + [1897] = 357, + [1898] = 912, + [1899] = 483, + [1900] = 360, + [1901] = 484, + [1902] = 701, + [1903] = 1903, + [1904] = 915, + [1905] = 1905, + [1906] = 350, [1907] = 1907, - [1908] = 383, - [1909] = 518, - [1910] = 499, - [1911] = 634, - [1912] = 453, - [1913] = 736, - [1914] = 785, - [1915] = 768, - [1916] = 769, - [1917] = 493, - [1918] = 348, - [1919] = 1878, - [1920] = 353, - [1921] = 510, + [1908] = 915, + [1909] = 572, + [1910] = 504, + [1911] = 344, + [1912] = 519, + [1913] = 715, + [1914] = 524, + [1915] = 484, + [1916] = 1916, + [1917] = 516, + [1918] = 1905, + [1919] = 1916, + [1920] = 360, + [1921] = 912, [1922] = 1922, - [1923] = 766, - [1924] = 511, - [1925] = 767, - [1926] = 1907, - [1927] = 633, - [1928] = 357, - [1929] = 517, - [1930] = 354, - [1931] = 459, - [1932] = 514, - [1933] = 345, - [1934] = 1483, - [1935] = 502, - [1936] = 516, - [1937] = 733, - [1938] = 344, - [1939] = 1939, - [1940] = 1939, - [1941] = 509, - [1942] = 92, - [1943] = 482, - [1944] = 786, - [1945] = 352, - [1946] = 93, - [1947] = 356, - [1948] = 1948, - [1949] = 349, - [1950] = 491, - [1951] = 352, - [1952] = 100, - [1953] = 101, - [1954] = 93, - [1955] = 92, - [1956] = 374, - [1957] = 353, - [1958] = 354, - [1959] = 453, - [1960] = 459, - [1961] = 348, - [1962] = 1504, - [1963] = 356, - [1964] = 357, - [1965] = 1948, - [1966] = 492, - [1967] = 1967, - [1968] = 343, - [1969] = 1483, + [1923] = 551, + [1924] = 517, + [1925] = 508, + [1926] = 1922, + [1927] = 92, + [1928] = 1479, + [1929] = 701, + [1930] = 345, + [1931] = 525, + [1932] = 483, + [1933] = 93, + [1934] = 468, + [1935] = 358, + [1936] = 357, + [1937] = 371, + [1938] = 348, + [1939] = 350, + [1940] = 515, + [1941] = 501, + [1942] = 753, + [1943] = 752, + [1944] = 772, + [1945] = 771, + [1946] = 382, + [1947] = 469, + [1948] = 366, + [1949] = 92, + [1950] = 95, + [1951] = 1951, + [1952] = 469, + [1953] = 368, + [1954] = 96, + [1955] = 371, + [1956] = 348, + [1957] = 1957, + [1958] = 1957, + [1959] = 468, + [1960] = 488, + [1961] = 360, + [1962] = 350, + [1963] = 357, + [1964] = 493, + [1965] = 93, + [1966] = 1503, + [1967] = 358, + [1968] = 96, + [1969] = 1969, [1970] = 1970, - [1971] = 931, - [1972] = 932, - [1973] = 1973, + [1971] = 380, + [1972] = 1972, + [1973] = 731, [1974] = 1974, - [1975] = 730, - [1976] = 100, + [1975] = 1975, + [1976] = 110, [1977] = 1977, - [1978] = 1978, - [1979] = 491, - [1980] = 113, - [1981] = 1981, - [1982] = 722, - [1983] = 115, - [1984] = 717, - [1985] = 719, - [1986] = 952, - [1987] = 1987, + [1978] = 740, + [1979] = 967, + [1980] = 524, + [1981] = 988, + [1982] = 954, + [1983] = 706, + [1984] = 103, + [1985] = 1985, + [1986] = 934, + [1987] = 515, [1988] = 1988, - [1989] = 492, - [1990] = 1990, + [1989] = 1479, + [1990] = 102, [1991] = 1991, [1992] = 1992, - [1993] = 708, - [1994] = 715, - [1995] = 716, - [1996] = 718, - [1997] = 929, - [1998] = 949, - [1999] = 1505, - [2000] = 2000, - [2001] = 101, - [2002] = 2002, - [2003] = 956, + [1993] = 493, + [1994] = 95, + [1995] = 961, + [1996] = 946, + [1997] = 916, + [1998] = 1998, + [1999] = 343, + [2000] = 980, + [2001] = 2001, + [2002] = 525, + [2003] = 745, [2004] = 2004, - [2005] = 517, - [2006] = 2006, - [2007] = 887, - [2008] = 502, - [2009] = 2009, - [2010] = 987, - [2011] = 699, - [2012] = 516, - [2013] = 960, - [2014] = 105, - [2015] = 1973, - [2016] = 961, - [2017] = 378, - [2018] = 1168, - [2019] = 1242, - [2020] = 1266, - [2021] = 1275, - [2022] = 1154, - [2023] = 2023, - [2024] = 1204, - [2025] = 1206, - [2026] = 1210, - [2027] = 1212, - [2028] = 1216, - [2029] = 1220, - [2030] = 1228, - [2031] = 1231, - [2032] = 1207, - [2033] = 1243, - [2034] = 1246, - [2035] = 1249, - [2036] = 1252, - [2037] = 1257, - [2038] = 1261, - [2039] = 1264, - [2040] = 1267, - [2041] = 1270, - [2042] = 1271, - [2043] = 1274, - [2044] = 1278, - [2045] = 1280, - [2046] = 1283, - [2047] = 1153, - [2048] = 1155, - [2049] = 1157, - [2050] = 1159, - [2051] = 1160, - [2052] = 1166, - [2053] = 1170, - [2054] = 1173, - [2055] = 1174, - [2056] = 1176, - [2057] = 1177, - [2058] = 1180, - [2059] = 1182, - [2060] = 1183, - [2061] = 1185, - [2062] = 1187, - [2063] = 1189, - [2064] = 1190, - [2065] = 1191, - [2066] = 1192, - [2067] = 1193, - [2068] = 1194, - [2069] = 1195, - [2070] = 1196, - [2071] = 2071, - [2072] = 2072, - [2073] = 1097, - [2074] = 2074, - [2075] = 1504, - [2076] = 1505, - [2077] = 2077, - [2078] = 2078, - [2079] = 517, - [2080] = 746, - [2081] = 929, - [2082] = 1097, - [2083] = 949, - [2084] = 502, - [2085] = 516, - [2086] = 2086, - [2087] = 2087, - [2088] = 2088, - [2089] = 949, - [2090] = 369, - [2091] = 2091, - [2092] = 931, - [2093] = 932, - [2094] = 366, - [2095] = 952, - [2096] = 2077, - [2097] = 105, - [2098] = 1525, - [2099] = 2077, - [2100] = 344, - [2101] = 960, - [2102] = 961, - [2103] = 2103, - [2104] = 987, - [2105] = 956, - [2106] = 887, - [2107] = 113, - [2108] = 368, - [2109] = 2109, - [2110] = 2110, - [2111] = 929, - [2112] = 931, - [2113] = 932, - [2114] = 887, - [2115] = 501, - [2116] = 1276, - [2117] = 1284, - [2118] = 1161, - [2119] = 1232, - [2120] = 1269, - [2121] = 1179, - [2122] = 1229, - [2123] = 1240, - [2124] = 2077, - [2125] = 1288, - [2126] = 1213, - [2127] = 2110, - [2128] = 1281, - [2129] = 1205, - [2130] = 2077, - [2131] = 2077, - [2132] = 1483, - [2133] = 115, - [2134] = 2077, - [2135] = 1197, - [2136] = 1208, - [2137] = 1214, - [2138] = 1219, - [2139] = 1224, - [2140] = 1233, - [2141] = 1236, - [2142] = 1239, - [2143] = 1245, - [2144] = 1248, - [2145] = 1250, - [2146] = 1258, - [2147] = 1262, - [2148] = 1263, - [2149] = 1265, - [2150] = 1268, - [2151] = 1277, - [2152] = 1152, - [2153] = 1282, - [2154] = 1279, - [2155] = 1234, - [2156] = 1247, - [2157] = 1211, - [2158] = 1238, - [2159] = 1158, - [2160] = 1199, - [2161] = 1230, - [2162] = 1251, - [2163] = 1156, - [2164] = 1175, - [2165] = 1198, - [2166] = 1241, - [2167] = 733, - [2168] = 916, - [2169] = 917, - [2170] = 512, - [2171] = 918, - [2172] = 352, - [2173] = 2173, - [2174] = 748, - [2175] = 749, - [2176] = 1525, - [2177] = 750, - [2178] = 348, - [2179] = 751, - [2180] = 939, - [2181] = 520, - [2182] = 755, - [2183] = 353, - [2184] = 758, - [2185] = 1505, - [2186] = 356, - [2187] = 357, - [2188] = 759, - [2189] = 785, - [2190] = 2190, - [2191] = 959, - [2192] = 736, - [2193] = 989, - [2194] = 2194, - [2195] = 1504, + [2005] = 716, + [2006] = 739, + [2007] = 488, + [2008] = 742, + [2009] = 1998, + [2010] = 1501, + [2011] = 985, + [2012] = 2012, + [2013] = 2013, + [2014] = 977, + [2015] = 697, + [2016] = 725, + [2017] = 2017, + [2018] = 1244, + [2019] = 1262, + [2020] = 2020, + [2021] = 1479, + [2022] = 994, + [2023] = 1501, + [2024] = 103, + [2025] = 988, + [2026] = 2026, + [2027] = 1188, + [2028] = 1186, + [2029] = 1214, + [2030] = 1525, + [2031] = 1184, + [2032] = 2032, + [2033] = 1182, + [2034] = 1180, + [2035] = 1178, + [2036] = 1176, + [2037] = 1174, + [2038] = 1234, + [2039] = 1172, + [2040] = 1169, + [2041] = 1272, + [2042] = 2026, + [2043] = 2043, + [2044] = 1166, + [2045] = 1503, + [2046] = 1217, + [2047] = 1261, + [2048] = 2048, + [2049] = 1256, + [2050] = 1230, + [2051] = 1237, + [2052] = 1233, + [2053] = 1226, + [2054] = 1164, + [2055] = 1232, + [2056] = 994, + [2057] = 1227, + [2058] = 2058, + [2059] = 1219, + [2060] = 1157, + [2061] = 2061, + [2062] = 2062, + [2063] = 967, + [2064] = 1224, + [2065] = 2065, + [2066] = 1225, + [2067] = 1159, + [2068] = 1211, + [2069] = 1207, + [2070] = 1281, + [2071] = 1223, + [2072] = 1203, + [2073] = 1228, + [2074] = 1199, + [2075] = 2026, + [2076] = 1210, + [2077] = 102, + [2078] = 1191, + [2079] = 2026, + [2080] = 1158, + [2081] = 954, + [2082] = 1187, + [2083] = 1152, + [2084] = 1263, + [2085] = 1218, + [2086] = 515, + [2087] = 1220, + [2088] = 1154, + [2089] = 1231, + [2090] = 2090, + [2091] = 1240, + [2092] = 1183, + [2093] = 1265, + [2094] = 1247, + [2095] = 1249, + [2096] = 1284, + [2097] = 1155, + [2098] = 1153, + [2099] = 1160, + [2100] = 2026, + [2101] = 2101, + [2102] = 1216, + [2103] = 1238, + [2104] = 1287, + [2105] = 1179, + [2106] = 345, + [2107] = 1175, + [2108] = 2032, + [2109] = 1163, + [2110] = 1259, + [2111] = 1258, + [2112] = 375, + [2113] = 525, + [2114] = 934, + [2115] = 522, + [2116] = 110, + [2117] = 1260, + [2118] = 916, + [2119] = 1257, + [2120] = 2026, + [2121] = 1171, + [2122] = 967, + [2123] = 1264, + [2124] = 2124, + [2125] = 1266, + [2126] = 1167, + [2127] = 988, + [2128] = 1288, + [2129] = 1268, + [2130] = 1190, + [2131] = 1285, + [2132] = 916, + [2133] = 524, + [2134] = 1269, + [2135] = 1283, + [2136] = 954, + [2137] = 354, + [2138] = 977, + [2139] = 709, + [2140] = 2140, + [2141] = 2026, + [2142] = 1253, + [2143] = 1251, + [2144] = 1192, + [2145] = 1195, + [2146] = 1229, + [2147] = 1196, + [2148] = 1236, + [2149] = 985, + [2150] = 1239, + [2151] = 1198, + [2152] = 1241, + [2153] = 1286, + [2154] = 1271, + [2155] = 1248, + [2156] = 1252, + [2157] = 980, + [2158] = 1242, + [2159] = 1279, + [2160] = 356, + [2161] = 1222, + [2162] = 1246, + [2163] = 934, + [2164] = 1245, + [2165] = 946, + [2166] = 961, + [2167] = 2167, + [2168] = 2168, + [2169] = 772, + [2170] = 358, + [2171] = 2171, + [2172] = 382, + [2173] = 348, + [2174] = 984, + [2175] = 752, + [2176] = 701, + [2177] = 944, + [2178] = 755, + [2179] = 771, + [2180] = 753, + [2181] = 710, + [2182] = 357, + [2183] = 749, + [2184] = 1525, + [2185] = 371, + [2186] = 770, + [2187] = 360, + [2188] = 553, + [2189] = 2189, + [2190] = 757, + [2191] = 936, + [2192] = 2171, + [2193] = 705, + [2194] = 2189, + [2195] = 350, [2196] = 2196, - [2197] = 2197, - [2198] = 944, - [2199] = 2199, - [2200] = 649, - [2201] = 1097, - [2202] = 354, - [2203] = 766, + [2197] = 502, + [2198] = 2171, + [2199] = 812, + [2200] = 2189, + [2201] = 802, + [2202] = 920, + [2203] = 912, [2204] = 2204, - [2205] = 767, - [2206] = 786, - [2207] = 2207, - [2208] = 697, - [2209] = 969, - [2210] = 726, - [2211] = 768, - [2212] = 769, - [2213] = 888, - [2214] = 984, - [2215] = 2204, - [2216] = 2207, - [2217] = 2207, - [2218] = 2204, - [2219] = 383, - [2220] = 1225, - [2221] = 1181, - [2222] = 1201, - [2223] = 1203, - [2224] = 1209, - [2225] = 1221, - [2226] = 2226, - [2227] = 1215, - [2228] = 1209, - [2229] = 1217, - [2230] = 1221, - [2231] = 1223, - [2232] = 1223, - [2233] = 1226, - [2234] = 1225, - [2235] = 1215, - [2236] = 2236, - [2237] = 1171, - [2238] = 2226, - [2239] = 1203, - [2240] = 1226, - [2241] = 2236, - [2242] = 2226, - [2243] = 2236, - [2244] = 2226, - [2245] = 1201, - [2246] = 2236, - [2247] = 2236, - [2248] = 2236, - [2249] = 2236, - [2250] = 1525, - [2251] = 2236, - [2252] = 1178, - [2253] = 1217, - [2254] = 1171, - [2255] = 501, - [2256] = 1181, - [2257] = 1178, + [2205] = 801, + [2206] = 994, + [2207] = 1503, + [2208] = 986, + [2209] = 766, + [2210] = 768, + [2211] = 800, + [2212] = 1501, + [2213] = 969, + [2214] = 2214, + [2215] = 973, + [2216] = 507, + [2217] = 915, + [2218] = 715, + [2219] = 2219, + [2220] = 2220, + [2221] = 2221, + [2222] = 2221, + [2223] = 2220, + [2224] = 1156, + [2225] = 2221, + [2226] = 2220, + [2227] = 2221, + [2228] = 1525, + [2229] = 2221, + [2230] = 2221, + [2231] = 522, + [2232] = 1221, + [2233] = 2220, + [2234] = 1156, + [2235] = 2221, + [2236] = 1221, + [2237] = 1161, + [2238] = 1243, + [2239] = 1161, + [2240] = 1181, + [2241] = 1189, + [2242] = 2221, + [2243] = 1243, + [2244] = 1213, + [2245] = 1209, + [2246] = 1201, + [2247] = 1209, + [2248] = 1181, + [2249] = 1213, + [2250] = 1185, + [2251] = 1197, + [2252] = 1189, + [2253] = 1193, + [2254] = 1193, + [2255] = 1197, + [2256] = 1201, + [2257] = 1185, [2258] = 2258, [2259] = 2259, - [2260] = 2258, + [2260] = 553, [2261] = 2258, [2262] = 2258, - [2263] = 649, + [2263] = 2258, [2264] = 2258, [2265] = 2258, [2266] = 2266, - [2267] = 1483, - [2268] = 2268, + [2267] = 1479, + [2268] = 522, [2269] = 2269, - [2270] = 2259, + [2270] = 2270, [2271] = 2271, - [2272] = 2268, - [2273] = 501, - [2274] = 2274, - [2275] = 2275, - [2276] = 352, - [2277] = 2277, - [2278] = 1483, + [2272] = 2272, + [2273] = 2273, + [2274] = 2270, + [2275] = 2259, + [2276] = 358, + [2277] = 1503, + [2278] = 2278, [2279] = 2279, - [2280] = 2110, - [2281] = 357, - [2282] = 649, - [2283] = 1505, - [2284] = 348, - [2285] = 356, + [2280] = 348, + [2281] = 360, + [2282] = 1479, + [2283] = 2283, + [2284] = 2032, + [2285] = 2285, [2286] = 2286, [2287] = 2287, - [2288] = 354, - [2289] = 2289, - [2290] = 2290, - [2291] = 1504, - [2292] = 353, - [2293] = 2293, - [2294] = 2294, - [2295] = 1505, - [2296] = 2296, + [2288] = 371, + [2289] = 553, + [2290] = 1501, + [2291] = 357, + [2292] = 2292, + [2293] = 350, + [2294] = 1525, + [2295] = 2295, + [2296] = 1501, [2297] = 2297, - [2298] = 2298, - [2299] = 1504, - [2300] = 1525, + [2298] = 1503, + [2299] = 2299, + [2300] = 2300, [2301] = 2301, [2302] = 2302, [2303] = 1525, [2304] = 2304, - [2305] = 2305, + [2305] = 382, [2306] = 2302, [2307] = 2301, [2308] = 2308, - [2309] = 383, + [2309] = 2309, [2310] = 2310, - [2311] = 345, - [2312] = 344, + [2311] = 344, + [2312] = 2312, [2313] = 2313, - [2314] = 423, - [2315] = 414, + [2314] = 2314, + [2315] = 386, [2316] = 2316, [2317] = 2317, [2318] = 2318, - [2319] = 409, + [2319] = 345, [2320] = 2320, [2321] = 2321, [2322] = 2322, @@ -7388,407 +7384,407 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2332] = 2332, [2333] = 2333, [2334] = 2334, - [2335] = 374, + [2335] = 412, [2336] = 2336, - [2337] = 2337, - [2338] = 2338, - [2339] = 2321, - [2340] = 349, - [2341] = 2341, + [2337] = 368, + [2338] = 2334, + [2339] = 2339, + [2340] = 416, + [2341] = 366, [2342] = 2342, [2343] = 2343, - [2344] = 378, - [2345] = 399, - [2346] = 409, - [2347] = 413, - [2348] = 425, + [2344] = 380, + [2345] = 386, + [2346] = 422, + [2347] = 419, + [2348] = 391, [2349] = 2349, - [2350] = 2349, - [2351] = 413, - [2352] = 2352, - [2353] = 92, - [2354] = 93, - [2355] = 399, - [2356] = 425, - [2357] = 412, - [2358] = 424, - [2359] = 417, - [2360] = 418, - [2361] = 2361, - [2362] = 2362, + [2350] = 2350, + [2351] = 414, + [2352] = 92, + [2353] = 391, + [2354] = 415, + [2355] = 2355, + [2356] = 2355, + [2357] = 2350, + [2358] = 2349, + [2359] = 2359, + [2360] = 425, + [2361] = 413, + [2362] = 2359, [2363] = 2363, - [2364] = 2364, - [2365] = 2362, - [2366] = 409, - [2367] = 2361, - [2368] = 2352, - [2369] = 2363, - [2370] = 2364, - [2371] = 409, - [2372] = 460, - [2373] = 100, - [2374] = 101, - [2375] = 399, - [2376] = 412, - [2377] = 424, - [2378] = 417, - [2379] = 418, - [2380] = 92, - [2381] = 425, - [2382] = 413, - [2383] = 93, - [2384] = 348, - [2385] = 101, - [2386] = 345, - [2387] = 453, - [2388] = 460, - [2389] = 353, - [2390] = 412, - [2391] = 424, - [2392] = 417, - [2393] = 92, - [2394] = 115, - [2395] = 356, - [2396] = 357, - [2397] = 418, - [2398] = 413, - [2399] = 399, - [2400] = 354, - [2401] = 510, - [2402] = 425, - [2403] = 518, - [2404] = 93, - [2405] = 345, - [2406] = 100, - [2407] = 459, - [2408] = 344, - [2409] = 113, - [2410] = 105, - [2411] = 352, + [2364] = 386, + [2365] = 422, + [2366] = 2366, + [2367] = 2363, + [2368] = 2366, + [2369] = 93, + [2370] = 419, + [2371] = 413, + [2372] = 414, + [2373] = 422, + [2374] = 473, + [2375] = 386, + [2376] = 425, + [2377] = 95, + [2378] = 92, + [2379] = 96, + [2380] = 93, + [2381] = 415, + [2382] = 419, + [2383] = 391, + [2384] = 468, + [2385] = 345, + [2386] = 469, + [2387] = 344, + [2388] = 95, + [2389] = 425, + [2390] = 415, + [2391] = 516, + [2392] = 414, + [2393] = 96, + [2394] = 422, + [2395] = 419, + [2396] = 360, + [2397] = 348, + [2398] = 358, + [2399] = 357, + [2400] = 103, + [2401] = 92, + [2402] = 517, + [2403] = 344, + [2404] = 371, + [2405] = 350, + [2406] = 391, + [2407] = 413, + [2408] = 93, + [2409] = 102, + [2410] = 110, + [2411] = 473, [2412] = 412, - [2413] = 418, - [2414] = 105, - [2415] = 459, - [2416] = 453, - [2417] = 423, - [2418] = 460, - [2419] = 93, - [2420] = 409, + [2413] = 95, + [2414] = 488, + [2415] = 493, + [2416] = 96, + [2417] = 2417, + [2418] = 386, + [2419] = 415, + [2420] = 473, [2421] = 2421, - [2422] = 1483, - [2423] = 414, - [2424] = 492, - [2425] = 424, - [2426] = 349, - [2427] = 417, - [2428] = 92, - [2429] = 101, - [2430] = 344, - [2431] = 2431, - [2432] = 2432, - [2433] = 2433, - [2434] = 374, - [2435] = 2435, - [2436] = 100, - [2437] = 115, - [2438] = 113, - [2439] = 491, - [2440] = 344, - [2441] = 1505, - [2442] = 414, + [2422] = 1479, + [2423] = 110, + [2424] = 2424, + [2425] = 92, + [2426] = 2426, + [2427] = 368, + [2428] = 425, + [2429] = 103, + [2430] = 2430, + [2431] = 469, + [2432] = 414, + [2433] = 413, + [2434] = 345, + [2435] = 416, + [2436] = 468, + [2437] = 93, + [2438] = 102, + [2439] = 366, + [2440] = 422, + [2441] = 102, + [2442] = 2442, [2443] = 2443, [2444] = 92, - [2445] = 378, - [2446] = 413, + [2445] = 95, + [2446] = 469, [2447] = 93, - [2448] = 343, - [2449] = 517, - [2450] = 2450, - [2451] = 491, - [2452] = 502, - [2453] = 516, - [2454] = 113, - [2455] = 345, - [2456] = 105, - [2457] = 499, - [2458] = 509, - [2459] = 511, - [2460] = 453, - [2461] = 633, - [2462] = 100, - [2463] = 423, - [2464] = 399, - [2465] = 115, - [2466] = 460, - [2467] = 425, - [2468] = 492, - [2469] = 374, - [2470] = 349, - [2471] = 101, - [2472] = 378, - [2473] = 2473, - [2474] = 459, - [2475] = 1504, - [2476] = 634, - [2477] = 514, - [2478] = 633, - [2479] = 113, - [2480] = 349, - [2481] = 634, - [2482] = 423, - [2483] = 459, - [2484] = 105, - [2485] = 366, - [2486] = 368, - [2487] = 369, - [2488] = 492, - [2489] = 459, - [2490] = 453, - [2491] = 100, - [2492] = 353, - [2493] = 1525, - [2494] = 115, - [2495] = 414, - [2496] = 491, - [2497] = 424, - [2498] = 417, - [2499] = 345, - [2500] = 517, - [2501] = 418, - [2502] = 354, - [2503] = 352, - [2504] = 502, - [2505] = 412, - [2506] = 453, - [2507] = 2507, - [2508] = 516, - [2509] = 374, - [2510] = 344, - [2511] = 1863, + [2448] = 344, + [2449] = 572, + [2450] = 96, + [2451] = 525, + [2452] = 103, + [2453] = 551, + [2454] = 380, + [2455] = 501, + [2456] = 110, + [2457] = 416, + [2458] = 391, + [2459] = 343, + [2460] = 519, + [2461] = 515, + [2462] = 508, + [2463] = 412, + [2464] = 504, + [2465] = 524, + [2466] = 345, + [2467] = 366, + [2468] = 488, + [2469] = 1501, + [2470] = 380, + [2471] = 1503, + [2472] = 368, + [2473] = 468, + [2474] = 419, + [2475] = 2475, + [2476] = 473, + [2477] = 493, + [2478] = 515, + [2479] = 468, + [2480] = 488, + [2481] = 551, + [2482] = 344, + [2483] = 96, + [2484] = 414, + [2485] = 358, + [2486] = 357, + [2487] = 1838, + [2488] = 350, + [2489] = 110, + [2490] = 524, + [2491] = 412, + [2492] = 525, + [2493] = 493, + [2494] = 415, + [2495] = 572, + [2496] = 469, + [2497] = 469, + [2498] = 2498, + [2499] = 375, + [2500] = 1525, + [2501] = 416, + [2502] = 102, + [2503] = 360, + [2504] = 468, + [2505] = 368, + [2506] = 356, + [2507] = 95, + [2508] = 103, + [2509] = 345, + [2510] = 354, + [2511] = 366, [2512] = 348, - [2513] = 356, - [2514] = 357, - [2515] = 101, - [2516] = 511, - [2517] = 2517, - [2518] = 356, - [2519] = 2519, - [2520] = 492, - [2521] = 378, - [2522] = 344, - [2523] = 423, + [2513] = 413, + [2514] = 425, + [2515] = 371, + [2516] = 469, + [2517] = 493, + [2518] = 2518, + [2519] = 2518, + [2520] = 725, + [2521] = 103, + [2522] = 697, + [2523] = 2523, [2524] = 2524, - [2525] = 502, - [2526] = 357, - [2527] = 2527, - [2528] = 499, - [2529] = 2529, - [2530] = 459, - [2531] = 115, - [2532] = 518, - [2533] = 509, - [2534] = 491, - [2535] = 453, - [2536] = 510, - [2537] = 354, - [2538] = 633, - [2539] = 517, - [2540] = 113, + [2525] = 345, + [2526] = 716, + [2527] = 742, + [2528] = 360, + [2529] = 416, + [2530] = 2530, + [2531] = 493, + [2532] = 516, + [2533] = 2533, + [2534] = 110, + [2535] = 102, + [2536] = 739, + [2537] = 348, + [2538] = 572, + [2539] = 380, + [2540] = 2540, [2541] = 345, - [2542] = 349, - [2543] = 352, - [2544] = 353, + [2542] = 468, + [2543] = 2518, + [2544] = 517, [2545] = 2545, - [2546] = 414, - [2547] = 514, - [2548] = 491, - [2549] = 2524, - [2550] = 730, - [2551] = 2551, - [2552] = 2524, - [2553] = 492, - [2554] = 2554, - [2555] = 459, - [2556] = 2556, - [2557] = 453, - [2558] = 708, - [2559] = 715, - [2560] = 716, - [2561] = 718, - [2562] = 343, - [2563] = 1863, - [2564] = 2564, - [2565] = 2565, - [2566] = 516, - [2567] = 2524, - [2568] = 374, - [2569] = 634, - [2570] = 348, - [2571] = 2571, - [2572] = 105, + [2546] = 412, + [2547] = 344, + [2548] = 2518, + [2549] = 504, + [2550] = 350, + [2551] = 368, + [2552] = 357, + [2553] = 371, + [2554] = 519, + [2555] = 2555, + [2556] = 488, + [2557] = 358, + [2558] = 2558, + [2559] = 2559, + [2560] = 366, + [2561] = 508, + [2562] = 2562, + [2563] = 2563, + [2564] = 343, + [2565] = 488, + [2566] = 501, + [2567] = 524, + [2568] = 1838, + [2569] = 551, + [2570] = 515, + [2571] = 468, + [2572] = 2572, [2573] = 2573, - [2574] = 344, - [2575] = 2575, - [2576] = 708, - [2577] = 509, - [2578] = 378, - [2579] = 344, - [2580] = 369, + [2574] = 469, + [2575] = 525, + [2576] = 2576, + [2577] = 980, + [2578] = 2578, + [2579] = 468, + [2580] = 380, [2581] = 366, - [2582] = 2529, - [2583] = 2575, - [2584] = 368, - [2585] = 2554, - [2586] = 887, - [2587] = 949, - [2588] = 952, - [2589] = 960, - [2590] = 961, - [2591] = 987, - [2592] = 956, - [2593] = 929, - [2594] = 931, - [2595] = 932, - [2596] = 374, - [2597] = 349, - [2598] = 453, - [2599] = 352, - [2600] = 353, - [2601] = 354, - [2602] = 348, - [2603] = 356, - [2604] = 357, + [2582] = 356, + [2583] = 371, + [2584] = 343, + [2585] = 493, + [2586] = 2586, + [2587] = 988, + [2588] = 2588, + [2589] = 739, + [2590] = 344, + [2591] = 572, + [2592] = 515, + [2593] = 488, + [2594] = 368, + [2595] = 916, + [2596] = 2596, + [2597] = 524, + [2598] = 551, + [2599] = 725, + [2600] = 2600, + [2601] = 2601, + [2602] = 2602, + [2603] = 977, + [2604] = 2604, [2605] = 2605, - [2606] = 352, - [2607] = 459, - [2608] = 491, - [2609] = 353, - [2610] = 354, - [2611] = 348, - [2612] = 356, - [2613] = 357, - [2614] = 492, - [2615] = 517, - [2616] = 502, - [2617] = 516, - [2618] = 491, - [2619] = 2619, - [2620] = 514, - [2621] = 2621, - [2622] = 2622, - [2623] = 2623, - [2624] = 2624, - [2625] = 2625, + [2606] = 954, + [2607] = 967, + [2608] = 2608, + [2609] = 961, + [2610] = 501, + [2611] = 524, + [2612] = 2612, + [2613] = 368, + [2614] = 515, + [2615] = 2615, + [2616] = 348, + [2617] = 946, + [2618] = 525, + [2619] = 360, + [2620] = 493, + [2621] = 697, + [2622] = 504, + [2623] = 525, + [2624] = 519, + [2625] = 716, [2626] = 2626, [2627] = 2627, - [2628] = 2628, - [2629] = 2629, - [2630] = 2630, - [2631] = 2630, - [2632] = 633, - [2633] = 2633, - [2634] = 2634, - [2635] = 2635, - [2636] = 634, - [2637] = 2637, - [2638] = 2638, - [2639] = 2639, - [2640] = 499, - [2641] = 510, - [2642] = 345, - [2643] = 511, - [2644] = 518, - [2645] = 514, - [2646] = 509, + [2628] = 519, + [2629] = 345, + [2630] = 934, + [2631] = 366, + [2632] = 358, + [2633] = 371, + [2634] = 469, + [2635] = 516, + [2636] = 488, + [2637] = 508, + [2638] = 348, + [2639] = 375, + [2640] = 360, + [2641] = 2641, + [2642] = 357, + [2643] = 2588, + [2644] = 2644, + [2645] = 2645, + [2646] = 358, [2647] = 517, - [2648] = 502, - [2649] = 516, - [2650] = 730, - [2651] = 374, - [2652] = 349, - [2653] = 511, - [2654] = 343, - [2655] = 715, - [2656] = 716, - [2657] = 718, - [2658] = 492, - [2659] = 502, - [2660] = 366, - [2661] = 516, - [2662] = 1097, - [2663] = 368, - [2664] = 491, - [2665] = 459, - [2666] = 2666, - [2667] = 378, - [2668] = 343, - [2669] = 492, - [2670] = 2619, - [2671] = 931, - [2672] = 932, - [2673] = 949, - [2674] = 2621, - [2675] = 2675, + [2648] = 357, + [2649] = 985, + [2650] = 742, + [2651] = 350, + [2652] = 354, + [2653] = 2572, + [2654] = 504, + [2655] = 350, + [2656] = 2563, + [2657] = 501, + [2658] = 2562, + [2659] = 508, + [2660] = 501, + [2661] = 368, + [2662] = 502, + [2663] = 2604, + [2664] = 2627, + [2665] = 519, + [2666] = 2645, + [2667] = 2667, + [2668] = 2668, + [2669] = 2608, + [2670] = 354, + [2671] = 980, + [2672] = 1951, + [2673] = 504, + [2674] = 507, + [2675] = 985, [2676] = 2676, - [2677] = 2639, - [2678] = 887, - [2679] = 2679, - [2680] = 2622, - [2681] = 499, - [2682] = 510, - [2683] = 511, - [2684] = 518, - [2685] = 1967, - [2686] = 514, - [2687] = 374, - [2688] = 952, - [2689] = 509, - [2690] = 349, - [2691] = 383, - [2692] = 960, - [2693] = 961, - [2694] = 517, + [2677] = 2615, + [2678] = 572, + [2679] = 525, + [2680] = 934, + [2681] = 994, + [2682] = 504, + [2683] = 2576, + [2684] = 366, + [2685] = 551, + [2686] = 469, + [2687] = 375, + [2688] = 916, + [2689] = 493, + [2690] = 2602, + [2691] = 468, + [2692] = 502, + [2693] = 2596, + [2694] = 483, [2695] = 2695, - [2696] = 987, - [2697] = 956, - [2698] = 482, - [2699] = 2639, - [2700] = 2633, - [2701] = 493, - [2702] = 502, - [2703] = 2637, - [2704] = 511, - [2705] = 512, - [2706] = 453, - [2707] = 520, - [2708] = 2708, - [2709] = 2709, - [2710] = 516, - [2711] = 514, - [2712] = 730, - [2713] = 708, - [2714] = 715, - [2715] = 716, - [2716] = 718, - [2717] = 2638, - [2718] = 2634, - [2719] = 509, - [2720] = 2635, - [2721] = 512, - [2722] = 633, - [2723] = 634, - [2724] = 2724, + [2696] = 946, + [2697] = 961, + [2698] = 967, + [2699] = 954, + [2700] = 2576, + [2701] = 519, + [2702] = 382, + [2703] = 725, + [2704] = 524, + [2705] = 697, + [2706] = 380, + [2707] = 716, + [2708] = 515, + [2709] = 484, + [2710] = 742, + [2711] = 2711, + [2712] = 977, + [2713] = 2713, + [2714] = 501, + [2715] = 2715, + [2716] = 739, + [2717] = 507, + [2718] = 988, + [2719] = 525, + [2720] = 2720, + [2721] = 2721, + [2722] = 2601, + [2723] = 488, + [2724] = 516, [2725] = 517, - [2726] = 520, - [2727] = 369, - [2728] = 929, - [2729] = 2729, + [2726] = 515, + [2727] = 524, + [2728] = 356, + [2729] = 343, [2730] = 2730, - [2731] = 368, - [2732] = 502, - [2733] = 369, + [2731] = 2731, + [2732] = 2732, + [2733] = 2733, [2734] = 2734, - [2735] = 516, + [2735] = 488, [2736] = 2736, [2737] = 2737, [2738] = 2738, @@ -7813,29 +7809,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2757] = 2757, [2758] = 2758, [2759] = 2759, - [2760] = 2760, + [2760] = 988, [2761] = 2761, [2762] = 2762, [2763] = 2763, [2764] = 2764, [2765] = 2765, [2766] = 2766, - [2767] = 2767, - [2768] = 2768, + [2767] = 716, + [2768] = 697, [2769] = 2769, [2770] = 2770, [2771] = 2771, - [2772] = 2772, - [2773] = 2773, - [2774] = 2774, - [2775] = 2775, - [2776] = 2776, - [2777] = 2777, - [2778] = 2778, - [2779] = 2779, + [2772] = 725, + [2773] = 916, + [2774] = 1951, + [2775] = 507, + [2776] = 967, + [2777] = 954, + [2778] = 382, + [2779] = 469, [2780] = 2780, [2781] = 2781, - [2782] = 453, + [2782] = 2782, [2783] = 2783, [2784] = 2784, [2785] = 2785, @@ -7847,1218 +7843,1218 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2791] = 2791, [2792] = 2792, [2793] = 2793, - [2794] = 2794, + [2794] = 2731, [2795] = 2795, [2796] = 2796, [2797] = 2797, [2798] = 2798, - [2799] = 459, + [2799] = 2799, [2800] = 2800, - [2801] = 459, - [2802] = 1967, + [2801] = 730, + [2802] = 718, [2803] = 2803, [2804] = 2804, [2805] = 2805, [2806] = 2806, [2807] = 2807, [2808] = 2808, - [2809] = 2809, + [2809] = 504, [2810] = 2810, - [2811] = 2811, + [2811] = 742, [2812] = 2812, - [2813] = 2813, - [2814] = 2814, - [2815] = 2815, - [2816] = 2816, - [2817] = 2817, - [2818] = 2818, - [2819] = 2819, - [2820] = 2798, - [2821] = 2821, - [2822] = 2708, - [2823] = 730, - [2824] = 2709, - [2825] = 708, - [2826] = 715, - [2827] = 716, - [2828] = 718, - [2829] = 2829, + [2813] = 519, + [2814] = 516, + [2815] = 501, + [2816] = 729, + [2817] = 733, + [2818] = 517, + [2819] = 508, + [2820] = 2820, + [2821] = 380, + [2822] = 2576, + [2823] = 2823, + [2824] = 2824, + [2825] = 502, + [2826] = 2826, + [2827] = 2827, + [2828] = 2828, + [2829] = 739, [2830] = 2830, [2831] = 2831, [2832] = 2832, - [2833] = 2833, - [2834] = 2834, - [2835] = 2835, - [2836] = 1097, + [2833] = 985, + [2834] = 980, + [2835] = 2001, + [2836] = 2836, [2837] = 2837, - [2838] = 2639, + [2838] = 2838, [2839] = 2839, [2840] = 2840, [2841] = 2841, - [2842] = 743, - [2843] = 698, + [2842] = 977, + [2843] = 994, [2844] = 2844, - [2845] = 723, - [2846] = 729, - [2847] = 2639, + [2845] = 2845, + [2846] = 2846, + [2847] = 2847, [2848] = 2848, [2849] = 2849, [2850] = 2850, - [2851] = 2851, + [2851] = 2731, [2852] = 2852, [2853] = 2853, [2854] = 2854, [2855] = 2855, [2856] = 2856, - [2857] = 2857, + [2857] = 524, [2858] = 2858, - [2859] = 2859, + [2859] = 354, [2860] = 2860, [2861] = 2861, [2862] = 2862, - [2863] = 2863, + [2863] = 469, [2864] = 2864, - [2865] = 2865, + [2865] = 515, [2866] = 2866, [2867] = 2867, [2868] = 2868, [2869] = 2869, - [2870] = 2870, + [2870] = 468, [2871] = 2871, - [2872] = 499, - [2873] = 510, - [2874] = 511, - [2875] = 518, - [2876] = 514, - [2877] = 509, - [2878] = 482, - [2879] = 343, + [2872] = 2872, + [2873] = 2873, + [2874] = 2874, + [2875] = 2875, + [2876] = 2876, + [2877] = 2877, + [2878] = 2576, + [2879] = 356, [2880] = 2880, - [2881] = 2881, - [2882] = 493, + [2881] = 525, + [2882] = 483, [2883] = 2883, - [2884] = 512, - [2885] = 378, + [2884] = 2884, + [2885] = 2885, [2886] = 2886, [2887] = 2887, [2888] = 2888, [2889] = 2889, - [2890] = 520, + [2890] = 2711, [2891] = 2891, - [2892] = 2892, + [2892] = 493, [2893] = 2893, [2894] = 2894, - [2895] = 2895, - [2896] = 2896, + [2895] = 343, + [2896] = 934, [2897] = 2897, [2898] = 2898, - [2899] = 949, - [2900] = 491, - [2901] = 952, - [2902] = 960, - [2903] = 961, - [2904] = 492, - [2905] = 2798, - [2906] = 987, - [2907] = 956, + [2899] = 375, + [2900] = 2900, + [2901] = 2901, + [2902] = 946, + [2903] = 2903, + [2904] = 2904, + [2905] = 961, + [2906] = 2906, + [2907] = 2907, [2908] = 2908, - [2909] = 887, - [2910] = 929, - [2911] = 2009, - [2912] = 366, - [2913] = 931, - [2914] = 932, - [2915] = 383, - [2916] = 517, - [2917] = 2917, + [2909] = 2909, + [2910] = 2910, + [2911] = 2911, + [2912] = 2912, + [2913] = 2913, + [2914] = 2914, + [2915] = 2915, + [2916] = 2916, + [2917] = 2713, [2918] = 2918, - [2919] = 2919, + [2919] = 484, [2920] = 2920, [2921] = 2921, - [2922] = 2790, - [2923] = 2527, - [2924] = 2918, - [2925] = 2009, - [2926] = 952, - [2927] = 2927, - [2928] = 2730, - [2929] = 931, - [2930] = 2545, - [2931] = 887, - [2932] = 2932, - [2933] = 2933, - [2934] = 932, - [2935] = 2791, - [2936] = 743, - [2937] = 2937, - [2938] = 2938, + [2922] = 2824, + [2923] = 356, + [2924] = 484, + [2925] = 525, + [2926] = 2533, + [2927] = 980, + [2928] = 2839, + [2929] = 2929, + [2930] = 946, + [2931] = 961, + [2932] = 967, + [2933] = 2837, + [2934] = 354, + [2935] = 969, + [2936] = 2524, + [2937] = 2523, + [2938] = 715, [2939] = 2939, - [2940] = 366, + [2940] = 2540, [2941] = 2941, - [2942] = 723, - [2943] = 729, + [2942] = 2771, + [2943] = 2943, [2944] = 2944, - [2945] = 2571, - [2946] = 2919, - [2947] = 2785, - [2948] = 2948, - [2949] = 2800, - [2950] = 2781, - [2951] = 2776, - [2952] = 2779, - [2953] = 698, - [2954] = 2954, - [2955] = 2927, - [2956] = 960, - [2957] = 2786, - [2958] = 2734, - [2959] = 961, - [2960] = 2795, - [2961] = 2792, - [2962] = 2517, - [2963] = 2551, - [2964] = 2793, + [2945] = 469, + [2946] = 382, + [2947] = 2947, + [2948] = 488, + [2949] = 2949, + [2950] = 2950, + [2951] = 984, + [2952] = 2836, + [2953] = 2545, + [2954] = 985, + [2955] = 2955, + [2956] = 2832, + [2957] = 2957, + [2958] = 709, + [2959] = 2841, + [2960] = 2831, + [2961] = 701, + [2962] = 2830, + [2963] = 2894, + [2964] = 2964, [2965] = 2965, - [2966] = 2966, - [2967] = 2787, - [2968] = 987, - [2969] = 368, - [2970] = 2970, - [2971] = 956, - [2972] = 369, - [2973] = 2920, - [2974] = 2556, - [2975] = 746, - [2976] = 730, - [2977] = 708, - [2978] = 409, - [2979] = 2796, - [2980] = 2797, - [2981] = 2527, - [2982] = 2982, - [2983] = 715, - [2984] = 716, - [2985] = 718, - [2986] = 2986, - [2987] = 2987, - [2988] = 2988, - [2989] = 2545, + [2966] = 375, + [2967] = 2967, + [2968] = 739, + [2969] = 2558, + [2970] = 2828, + [2971] = 2971, + [2972] = 2972, + [2973] = 2827, + [2974] = 2974, + [2975] = 2975, + [2976] = 2840, + [2977] = 2972, + [2978] = 2846, + [2979] = 2965, + [2980] = 2848, + [2981] = 2964, + [2982] = 742, + [2983] = 2971, + [2984] = 2826, + [2985] = 2985, + [2986] = 2530, + [2987] = 954, + [2988] = 483, + [2989] = 2771, [2990] = 2990, - [2991] = 2932, - [2992] = 2992, - [2993] = 2775, - [2994] = 2954, - [2995] = 2939, - [2996] = 746, - [2997] = 2997, - [2998] = 383, - [2999] = 733, - [3000] = 2783, - [3001] = 3001, - [3002] = 736, - [3003] = 2565, - [3004] = 2908, - [3005] = 959, - [3006] = 939, - [3007] = 3007, - [3008] = 1097, - [3009] = 2517, - [3010] = 3010, - [3011] = 2551, - [3012] = 989, - [3013] = 482, - [3014] = 2519, - [3015] = 517, - [3016] = 2880, - [3017] = 459, - [3018] = 2769, - [3019] = 944, - [3020] = 493, - [3021] = 491, - [3022] = 502, - [3023] = 2933, - [3024] = 2794, - [3025] = 516, - [3026] = 2773, - [3027] = 2917, - [3028] = 929, + [2991] = 916, + [2992] = 2770, + [2993] = 2993, + [2994] = 2765, + [2995] = 2823, + [2996] = 977, + [2997] = 386, + [2998] = 515, + [2999] = 2001, + [3000] = 3000, + [3001] = 2555, + [3002] = 2555, + [3003] = 2820, + [3004] = 524, + [3005] = 2812, + [3006] = 2810, + [3007] = 2807, + [3008] = 2806, + [3009] = 2804, + [3010] = 2803, + [3011] = 2800, + [3012] = 2797, + [3013] = 2558, + [3014] = 986, + [3015] = 2791, + [3016] = 2838, + [3017] = 2770, + [3018] = 2765, + [3019] = 733, + [3020] = 729, + [3021] = 2805, + [3022] = 3022, + [3023] = 2545, + [3024] = 3024, + [3025] = 716, + [3026] = 697, + [3027] = 2731, + [3028] = 725, [3029] = 3029, - [3030] = 949, - [3031] = 2918, - [3032] = 2730, - [3033] = 2919, - [3034] = 2917, - [3035] = 3035, - [3036] = 2788, - [3037] = 3037, + [3030] = 2540, + [3031] = 973, + [3032] = 493, + [3033] = 730, + [3034] = 718, + [3035] = 2823, + [3036] = 2877, + [3037] = 988, [3038] = 3038, - [3039] = 2798, - [3040] = 2556, - [3041] = 2784, + [3039] = 934, + [3040] = 3040, + [3041] = 3041, [3042] = 3042, - [3043] = 3043, + [3043] = 2944, [3044] = 3044, - [3045] = 492, - [3046] = 2789, - [3047] = 2778, - [3048] = 2780, - [3049] = 2986, - [3050] = 2571, + [3045] = 2943, + [3046] = 2530, + [3047] = 2533, + [3048] = 3048, + [3049] = 994, + [3050] = 709, [3051] = 3051, - [3052] = 3052, - [3053] = 3053, - [3054] = 3054, - [3055] = 3055, - [3056] = 2565, - [3057] = 2519, - [3058] = 2196, - [3059] = 2197, - [3060] = 2199, - [3061] = 3061, - [3062] = 3062, - [3063] = 3063, - [3064] = 2527, - [3065] = 2986, - [3066] = 3066, - [3067] = 3067, - [3068] = 3068, - [3069] = 2868, - [3070] = 3070, - [3071] = 2730, + [3052] = 946, + [3053] = 800, + [3054] = 973, + [3055] = 2971, + [3056] = 422, + [3057] = 2555, + [3058] = 2852, + [3059] = 2849, + [3060] = 2967, + [3061] = 2558, + [3062] = 986, + [3063] = 770, + [3064] = 3064, + [3065] = 2974, + [3066] = 2975, + [3067] = 749, + [3068] = 755, + [3069] = 419, + [3070] = 768, + [3071] = 766, [3072] = 2545, - [3073] = 3073, - [3074] = 459, - [3075] = 2919, - [3076] = 409, + [3073] = 2972, + [3074] = 954, + [3075] = 967, + [3076] = 3076, [3077] = 3077, - [3078] = 3078, + [3078] = 934, [3079] = 3079, - [3080] = 2551, - [3081] = 2623, - [3082] = 3082, - [3083] = 3083, - [3084] = 2624, - [3085] = 2571, - [3086] = 383, - [3087] = 517, - [3088] = 399, - [3089] = 2939, - [3090] = 960, - [3091] = 3091, - [3092] = 887, - [3093] = 889, - [3094] = 2939, - [3095] = 502, - [3096] = 516, - [3097] = 3097, - [3098] = 3098, - [3099] = 949, - [3100] = 2556, - [3101] = 3101, - [3102] = 3102, - [3103] = 3103, - [3104] = 961, - [3105] = 2948, - [3106] = 3097, - [3107] = 989, - [3108] = 2988, - [3109] = 920, - [3110] = 922, - [3111] = 923, - [3112] = 2777, - [3113] = 925, - [3114] = 2990, - [3115] = 2625, - [3116] = 3116, - [3117] = 3037, - [3118] = 2626, - [3119] = 2627, - [3120] = 2628, - [3121] = 3121, - [3122] = 752, - [3123] = 753, - [3124] = 754, - [3125] = 3125, - [3126] = 2629, - [3127] = 2517, - [3128] = 2551, - [3129] = 3129, - [3130] = 760, - [3131] = 761, - [3132] = 762, - [3133] = 763, - [3134] = 764, - [3135] = 765, - [3136] = 747, - [3137] = 697, - [3138] = 969, - [3139] = 726, - [3140] = 2986, - [3141] = 3043, - [3142] = 2917, + [3080] = 386, + [3081] = 812, + [3082] = 757, + [3083] = 2957, + [3084] = 710, + [3085] = 2533, + [3086] = 944, + [3087] = 802, + [3088] = 705, + [3089] = 710, + [3090] = 752, + [3091] = 753, + [3092] = 936, + [3093] = 2530, + [3094] = 920, + [3095] = 705, + [3096] = 944, + [3097] = 793, + [3098] = 758, + [3099] = 759, + [3100] = 920, + [3101] = 760, + [3102] = 936, + [3103] = 761, + [3104] = 762, + [3105] = 763, + [3106] = 985, + [3107] = 764, + [3108] = 980, + [3109] = 2644, + [3110] = 794, + [3111] = 771, + [3112] = 772, + [3113] = 796, + [3114] = 2720, + [3115] = 2985, + [3116] = 851, + [3117] = 896, + [3118] = 897, + [3119] = 901, + [3120] = 801, + [3121] = 961, + [3122] = 3122, + [3123] = 3123, + [3124] = 386, + [3125] = 977, + [3126] = 3126, + [3127] = 988, + [3128] = 984, + [3129] = 916, + [3130] = 2540, + [3131] = 3044, + [3132] = 3132, + [3133] = 3133, + [3134] = 3134, + [3135] = 923, + [3136] = 3136, + [3137] = 3137, + [3138] = 2641, + [3139] = 2626, + [3140] = 749, + [3141] = 755, + [3142] = 3142, [3143] = 3143, - [3144] = 888, - [3145] = 984, - [3146] = 987, - [3147] = 2917, + [3144] = 3144, + [3145] = 3145, + [3146] = 3146, + [3147] = 2823, [3148] = 3148, - [3149] = 413, - [3150] = 3150, + [3149] = 3149, + [3150] = 757, [3151] = 3151, - [3152] = 956, - [3153] = 959, - [3154] = 916, - [3155] = 917, - [3156] = 3156, - [3157] = 3157, - [3158] = 918, + [3152] = 2612, + [3153] = 2605, + [3154] = 915, + [3155] = 912, + [3156] = 2600, + [3157] = 2586, + [3158] = 386, [3159] = 3159, [3160] = 3160, - [3161] = 748, - [3162] = 3162, - [3163] = 749, - [3164] = 750, - [3165] = 751, - [3166] = 939, + [3161] = 3161, + [3162] = 969, + [3163] = 3163, + [3164] = 812, + [3165] = 3165, + [3166] = 2765, [3167] = 3167, - [3168] = 3168, - [3169] = 3169, - [3170] = 755, - [3171] = 425, - [3172] = 758, - [3173] = 759, - [3174] = 697, - [3175] = 3175, - [3176] = 969, - [3177] = 726, - [3178] = 2556, - [3179] = 766, - [3180] = 767, - [3181] = 2918, - [3182] = 2605, - [3183] = 888, - [3184] = 2730, - [3185] = 984, - [3186] = 2571, - [3187] = 768, - [3188] = 769, - [3189] = 3083, - [3190] = 409, - [3191] = 989, - [3192] = 3192, - [3193] = 3193, - [3194] = 2919, - [3195] = 916, - [3196] = 917, - [3197] = 409, + [3168] = 802, + [3169] = 801, + [3170] = 800, + [3171] = 3171, + [3172] = 3172, + [3173] = 3173, + [3174] = 3174, + [3175] = 2578, + [3176] = 391, + [3177] = 770, + [3178] = 3178, + [3179] = 3179, + [3180] = 3180, + [3181] = 3181, + [3182] = 3182, + [3183] = 3183, + [3184] = 768, + [3185] = 766, + [3186] = 3186, + [3187] = 2196, + [3188] = 3188, + [3189] = 2214, + [3190] = 2219, + [3191] = 3191, + [3192] = 2523, + [3193] = 2524, + [3194] = 3194, + [3195] = 3195, + [3196] = 3196, + [3197] = 969, [3198] = 3198, - [3199] = 918, + [3199] = 3199, [3200] = 3200, - [3201] = 3201, - [3202] = 785, - [3203] = 786, - [3204] = 944, - [3205] = 748, - [3206] = 749, - [3207] = 750, - [3208] = 751, - [3209] = 755, - [3210] = 758, - [3211] = 759, - [3212] = 3212, - [3213] = 3213, + [3201] = 984, + [3202] = 994, + [3203] = 3064, + [3204] = 525, + [3205] = 3079, + [3206] = 382, + [3207] = 3207, + [3208] = 715, + [3209] = 2167, + [3210] = 3210, + [3211] = 3211, + [3212] = 522, + [3213] = 2540, [3214] = 3214, - [3215] = 2545, - [3216] = 3038, + [3215] = 3215, + [3216] = 3216, [3217] = 3217, - [3218] = 746, - [3219] = 3219, - [3220] = 3220, - [3221] = 2918, - [3222] = 3222, + [3218] = 3218, + [3219] = 701, + [3220] = 973, + [3221] = 3221, + [3222] = 709, [3223] = 3223, - [3224] = 3224, - [3225] = 3225, - [3226] = 733, - [3227] = 3227, + [3224] = 912, + [3225] = 469, + [3226] = 915, + [3227] = 2823, [3228] = 3228, - [3229] = 3229, - [3230] = 766, - [3231] = 767, + [3229] = 986, + [3230] = 2770, + [3231] = 3231, [3232] = 3232, - [3233] = 3233, - [3234] = 929, - [3235] = 501, - [3236] = 944, - [3237] = 2679, - [3238] = 3238, - [3239] = 2527, + [3233] = 2765, + [3234] = 3234, + [3235] = 3235, + [3236] = 2770, + [3237] = 2530, + [3238] = 772, + [3239] = 771, [3240] = 3240, [3241] = 3241, - [3242] = 768, - [3243] = 769, + [3242] = 3242, + [3243] = 515, [3244] = 3244, [3245] = 3245, - [3246] = 931, - [3247] = 2194, - [3248] = 959, - [3249] = 932, + [3246] = 3246, + [3247] = 3247, + [3248] = 3248, + [3249] = 2771, [3250] = 3250, - [3251] = 2517, - [3252] = 785, - [3253] = 786, - [3254] = 736, - [3255] = 3255, - [3256] = 1097, - [3257] = 939, - [3258] = 952, - [3259] = 3259, - [3260] = 3260, - [3261] = 3261, - [3262] = 3262, - [3263] = 3162, - [3264] = 3167, - [3265] = 3168, - [3266] = 760, - [3267] = 3267, - [3268] = 761, - [3269] = 3269, - [3270] = 3270, - [3271] = 762, - [3272] = 3272, - [3273] = 3102, - [3274] = 3068, - [3275] = 763, - [3276] = 3276, - [3277] = 764, - [3278] = 765, - [3279] = 747, - [3280] = 3156, - [3281] = 3281, - [3282] = 785, - [3283] = 786, - [3284] = 2623, - [3285] = 2624, - [3286] = 925, - [3287] = 748, - [3288] = 3223, - [3289] = 399, - [3290] = 3290, - [3291] = 3001, - [3292] = 413, - [3293] = 3293, - [3294] = 2625, - [3295] = 2626, - [3296] = 944, - [3297] = 2627, - [3298] = 2628, - [3299] = 749, - [3300] = 413, - [3301] = 3068, - [3302] = 2629, + [3251] = 3251, + [3252] = 3252, + [3253] = 753, + [3254] = 752, + [3255] = 2558, + [3256] = 524, + [3257] = 2555, + [3258] = 2771, + [3259] = 2971, + [3260] = 2533, + [3261] = 2545, + [3262] = 2972, + [3263] = 758, + [3264] = 391, + [3265] = 3178, + [3266] = 2167, + [3267] = 3161, + [3268] = 3160, + [3269] = 973, + [3270] = 3159, + [3271] = 2219, + [3272] = 2214, + [3273] = 2196, + [3274] = 3145, + [3275] = 3144, + [3276] = 3143, + [3277] = 3277, + [3278] = 3142, + [3279] = 3279, + [3280] = 3133, + [3281] = 3132, + [3282] = 3122, + [3283] = 3283, + [3284] = 3173, + [3285] = 3134, + [3286] = 3286, + [3287] = 3286, + [3288] = 3288, + [3289] = 3289, + [3290] = 3231, + [3291] = 3232, + [3292] = 3292, + [3293] = 3288, + [3294] = 3294, + [3295] = 3295, + [3296] = 3296, + [3297] = 3297, + [3298] = 3298, + [3299] = 3299, + [3300] = 984, + [3301] = 986, + [3302] = 419, [3303] = 3303, - [3304] = 3169, + [3304] = 3304, [3305] = 3305, [3306] = 3306, - [3307] = 3307, - [3308] = 3308, + [3307] = 3173, + [3308] = 3207, [3309] = 3309, [3310] = 3310, - [3311] = 750, - [3312] = 751, - [3313] = 3192, + [3311] = 3247, + [3312] = 3248, + [3313] = 3251, [3314] = 3314, - [3315] = 413, - [3316] = 425, - [3317] = 766, - [3318] = 767, + [3315] = 3210, + [3316] = 3316, + [3317] = 3211, + [3318] = 422, [3319] = 3319, - [3320] = 939, - [3321] = 3010, - [3322] = 3281, - [3323] = 3193, - [3324] = 2605, - [3325] = 3325, - [3326] = 409, - [3327] = 752, - [3328] = 697, - [3329] = 3329, - [3330] = 753, - [3331] = 959, - [3332] = 3116, - [3333] = 969, + [3320] = 710, + [3321] = 944, + [3322] = 3288, + [3323] = 969, + [3324] = 3324, + [3325] = 705, + [3326] = 3214, + [3327] = 920, + [3328] = 3215, + [3329] = 936, + [3330] = 923, + [3331] = 391, + [3332] = 3216, + [3333] = 3217, [3334] = 3334, - [3335] = 754, - [3336] = 920, - [3337] = 412, - [3338] = 918, + [3335] = 3218, + [3336] = 986, + [3337] = 969, + [3338] = 386, [3339] = 3339, - [3340] = 3340, - [3341] = 726, - [3342] = 939, + [3340] = 3286, + [3341] = 3341, + [3342] = 749, [3343] = 3343, - [3344] = 3344, - [3345] = 3345, - [3346] = 989, - [3347] = 3244, - [3348] = 3339, - [3349] = 755, - [3350] = 3345, - [3351] = 3281, - [3352] = 425, - [3353] = 2679, + [3344] = 755, + [3345] = 391, + [3346] = 3279, + [3347] = 912, + [3348] = 3348, + [3349] = 3349, + [3350] = 3350, + [3351] = 915, + [3352] = 3221, + [3353] = 3223, [3354] = 3354, - [3355] = 888, - [3356] = 399, - [3357] = 3240, - [3358] = 984, - [3359] = 922, - [3360] = 3250, - [3361] = 3340, - [3362] = 889, - [3363] = 3061, - [3364] = 768, - [3365] = 649, - [3366] = 769, - [3367] = 923, - [3368] = 399, - [3369] = 3078, - [3370] = 409, - [3371] = 3371, - [3372] = 758, - [3373] = 759, - [3374] = 3272, - [3375] = 424, - [3376] = 3091, - [3377] = 3066, - [3378] = 3067, - [3379] = 3070, - [3380] = 3220, - [3381] = 3225, - [3382] = 3229, - [3383] = 3238, - [3384] = 3224, - [3385] = 3228, - [3386] = 3233, - [3387] = 3143, - [3388] = 3259, - [3389] = 3310, - [3390] = 417, - [3391] = 989, - [3392] = 418, - [3393] = 425, - [3394] = 3232, - [3395] = 2196, - [3396] = 2197, - [3397] = 2199, - [3398] = 3079, - [3399] = 3399, - [3400] = 3400, - [3401] = 3401, - [3402] = 3345, - [3403] = 944, - [3404] = 3404, - [3405] = 3405, - [3406] = 3406, - [3407] = 3260, - [3408] = 3222, - [3409] = 3262, - [3410] = 3082, - [3411] = 3411, - [3412] = 3412, - [3413] = 959, - [3414] = 3414, - [3415] = 3415, - [3416] = 916, - [3417] = 917, - [3418] = 2194, + [3355] = 3355, + [3356] = 3356, + [3357] = 3357, + [3358] = 422, + [3359] = 386, + [3360] = 3277, + [3361] = 984, + [3362] = 3362, + [3363] = 757, + [3364] = 3364, + [3365] = 3234, + [3366] = 3303, + [3367] = 3304, + [3368] = 772, + [3369] = 3235, + [3370] = 3228, + [3371] = 771, + [3372] = 753, + [3373] = 3373, + [3374] = 901, + [3375] = 752, + [3376] = 3240, + [3377] = 553, + [3378] = 3241, + [3379] = 3041, + [3380] = 897, + [3381] = 3242, + [3382] = 896, + [3383] = 3040, + [3384] = 2578, + [3385] = 2586, + [3386] = 419, + [3387] = 2600, + [3388] = 2605, + [3389] = 2612, + [3390] = 2626, + [3391] = 2641, + [3392] = 851, + [3393] = 2644, + [3394] = 2720, + [3395] = 812, + [3396] = 419, + [3397] = 802, + [3398] = 801, + [3399] = 800, + [3400] = 973, + [3401] = 796, + [3402] = 794, + [3403] = 793, + [3404] = 414, + [3405] = 770, + [3406] = 415, + [3407] = 425, + [3408] = 413, + [3409] = 768, + [3410] = 766, + [3411] = 764, + [3412] = 763, + [3413] = 762, + [3414] = 761, + [3415] = 422, + [3416] = 3246, + [3417] = 760, + [3418] = 759, [3419] = 3419, [3420] = 3420, - [3421] = 413, + [3421] = 3421, [3422] = 3422, - [3423] = 3423, + [3423] = 3339, [3424] = 3424, - [3425] = 3406, - [3426] = 3401, - [3427] = 3404, + [3425] = 3425, + [3426] = 3426, + [3427] = 3427, [3428] = 3428, - [3429] = 424, - [3430] = 417, - [3431] = 418, - [3432] = 425, - [3433] = 3001, - [3434] = 3010, - [3435] = 3303, + [3429] = 3429, + [3430] = 3430, + [3431] = 3431, + [3432] = 3432, + [3433] = 3433, + [3434] = 3350, + [3435] = 3435, [3436] = 3436, - [3437] = 3269, - [3438] = 3308, - [3439] = 92, - [3440] = 3334, - [3441] = 3290, - [3442] = 3319, - [3443] = 3343, + [3437] = 2555, + [3438] = 3438, + [3439] = 2558, + [3440] = 3440, + [3441] = 3349, + [3442] = 3442, + [3443] = 415, [3444] = 425, - [3445] = 92, - [3446] = 3267, - [3447] = 93, - [3448] = 501, + [3445] = 3445, + [3446] = 3446, + [3447] = 3447, + [3448] = 413, [3449] = 3449, [3450] = 3450, - [3451] = 412, - [3452] = 424, - [3453] = 417, - [3454] = 418, - [3455] = 93, + [3451] = 3451, + [3452] = 3452, + [3453] = 3453, + [3454] = 3454, + [3455] = 3455, [3456] = 3456, - [3457] = 3411, - [3458] = 3412, + [3457] = 3457, + [3458] = 3458, [3459] = 3459, [3460] = 3460, - [3461] = 413, - [3462] = 3462, - [3463] = 3463, - [3464] = 3405, - [3465] = 3414, + [3461] = 3461, + [3462] = 414, + [3463] = 415, + [3464] = 425, + [3465] = 3465, [3466] = 3466, - [3467] = 3415, - [3468] = 3468, - [3469] = 3469, - [3470] = 3470, + [3467] = 413, + [3468] = 3348, + [3469] = 387, + [3470] = 3288, [3471] = 3471, [3472] = 3472, - [3473] = 344, - [3474] = 402, - [3475] = 889, + [3473] = 851, + [3474] = 796, + [3475] = 3475, [3476] = 3476, - [3477] = 3477, + [3477] = 794, [3478] = 3478, [3479] = 3479, - [3480] = 412, + [3480] = 3283, [3481] = 3481, - [3482] = 3482, - [3483] = 3483, + [3482] = 3040, + [3483] = 3041, [3484] = 3484, - [3485] = 3485, - [3486] = 920, - [3487] = 922, - [3488] = 923, - [3489] = 925, + [3485] = 419, + [3486] = 3486, + [3487] = 3487, + [3488] = 3488, + [3489] = 3286, [3490] = 3490, - [3491] = 3068, + [3491] = 3491, [3492] = 3492, - [3493] = 752, - [3494] = 753, - [3495] = 754, - [3496] = 424, - [3497] = 417, - [3498] = 418, - [3499] = 3499, - [3500] = 760, - [3501] = 761, - [3502] = 762, - [3503] = 763, - [3504] = 764, - [3505] = 765, - [3506] = 747, - [3507] = 92, + [3493] = 2540, + [3494] = 3494, + [3495] = 3495, + [3496] = 3496, + [3497] = 3497, + [3498] = 3498, + [3499] = 2530, + [3500] = 3500, + [3501] = 793, + [3502] = 2533, + [3503] = 414, + [3504] = 3504, + [3505] = 3505, + [3506] = 3506, + [3507] = 3507, [3508] = 3508, [3509] = 3509, [3510] = 3510, [3511] = 3511, [3512] = 3512, - [3513] = 3513, - [3514] = 92, - [3515] = 93, - [3516] = 3516, - [3517] = 3517, - [3518] = 93, + [3513] = 415, + [3514] = 3514, + [3515] = 92, + [3516] = 92, + [3517] = 3343, + [3518] = 425, [3519] = 3519, - [3520] = 3520, - [3521] = 3521, + [3520] = 3178, + [3521] = 3292, [3522] = 3522, - [3523] = 3523, - [3524] = 3524, + [3523] = 3294, + [3524] = 93, [3525] = 3525, [3526] = 3526, - [3527] = 3527, - [3528] = 3528, - [3529] = 2527, + [3527] = 3296, + [3528] = 3297, + [3529] = 3529, [3530] = 3530, - [3531] = 3531, - [3532] = 2545, - [3533] = 3533, - [3534] = 3156, - [3535] = 3535, + [3531] = 413, + [3532] = 3532, + [3533] = 3306, + [3534] = 3161, + [3535] = 3173, [3536] = 3536, - [3537] = 3537, - [3538] = 3538, + [3537] = 3160, + [3538] = 3159, [3539] = 3539, [3540] = 3540, - [3541] = 2571, - [3542] = 3542, - [3543] = 3371, + [3541] = 3541, + [3542] = 522, + [3543] = 3543, [3544] = 3544, [3545] = 3545, - [3546] = 409, - [3547] = 3232, - [3548] = 3244, - [3549] = 3549, - [3550] = 3550, - [3551] = 3551, - [3552] = 2517, - [3553] = 2551, + [3546] = 3546, + [3547] = 3547, + [3548] = 3548, + [3549] = 3145, + [3550] = 3144, + [3551] = 3143, + [3552] = 3552, + [3553] = 3553, [3554] = 3554, - [3555] = 3329, - [3556] = 3091, - [3557] = 3061, - [3558] = 3066, - [3559] = 3067, - [3560] = 3070, - [3561] = 3220, - [3562] = 3225, - [3563] = 3229, - [3564] = 3238, - [3565] = 3224, - [3566] = 3228, - [3567] = 3233, - [3568] = 3143, + [3555] = 3341, + [3556] = 422, + [3557] = 3557, + [3558] = 3142, + [3559] = 3559, + [3560] = 3560, + [3561] = 901, + [3562] = 3562, + [3563] = 3134, + [3564] = 764, + [3565] = 3314, + [3566] = 3133, + [3567] = 3316, + [3568] = 3319, [3569] = 3569, [3570] = 3570, - [3571] = 2556, - [3572] = 3572, + [3571] = 3132, + [3572] = 3122, [3573] = 3573, - [3574] = 3574, + [3574] = 3354, [3575] = 3575, - [3576] = 3428, - [3577] = 3577, - [3578] = 3578, - [3579] = 3579, - [3580] = 3580, - [3581] = 3581, - [3582] = 3582, - [3583] = 3583, - [3584] = 3584, - [3585] = 3585, - [3586] = 3586, + [3576] = 419, + [3577] = 386, + [3578] = 3234, + [3579] = 93, + [3580] = 763, + [3581] = 762, + [3582] = 92, + [3583] = 3299, + [3584] = 761, + [3585] = 93, + [3586] = 760, [3587] = 3587, [3588] = 3588, - [3589] = 3589, - [3590] = 412, - [3591] = 3345, - [3592] = 3592, - [3593] = 3593, - [3594] = 3594, - [3595] = 3281, - [3596] = 3596, - [3597] = 3597, - [3598] = 3598, - [3599] = 3599, + [3589] = 345, + [3590] = 896, + [3591] = 3324, + [3592] = 897, + [3593] = 422, + [3594] = 344, + [3595] = 759, + [3596] = 92, + [3597] = 758, + [3598] = 414, + [3599] = 2545, [3600] = 3600, - [3601] = 3601, - [3602] = 3602, - [3603] = 3603, - [3604] = 3307, - [3605] = 345, - [3606] = 3606, + [3601] = 93, + [3602] = 923, + [3603] = 3241, + [3604] = 3246, + [3605] = 3242, + [3606] = 3525, [3607] = 3607, [3608] = 3608, - [3609] = 3609, + [3609] = 3334, [3610] = 3610, - [3611] = 460, - [3612] = 100, - [3613] = 3613, - [3614] = 3614, - [3615] = 100, - [3616] = 101, - [3617] = 101, - [3618] = 3618, - [3619] = 421, - [3620] = 3614, - [3621] = 100, - [3622] = 3614, - [3623] = 3623, + [3611] = 95, + [3612] = 3612, + [3613] = 92, + [3614] = 3612, + [3615] = 95, + [3616] = 93, + [3617] = 3617, + [3618] = 3288, + [3619] = 426, + [3620] = 96, + [3621] = 391, + [3622] = 3622, + [3623] = 360, [3624] = 3624, - [3625] = 3625, - [3626] = 3614, - [3627] = 425, - [3628] = 413, - [3629] = 3629, - [3630] = 93, - [3631] = 399, - [3632] = 352, - [3633] = 420, - [3634] = 374, - [3635] = 92, - [3636] = 349, - [3637] = 101, - [3638] = 423, - [3639] = 3614, - [3640] = 93, - [3641] = 353, - [3642] = 100, - [3643] = 354, - [3644] = 92, - [3645] = 93, - [3646] = 101, + [3625] = 348, + [3626] = 92, + [3627] = 3612, + [3628] = 92, + [3629] = 416, + [3630] = 96, + [3631] = 357, + [3632] = 350, + [3633] = 3612, + [3634] = 412, + [3635] = 366, + [3636] = 96, + [3637] = 93, + [3638] = 95, + [3639] = 419, + [3640] = 368, + [3641] = 96, + [3642] = 473, + [3643] = 553, + [3644] = 3644, + [3645] = 358, + [3646] = 3646, [3647] = 3647, - [3648] = 3281, - [3649] = 348, - [3650] = 356, - [3651] = 357, - [3652] = 649, - [3653] = 414, - [3654] = 3654, - [3655] = 92, + [3648] = 93, + [3649] = 95, + [3650] = 3650, + [3651] = 371, + [3652] = 3612, + [3653] = 417, + [3654] = 422, + [3655] = 3655, [3656] = 3656, - [3657] = 113, - [3658] = 113, + [3657] = 3657, + [3658] = 3658, [3659] = 3656, - [3660] = 3660, - [3661] = 3661, - [3662] = 105, - [3663] = 115, - [3664] = 453, - [3665] = 3656, - [3666] = 3660, - [3667] = 3661, - [3668] = 424, - [3669] = 417, - [3670] = 418, - [3671] = 3656, - [3672] = 3660, - [3673] = 3661, - [3674] = 3674, - [3675] = 115, - [3676] = 3656, - [3677] = 3660, - [3678] = 3661, - [3679] = 3656, - [3680] = 3660, - [3681] = 3661, - [3682] = 105, + [3660] = 3657, + [3661] = 110, + [3662] = 3658, + [3663] = 3656, + [3664] = 3657, + [3665] = 3658, + [3666] = 3658, + [3667] = 3657, + [3668] = 3657, + [3669] = 3657, + [3670] = 3657, + [3671] = 3657, + [3672] = 102, + [3673] = 3657, + [3674] = 3657, + [3675] = 3657, + [3676] = 3657, + [3677] = 3677, + [3678] = 380, + [3679] = 3657, + [3680] = 3656, + [3681] = 3658, + [3682] = 3657, [3683] = 3656, - [3684] = 3660, - [3685] = 3661, - [3686] = 3656, - [3687] = 3656, - [3688] = 3660, - [3689] = 3661, - [3690] = 3656, - [3691] = 3660, - [3692] = 3661, - [3693] = 3656, - [3694] = 3660, - [3695] = 3661, - [3696] = 105, - [3697] = 3660, - [3698] = 3661, + [3684] = 96, + [3685] = 3656, + [3686] = 3658, + [3687] = 110, + [3688] = 3656, + [3689] = 102, + [3690] = 468, + [3691] = 3656, + [3692] = 468, + [3693] = 3693, + [3694] = 2498, + [3695] = 3658, + [3696] = 3657, + [3697] = 3658, + [3698] = 3657, [3699] = 3656, - [3700] = 3660, - [3701] = 3661, - [3702] = 3661, - [3703] = 3661, - [3704] = 453, - [3705] = 3661, - [3706] = 3661, - [3707] = 3661, - [3708] = 3661, - [3709] = 3661, - [3710] = 3660, - [3711] = 3711, - [3712] = 3712, - [3713] = 3625, - [3714] = 3661, - [3715] = 3661, - [3716] = 100, - [3717] = 412, - [3718] = 459, - [3719] = 459, + [3700] = 413, + [3701] = 425, + [3702] = 468, + [3703] = 3657, + [3704] = 103, + [3705] = 103, + [3706] = 103, + [3707] = 468, + [3708] = 469, + [3709] = 3658, + [3710] = 469, + [3711] = 96, + [3712] = 110, + [3713] = 3713, + [3714] = 3657, + [3715] = 469, + [3716] = 3655, + [3717] = 103, + [3718] = 3718, + [3719] = 3719, [3720] = 3720, - [3721] = 101, - [3722] = 3656, - [3723] = 3723, - [3724] = 453, - [3725] = 459, - [3726] = 3660, - [3727] = 113, - [3728] = 3728, - [3729] = 3656, - [3730] = 3660, - [3731] = 100, - [3732] = 3661, - [3733] = 115, - [3734] = 101, - [3735] = 101, - [3736] = 3711, - [3737] = 100, - [3738] = 113, - [3739] = 378, - [3740] = 115, - [3741] = 453, - [3742] = 3712, - [3743] = 105, - [3744] = 3720, - [3745] = 3723, - [3746] = 2507, - [3747] = 459, - [3748] = 3661, - [3749] = 1863, + [3721] = 415, + [3722] = 3658, + [3723] = 3656, + [3724] = 102, + [3725] = 3719, + [3726] = 3656, + [3727] = 3658, + [3728] = 3718, + [3729] = 3713, + [3730] = 95, + [3731] = 95, + [3732] = 102, + [3733] = 3657, + [3734] = 3693, + [3735] = 3657, + [3736] = 414, + [3737] = 3656, + [3738] = 3658, + [3739] = 469, + [3740] = 3657, + [3741] = 3656, + [3742] = 3658, + [3743] = 3656, + [3744] = 96, + [3745] = 110, + [3746] = 3657, + [3747] = 95, + [3748] = 3658, + [3749] = 1838, [3750] = 3750, [3751] = 3751, - [3752] = 492, - [3753] = 3750, - [3754] = 3751, - [3755] = 3750, + [3752] = 3752, + [3753] = 102, + [3754] = 1838, + [3755] = 110, [3756] = 3751, - [3757] = 3757, - [3758] = 3751, - [3759] = 3757, - [3760] = 3751, - [3761] = 3751, - [3762] = 514, - [3763] = 3751, - [3764] = 92, - [3765] = 3751, - [3766] = 3766, - [3767] = 3751, - [3768] = 348, - [3769] = 3674, + [3757] = 468, + [3758] = 103, + [3759] = 110, + [3760] = 3752, + [3761] = 102, + [3762] = 504, + [3763] = 103, + [3764] = 3764, + [3765] = 3765, + [3766] = 3750, + [3767] = 519, + [3768] = 3751, + [3769] = 468, [3770] = 3750, - [3771] = 453, + [3771] = 493, [3772] = 3772, - [3773] = 492, - [3774] = 3750, - [3775] = 3772, - [3776] = 352, - [3777] = 3766, - [3778] = 3757, - [3779] = 3751, - [3780] = 453, - [3781] = 356, - [3782] = 492, - [3783] = 3783, - [3784] = 3751, + [3773] = 501, + [3774] = 3764, + [3775] = 3765, + [3776] = 3751, + [3777] = 3752, + [3778] = 3751, + [3779] = 3764, + [3780] = 103, + [3781] = 3765, + [3782] = 93, + [3783] = 360, + [3784] = 3677, [3785] = 3750, - [3786] = 113, - [3787] = 491, - [3788] = 3750, - [3789] = 3789, - [3790] = 354, - [3791] = 3766, - [3792] = 459, - [3793] = 357, - [3794] = 3750, - [3795] = 3750, - [3796] = 3772, - [3797] = 509, - [3798] = 3757, - [3799] = 3751, - [3800] = 115, - [3801] = 3750, - [3802] = 3772, - [3803] = 459, - [3804] = 3804, - [3805] = 492, - [3806] = 491, - [3807] = 3750, - [3808] = 115, - [3809] = 491, - [3810] = 3766, - [3811] = 113, - [3812] = 113, - [3813] = 105, - [3814] = 3751, - [3815] = 93, - [3816] = 115, - [3817] = 1863, - [3818] = 3751, + [3786] = 3751, + [3787] = 3750, + [3788] = 110, + [3789] = 493, + [3790] = 92, + [3791] = 3750, + [3792] = 3751, + [3793] = 350, + [3794] = 102, + [3795] = 3751, + [3796] = 357, + [3797] = 3750, + [3798] = 3751, + [3799] = 358, + [3800] = 3752, + [3801] = 3801, + [3802] = 3802, + [3803] = 3751, + [3804] = 3750, + [3805] = 3751, + [3806] = 371, + [3807] = 348, + [3808] = 3750, + [3809] = 3751, + [3810] = 488, + [3811] = 3765, + [3812] = 488, + [3813] = 3750, + [3814] = 3750, + [3815] = 493, + [3816] = 3764, + [3817] = 3751, + [3818] = 3750, [3819] = 3750, - [3820] = 105, - [3821] = 353, - [3822] = 511, - [3823] = 3751, + [3820] = 488, + [3821] = 469, + [3822] = 3750, + [3823] = 3750, [3824] = 3750, - [3825] = 491, - [3826] = 3751, - [3827] = 3751, - [3828] = 105, - [3829] = 3751, - [3830] = 3830, - [3831] = 502, - [3832] = 3830, - [3833] = 634, - [3834] = 633, - [3835] = 633, - [3836] = 502, - [3837] = 3837, - [3838] = 3830, - [3839] = 3839, - [3840] = 100, - [3841] = 344, - [3842] = 516, - [3843] = 502, - [3844] = 3830, - [3845] = 3830, - [3846] = 517, - [3847] = 3830, - [3848] = 3830, - [3849] = 3830, - [3850] = 3850, - [3851] = 516, - [3852] = 92, - [3853] = 516, - [3854] = 93, - [3855] = 517, - [3856] = 3837, - [3857] = 634, - [3858] = 492, - [3859] = 3830, - [3860] = 3860, - [3861] = 3830, - [3862] = 492, - [3863] = 101, - [3864] = 3830, - [3865] = 3830, - [3866] = 634, + [3825] = 3750, + [3826] = 469, + [3827] = 493, + [3828] = 488, + [3829] = 3750, + [3830] = 524, + [3831] = 515, + [3832] = 345, + [3833] = 3833, + [3834] = 525, + [3835] = 3833, + [3836] = 525, + [3837] = 3833, + [3838] = 3833, + [3839] = 515, + [3840] = 524, + [3841] = 3833, + [3842] = 3833, + [3843] = 3843, + [3844] = 3833, + [3845] = 525, + [3846] = 3833, + [3847] = 95, + [3848] = 3833, + [3849] = 3833, + [3850] = 551, + [3851] = 515, + [3852] = 524, + [3853] = 96, + [3854] = 572, + [3855] = 572, + [3856] = 551, + [3857] = 3833, + [3858] = 572, + [3859] = 93, + [3860] = 3833, + [3861] = 524, + [3862] = 515, + [3863] = 92, + [3864] = 493, + [3865] = 3865, + [3866] = 551, [3867] = 3867, - [3868] = 517, - [3869] = 491, - [3870] = 517, - [3871] = 502, - [3872] = 3830, - [3873] = 633, - [3874] = 345, - [3875] = 491, - [3876] = 516, - [3877] = 101, - [3878] = 3878, - [3879] = 105, - [3880] = 453, + [3868] = 488, + [3869] = 3869, + [3870] = 525, + [3871] = 3867, + [3872] = 344, + [3873] = 3873, + [3874] = 3833, + [3875] = 493, + [3876] = 488, + [3877] = 3877, + [3878] = 468, + [3879] = 3879, + [3880] = 572, [3881] = 3881, - [3882] = 3882, - [3883] = 3883, - [3884] = 3884, - [3885] = 3885, - [3886] = 3878, - [3887] = 514, - [3888] = 3883, - [3889] = 517, - [3890] = 3878, - [3891] = 3878, - [3892] = 3892, - [3893] = 3878, - [3894] = 509, - [3895] = 3839, - [3896] = 3878, - [3897] = 3897, - [3898] = 510, - [3899] = 633, - [3900] = 344, - [3901] = 3789, - [3902] = 511, - [3903] = 512, - [3904] = 633, - [3905] = 3867, - [3906] = 499, - [3907] = 113, - [3908] = 634, - [3909] = 459, + [3882] = 468, + [3883] = 515, + [3884] = 345, + [3885] = 525, + [3886] = 551, + [3887] = 3887, + [3888] = 517, + [3889] = 551, + [3890] = 516, + [3891] = 3891, + [3892] = 3772, + [3893] = 572, + [3894] = 3865, + [3895] = 3895, + [3896] = 3896, + [3897] = 3881, + [3898] = 344, + [3899] = 3869, + [3900] = 3895, + [3901] = 3901, + [3902] = 469, + [3903] = 1905, + [3904] = 3904, + [3905] = 3887, + [3906] = 524, + [3907] = 469, + [3908] = 3908, + [3909] = 3909, [3910] = 3910, - [3911] = 493, - [3912] = 115, - [3913] = 634, - [3914] = 453, + [3911] = 3911, + [3912] = 2601, + [3913] = 3895, + [3914] = 725, [3915] = 3915, [3916] = 3916, - [3917] = 3892, - [3918] = 634, - [3919] = 3878, - [3920] = 3885, - [3921] = 3921, - [3922] = 3922, - [3923] = 3837, - [3924] = 3924, - [3925] = 3925, - [3926] = 3926, - [3927] = 3674, - [3928] = 3884, - [3929] = 3929, - [3930] = 499, - [3931] = 3897, - [3932] = 517, - [3933] = 3878, - [3934] = 3910, - [3935] = 3915, - [3936] = 502, - [3937] = 708, - [3938] = 2633, - [3939] = 2637, - [3940] = 715, - [3941] = 716, - [3942] = 718, - [3943] = 100, - [3944] = 3916, - [3945] = 3926, - [3946] = 3924, - [3947] = 502, - [3948] = 510, - [3949] = 516, - [3950] = 516, - [3951] = 374, - [3952] = 3921, - [3953] = 514, - [3954] = 344, - [3955] = 3878, - [3956] = 510, - [3957] = 349, - [3958] = 3922, - [3959] = 3878, - [3960] = 518, - [3961] = 3961, - [3962] = 3878, - [3963] = 459, - [3964] = 459, - [3965] = 2634, + [3917] = 469, + [3918] = 697, + [3919] = 519, + [3920] = 551, + [3921] = 716, + [3922] = 345, + [3923] = 742, + [3924] = 508, + [3925] = 469, + [3926] = 366, + [3927] = 103, + [3928] = 3896, + [3929] = 3895, + [3930] = 3877, + [3931] = 504, + [3932] = 3895, + [3933] = 3904, + [3934] = 516, + [3935] = 517, + [3936] = 525, + [3937] = 3937, + [3938] = 95, + [3939] = 572, + [3940] = 515, + [3941] = 368, + [3942] = 524, + [3943] = 501, + [3944] = 3909, + [3945] = 110, + [3946] = 502, + [3947] = 3947, + [3948] = 3948, + [3949] = 3949, + [3950] = 3895, + [3951] = 517, + [3952] = 468, + [3953] = 516, + [3954] = 3911, + [3955] = 3895, + [3956] = 3937, + [3957] = 3895, + [3958] = 96, + [3959] = 3959, + [3960] = 508, + [3961] = 507, + [3962] = 3948, + [3963] = 3887, + [3964] = 3895, + [3965] = 3949, [3966] = 3966, - [3967] = 345, - [3968] = 518, - [3969] = 459, - [3970] = 518, - [3971] = 509, - [3972] = 3925, - [3973] = 453, - [3974] = 482, - [3975] = 520, - [3976] = 3883, - [3977] = 453, - [3978] = 3978, - [3979] = 3883, - [3980] = 3929, - [3981] = 633, - [3982] = 1878, - [3983] = 3983, - [3984] = 3984, - [3985] = 3984, + [3967] = 102, + [3968] = 3895, + [3969] = 3969, + [3970] = 3966, + [3971] = 3959, + [3972] = 3887, + [3973] = 3867, + [3974] = 3677, + [3975] = 468, + [3976] = 3947, + [3977] = 3879, + [3978] = 2627, + [3979] = 519, + [3980] = 2615, + [3981] = 504, + [3982] = 483, + [3983] = 3895, + [3984] = 484, + [3985] = 3969, [3986] = 3986, - [3987] = 716, - [3988] = 3988, - [3989] = 3989, - [3990] = 3990, - [3991] = 708, - [3992] = 2639, - [3993] = 374, - [3994] = 718, - [3995] = 459, - [3996] = 459, + [3987] = 3987, + [3988] = 368, + [3989] = 488, + [3990] = 1951, + [3991] = 3991, + [3992] = 739, + [3993] = 3993, + [3994] = 725, + [3995] = 697, + [3996] = 716, [3997] = 3997, - [3998] = 492, - [3999] = 708, - [4000] = 3961, - [4001] = 3966, + [3998] = 493, + [3999] = 469, + [4000] = 4000, + [4001] = 4001, [4002] = 4002, - [4003] = 4003, - [4004] = 353, - [4005] = 354, + [4003] = 742, + [4004] = 4004, + [4005] = 739, [4006] = 4006, [4007] = 4007, [4008] = 4008, @@ -9066,1549 +9062,1551 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4010] = 4010, [4011] = 4011, [4012] = 4012, - [4013] = 4013, - [4014] = 4014, + [4013] = 469, + [4014] = 103, [4015] = 4015, [4016] = 4016, - [4017] = 4017, + [4017] = 493, [4018] = 4018, [4019] = 4019, [4020] = 4020, - [4021] = 4002, - [4022] = 4022, - [4023] = 1469, - [4024] = 4022, + [4021] = 366, + [4022] = 1951, + [4023] = 4023, + [4024] = 371, [4025] = 4025, - [4026] = 348, - [4027] = 4027, - [4028] = 715, - [4029] = 2635, - [4030] = 3988, - [4031] = 356, - [4032] = 349, + [4026] = 2576, + [4027] = 2711, + [4028] = 468, + [4029] = 4004, + [4030] = 469, + [4031] = 2713, + [4032] = 4032, [4033] = 4033, - [4034] = 4034, + [4034] = 2645, [4035] = 4035, [4036] = 4036, - [4037] = 2639, - [4038] = 3988, - [4039] = 4022, - [4040] = 357, - [4041] = 453, - [4042] = 716, + [4037] = 4037, + [4038] = 3993, + [4039] = 4039, + [4040] = 4023, + [4041] = 4041, + [4042] = 488, [4043] = 4043, [4044] = 4044, - [4045] = 730, + [4045] = 348, [4046] = 4046, - [4047] = 4047, + [4047] = 360, [4048] = 4048, - [4049] = 718, + [4049] = 4049, [4050] = 4050, [4051] = 4051, - [4052] = 453, + [4052] = 4052, [4053] = 4053, [4054] = 4054, - [4055] = 4055, - [4056] = 3997, - [4057] = 4057, - [4058] = 4002, - [4059] = 4059, + [4055] = 3993, + [4056] = 358, + [4057] = 357, + [4058] = 350, + [4059] = 3986, [4060] = 4060, - [4061] = 4034, + [4061] = 4061, [4062] = 4062, - [4063] = 2709, + [4063] = 4063, [4064] = 4064, - [4065] = 491, - [4066] = 4066, + [4065] = 4065, + [4066] = 4063, [4067] = 4067, - [4068] = 453, - [4069] = 459, + [4068] = 4068, + [4069] = 4069, [4070] = 4070, - [4071] = 2638, - [4072] = 492, + [4071] = 4039, + [4072] = 4023, [4073] = 4073, - [4074] = 4048, - [4075] = 4022, - [4076] = 492, - [4077] = 4077, - [4078] = 4078, - [4079] = 4079, + [4074] = 4074, + [4075] = 488, + [4076] = 4050, + [4077] = 4037, + [4078] = 4032, + [4079] = 3986, [4080] = 4080, [4081] = 4081, [4082] = 4082, - [4083] = 4083, - [4084] = 115, - [4085] = 4085, - [4086] = 1967, - [4087] = 3988, + [4083] = 4063, + [4084] = 3916, + [4085] = 3915, + [4086] = 4086, + [4087] = 4087, [4088] = 4088, [4089] = 4089, [4090] = 4090, - [4091] = 708, + [4091] = 3986, [4092] = 4092, [4093] = 4093, - [4094] = 715, - [4095] = 716, - [4096] = 718, + [4094] = 4094, + [4095] = 493, + [4096] = 4096, [4097] = 4097, - [4098] = 4098, + [4098] = 4063, [4099] = 4099, - [4100] = 113, - [4101] = 453, - [4102] = 459, - [4103] = 4103, - [4104] = 4022, - [4105] = 4009, - [4106] = 715, - [4107] = 3989, - [4108] = 4034, - [4109] = 4048, - [4110] = 105, + [4100] = 4100, + [4101] = 4101, + [4102] = 4102, + [4103] = 493, + [4104] = 468, + [4105] = 4105, + [4106] = 4106, + [4107] = 4107, + [4108] = 3986, + [4109] = 4109, + [4110] = 742, [4111] = 4111, - [4112] = 3988, - [4113] = 343, - [4114] = 4114, - [4115] = 4022, - [4116] = 4116, - [4117] = 4117, - [4118] = 511, - [4119] = 4119, + [4112] = 4112, + [4113] = 3986, + [4114] = 725, + [4115] = 4115, + [4116] = 468, + [4117] = 4037, + [4118] = 697, + [4119] = 716, [4120] = 4120, - [4121] = 4121, - [4122] = 4059, + [4121] = 4050, + [4122] = 4122, [4123] = 4123, - [4124] = 3988, - [4125] = 514, - [4126] = 4022, - [4127] = 4127, - [4128] = 4128, + [4124] = 488, + [4125] = 4125, + [4126] = 4063, + [4127] = 501, + [4128] = 519, [4129] = 4129, - [4130] = 3997, - [4131] = 4002, + [4130] = 504, + [4131] = 4131, [4132] = 4132, - [4133] = 3988, - [4134] = 4134, - [4135] = 4135, - [4136] = 509, - [4137] = 4137, + [4133] = 725, + [4134] = 3986, + [4135] = 3993, + [4136] = 4039, + [4137] = 366, [4138] = 4138, - [4139] = 4139, - [4140] = 4140, - [4141] = 3989, - [4142] = 3988, - [4143] = 4143, - [4144] = 4144, - [4145] = 4145, - [4146] = 491, - [4147] = 3997, + [4139] = 110, + [4140] = 4023, + [4141] = 469, + [4142] = 4037, + [4143] = 4050, + [4144] = 4063, + [4145] = 697, + [4146] = 4146, + [4147] = 4147, [4148] = 4148, - [4149] = 352, - [4150] = 4150, - [4151] = 4151, - [4152] = 3989, - [4153] = 4034, - [4154] = 4048, - [4155] = 3988, - [4156] = 4156, - [4157] = 4097, - [4158] = 378, - [4159] = 4159, - [4160] = 4160, + [4149] = 4063, + [4150] = 343, + [4151] = 4020, + [4152] = 4050, + [4153] = 742, + [4154] = 4037, + [4155] = 3986, + [4156] = 716, + [4157] = 368, + [4158] = 4158, + [4159] = 4039, + [4160] = 102, [4161] = 4161, - [4162] = 1967, + [4162] = 4053, [4163] = 4163, [4164] = 4164, - [4165] = 4066, - [4166] = 4073, - [4167] = 4077, + [4165] = 4165, + [4166] = 3986, + [4167] = 4167, [4168] = 4168, - [4169] = 4169, - [4170] = 491, - [4171] = 4002, - [4172] = 4172, - [4173] = 4173, + [4169] = 368, + [4170] = 469, + [4171] = 4171, + [4172] = 4037, + [4173] = 4050, [4174] = 4174, [4175] = 4175, - [4176] = 4176, - [4177] = 349, - [4178] = 459, + [4176] = 1473, + [4177] = 2602, + [4178] = 4063, [4179] = 4179, [4180] = 4180, - [4181] = 4181, - [4182] = 349, - [4183] = 374, - [4184] = 4022, - [4185] = 4022, + [4181] = 4087, + [4182] = 4182, + [4183] = 4063, + [4184] = 4184, + [4185] = 4185, [4186] = 4186, - [4187] = 4187, - [4188] = 492, - [4189] = 491, - [4190] = 4190, + [4187] = 380, + [4188] = 4188, + [4189] = 4189, + [4190] = 366, [4191] = 4191, - [4192] = 3997, - [4193] = 4002, - [4194] = 374, - [4195] = 3997, - [4196] = 730, - [4197] = 2708, - [4198] = 4198, + [4192] = 4192, + [4193] = 4193, + [4194] = 4194, + [4195] = 4138, + [4196] = 4196, + [4197] = 468, + [4198] = 2576, [4199] = 4199, [4200] = 4200, [4201] = 4201, [4202] = 4202, [4203] = 4203, [4204] = 4204, - [4205] = 378, - [4206] = 4206, - [4207] = 719, - [4208] = 2565, - [4209] = 2519, - [4210] = 459, + [4205] = 967, + [4206] = 493, + [4207] = 3289, + [4208] = 4208, + [4209] = 504, + [4210] = 488, [4211] = 4211, - [4212] = 514, - [4213] = 4060, - [4214] = 509, - [4215] = 887, - [4216] = 4216, - [4217] = 952, - [4218] = 517, - [4219] = 960, - [4220] = 961, - [4221] = 502, - [4222] = 987, - [4223] = 516, - [4224] = 956, + [4212] = 4146, + [4213] = 4147, + [4214] = 4214, + [4215] = 4215, + [4216] = 3309, + [4217] = 4204, + [4218] = 4218, + [4219] = 4219, + [4220] = 4220, + [4221] = 515, + [4222] = 4218, + [4223] = 4223, + [4224] = 343, [4225] = 4225, - [4226] = 2009, - [4227] = 4145, - [4228] = 4150, - [4229] = 4203, - [4230] = 633, - [4231] = 4231, - [4232] = 929, - [4233] = 4233, - [4234] = 4234, - [4235] = 4235, - [4236] = 4236, - [4237] = 3867, - [4238] = 3839, - [4239] = 931, - [4240] = 932, - [4241] = 2639, - [4242] = 345, - [4243] = 517, - [4244] = 2009, - [4245] = 1978, - [4246] = 502, - [4247] = 516, - [4248] = 4203, - [4249] = 4236, - [4250] = 4231, - [4251] = 366, - [4252] = 4252, - [4253] = 4253, - [4254] = 368, - [4255] = 3618, - [4256] = 369, + [4226] = 4226, + [4227] = 4227, + [4228] = 493, + [4229] = 4229, + [4230] = 354, + [4231] = 356, + [4232] = 709, + [4233] = 519, + [4234] = 551, + [4235] = 954, + [4236] = 985, + [4237] = 4237, + [4238] = 916, + [4239] = 934, + [4240] = 380, + [4241] = 916, + [4242] = 4242, + [4243] = 4242, + [4244] = 4244, + [4245] = 740, + [4246] = 4229, + [4247] = 985, + [4248] = 980, + [4249] = 4204, + [4250] = 524, + [4251] = 4218, + [4252] = 469, + [4253] = 4218, + [4254] = 4204, + [4255] = 4211, + [4256] = 946, [4257] = 4257, - [4258] = 517, - [4259] = 4259, - [4260] = 4260, - [4261] = 4252, - [4262] = 3344, - [4263] = 4263, - [4264] = 4264, - [4265] = 4121, - [4266] = 3325, - [4267] = 4127, - [4268] = 4268, - [4269] = 4007, - [4270] = 491, - [4271] = 4271, - [4272] = 492, - [4273] = 4078, - [4274] = 4082, - [4275] = 1097, - [4276] = 502, - [4277] = 491, - [4278] = 952, - [4279] = 517, - [4280] = 4236, - [4281] = 502, - [4282] = 4231, - [4283] = 516, - [4284] = 2908, - [4285] = 4252, - [4286] = 4286, - [4287] = 634, - [4288] = 4236, - [4289] = 960, - [4290] = 961, - [4291] = 4252, - [4292] = 492, - [4293] = 4204, - [4294] = 4203, - [4295] = 4236, - [4296] = 491, - [4297] = 987, - [4298] = 516, - [4299] = 492, - [4300] = 4252, - [4301] = 4203, - [4302] = 4236, - [4303] = 956, - [4304] = 4252, - [4305] = 887, - [4306] = 929, - [4307] = 459, - [4308] = 4203, - [4309] = 4236, - [4310] = 491, - [4311] = 949, - [4312] = 4252, - [4313] = 492, - [4314] = 4203, - [4315] = 4236, - [4316] = 4252, - [4317] = 4203, - [4318] = 4203, - [4319] = 952, - [4320] = 931, - [4321] = 932, - [4322] = 4203, - [4323] = 4323, - [4324] = 4203, - [4325] = 4203, - [4326] = 4203, - [4327] = 4203, - [4328] = 4203, - [4329] = 4203, - [4330] = 4234, - [4331] = 4331, - [4332] = 4203, - [4333] = 4203, - [4334] = 4203, - [4335] = 960, - [4336] = 961, - [4337] = 4260, - [4338] = 987, - [4339] = 956, - [4340] = 4253, - [4341] = 746, - [4342] = 887, - [4343] = 929, - [4344] = 4203, - [4345] = 4236, - [4346] = 4286, - [4347] = 4231, - [4348] = 887, - [4349] = 931, - [4350] = 932, - [4351] = 344, - [4352] = 4352, - [4353] = 4252, - [4354] = 717, - [4355] = 4355, - [4356] = 4286, - [4357] = 343, - [4358] = 4358, - [4359] = 4286, - [4360] = 4259, - [4361] = 4203, + [4258] = 4242, + [4259] = 961, + [4260] = 469, + [4261] = 375, + [4262] = 4043, + [4263] = 4204, + [4264] = 2576, + [4265] = 345, + [4266] = 4218, + [4267] = 488, + [4268] = 4041, + [4269] = 524, + [4270] = 488, + [4271] = 967, + [4272] = 3869, + [4273] = 3865, + [4274] = 4035, + [4275] = 4242, + [4276] = 731, + [4277] = 4242, + [4278] = 4237, + [4279] = 4279, + [4280] = 4280, + [4281] = 4242, + [4282] = 4282, + [4283] = 4283, + [4284] = 2523, + [4285] = 4204, + [4286] = 2838, + [4287] = 4218, + [4288] = 515, + [4289] = 525, + [4290] = 493, + [4291] = 967, + [4292] = 977, + [4293] = 4242, + [4294] = 988, + [4295] = 4237, + [4296] = 344, + [4297] = 954, + [4298] = 934, + [4299] = 4204, + [4300] = 4218, + [4301] = 916, + [4302] = 916, + [4303] = 4242, + [4304] = 4229, + [4305] = 4204, + [4306] = 4218, + [4307] = 2524, + [4308] = 4237, + [4309] = 980, + [4310] = 4242, + [4311] = 4218, + [4312] = 4204, + [4313] = 934, + [4314] = 4229, + [4315] = 4204, + [4316] = 4283, + [4317] = 493, + [4318] = 4204, + [4319] = 4220, + [4320] = 4225, + [4321] = 4204, + [4322] = 4322, + [4323] = 4204, + [4324] = 946, + [4325] = 4204, + [4326] = 961, + [4327] = 4204, + [4328] = 525, + [4329] = 4204, + [4330] = 4204, + [4331] = 488, + [4332] = 525, + [4333] = 977, + [4334] = 985, + [4335] = 3650, + [4336] = 4204, + [4337] = 2001, + [4338] = 4204, + [4339] = 3991, + [4340] = 954, + [4341] = 4341, + [4342] = 4204, + [4343] = 4204, + [4344] = 515, + [4345] = 572, + [4346] = 4008, + [4347] = 524, + [4348] = 524, + [4349] = 980, + [4350] = 515, + [4351] = 946, + [4352] = 961, + [4353] = 4353, + [4354] = 2017, + [4355] = 525, + [4356] = 2001, + [4357] = 977, + [4358] = 4007, + [4359] = 4359, + [4360] = 4341, + [4361] = 994, [4362] = 4362, [4363] = 4363, - [4364] = 952, - [4365] = 952, - [4366] = 923, - [4367] = 931, - [4368] = 932, - [4369] = 4369, - [4370] = 960, - [4371] = 961, - [4372] = 758, + [4364] = 350, + [4365] = 357, + [4366] = 358, + [4367] = 4367, + [4368] = 4368, + [4369] = 515, + [4370] = 524, + [4371] = 954, + [4372] = 4372, [4373] = 4373, - [4374] = 760, - [4375] = 987, - [4376] = 761, - [4377] = 956, - [4378] = 887, - [4379] = 4379, - [4380] = 762, - [4381] = 763, - [4382] = 4382, + [4374] = 4374, + [4375] = 4375, + [4376] = 4376, + [4377] = 967, + [4378] = 4378, + [4379] = 360, + [4380] = 4380, + [4381] = 348, + [4382] = 934, [4383] = 4383, - [4384] = 4384, + [4384] = 3720, [4385] = 4385, - [4386] = 764, - [4387] = 4387, - [4388] = 4388, + [4386] = 988, + [4387] = 934, + [4388] = 371, [4389] = 4389, [4390] = 4390, - [4391] = 2948, - [4392] = 4392, - [4393] = 4393, - [4394] = 765, - [4395] = 352, + [4391] = 916, + [4392] = 985, + [4393] = 4372, + [4394] = 4394, + [4395] = 4395, [4396] = 4396, - [4397] = 929, - [4398] = 931, - [4399] = 932, - [4400] = 353, - [4401] = 354, + [4397] = 3802, + [4398] = 3801, + [4399] = 4399, + [4400] = 4400, + [4401] = 4401, [4402] = 4402, [4403] = 4403, - [4404] = 931, - [4405] = 932, - [4406] = 4406, - [4407] = 348, - [4408] = 356, - [4409] = 357, - [4410] = 4211, - [4411] = 4411, - [4412] = 4412, - [4413] = 4268, - [4414] = 925, + [4404] = 4353, + [4405] = 4405, + [4406] = 4374, + [4407] = 4375, + [4408] = 4376, + [4409] = 980, + [4410] = 946, + [4411] = 961, + [4412] = 977, + [4413] = 366, + [4414] = 4414, [4415] = 4415, - [4416] = 747, - [4417] = 4417, - [4418] = 2623, - [4419] = 2624, - [4420] = 4420, - [4421] = 4421, - [4422] = 4422, - [4423] = 4423, - [4424] = 4424, - [4425] = 4425, + [4416] = 4416, + [4417] = 368, + [4418] = 525, + [4419] = 382, + [4420] = 954, + [4421] = 967, + [4422] = 977, + [4423] = 967, + [4424] = 954, + [4425] = 994, [4426] = 4426, - [4427] = 3783, - [4428] = 3804, - [4429] = 1866, - [4430] = 1867, + [4427] = 2957, + [4428] = 4428, + [4429] = 4429, + [4430] = 4430, [4431] = 4431, - [4432] = 4432, - [4433] = 517, - [4434] = 4434, - [4435] = 4435, + [4432] = 934, + [4433] = 4433, + [4434] = 988, + [4435] = 4414, [4436] = 4436, [4437] = 4437, - [4438] = 4438, - [4439] = 502, + [4438] = 1834, + [4439] = 1836, [4440] = 4440, - [4441] = 516, - [4442] = 4358, - [4443] = 960, - [4444] = 961, - [4445] = 2625, - [4446] = 2626, - [4447] = 4447, - [4448] = 1409, - [4449] = 2627, - [4450] = 2628, - [4451] = 3062, - [4452] = 2629, - [4453] = 3063, + [4441] = 4441, + [4442] = 4414, + [4443] = 4414, + [4444] = 4444, + [4445] = 4445, + [4446] = 4446, + [4447] = 916, + [4448] = 4448, + [4449] = 4449, + [4450] = 4450, + [4451] = 4244, + [4452] = 4414, + [4453] = 954, [4454] = 4454, - [4455] = 4455, - [4456] = 4456, - [4457] = 2605, - [4458] = 949, - [4459] = 4459, - [4460] = 4460, - [4461] = 4461, - [4462] = 4462, - [4463] = 4463, - [4464] = 4464, - [4465] = 4465, - [4466] = 517, - [4467] = 918, - [4468] = 4468, - [4469] = 4469, - [4470] = 4470, - [4471] = 4471, - [4472] = 4472, - [4473] = 4473, - [4474] = 1843, - [4475] = 1845, + [4455] = 967, + [4456] = 994, + [4457] = 934, + [4458] = 4458, + [4459] = 916, + [4460] = 985, + [4461] = 980, + [4462] = 946, + [4463] = 977, + [4464] = 988, + [4465] = 375, + [4466] = 354, + [4467] = 742, + [4468] = 961, + [4469] = 946, + [4470] = 356, + [4471] = 525, + [4472] = 515, + [4473] = 1409, + [4474] = 4474, + [4475] = 4475, [4476] = 4476, - [4477] = 929, + [4477] = 524, [4478] = 4478, [4479] = 4479, - [4480] = 4459, + [4480] = 4480, [4481] = 4481, - [4482] = 949, + [4482] = 4482, [4483] = 4483, - [4484] = 4484, + [4484] = 4359, [4485] = 4485, - [4486] = 4486, - [4487] = 4487, + [4486] = 961, + [4487] = 525, [4488] = 4488, - [4489] = 3728, - [4490] = 4490, - [4491] = 987, - [4492] = 887, - [4493] = 502, - [4494] = 4494, - [4495] = 459, - [4496] = 4496, - [4497] = 4459, - [4498] = 949, + [4489] = 515, + [4490] = 524, + [4491] = 994, + [4492] = 524, + [4493] = 4380, + [4494] = 515, + [4495] = 525, + [4496] = 4436, + [4497] = 469, + [4498] = 969, [4499] = 4499, - [4500] = 517, - [4501] = 920, - [4502] = 4358, - [4503] = 502, - [4504] = 516, - [4505] = 4490, - [4506] = 516, + [4500] = 4500, + [4501] = 3252, + [4502] = 984, + [4503] = 3250, + [4504] = 716, + [4505] = 697, + [4506] = 725, [4507] = 4507, - [4508] = 929, - [4509] = 1097, - [4510] = 4459, - [4511] = 4511, + [4508] = 1865, + [4509] = 4509, + [4510] = 3916, + [4511] = 3915, [4512] = 4512, [4513] = 4513, - [4514] = 4514, - [4515] = 4515, + [4514] = 901, + [4515] = 2578, [4516] = 4516, - [4517] = 4517, - [4518] = 952, - [4519] = 1097, + [4517] = 2586, + [4518] = 1861, + [4519] = 4519, [4520] = 4520, - [4521] = 708, - [4522] = 931, - [4523] = 932, - [4524] = 4459, - [4525] = 383, - [4526] = 4526, - [4527] = 517, - [4528] = 989, - [4529] = 4529, - [4530] = 502, - [4531] = 516, - [4532] = 748, + [4521] = 2600, + [4522] = 2605, + [4523] = 4523, + [4524] = 2612, + [4525] = 4414, + [4526] = 2626, + [4527] = 4527, + [4528] = 4528, + [4529] = 4414, + [4530] = 2641, + [4531] = 4414, + [4532] = 758, [4533] = 4533, [4534] = 4534, - [4535] = 1853, - [4536] = 1854, + [4535] = 759, + [4536] = 4536, [4537] = 4537, [4538] = 4538, [4539] = 4539, - [4540] = 4540, + [4540] = 760, [4541] = 4541, - [4542] = 4542, - [4543] = 4543, + [4542] = 4414, + [4543] = 761, [4544] = 4544, - [4545] = 4459, - [4546] = 4435, - [4547] = 4547, - [4548] = 922, - [4549] = 4459, - [4550] = 4459, - [4551] = 3052, - [4552] = 3055, - [4553] = 4553, - [4554] = 4459, - [4555] = 4555, - [4556] = 956, - [4557] = 4557, - [4558] = 4459, + [4545] = 762, + [4546] = 4546, + [4547] = 4414, + [4548] = 763, + [4549] = 764, + [4550] = 4550, + [4551] = 4551, + [4552] = 980, + [4553] = 768, + [4554] = 770, + [4555] = 4376, + [4556] = 4556, + [4557] = 4414, + [4558] = 4414, [4559] = 4559, - [4560] = 4560, - [4561] = 4561, - [4562] = 4459, + [4560] = 793, + [4561] = 4414, + [4562] = 4562, [4563] = 4563, [4564] = 4564, - [4565] = 4565, - [4566] = 4566, - [4567] = 715, - [4568] = 4568, - [4569] = 4569, - [4570] = 716, - [4571] = 4571, - [4572] = 718, + [4565] = 794, + [4566] = 796, + [4567] = 4433, + [4568] = 739, + [4569] = 4414, + [4570] = 4570, + [4571] = 973, + [4572] = 4572, [4573] = 4573, - [4574] = 374, - [4575] = 4575, - [4576] = 3961, - [4577] = 3966, - [4578] = 4578, - [4579] = 4579, - [4580] = 939, - [4581] = 4581, - [4582] = 4582, - [4583] = 4583, - [4584] = 4584, + [4574] = 812, + [4575] = 4414, + [4576] = 2644, + [4577] = 4577, + [4578] = 851, + [4579] = 4280, + [4580] = 896, + [4581] = 897, + [4582] = 757, + [4583] = 4414, + [4584] = 468, [4585] = 4585, - [4586] = 4447, - [4587] = 752, + [4586] = 4586, + [4587] = 4488, [4588] = 4588, - [4589] = 4589, - [4590] = 4590, - [4591] = 4591, - [4592] = 4592, - [4593] = 4593, - [4594] = 4594, - [4595] = 4595, - [4596] = 4596, - [4597] = 4597, + [4589] = 986, + [4590] = 4499, + [4591] = 4500, + [4592] = 1309, + [4593] = 4414, + [4594] = 4448, + [4595] = 4244, + [4596] = 923, + [4597] = 920, [4598] = 4598, - [4599] = 753, + [4599] = 4599, [4600] = 4600, - [4601] = 4601, - [4602] = 4602, + [4601] = 3244, + [4602] = 705, [4603] = 4603, - [4604] = 4604, - [4605] = 4605, - [4606] = 754, - [4607] = 960, - [4608] = 697, - [4609] = 4609, - [4610] = 961, - [4611] = 349, - [4612] = 726, - [4613] = 755, + [4604] = 3245, + [4605] = 710, + [4606] = 4414, + [4607] = 4607, + [4608] = 1855, + [4609] = 1853, + [4610] = 4610, + [4611] = 4611, + [4612] = 4612, + [4613] = 4613, [4614] = 4614, [4615] = 4615, [4616] = 4616, - [4617] = 366, - [4618] = 4459, - [4619] = 4494, + [4617] = 4617, + [4618] = 4375, + [4619] = 4374, [4620] = 4620, - [4621] = 987, + [4621] = 4621, [4622] = 4622, - [4623] = 4235, + [4623] = 4623, [4624] = 4624, - [4625] = 4422, - [4626] = 730, + [4625] = 4625, + [4626] = 4626, [4627] = 4627, [4628] = 4628, [4629] = 4629, - [4630] = 888, - [4631] = 944, + [4630] = 4630, + [4631] = 4631, [4632] = 4632, [4633] = 4633, - [4634] = 956, + [4634] = 4634, [4635] = 4635, [4636] = 4636, - [4637] = 889, + [4637] = 4637, [4638] = 4638, - [4639] = 887, - [4640] = 4459, + [4639] = 4639, + [4640] = 4640, [4641] = 4641, [4642] = 4642, - [4643] = 4459, - [4644] = 4459, - [4645] = 4369, + [4643] = 4643, + [4644] = 4644, + [4645] = 4523, [4646] = 4646, - [4647] = 4459, - [4648] = 4539, - [4649] = 4544, - [4650] = 368, - [4651] = 369, - [4652] = 1316, - [4653] = 929, - [4654] = 4459, + [4647] = 4647, + [4648] = 4648, + [4649] = 4649, + [4650] = 4474, + [4651] = 4651, + [4652] = 4652, + [4653] = 4653, + [4654] = 4654, [4655] = 4655, - [4656] = 4656, - [4657] = 1097, - [4658] = 4390, + [4656] = 985, + [4657] = 4657, + [4658] = 4658, [4659] = 4659, - [4660] = 4420, - [4661] = 4426, - [4662] = 4638, + [4660] = 4372, + [4661] = 4661, + [4662] = 4662, [4663] = 4663, [4664] = 4664, [4665] = 4665, [4666] = 4666, - [4667] = 959, - [4668] = 4390, - [4669] = 4420, - [4670] = 4426, - [4671] = 4638, + [4667] = 4667, + [4668] = 4668, + [4669] = 4669, + [4670] = 4670, + [4671] = 4671, [4672] = 4672, - [4673] = 453, - [4674] = 4579, - [4675] = 4459, - [4676] = 749, - [4677] = 4677, - [4678] = 4678, + [4673] = 4673, + [4674] = 4674, + [4675] = 4675, + [4676] = 4676, + [4677] = 4405, + [4678] = 2545, [4679] = 4679, - [4680] = 501, + [4680] = 4680, [4681] = 4681, - [4682] = 4557, - [4683] = 4561, + [4682] = 4682, + [4683] = 4683, [4684] = 4684, - [4685] = 4685, - [4686] = 4585, + [4685] = 4670, + [4686] = 4686, [4687] = 4687, - [4688] = 4461, - [4689] = 4421, - [4690] = 492, - [4691] = 4691, - [4692] = 4423, - [4693] = 4424, - [4694] = 4425, - [4695] = 4695, - [4696] = 4614, - [4697] = 2917, - [4698] = 4463, + [4688] = 4688, + [4689] = 4623, + [4690] = 4690, + [4691] = 4622, + [4692] = 4692, + [4693] = 4621, + [4694] = 4620, + [4695] = 4617, + [4696] = 4612, + [4697] = 4697, + [4698] = 4698, [4699] = 4699, [4700] = 4700, - [4701] = 2196, - [4702] = 2197, - [4703] = 4632, - [4704] = 2199, - [4705] = 4633, - [4706] = 4706, + [4701] = 4701, + [4702] = 4702, + [4703] = 4703, + [4704] = 4697, + [4705] = 4673, + [4706] = 4680, [4707] = 4707, - [4708] = 768, - [4709] = 3162, - [4710] = 769, - [4711] = 4635, - [4712] = 4656, - [4713] = 4659, - [4714] = 4663, - [4715] = 4636, + [4708] = 4708, + [4709] = 4586, + [4710] = 4710, + [4711] = 4585, + [4712] = 4700, + [4713] = 4570, + [4714] = 4714, + [4715] = 4563, [4716] = 4716, - [4717] = 4642, - [4718] = 4431, - [4719] = 4512, - [4720] = 4513, - [4721] = 4514, - [4722] = 4515, - [4723] = 4723, - [4724] = 4517, - [4725] = 4526, - [4726] = 4588, - [4727] = 4589, - [4728] = 4590, - [4729] = 4591, - [4730] = 4592, - [4731] = 4593, - [4732] = 4594, - [4733] = 4595, - [4734] = 3167, - [4735] = 4735, - [4736] = 4736, - [4737] = 4737, - [4738] = 4672, + [4717] = 4562, + [4718] = 4559, + [4719] = 4651, + [4720] = 2167, + [4721] = 766, + [4722] = 4708, + [4723] = 4363, + [4724] = 4724, + [4725] = 1372, + [4726] = 772, + [4727] = 4637, + [4728] = 4728, + [4729] = 4729, + [4730] = 4730, + [4731] = 2168, + [4732] = 4697, + [4733] = 493, + [4734] = 4666, + [4735] = 800, + [4736] = 801, + [4737] = 4539, + [4738] = 4738, [4739] = 4739, - [4740] = 4740, - [4741] = 4462, - [4742] = 4432, - [4743] = 4743, - [4744] = 4744, - [4745] = 4745, + [4740] = 4654, + [4741] = 4741, + [4742] = 752, + [4743] = 753, + [4744] = 469, + [4745] = 3232, [4746] = 4746, [4747] = 4747, [4748] = 4748, [4749] = 4749, - [4750] = 4707, - [4751] = 4740, - [4752] = 4363, - [4753] = 4684, - [4754] = 4754, - [4755] = 378, - [4756] = 2918, - [4757] = 4684, - [4758] = 2730, - [4759] = 4759, + [4750] = 4402, + [4751] = 4401, + [4752] = 4400, + [4753] = 4538, + [4754] = 2765, + [4755] = 4534, + [4756] = 2770, + [4757] = 4757, + [4758] = 4758, + [4759] = 4646, [4760] = 4760, - [4761] = 4438, - [4762] = 4762, - [4763] = 4746, - [4764] = 4764, - [4765] = 4765, - [4766] = 3192, - [4767] = 4454, - [4768] = 4707, - [4769] = 4575, - [4770] = 759, - [4771] = 4434, + [4761] = 771, + [4762] = 2533, + [4763] = 4669, + [4764] = 4607, + [4765] = 915, + [4766] = 4766, + [4767] = 802, + [4768] = 912, + [4769] = 4550, + [4770] = 4770, + [4771] = 4546, [4772] = 4772, - [4773] = 4455, - [4774] = 785, - [4775] = 786, - [4776] = 4776, - [4777] = 1376, - [4778] = 4778, - [4779] = 4746, - [4780] = 4780, + [4773] = 4544, + [4774] = 4774, + [4775] = 4541, + [4776] = 4416, + [4777] = 4528, + [4778] = 4415, + [4779] = 4520, + [4780] = 4519, [4781] = 4362, [4782] = 4782, - [4783] = 4707, - [4784] = 453, - [4785] = 4537, - [4786] = 4538, - [4787] = 4677, - [4788] = 2527, - [4789] = 4540, - [4790] = 4541, - [4791] = 4542, - [4792] = 4746, - [4793] = 4543, - [4794] = 4559, - [4795] = 4707, - [4796] = 2545, - [4797] = 4797, - [4798] = 4560, - [4799] = 343, - [4800] = 4468, + [4783] = 4638, + [4784] = 4399, + [4785] = 969, + [4786] = 4516, + [4787] = 4513, + [4788] = 4509, + [4789] = 4789, + [4790] = 4403, + [4791] = 4791, + [4792] = 4551, + [4793] = 4687, + [4794] = 4507, + [4795] = 4795, + [4796] = 4652, + [4797] = 4643, + [4798] = 4367, + [4799] = 4476, + [4800] = 4800, [4801] = 4801, - [4802] = 4802, - [4803] = 2194, - [4804] = 512, - [4805] = 2919, - [4806] = 4806, - [4807] = 4469, - [4808] = 4808, - [4809] = 2571, - [4810] = 4684, - [4811] = 4436, - [4812] = 4778, - [4813] = 4563, - [4814] = 4578, - [4815] = 4584, - [4816] = 4624, - [4817] = 4564, - [4818] = 4818, - [4819] = 4565, + [4802] = 4747, + [4803] = 4803, + [4804] = 4804, + [4805] = 4661, + [4806] = 4760, + [4807] = 4676, + [4808] = 4368, + [4809] = 4426, + [4810] = 4373, + [4811] = 4680, + [4812] = 4770, + [4813] = 4378, + [4814] = 4730, + [4815] = 4747, + [4816] = 343, + [4817] = 4639, + [4818] = 3310, + [4819] = 4819, [4820] = 4820, - [4821] = 4470, - [4822] = 4566, - [4823] = 4568, - [4824] = 4569, - [4825] = 4471, - [4826] = 4746, + [4821] = 2558, + [4822] = 2555, + [4823] = 4633, + [4824] = 4824, + [4825] = 4825, + [4826] = 4657, [4827] = 4827, - [4828] = 4571, - [4829] = 4382, - [4830] = 4383, - [4831] = 4387, - [4832] = 2517, - [4833] = 2551, - [4834] = 4834, - [4835] = 4573, - [4836] = 459, - [4837] = 944, + [4828] = 4828, + [4829] = 4829, + [4830] = 4680, + [4831] = 4634, + [4832] = 4832, + [4833] = 4770, + [4834] = 4383, + [4835] = 4835, + [4836] = 4836, + [4837] = 4837, [4838] = 4838, - [4839] = 4746, - [4840] = 4840, + [4839] = 4827, + [4840] = 4671, [4841] = 4841, - [4842] = 4842, - [4843] = 4843, + [4842] = 4747, + [4843] = 4396, [4844] = 4844, - [4845] = 2556, - [4846] = 4596, - [4847] = 4597, - [4848] = 4598, - [4849] = 4699, - [4850] = 1374, - [4851] = 4600, - [4852] = 4838, - [4853] = 4700, - [4854] = 969, - [4855] = 4601, - [4856] = 4707, - [4857] = 733, - [4858] = 4456, - [4859] = 4740, - [4860] = 4602, - [4861] = 520, - [4862] = 4484, - [4863] = 1412, - [4864] = 4864, - [4865] = 4865, - [4866] = 4866, - [4867] = 4867, - [4868] = 4868, - [4869] = 4869, - [4870] = 4870, + [4845] = 4395, + [4846] = 4631, + [4847] = 4827, + [4848] = 4394, + [4849] = 4747, + [4850] = 2530, + [4851] = 1414, + [4852] = 4770, + [4853] = 4853, + [4854] = 2823, + [4855] = 4770, + [4856] = 2771, + [4857] = 3248, + [4858] = 1379, + [4859] = 2540, + [4860] = 2219, + [4861] = 3251, + [4862] = 502, + [4863] = 4390, + [4864] = 2214, + [4865] = 2196, + [4866] = 4428, + [4867] = 4389, + [4868] = 944, + [4869] = 522, + [4870] = 4485, [4871] = 4871, - [4872] = 4872, - [4873] = 4873, - [4874] = 736, - [4875] = 984, - [4876] = 4582, - [4877] = 4583, - [4878] = 491, - [4879] = 4746, - [4880] = 4880, - [4881] = 4881, + [4872] = 4770, + [4873] = 4588, + [4874] = 4874, + [4875] = 4675, + [4876] = 4680, + [4877] = 4610, + [4878] = 507, + [4879] = 4429, + [4880] = 4430, + [4881] = 4385, [4882] = 4882, - [4883] = 4473, + [4883] = 4431, [4884] = 4884, [4885] = 4885, - [4886] = 4886, - [4887] = 2173, - [4888] = 4840, - [4889] = 4889, - [4890] = 4890, + [4886] = 755, + [4887] = 4887, + [4888] = 4747, + [4889] = 4747, + [4890] = 4827, [4891] = 4891, [4892] = 4892, - [4893] = 4893, - [4894] = 4894, - [4895] = 4603, - [4896] = 4604, - [4897] = 4897, + [4893] = 701, + [4894] = 4598, + [4895] = 468, + [4896] = 4896, + [4897] = 749, [4898] = 4898, - [4899] = 4478, + [4899] = 4674, [4900] = 4900, - [4901] = 4840, - [4902] = 4479, - [4903] = 4481, - [4904] = 4483, - [4905] = 4871, - [4906] = 4485, - [4907] = 4486, - [4908] = 751, - [4909] = 989, - [4910] = 4605, + [4901] = 4770, + [4902] = 4444, + [4903] = 4903, + [4904] = 4697, + [4905] = 715, + [4906] = 4599, + [4907] = 4907, + [4908] = 4445, + [4909] = 4611, + [4910] = 936, [4911] = 4911, - [4912] = 4487, - [4913] = 4707, - [4914] = 4914, - [4915] = 4740, - [4916] = 4916, - [4917] = 459, - [4918] = 750, + [4912] = 488, + [4913] = 4663, + [4914] = 4758, + [4915] = 4915, + [4916] = 4450, + [4917] = 4613, + [4918] = 4449, [4919] = 4919, - [4920] = 4488, - [4921] = 4921, - [4922] = 916, - [4923] = 917, - [4924] = 4840, - [4925] = 3399, - [4926] = 766, - [4927] = 767, + [4920] = 469, + [4921] = 4624, + [4922] = 4922, + [4923] = 4625, + [4924] = 4628, + [4925] = 380, + [4926] = 4630, + [4927] = 4927, [4928] = 4928, - [4929] = 4465, - [4930] = 4840, - [4931] = 4437, - [4932] = 4932, - [4933] = 949, - [4934] = 502, - [4935] = 4935, + [4929] = 984, + [4930] = 4930, + [4931] = 4446, + [4932] = 4600, + [4933] = 4664, + [4934] = 4934, + [4935] = 932, [4936] = 4936, [4937] = 4937, [4938] = 4938, - [4939] = 2086, - [4940] = 2023, - [4941] = 4802, + [4939] = 4939, + [4940] = 4937, + [4941] = 4941, [4942] = 4942, [4943] = 4943, [4944] = 4944, - [4945] = 4945, + [4945] = 4934, [4946] = 4946, - [4947] = 952, + [4947] = 4947, [4948] = 4948, [4949] = 4949, [4950] = 4950, - [4951] = 931, - [4952] = 932, - [4953] = 1522, - [4954] = 4938, - [4955] = 4945, - [4956] = 986, + [4951] = 4951, + [4952] = 488, + [4953] = 4953, + [4954] = 4954, + [4955] = 4955, + [4956] = 4956, [4957] = 4957, [4958] = 4958, - [4959] = 4957, - [4960] = 4960, + [4959] = 4959, + [4960] = 4953, [4961] = 4961, [4962] = 4962, [4963] = 4963, - [4964] = 887, - [4965] = 4965, - [4966] = 3168, + [4964] = 4964, + [4965] = 3801, + [4966] = 4966, [4967] = 4967, - [4968] = 4968, - [4969] = 4969, - [4970] = 4970, - [4971] = 4971, + [4968] = 988, + [4969] = 994, + [4970] = 493, + [4971] = 934, [4972] = 4972, - [4973] = 1064, + [4973] = 4973, [4974] = 4974, - [4975] = 4975, - [4976] = 4976, - [4977] = 4977, - [4978] = 366, - [4979] = 4937, - [4980] = 516, - [4981] = 4981, - [4982] = 4982, - [4983] = 4948, - [4984] = 3193, + [4975] = 553, + [4976] = 961, + [4977] = 946, + [4978] = 525, + [4979] = 4979, + [4980] = 4980, + [4981] = 1086, + [4982] = 3247, + [4983] = 958, + [4984] = 916, [4985] = 4985, - [4986] = 4986, + [4986] = 2048, [4987] = 4987, [4988] = 4988, - [4989] = 4989, - [4990] = 4990, + [4989] = 2061, + [4990] = 375, [4991] = 4991, - [4992] = 942, - [4993] = 3783, - [4994] = 3804, - [4995] = 4995, - [4996] = 491, + [4992] = 4992, + [4993] = 4993, + [4994] = 4994, + [4995] = 4961, + [4996] = 4996, [4997] = 4997, [4998] = 4998, - [4999] = 4999, + [4999] = 4953, [5000] = 5000, - [5001] = 5001, + [5001] = 985, [5002] = 5002, - [5003] = 649, - [5004] = 492, + [5003] = 4962, + [5004] = 5004, [5005] = 5005, [5006] = 5006, - [5007] = 5007, - [5008] = 5008, - [5009] = 4997, + [5007] = 4953, + [5008] = 4963, + [5009] = 5009, [5010] = 5010, [5011] = 5011, - [5012] = 5012, - [5013] = 5013, - [5014] = 4981, + [5012] = 960, + [5013] = 4922, + [5014] = 356, [5015] = 5015, [5016] = 5016, - [5017] = 5017, - [5018] = 4935, - [5019] = 5019, - [5020] = 955, + [5017] = 4949, + [5018] = 5018, + [5019] = 2720, + [5020] = 4947, [5021] = 5021, [5022] = 5022, - [5023] = 5023, - [5024] = 5024, - [5025] = 4985, - [5026] = 4977, - [5027] = 5002, - [5028] = 4988, - [5029] = 5029, - [5030] = 5030, - [5031] = 4991, - [5032] = 4982, + [5023] = 4967, + [5024] = 354, + [5025] = 5025, + [5026] = 5026, + [5027] = 4997, + [5028] = 4946, + [5029] = 4994, + [5030] = 4993, + [5031] = 4944, + [5032] = 4943, [5033] = 5033, - [5034] = 956, - [5035] = 5035, - [5036] = 5036, + [5034] = 5034, + [5035] = 4959, + [5036] = 4244, [5037] = 5037, - [5038] = 953, + [5038] = 977, [5039] = 5039, - [5040] = 5040, - [5041] = 5039, - [5042] = 5042, - [5043] = 5043, - [5044] = 4974, - [5045] = 5001, - [5046] = 5042, - [5047] = 5047, - [5048] = 5048, + [5040] = 967, + [5041] = 3802, + [5042] = 954, + [5043] = 4979, + [5044] = 5044, + [5045] = 5045, + [5046] = 980, + [5047] = 4966, + [5048] = 4972, [5049] = 5049, - [5050] = 5050, - [5051] = 4976, - [5052] = 4942, - [5053] = 5002, - [5054] = 5054, - [5055] = 4995, - [5056] = 4950, - [5057] = 5007, - [5058] = 5002, - [5059] = 5059, - [5060] = 5019, - [5061] = 5002, - [5062] = 4358, - [5063] = 5030, - [5064] = 4974, - [5065] = 5065, - [5066] = 5047, - [5067] = 929, - [5068] = 4987, - [5069] = 5005, - [5070] = 368, - [5071] = 5071, - [5072] = 4958, - [5073] = 369, - [5074] = 5074, - [5075] = 4960, - [5076] = 4963, - [5077] = 4972, - [5078] = 3001, - [5079] = 4987, - [5080] = 5005, - [5081] = 4987, - [5082] = 5005, - [5083] = 4976, - [5084] = 2679, - [5085] = 4932, - [5086] = 983, - [5087] = 4974, - [5088] = 2103, - [5089] = 3010, - [5090] = 960, - [5091] = 5015, - [5092] = 4976, - [5093] = 517, + [5050] = 3231, + [5051] = 4942, + [5052] = 5052, + [5053] = 5053, + [5054] = 4996, + [5055] = 4954, + [5056] = 5022, + [5057] = 5021, + [5058] = 4939, + [5059] = 4947, + [5060] = 4941, + [5061] = 5061, + [5062] = 515, + [5063] = 4949, + [5064] = 1517, + [5065] = 4953, + [5066] = 3041, + [5067] = 3040, + [5068] = 4941, + [5069] = 5069, + [5070] = 4942, + [5071] = 2065, + [5072] = 5072, + [5073] = 5073, + [5074] = 5026, + [5075] = 5049, + [5076] = 4974, + [5077] = 5077, + [5078] = 5078, + [5079] = 5079, + [5080] = 5080, + [5081] = 4942, + [5082] = 4941, + [5083] = 524, + [5084] = 4936, + [5085] = 5018, + [5086] = 5086, + [5087] = 4988, + [5088] = 5088, + [5089] = 5089, + [5090] = 5090, + [5091] = 976, + [5092] = 5045, + [5093] = 5093, [5094] = 5094, - [5095] = 987, - [5096] = 961, - [5097] = 1097, - [5098] = 4943, - [5099] = 5000, - [5100] = 5054, - [5101] = 5101, - [5102] = 5102, - [5103] = 5101, + [5095] = 5094, + [5096] = 981, + [5097] = 5093, + [5098] = 5098, + [5099] = 5089, + [5100] = 5088, + [5101] = 4947, + [5102] = 4949, + [5103] = 5103, [5104] = 5104, - [5105] = 2517, + [5105] = 5105, [5106] = 5106, [5107] = 5107, - [5108] = 5107, - [5109] = 5109, + [5108] = 5108, + [5109] = 5103, [5110] = 5110, [5111] = 5111, [5112] = 5112, [5113] = 5113, [5114] = 5114, - [5115] = 5115, + [5115] = 5111, [5116] = 5116, - [5117] = 5117, - [5118] = 5118, - [5119] = 5101, + [5117] = 5114, + [5118] = 5113, + [5119] = 5119, [5120] = 5120, - [5121] = 5107, + [5121] = 5121, [5122] = 5122, - [5123] = 5107, - [5124] = 2551, - [5125] = 5125, - [5126] = 5107, - [5127] = 5112, - [5128] = 5128, - [5129] = 5114, - [5130] = 512, - [5131] = 5116, - [5132] = 5117, - [5133] = 5118, - [5134] = 5101, + [5123] = 5114, + [5124] = 5107, + [5125] = 5108, + [5126] = 5114, + [5127] = 5127, + [5128] = 5116, + [5129] = 5119, + [5130] = 5130, + [5131] = 5120, + [5132] = 5121, + [5133] = 5122, + [5134] = 5108, [5135] = 5135, - [5136] = 887, - [5137] = 5112, - [5138] = 5107, - [5139] = 5139, + [5136] = 5114, + [5137] = 5135, + [5138] = 5116, + [5139] = 5119, [5140] = 5120, - [5141] = 5141, - [5142] = 5112, - [5143] = 5143, - [5144] = 5116, - [5145] = 5117, - [5146] = 5118, - [5147] = 5147, - [5148] = 5148, - [5149] = 5107, - [5150] = 5150, - [5151] = 5148, - [5152] = 5115, - [5153] = 5112, - [5154] = 5114, - [5155] = 5116, - [5156] = 5117, - [5157] = 5118, - [5158] = 520, - [5159] = 5159, - [5160] = 5107, - [5161] = 5161, - [5162] = 5162, - [5163] = 5112, - [5164] = 5116, - [5165] = 5116, - [5166] = 5117, - [5167] = 5118, - [5168] = 5141, - [5169] = 5169, - [5170] = 5107, - [5171] = 5117, - [5172] = 5116, - [5173] = 5117, - [5174] = 5118, - [5175] = 5118, - [5176] = 5176, - [5177] = 5107, - [5178] = 5150, - [5179] = 5116, - [5180] = 5117, - [5181] = 5118, - [5182] = 512, - [5183] = 5183, - [5184] = 5107, - [5185] = 5183, - [5186] = 5116, - [5187] = 5117, - [5188] = 5118, - [5189] = 5189, - [5190] = 5114, - [5191] = 5107, - [5192] = 5192, + [5141] = 5121, + [5142] = 5122, + [5143] = 5108, + [5144] = 5144, + [5145] = 5114, + [5146] = 5116, + [5147] = 5107, + [5148] = 5120, + [5149] = 5121, + [5150] = 5122, + [5151] = 5151, + [5152] = 5122, + [5153] = 5114, + [5154] = 5121, + [5155] = 5120, + [5156] = 5119, + [5157] = 5116, + [5158] = 5158, + [5159] = 5120, + [5160] = 5121, + [5161] = 5122, + [5162] = 5151, + [5163] = 5116, + [5164] = 5114, + [5165] = 5165, + [5166] = 5166, + [5167] = 5167, + [5168] = 5116, + [5169] = 5120, + [5170] = 5121, + [5171] = 5122, + [5172] = 5172, + [5173] = 5103, + [5174] = 5114, + [5175] = 5114, + [5176] = 5120, + [5177] = 5121, + [5178] = 5122, + [5179] = 5179, + [5180] = 5110, + [5181] = 5114, + [5182] = 5182, + [5183] = 5120, + [5184] = 5121, + [5185] = 5122, + [5186] = 5135, + [5187] = 5187, + [5188] = 5114, + [5189] = 5165, + [5190] = 5120, + [5191] = 5121, + [5192] = 5122, [5193] = 5116, - [5194] = 5117, - [5195] = 5118, - [5196] = 5122, - [5197] = 5116, - [5198] = 5107, - [5199] = 5117, - [5200] = 5116, - [5201] = 5117, - [5202] = 5118, - [5203] = 5118, - [5204] = 5107, - [5205] = 5205, - [5206] = 5116, - [5207] = 5117, - [5208] = 5118, - [5209] = 5209, - [5210] = 5107, - [5211] = 5211, - [5212] = 5116, - [5213] = 5117, - [5214] = 5118, - [5215] = 5189, - [5216] = 5216, - [5217] = 5217, - [5218] = 5102, - [5219] = 5219, + [5194] = 5103, + [5195] = 5114, + [5196] = 5108, + [5197] = 5120, + [5198] = 5121, + [5199] = 5122, + [5200] = 5200, + [5201] = 5201, + [5202] = 5114, + [5203] = 5203, + [5204] = 5120, + [5205] = 5121, + [5206] = 5122, + [5207] = 502, + [5208] = 5114, + [5209] = 5107, + [5210] = 5120, + [5211] = 5121, + [5212] = 5122, + [5213] = 5203, + [5214] = 5114, + [5215] = 5215, + [5216] = 5120, + [5217] = 5121, + [5218] = 5122, + [5219] = 5151, [5220] = 5220, - [5221] = 5113, - [5222] = 5128, - [5223] = 2527, + [5221] = 5122, + [5222] = 5121, + [5223] = 5120, [5224] = 5224, - [5225] = 5101, + [5225] = 5225, [5226] = 5226, - [5227] = 5227, - [5228] = 5228, + [5227] = 5200, + [5228] = 5119, [5229] = 5229, - [5230] = 5230, - [5231] = 5209, - [5232] = 5232, - [5233] = 5112, + [5230] = 5108, + [5231] = 507, + [5232] = 5151, + [5233] = 5116, [5234] = 5234, [5235] = 5235, - [5236] = 5234, - [5237] = 5141, - [5238] = 5102, + [5236] = 5236, + [5237] = 5116, + [5238] = 2555, [5239] = 5239, - [5240] = 5114, - [5241] = 5241, + [5240] = 2545, + [5241] = 5151, [5242] = 5111, - [5243] = 5107, - [5244] = 5143, - [5245] = 5135, - [5246] = 5169, - [5247] = 5189, - [5248] = 5143, - [5249] = 520, - [5250] = 5125, - [5251] = 5102, - [5252] = 5252, - [5253] = 5217, - [5254] = 5120, - [5255] = 5161, + [5243] = 5114, + [5244] = 5119, + [5245] = 5245, + [5246] = 5229, + [5247] = 5119, + [5248] = 2533, + [5249] = 5135, + [5250] = 5250, + [5251] = 2530, + [5252] = 5119, + [5253] = 5165, + [5254] = 5107, + [5255] = 5130, [5256] = 5256, - [5257] = 5257, - [5258] = 5107, - [5259] = 944, - [5260] = 5260, - [5261] = 5261, - [5262] = 5262, - [5263] = 5139, - [5264] = 5264, - [5265] = 5106, - [5266] = 5120, - [5267] = 5227, - [5268] = 2556, - [5269] = 5114, - [5270] = 5219, - [5271] = 5271, - [5272] = 5272, - [5273] = 5112, - [5274] = 5219, - [5275] = 5275, - [5276] = 5141, - [5277] = 5224, - [5278] = 5143, - [5279] = 5232, - [5280] = 5101, - [5281] = 5150, - [5282] = 5112, - [5283] = 5283, - [5284] = 5114, - [5285] = 5285, - [5286] = 5141, - [5287] = 5116, - [5288] = 5102, - [5289] = 5117, - [5290] = 5227, + [5257] = 2540, + [5258] = 5103, + [5259] = 5108, + [5260] = 2558, + [5261] = 5200, + [5262] = 5120, + [5263] = 5203, + [5264] = 5104, + [5265] = 5107, + [5266] = 5266, + [5267] = 5267, + [5268] = 5268, + [5269] = 5215, + [5270] = 5121, + [5271] = 5122, + [5272] = 5122, + [5273] = 5121, + [5274] = 502, + [5275] = 5120, + [5276] = 5276, + [5277] = 5236, + [5278] = 5119, + [5279] = 5229, + [5280] = 507, + [5281] = 5281, + [5282] = 5215, + [5283] = 5245, + [5284] = 5151, + [5285] = 5116, + [5286] = 5120, + [5287] = 5121, + [5288] = 5111, + [5289] = 5122, + [5290] = 5290, [5291] = 5291, - [5292] = 5118, - [5293] = 5232, - [5294] = 2545, - [5295] = 5107, - [5296] = 5189, - [5297] = 5262, - [5298] = 5298, - [5299] = 5135, - [5300] = 5150, - [5301] = 5102, - [5302] = 5219, - [5303] = 5120, + [5292] = 524, + [5293] = 5215, + [5294] = 5114, + [5295] = 515, + [5296] = 5215, + [5297] = 5276, + [5298] = 5276, + [5299] = 5122, + [5300] = 5121, + [5301] = 5135, + [5302] = 5120, + [5303] = 5267, [5304] = 5304, - [5305] = 5224, - [5306] = 5306, - [5307] = 5101, - [5308] = 5308, - [5309] = 5116, - [5310] = 5227, - [5311] = 5101, - [5312] = 5114, - [5313] = 5232, - [5314] = 5117, - [5315] = 5109, - [5316] = 5071, - [5317] = 5261, - [5318] = 5161, - [5319] = 517, - [5320] = 5112, - [5321] = 5143, - [5322] = 5141, - [5323] = 5116, - [5324] = 5117, - [5325] = 5118, - [5326] = 5326, + [5305] = 5305, + [5306] = 5165, + [5307] = 5103, + [5308] = 5119, + [5309] = 5108, + [5310] = 525, + [5311] = 5200, + [5312] = 5203, + [5313] = 5107, + [5314] = 5229, + [5315] = 5315, + [5316] = 5316, + [5317] = 5317, + [5318] = 5215, + [5319] = 5215, + [5320] = 5122, + [5321] = 5121, + [5322] = 5322, + [5323] = 5120, + [5324] = 5119, + [5325] = 5325, + [5326] = 5229, [5327] = 5327, - [5328] = 5328, - [5329] = 5150, - [5330] = 5230, - [5331] = 502, - [5332] = 5107, - [5333] = 5114, - [5334] = 5118, - [5335] = 5189, - [5336] = 5217, - [5337] = 5337, - [5338] = 5116, - [5339] = 5117, - [5340] = 5118, - [5341] = 5341, - [5342] = 516, - [5343] = 5252, - [5344] = 5264, - [5345] = 5112, - [5346] = 5229, - [5347] = 5141, - [5348] = 5120, - [5349] = 5150, - [5350] = 5264, - [5351] = 5102, - [5352] = 5112, - [5353] = 5114, - [5354] = 5114, - [5355] = 5355, - [5356] = 5102, - [5357] = 5219, - [5358] = 5358, - [5359] = 5141, - [5360] = 5116, - [5361] = 5135, - [5362] = 5117, - [5363] = 5216, - [5364] = 5220, - [5365] = 5113, - [5366] = 5128, - [5367] = 5118, - [5368] = 5224, - [5369] = 5189, - [5370] = 5111, - [5371] = 5217, - [5372] = 5101, - [5373] = 5189, - [5374] = 5150, - [5375] = 989, - [5376] = 5229, - [5377] = 5377, - [5378] = 5102, - [5379] = 5219, - [5380] = 5380, - [5381] = 5341, - [5382] = 5382, - [5383] = 5226, - [5384] = 5224, - [5385] = 5101, - [5386] = 5386, + [5328] = 5151, + [5329] = 5135, + [5330] = 5267, + [5331] = 5151, + [5332] = 5332, + [5333] = 5116, + [5334] = 5182, + [5335] = 5335, + [5336] = 502, + [5337] = 5111, + [5338] = 5167, + [5339] = 507, + [5340] = 5340, + [5341] = 5114, + [5342] = 5107, + [5343] = 5167, + [5344] = 5107, + [5345] = 5135, + [5346] = 5346, + [5347] = 5112, + [5348] = 5348, + [5349] = 5349, + [5350] = 5116, + [5351] = 984, + [5352] = 5352, + [5353] = 5353, + [5354] = 5354, + [5355] = 5116, + [5356] = 5165, + [5357] = 5119, + [5358] = 5182, + [5359] = 5107, + [5360] = 5304, + [5361] = 5229, + [5362] = 5151, + [5363] = 5108, + [5364] = 5340, + [5365] = 5200, + [5366] = 5220, + [5367] = 5224, + [5368] = 5225, + [5369] = 5226, + [5370] = 969, + [5371] = 5203, + [5372] = 5107, + [5373] = 5245, + [5374] = 5110, + [5375] = 5375, + [5376] = 5267, + [5377] = 5235, + [5378] = 5276, + [5379] = 5234, + [5380] = 5215, + [5381] = 5106, + [5382] = 5203, + [5383] = 5122, + [5384] = 5121, + [5385] = 5120, + [5386] = 5119, [5387] = 5387, - [5388] = 5234, - [5389] = 5235, - [5390] = 5390, - [5391] = 5271, - [5392] = 5382, - [5393] = 5102, - [5394] = 5394, - [5395] = 5227, - [5396] = 5227, - [5397] = 5232, - [5398] = 5291, - [5399] = 5399, - [5400] = 5400, - [5401] = 5216, - [5402] = 5176, - [5403] = 5143, - [5404] = 5232, - [5405] = 5141, - [5406] = 5216, - [5407] = 5220, - [5408] = 5113, - [5409] = 5128, - [5410] = 5410, - [5411] = 5111, - [5412] = 5109, + [5388] = 5229, + [5389] = 5389, + [5390] = 5151, + [5391] = 5200, + [5392] = 5392, + [5393] = 5116, + [5394] = 5108, + [5395] = 5111, + [5396] = 5396, + [5397] = 5111, + [5398] = 5113, + [5399] = 5114, + [5400] = 5250, + [5401] = 5203, + [5402] = 5200, + [5403] = 5108, + [5404] = 5112, + [5405] = 5405, + [5406] = 5103, + [5407] = 5266, + [5408] = 5268, + [5409] = 5220, + [5410] = 5224, + [5411] = 5225, + [5412] = 5226, [5413] = 5413, - [5414] = 5235, - [5415] = 5107, - [5416] = 5216, - [5417] = 5220, - [5418] = 5113, - [5419] = 5128, - [5420] = 5216, - [5421] = 5220, - [5422] = 5113, - [5423] = 5128, - [5424] = 5216, - [5425] = 5220, - [5426] = 5113, - [5427] = 5128, - [5428] = 5216, - [5429] = 5113, - [5430] = 5128, - [5431] = 5216, - [5432] = 5113, - [5433] = 5128, - [5434] = 5216, - [5435] = 5113, - [5436] = 5128, - [5437] = 5216, - [5438] = 5113, - [5439] = 5128, - [5440] = 5216, - [5441] = 5113, - [5442] = 5128, - [5443] = 5216, - [5444] = 5113, - [5445] = 5128, - [5446] = 5216, - [5447] = 5113, - [5448] = 5128, - [5449] = 5216, - [5450] = 5113, - [5451] = 5128, - [5452] = 5216, - [5453] = 5113, - [5454] = 5128, - [5455] = 5216, - [5456] = 5113, - [5457] = 5128, - [5458] = 5216, - [5459] = 5113, - [5460] = 5128, - [5461] = 5216, - [5462] = 5113, - [5463] = 5128, - [5464] = 5216, - [5465] = 5113, - [5466] = 5128, - [5467] = 5216, - [5468] = 5113, - [5469] = 5128, - [5470] = 5470, - [5471] = 5471, - [5472] = 5298, - [5473] = 520, - [5474] = 5112, - [5475] = 5272, - [5476] = 5104, - [5477] = 5219, - [5478] = 5115, - [5479] = 5224, - [5480] = 5141, + [5414] = 5245, + [5415] = 5239, + [5416] = 5113, + [5417] = 5304, + [5418] = 5418, + [5419] = 5220, + [5420] = 5224, + [5421] = 5225, + [5422] = 5226, + [5423] = 5220, + [5424] = 5224, + [5425] = 5225, + [5426] = 5226, + [5427] = 5220, + [5428] = 5224, + [5429] = 5225, + [5430] = 5226, + [5431] = 5220, + [5432] = 5225, + [5433] = 5226, + [5434] = 5220, + [5435] = 5225, + [5436] = 5226, + [5437] = 5220, + [5438] = 5225, + [5439] = 5226, + [5440] = 5220, + [5441] = 5225, + [5442] = 5226, + [5443] = 5220, + [5444] = 5225, + [5445] = 5226, + [5446] = 5220, + [5447] = 5225, + [5448] = 5226, + [5449] = 5220, + [5450] = 5225, + [5451] = 5226, + [5452] = 5220, + [5453] = 5225, + [5454] = 5226, + [5455] = 5220, + [5456] = 5225, + [5457] = 5226, + [5458] = 5220, + [5459] = 5225, + [5460] = 5226, + [5461] = 5220, + [5462] = 5225, + [5463] = 5226, + [5464] = 5220, + [5465] = 5225, + [5466] = 5226, + [5467] = 5220, + [5468] = 5225, + [5469] = 5226, + [5470] = 5220, + [5471] = 5225, + [5472] = 5226, + [5473] = 5165, + [5474] = 5114, + [5475] = 5475, + [5476] = 5165, + [5477] = 5220, + [5478] = 5478, + [5479] = 5387, + [5480] = 5103, [5481] = 5481, - [5482] = 5232, - [5483] = 5114, - [5484] = 5109, - [5485] = 5116, - [5486] = 5117, - [5487] = 5118, - [5488] = 5147, - [5489] = 5112, - [5490] = 5115, - [5491] = 5189, + [5482] = 5482, + [5483] = 5483, + [5484] = 5484, + [5485] = 5127, + [5486] = 5112, + [5487] = 5322, + [5488] = 5488, + [5489] = 5325, + [5490] = 5490, + [5491] = 5491, [5492] = 5492, - [5493] = 5122, - [5494] = 5494, - [5495] = 5410, + [5493] = 5304, + [5494] = 5327, + [5495] = 5354, [5496] = 5496, - [5497] = 5102, - [5498] = 5101, - [5499] = 5227, - [5500] = 5264, - [5501] = 5122, - [5502] = 5328, - [5503] = 5503, - [5504] = 5504, - [5505] = 5496, - [5506] = 5229, - [5507] = 5507, - [5508] = 5110, - [5509] = 5328, + [5497] = 5497, + [5498] = 5498, + [5499] = 5348, + [5500] = 5500, + [5501] = 5349, + [5502] = 5396, + [5503] = 5226, + [5504] = 5225, + [5505] = 5392, + [5506] = 5224, + [5507] = 5352, + [5508] = 5508, + [5509] = 5475, [5510] = 5510, - [5511] = 5227, - [5512] = 5291, - [5513] = 5143, - [5514] = 5492, - [5515] = 5107, - [5516] = 5492, - [5517] = 5504, - [5518] = 5112, - [5519] = 5492, - [5520] = 5224, - [5521] = 5220, - [5522] = 5291, - [5523] = 5496, - [5524] = 5114, - [5525] = 512, - [5526] = 5143, - [5527] = 5116, - [5528] = 5117, - [5529] = 5118, - [5530] = 2571, - [5531] = 5120, - [5532] = 5532, + [5511] = 5511, + [5512] = 5256, + [5513] = 5335, + [5514] = 5135, + [5515] = 5515, + [5516] = 5496, + [5517] = 5354, + [5518] = 5352, + [5519] = 5346, + [5520] = 5349, + [5521] = 5348, + [5522] = 5348, + [5523] = 5354, + [5524] = 5349, + [5525] = 5525, + [5526] = 4985, + [5527] = 5352, + [5528] = 5327, + [5529] = 5322, + [5530] = 5418, + [5531] = 916, + [5532] = 5389, + [5533] = 5533, + [5534] = 5534, }; -static const TSCharacterRange aux_sym_cmd_identifier_token1_character_set_1[] = { +static TSCharacterRange aux_sym_cmd_identifier_token1_character_set_1[] = { {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'%', '&'}, {'*', '+'}, {'.', '9'}, {'?', '?'}, {'A', 'Z'}, {'\\', '\\'}, {'_', '_'}, {'a', 'z'}, {'~', 0x10ffff}, }; -static const TSCharacterRange aux_sym_cmd_identifier_token1_character_set_2[] = { +static TSCharacterRange aux_sym_cmd_identifier_token1_character_set_2[] = { {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '&'}, {'*', '+'}, {'-', '9'}, {'?', 'Z'}, {'\\', '\\'}, {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, }; -static const TSCharacterRange sym_identifier_character_set_1[] = { +static TSCharacterRange sym_identifier_character_set_1[] = { {0, 0x08}, {0x0e, 0x1f}, {'%', '%'}, {'/', '9'}, {'A', 'Z'}, {'\\', '\\'}, {'_', '_'}, {'a', 'z'}, {'~', 0x10ffff}, }; -static const TSCharacterRange sym_identifier_character_set_2[] = { +static TSCharacterRange sym_identifier_character_set_2[] = { {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '&'}, {'*', '+'}, {'/', '9'}, {'A', 'Z'}, {'\\', '\\'}, {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, }; -static const TSCharacterRange sym_long_flag_identifier_character_set_1[] = { +static TSCharacterRange sym_long_flag_identifier_character_set_1[] = { {'0', '9'}, {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, @@ -10637,7 +10635,7 @@ static const TSCharacterRange sym_long_flag_identifier_character_set_1[] = { {0x1740, 0x1751}, {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dc}, {0x1820, 0x1878}, {0x1880, 0x18a8}, {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1950, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x1a00, 0x1a16}, {0x1a20, 0x1a54}, {0x1aa7, 0x1aa7}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b83, 0x1ba0}, {0x1bae, 0x1baf}, {0x1bba, 0x1be5}, {0x1c00, 0x1c23}, - {0x1c4d, 0x1c4f}, {0x1c5a, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, + {0x1c4d, 0x1c4f}, {0x1c5a, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, @@ -10647,8 +10645,8 @@ static const TSCharacterRange sym_long_flag_identifier_character_set_1[] = { {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x3005, 0x3007}, {0x3021, 0x3029}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa61f}, {0xa62a, 0xa62b}, - {0xa640, 0xa66e}, {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, - {0xa7d5, 0xa7dc}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8f2, 0xa8f7}, + {0xa640, 0xa66e}, {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, + {0xa7d5, 0xa7d9}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa8fe}, {0xa90a, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9cf, 0xa9cf}, {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9ef}, {0xa9fa, 0xa9fe}, {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa60, 0xaa76}, {0xaa7a, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, {0xaab5, 0xaab6}, {0xaab9, 0xaabd}, {0xaac0, 0xaac0}, {0xaac2, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaea}, {0xaaf2, 0xaaf4}, @@ -10661,50 +10659,48 @@ static const TSCharacterRange sym_long_flag_identifier_character_set_1[] = { {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x10375}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, - {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, - {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, - {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, - {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, - {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10d4a, 0x10d65}, {0x10d6f, 0x10d85}, - {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, - {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, - {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, - {0x11213, 0x1122b}, {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, - {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, - {0x1135d, 0x11361}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113b7}, {0x113d1, 0x113d1}, {0x113d3, 0x113d3}, - {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, - {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, - {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, - {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, - {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, - {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, - {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, - {0x13000, 0x1342f}, {0x13441, 0x13446}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x1611d}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a70, 0x16abe}, - {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, - {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, - {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, - {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, - {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, - {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, - {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, - {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, - {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e5d0, 0x1e5ed}, {0x1e5f0, 0x1e5f0}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, - {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, - {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, - {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, - {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, - {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, - {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, + {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, + {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, + {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, + {0x10a19, 0x10a35}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, + {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, {0x10f00, 0x10f1c}, + {0x10f27, 0x10f27}, {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, + {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, + {0x111c1, 0x111c4}, {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, + {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, + {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x1145f, 0x11461}, + {0x11480, 0x114af}, {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11680, 0x116aa}, + {0x116b8, 0x116b8}, {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, + {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, + {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, + {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, + {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, + {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13441, 0x13446}, {0x14400, 0x14646}, {0x16800, 0x16a38}, + {0x16a40, 0x16a5e}, {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, + {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, + {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, + {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, + {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, + {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, + {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, + {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, + {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, + {0x1e800, 0x1e8c4}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, + {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, + {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, + {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, + {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, + {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, }; -static const TSCharacterRange sym_long_flag_identifier_character_set_2[] = { +static TSCharacterRange sym_long_flag_identifier_character_set_2[] = { {'-', '.'}, {'0', '9'}, {'?', '?'}, {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xb7, 0xb7}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x300, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x483, 0x487}, {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x591, 0x5bd}, {0x5bf, 0x5bf}, {0x5c1, 0x5c2}, {0x5c4, 0x5c5}, {0x5c7, 0x5c7}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x610, 0x61a}, {0x620, 0x669}, {0x66e, 0x6d3}, {0x6d5, 0x6dc}, {0x6df, 0x6e8}, {0x6ea, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x74a}, {0x74d, 0x7b1}, {0x7c0, 0x7f5}, - {0x7fa, 0x7fa}, {0x7fd, 0x7fd}, {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x897, 0x8e1}, + {0x7fa, 0x7fa}, {0x7fd, 0x7fd}, {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x898, 0x8e1}, {0x8e3, 0x963}, {0x966, 0x96f}, {0x971, 0x983}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bc, 0x9c4}, {0x9c7, 0x9c8}, {0x9cb, 0x9ce}, {0x9d7, 0x9d7}, {0x9dc, 0x9dd}, {0x9df, 0x9e3}, {0x9e6, 0x9f1}, {0x9fc, 0x9fc}, {0x9fe, 0x9fe}, {0xa01, 0xa03}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, @@ -10732,7 +10728,7 @@ static const TSCharacterRange sym_long_flag_identifier_character_set_2[] = { {0x17dc, 0x17dd}, {0x17e0, 0x17e9}, {0x180b, 0x180d}, {0x180f, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1920, 0x192b}, {0x1930, 0x193b}, {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, {0x1a00, 0x1a1b}, {0x1a20, 0x1a5e}, {0x1a60, 0x1a7c}, {0x1a7f, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1ab0, 0x1abd}, {0x1abf, 0x1ace}, {0x1b00, 0x1b4c}, - {0x1b50, 0x1b59}, {0x1b6b, 0x1b73}, {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, + {0x1b50, 0x1b59}, {0x1b6b, 0x1b73}, {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, {0x1cd4, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x200c, 0x200d}, {0x203f, 0x2040}, @@ -10743,7 +10739,7 @@ static const TSCharacterRange sym_long_flag_identifier_character_set_2[] = { {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x3099, 0x309a}, {0x309d, 0x309f}, {0x30a1, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66f}, {0xa674, 0xa67d}, - {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa827}, + {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, {0xa880, 0xa8c5}, {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa92d}, {0xa930, 0xa953}, {0xa960, 0xa97c}, {0xa980, 0xa9c0}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9fe}, {0xaa00, 0xaa36}, {0xaa40, 0xaa4d}, {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, {0xaa7a, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaef}, {0xaaf2, 0xaaf6}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, @@ -10756,42 +10752,39 @@ static const TSCharacterRange sym_long_flag_identifier_character_set_2[] = { {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x101fd, 0x101fd}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e0, 0x102e0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, - {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, {0x10600, 0x10736}, - {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, - {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, - {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, - {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, - {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10d40, 0x10d65}, - {0x10d69, 0x10d6d}, {0x10d6f, 0x10d85}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10efc, 0x10f1c}, {0x10f27, 0x10f27}, - {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, - {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, {0x11180, 0x111c4}, - {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, {0x11288, 0x11288}, - {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, - {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, - {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, - {0x113b7, 0x113c0}, {0x113c2, 0x113c2}, {0x113c5, 0x113c5}, {0x113c7, 0x113ca}, {0x113cc, 0x113d3}, {0x113e1, 0x113e2}, {0x11400, 0x1144a}, {0x11450, 0x11459}, - {0x1145e, 0x11461}, {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, - {0x11644, 0x11644}, {0x11650, 0x11659}, {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x116d0, 0x116e3}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, + {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, + {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, + {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, + {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, + {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, + {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, + {0x10eb0, 0x10eb1}, {0x10efd, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, + {0x11066, 0x11075}, {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, + {0x11150, 0x11173}, {0x11176, 0x11176}, {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, + {0x1123e, 0x11241}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, + {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, + {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11400, 0x1144a}, + {0x11450, 0x11459}, {0x1145e, 0x11461}, {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, + {0x11600, 0x11640}, {0x11644, 0x11644}, {0x11650, 0x11659}, {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x11740, 0x11746}, {0x11800, 0x1183a}, {0x118a0, 0x118e9}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x11935}, {0x11937, 0x11938}, {0x1193b, 0x11943}, {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d7}, {0x119da, 0x119e1}, {0x119e3, 0x119e4}, {0x11a00, 0x11a3e}, - {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11bf0, 0x11bf9}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, - {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, - {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, - {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f5a}, {0x11fb0, 0x11fb0}, - {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x13460, 0x143fa}, {0x14400, 0x14646}, - {0x16100, 0x16139}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, - {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16d70, 0x16d79}, {0x16e40, 0x16e7f}, - {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, - {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, - {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1ccf0, 0x1ccf9}, - {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, - {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, - {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, - {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, - {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, - {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, - {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, - {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e5d0, 0x1e5fa}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, + {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, + {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, + {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, + {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f59}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, + {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, + {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, + {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, + {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, + {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, + {0x1bc9d, 0x1bc9e}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, + {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, + {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, + {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, + {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, + {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, + {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, + {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, @@ -10801,7 +10794,7 @@ static const TSCharacterRange sym_long_flag_identifier_character_set_2[] = { {0x31350, 0x323af}, {0xe0100, 0xe01ef}, }; -static const TSCharacterRange sym_attribute_identifier_character_set_1[] = { +static TSCharacterRange sym_attribute_identifier_character_set_1[] = { {'0', '9'}, {'A', 'Z'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x48a, 0x52f}, @@ -10830,7 +10823,7 @@ static const TSCharacterRange sym_attribute_identifier_character_set_1[] = { {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dc}, {0x1820, 0x1878}, {0x1880, 0x18a8}, {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1950, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x1a00, 0x1a16}, {0x1a20, 0x1a54}, {0x1aa7, 0x1aa7}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b83, 0x1ba0}, {0x1bae, 0x1baf}, {0x1bba, 0x1be5}, {0x1c00, 0x1c23}, {0x1c4d, 0x1c4f}, - {0x1c5a, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, + {0x1c5a, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, {0x2102, 0x2102}, @@ -10840,7 +10833,7 @@ static const TSCharacterRange sym_attribute_identifier_character_set_1[] = { {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x3005, 0x3007}, {0x3021, 0x3029}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa61f}, {0xa62a, 0xa62b}, {0xa640, 0xa66e}, - {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, + {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa8fe}, {0xa90a, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9cf, 0xa9cf}, {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9ef}, {0xa9fa, 0xa9fe}, {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa60, 0xaa76}, {0xaa7a, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, @@ -10854,50 +10847,48 @@ static const TSCharacterRange sym_attribute_identifier_character_set_1[] = { {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x10375}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, - {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, - {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, - {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, - {0x10a19, 0x10a35}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, - {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10d4a, 0x10d65}, {0x10d6f, 0x10d85}, {0x10e80, 0x10ea9}, - {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, - {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, - {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, - {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, - {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, - {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113b7}, {0x113d1, 0x113d1}, {0x113d3, 0x113d3}, {0x11400, 0x11434}, - {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, - {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, - {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, - {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, - {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, - {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, - {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, - {0x13441, 0x13446}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x1611d}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, - {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, - {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, - {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, - {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, - {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, - {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, - {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, - {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ad}, - {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e5d0, 0x1e5ed}, {0x1e5f0, 0x1e5f0}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, - {0x1e800, 0x1e8c4}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, - {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, - {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, - {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, - {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, - {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, + {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, + {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, + {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, + {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, + {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, + {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, + {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, + {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, + {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, + {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, + {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, + {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, + {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, + {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, + {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, + {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, + {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13441, 0x13446}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, + {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, + {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, + {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, + {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, + {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, + {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, + {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, + {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, + {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, + {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, + {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, + {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, + {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, + {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, + {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, }; -static const TSCharacterRange sym_attribute_identifier_character_set_2[] = { +static TSCharacterRange sym_attribute_identifier_character_set_2[] = { {'-', '-'}, {'0', '9'}, {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xb7, 0xb7}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x300, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x483, 0x487}, {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x591, 0x5bd}, {0x5bf, 0x5bf}, {0x5c1, 0x5c2}, {0x5c4, 0x5c5}, {0x5c7, 0x5c7}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x610, 0x61a}, {0x620, 0x669}, {0x66e, 0x6d3}, {0x6d5, 0x6dc}, {0x6df, 0x6e8}, {0x6ea, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x74a}, {0x74d, 0x7b1}, {0x7c0, 0x7f5}, {0x7fa, 0x7fa}, - {0x7fd, 0x7fd}, {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x897, 0x8e1}, {0x8e3, 0x963}, + {0x7fd, 0x7fd}, {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x898, 0x8e1}, {0x8e3, 0x963}, {0x966, 0x96f}, {0x971, 0x983}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bc, 0x9c4}, {0x9c7, 0x9c8}, {0x9cb, 0x9ce}, {0x9d7, 0x9d7}, {0x9dc, 0x9dd}, {0x9df, 0x9e3}, {0x9e6, 0x9f1}, {0x9fc, 0x9fc}, {0x9fe, 0x9fe}, {0xa01, 0xa03}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, @@ -10925,7 +10916,7 @@ static const TSCharacterRange sym_attribute_identifier_character_set_2[] = { {0x17e0, 0x17e9}, {0x180b, 0x180d}, {0x180f, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1920, 0x192b}, {0x1930, 0x193b}, {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, {0x1a00, 0x1a1b}, {0x1a20, 0x1a5e}, {0x1a60, 0x1a7c}, {0x1a7f, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1ab0, 0x1abd}, {0x1abf, 0x1ace}, {0x1b00, 0x1b4c}, {0x1b50, 0x1b59}, - {0x1b6b, 0x1b73}, {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, + {0x1b6b, 0x1b73}, {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, {0x1cd4, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x200c, 0x200d}, {0x203f, 0x2040}, {0x2054, 0x2054}, @@ -10936,7 +10927,7 @@ static const TSCharacterRange sym_attribute_identifier_character_set_2[] = { {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x3099, 0x309a}, {0x309d, 0x309f}, {0x30a1, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66f}, {0xa674, 0xa67d}, {0xa67f, 0xa6f1}, - {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, + {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, {0xa880, 0xa8c5}, {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa92d}, {0xa930, 0xa953}, {0xa960, 0xa97c}, {0xa980, 0xa9c0}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9fe}, {0xaa00, 0xaa36}, {0xaa40, 0xaa4d}, {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, {0xaa7a, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaef}, {0xaaf2, 0xaaf6}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, @@ -10949,42 +10940,39 @@ static const TSCharacterRange sym_attribute_identifier_character_set_2[] = { {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x101fd, 0x101fd}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e0, 0x102e0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, - {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, - {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, - {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, - {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, - {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, - {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10d40, 0x10d65}, {0x10d69, 0x10d6d}, - {0x10d6f, 0x10d85}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10efc, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, - {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, - {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, {0x11180, 0x111c4}, {0x111c9, 0x111cc}, - {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, - {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, - {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, {0x11357, 0x11357}, - {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113c0}, - {0x113c2, 0x113c2}, {0x113c5, 0x113c5}, {0x113c7, 0x113ca}, {0x113cc, 0x113d3}, {0x113e1, 0x113e2}, {0x11400, 0x1144a}, {0x11450, 0x11459}, {0x1145e, 0x11461}, - {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, {0x11644, 0x11644}, - {0x11650, 0x11659}, {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x116d0, 0x116e3}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x11740, 0x11746}, + {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, + {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, + {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, + {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, + {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, + {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, + {0x10efd, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, + {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, + {0x11176, 0x11176}, {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, + {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, + {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, + {0x1134b, 0x1134d}, {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11400, 0x1144a}, {0x11450, 0x11459}, + {0x1145e, 0x11461}, {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, + {0x11644, 0x11644}, {0x11650, 0x11659}, {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x11740, 0x11746}, {0x11800, 0x1183a}, {0x118a0, 0x118e9}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x11935}, {0x11937, 0x11938}, {0x1193b, 0x11943}, {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d7}, {0x119da, 0x119e1}, {0x119e3, 0x119e4}, {0x11a00, 0x11a3e}, {0x11a47, 0x11a47}, - {0x11a50, 0x11a99}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11bf0, 0x11bf9}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, - {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, - {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, - {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f5a}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, - {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x16139}, - {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, - {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16d70, 0x16d79}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, - {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, - {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, - {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1ccf0, 0x1ccf9}, {0x1cf00, 0x1cf2d}, - {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, - {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, - {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, - {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, - {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, - {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, - {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, - {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e5d0, 0x1e5fa}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, + {0x11a50, 0x11a99}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, + {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, + {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, + {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f59}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, + {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, + {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, + {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, + {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, + {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, + {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, + {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, + {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, + {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, + {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, + {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, + {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, + {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, @@ -10994,11 +10982,11 @@ static const TSCharacterRange sym_attribute_identifier_character_set_2[] = { {0xe0100, 0xe01ef}, }; -static const TSCharacterRange sym_param_short_flag_identifier_character_set_1[] = { +static TSCharacterRange sym_param_short_flag_identifier_character_set_1[] = { {'!', '~'}, {0xa1, 0xac}, {0xae, 0xb1}, {0xb4, 0xb8}, {0xba, 0xbb}, {0xbf, 0x377}, {0x37b, 0x37f}, {0x384, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x487}, {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x58a}, {0x58d, 0x58f}, {0x591, 0x5c7}, {0x5d0, 0x5ea}, {0x5ef, 0x5f4}, {0x606, 0x61b}, {0x61d, 0x6dc}, {0x6de, 0x70d}, {0x710, 0x74a}, {0x74d, 0x7b1}, {0x7c0, 0x7fa}, - {0x7fd, 0x82d}, {0x830, 0x83e}, {0x840, 0x85b}, {0x85e, 0x85e}, {0x860, 0x86a}, {0x870, 0x88e}, {0x897, 0x8e1}, {0x8e3, 0x983}, + {0x7fd, 0x82d}, {0x830, 0x83e}, {0x840, 0x85b}, {0x85e, 0x85e}, {0x860, 0x86a}, {0x870, 0x88e}, {0x898, 0x8e1}, {0x8e3, 0x983}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bc, 0x9c4}, {0x9c7, 0x9c8}, {0x9cb, 0x9ce}, {0x9d7, 0x9d7}, {0x9dc, 0x9dd}, {0x9df, 0x9e3}, {0x9e6, 0x9f3}, {0x9fa, 0x9fe}, {0xa01, 0xa03}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa3c, 0xa3c}, {0xa3e, 0xa42}, @@ -11023,88 +11011,82 @@ static const TSCharacterRange sym_param_short_flag_identifier_character_set_1[] {0x1700, 0x1715}, {0x171f, 0x1736}, {0x1740, 0x1753}, {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1772, 0x1773}, {0x1780, 0x17dd}, {0x17e0, 0x17e9}, {0x1800, 0x180d}, {0x180f, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1920, 0x192b}, {0x1930, 0x193b}, {0x1940, 0x1940}, {0x1944, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, {0x19de, 0x1a1b}, {0x1a1e, 0x1a5e}, - {0x1a60, 0x1a7c}, {0x1a7f, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa0, 0x1aad}, {0x1ab0, 0x1abd}, {0x1abf, 0x1ace}, {0x1b00, 0x1b4c}, {0x1b4e, 0x1bf3}, - {0x1bfc, 0x1c37}, {0x1c3b, 0x1c49}, {0x1c4d, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cc7}, {0x1cd0, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, - {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, - {0x1fb6, 0x1fc4}, {0x1fc6, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fdd, 0x1fef}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffe}, {0x200c, 0x200d}, {0x2010, 0x2027}, - {0x2030, 0x205e}, {0x2071, 0x2071}, {0x207a, 0x207f}, {0x208a, 0x208e}, {0x2090, 0x209c}, {0x20a0, 0x20c0}, {0x20d0, 0x20dc}, {0x20e1, 0x20e1}, - {0x20e5, 0x20f0}, {0x2100, 0x214f}, {0x2160, 0x2188}, {0x218a, 0x218b}, {0x2190, 0x2429}, {0x2440, 0x244a}, {0x249c, 0x24e9}, {0x2500, 0x2775}, - {0x2794, 0x2b73}, {0x2b76, 0x2b95}, {0x2b97, 0x2cf3}, {0x2cf9, 0x2cfc}, {0x2cfe, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, - {0x2d6f, 0x2d70}, {0x2d7f, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, - {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2e2e}, {0x2e30, 0x2e5d}, {0x2e80, 0x2e99}, {0x2e9b, 0x2ef3}, {0x2f00, 0x2fd5}, {0x2ff0, 0x2fff}, - {0x3001, 0x303f}, {0x3041, 0x3096}, {0x3099, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x3190, 0x3191}, {0x3196, 0x31e5}, {0x31ef, 0x321e}, - {0x322a, 0x3247}, {0x3250, 0x3250}, {0x3260, 0x327f}, {0x328a, 0x32b0}, {0x32c0, 0xa48c}, {0xa490, 0xa4c6}, {0xa4d0, 0xa62b}, {0xa640, 0xa66f}, - {0xa673, 0xa6f7}, {0xa700, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa82c}, {0xa836, 0xa839}, {0xa840, 0xa877}, - {0xa880, 0xa8c5}, {0xa8ce, 0xa8d9}, {0xa8e0, 0xa953}, {0xa95f, 0xa97c}, {0xa980, 0xa9cd}, {0xa9cf, 0xa9d9}, {0xa9de, 0xa9fe}, {0xaa00, 0xaa36}, - {0xaa40, 0xaa4d}, {0xaa50, 0xaa59}, {0xaa5c, 0xaac2}, {0xaadb, 0xaaf6}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, - {0xab28, 0xab2e}, {0xab30, 0xab6b}, {0xab70, 0xabed}, {0xabf0, 0xabf9}, {0xac00, 0xd7a3}, {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, - {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, - {0xfb46, 0xfbc2}, {0xfbd3, 0xfc5d}, {0xfc64, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdcf, 0xfdcf}, {0xfdf0, 0xfdf9}, {0xfdfc, 0xfe19}, {0xfe20, 0xfe52}, - {0xfe54, 0xfe66}, {0xfe68, 0xfe6b}, {0xfe71, 0xfe71}, {0xfe73, 0xfe73}, {0xfe77, 0xfe77}, {0xfe79, 0xfe79}, {0xfe7b, 0xfe7b}, {0xfe7d, 0xfe7d}, - {0xfe7f, 0xfefc}, {0xff01, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0xffe0, 0xffe6}, {0xffe8, 0xffee}, - {0xfffc, 0xfffd}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, - {0x10100, 0x10102}, {0x10137, 0x10174}, {0x10179, 0x10189}, {0x1018c, 0x1018e}, {0x10190, 0x1019c}, {0x101a0, 0x101a0}, {0x101d0, 0x101fd}, {0x10280, 0x1029c}, - {0x102a0, 0x102d0}, {0x102e0, 0x102e0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x1039f, 0x103c3}, {0x103c8, 0x103d5}, - {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x1056f, 0x1057a}, {0x1057c, 0x1058a}, - {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, {0x10600, 0x10736}, + {0x1a60, 0x1a7c}, {0x1a7f, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa0, 0x1aad}, {0x1ab0, 0x1abd}, {0x1abf, 0x1ace}, {0x1b00, 0x1b4c}, {0x1b50, 0x1b7e}, + {0x1b80, 0x1bf3}, {0x1bfc, 0x1c37}, {0x1c3b, 0x1c49}, {0x1c4d, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cc7}, {0x1cd0, 0x1cfa}, {0x1d00, 0x1f15}, + {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, + {0x1f80, 0x1fb4}, {0x1fb6, 0x1fc4}, {0x1fc6, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fdd, 0x1fef}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffe}, {0x200c, 0x200d}, + {0x2010, 0x2027}, {0x2030, 0x205e}, {0x2071, 0x2071}, {0x207a, 0x207f}, {0x208a, 0x208e}, {0x2090, 0x209c}, {0x20a0, 0x20c0}, {0x20d0, 0x20dc}, + {0x20e1, 0x20e1}, {0x20e5, 0x20f0}, {0x2100, 0x214f}, {0x2160, 0x2188}, {0x218a, 0x218b}, {0x2190, 0x2426}, {0x2440, 0x244a}, {0x249c, 0x24e9}, + {0x2500, 0x2775}, {0x2794, 0x2b73}, {0x2b76, 0x2b95}, {0x2b97, 0x2cf3}, {0x2cf9, 0x2cfc}, {0x2cfe, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, + {0x2d30, 0x2d67}, {0x2d6f, 0x2d70}, {0x2d7f, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, + {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2e2e}, {0x2e30, 0x2e5d}, {0x2e80, 0x2e99}, {0x2e9b, 0x2ef3}, {0x2f00, 0x2fd5}, + {0x2ff0, 0x2fff}, {0x3001, 0x303f}, {0x3041, 0x3096}, {0x3099, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x3190, 0x3191}, {0x3196, 0x31e3}, + {0x31ef, 0x321e}, {0x322a, 0x3247}, {0x3250, 0x3250}, {0x3260, 0x327f}, {0x328a, 0x32b0}, {0x32c0, 0xa48c}, {0xa490, 0xa4c6}, {0xa4d0, 0xa62b}, + {0xa640, 0xa66f}, {0xa673, 0xa6f7}, {0xa700, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa82c}, {0xa836, 0xa839}, + {0xa840, 0xa877}, {0xa880, 0xa8c5}, {0xa8ce, 0xa8d9}, {0xa8e0, 0xa953}, {0xa95f, 0xa97c}, {0xa980, 0xa9cd}, {0xa9cf, 0xa9d9}, {0xa9de, 0xa9fe}, + {0xaa00, 0xaa36}, {0xaa40, 0xaa4d}, {0xaa50, 0xaa59}, {0xaa5c, 0xaac2}, {0xaadb, 0xaaf6}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, + {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab6b}, {0xab70, 0xabed}, {0xabf0, 0xabf9}, {0xac00, 0xd7a3}, {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, + {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, + {0xfb43, 0xfb44}, {0xfb46, 0xfbc2}, {0xfbd3, 0xfc5d}, {0xfc64, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdcf, 0xfdcf}, {0xfdf0, 0xfdf9}, {0xfdfc, 0xfe19}, + {0xfe20, 0xfe52}, {0xfe54, 0xfe66}, {0xfe68, 0xfe6b}, {0xfe71, 0xfe71}, {0xfe73, 0xfe73}, {0xfe77, 0xfe77}, {0xfe79, 0xfe79}, {0xfe7b, 0xfe7b}, + {0xfe7d, 0xfe7d}, {0xfe7f, 0xfefc}, {0xff01, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0xffe0, 0xffe6}, + {0xffe8, 0xffee}, {0xfffc, 0xfffd}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, + {0x10080, 0x100fa}, {0x10100, 0x10102}, {0x10137, 0x10174}, {0x10179, 0x10189}, {0x1018c, 0x1018e}, {0x10190, 0x1019c}, {0x101a0, 0x101a0}, {0x101d0, 0x101fd}, + {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e0, 0x102e0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x1039f, 0x103c3}, + {0x103c8, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x1056f, 0x1057a}, + {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10857, 0x10857}, {0x10860, 0x10878}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, - {0x10900, 0x10915}, {0x1091f, 0x10939}, {0x1093f, 0x1093f}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, - {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, {0x10a50, 0x10a58}, {0x10a60, 0x10a7c}, {0x10a7f, 0x10a9c}, {0x10ac0, 0x10ae6}, - {0x10af0, 0x10af6}, {0x10b00, 0x10b35}, {0x10b39, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10b99, 0x10b9c}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, - {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10d40, 0x10d65}, {0x10d69, 0x10d85}, {0x10d8e, 0x10d8f}, {0x10e80, 0x10ea9}, {0x10eab, 0x10ead}, - {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10efc, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f55, 0x10f59}, {0x10f70, 0x10f89}, {0x10fb0, 0x10fc4}, - {0x10fe0, 0x10ff6}, {0x11000, 0x1104d}, {0x11066, 0x11075}, {0x1107f, 0x110bc}, {0x110be, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, - {0x11136, 0x11147}, {0x11150, 0x11176}, {0x11180, 0x111df}, {0x11200, 0x11211}, {0x11213, 0x11241}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, - {0x1128f, 0x1129d}, {0x1129f, 0x112a9}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, - {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, {0x11357, 0x11357}, - {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113c0}, - {0x113c2, 0x113c2}, {0x113c5, 0x113c5}, {0x113c7, 0x113ca}, {0x113cc, 0x113d5}, {0x113d7, 0x113d8}, {0x113e1, 0x113e2}, {0x11400, 0x1145b}, {0x1145d, 0x11461}, - {0x11480, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115dd}, {0x11600, 0x11644}, {0x11650, 0x11659}, {0x11660, 0x1166c}, {0x11680, 0x116b9}, - {0x116c0, 0x116c9}, {0x116d0, 0x116e3}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x1173c, 0x11746}, {0x11800, 0x1183b}, {0x118a0, 0x118e9}, - {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x11935}, {0x11937, 0x11938}, {0x1193b, 0x11946}, {0x11950, 0x11959}, - {0x119a0, 0x119a7}, {0x119aa, 0x119d7}, {0x119da, 0x119e4}, {0x11a00, 0x11a47}, {0x11a50, 0x11aa2}, {0x11ab0, 0x11af8}, {0x11b00, 0x11b09}, {0x11bc0, 0x11be1}, - {0x11bf0, 0x11bf9}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c45}, {0x11c50, 0x11c59}, {0x11c70, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, - {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, - {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef8}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, - {0x11f3e, 0x11f5a}, {0x11fb0, 0x11fb0}, {0x11fd5, 0x11ff1}, {0x11fff, 0x12399}, {0x12400, 0x1246e}, {0x12470, 0x12474}, {0x12480, 0x12543}, {0x12f90, 0x12ff2}, - {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x16139}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, - {0x16a6e, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af5}, {0x16b00, 0x16b45}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, - {0x16d40, 0x16d79}, {0x16e40, 0x16e7f}, {0x16e97, 0x16e9a}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe4}, {0x16ff0, 0x16ff1}, - {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, - {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, - {0x1bc9c, 0x1bc9f}, {0x1cc00, 0x1ccf9}, {0x1cd00, 0x1ceb3}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1cf50, 0x1cfc3}, {0x1d000, 0x1d0f5}, {0x1d100, 0x1d126}, - {0x1d129, 0x1d172}, {0x1d17b, 0x1d1ea}, {0x1d200, 0x1d245}, {0x1d300, 0x1d356}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, - {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, - {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d7cb}, - {0x1d7ce, 0x1da8b}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, - {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14f}, - {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e2ff, 0x1e2ff}, {0x1e4d0, 0x1e4f9}, {0x1e5d0, 0x1e5fa}, {0x1e5ff, 0x1e5ff}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, - {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1e95e, 0x1e95f}, {0x1ecac, 0x1ecac}, - {0x1ecb0, 0x1ecb0}, {0x1ed2e, 0x1ed2e}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, - {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, - {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, - {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, - {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x1eef0, 0x1eef1}, {0x1f000, 0x1f02b}, {0x1f030, 0x1f093}, {0x1f0a0, 0x1f0ae}, {0x1f0b1, 0x1f0bf}, - {0x1f0c1, 0x1f0cf}, {0x1f0d1, 0x1f0f5}, {0x1f10d, 0x1f1ad}, {0x1f1e6, 0x1f202}, {0x1f210, 0x1f23b}, {0x1f240, 0x1f248}, {0x1f250, 0x1f251}, {0x1f260, 0x1f265}, - {0x1f300, 0x1f6d7}, {0x1f6dc, 0x1f6ec}, {0x1f6f0, 0x1f6fc}, {0x1f700, 0x1f776}, {0x1f77b, 0x1f7d9}, {0x1f7e0, 0x1f7eb}, {0x1f7f0, 0x1f7f0}, {0x1f800, 0x1f80b}, - {0x1f810, 0x1f847}, {0x1f850, 0x1f859}, {0x1f860, 0x1f887}, {0x1f890, 0x1f8ad}, {0x1f8b0, 0x1f8bb}, {0x1f8c0, 0x1f8c1}, {0x1f900, 0x1fa53}, {0x1fa60, 0x1fa6d}, - {0x1fa70, 0x1fa7c}, {0x1fa80, 0x1fa89}, {0x1fa8f, 0x1fac6}, {0x1face, 0x1fadc}, {0x1fadf, 0x1fae9}, {0x1faf0, 0x1faf8}, {0x1fb00, 0x1fb92}, {0x1fb94, 0x1fbf9}, - {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, - {0x31350, 0x323af}, {0xe0100, 0xe01ef}, + {0x10900, 0x10915}, {0x1091f, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, + {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, + {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, + {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10efd, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, + {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, + {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, + {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, + {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, + {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, + {0x11370, 0x11374}, {0x11400, 0x1144a}, {0x11450, 0x11459}, {0x1145e, 0x11461}, {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, + {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, {0x11644, 0x11644}, {0x11650, 0x11659}, {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x11700, 0x1171a}, + {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x11740, 0x11746}, {0x11800, 0x1183a}, {0x118a0, 0x118e9}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, + {0x11915, 0x11916}, {0x11918, 0x11935}, {0x11937, 0x11938}, {0x1193b, 0x11943}, {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d7}, {0x119da, 0x119e1}, + {0x119e3, 0x119e4}, {0x11a00, 0x11a3e}, {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, + {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, + {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, + {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f59}, {0x11fb0, 0x11fb0}, + {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x14400, 0x14646}, {0x16800, 0x16a38}, + {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, + {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, + {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, + {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, + {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, + {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, + {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, + {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, + {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, + {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, + {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, + {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, + {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, + {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, + {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, + {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, + {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, + {0x1eeab, 0x1eebb}, {0x1fbf0, 0x1fbf9}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, + {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, {0xe0100, 0xe01ef}, }; -static const TSCharacterRange aux_sym__where_predicate_lhs_path_head_token1_character_set_1[] = { +static TSCharacterRange aux_sym__where_predicate_lhs_path_head_token1_character_set_1[] = { {0, 0x08}, {0x0e, 0x1f}, {'"', '\''}, {'*', '+'}, {'-', '-'}, {'/', '9'}, {'<', '>'}, {'@', 'Z'}, {'\\', '\\'}, {'^', 'z'}, {'~', 0x10ffff}, }; -static const TSCharacterRange aux_sym__record_key_token1_character_set_1[] = { +static TSCharacterRange aux_sym__record_key_token1_character_set_1[] = { {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '&'}, {'*', '+'}, {'-', '9'}, {'<', 'Z'}, {'\\', '\\'}, {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, }; -static const TSCharacterRange sym_short_flag_identifier_character_set_1[] = { +static TSCharacterRange sym_short_flag_identifier_character_set_1[] = { {'!', '!'}, {'%', '%'}, {'-', '-'}, {'0', ':'}, {'?', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xb7, 0xb7}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x300, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x38a}, {0x38c, 0x38c}, @@ -11112,7 +11094,7 @@ static const TSCharacterRange sym_short_flag_identifier_character_set_1[] = { {0x591, 0x5bd}, {0x5bf, 0x5bf}, {0x5c1, 0x5c2}, {0x5c4, 0x5c5}, {0x5c7, 0x5c7}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x610, 0x61a}, {0x620, 0x669}, {0x66e, 0x6d3}, {0x6d5, 0x6dc}, {0x6df, 0x6e8}, {0x6ea, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x74a}, {0x74d, 0x7b1}, {0x7c0, 0x7f5}, {0x7fa, 0x7fa}, {0x7fd, 0x7fd}, {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, - {0x897, 0x8e1}, {0x8e3, 0x963}, {0x966, 0x96f}, {0x971, 0x983}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, + {0x898, 0x8e1}, {0x8e3, 0x963}, {0x966, 0x96f}, {0x971, 0x983}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bc, 0x9c4}, {0x9c7, 0x9c8}, {0x9cb, 0x9ce}, {0x9d7, 0x9d7}, {0x9dc, 0x9dd}, {0x9df, 0x9e3}, {0x9e6, 0x9f1}, {0x9fc, 0x9fc}, {0x9fe, 0x9fe}, {0xa01, 0xa03}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa3c, 0xa3c}, {0xa3e, 0xa42}, {0xa47, 0xa48}, {0xa4b, 0xa4d}, {0xa51, 0xa51}, @@ -11139,7 +11121,7 @@ static const TSCharacterRange sym_short_flag_identifier_character_set_1[] = { {0x17d7, 0x17d7}, {0x17dc, 0x17dd}, {0x17e0, 0x17e9}, {0x180b, 0x180d}, {0x180f, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1920, 0x192b}, {0x1930, 0x193b}, {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, {0x1a00, 0x1a1b}, {0x1a20, 0x1a5e}, {0x1a60, 0x1a7c}, {0x1a7f, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1ab0, 0x1abd}, {0x1abf, 0x1ace}, - {0x1b00, 0x1b4c}, {0x1b50, 0x1b59}, {0x1b6b, 0x1b73}, {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c8a}, + {0x1b00, 0x1b4c}, {0x1b50, 0x1b59}, {0x1b6b, 0x1b73}, {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, {0x1cd4, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x200c, 0x200d}, @@ -11150,7 +11132,7 @@ static const TSCharacterRange sym_short_flag_identifier_character_set_1[] = { {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x3099, 0x309a}, {0x309d, 0x309f}, {0x30a1, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66f}, - {0xa674, 0xa67d}, {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, + {0xa674, 0xa67d}, {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, {0xa880, 0xa8c5}, {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa92d}, {0xa930, 0xa953}, {0xa960, 0xa97c}, {0xa980, 0xa9c0}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9fe}, {0xaa00, 0xaa36}, {0xaa40, 0xaa4d}, {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, {0xaa7a, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaef}, {0xaaf2, 0xaaf6}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, @@ -11163,42 +11145,39 @@ static const TSCharacterRange sym_short_flag_identifier_character_set_1[] = { {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x101fd, 0x101fd}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e0, 0x102e0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, - {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, - {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, - {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, - {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, - {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, - {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, - {0x10d40, 0x10d65}, {0x10d69, 0x10d6d}, {0x10d6f, 0x10d85}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10efc, 0x10f1c}, - {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, - {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, - {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, - {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, - {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, - {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, - {0x11390, 0x113b5}, {0x113b7, 0x113c0}, {0x113c2, 0x113c2}, {0x113c5, 0x113c5}, {0x113c7, 0x113ca}, {0x113cc, 0x113d3}, {0x113e1, 0x113e2}, {0x11400, 0x1144a}, - {0x11450, 0x11459}, {0x1145e, 0x11461}, {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, - {0x11600, 0x11640}, {0x11644, 0x11644}, {0x11650, 0x11659}, {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x116d0, 0x116e3}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, + {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, + {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, + {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, + {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, + {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, + {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10e80, 0x10ea9}, + {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10efd, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, + {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, + {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, + {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, + {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, + {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, + {0x11400, 0x1144a}, {0x11450, 0x11459}, {0x1145e, 0x11461}, {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, + {0x115d8, 0x115dd}, {0x11600, 0x11640}, {0x11644, 0x11644}, {0x11650, 0x11659}, {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x11740, 0x11746}, {0x11800, 0x1183a}, {0x118a0, 0x118e9}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x11935}, {0x11937, 0x11938}, {0x1193b, 0x11943}, {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d7}, {0x119da, 0x119e1}, {0x119e3, 0x119e4}, - {0x11a00, 0x11a3e}, {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11bf0, 0x11bf9}, {0x11c00, 0x11c08}, - {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, - {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, - {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f5a}, - {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x13460, 0x143fa}, - {0x14400, 0x14646}, {0x16100, 0x16139}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, - {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16d70, 0x16d79}, - {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, - {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, - {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, - {0x1ccf0, 0x1ccf9}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, - {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, - {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, - {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, - {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, - {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, - {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, - {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e5d0, 0x1e5fa}, {0x1e7e0, 0x1e7e6}, + {0x11a00, 0x11a3e}, {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, + {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, + {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, + {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f59}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, + {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, + {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, + {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, + {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, + {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, + {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, + {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, + {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, + {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, + {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, + {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, + {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, + {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, @@ -11208,37 +11187,37 @@ static const TSCharacterRange sym_short_flag_identifier_character_set_1[] = { {0x30000, 0x3134a}, {0x31350, 0x323af}, {0xe0100, 0xe01ef}, }; -static const TSCharacterRange sym__unquoted_pattern_character_set_1[] = { +static TSCharacterRange sym__unquoted_pattern_character_set_1[] = { {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '&'}, {'*', ':'}, {'<', 'Z'}, {'\\', '\\'}, {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, }; -static const TSCharacterRange sym__unquoted_pattern_in_list_character_set_1[] = { +static TSCharacterRange sym__unquoted_pattern_in_list_character_set_1[] = { {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '&'}, {'*', '+'}, {'-', ':'}, {'<', 'Z'}, {'\\', '\\'}, {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, }; -static const TSCharacterRange sym__unquoted_pattern_in_record_character_set_1[] = { +static TSCharacterRange sym__unquoted_pattern_in_record_character_set_1[] = { {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '&'}, {'*', '+'}, {'-', '9'}, {'<', '='}, {'?', 'Z'}, {'\\', '\\'}, {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, }; -static const TSCharacterRange aux_sym_unquoted_token1_character_set_1[] = { +static TSCharacterRange aux_sym_unquoted_token1_character_set_1[] = { {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '#'}, {'%', '&'}, {'*', ','}, {'.', ':'}, {'<', 'Z'}, {'\\', '\\'}, {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, }; -static const TSCharacterRange aux_sym__unquoted_in_list_token1_character_set_1[] = { +static TSCharacterRange aux_sym__unquoted_in_list_token1_character_set_1[] = { {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '#'}, {'%', '&'}, {'*', '+'}, {'-', ':'}, {'<', 'Z'}, {'\\', '\\'}, {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, }; -static const TSCharacterRange aux_sym__unquoted_in_record_token1_character_set_1[] = { +static TSCharacterRange aux_sym__unquoted_in_record_token1_character_set_1[] = { {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '#'}, {'%', '&'}, {'*', '+'}, {'-', '9'}, {'<', '='}, {'?', 'Z'}, {'\\', '\\'}, {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, }; -static const TSCharacterRange aux_sym__unquoted_in_list_with_expr_token1_character_set_1[] = { +static TSCharacterRange aux_sym__unquoted_in_list_with_expr_token1_character_set_1[] = { {0, 0x08}, {0x0e, 0x1f}, {'!', '\''}, {'*', '+'}, {'-', ':'}, {'<', 'Z'}, {'\\', '\\'}, {'^', '{'}, {'}', 0x10ffff}, }; @@ -11248,1811 +11227,1811 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1741, - '"', 1708, - '#', 2213, - '$', 1533, - '%', 1756, - '&', 834, - '\'', 1711, - '(', 1584, - ')', 1639, - '*', 1130, - '+', 1135, - ',', 1492, - '-', 1136, - '.', 1744, - '/', 1132, - ':', 1736, - ';', 1474, - '<', 1159, - '=', 678, - '>', 1162, - '?', 1740, - '@', 1504, - '[', 1688, - ']', 1489, - '^', 1754, - '_', 1525, - '`', 1715, - '{', 1521, - '|', 1475, - '}', 1522, + '!', 1740, + '"', 1707, + '#', 2212, + '$', 1532, + '%', 1755, + '&', 833, + '\'', 1710, + '(', 1583, + ')', 1638, + '*', 1129, + '+', 1134, + ',', 1491, + '-', 1135, + '.', 1743, + '/', 1131, + ':', 1735, + ';', 1473, + '<', 1158, + '=', 677, + '>', 1161, + '?', 1739, + '@', 1503, + '[', 1687, + ']', 1488, + '^', 1753, + '_', 1524, + '`', 1714, + '{', 1520, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(571); + lookahead == ' ') SKIP(570); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1391); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1390); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(1471); + if (lookahead == '\n') ADVANCE(1470); END_STATE(); case 2: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1741, - '#', 2213, - '$', 1493, - '(', 1490, - ')', 1491, - ',', 1492, - '-', 1510, - '.', 1748, - ':', 1486, - '<', 1159, - '=', 678, - '>', 1502, - '?', 1740, - '@', 1504, - '[', 1488, - ']', 1489, - '|', 1475, + '!', 1740, + '#', 2212, + '$', 1492, + '(', 1489, + ')', 1490, + ',', 1491, + '-', 1509, + '.', 1747, + ':', 1485, + '<', 1158, + '=', 677, + '>', 1501, + '?', 1739, + '@', 1503, + '[', 1487, + ']', 1488, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(3); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1391); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1390); END_STATE(); case 3: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1741, - '#', 2213, - '$', 1493, - '(', 1490, - ')', 1491, - ',', 1492, - '-', 1510, - '.', 1747, - ':', 1486, - '=', 678, - '>', 1502, - '?', 1740, - '[', 1488, - ']', 1489, - '|', 1475, + '!', 1740, + '#', 2212, + '$', 1492, + '(', 1489, + ')', 1490, + ',', 1491, + '-', 1509, + '.', 1746, + ':', 1485, + '=', 677, + '>', 1501, + '?', 1739, + '[', 1487, + ']', 1488, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(3); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1391); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1390); END_STATE(); case 4: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1741, - '#', 2213, - '(', 1490, - ')', 1491, - '-', 296, - '.', 1743, - ':', 1736, - ';', 1474, - '=', 680, - '>', 1502, - '?', 1740, - '[', 1488, - 'a', 420, - 'e', 287, - 'i', 383, - 'o', 288, - 'x', 431, - '{', 1521, - '|', 1475, - '}', 1522, + '!', 1740, + '#', 2212, + '(', 1489, + ')', 1490, + '-', 295, + '.', 1742, + ':', 1735, + ';', 1473, + '=', 679, + '>', 1501, + '?', 1739, + '[', 1487, + 'a', 419, + 'e', 286, + 'i', 382, + 'o', 287, + 'x', 430, + '{', 1520, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(4); END_STATE(); case 5: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1741, - '#', 2213, - '(', 1490, - ')', 1491, - '-', 296, - '.', 1745, - ':', 1736, - ';', 1474, - '=', 680, - '>', 1502, - '?', 1740, - '[', 1488, - 'a', 420, - 'e', 287, - 'i', 383, - 'o', 288, - 'x', 431, - '{', 1521, - '|', 1475, - '}', 1522, + '!', 1740, + '#', 2212, + '(', 1489, + ')', 1490, + '-', 295, + '.', 1744, + ':', 1735, + ';', 1473, + '=', 679, + '>', 1501, + '?', 1739, + '[', 1487, + 'a', 419, + 'e', 286, + 'i', 382, + 'o', 287, + 'x', 430, + '{', 1520, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(4); END_STATE(); case 6: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1741, - '#', 2213, - ')', 1491, - '.', 1743, - ':', 1736, - ';', 1474, - '=', 322, - '?', 1740, - 'a', 420, - 'e', 287, - 'i', 383, - 'o', 288, - 'x', 431, - '{', 1521, - '|', 1475, - '}', 1522, + '!', 1740, + '#', 2212, + ')', 1490, + '.', 1742, + ':', 1735, + ';', 1473, + '=', 321, + '?', 1739, + 'a', 419, + 'e', 286, + 'i', 382, + 'o', 287, + 'x', 430, + '{', 1520, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(6); END_STATE(); case 7: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1741, - '#', 2213, - ')', 1491, - '.', 1745, - ':', 1736, - ';', 1474, - '=', 322, - '?', 1740, - 'a', 420, - 'e', 287, - 'i', 383, - 'o', 288, - 'x', 431, - '{', 1521, - '|', 1475, - '}', 1522, + '!', 1740, + '#', 2212, + ')', 1490, + '.', 1744, + ':', 1735, + ';', 1473, + '=', 321, + '?', 1739, + 'a', 419, + 'e', 286, + 'i', 382, + 'o', 287, + 'x', 430, + '{', 1520, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(6); END_STATE(); case 8: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '$', 1493, - '(', 1584, - '*', 1535, - '+', 1599, - '-', 1516, - '.', 1627, - '/', 1590, - '<', 1573, - '=', 1820, - '>', 1503, - '_', 1838, - 'a', 1890, - 'b', 1877, - 'e', 1891, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1904, - 's', 1924, - 'x', 1896, - '{', 1521, + '!', 1817, + '#', 2212, + '$', 1492, + '(', 1583, + '*', 1534, + '+', 1598, + '-', 1515, + '.', 1626, + '/', 1589, + '<', 1572, + '=', 1819, + '>', 1502, + '_', 1837, + 'a', 1889, + 'b', 1876, + 'e', 1890, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1903, + 's', 1923, + 'x', 1895, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(22); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1958); END_STATE(); case 9: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '$', 1493, - '(', 1584, - '*', 1535, - '+', 1599, - '-', 1516, - '.', 1840, - '/', 1590, - '<', 1573, - '=', 1820, - '>', 1503, - '_', 1838, - 'a', 1890, - 'b', 1877, - 'e', 1891, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1904, - 's', 1924, - 'x', 1896, - '{', 1521, + '!', 1817, + '#', 2212, + '$', 1492, + '(', 1583, + '*', 1534, + '+', 1598, + '-', 1515, + '.', 1839, + '/', 1589, + '<', 1572, + '=', 1819, + '>', 1502, + '_', 1837, + 'a', 1889, + 'b', 1876, + 'e', 1890, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1903, + 's', 1923, + 'x', 1895, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(22); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1958); END_STATE(); case 10: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1618, - '/', 1590, - '<', 1573, - '=', 1820, - '>', 1503, - 'B', 1676, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'a', 1890, - 'b', 1679, - 'd', 1849, - 'e', 1830, - 'g', 1834, - 'h', 1847, - 'i', 1888, - 'k', 1834, - 'l', 1876, - 'm', 1836, - 'n', 1897, - 'o', 1904, - 'p', 1834, - 's', 1863, - 't', 1834, - 'u', 1916, - 'w', 1883, - 'x', 1896, - '{', 1521, - 0xb5, 1916, + '!', 1817, + '#', 2212, + '(', 1583, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1617, + '/', 1589, + '<', 1572, + '=', 1819, + '>', 1502, + 'B', 1675, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'a', 1889, + 'b', 1678, + 'd', 1848, + 'e', 1829, + 'g', 1833, + 'h', 1846, + 'i', 1887, + 'k', 1833, + 'l', 1875, + 'm', 1835, + 'n', 1896, + 'o', 1903, + 'p', 1833, + 's', 1862, + 't', 1833, + 'u', 1915, + 'w', 1882, + 'x', 1895, + '{', 1520, + 0xb5, 1915, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 11: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1618, - '/', 1590, - '<', 1573, - '=', 1820, - '>', 1503, - 'E', 1844, - 'a', 1890, - 'b', 1877, - 'e', 1841, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1904, - 's', 1924, - 'x', 1896, - '{', 1521, + '!', 1817, + '#', 2212, + '(', 1583, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1617, + '/', 1589, + '<', 1572, + '=', 1819, + '>', 1502, + 'E', 1843, + 'a', 1889, + 'b', 1876, + 'e', 1840, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1903, + 's', 1923, + 'x', 1895, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 12: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1815, - '/', 1590, - '<', 1573, - '=', 1820, - '>', 1503, - 'B', 1676, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - '_', 1838, - 'a', 1890, - 'b', 1679, - 'd', 1849, - 'e', 1830, - 'g', 1834, - 'h', 1847, - 'i', 1888, - 'k', 1834, - 'l', 1876, - 'm', 1836, - 'n', 1897, - 'o', 1904, - 'p', 1834, - 's', 1863, - 't', 1834, - 'u', 1916, - 'w', 1883, - 'x', 1896, - '{', 1521, - 0xb5, 1916, + '!', 1817, + '#', 2212, + '(', 1583, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1814, + '/', 1589, + '<', 1572, + '=', 1819, + '>', 1502, + 'B', 1675, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + '_', 1837, + 'a', 1889, + 'b', 1678, + 'd', 1848, + 'e', 1829, + 'g', 1833, + 'h', 1846, + 'i', 1887, + 'k', 1833, + 'l', 1875, + 'm', 1835, + 'n', 1896, + 'o', 1903, + 'p', 1833, + 's', 1862, + 't', 1833, + 'u', 1915, + 'w', 1882, + 'x', 1895, + '{', 1520, + 0xb5, 1915, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 13: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1815, - '/', 1590, - '<', 1573, - '=', 1820, - '>', 1503, - 'B', 1676, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'a', 1890, - 'b', 1679, - 'd', 1849, - 'e', 1830, - 'g', 1834, - 'h', 1847, - 'i', 1888, - 'k', 1834, - 'l', 1876, - 'm', 1836, - 'n', 1897, - 'o', 1904, - 'p', 1834, - 's', 1863, - 't', 1834, - 'u', 1916, - 'w', 1883, - 'x', 1896, - '{', 1521, - 0xb5, 1916, + '!', 1817, + '#', 2212, + '(', 1583, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1814, + '/', 1589, + '<', 1572, + '=', 1819, + '>', 1502, + 'B', 1675, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'a', 1889, + 'b', 1678, + 'd', 1848, + 'e', 1829, + 'g', 1833, + 'h', 1846, + 'i', 1887, + 'k', 1833, + 'l', 1875, + 'm', 1835, + 'n', 1896, + 'o', 1903, + 'p', 1833, + 's', 1862, + 't', 1833, + 'u', 1915, + 'w', 1882, + 'x', 1895, + '{', 1520, + 0xb5, 1915, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 14: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1815, - '/', 1590, - '<', 1573, - '=', 1820, - '>', 1503, - 'B', 1676, - 'E', 1835, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'a', 1890, - 'b', 1679, - 'd', 1849, - 'e', 1833, - 'g', 1834, - 'h', 1847, - 'i', 1888, - 'k', 1834, - 'l', 1876, - 'm', 1836, - 'n', 1897, - 'o', 1904, - 'p', 1834, - 's', 1863, - 't', 1834, - 'u', 1916, - 'w', 1883, - 'x', 1896, - '{', 1521, - 0xb5, 1916, + '!', 1817, + '#', 2212, + '(', 1583, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1814, + '/', 1589, + '<', 1572, + '=', 1819, + '>', 1502, + 'B', 1675, + 'E', 1834, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'a', 1889, + 'b', 1678, + 'd', 1848, + 'e', 1832, + 'g', 1833, + 'h', 1846, + 'i', 1887, + 'k', 1833, + 'l', 1875, + 'm', 1835, + 'n', 1896, + 'o', 1903, + 'p', 1833, + 's', 1862, + 't', 1833, + 'u', 1915, + 'w', 1882, + 'x', 1895, + '{', 1520, + 0xb5, 1915, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 15: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1815, - '/', 1590, - '<', 1573, - '=', 1820, - '>', 1503, - 'E', 1844, - '_', 1838, - 'a', 1890, - 'b', 1877, - 'e', 1841, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1904, - 's', 1924, - 'x', 1896, - '{', 1521, + '!', 1817, + '#', 2212, + '(', 1583, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1814, + '/', 1589, + '<', 1572, + '=', 1819, + '>', 1502, + 'E', 1843, + '_', 1837, + 'a', 1889, + 'b', 1876, + 'e', 1840, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1903, + 's', 1923, + 'x', 1895, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 16: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1815, - '/', 1590, - '<', 1573, - '=', 1820, - '>', 1503, - 'E', 1844, - 'a', 1890, - 'b', 1877, - 'e', 1841, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1904, - 's', 1924, - 'x', 1896, - '{', 1521, + '!', 1817, + '#', 2212, + '(', 1583, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1814, + '/', 1589, + '<', 1572, + '=', 1819, + '>', 1502, + 'E', 1843, + 'a', 1889, + 'b', 1876, + 'e', 1840, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1903, + 's', 1923, + 'x', 1895, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 17: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1815, - '/', 1590, - '<', 1573, - '=', 1820, - '>', 1503, - 'a', 1890, - 'b', 1877, - 'e', 1891, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1904, - 's', 1924, - 'x', 1896, - '{', 1521, + '!', 1817, + '#', 2212, + '(', 1583, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1814, + '/', 1589, + '<', 1572, + '=', 1819, + '>', 1502, + 'a', 1889, + 'b', 1876, + 'e', 1890, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1903, + 's', 1923, + 'x', 1895, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 18: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1617, - '/', 1590, - '<', 1573, - '=', 1820, - '>', 1503, - 'E', 1844, - 'a', 1890, - 'b', 1877, - 'e', 1841, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1904, - 's', 1924, - 'x', 1896, - '{', 1521, + '!', 1817, + '#', 2212, + '(', 1583, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1616, + '/', 1589, + '<', 1572, + '=', 1819, + '>', 1502, + 'E', 1843, + 'a', 1889, + 'b', 1876, + 'e', 1840, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1903, + 's', 1923, + 'x', 1895, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 19: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - '*', 1535, - '+', 1598, - '-', 1509, - '/', 1590, - '<', 1573, - '=', 1820, - '>', 1503, - 'E', 1844, - '_', 1838, - 'a', 1890, - 'b', 1877, - 'e', 1841, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1904, - 's', 1924, - 'x', 1896, - '{', 1521, + '!', 1817, + '#', 2212, + '(', 1583, + '*', 1534, + '+', 1597, + '-', 1508, + '/', 1589, + '<', 1572, + '=', 1819, + '>', 1502, + 'E', 1843, + '_', 1837, + 'a', 1889, + 'b', 1876, + 'e', 1840, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1903, + 's', 1923, + 'x', 1895, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 20: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - '*', 1535, - '+', 1598, - '-', 1509, - '/', 1590, - '<', 1573, - '=', 1820, - '>', 1503, - 'E', 1844, - 'a', 1890, - 'b', 1877, - 'e', 1841, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1904, - 's', 1924, - 'x', 1896, - '{', 1521, + '!', 1817, + '#', 2212, + '(', 1583, + '*', 1534, + '+', 1597, + '-', 1508, + '/', 1589, + '<', 1572, + '=', 1819, + '>', 1502, + 'E', 1843, + 'a', 1889, + 'b', 1876, + 'e', 1840, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1903, + 's', 1923, + 'x', 1895, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 21: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - '*', 1535, - '+', 1598, - '-', 1509, - '/', 1590, - '<', 1573, - '=', 1820, - '>', 1503, - 'a', 1890, - 'b', 1877, - 'e', 1891, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1904, - 's', 1924, - 'x', 1896, - '{', 1521, + '!', 1817, + '#', 2212, + '(', 1583, + '*', 1534, + '+', 1597, + '-', 1508, + '/', 1589, + '<', 1572, + '=', 1819, + '>', 1502, + 'a', 1889, + 'b', 1876, + 'e', 1890, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1903, + 's', 1923, + 'x', 1895, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 22: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 319, - '#', 2213, - '$', 1493, - '*', 1535, - '+', 1600, - '-', 1517, - '.', 335, - '/', 1590, - '<', 1573, - '=', 321, - '>', 1503, - 'a', 420, - 'b', 396, - 'e', 424, - 'h', 339, - 'i', 421, - 'l', 395, - 'm', 436, - 'n', 434, - 'o', 451, - 's', 485, - 'x', 431, - '{', 1521, + '!', 318, + '#', 2212, + '$', 1492, + '*', 1534, + '+', 1599, + '-', 1516, + '.', 334, + '/', 1589, + '<', 1572, + '=', 320, + '>', 1502, + 'a', 419, + 'b', 395, + 'e', 423, + 'h', 338, + 'i', 420, + 'l', 394, + 'm', 435, + 'n', 433, + 'o', 450, + 's', 484, + 'x', 430, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(22); END_STATE(); case 23: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 319, - '#', 2213, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 321, - '>', 1503, - 'a', 420, - 'b', 396, - 'e', 283, - 'h', 339, - 'i', 421, - 'l', 395, - 'm', 436, - 'n', 434, - 'o', 278, - 's', 485, - 'x', 431, - '|', 1475, + '!', 318, + '#', 2212, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 320, + '>', 1502, + 'a', 419, + 'b', 395, + 'e', 282, + 'h', 338, + 'i', 420, + 'l', 394, + 'm', 435, + 'n', 433, + 'o', 277, + 's', 484, + 'x', 430, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(23); END_STATE(); case 24: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 319, - '#', 2213, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 321, - '>', 1503, - 'a', 420, - 'b', 396, - 'e', 286, - 'h', 339, - 'i', 421, - 'l', 395, - 'm', 436, - 'n', 434, - 'o', 288, - 's', 485, - 'x', 431, - '|', 1475, + '!', 318, + '#', 2212, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 320, + '>', 1502, + 'a', 419, + 'b', 395, + 'e', 285, + 'h', 338, + 'i', 420, + 'l', 394, + 'm', 435, + 'n', 433, + 'o', 287, + 's', 484, + 'x', 430, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(24); END_STATE(); case 25: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 319, - '#', 2213, - '*', 1535, - '+', 1598, - '-', 1509, - '/', 1590, - ':', 1736, - ';', 1474, - '<', 1573, - '=', 321, - '>', 1503, - 'a', 420, - 'b', 396, - 'e', 283, - 'h', 339, - 'i', 421, - 'l', 395, - 'm', 436, - 'n', 434, - 'o', 278, - 's', 485, - 'x', 431, - '|', 1475, - '}', 1522, + '!', 318, + '#', 2212, + '*', 1534, + '+', 1597, + '-', 1508, + '/', 1589, + ':', 1735, + ';', 1473, + '<', 1572, + '=', 320, + '>', 1502, + 'a', 419, + 'b', 395, + 'e', 282, + 'h', 338, + 'i', 420, + 'l', 394, + 'm', 435, + 'n', 433, + 'o', 277, + 's', 484, + 'x', 430, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(25); END_STATE(); case 26: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 319, - '#', 2213, - '*', 1535, - '+', 1598, - '-', 1509, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 321, - '>', 1503, - 'a', 420, - 'b', 396, - 'e', 283, - 'h', 339, - 'i', 421, - 'l', 395, - 'm', 436, - 'n', 434, - 'o', 278, - 's', 485, - 'x', 431, - '|', 1475, - '}', 1522, + '!', 318, + '#', 2212, + '*', 1534, + '+', 1597, + '-', 1508, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 320, + '>', 1502, + 'a', 419, + 'b', 395, + 'e', 282, + 'h', 338, + 'i', 420, + 'l', 394, + 'm', 435, + 'n', 433, + 'o', 277, + 's', 484, + 'x', 430, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(26); END_STATE(); case 27: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 319, - '#', 2213, - '*', 1535, - '+', 1598, - '-', 1509, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 321, - '>', 1503, - 'a', 420, - 'b', 396, - 'e', 286, - 'h', 339, - 'i', 421, - 'l', 395, - 'm', 436, - 'n', 434, - 'o', 288, - 's', 485, - 'x', 431, - '|', 1475, - '}', 1522, + '!', 318, + '#', 2212, + '*', 1534, + '+', 1597, + '-', 1508, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 320, + '>', 1502, + 'a', 419, + 'b', 395, + 'e', 285, + 'h', 338, + 'i', 420, + 'l', 394, + 'm', 435, + 'n', 433, + 'o', 287, + 's', 484, + 'x', 430, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(27); END_STATE(); case 28: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 319, - '#', 2213, - '*', 1535, - '+', 1598, - '-', 1509, - '/', 1590, - '<', 1573, - '=', 321, - '>', 1503, - 'a', 420, - 'b', 396, - 'e', 283, - 'h', 339, - 'i', 421, - 'l', 395, - 'm', 436, - 'n', 434, - 'o', 278, - 's', 485, - 'x', 431, - '|', 1475, + '!', 318, + '#', 2212, + '*', 1534, + '+', 1597, + '-', 1508, + '/', 1589, + '<', 1572, + '=', 320, + '>', 1502, + 'a', 419, + 'b', 395, + 'e', 282, + 'h', 338, + 'i', 420, + 'l', 394, + 'm', 435, + 'n', 433, + 'o', 277, + 's', 484, + 'x', 430, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); END_STATE(); case 29: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 319, - '#', 2213, - '*', 1535, - '+', 1598, - '-', 1509, - '/', 1590, - '<', 1573, - '=', 321, - '>', 1503, - 'a', 420, - 'b', 396, - 'e', 286, - 'h', 339, - 'i', 421, - 'l', 395, - 'm', 436, - 'n', 434, - 'o', 288, - 's', 485, - 'x', 431, - '|', 1475, + '!', 318, + '#', 2212, + '*', 1534, + '+', 1597, + '-', 1508, + '/', 1589, + '<', 1572, + '=', 320, + '>', 1502, + 'a', 419, + 'b', 395, + 'e', 285, + 'h', 338, + 'i', 420, + 'l', 394, + 'm', 435, + 'n', 433, + 'o', 287, + 's', 484, + 'x', 430, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); END_STATE(); case 30: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 319, - '#', 2213, - '*', 1535, - '+', 1598, - '-', 1509, - '/', 1590, - '<', 1573, - '=', 321, - '>', 1503, - 'a', 420, - 'b', 396, - 'e', 424, - 'h', 339, - 'i', 421, - 'l', 395, - 'm', 436, - 'n', 434, - 'o', 451, - 's', 485, - 'x', 431, - '{', 1521, + '!', 318, + '#', 2212, + '*', 1534, + '+', 1597, + '-', 1508, + '/', 1589, + '<', 1572, + '=', 320, + '>', 1502, + 'a', 419, + 'b', 395, + 'e', 423, + 'h', 338, + 'i', 420, + 'l', 394, + 'm', 435, + 'n', 433, + 'o', 450, + 's', 484, + 'x', 430, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); END_STATE(); case 31: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2213, - '$', 1494, - '%', 1755, - '\'', 1711, - '(', 1490, - ')', 1491, - '+', 707, - '-', 1514, - '.', 702, - '0', 1646, - ':', 1736, - ';', 1474, - '=', 1752, - '@', 1485, - 'I', 819, - 'N', 815, - '[', 1488, - '^', 1754, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 778, - 't', 781, - 'u', 794, - 'w', 753, - '{', 1521, - '}', 1522, + '"', 1707, + '#', 2212, + '$', 1493, + '%', 1754, + '\'', 1710, + '(', 1489, + ')', 1490, + '+', 706, + '-', 1513, + '.', 701, + '0', 1645, + ':', 1735, + ';', 1473, + '=', 1751, + '@', 1484, + 'I', 818, + 'N', 814, + '[', 1487, + '^', 1753, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 777, + 't', 780, + 'u', 793, + 'w', 752, + '{', 1520, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(32); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1661); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(834); + (lookahead < '{' || '}' < lookahead)) ADVANCE(833); END_STATE(); case 32: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2213, - '$', 1494, - '%', 1755, - '\'', 1711, - '(', 1490, - ')', 1491, - '+', 707, - '-', 1514, - '.', 702, - '0', 1646, - ':', 1736, - ';', 1474, - '@', 1485, - 'I', 819, - 'N', 815, - '[', 1488, - '^', 1754, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 778, - 't', 781, - 'u', 794, - 'w', 753, - '{', 1521, - '}', 1522, + '"', 1707, + '#', 2212, + '$', 1493, + '%', 1754, + '\'', 1710, + '(', 1489, + ')', 1490, + '+', 706, + '-', 1513, + '.', 701, + '0', 1645, + ':', 1735, + ';', 1473, + '@', 1484, + 'I', 818, + 'N', 814, + '[', 1487, + '^', 1753, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 777, + 't', 780, + 'u', 793, + 'w', 752, + '{', 1520, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(32); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1661); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(834); + (lookahead < '{' || '}' < lookahead)) ADVANCE(833); END_STATE(); case 33: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2213, - '$', 1494, - '%', 1755, - '\'', 1711, - '(', 1490, - ')', 1491, - '+', 1603, - '-', 1514, - '.', 703, - '0', 1646, - ':', 1486, - ';', 1474, - '<', 1159, - '=', 322, - '>', 1502, - '@', 1485, - 'I', 819, - 'N', 815, - '[', 1488, - ']', 1489, - '^', 1754, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 778, - 't', 781, - 'u', 794, - 'w', 753, - '{', 1521, - '|', 1475, - '}', 1522, + '"', 1707, + '#', 2212, + '$', 1493, + '%', 1754, + '\'', 1710, + '(', 1489, + ')', 1490, + '+', 1602, + '-', 1513, + '.', 702, + '0', 1645, + ':', 1485, + ';', 1473, + '<', 1158, + '=', 321, + '>', 1501, + '@', 1484, + 'I', 818, + 'N', 814, + '[', 1487, + ']', 1488, + '^', 1753, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 777, + 't', 780, + 'u', 793, + 'w', 752, + '{', 1520, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(34); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1661); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead)) ADVANCE(834); + (lookahead < '+' || '.' < lookahead)) ADVANCE(833); END_STATE(); case 34: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2213, - '$', 1494, - '%', 1755, - '\'', 1711, - '(', 1490, - ')', 1491, - '+', 1603, - '-', 1514, - '.', 703, - '0', 1646, - ':', 1486, - ';', 1474, - '=', 322, - '>', 1502, - '@', 1485, - 'I', 819, - 'N', 815, - '[', 1488, - ']', 1489, - '^', 1754, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 778, - 't', 781, - 'u', 794, - 'w', 753, - '{', 1521, - '|', 1475, - '}', 1522, + '"', 1707, + '#', 2212, + '$', 1493, + '%', 1754, + '\'', 1710, + '(', 1489, + ')', 1490, + '+', 1602, + '-', 1513, + '.', 702, + '0', 1645, + ':', 1485, + ';', 1473, + '=', 321, + '>', 1501, + '@', 1484, + 'I', 818, + 'N', 814, + '[', 1487, + ']', 1488, + '^', 1753, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 777, + 't', 780, + 'u', 793, + 'w', 752, + '{', 1520, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(34); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1661); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead)) ADVANCE(834); + (lookahead < '0' || '>' < lookahead)) ADVANCE(833); END_STATE(); case 35: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2213, - '$', 1494, - '%', 1755, - '\'', 1711, - '(', 1490, - '+', 707, - '-', 1514, - '.', 702, - '0', 1646, - ';', 1474, - '=', 1752, - 'I', 819, - 'N', 815, - '[', 1488, - '^', 1754, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 778, - 't', 781, - 'u', 794, - 'w', 757, - '{', 1521, - '\t', 1473, - ' ', 1473, + '"', 1707, + '#', 2212, + '$', 1493, + '%', 1754, + '\'', 1710, + '(', 1489, + '+', 706, + '-', 1513, + '.', 701, + '0', 1645, + ';', 1473, + '=', 1751, + 'I', 818, + 'N', 814, + '[', 1487, + '^', 1753, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 777, + 't', 780, + 'u', 793, + 'w', 756, + '{', 1520, + '\t', 1472, + ' ', 1472, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1661); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(833); END_STATE(); case 36: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2213, - '$', 1494, - '%', 1755, - '\'', 1711, - '(', 1490, - '+', 707, - '-', 1514, - '.', 702, - '0', 1646, - '=', 678, - '>', 1502, - '@', 1504, - 'I', 819, - 'N', 815, - '[', 1488, - '^', 1754, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 778, - 't', 781, - 'u', 794, - 'w', 757, - '{', 1521, + '"', 1707, + '#', 2212, + '$', 1493, + '%', 1754, + '\'', 1710, + '(', 1489, + '+', 706, + '-', 1513, + '.', 701, + '0', 1645, + '=', 677, + '>', 1501, + '@', 1503, + 'I', 818, + 'N', 814, + '[', 1487, + '^', 1753, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 777, + 't', 780, + 'u', 793, + 'w', 756, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(37); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1661); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(834); + (lookahead < '{' || '}' < lookahead)) ADVANCE(833); END_STATE(); case 37: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2213, - '$', 1494, - '%', 1755, - '\'', 1711, - '(', 1490, - '+', 707, - '-', 1514, - '.', 702, - '0', 1646, - '=', 678, - '>', 1502, - 'I', 819, - 'N', 815, - '[', 1488, - '^', 1754, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 778, - 't', 781, - 'u', 794, - 'w', 757, - '{', 1521, + '"', 1707, + '#', 2212, + '$', 1493, + '%', 1754, + '\'', 1710, + '(', 1489, + '+', 706, + '-', 1513, + '.', 701, + '0', 1645, + '=', 677, + '>', 1501, + 'I', 818, + 'N', 814, + '[', 1487, + '^', 1753, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 777, + 't', 780, + 'u', 793, + 'w', 756, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(37); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1661); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(833); END_STATE(); case 38: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2213, - '$', 1494, - '\'', 1711, - '(', 1490, - '+', 707, - '-', 298, - '.', 723, - '=', 1752, - 'I', 819, - 'N', 815, - '[', 1488, - ']', 1489, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 807, - 't', 781, - 'u', 794, - 'w', 757, - '{', 1521, + '"', 1707, + '#', 2212, + '$', 1493, + '\'', 1710, + '(', 1489, + '+', 706, + '-', 297, + '.', 722, + '=', 1751, + 'I', 818, + 'N', 814, + '[', 1487, + ']', 1488, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 806, + 't', 780, + 'u', 793, + 'w', 756, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(39); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(833); END_STATE(); case 39: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2213, - '$', 1494, - '\'', 1711, - '(', 1490, - '+', 707, - '-', 298, - '.', 723, - 'I', 819, - 'N', 815, - '[', 1488, - ']', 1489, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 807, - 't', 781, - 'u', 794, - 'w', 757, - '{', 1521, + '"', 1707, + '#', 2212, + '$', 1493, + '\'', 1710, + '(', 1489, + '+', 706, + '-', 297, + '.', 722, + 'I', 818, + 'N', 814, + '[', 1487, + ']', 1488, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 806, + 't', 780, + 'u', 793, + 'w', 756, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(39); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(833); END_STATE(); case 40: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2213, - '$', 1494, - '\'', 1711, - '(', 1490, - '+', 308, - '-', 1514, - '.', 309, - '0', 1649, - ':', 1736, - 'N', 533, - '[', 1488, - '_', 337, - '`', 1715, - 'f', 345, - 'n', 442, - 't', 456, - '{', 1521, + '"', 1707, + '#', 2212, + '$', 1493, + '\'', 1710, + '(', 1489, + '+', 307, + '-', 1513, + '.', 308, + '0', 1648, + ':', 1735, + 'N', 532, + '[', 1487, + '_', 336, + '`', 1714, + 'f', 344, + 'n', 441, + 't', 455, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(40); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(542); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1665); + lookahead == 'i') ADVANCE(541); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1664); END_STATE(); case 41: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2213, - '$', 1494, - '\'', 1711, - '(', 1490, - '+', 1603, - '-', 1514, - '.', 706, - '0', 1651, - 'I', 819, - 'N', 815, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 807, - 't', 781, - 'u', 794, - 'w', 757, - '}', 1522, + '"', 1707, + '#', 2212, + '$', 1493, + '\'', 1710, + '(', 1489, + '+', 1602, + '-', 1513, + '.', 705, + '0', 1650, + 'I', 818, + 'N', 814, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 806, + 't', 780, + 'u', 793, + 'w', 756, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(41); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(833); END_STATE(); case 42: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2213, - '$', 1494, - '\'', 1711, - '(', 1490, - '+', 2025, - '-', 1514, - '.', 2023, - '0', 1647, - 'N', 2072, - '[', 1488, - '_', 2037, - '`', 1715, - 'f', 2040, - 'n', 2052, - 't', 2055, - '{', 1521, + '"', 1707, + '#', 2212, + '$', 1493, + '\'', 1710, + '(', 1489, + '+', 2024, + '-', 1513, + '.', 2022, + '0', 1646, + 'N', 2071, + '[', 1487, + '_', 2036, + '`', 1714, + 'f', 2039, + 'n', 2051, + 't', 2054, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(42); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2076); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1663); + lookahead == 'i') ADVANCE(2075); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2095); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2094); END_STATE(); case 43: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2213, - '$', 1494, - '\'', 1711, - '(', 1490, - '+', 2025, - '-', 1511, - '.', 2024, - '0', 1647, - ':', 1736, - ';', 1474, - 'N', 2072, - '[', 1488, - '_', 2037, - '`', 1715, - 'e', 2014, - 'f', 2040, - 'n', 2068, - 'o', 2015, - 't', 2055, - '{', 1521, - '|', 1475, - '}', 1522, - '\t', 1472, - ' ', 1472, - 'I', 2076, - 'i', 2076, + '"', 1707, + '#', 2212, + '$', 1493, + '\'', 1710, + '(', 1489, + '+', 2024, + '-', 1510, + '.', 2023, + '0', 1646, + ':', 1735, + ';', 1473, + 'N', 2071, + '[', 1487, + '_', 2036, + '`', 1714, + 'e', 2013, + 'f', 2039, + 'n', 2067, + 'o', 2014, + 't', 2054, + '{', 1520, + '|', 1474, + '}', 1521, + '\t', 1471, + ' ', 1471, + 'I', 2075, + 'i', 2075, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ']') ADVANCE(2095); + lookahead != ']') ADVANCE(2094); END_STATE(); case 44: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2213, - '$', 1494, - '\'', 1711, - '(', 1490, - '+', 2025, - '-', 1511, - '.', 2024, - '0', 1647, - ';', 1474, - 'N', 2072, - '[', 1488, - '_', 2037, - '`', 1715, - 'e', 2018, - 'f', 2040, - 'n', 2068, - 'o', 2019, - 't', 2055, - '{', 1521, - '\t', 1473, - ' ', 1473, - 'I', 2076, - 'i', 2076, + '"', 1707, + '#', 2212, + '$', 1493, + '\'', 1710, + '(', 1489, + '+', 2024, + '-', 1510, + '.', 2023, + '0', 1646, + ';', 1473, + 'N', 2071, + '[', 1487, + '_', 2036, + '`', 1714, + 'e', 2017, + 'f', 2039, + 'n', 2067, + 'o', 2018, + 't', 2054, + '{', 1520, + '\t', 1472, + ' ', 1472, + 'I', 2075, + 'i', 2075, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1663); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2095); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2094); END_STATE(); case 45: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2213, - '$', 1494, - '\'', 1711, - '(', 1490, - '+', 2107, - ',', 1492, - '-', 2106, - '.', 2108, - '0', 1648, - 'N', 2125, - '[', 1488, - ']', 1489, - '_', 2112, - '`', 1715, - 'f', 2115, - 'n', 2124, - 't', 2121, - '{', 1521, + '"', 1707, + '#', 2212, + '$', 1493, + '\'', 1710, + '(', 1489, + '+', 2106, + ',', 1491, + '-', 2105, + '.', 2107, + '0', 1647, + 'N', 2124, + '[', 1487, + ']', 1488, + '_', 2111, + '`', 1714, + 'f', 2114, + 'n', 2123, + 't', 2120, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(45); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2131); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1664); + lookahead == 'i') ADVANCE(2130); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1663); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2153); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2152); END_STATE(); case 46: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2213, - '$', 1494, - '\'', 1711, - '(', 1490, - '+', 2164, - '-', 2163, - '.', 2162, - '0', 1650, - 'N', 2179, - '[', 1488, - '_', 2166, - '`', 1715, - 'f', 2169, - 'n', 2178, - 't', 2175, - '{', 1521, + '"', 1707, + '#', 2212, + '$', 1493, + '\'', 1710, + '(', 1489, + '+', 2163, + '-', 2162, + '.', 2161, + '0', 1649, + 'N', 2178, + '[', 1487, + '_', 2165, + '`', 1714, + 'f', 2168, + 'n', 2177, + 't', 2174, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(46); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2185); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2199); + lookahead == 'i') ADVANCE(2184); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1665); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2198); END_STATE(); case 47: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2213, - '$', 1493, - '\'', 1711, - '(', 1490, - '+', 2025, - '-', 297, - '.', 2023, - '0', 1647, - 'N', 2072, - '[', 1488, - '_', 1524, - '`', 1715, - 'f', 2040, - 'n', 2068, - 't', 2055, - '{', 1521, - '}', 1522, + '"', 1707, + '#', 2212, + '$', 1492, + '\'', 1710, + '(', 1489, + '+', 2024, + '-', 296, + '.', 2022, + '0', 1646, + 'N', 2071, + '[', 1487, + '_', 1523, + '`', 1714, + 'f', 2039, + 'n', 2067, + 't', 2054, + '{', 1520, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(47); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2076); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1663); + lookahead == 'i') ADVANCE(2075); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2095); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2094); END_STATE(); case 48: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2213, - '$', 1493, - '\'', 1711, - '(', 1490, - '+', 2107, - ',', 1492, - '-', 2106, - '.', 2105, - '0', 1648, - 'N', 2125, - '[', 1488, - ']', 1489, - '_', 2112, - '`', 1715, - 'f', 2115, - 'n', 2124, - 't', 2121, - '{', 1521, + '"', 1707, + '#', 2212, + '$', 1492, + '\'', 1710, + '(', 1489, + '+', 2106, + ',', 1491, + '-', 2105, + '.', 2104, + '0', 1647, + 'N', 2124, + '[', 1487, + ']', 1488, + '_', 2111, + '`', 1714, + 'f', 2114, + 'n', 2123, + 't', 2120, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(48); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2131); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1664); + lookahead == 'i') ADVANCE(2130); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1663); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2153); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2152); END_STATE(); case 49: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2213, - '$', 1493, - '\'', 1711, - '(', 1490, - '-', 1509, - '`', 1715, - 'f', 1538, - 'n', 1542, - 't', 1543, - '{', 1521, + '"', 1707, + '#', 2212, + '$', 1492, + '\'', 1710, + '(', 1489, + '-', 1508, + '`', 1714, + 'f', 1537, + 'n', 1541, + 't', 1542, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(49); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1548); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1547); END_STATE(); case 50: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2213, - '\'', 1711, - '+', 2164, - '-', 2163, - '.', 2162, - '>', 1502, - 'N', 2179, - '_', 2166, - '`', 1715, - 'f', 2169, - 'n', 2178, - 't', 2175, + '"', 1707, + '#', 2212, + '\'', 1710, + '+', 2163, + '-', 2162, + '.', 2161, + '>', 1501, + 'N', 2178, + '_', 2165, + '`', 1714, + 'f', 2168, + 'n', 2177, + 't', 2174, ); if (lookahead == '\t' || lookahead == ' ') SKIP(50); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2185); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2199); + lookahead == 'i') ADVANCE(2184); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1665); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2198); END_STATE(); case 51: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2216, - '$', 1495, - '\'', 1711, - '(', 1490, - '+', 858, - '-', 1515, - '.', 859, - '0', 874, - ':', 1736, - 'N', 1035, - '[', 1488, - '_', 876, - '`', 1715, - 'f', 884, - 'n', 958, - 't', 973, - '{', 1521, + '"', 1707, + '#', 2215, + '$', 1494, + '\'', 1710, + '(', 1489, + '+', 857, + '-', 1514, + '.', 858, + '0', 873, + ':', 1735, + 'N', 1034, + '[', 1487, + '_', 875, + '`', 1714, + 'f', 883, + 'n', 957, + 't', 972, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(40); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1040); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(879); + lookahead == 'i') ADVANCE(1039); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(878); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1061); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1060); END_STATE(); case 52: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - '(', 1584, - ')', 1491, - '+', 1986, - ',', 1492, - '-', 1512, - '.', 1623, - ':', 1486, - '=', 678, - ']', 1489, - '_', 1363, - '|', 1475, + '#', 2212, + '$', 1492, + '(', 1583, + ')', 1490, + '+', 1985, + ',', 1491, + '-', 1511, + '.', 1622, + ':', 1485, + '=', 677, + ']', 1488, + '_', 1362, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); @@ -13062,27 +13041,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2011); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); + lookahead == '^') ADVANCE(2010); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1390); END_STATE(); case 53: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - '(', 1584, - ')', 1491, - '+', 1986, - ',', 1492, - '-', 1512, - '.', 1987, - ':', 1486, - '=', 678, - ']', 1489, - '_', 1363, - '|', 1475, + '#', 2212, + '$', 1492, + '(', 1583, + ')', 1490, + '+', 1985, + ',', 1491, + '-', 1511, + '.', 1986, + ':', 1485, + '=', 677, + ']', 1488, + '_', 1362, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); @@ -13092,49 +13071,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2011); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); + lookahead == '^') ADVANCE(2010); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1390); END_STATE(); case 54: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - '(', 1584, - ')', 1491, - ',', 1492, - '-', 1510, - '.', 1624, - ':', 1486, - '=', 678, - 'E', 1353, - 'G', 1361, - 'K', 1361, - 'M', 1361, - 'P', 1361, - 'T', 1361, - ']', 1489, - 'd', 1366, - 'e', 1352, - 'g', 1360, - 'h', 1384, - 'k', 1360, - 'm', 1362, - 'n', 1386, - 'p', 1360, - 's', 1371, - 't', 1360, - 'u', 1386, - 'w', 1372, - '|', 1475, - 0xb5, 1386, + '#', 2212, + '$', 1492, + '(', 1583, + ')', 1490, + ',', 1491, + '-', 1509, + '.', 1623, + ':', 1485, + '=', 677, + 'E', 1352, + 'G', 1360, + 'K', 1360, + 'M', 1360, + 'P', 1360, + 'T', 1360, + ']', 1488, + 'd', 1365, + 'e', 1351, + 'g', 1359, + 'h', 1383, + 'k', 1359, + 'm', 1361, + 'n', 1385, + 'p', 1359, + 's', 1370, + 't', 1359, + 'u', 1385, + 'w', 1371, + '|', 1474, + 0xb5, 1385, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); + lookahead == 'b') ADVANCE(1679); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13142,29 +13121,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2011); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); + lookahead == '^') ADVANCE(2010); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1390); END_STATE(); case 55: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - '(', 1584, - ')', 1491, - ',', 1492, - '-', 1510, - '.', 1624, - ':', 1486, - '=', 678, - ']', 1489, - '|', 1475, + '#', 2212, + '$', 1492, + '(', 1583, + ')', 1490, + ',', 1491, + '-', 1509, + '.', 1623, + ':', 1485, + '=', 677, + ']', 1488, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1354); + lookahead == 'e') ADVANCE(1353); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13172,49 +13151,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2011); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); + lookahead == '^') ADVANCE(2010); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1390); END_STATE(); case 56: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - '(', 1584, - ')', 1491, - ',', 1492, - '-', 1510, - '.', 1990, - ':', 1486, - '=', 678, - 'E', 1353, - 'G', 1361, - 'K', 1361, - 'M', 1361, - 'P', 1361, - 'T', 1361, - ']', 1489, - '_', 1363, - 'd', 1366, - 'e', 1352, - 'g', 1360, - 'h', 1384, - 'k', 1360, - 'm', 1362, - 'n', 1386, - 'p', 1360, - 's', 1371, - 't', 1360, - 'u', 1386, - 'w', 1372, - '|', 1475, - 0xb5, 1386, + '#', 2212, + '$', 1492, + '(', 1583, + ')', 1490, + ',', 1491, + '-', 1509, + '.', 1989, + ':', 1485, + '=', 677, + 'E', 1352, + 'G', 1360, + 'K', 1360, + 'M', 1360, + 'P', 1360, + 'T', 1360, + ']', 1488, + '_', 1362, + 'd', 1365, + 'e', 1351, + 'g', 1359, + 'h', 1383, + 'k', 1359, + 'm', 1361, + 'n', 1385, + 'p', 1359, + 's', 1370, + 't', 1359, + 'u', 1385, + 'w', 1371, + '|', 1474, + 0xb5, 1385, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); + lookahead == 'b') ADVANCE(1679); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13222,49 +13201,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2011); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); + lookahead == '^') ADVANCE(2010); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1390); END_STATE(); case 57: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - '(', 1584, - ')', 1491, - ',', 1492, - '-', 1510, - '.', 1990, - ':', 1486, - '=', 678, - 'E', 1353, - 'G', 1361, - 'K', 1361, - 'M', 1361, - 'P', 1361, - 'T', 1361, - ']', 1489, - 'd', 1366, - 'e', 1352, - 'g', 1360, - 'h', 1384, - 'k', 1360, - 'm', 1362, - 'n', 1386, - 'p', 1360, - 's', 1371, - 't', 1360, - 'u', 1386, - 'w', 1372, - '|', 1475, - 0xb5, 1386, + '#', 2212, + '$', 1492, + '(', 1583, + ')', 1490, + ',', 1491, + '-', 1509, + '.', 1989, + ':', 1485, + '=', 677, + 'E', 1352, + 'G', 1360, + 'K', 1360, + 'M', 1360, + 'P', 1360, + 'T', 1360, + ']', 1488, + 'd', 1365, + 'e', 1351, + 'g', 1359, + 'h', 1383, + 'k', 1359, + 'm', 1361, + 'n', 1385, + 'p', 1359, + 's', 1370, + 't', 1359, + 'u', 1385, + 'w', 1371, + '|', 1474, + 0xb5, 1385, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); + lookahead == 'b') ADVANCE(1679); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13272,48 +13251,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2011); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); + lookahead == '^') ADVANCE(2010); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1390); END_STATE(); case 58: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - '(', 1584, - ')', 1491, - ',', 1492, - '-', 1510, - '.', 1990, - ':', 1486, - '=', 678, - 'E', 1361, - 'G', 1361, - 'K', 1361, - 'M', 1361, - 'P', 1361, - 'T', 1361, - ']', 1489, - 'd', 1366, - 'e', 1360, - 'g', 1360, - 'h', 1384, - 'k', 1360, - 'm', 1362, - 'n', 1386, - 'p', 1360, - 's', 1371, - 't', 1360, - 'u', 1386, - 'w', 1372, - '|', 1475, - 0xb5, 1386, + '#', 2212, + '$', 1492, + '(', 1583, + ')', 1490, + ',', 1491, + '-', 1509, + '.', 1989, + ':', 1485, + '=', 677, + 'E', 1360, + 'G', 1360, + 'K', 1360, + 'M', 1360, + 'P', 1360, + 'T', 1360, + ']', 1488, + 'd', 1365, + 'e', 1359, + 'g', 1359, + 'h', 1383, + 'k', 1359, + 'm', 1361, + 'n', 1385, + 'p', 1359, + 's', 1370, + 't', 1359, + 'u', 1385, + 'w', 1371, + '|', 1474, + 0xb5, 1385, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); + lookahead == 'b') ADVANCE(1679); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13321,30 +13300,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2011); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); + lookahead == '^') ADVANCE(2010); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1390); END_STATE(); case 59: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - '(', 1584, - ')', 1491, - ',', 1492, - '-', 1510, - '.', 1990, - ':', 1486, - '=', 678, - ']', 1489, - '_', 1363, - '|', 1475, + '#', 2212, + '$', 1492, + '(', 1583, + ')', 1490, + ',', 1491, + '-', 1509, + '.', 1989, + ':', 1485, + '=', 677, + ']', 1488, + '_', 1362, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1354); + lookahead == 'e') ADVANCE(1353); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13352,30 +13331,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2011); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); + lookahead == '^') ADVANCE(2010); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1390); END_STATE(); case 60: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - '(', 1584, - ')', 1491, - ',', 1492, - '-', 1510, - '.', 1990, - ':', 1486, - '=', 678, - ']', 1489, - '|', 1475, + '#', 2212, + '$', 1492, + '(', 1583, + ')', 1490, + ',', 1491, + '-', 1509, + '.', 1989, + ':', 1485, + '=', 677, + ']', 1488, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1354); + lookahead == 'e') ADVANCE(1353); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13383,24 +13362,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2011); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); + lookahead == '^') ADVANCE(2010); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1390); END_STATE(); case 61: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - '(', 1584, - ')', 1491, - ',', 1492, - '-', 1510, - '.', 1990, - ':', 1486, - '=', 678, - ']', 1489, - '|', 1475, + '#', 2212, + '$', 1492, + '(', 1583, + ')', 1490, + ',', 1491, + '-', 1509, + '.', 1989, + ':', 1485, + '=', 677, + ']', 1488, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); @@ -13411,29 +13390,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2011); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); + lookahead == '^') ADVANCE(2010); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1390); END_STATE(); case 62: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - '(', 1584, - ')', 1491, - ',', 1492, - '-', 1510, - '.', 1622, - ':', 1486, - '=', 678, - ']', 1489, - '|', 1475, + '#', 2212, + '$', 1492, + '(', 1583, + ')', 1490, + ',', 1491, + '-', 1509, + '.', 1621, + ':', 1485, + '=', 677, + ']', 1488, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1354); + lookahead == 'e') ADVANCE(1353); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13441,30 +13420,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2011); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); + lookahead == '^') ADVANCE(2010); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1390); END_STATE(); case 63: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - '(', 1584, - ')', 1491, - ',', 1492, - '-', 1510, - '.', 1988, - ':', 1486, - '=', 678, - ']', 1489, - '_', 1363, - '|', 1475, + '#', 2212, + '$', 1492, + '(', 1583, + ')', 1490, + ',', 1491, + '-', 1509, + '.', 1987, + ':', 1485, + '=', 677, + ']', 1488, + '_', 1362, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1354); + lookahead == 'e') ADVANCE(1353); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13472,30 +13451,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2011); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); + lookahead == '^') ADVANCE(2010); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1390); END_STATE(); case 64: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - '(', 1584, - ')', 1491, - ',', 1492, - '-', 1510, - '.', 1988, - ':', 1486, - '=', 678, - ']', 1489, - '|', 1475, + '#', 2212, + '$', 1492, + '(', 1583, + ')', 1490, + ',', 1491, + '-', 1509, + '.', 1987, + ':', 1485, + '=', 677, + ']', 1488, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1354); + lookahead == 'e') ADVANCE(1353); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13503,24 +13482,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2011); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); + lookahead == '^') ADVANCE(2010); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1390); END_STATE(); case 65: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - '(', 1584, - ')', 1491, - ',', 1492, - '-', 1510, - '.', 1988, - ':', 1486, - '=', 678, - ']', 1489, - '|', 1475, + '#', 2212, + '$', 1492, + '(', 1583, + ')', 1490, + ',', 1491, + '-', 1509, + '.', 1987, + ':', 1485, + '=', 677, + ']', 1488, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); @@ -13531,2510 +13510,2510 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(2011); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1391); + lookahead == '^') ADVANCE(2010); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1390); END_STATE(); case 66: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - '(', 1584, - '.', 1627, - ';', 1474, - '_', 1838, - '\t', 1473, - ' ', 1473, - '+', 1816, - '-', 1816, + '#', 2212, + '$', 1492, + '(', 1583, + '.', 1626, + ';', 1473, + '_', 1837, + '\t', 1472, + ' ', 1472, + '+', 1815, + '-', 1815, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1958); END_STATE(); case 67: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - '(', 1584, - '.', 1627, - '=', 1821, - '_', 1838, - 'i', 1870, - '|', 1475, + '#', 2212, + '$', 1492, + '(', 1583, + '.', 1626, + '=', 1820, + '_', 1837, + 'i', 1869, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(76); if (lookahead == '+' || - lookahead == '-') ADVANCE(1816); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); + lookahead == '-') ADVANCE(1815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1958); END_STATE(); case 68: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - '(', 1584, - '.', 1627, - '=', 1821, - '_', 1838, - '|', 1475, + '#', 2212, + '$', 1492, + '(', 1583, + '.', 1626, + '=', 1820, + '_', 1837, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(77); if (lookahead == '+' || - lookahead == '-') ADVANCE(1816); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); + lookahead == '-') ADVANCE(1815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1958); END_STATE(); case 69: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - '(', 1584, - '.', 1840, - ';', 1474, - '_', 1838, - '\t', 1473, - ' ', 1473, - '+', 1816, - '-', 1816, + '#', 2212, + '$', 1492, + '(', 1583, + '.', 1839, + ';', 1473, + '_', 1837, + '\t', 1472, + ' ', 1472, + '+', 1815, + '-', 1815, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1958); END_STATE(); case 70: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - '(', 1584, - '.', 1840, - '=', 1821, - '_', 1838, - 'i', 1870, - '|', 1475, + '#', 2212, + '$', 1492, + '(', 1583, + '.', 1839, + '=', 1820, + '_', 1837, + 'i', 1869, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(76); if (lookahead == '+' || - lookahead == '-') ADVANCE(1816); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); + lookahead == '-') ADVANCE(1815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1958); END_STATE(); case 71: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - '(', 1584, - '.', 1840, - '=', 1821, - '_', 1838, - '|', 1475, + '#', 2212, + '$', 1492, + '(', 1583, + '.', 1839, + '=', 1820, + '_', 1837, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(77); if (lookahead == '+' || - lookahead == '-') ADVANCE(1816); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); + lookahead == '-') ADVANCE(1815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1958); END_STATE(); case 72: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - '(', 1490, - ')', 1491, - ',', 1492, - '-', 1510, - '.', 311, - ':', 1486, - '=', 678, - '?', 1506, - '[', 1688, - ']', 1489, - '|', 1475, + '#', 2212, + '$', 1492, + '(', 1489, + ')', 1490, + ',', 1491, + '-', 1509, + '.', 310, + ':', 1485, + '=', 677, + '?', 1505, + '[', 1687, + ']', 1488, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(73); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1391); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1390); END_STATE(); case 73: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - '(', 1490, - ')', 1491, - ',', 1492, - '-', 1510, - '.', 311, - ':', 1486, - '=', 678, - '[', 1488, - ']', 1489, - '|', 1475, + '#', 2212, + '$', 1492, + '(', 1489, + ')', 1490, + ',', 1491, + '-', 1509, + '.', 310, + ':', 1485, + '=', 677, + '[', 1487, + ']', 1488, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(73); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1391); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1390); END_STATE(); case 74: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - ')', 1491, - '+', 313, - ',', 1492, - '-', 1513, - '.', 312, - ':', 1486, - '=', 678, - ']', 1489, - '|', 1475, + '#', 2212, + '$', 1492, + ')', 1490, + '+', 312, + ',', 1491, + '-', 1512, + '.', 311, + ':', 1485, + '=', 677, + ']', 1488, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1391); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1390); END_STATE(); case 75: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - ')', 1491, - ',', 1492, - '-', 1510, - '.', 311, - ':', 1486, - '=', 678, - ']', 1489, - '|', 1475, + '#', 2212, + '$', 1492, + ')', 1490, + ',', 1491, + '-', 1509, + '.', 310, + ':', 1485, + '=', 677, + ']', 1488, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1391); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1390); END_STATE(); case 76: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - '.', 335, - '=', 322, - 'i', 382, - '|', 1475, + '#', 2212, + '$', 1492, + '.', 334, + '=', 321, + 'i', 381, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(76); if (lookahead == '+' || - lookahead == '-') ADVANCE(313); + lookahead == '-') ADVANCE(312); END_STATE(); case 77: - if (lookahead == '\n') ADVANCE(1471); + if (lookahead == '\n') ADVANCE(1470); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '$') ADVANCE(1493); - if (lookahead == '.') ADVANCE(335); - if (lookahead == '=') ADVANCE(322); - if (lookahead == '|') ADVANCE(1475); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '$') ADVANCE(1492); + if (lookahead == '.') ADVANCE(334); + if (lookahead == '=') ADVANCE(321); + if (lookahead == '|') ADVANCE(1474); if (lookahead == '\t' || lookahead == ' ') SKIP(77); if (lookahead == '+' || - lookahead == '-') ADVANCE(313); + lookahead == '-') ADVANCE(312); END_STATE(); case 78: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - '.', 1618, - ';', 1474, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'd', 1849, - 'e', 1831, - 'g', 1834, - 'h', 1903, - 'k', 1834, - 'm', 1837, - 'n', 1916, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - 0xb5, 1916, - '\t', 1473, - ' ', 1473, - 'B', 1676, - 'b', 1676, + '#', 2212, + '(', 1583, + '.', 1617, + ';', 1473, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'd', 1848, + 'e', 1830, + 'g', 1833, + 'h', 1902, + 'k', 1833, + 'm', 1836, + 'n', 1915, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + 0xb5, 1915, + '\t', 1472, + ' ', 1472, + 'B', 1675, + 'b', 1675, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 79: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - '.', 1618, - ';', 1474, - '\t', 1473, - ' ', 1473, - 'E', 1844, - 'e', 1844, + '#', 2212, + '(', 1583, + '.', 1617, + ';', 1473, + '\t', 1472, + ' ', 1472, + 'E', 1843, + 'e', 1843, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 80: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - '.', 1815, - ';', 1474, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - '_', 1838, - 'd', 1849, - 'e', 1831, - 'g', 1834, - 'h', 1903, - 'k', 1834, - 'm', 1837, - 'n', 1916, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - 0xb5, 1916, - '\t', 1473, - ' ', 1473, - 'B', 1676, - 'b', 1676, + '#', 2212, + '(', 1583, + '.', 1814, + ';', 1473, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + '_', 1837, + 'd', 1848, + 'e', 1830, + 'g', 1833, + 'h', 1902, + 'k', 1833, + 'm', 1836, + 'n', 1915, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + 0xb5, 1915, + '\t', 1472, + ' ', 1472, + 'B', 1675, + 'b', 1675, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 81: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - '.', 1815, - ';', 1474, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'd', 1849, - 'e', 1831, - 'g', 1834, - 'h', 1903, - 'k', 1834, - 'm', 1837, - 'n', 1916, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - 0xb5, 1916, - '\t', 1473, - ' ', 1473, - 'B', 1676, - 'b', 1676, + '#', 2212, + '(', 1583, + '.', 1814, + ';', 1473, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'd', 1848, + 'e', 1830, + 'g', 1833, + 'h', 1902, + 'k', 1833, + 'm', 1836, + 'n', 1915, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + 0xb5, 1915, + '\t', 1472, + ' ', 1472, + 'B', 1675, + 'b', 1675, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 82: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - '.', 1815, - ';', 1474, - 'E', 1835, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'd', 1849, - 'e', 1834, - 'g', 1834, - 'h', 1903, - 'k', 1834, - 'm', 1837, - 'n', 1916, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - 0xb5, 1916, - '\t', 1473, - ' ', 1473, - 'B', 1676, - 'b', 1676, + '#', 2212, + '(', 1583, + '.', 1814, + ';', 1473, + 'E', 1834, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'd', 1848, + 'e', 1833, + 'g', 1833, + 'h', 1902, + 'k', 1833, + 'm', 1836, + 'n', 1915, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + 0xb5, 1915, + '\t', 1472, + ' ', 1472, + 'B', 1675, + 'b', 1675, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 83: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - '.', 1815, - ';', 1474, - '_', 1838, - '\t', 1473, - ' ', 1473, - 'E', 1844, - 'e', 1844, + '#', 2212, + '(', 1583, + '.', 1814, + ';', 1473, + '_', 1837, + '\t', 1472, + ' ', 1472, + 'E', 1843, + 'e', 1843, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 84: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - '.', 1815, - ';', 1474, - '\t', 1473, - ' ', 1473, - 'E', 1844, - 'e', 1844, + '#', 2212, + '(', 1583, + '.', 1814, + ';', 1473, + '\t', 1472, + ' ', 1472, + 'E', 1843, + 'e', 1843, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 85: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - '.', 1815, - ';', 1474, - '\t', 1473, - ' ', 1473, + '#', 2212, + '(', 1583, + '.', 1814, + ';', 1473, + '\t', 1472, + ' ', 1472, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 86: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - '.', 1617, - ';', 1474, - '\t', 1473, - ' ', 1473, - 'E', 1844, - 'e', 1844, + '#', 2212, + '(', 1583, + '.', 1616, + ';', 1473, + '\t', 1472, + ' ', 1472, + 'E', 1843, + 'e', 1843, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 87: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - ';', 1474, - '_', 1838, - '\t', 1473, - ' ', 1473, - 'E', 1844, - 'e', 1844, + '#', 2212, + '(', 1583, + ';', 1473, + '_', 1837, + '\t', 1472, + ' ', 1472, + 'E', 1843, + 'e', 1843, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 88: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - ';', 1474, - '\t', 1473, - ' ', 1473, - 'E', 1844, - 'e', 1844, + '#', 2212, + '(', 1583, + ';', 1473, + '\t', 1472, + ' ', 1472, + 'E', 1843, + 'e', 1843, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 89: - if (lookahead == '\n') ADVANCE(1471); + if (lookahead == '\n') ADVANCE(1470); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '(') ADVANCE(1584); - if (lookahead == ';') ADVANCE(1474); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '(') ADVANCE(1583); + if (lookahead == ';') ADVANCE(1473); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1473); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == ' ') ADVANCE(1472); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 90: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1490, - ')', 1491, - ',', 1492, - '-', 296, - '.', 1746, - ':', 1486, - ';', 1474, - '=', 678, - '>', 1502, - '@', 1504, - '[', 1488, - ']', 1489, - 'c', 1369, - 'f', 1388, - 'i', 1377, - 'o', 1380, - 'v', 1365, - '{', 1521, - '}', 1522, + '#', 2212, + '(', 1489, + ')', 1490, + ',', 1491, + '-', 295, + '.', 1745, + ':', 1485, + ';', 1473, + '=', 677, + '>', 1501, + '@', 1503, + '[', 1487, + ']', 1488, + 'c', 1368, + 'f', 1387, + 'i', 1376, + 'o', 1379, + 'v', 1364, + '{', 1520, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(91); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1391); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1390); END_STATE(); case 91: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1490, - ')', 1491, - ',', 1492, - '-', 296, - '.', 1746, - ':', 1486, - ';', 1474, - '=', 678, - '>', 1502, - '[', 1488, - ']', 1489, - 'c', 1369, - 'f', 1388, - 'i', 1377, - 'o', 1380, - 'v', 1365, - '{', 1521, - '}', 1522, + '#', 2212, + '(', 1489, + ')', 1490, + ',', 1491, + '-', 295, + '.', 1745, + ':', 1485, + ';', 1473, + '=', 677, + '>', 1501, + '[', 1487, + ']', 1488, + 'c', 1368, + 'f', 1387, + 'i', 1376, + 'o', 1379, + 'v', 1364, + '{', 1520, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(91); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1391); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1390); END_STATE(); case 92: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '.', 1618, - '=', 1821, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'd', 1849, - 'e', 1831, - 'g', 1834, - 'h', 1903, - 'i', 1870, - 'k', 1834, - 'm', 1837, - 'n', 1916, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - '|', 1475, - 0xb5, 1916, + '#', 2212, + '.', 1617, + '=', 1820, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'd', 1848, + 'e', 1830, + 'g', 1833, + 'h', 1902, + 'i', 1869, + 'k', 1833, + 'm', 1836, + 'n', 1915, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + '|', 1474, + 0xb5, 1915, ); if (lookahead == '\t' || lookahead == ' ') SKIP(113); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 93: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '.', 1618, - '=', 1821, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'd', 1849, - 'e', 1831, - 'g', 1834, - 'h', 1903, - 'k', 1834, - 'm', 1837, - 'n', 1916, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - '|', 1475, - 0xb5, 1916, + '#', 2212, + '.', 1617, + '=', 1820, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'd', 1848, + 'e', 1830, + 'g', 1833, + 'h', 1902, + 'k', 1833, + 'm', 1836, + 'n', 1915, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + '|', 1474, + 0xb5, 1915, ); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 94: - if (lookahead == '\n') ADVANCE(1471); + if (lookahead == '\n') ADVANCE(1470); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '.') ADVANCE(1618); - if (lookahead == '=') ADVANCE(1821); - if (lookahead == 'i') ADVANCE(1870); - if (lookahead == '|') ADVANCE(1475); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '.') ADVANCE(1617); + if (lookahead == '=') ADVANCE(1820); + if (lookahead == 'i') ADVANCE(1869); + if (lookahead == '|') ADVANCE(1474); if (lookahead == '\t' || lookahead == ' ') SKIP(113); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1844); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'e') ADVANCE(1843); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 95: - if (lookahead == '\n') ADVANCE(1471); + if (lookahead == '\n') ADVANCE(1470); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '.') ADVANCE(1618); - if (lookahead == '=') ADVANCE(1821); - if (lookahead == '|') ADVANCE(1475); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '.') ADVANCE(1617); + if (lookahead == '=') ADVANCE(1820); + if (lookahead == '|') ADVANCE(1474); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1844); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'e') ADVANCE(1843); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 96: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '.', 1815, - '=', 1821, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - '_', 1838, - 'd', 1849, - 'e', 1831, - 'g', 1834, - 'h', 1903, - 'i', 1870, - 'k', 1834, - 'm', 1837, - 'n', 1916, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - '|', 1475, - 0xb5, 1916, + '#', 2212, + '.', 1814, + '=', 1820, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + '_', 1837, + 'd', 1848, + 'e', 1830, + 'g', 1833, + 'h', 1902, + 'i', 1869, + 'k', 1833, + 'm', 1836, + 'n', 1915, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + '|', 1474, + 0xb5, 1915, ); if (lookahead == '\t' || lookahead == ' ') SKIP(113); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 97: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '.', 1815, - '=', 1821, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - '_', 1838, - 'd', 1849, - 'e', 1831, - 'g', 1834, - 'h', 1903, - 'k', 1834, - 'm', 1837, - 'n', 1916, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - '|', 1475, - 0xb5, 1916, + '#', 2212, + '.', 1814, + '=', 1820, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + '_', 1837, + 'd', 1848, + 'e', 1830, + 'g', 1833, + 'h', 1902, + 'k', 1833, + 'm', 1836, + 'n', 1915, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + '|', 1474, + 0xb5, 1915, ); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 98: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '.', 1815, - '=', 1821, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'd', 1849, - 'e', 1831, - 'g', 1834, - 'h', 1903, - 'i', 1870, - 'k', 1834, - 'm', 1837, - 'n', 1916, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - '|', 1475, - 0xb5, 1916, + '#', 2212, + '.', 1814, + '=', 1820, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'd', 1848, + 'e', 1830, + 'g', 1833, + 'h', 1902, + 'i', 1869, + 'k', 1833, + 'm', 1836, + 'n', 1915, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + '|', 1474, + 0xb5, 1915, ); if (lookahead == '\t' || lookahead == ' ') SKIP(113); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 99: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '.', 1815, - '=', 1821, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'd', 1849, - 'e', 1831, - 'g', 1834, - 'h', 1903, - 'k', 1834, - 'm', 1837, - 'n', 1916, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - '|', 1475, - 0xb5, 1916, + '#', 2212, + '.', 1814, + '=', 1820, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'd', 1848, + 'e', 1830, + 'g', 1833, + 'h', 1902, + 'k', 1833, + 'm', 1836, + 'n', 1915, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + '|', 1474, + 0xb5, 1915, ); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 100: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '.', 1815, - '=', 1821, - 'E', 1835, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'd', 1849, - 'e', 1834, - 'g', 1834, - 'h', 1903, - 'i', 1870, - 'k', 1834, - 'm', 1837, - 'n', 1916, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - '|', 1475, - 0xb5, 1916, + '#', 2212, + '.', 1814, + '=', 1820, + 'E', 1834, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'd', 1848, + 'e', 1833, + 'g', 1833, + 'h', 1902, + 'i', 1869, + 'k', 1833, + 'm', 1836, + 'n', 1915, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + '|', 1474, + 0xb5, 1915, ); if (lookahead == '\t' || lookahead == ' ') SKIP(113); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 101: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '.', 1815, - '=', 1821, - 'E', 1835, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'd', 1849, - 'e', 1834, - 'g', 1834, - 'h', 1903, - 'k', 1834, - 'm', 1837, - 'n', 1916, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - '|', 1475, - 0xb5, 1916, + '#', 2212, + '.', 1814, + '=', 1820, + 'E', 1834, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'd', 1848, + 'e', 1833, + 'g', 1833, + 'h', 1902, + 'k', 1833, + 'm', 1836, + 'n', 1915, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + '|', 1474, + 0xb5, 1915, ); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 102: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '.', 1815, - '=', 1821, - '_', 1838, - 'i', 1870, - '|', 1475, + '#', 2212, + '.', 1814, + '=', 1820, + '_', 1837, + 'i', 1869, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(113); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1844); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'e') ADVANCE(1843); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 103: - if (lookahead == '\n') ADVANCE(1471); + if (lookahead == '\n') ADVANCE(1470); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '.') ADVANCE(1815); - if (lookahead == '=') ADVANCE(1821); - if (lookahead == '_') ADVANCE(1838); - if (lookahead == '|') ADVANCE(1475); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '.') ADVANCE(1814); + if (lookahead == '=') ADVANCE(1820); + if (lookahead == '_') ADVANCE(1837); + if (lookahead == '|') ADVANCE(1474); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1844); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'e') ADVANCE(1843); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 104: - if (lookahead == '\n') ADVANCE(1471); + if (lookahead == '\n') ADVANCE(1470); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '.') ADVANCE(1815); - if (lookahead == '=') ADVANCE(1821); - if (lookahead == 'i') ADVANCE(1870); - if (lookahead == '|') ADVANCE(1475); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '.') ADVANCE(1814); + if (lookahead == '=') ADVANCE(1820); + if (lookahead == 'i') ADVANCE(1869); + if (lookahead == '|') ADVANCE(1474); if (lookahead == '\t' || lookahead == ' ') SKIP(113); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1844); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'e') ADVANCE(1843); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 105: - if (lookahead == '\n') ADVANCE(1471); + if (lookahead == '\n') ADVANCE(1470); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '.') ADVANCE(1815); - if (lookahead == '=') ADVANCE(1821); - if (lookahead == 'i') ADVANCE(1870); - if (lookahead == '|') ADVANCE(1475); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '.') ADVANCE(1814); + if (lookahead == '=') ADVANCE(1820); + if (lookahead == 'i') ADVANCE(1869); + if (lookahead == '|') ADVANCE(1474); if (lookahead == '\t' || lookahead == ' ') SKIP(113); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 106: - if (lookahead == '\n') ADVANCE(1471); + if (lookahead == '\n') ADVANCE(1470); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '.') ADVANCE(1815); - if (lookahead == '=') ADVANCE(1821); - if (lookahead == '|') ADVANCE(1475); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '.') ADVANCE(1814); + if (lookahead == '=') ADVANCE(1820); + if (lookahead == '|') ADVANCE(1474); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1844); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'e') ADVANCE(1843); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 107: - if (lookahead == '\n') ADVANCE(1471); + if (lookahead == '\n') ADVANCE(1470); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '.') ADVANCE(1815); - if (lookahead == '=') ADVANCE(1821); - if (lookahead == '|') ADVANCE(1475); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '.') ADVANCE(1814); + if (lookahead == '=') ADVANCE(1820); + if (lookahead == '|') ADVANCE(1474); if (lookahead == '\t' || lookahead == ' ') SKIP(114); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 108: - if (lookahead == '\n') ADVANCE(1471); + if (lookahead == '\n') ADVANCE(1470); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '.') ADVANCE(1617); - if (lookahead == '=') ADVANCE(1821); - if (lookahead == 'i') ADVANCE(1870); - if (lookahead == '|') ADVANCE(1475); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '.') ADVANCE(1616); + if (lookahead == '=') ADVANCE(1820); + if (lookahead == 'i') ADVANCE(1869); + if (lookahead == '|') ADVANCE(1474); if (lookahead == '\t' || lookahead == ' ') SKIP(113); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1844); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'e') ADVANCE(1843); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 109: - if (lookahead == '\n') ADVANCE(1471); + if (lookahead == '\n') ADVANCE(1470); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '.') ADVANCE(1617); - if (lookahead == '=') ADVANCE(1821); - if (lookahead == '|') ADVANCE(1475); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '.') ADVANCE(1616); + if (lookahead == '=') ADVANCE(1820); + if (lookahead == '|') ADVANCE(1474); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1844); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'e') ADVANCE(1843); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 110: ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - ':', 1736, - ';', 1474, - '=', 1752, - 'e', 287, - 'o', 289, - '|', 1475, - '}', 1522, - '\t', 1472, - ' ', 1472, + '#', 2212, + ':', 1735, + ';', 1473, + '=', 1751, + 'e', 286, + 'o', 288, + '|', 1474, + '}', 1521, + '\t', 1471, + ' ', 1471, ); END_STATE(); case 111: - if (lookahead == '\n') ADVANCE(1471); + if (lookahead == '\n') ADVANCE(1470); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == ':') ADVANCE(1736); - if (lookahead == '{') ADVANCE(1521); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == ':') ADVANCE(1735); + if (lookahead == '{') ADVANCE(1520); if (lookahead == '\t' || lookahead == ' ') SKIP(111); END_STATE(); case 112: - if (lookahead == '\n') ADVANCE(1471); + if (lookahead == '\n') ADVANCE(1470); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == ';') ADVANCE(1474); - if (lookahead == '=') ADVANCE(1752); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == ';') ADVANCE(1473); + if (lookahead == '=') ADVANCE(1751); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1473); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1470); + lookahead == ' ') ADVANCE(1472); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(1469); END_STATE(); case 113: - if (lookahead == '\n') ADVANCE(1471); + if (lookahead == '\n') ADVANCE(1470); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '=') ADVANCE(322); - if (lookahead == 'i') ADVANCE(382); - if (lookahead == '|') ADVANCE(1475); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '=') ADVANCE(321); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == '|') ADVANCE(1474); if (lookahead == '\t' || lookahead == ' ') SKIP(113); END_STATE(); case 114: - if (lookahead == '\n') ADVANCE(1471); + if (lookahead == '\n') ADVANCE(1470); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '=') ADVANCE(322); - if (lookahead == '|') ADVANCE(1475); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '=') ADVANCE(321); + if (lookahead == '|') ADVANCE(1474); if (lookahead == '\t' || lookahead == ' ') SKIP(114); END_STATE(); case 115: - if (lookahead == '\n') ADVANCE(1471); + if (lookahead == '\n') ADVANCE(1470); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '=') ADVANCE(1821); - if (lookahead == '_') ADVANCE(1838); - if (lookahead == 'i') ADVANCE(1870); - if (lookahead == '|') ADVANCE(1475); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '=') ADVANCE(1820); + if (lookahead == '_') ADVANCE(1837); + if (lookahead == 'i') ADVANCE(1869); + if (lookahead == '|') ADVANCE(1474); if (lookahead == '\t' || lookahead == ' ') SKIP(113); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1844); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'e') ADVANCE(1843); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 116: - if (lookahead == '\n') ADVANCE(1471); + if (lookahead == '\n') ADVANCE(1470); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '=') ADVANCE(1821); - if (lookahead == '_') ADVANCE(1838); - if (lookahead == '|') ADVANCE(1475); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '=') ADVANCE(1820); + if (lookahead == '_') ADVANCE(1837); + if (lookahead == '|') ADVANCE(1474); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1844); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'e') ADVANCE(1843); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 117: - if (lookahead == '\n') ADVANCE(1471); + if (lookahead == '\n') ADVANCE(1470); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '=') ADVANCE(1821); - if (lookahead == 'i') ADVANCE(1870); - if (lookahead == '|') ADVANCE(1475); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '=') ADVANCE(1820); + if (lookahead == 'i') ADVANCE(1869); + if (lookahead == '|') ADVANCE(1474); if (lookahead == '\t' || lookahead == ' ') SKIP(113); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1844); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'e') ADVANCE(1843); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 118: - if (lookahead == '\n') ADVANCE(1471); + if (lookahead == '\n') ADVANCE(1470); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '=') ADVANCE(1821); - if (lookahead == 'i') ADVANCE(1870); - if (lookahead == '|') ADVANCE(1475); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '=') ADVANCE(1820); + if (lookahead == 'i') ADVANCE(1869); + if (lookahead == '|') ADVANCE(1474); if (lookahead == '\t' || lookahead == ' ') SKIP(113); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 119: - if (lookahead == '\n') ADVANCE(1471); + if (lookahead == '\n') ADVANCE(1470); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '=') ADVANCE(1821); - if (lookahead == '|') ADVANCE(1475); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '=') ADVANCE(1820); + if (lookahead == '|') ADVANCE(1474); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1844); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'e') ADVANCE(1843); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 120: - if (lookahead == '\n') ADVANCE(1471); + if (lookahead == '\n') ADVANCE(1470); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '=') ADVANCE(1821); - if (lookahead == '|') ADVANCE(1475); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '=') ADVANCE(1820); + if (lookahead == '|') ADVANCE(1474); if (lookahead == '\t' || lookahead == ' ') SKIP(114); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 121: - if (lookahead == '\n') ADVANCE(1471); + if (lookahead == '\n') ADVANCE(1470); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2216); - if (lookahead == ':') ADVANCE(1736); - if (lookahead == '{') ADVANCE(1521); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == ':') ADVANCE(1735); + if (lookahead == '{') ADVANCE(1520); if (lookahead == '\t' || lookahead == ' ') SKIP(111); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 122: ADVANCE_MAP( - '\n', 1730, - '\r', 1730, - '!', 1742, - '#', 2213, - '(', 1584, - '*', 1536, - '+', 1601, - '-', 1518, - '.', 1745, - '/', 1591, - ':', 1736, - ';', 1474, - '<', 1573, - '=', 679, - '>', 1503, - '?', 1740, - '@', 1504, - '[', 1488, - ']', 1489, - 'a', 420, - 'b', 396, - 'e', 283, - 'h', 339, - 'i', 421, - 'l', 395, - 'm', 436, - 'n', 434, - 'o', 278, - 's', 485, - 'x', 431, - '|', 1475, - '}', 1522, - '\t', 1731, - ' ', 1731, - 0x0b, 1730, - '\f', 1730, - ',', 1730, + '\n', 1729, + '\r', 1729, + '!', 1741, + '#', 2212, + '(', 1583, + '*', 1535, + '+', 1600, + '-', 1517, + '.', 1744, + '/', 1590, + ':', 1735, + ';', 1473, + '<', 1572, + '=', 678, + '>', 1502, + '?', 1739, + '@', 1503, + '[', 1487, + ']', 1488, + 'a', 419, + 'b', 395, + 'e', 282, + 'h', 338, + 'i', 420, + 'l', 394, + 'm', 435, + 'n', 433, + 'o', 277, + 's', 484, + 'x', 430, + '|', 1474, + '}', 1521, + '\t', 1730, + ' ', 1730, + 0x0b, 1729, + '\f', 1729, + ',', 1729, ); END_STATE(); case 123: ADVANCE_MAP( - '!', 1741, - '"', 1708, - '#', 2213, + '!', 1740, + '"', 1707, + '#', 2212, '$', 179, - '\'', 1711, - '.', 1743, - ';', 1739, - '?', 1740, - '`', 1715, + '\'', 1710, + '.', 1742, + ';', 1738, + '?', 1739, + '`', 1714, '\t', 123, ' ', 123, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(317); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(316); END_STATE(); case 124: ADVANCE_MAP( - '!', 1741, - '"', 1708, - '#', 2213, + '!', 1740, + '"', 1707, + '#', 2212, '$', 179, - '\'', 1711, - '.', 1743, - ';', 1739, - '?', 1740, - '`', 1715, + '\'', 1710, + '.', 1742, + ';', 1738, + '?', 1739, + '`', 1714, '\t', 123, ' ', 123, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(317); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(316); if (lookahead != 0 && (lookahead < '&' || '.' < lookahead) && (lookahead < ':' || '@' < lookahead) && lookahead != '[' && lookahead != ']' && lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1753); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1752); END_STATE(); case 125: ADVANCE_MAP( - '!', 1741, - '"', 1708, - '#', 2213, - '\'', 1711, - '+', 707, - '-', 298, - '.', 1749, - '?', 1740, - 'I', 819, - 'N', 815, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 807, - 't', 781, - 'u', 794, - 'w', 757, + '!', 1740, + '"', 1707, + '#', 2212, + '\'', 1710, + '+', 706, + '-', 297, + '.', 1748, + '?', 1739, + 'I', 818, + 'N', 814, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 806, + 't', 780, + 'u', 793, + 'w', 756, ); if (lookahead == '\t' || lookahead == ' ') SKIP(125); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(833); END_STATE(); case 126: ADVANCE_MAP( - '!', 1741, - '"', 1708, - '#', 2213, - '\'', 1711, - '+', 707, - '-', 298, - '.', 1749, - 'I', 819, - 'N', 815, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 807, - 't', 781, - 'u', 794, - 'w', 757, + '!', 1740, + '"', 1707, + '#', 2212, + '\'', 1710, + '+', 706, + '-', 297, + '.', 1748, + 'I', 818, + 'N', 814, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 806, + 't', 780, + 'u', 793, + 'w', 756, ); if (lookahead == '\t' || lookahead == ' ') SKIP(126); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(833); END_STATE(); case 127: ADVANCE_MAP( - '!', 1741, - '#', 2213, - ',', 1730, - '.', 1746, - ';', 1739, - '?', 1740, - ']', 1489, - '\t', 1733, - ' ', 1733, + '!', 1740, + '#', 2212, + ',', 1729, + '.', 1745, + ';', 1738, + '?', 1739, + ']', 1488, + '\t', 1732, + ' ', 1732, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1734); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1733); END_STATE(); case 128: ADVANCE_MAP( - '!', 1741, - '#', 2213, - '.', 1745, - ':', 1736, - '>', 1502, - '?', 1740, - ']', 1489, - '}', 1522, - '\t', 1735, - ' ', 1735, + '!', 1740, + '#', 2212, + '.', 1744, + ':', 1735, + '>', 1501, + '?', 1739, + ']', 1488, + '}', 1521, + '\t', 1734, + ' ', 1734, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); + lookahead == ',') ADVANCE(1729); END_STATE(); case 129: ADVANCE_MAP( - '!', 1741, - '#', 2213, - '.', 1746, - ':', 1486, - '>', 1502, - '?', 1740, - ']', 1489, - '}', 1522, - '\t', 1735, - ' ', 1735, + '!', 1740, + '#', 2212, + '.', 1745, + ':', 1485, + '>', 1501, + '?', 1739, + ']', 1488, + '}', 1521, + '\t', 1734, + ' ', 1734, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); + lookahead == ',') ADVANCE(1729); END_STATE(); case 130: ADVANCE_MAP( - '!', 1818, - '#', 2213, - '$', 1493, - '(', 1584, - '*', 1535, - '+', 1599, - '-', 1516, - '.', 1627, - '/', 1590, - '<', 1573, - '=', 1819, - '>', 1503, - '_', 1838, - 'a', 1890, - 'b', 1877, - 'e', 1891, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1904, - 's', 1924, - 'x', 1896, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(144); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); + '!', 1817, + '#', 2212, + '$', 1492, + '(', 1583, + '*', 1534, + '+', 1598, + '-', 1515, + '.', 1626, + '/', 1589, + '<', 1572, + '=', 1818, + '>', 1502, + '_', 1837, + 'a', 1889, + 'b', 1876, + 'e', 1890, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1903, + 's', 1923, + 'x', 1895, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1958); END_STATE(); case 131: ADVANCE_MAP( - '!', 1818, - '#', 2213, - '$', 1493, - '(', 1584, - '*', 1535, - '+', 1599, - '-', 1516, - '.', 1840, - '/', 1590, - '<', 1573, - '=', 1819, - '>', 1503, - '_', 1838, - 'a', 1890, - 'b', 1877, - 'e', 1891, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1904, - 's', 1924, - 'x', 1896, + '!', 1817, + '#', 2212, + '$', 1492, + '(', 1583, + '*', 1534, + '+', 1598, + '-', 1515, + '.', 1839, + '/', 1589, + '<', 1572, + '=', 1818, + '>', 1502, + '_', 1837, + 'a', 1889, + 'b', 1876, + 'e', 1890, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1903, + 's', 1923, + 'x', 1895, ); if (lookahead == '\t' || lookahead == ' ') SKIP(144); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1958); END_STATE(); case 132: ADVANCE_MAP( - '!', 1818, - '#', 2213, - '(', 1584, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1618, - '/', 1590, - '<', 1573, - '=', 1819, - '>', 1503, - 'B', 1676, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'a', 1890, - 'b', 1679, - 'd', 1849, - 'e', 1830, - 'g', 1834, - 'h', 1847, - 'i', 1888, - 'k', 1834, - 'l', 1876, - 'm', 1836, - 'n', 1897, - 'o', 1904, - 'p', 1834, - 's', 1863, - 't', 1834, - 'u', 1916, - 'w', 1883, - 'x', 1896, - 0xb5, 1916, + '!', 1817, + '#', 2212, + '(', 1583, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1617, + '/', 1589, + '<', 1572, + '=', 1818, + '>', 1502, + 'B', 1675, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'a', 1889, + 'b', 1678, + 'd', 1848, + 'e', 1829, + 'g', 1833, + 'h', 1846, + 'i', 1887, + 'k', 1833, + 'l', 1875, + 'm', 1835, + 'n', 1896, + 'o', 1903, + 'p', 1833, + 's', 1862, + 't', 1833, + 'u', 1915, + 'w', 1882, + 'x', 1895, + 0xb5, 1915, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 133: ADVANCE_MAP( - '!', 1818, - '#', 2213, - '(', 1584, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1618, - '/', 1590, - '<', 1573, - '=', 1819, - '>', 1503, - 'E', 1844, - 'a', 1890, - 'b', 1877, - 'e', 1841, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1904, - 's', 1924, - 'x', 1896, + '!', 1817, + '#', 2212, + '(', 1583, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1617, + '/', 1589, + '<', 1572, + '=', 1818, + '>', 1502, + 'E', 1843, + 'a', 1889, + 'b', 1876, + 'e', 1840, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1903, + 's', 1923, + 'x', 1895, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 134: ADVANCE_MAP( - '!', 1818, - '#', 2213, - '(', 1584, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1815, - '/', 1590, - '<', 1573, - '=', 1819, - '>', 1503, - 'B', 1676, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - '_', 1838, - 'a', 1890, - 'b', 1679, - 'd', 1849, - 'e', 1830, - 'g', 1834, - 'h', 1847, - 'i', 1888, - 'k', 1834, - 'l', 1876, - 'm', 1836, - 'n', 1897, - 'o', 1904, - 'p', 1834, - 's', 1863, - 't', 1834, - 'u', 1916, - 'w', 1883, - 'x', 1896, - 0xb5, 1916, + '!', 1817, + '#', 2212, + '(', 1583, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1814, + '/', 1589, + '<', 1572, + '=', 1818, + '>', 1502, + 'B', 1675, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + '_', 1837, + 'a', 1889, + 'b', 1678, + 'd', 1848, + 'e', 1829, + 'g', 1833, + 'h', 1846, + 'i', 1887, + 'k', 1833, + 'l', 1875, + 'm', 1835, + 'n', 1896, + 'o', 1903, + 'p', 1833, + 's', 1862, + 't', 1833, + 'u', 1915, + 'w', 1882, + 'x', 1895, + 0xb5, 1915, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 135: ADVANCE_MAP( - '!', 1818, - '#', 2213, - '(', 1584, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1815, - '/', 1590, - '<', 1573, - '=', 1819, - '>', 1503, - 'B', 1676, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'a', 1890, - 'b', 1679, - 'd', 1849, - 'e', 1830, - 'g', 1834, - 'h', 1847, - 'i', 1888, - 'k', 1834, - 'l', 1876, - 'm', 1836, - 'n', 1897, - 'o', 1904, - 'p', 1834, - 's', 1863, - 't', 1834, - 'u', 1916, - 'w', 1883, - 'x', 1896, - 0xb5, 1916, + '!', 1817, + '#', 2212, + '(', 1583, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1814, + '/', 1589, + '<', 1572, + '=', 1818, + '>', 1502, + 'B', 1675, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'a', 1889, + 'b', 1678, + 'd', 1848, + 'e', 1829, + 'g', 1833, + 'h', 1846, + 'i', 1887, + 'k', 1833, + 'l', 1875, + 'm', 1835, + 'n', 1896, + 'o', 1903, + 'p', 1833, + 's', 1862, + 't', 1833, + 'u', 1915, + 'w', 1882, + 'x', 1895, + 0xb5, 1915, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 136: ADVANCE_MAP( - '!', 1818, - '#', 2213, - '(', 1584, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1815, - '/', 1590, - '<', 1573, - '=', 1819, - '>', 1503, - 'B', 1676, - 'E', 1835, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'a', 1890, - 'b', 1679, - 'd', 1849, - 'e', 1833, - 'g', 1834, - 'h', 1847, - 'i', 1888, - 'k', 1834, - 'l', 1876, - 'm', 1836, - 'n', 1897, - 'o', 1904, - 'p', 1834, - 's', 1863, - 't', 1834, - 'u', 1916, - 'w', 1883, - 'x', 1896, - 0xb5, 1916, + '!', 1817, + '#', 2212, + '(', 1583, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1814, + '/', 1589, + '<', 1572, + '=', 1818, + '>', 1502, + 'B', 1675, + 'E', 1834, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'a', 1889, + 'b', 1678, + 'd', 1848, + 'e', 1832, + 'g', 1833, + 'h', 1846, + 'i', 1887, + 'k', 1833, + 'l', 1875, + 'm', 1835, + 'n', 1896, + 'o', 1903, + 'p', 1833, + 's', 1862, + 't', 1833, + 'u', 1915, + 'w', 1882, + 'x', 1895, + 0xb5, 1915, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 137: ADVANCE_MAP( - '!', 1818, - '#', 2213, - '(', 1584, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1815, - '/', 1590, - '<', 1573, - '=', 1819, - '>', 1503, - 'E', 1844, - '_', 1838, - 'a', 1890, - 'b', 1877, - 'e', 1841, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1904, - 's', 1924, - 'x', 1896, + '!', 1817, + '#', 2212, + '(', 1583, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1814, + '/', 1589, + '<', 1572, + '=', 1818, + '>', 1502, + 'E', 1843, + '_', 1837, + 'a', 1889, + 'b', 1876, + 'e', 1840, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1903, + 's', 1923, + 'x', 1895, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 138: ADVANCE_MAP( - '!', 1818, - '#', 2213, - '(', 1584, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1815, - '/', 1590, - '<', 1573, - '=', 1819, - '>', 1503, - 'E', 1844, - 'a', 1890, - 'b', 1877, - 'e', 1841, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1904, - 's', 1924, - 'x', 1896, + '!', 1817, + '#', 2212, + '(', 1583, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1814, + '/', 1589, + '<', 1572, + '=', 1818, + '>', 1502, + 'E', 1843, + 'a', 1889, + 'b', 1876, + 'e', 1840, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1903, + 's', 1923, + 'x', 1895, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 139: ADVANCE_MAP( - '!', 1818, - '#', 2213, - '(', 1584, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1815, - '/', 1590, - '<', 1573, - '=', 1819, - '>', 1503, - 'a', 1890, - 'b', 1877, - 'e', 1891, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1904, - 's', 1924, - 'x', 1896, + '!', 1817, + '#', 2212, + '(', 1583, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1814, + '/', 1589, + '<', 1572, + '=', 1818, + '>', 1502, + 'a', 1889, + 'b', 1876, + 'e', 1890, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1903, + 's', 1923, + 'x', 1895, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 140: ADVANCE_MAP( - '!', 1818, - '#', 2213, - '(', 1584, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1617, - '/', 1590, - '<', 1573, - '=', 1819, - '>', 1503, - 'E', 1844, - 'a', 1890, - 'b', 1877, - 'e', 1841, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1904, - 's', 1924, - 'x', 1896, + '!', 1817, + '#', 2212, + '(', 1583, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1616, + '/', 1589, + '<', 1572, + '=', 1818, + '>', 1502, + 'E', 1843, + 'a', 1889, + 'b', 1876, + 'e', 1840, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1903, + 's', 1923, + 'x', 1895, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 141: ADVANCE_MAP( - '!', 1818, - '#', 2213, - '(', 1584, - '*', 1535, - '+', 1598, - '-', 1509, - '/', 1590, - '<', 1573, - '=', 1819, - '>', 1503, - 'E', 1844, - '_', 1838, - 'a', 1890, - 'b', 1877, - 'e', 1841, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1904, - 's', 1924, - 'x', 1896, + '!', 1817, + '#', 2212, + '(', 1583, + '*', 1534, + '+', 1597, + '-', 1508, + '/', 1589, + '<', 1572, + '=', 1818, + '>', 1502, + 'E', 1843, + '_', 1837, + 'a', 1889, + 'b', 1876, + 'e', 1840, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1903, + 's', 1923, + 'x', 1895, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 142: ADVANCE_MAP( - '!', 1818, - '#', 2213, - '(', 1584, - '*', 1535, - '+', 1598, - '-', 1509, - '/', 1590, - '<', 1573, - '=', 1819, - '>', 1503, - 'E', 1844, - 'a', 1890, - 'b', 1877, - 'e', 1841, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1904, - 's', 1924, - 'x', 1896, + '!', 1817, + '#', 2212, + '(', 1583, + '*', 1534, + '+', 1597, + '-', 1508, + '/', 1589, + '<', 1572, + '=', 1818, + '>', 1502, + 'E', 1843, + 'a', 1889, + 'b', 1876, + 'e', 1840, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1903, + 's', 1923, + 'x', 1895, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 143: ADVANCE_MAP( - '!', 1818, - '#', 2213, - '(', 1584, - '*', 1535, - '+', 1598, - '-', 1509, - '/', 1590, - '<', 1573, - '=', 1819, - '>', 1503, - 'a', 1890, - 'b', 1877, - 'e', 1891, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1904, - 's', 1924, - 'x', 1896, + '!', 1817, + '#', 2212, + '(', 1583, + '*', 1534, + '+', 1597, + '-', 1508, + '/', 1589, + '<', 1572, + '=', 1818, + '>', 1502, + 'a', 1889, + 'b', 1876, + 'e', 1890, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1903, + 's', 1923, + 'x', 1895, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 144: ADVANCE_MAP( - '!', 319, - '#', 2213, - '$', 1493, - '*', 1535, - '+', 1600, - '-', 1517, - '.', 335, - '/', 1590, - '<', 1573, - '=', 320, - '>', 1503, - 'a', 420, - 'b', 396, - 'e', 424, - 'h', 339, - 'i', 421, - 'l', 395, - 'm', 436, - 'n', 434, - 'o', 451, - 's', 485, - 'x', 431, + '!', 318, + '#', 2212, + '$', 1492, + '*', 1534, + '+', 1599, + '-', 1516, + '.', 334, + '/', 1589, + '<', 1572, + '=', 319, + '>', 1502, + 'a', 419, + 'b', 395, + 'e', 423, + 'h', 338, + 'i', 420, + 'l', 394, + 'm', 435, + 'n', 433, + 'o', 450, + 's', 484, + 'x', 430, ); if (lookahead == '\t' || lookahead == ' ') SKIP(144); END_STATE(); case 145: ADVANCE_MAP( - '!', 319, - '#', 2213, - '*', 1535, - '+', 1598, - '-', 1509, - '/', 1590, - '<', 1573, - '=', 320, - '>', 1503, - 'a', 420, - 'b', 396, - 'e', 424, - 'h', 339, - 'i', 421, - 'l', 395, - 'm', 436, - 'n', 434, - 'o', 451, - 's', 485, - 'x', 431, + '!', 318, + '#', 2212, + '*', 1534, + '+', 1597, + '-', 1508, + '/', 1589, + '<', 1572, + '=', 319, + '>', 1502, + 'a', 419, + 'b', 395, + 'e', 423, + 'h', 338, + 'i', 420, + 'l', 394, + 'm', 435, + 'n', 433, + 'o', 450, + 's', 484, + 'x', 430, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); END_STATE(); case 146: ADVANCE_MAP( - '"', 1708, - '#', 2213, - '$', 1494, - '\'', 1711, - '(', 1584, - '+', 2025, - '-', 307, - '.', 2023, - '0', 1647, - ';', 1739, - 'N', 2072, - '[', 1488, - '_', 2037, - '`', 1715, - 'f', 2040, - 'n', 2068, - 't', 2055, - '{', 1521, + '"', 1707, + '#', 2212, + '$', 1493, + '\'', 1710, + '(', 1583, + '+', 2024, + '-', 306, + '.', 2022, + '0', 1646, + ';', 1738, + 'N', 2071, + '[', 1487, + '_', 2036, + '`', 1714, + 'f', 2039, + 'n', 2067, + 't', 2054, + '{', 1520, '\t', 149, ' ', 149, - 'I', 2076, - 'i', 2076, + 'I', 2075, + 'i', 2075, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(317); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1663); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(316); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2095); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2094); END_STATE(); case 147: ADVANCE_MAP( - '"', 1708, - '#', 2213, - '$', 1494, - '\'', 1711, - '(', 1490, - '+', 1603, - '-', 1514, - '.', 706, - '0', 1651, - ':', 1486, - '<', 1159, - '>', 1502, - '@', 1504, - 'I', 819, - 'N', 815, - ']', 1489, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 807, - 't', 781, - 'u', 794, - 'w', 757, - '}', 1522, - '\t', 1735, - ' ', 1735, + '"', 1707, + '#', 2212, + '$', 1493, + '\'', 1710, + '(', 1489, + '+', 1602, + '-', 1513, + '.', 705, + '0', 1650, + ':', 1485, + '<', 1158, + '>', 1501, + '@', 1503, + 'I', 818, + 'N', 814, + ']', 1488, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 806, + 't', 780, + 'u', 793, + 'w', 756, + '}', 1521, + '\t', 1734, + ' ', 1734, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); + lookahead == ',') ADVANCE(1729); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1666); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(834); + (lookahead < '{' || '}' < lookahead)) ADVANCE(833); END_STATE(); case 148: ADVANCE_MAP( - '"', 1708, - '#', 2213, - '$', 1494, - '\'', 1711, - '(', 1490, - '+', 2025, - '-', 307, - '.', 2023, - '0', 1647, - ':', 1736, - 'N', 2072, - '[', 1488, - '_', 2037, - '`', 1715, - 'f', 2040, - 'n', 2068, - 't', 2055, - '{', 1521, + '"', 1707, + '#', 2212, + '$', 1493, + '\'', 1710, + '(', 1489, + '+', 2024, + '-', 306, + '.', 2022, + '0', 1646, + ':', 1735, + 'N', 2071, + '[', 1487, + '_', 2036, + '`', 1714, + 'f', 2039, + 'n', 2067, + 't', 2054, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(148); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2076); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1663); + lookahead == 'i') ADVANCE(2075); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2095); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2094); END_STATE(); case 149: ADVANCE_MAP( - '"', 1708, - '#', 2213, - '$', 1494, - '\'', 1711, - '(', 1490, - '+', 2025, - '-', 307, - '.', 2023, - '0', 1647, - ';', 1739, - 'N', 2072, - '[', 1488, - '_', 2037, - '`', 1715, - 'f', 2040, - 'n', 2068, - 't', 2055, - '{', 1521, + '"', 1707, + '#', 2212, + '$', 1493, + '\'', 1710, + '(', 1489, + '+', 2024, + '-', 306, + '.', 2022, + '0', 1646, + ';', 1738, + 'N', 2071, + '[', 1487, + '_', 2036, + '`', 1714, + 'f', 2039, + 'n', 2067, + 't', 2054, + '{', 1520, '\t', 149, ' ', 149, - 'I', 2076, - 'i', 2076, + 'I', 2075, + 'i', 2075, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(317); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1663); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(316); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2095); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2094); END_STATE(); case 150: ADVANCE_MAP( - '"', 1708, - '#', 2213, - '$', 1494, - '\'', 1711, - '(', 1490, - '+', 2025, - '-', 307, - '.', 2023, - '0', 1647, - 'N', 2072, - '[', 1488, - '_', 2037, - '`', 1715, - 'f', 2040, - 'n', 2068, - 't', 2055, - '{', 1521, + '"', 1707, + '#', 2212, + '$', 1493, + '\'', 1710, + '(', 1489, + '+', 2024, + '-', 306, + '.', 2022, + '0', 1646, + 'N', 2071, + '[', 1487, + '_', 2036, + '`', 1714, + 'f', 2039, + 'n', 2067, + 't', 2054, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(150); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2076); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1663); + lookahead == 'i') ADVANCE(2075); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2095); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2094); END_STATE(); case 151: ADVANCE_MAP( - '"', 1708, - '#', 2213, - '$', 1494, - '\'', 1711, - '(', 1490, - '+', 2025, - '-', 307, - '.', 2023, - ':', 1736, - 'N', 2072, - '_', 2037, - '`', 1715, - 'f', 2040, - 'n', 2068, - 't', 2055, + '"', 1707, + '#', 2212, + '$', 1493, + '\'', 1710, + '(', 1489, + '+', 2024, + '-', 306, + '.', 2022, + ':', 1735, + 'N', 2071, + '_', 2036, + '`', 1714, + 'f', 2039, + 'n', 2067, + 't', 2054, ); if (lookahead == '\t' || lookahead == ' ') SKIP(151); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2076); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1663); + lookahead == 'i') ADVANCE(2075); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1662); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2095); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2094); END_STATE(); case 152: ADVANCE_MAP( - '"', 1708, - '#', 2213, - '$', 1494, - '\'', 1711, - '(', 1490, - '+', 2025, - '-', 307, - '.', 2023, - 'N', 2072, - '_', 2037, - '`', 1715, - 'f', 2040, - 'n', 2068, - 't', 2055, + '"', 1707, + '#', 2212, + '$', 1493, + '\'', 1710, + '(', 1489, + '+', 2024, + '-', 306, + '.', 2022, + 'N', 2071, + '_', 2036, + '`', 1714, + 'f', 2039, + 'n', 2067, + 't', 2054, ); if (lookahead == '\t' || lookahead == ' ') SKIP(152); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2076); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1663); + lookahead == 'i') ADVANCE(2075); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1662); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2095); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2094); END_STATE(); case 153: ADVANCE_MAP( - '"', 1708, - '#', 2213, - '$', 1494, - '\'', 1711, - '(', 1490, - '+', 2107, - '-', 2106, - '.', 2108, - '0', 1648, - 'N', 2125, - '[', 1488, - ']', 1489, - '_', 2112, - '`', 1715, - 'f', 2115, - 'n', 2124, - 't', 2121, - '{', 1521, - '\t', 1735, - ' ', 1735, - 'I', 2131, - 'i', 2131, + '"', 1707, + '#', 2212, + '$', 1493, + '\'', 1710, + '(', 1489, + '+', 2106, + '-', 2105, + '.', 2107, + '0', 1647, + 'N', 2124, + '[', 1487, + ']', 1488, + '_', 2111, + '`', 1714, + 'f', 2114, + 'n', 2123, + 't', 2120, + '{', 1520, + '\t', 1734, + ' ', 1734, + 'I', 2130, + 'i', 2130, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1664); + lookahead == ',') ADVANCE(1729); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1663); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2153); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2152); END_STATE(); case 154: - if (lookahead == '"') ADVANCE(1708); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '$') ADVANCE(1494); - if (lookahead == '\'') ADVANCE(1711); - if (lookahead == '(') ADVANCE(1490); - if (lookahead == '`') ADVANCE(1715); + if (lookahead == '"') ADVANCE(1707); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '$') ADVANCE(1493); + if (lookahead == '\'') ADVANCE(1710); + if (lookahead == '(') ADVANCE(1489); + if (lookahead == '`') ADVANCE(1714); if (lookahead == '\t' || lookahead == ' ') SKIP(154); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2012); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2011); END_STATE(); case 155: ADVANCE_MAP( - '"', 1708, - '#', 2213, - '$', 1493, - '\'', 1711, - '(', 1490, - '+', 2025, - ',', 1730, - '-', 307, - '.', 2023, - '0', 1647, - 'N', 2072, - '[', 1488, - '_', 1524, - '`', 1715, - 'f', 2040, - 'n', 2068, - 't', 2055, - '{', 1521, - '}', 1522, - '\t', 1732, - ' ', 1732, - 'I', 2076, - 'i', 2076, + '"', 1707, + '#', 2212, + '$', 1492, + '\'', 1710, + '(', 1489, + '+', 2024, + ',', 1729, + '-', 306, + '.', 2022, + '0', 1646, + 'N', 2071, + '[', 1487, + '_', 1523, + '`', 1714, + 'f', 2039, + 'n', 2067, + 't', 2054, + '{', 1520, + '}', 1521, + '\t', 1731, + ' ', 1731, + 'I', 2075, + 'i', 2075, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1730); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1663); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1729); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2095); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2094); END_STATE(); case 156: ADVANCE_MAP( - '"', 1708, - '#', 2213, - '$', 1493, - '\'', 1711, - '(', 1490, - '+', 2025, - '-', 307, - '.', 2023, - '0', 1647, - 'N', 2072, - '[', 1488, - '_', 2037, - '`', 1715, - 'f', 2040, - 'n', 2068, - 't', 2055, - '{', 1521, + '"', 1707, + '#', 2212, + '$', 1492, + '\'', 1710, + '(', 1489, + '+', 2024, + '-', 306, + '.', 2022, + '0', 1646, + 'N', 2071, + '[', 1487, + '_', 2036, + '`', 1714, + 'f', 2039, + 'n', 2067, + 't', 2054, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(156); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2076); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1663); + lookahead == 'i') ADVANCE(2075); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2095); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2094); END_STATE(); case 157: ADVANCE_MAP( - '"', 1708, - '#', 2213, - '$', 1493, - '\'', 1711, - '(', 1490, - '+', 2107, - '-', 2106, - '.', 2105, - '0', 1648, - 'N', 2125, - '[', 1488, - ']', 1489, - '_', 2112, - '`', 1715, - 'f', 2115, - 'n', 2124, - 't', 2121, - '{', 1521, - '\t', 1735, - ' ', 1735, - 'I', 2131, - 'i', 2131, + '"', 1707, + '#', 2212, + '$', 1492, + '\'', 1710, + '(', 1489, + '+', 2106, + '-', 2105, + '.', 2104, + '0', 1647, + 'N', 2124, + '[', 1487, + ']', 1488, + '_', 2111, + '`', 1714, + 'f', 2114, + 'n', 2123, + 't', 2120, + '{', 1520, + '\t', 1734, + ' ', 1734, + 'I', 2130, + 'i', 2130, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1664); + lookahead == ',') ADVANCE(1729); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1663); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2153); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2152); END_STATE(); case 158: ADVANCE_MAP( - '"', 1708, - '#', 2213, - '\'', 1711, - '(', 1584, - '+', 707, - '-', 307, - '.', 723, - ':', 1486, - '>', 1502, - 'I', 819, - 'N', 815, - ']', 1489, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 807, - 't', 781, - 'u', 794, - 'w', 757, - '}', 1522, - '\t', 1735, - ' ', 1735, + '"', 1707, + '#', 2212, + '\'', 1710, + '(', 1583, + '+', 706, + '-', 306, + '.', 722, + ':', 1485, + '>', 1501, + 'I', 818, + 'N', 814, + ']', 1488, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 806, + 't', 780, + 'u', 793, + 'w', 756, + '}', 1521, + '\t', 1734, + ' ', 1734, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); + lookahead == ',') ADVANCE(1729); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(833); END_STATE(); case 159: ADVANCE_MAP( - '"', 1708, - '#', 2213, - '\'', 1711, - '+', 707, - '-', 307, - '.', 723, - ':', 1736, - 'I', 819, - 'N', 815, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 807, - 't', 781, - 'u', 794, - 'w', 757, + '"', 1707, + '#', 2212, + '\'', 1710, + '+', 706, + '-', 306, + '.', 722, + ':', 1735, + 'I', 818, + 'N', 814, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 806, + 't', 780, + 'u', 793, + 'w', 756, ); if (lookahead == '\t' || lookahead == ' ') SKIP(159); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(833); END_STATE(); case 160: ADVANCE_MAP( - '"', 1708, - '#', 2213, - '\'', 1711, - '+', 707, - '-', 298, - '.', 1749, - '?', 1740, - 'I', 819, - 'N', 815, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 807, - 't', 781, - 'u', 794, - 'w', 757, + '"', 1707, + '#', 2212, + '\'', 1710, + '+', 706, + '-', 297, + '.', 1748, + '?', 1739, + 'I', 818, + 'N', 814, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 806, + 't', 780, + 'u', 793, + 'w', 756, ); if (lookahead == '\t' || lookahead == ' ') SKIP(160); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(833); END_STATE(); case 161: ADVANCE_MAP( - '"', 1708, - '#', 2213, - '\'', 1711, - '+', 707, - '-', 298, - '.', 1749, - 'I', 819, - 'N', 815, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 807, - 't', 781, - 'u', 794, - 'w', 757, + '"', 1707, + '#', 2212, + '\'', 1710, + '+', 706, + '-', 297, + '.', 1748, + 'I', 818, + 'N', 814, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 806, + 't', 780, + 'u', 793, + 'w', 756, ); if (lookahead == '\t' || lookahead == ' ') SKIP(161); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(833); END_STATE(); case 162: ADVANCE_MAP( - '"', 1708, - '#', 2213, - '\'', 1711, - '+', 707, - '-', 298, - '.', 723, - ':', 1736, - 'I', 819, - 'N', 815, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 807, - 't', 781, - 'u', 794, - 'w', 757, + '"', 1707, + '#', 2212, + '\'', 1710, + '+', 706, + '-', 297, + '.', 722, + ':', 1735, + 'I', 818, + 'N', 814, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 806, + 't', 780, + 'u', 793, + 'w', 756, ); if (lookahead == '\t' || lookahead == ' ') SKIP(162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(833); END_STATE(); case 163: ADVANCE_MAP( - '"', 1708, - '#', 2213, - '\'', 1711, - '+', 707, - '-', 298, - '.', 723, - '=', 1752, - 'I', 1466, - 'N', 1461, - '_', 1397, - '`', 1715, - 'a', 1422, - 'c', 1398, - 'd', 1406, - 'e', 1429, - 'f', 1399, - 'i', 1396, - 'l', 1413, - 'm', 1402, - 'n', 1456, - 't', 1439, - 'u', 1445, - 'w', 1419, + '"', 1707, + '#', 2212, + '\'', 1710, + '+', 706, + '-', 297, + '.', 722, + '=', 1751, + 'I', 1465, + 'N', 1460, + '_', 1396, + '`', 1714, + 'a', 1421, + 'c', 1397, + 'd', 1405, + 'e', 1428, + 'f', 1398, + 'i', 1395, + 'l', 1412, + 'm', 1401, + 'n', 1455, + 't', 1438, + 'u', 1444, + 'w', 1418, ); if (lookahead == '\t' || lookahead == ' ') SKIP(164); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1397); - if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1470); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1396); + if (set_contains(sym_attribute_identifier_character_set_1, 668, lookahead)) ADVANCE(1469); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(833); END_STATE(); case 164: ADVANCE_MAP( - '"', 1708, - '#', 2213, - '\'', 1711, - '+', 707, - '-', 298, - '.', 723, - 'I', 819, - 'N', 815, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 807, - 't', 781, - 'u', 794, - 'w', 757, + '"', 1707, + '#', 2212, + '\'', 1710, + '+', 706, + '-', 297, + '.', 722, + 'I', 818, + 'N', 814, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 806, + 't', 780, + 'u', 793, + 'w', 756, ); if (lookahead == '\t' || lookahead == ' ') SKIP(164); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(833); END_STATE(); case 165: ADVANCE_MAP( - '"', 1708, - '#', 2213, - '\'', 1711, - '+', 707, - '-', 1807, - '.', 1619, - 'E', 714, - 'G', 719, - 'I', 819, - 'K', 719, - 'M', 719, - 'N', 815, - 'P', 719, - 'T', 719, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 728, - 'e', 713, - 'f', 727, - 'g', 718, - 'h', 783, - 'i', 720, - 'k', 718, - 'l', 745, - 'm', 715, - 'n', 791, - 'p', 718, - 's', 746, - 't', 717, - 'u', 793, - 'w', 756, - 0xb5, 792, + '"', 1707, + '#', 2212, + '\'', 1710, + '+', 706, + '-', 1806, + '.', 1618, + 'E', 713, + 'G', 718, + 'I', 818, + 'K', 718, + 'M', 718, + 'N', 814, + 'P', 718, + 'T', 718, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 727, + 'e', 712, + 'f', 726, + 'g', 717, + 'h', 782, + 'i', 719, + 'k', 717, + 'l', 744, + 'm', 714, + 'n', 790, + 'p', 717, + 's', 745, + 't', 716, + 'u', 792, + 'w', 755, + 0xb5, 791, ); if (lookahead == '\t' || lookahead == ' ') SKIP(164); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); + lookahead == 'b') ADVANCE(1675); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1959); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + lookahead == '^') ADVANCE(1958); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(834); + (lookahead < '{' || '}' < lookahead)) ADVANCE(833); END_STATE(); case 166: ADVANCE_MAP( - '"', 1708, - '#', 2213, - '\'', 1711, - '+', 707, - '-', 1807, - '.', 723, - 'I', 819, - 'N', 815, - '[', 1688, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 807, - 't', 781, - 'u', 794, - 'w', 757, + '"', 1707, + '#', 2212, + '\'', 1710, + '+', 706, + '-', 1806, + '.', 722, + 'I', 818, + 'N', 814, + '[', 1687, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 806, + 't', 780, + 'u', 793, + 'w', 756, ); if (lookahead == '\t' || lookahead == ' ') SKIP(164); @@ -16043,478 +16022,478 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1959); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + lookahead == '^') ADVANCE(1958); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(834); + (lookahead < '{' || '}' < lookahead)) ADVANCE(833); END_STATE(); case 167: ADVANCE_MAP( - '"', 1708, - '#', 2213, - '\'', 1711, - '+', 707, - '-', 1807, - '.', 705, - 'E', 714, - 'G', 719, - 'I', 819, - 'K', 719, - 'M', 719, - 'N', 815, - 'P', 719, - 'T', 719, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 728, - 'e', 713, - 'f', 727, - 'g', 718, - 'h', 783, - 'i', 720, - 'k', 718, - 'l', 745, - 'm', 715, - 'n', 791, - 'p', 718, - 's', 746, - 't', 717, - 'u', 793, - 'w', 756, - 0xb5, 792, + '"', 1707, + '#', 2212, + '\'', 1710, + '+', 706, + '-', 1806, + '.', 704, + 'E', 713, + 'G', 718, + 'I', 818, + 'K', 718, + 'M', 718, + 'N', 814, + 'P', 718, + 'T', 718, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 727, + 'e', 712, + 'f', 726, + 'g', 717, + 'h', 782, + 'i', 719, + 'k', 717, + 'l', 744, + 'm', 714, + 'n', 790, + 'p', 717, + 's', 745, + 't', 716, + 'u', 792, + 'w', 755, + 0xb5, 791, ); if (lookahead == '\t' || lookahead == ' ') SKIP(164); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); + lookahead == 'b') ADVANCE(1675); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1959); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + lookahead == '^') ADVANCE(1958); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(834); + (lookahead < '{' || '}' < lookahead)) ADVANCE(833); END_STATE(); case 168: ADVANCE_MAP( - '"', 1708, - '#', 2213, - '\'', 1711, - '+', 707, - '-', 1807, - '.', 705, - 'E', 714, - 'G', 719, - 'I', 819, - 'K', 719, - 'M', 719, - 'N', 815, - 'P', 719, - 'T', 719, - '_', 725, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 728, - 'e', 713, - 'f', 727, - 'g', 718, - 'h', 783, - 'i', 720, - 'k', 718, - 'l', 745, - 'm', 715, - 'n', 791, - 'p', 718, - 's', 746, - 't', 717, - 'u', 793, - 'w', 756, - 0xb5, 792, + '"', 1707, + '#', 2212, + '\'', 1710, + '+', 706, + '-', 1806, + '.', 704, + 'E', 713, + 'G', 718, + 'I', 818, + 'K', 718, + 'M', 718, + 'N', 814, + 'P', 718, + 'T', 718, + '_', 724, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 727, + 'e', 712, + 'f', 726, + 'g', 717, + 'h', 782, + 'i', 719, + 'k', 717, + 'l', 744, + 'm', 714, + 'n', 790, + 'p', 717, + 's', 745, + 't', 716, + 'u', 792, + 'w', 755, + 0xb5, 791, ); if (lookahead == '\t' || lookahead == ' ') SKIP(164); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); + lookahead == 'b') ADVANCE(1675); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1959); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + lookahead == '^') ADVANCE(1958); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(834); + (lookahead < '{' || '}' < lookahead)) ADVANCE(833); END_STATE(); case 169: ADVANCE_MAP( - '"', 1708, - '#', 2213, - '\'', 1711, - '+', 707, - '-', 1807, - '.', 705, - 'E', 719, - 'G', 719, - 'I', 819, - 'K', 719, - 'M', 719, - 'N', 815, - 'P', 719, - 'T', 719, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 728, - 'e', 716, - 'f', 727, - 'g', 718, - 'h', 783, - 'i', 720, - 'k', 718, - 'l', 745, - 'm', 715, - 'n', 791, - 'p', 718, - 's', 746, - 't', 717, - 'u', 793, - 'w', 756, - 0xb5, 792, + '"', 1707, + '#', 2212, + '\'', 1710, + '+', 706, + '-', 1806, + '.', 704, + 'E', 718, + 'G', 718, + 'I', 818, + 'K', 718, + 'M', 718, + 'N', 814, + 'P', 718, + 'T', 718, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 727, + 'e', 715, + 'f', 726, + 'g', 717, + 'h', 782, + 'i', 719, + 'k', 717, + 'l', 744, + 'm', 714, + 'n', 790, + 'p', 717, + 's', 745, + 't', 716, + 'u', 792, + 'w', 755, + 0xb5, 791, ); if (lookahead == '\t' || lookahead == ' ') SKIP(164); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); + lookahead == 'b') ADVANCE(1675); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1959); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + lookahead == '^') ADVANCE(1958); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(834); + (lookahead < '{' || '}' < lookahead)) ADVANCE(833); END_STATE(); case 170: ADVANCE_MAP( - '"', 1708, - '#', 2213, - '\'', 1711, - '+', 2164, - '-', 2163, - '.', 2162, - '>', 1502, - 'N', 2179, - '_', 2166, - '`', 1715, - 'f', 2169, - 'n', 2178, - 't', 2175, - '\t', 1735, - ' ', 1735, - 'I', 2185, - 'i', 2185, + '"', 1707, + '#', 2212, + '\'', 1710, + '+', 2163, + '-', 2162, + '.', 2161, + '>', 1501, + 'N', 2178, + '_', 2165, + '`', 1714, + 'f', 2168, + 'n', 2177, + 't', 2174, + '\t', 1734, + ' ', 1734, + 'I', 2184, + 'i', 2184, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); + lookahead == ',') ADVANCE(1729); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1665); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2199); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2198); END_STATE(); case 171: - if (lookahead == '"') ADVANCE(1708); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '\'') ADVANCE(1711); - if (lookahead == '`') ADVANCE(1715); + if (lookahead == '"') ADVANCE(1707); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '\'') ADVANCE(1710); + if (lookahead == '`') ADVANCE(1714); if (lookahead == '\t' || lookahead == ' ') SKIP(171); END_STATE(); case 172: ADVANCE_MAP( - '"', 1708, - '#', 2216, - '$', 1495, - '\'', 1711, - '(', 1490, - '+', 858, - '-', 857, - '.', 859, - '0', 875, - ':', 1736, - 'N', 1035, - '[', 1488, - '_', 876, - '`', 1715, - 'f', 884, - 'n', 1024, - 't', 973, - '{', 1521, + '"', 1707, + '#', 2215, + '$', 1494, + '\'', 1710, + '(', 1489, + '+', 857, + '-', 856, + '.', 858, + '0', 874, + ':', 1735, + 'N', 1034, + '[', 1487, + '_', 875, + '`', 1714, + 'f', 883, + 'n', 1023, + 't', 972, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(148); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1040); + lookahead == 'i') ADVANCE(1039); if (lookahead == ',' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2095); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(882); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2094); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(881); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1061); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1060); END_STATE(); case 173: ADVANCE_MAP( - '"', 1708, - '#', 2216, - '$', 1495, - '\'', 1711, - '(', 1490, - '+', 858, - '-', 857, - '.', 859, - '0', 875, - 'N', 1035, - '[', 1488, - '_', 876, - '`', 1715, - 'f', 884, - 'n', 1024, - 't', 973, - '{', 1521, + '"', 1707, + '#', 2215, + '$', 1494, + '\'', 1710, + '(', 1489, + '+', 857, + '-', 856, + '.', 858, + '0', 874, + 'N', 1034, + '[', 1487, + '_', 875, + '`', 1714, + 'f', 883, + 'n', 1023, + 't', 972, + '{', 1520, ); if (lookahead == '\t' || lookahead == ' ') SKIP(150); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1040); + lookahead == 'i') ADVANCE(1039); if (lookahead == ',' || lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2095); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(882); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2094); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(881); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1061); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1060); END_STATE(); case 174: ADVANCE_MAP( - '"', 1708, - '#', 2216, - '$', 1495, - '\'', 1711, - '(', 1490, - '+', 858, - '-', 857, - '.', 859, - ':', 1736, - 'N', 1035, - '_', 876, - '`', 1715, - 'f', 884, - 'n', 1024, - 't', 973, + '"', 1707, + '#', 2215, + '$', 1494, + '\'', 1710, + '(', 1489, + '+', 857, + '-', 856, + '.', 858, + ':', 1735, + 'N', 1034, + '_', 875, + '`', 1714, + 'f', 883, + 'n', 1023, + 't', 972, ); if (lookahead == '\t' || lookahead == ' ') SKIP(151); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1040); + lookahead == 'i') ADVANCE(1039); if (lookahead == ',' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2095); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(882); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2094); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(881); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1061); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1060); END_STATE(); case 175: ADVANCE_MAP( - '"', 1708, - '#', 2216, - '$', 1495, - '\'', 1711, - '(', 1490, - '+', 858, - '-', 857, - '.', 859, - 'N', 1035, - '_', 876, - '`', 1715, - 'f', 884, - 'n', 1024, - 't', 973, + '"', 1707, + '#', 2215, + '$', 1494, + '\'', 1710, + '(', 1489, + '+', 857, + '-', 856, + '.', 858, + 'N', 1034, + '_', 875, + '`', 1714, + 'f', 883, + 'n', 1023, + 't', 972, ); if (lookahead == '\t' || lookahead == ' ') SKIP(152); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1040); + lookahead == 'i') ADVANCE(1039); if (lookahead == ',' || lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2095); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(882); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2094); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(881); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1061); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1060); END_STATE(); case 176: ADVANCE_MAP( - '"', 1708, - '#', 2216, - '\'', 1711, - '+', 858, - '-', 857, - '.', 876, - ':', 1736, - 'I', 1040, - 'N', 1035, - '_', 876, - '`', 1715, - 'a', 944, - 'c', 889, - 'd', 906, - 'e', 948, - 'f', 883, - 'i', 871, - 'l', 916, - 'm', 892, - 'n', 1024, - 't', 978, - 'u', 994, - 'w', 927, + '"', 1707, + '#', 2215, + '\'', 1710, + '+', 857, + '-', 856, + '.', 875, + ':', 1735, + 'I', 1039, + 'N', 1034, + '_', 875, + '`', 1714, + 'a', 943, + 'c', 888, + 'd', 905, + 'e', 947, + 'f', 882, + 'i', 870, + 'l', 915, + 'm', 891, + 'n', 1023, + 't', 977, + 'u', 993, + 'w', 926, ); if (lookahead == '\t' || lookahead == ' ') SKIP(159); if (lookahead == '$' || lookahead == '@' || - lookahead == '^') ADVANCE(1061); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(876); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + lookahead == '^') ADVANCE(1060); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(875); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 177: ADVANCE_MAP( - '"', 1708, - '#', 2216, - '\'', 1711, - '+', 858, - '-', 850, - '.', 876, - ':', 1736, - 'I', 1040, - 'N', 1035, - '_', 876, - '`', 1715, - 'a', 944, - 'c', 889, - 'd', 906, - 'e', 948, - 'f', 883, - 'i', 871, - 'l', 916, - 'm', 892, - 'n', 1024, - 't', 978, - 'u', 994, - 'w', 927, + '"', 1707, + '#', 2215, + '\'', 1710, + '+', 857, + '-', 849, + '.', 875, + ':', 1735, + 'I', 1039, + 'N', 1034, + '_', 875, + '`', 1714, + 'a', 943, + 'c', 888, + 'd', 905, + 'e', 947, + 'f', 882, + 'i', 870, + 'l', 915, + 'm', 891, + 'n', 1023, + 't', 977, + 'u', 993, + 'w', 926, ); if (lookahead == '\t' || lookahead == ' ') SKIP(162); if (lookahead == '$' || lookahead == '@' || - lookahead == '^') ADVANCE(1061); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(876); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + lookahead == '^') ADVANCE(1060); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(875); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 178: - if (lookahead == '"') ADVANCE(1708); - if (lookahead == '#') ADVANCE(1710); - if (lookahead == '\\') ADVANCE(511); + if (lookahead == '"') ADVANCE(1707); + if (lookahead == '#') ADVANCE(1709); + if (lookahead == '\\') ADVANCE(510); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1709); - if (lookahead != 0) ADVANCE(1710); + lookahead == ' ') ADVANCE(1708); + if (lookahead != 0) ADVANCE(1709); END_STATE(); case 179: - if (lookahead == '"') ADVANCE(1725); - if (lookahead == '\'') ADVANCE(1724); + if (lookahead == '"') ADVANCE(1724); + if (lookahead == '\'') ADVANCE(1723); END_STATE(); case 180: - if (lookahead == '"') ADVANCE(1726); - if (lookahead == '#') ADVANCE(1721); - if (lookahead == '(') ADVANCE(1490); - if (lookahead == '\\') ADVANCE(506); + if (lookahead == '"') ADVANCE(1725); + if (lookahead == '#') ADVANCE(1720); + if (lookahead == '(') ADVANCE(1489); + if (lookahead == '\\') ADVANCE(505); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1720); - if (lookahead != 0) ADVANCE(1721); + lookahead == ' ') ADVANCE(1719); + if (lookahead != 0) ADVANCE(1720); END_STATE(); case 181: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '$') ADVANCE(1493); - if (lookahead == '(') ADVANCE(1584); - if (lookahead == '.') ADVANCE(1627); - if (lookahead == '_') ADVANCE(1838); - if (lookahead == '{') ADVANCE(1521); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '$') ADVANCE(1492); + if (lookahead == '(') ADVANCE(1583); + if (lookahead == '.') ADVANCE(1626); + if (lookahead == '_') ADVANCE(1837); + if (lookahead == '{') ADVANCE(1520); if (lookahead == '\t' || lookahead == ' ') SKIP(190); if (lookahead == '+' || - lookahead == '-') ADVANCE(1816); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); + lookahead == '-') ADVANCE(1815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1958); END_STATE(); case 182: ADVANCE_MAP( - '#', 2213, - '$', 1493, - '(', 1584, - '.', 1626, - ']', 1489, - '_', 1969, - '}', 1522, - '\t', 1735, - ' ', 1735, - '+', 1963, - '-', 1963, + '#', 2212, + '$', 1492, + '(', 1583, + '.', 1625, + ']', 1488, + '_', 1968, + '}', 1521, + '\t', 1734, + ' ', 1734, + '+', 1962, + '-', 1962, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + lookahead == ',') ADVANCE(1729); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16522,42 +16501,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1983); END_STATE(); case 183: ADVANCE_MAP( - '#', 2213, - '$', 1493, - '(', 1584, - '.', 1997, - '_', 2000, - '}', 1522, - '\t', 1735, - ' ', 1735, - '+', 1986, - '-', 1986, + '#', 2212, + '$', 1492, + '(', 1583, + '.', 1996, + '_', 1999, + '}', 1521, + '\t', 1734, + ' ', 1734, + '+', 1985, + '-', 1985, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2011); + lookahead == ',') ADVANCE(1729); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2010); END_STATE(); case 184: ADVANCE_MAP( - '#', 2213, - '$', 1493, - '(', 1584, - '.', 1970, - ']', 1489, - '_', 1969, - '\t', 1735, - ' ', 1735, - '+', 1963, - '-', 1963, + '#', 2212, + '$', 1492, + '(', 1583, + '.', 1969, + ']', 1488, + '_', 1968, + '\t', 1734, + ' ', 1734, + '+', 1962, + '-', 1962, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + lookahead == ',') ADVANCE(1729); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16565,24 +16544,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1983); END_STATE(); case 185: ADVANCE_MAP( - '#', 2213, - '$', 1493, - '(', 1584, - '.', 1961, - ']', 1489, - '_', 1969, - '\t', 1735, - ' ', 1735, - '+', 1963, - '-', 1963, + '#', 2212, + '$', 1492, + '(', 1583, + '.', 1960, + ']', 1488, + '_', 1968, + '\t', 1734, + ' ', 1734, + '+', 1962, + '-', 1962, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + lookahead == ',') ADVANCE(1729); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16590,136 +16569,136 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1983); END_STATE(); case 186: ADVANCE_MAP( - '#', 2213, - '$', 1493, - '(', 1584, - '.', 1625, - '_', 2000, - '}', 1522, - '\t', 1735, - ' ', 1735, - '+', 1986, - '-', 1986, + '#', 2212, + '$', 1492, + '(', 1583, + '.', 1624, + '_', 1999, + '}', 1521, + '\t', 1734, + ' ', 1734, + '+', 1985, + '-', 1985, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2011); + lookahead == ',') ADVANCE(1729); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2010); END_STATE(); case 187: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '$') ADVANCE(1493); - if (lookahead == '(') ADVANCE(1584); - if (lookahead == '.') ADVANCE(1840); - if (lookahead == '_') ADVANCE(1838); - if (lookahead == '{') ADVANCE(1521); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '$') ADVANCE(1492); + if (lookahead == '(') ADVANCE(1583); + if (lookahead == '.') ADVANCE(1839); + if (lookahead == '_') ADVANCE(1837); + if (lookahead == '{') ADVANCE(1520); if (lookahead == '\t' || lookahead == ' ') SKIP(190); if (lookahead == '+' || - lookahead == '-') ADVANCE(1816); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); + lookahead == '-') ADVANCE(1815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1958); END_STATE(); case 188: ADVANCE_MAP( - '#', 2213, - '$', 1493, - '(', 1584, - '.', 1621, - '[', 1688, - ']', 1489, - '_', 1969, - '}', 1522, - '\t', 1735, - ' ', 1735, - '+', 1963, - '-', 1963, + '#', 2212, + '$', 1492, + '(', 1583, + '.', 1620, + '[', 1687, + ']', 1488, + '_', 1968, + '}', 1521, + '\t', 1734, + ' ', 1734, + '+', 1962, + '-', 1962, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + lookahead == ',') ADVANCE(1729); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1983); END_STATE(); case 189: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '$') ADVANCE(1493); - if (lookahead == '.') ADVANCE(335); - if (lookahead == ']') ADVANCE(1489); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '$') ADVANCE(1492); + if (lookahead == '.') ADVANCE(334); + if (lookahead == ']') ADVANCE(1488); if (lookahead == '\t' || lookahead == ' ') SKIP(189); if (lookahead == '+' || - lookahead == '-') ADVANCE(313); + lookahead == '-') ADVANCE(312); END_STATE(); case 190: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '$') ADVANCE(1493); - if (lookahead == '.') ADVANCE(335); - if (lookahead == '{') ADVANCE(1521); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '$') ADVANCE(1492); + if (lookahead == '.') ADVANCE(334); + if (lookahead == '{') ADVANCE(1520); if (lookahead == '\t' || lookahead == ' ') SKIP(190); if (lookahead == '+' || - lookahead == '-') ADVANCE(313); + lookahead == '-') ADVANCE(312); END_STATE(); case 191: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '$') ADVANCE(1493); - if (lookahead == '.') ADVANCE(335); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '$') ADVANCE(1492); + if (lookahead == '.') ADVANCE(334); if (lookahead == '\t' || lookahead == ' ') SKIP(191); if (lookahead == '+' || - lookahead == '-') ADVANCE(313); + lookahead == '-') ADVANCE(312); END_STATE(); case 192: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '$') ADVANCE(1493); - if (lookahead == ':') ADVANCE(1736); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '$') ADVANCE(1492); + if (lookahead == ':') ADVANCE(1735); if (lookahead == '\t' || lookahead == ' ') SKIP(192); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1391); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1390); END_STATE(); case 193: ADVANCE_MAP( - '#', 2213, - '(', 1584, - '.', 1618, - 'E', 1965, - 'G', 1967, - 'K', 1967, - 'M', 1967, - 'P', 1967, - 'T', 1967, - ']', 1489, - 'd', 1974, - 'e', 1964, - 'g', 1966, - 'h', 1980, - 'k', 1966, - 'm', 1968, - 'n', 1981, - 'p', 1966, - 's', 1977, - 't', 1966, - 'u', 1981, - 'w', 1978, - '}', 1522, - 0xb5, 1981, - '\t', 1735, - ' ', 1735, - 'B', 1676, - 'b', 1676, + '#', 2212, + '(', 1583, + '.', 1617, + 'E', 1964, + 'G', 1966, + 'K', 1966, + 'M', 1966, + 'P', 1966, + 'T', 1966, + ']', 1488, + 'd', 1973, + 'e', 1963, + 'g', 1965, + 'h', 1979, + 'k', 1965, + 'm', 1967, + 'n', 1980, + 'p', 1965, + 's', 1976, + 't', 1965, + 'u', 1980, + 'w', 1977, + '}', 1521, + 0xb5, 1980, + '\t', 1734, + ' ', 1734, + 'B', 1675, + 'b', 1675, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); + lookahead == ',') ADVANCE(1729); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16727,40 +16706,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1983); END_STATE(); case 194: ADVANCE_MAP( - '#', 2213, - '(', 1584, - '.', 1618, - 'E', 1965, - 'G', 1967, - 'K', 1967, - 'M', 1967, - 'P', 1967, - 'T', 1967, - ']', 1489, - 'd', 1974, - 'e', 1964, - 'g', 1966, - 'h', 1980, - 'k', 1966, - 'm', 1968, - 'n', 1981, - 'p', 1966, - 's', 1977, - 't', 1966, - 'u', 1981, - 'w', 1978, - 0xb5, 1981, - '\t', 1735, - ' ', 1735, - 'B', 1676, - 'b', 1676, + '#', 2212, + '(', 1583, + '.', 1617, + 'E', 1964, + 'G', 1966, + 'K', 1966, + 'M', 1966, + 'P', 1966, + 'T', 1966, + ']', 1488, + 'd', 1973, + 'e', 1963, + 'g', 1965, + 'h', 1979, + 'k', 1965, + 'm', 1967, + 'n', 1980, + 'p', 1965, + 's', 1976, + 't', 1965, + 'u', 1980, + 'w', 1977, + 0xb5, 1980, + '\t', 1734, + ' ', 1734, + 'B', 1675, + 'b', 1675, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); + lookahead == ',') ADVANCE(1729); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16768,56 +16747,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1983); END_STATE(); case 195: ADVANCE_MAP( - '#', 2213, - '(', 1584, - '.', 1618, - 'E', 1992, - 'G', 1994, - 'K', 1994, - 'M', 1994, - 'P', 1994, - 'T', 1994, - 'd', 2001, - 'e', 1991, - 'g', 1993, - 'h', 2007, - 'k', 1993, - 'm', 1995, - 'n', 2008, - 'p', 1993, - 's', 2004, - 't', 1993, - 'u', 2008, - 'w', 2005, - '}', 1522, - 0xb5, 2008, - '\t', 1735, - ' ', 1735, - 'B', 1676, - 'b', 1676, + '#', 2212, + '(', 1583, + '.', 1617, + 'E', 1991, + 'G', 1993, + 'K', 1993, + 'M', 1993, + 'P', 1993, + 'T', 1993, + 'd', 2000, + 'e', 1990, + 'g', 1992, + 'h', 2006, + 'k', 1992, + 'm', 1994, + 'n', 2007, + 'p', 1992, + 's', 2003, + 't', 1992, + 'u', 2007, + 'w', 2004, + '}', 1521, + 0xb5, 2007, + '\t', 1734, + ' ', 1734, + 'B', 1675, + 'b', 1675, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == ',') ADVANCE(1729); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 196: ADVANCE_MAP( - '#', 2213, - '(', 1584, - '.', 1618, - ']', 1489, - '}', 1522, - '\t', 1735, - ' ', 1735, - 'E', 1972, - 'e', 1972, + '#', 2212, + '(', 1583, + '.', 1617, + ']', 1488, + '}', 1521, + '\t', 1734, + ' ', 1734, + 'E', 1971, + 'e', 1971, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); + lookahead == ',') ADVANCE(1729); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16825,21 +16804,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1983); END_STATE(); case 197: ADVANCE_MAP( - '#', 2213, - '(', 1584, - '.', 1618, - ']', 1489, - '\t', 1735, - ' ', 1735, - 'E', 1972, - 'e', 1972, + '#', 2212, + '(', 1583, + '.', 1617, + ']', 1488, + '\t', 1734, + ' ', 1734, + 'E', 1971, + 'e', 1971, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); + lookahead == ',') ADVANCE(1729); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16847,37 +16826,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1983); END_STATE(); case 198: ADVANCE_MAP( - '#', 2213, - '(', 1584, - '.', 1618, - '}', 1522, - '\t', 1735, - ' ', 1735, - 'E', 1998, - 'e', 1998, + '#', 2212, + '(', 1583, + '.', 1617, + '}', 1521, + '\t', 1734, + ' ', 1734, + 'E', 1997, + 'e', 1997, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == ',') ADVANCE(1729); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 199: ADVANCE_MAP( - '#', 2213, - '(', 1584, - '.', 1617, - ']', 1489, - '}', 1522, - '\t', 1735, - ' ', 1735, - 'E', 1972, - 'e', 1972, + '#', 2212, + '(', 1583, + '.', 1616, + ']', 1488, + '}', 1521, + '\t', 1734, + ' ', 1734, + 'E', 1997, + 'e', 1997, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1729); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); + END_STATE(); + case 200: + ADVANCE_MAP( + '#', 2212, + '(', 1583, + '.', 1616, + ']', 1488, + '\t', 1734, + ' ', 1734, + 'E', 1971, + 'e', 1971, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); + lookahead == ',') ADVANCE(1729); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16885,58 +16879,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); - END_STATE(); - case 200: - ADVANCE_MAP( - '#', 2213, - '(', 1584, - '.', 1617, - '}', 1522, - '\t', 1735, - ' ', 1735, - 'E', 1998, - 'e', 1998, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1983); END_STATE(); case 201: ADVANCE_MAP( - '#', 2213, - '(', 1584, - '.', 1960, - 'E', 1965, - 'G', 1967, - 'K', 1967, - 'M', 1967, - 'P', 1967, - 'T', 1967, - ']', 1489, - '_', 1969, - 'd', 1974, - 'e', 1964, - 'g', 1966, - 'h', 1980, - 'k', 1966, - 'm', 1968, - 'n', 1981, - 'p', 1966, - 's', 1977, - 't', 1966, - 'u', 1981, - 'w', 1978, - '}', 1522, - 0xb5, 1981, - '\t', 1735, - ' ', 1735, - 'B', 1676, - 'b', 1676, + '#', 2212, + '(', 1583, + '.', 1959, + 'E', 1964, + 'G', 1966, + 'K', 1966, + 'M', 1966, + 'P', 1966, + 'T', 1966, + ']', 1488, + '_', 1968, + 'd', 1973, + 'e', 1963, + 'g', 1965, + 'h', 1979, + 'k', 1965, + 'm', 1967, + 'n', 1980, + 'p', 1965, + 's', 1976, + 't', 1965, + 'u', 1980, + 'w', 1977, + '}', 1521, + 0xb5, 1980, + '\t', 1734, + ' ', 1734, + 'B', 1675, + 'b', 1675, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + lookahead == ',') ADVANCE(1729); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16945,85 +16924,82 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1983); END_STATE(); case 202: ADVANCE_MAP( - '#', 2213, - '(', 1584, - '.', 1960, - 'E', 1965, - 'G', 1967, - 'K', 1967, - 'M', 1967, - 'P', 1967, - 'T', 1967, - ']', 1489, - '_', 1969, - 'd', 1974, - 'e', 1964, - 'g', 1966, - 'h', 1980, - 'k', 1966, - 'm', 1968, - 'n', 1981, - 'p', 1966, - 's', 1977, - 't', 1966, - 'u', 1981, - 'w', 1978, - 0xb5, 1981, - '\t', 1735, - ' ', 1735, - 'B', 1676, - 'b', 1676, + '#', 2212, + '(', 1583, + '.', 1959, + 'E', 1964, + 'G', 1966, + 'K', 1966, + 'M', 1966, + 'P', 1966, + 'T', 1966, + ']', 1488, + 'd', 1973, + 'e', 1963, + 'g', 1965, + 'h', 1979, + 'k', 1965, + 'm', 1967, + 'n', 1980, + 'p', 1965, + 's', 1976, + 't', 1965, + 'u', 1980, + 'w', 1977, + '}', 1521, + 0xb5, 1980, + '\t', 1734, + ' ', 1734, + 'B', 1675, + 'b', 1675, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + lookahead == ',') ADVANCE(1729); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && - lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1983); END_STATE(); case 203: ADVANCE_MAP( - '#', 2213, - '(', 1584, - '.', 1960, - 'E', 1965, - 'G', 1967, - 'K', 1967, - 'M', 1967, - 'P', 1967, - 'T', 1967, - ']', 1489, - 'd', 1974, - 'e', 1964, - 'g', 1966, - 'h', 1980, - 'k', 1966, - 'm', 1968, - 'n', 1981, - 'p', 1966, - 's', 1977, - 't', 1966, - 'u', 1981, - 'w', 1978, - '}', 1522, - 0xb5, 1981, - '\t', 1735, - ' ', 1735, - 'B', 1676, - 'b', 1676, + '#', 2212, + '(', 1583, + '.', 1959, + 'E', 1964, + 'G', 1966, + 'K', 1966, + 'M', 1966, + 'P', 1966, + 'T', 1966, + ']', 1488, + 'd', 1973, + 'e', 1963, + 'g', 1965, + 'h', 1979, + 'k', 1965, + 'm', 1967, + 'n', 1980, + 'p', 1965, + 's', 1976, + 't', 1965, + 'u', 1980, + 'w', 1977, + 0xb5, 1980, + '\t', 1734, + ' ', 1734, + 'B', 1675, + 'b', 1675, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); + lookahead == ',') ADVANCE(1729); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17031,40 +17007,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1983); END_STATE(); case 204: ADVANCE_MAP( - '#', 2213, - '(', 1584, - '.', 1960, - 'E', 1965, - 'G', 1967, - 'K', 1967, - 'M', 1967, - 'P', 1967, - 'T', 1967, - ']', 1489, - 'd', 1974, - 'e', 1964, - 'g', 1966, - 'h', 1980, - 'k', 1966, - 'm', 1968, - 'n', 1981, - 'p', 1966, - 's', 1977, - 't', 1966, - 'u', 1981, - 'w', 1978, - 0xb5, 1981, - '\t', 1735, - ' ', 1735, - 'B', 1676, - 'b', 1676, + '#', 2212, + '(', 1583, + '.', 1959, + 'E', 1966, + 'G', 1966, + 'K', 1966, + 'M', 1966, + 'P', 1966, + 'T', 1966, + ']', 1488, + 'd', 1973, + 'e', 1965, + 'g', 1965, + 'h', 1979, + 'k', 1965, + 'm', 1967, + 'n', 1980, + 'p', 1965, + 's', 1976, + 't', 1965, + 'u', 1980, + 'w', 1977, + '}', 1521, + 0xb5, 1980, + '\t', 1734, + ' ', 1734, + 'B', 1675, + 'b', 1675, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); + lookahead == ',') ADVANCE(1729); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17072,41 +17049,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1983); END_STATE(); case 205: ADVANCE_MAP( - '#', 2213, - '(', 1584, - '.', 1960, - 'E', 1967, - 'G', 1967, - 'K', 1967, - 'M', 1967, - 'P', 1967, - 'T', 1967, - ']', 1489, - 'd', 1974, - 'e', 1966, - 'g', 1966, - 'h', 1980, - 'k', 1966, - 'm', 1968, - 'n', 1981, - 'p', 1966, - 's', 1977, - 't', 1966, - 'u', 1981, - 'w', 1978, - '}', 1522, - 0xb5, 1981, - '\t', 1735, - ' ', 1735, - 'B', 1676, - 'b', 1676, + '#', 2212, + '(', 1583, + '.', 1959, + 'E', 1966, + 'G', 1966, + 'K', 1966, + 'M', 1966, + 'P', 1966, + 'T', 1966, + ']', 1488, + 'd', 1973, + 'e', 1965, + 'g', 1965, + 'h', 1979, + 'k', 1965, + 'm', 1967, + 'n', 1980, + 'p', 1965, + 's', 1976, + 't', 1965, + 'u', 1980, + 'w', 1977, + 0xb5, 1980, + '\t', 1734, + ' ', 1734, + 'B', 1675, + 'b', 1675, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); + lookahead == ',') ADVANCE(1729); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17114,65 +17090,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1983); END_STATE(); case 206: ADVANCE_MAP( - '#', 2213, - '(', 1584, - '.', 1960, - 'E', 1967, - 'G', 1967, - 'K', 1967, - 'M', 1967, - 'P', 1967, - 'T', 1967, - ']', 1489, - 'd', 1974, - 'e', 1966, - 'g', 1966, - 'h', 1980, - 'k', 1966, - 'm', 1968, - 'n', 1981, - 'p', 1966, - 's', 1977, - 't', 1966, - 'u', 1981, - 'w', 1978, - 0xb5, 1981, - '\t', 1735, - ' ', 1735, - 'B', 1676, - 'b', 1676, + '#', 2212, + '(', 1583, + '.', 1959, + ']', 1488, + '_', 1968, + '}', 1521, + '\t', 1734, + ' ', 1734, + 'E', 1971, + 'e', 1971, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); + lookahead == ',') ADVANCE(1729); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && + lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1983); END_STATE(); case 207: ADVANCE_MAP( - '#', 2213, - '(', 1584, - '.', 1960, - ']', 1489, - '_', 1969, - '}', 1522, - '\t', 1735, - ' ', 1735, - 'E', 1972, - 'e', 1972, + '#', 2212, + '(', 1583, + '.', 1959, + ']', 1488, + '_', 1968, + '\t', 1734, + ' ', 1734, + 'E', 1971, + 'e', 1971, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + lookahead == ',') ADVANCE(1729); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17181,47 +17141,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1983); END_STATE(); case 208: ADVANCE_MAP( - '#', 2213, - '(', 1584, - '.', 1960, - ']', 1489, - '_', 1969, - '\t', 1735, - ' ', 1735, - 'E', 1972, - 'e', 1972, + '#', 2212, + '(', 1583, + '.', 1959, + ']', 1488, + '}', 1521, + '\t', 1734, + ' ', 1734, + 'E', 1971, + 'e', 1971, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + lookahead == ',') ADVANCE(1729); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && - lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1983); END_STATE(); case 209: - ADVANCE_MAP( - '#', 2213, - '(', 1584, - '.', 1960, - ']', 1489, - '}', 1522, - '\t', 1735, - ' ', 1735, - 'E', 1972, - 'e', 1972, - ); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '(') ADVANCE(1583); + if (lookahead == '.') ADVANCE(1959); + if (lookahead == ']') ADVANCE(1488); + if (lookahead == '}') ADVANCE(1521); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1734); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); + lookahead == ',') ADVANCE(1729); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17229,18 +17183,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1983); END_STATE(); case 210: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '(') ADVANCE(1584); - if (lookahead == '.') ADVANCE(1960); - if (lookahead == ']') ADVANCE(1489); - if (lookahead == '}') ADVANCE(1522); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1735); + ADVANCE_MAP( + '#', 2212, + '(', 1583, + '.', 1959, + ']', 1488, + '\t', 1734, + ' ', 1734, + 'E', 1971, + 'e', 1971, + ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); + lookahead == ',') ADVANCE(1729); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17248,21 +17205,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1983); END_STATE(); case 211: - ADVANCE_MAP( - '#', 2213, - '(', 1584, - '.', 1960, - ']', 1489, - '\t', 1735, - ' ', 1735, - 'E', 1972, - 'e', 1972, - ); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '(') ADVANCE(1583); + if (lookahead == '.') ADVANCE(1959); + if (lookahead == ']') ADVANCE(1488); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1734); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); + lookahead == ',') ADVANCE(1729); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17270,64 +17223,64 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1983); END_STATE(); case 212: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '(') ADVANCE(1584); - if (lookahead == '.') ADVANCE(1960); - if (lookahead == ']') ADVANCE(1489); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1735); + ADVANCE_MAP( + '#', 2212, + '(', 1583, + '.', 1961, + ']', 1488, + '_', 1968, + '\t', 1734, + ' ', 1734, + 'E', 1971, + 'e', 1971, + ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); + lookahead == ',') ADVANCE(1729); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && + lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1983); END_STATE(); case 213: ADVANCE_MAP( - '#', 2213, - '(', 1584, - '.', 1962, - ']', 1489, - '_', 1969, - '\t', 1735, - ' ', 1735, - 'E', 1972, - 'e', 1972, + '#', 2212, + '(', 1583, + '.', 1961, + ']', 1488, + '\t', 1734, + ' ', 1734, + 'E', 1971, + 'e', 1971, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + lookahead == ',') ADVANCE(1729); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && - lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1983); END_STATE(); case 214: - ADVANCE_MAP( - '#', 2213, - '(', 1584, - '.', 1962, - ']', 1489, - '\t', 1735, - ' ', 1735, - 'E', 1972, - 'e', 1972, - ); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '(') ADVANCE(1583); + if (lookahead == '.') ADVANCE(1961); + if (lookahead == ']') ADVANCE(1488); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1734); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); + lookahead == ',') ADVANCE(1729); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17335,17 +17288,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1983); END_STATE(); case 215: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '(') ADVANCE(1584); - if (lookahead == '.') ADVANCE(1962); - if (lookahead == ']') ADVANCE(1489); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1735); + ADVANCE_MAP( + '#', 2212, + '(', 1583, + '.', 1619, + ']', 1488, + '\t', 1734, + ' ', 1734, + 'E', 1971, + 'e', 1971, + ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); + lookahead == ',') ADVANCE(1729); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17353,191 +17310,169 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1983); END_STATE(); case 216: ADVANCE_MAP( - '#', 2213, - '(', 1584, - '.', 1620, - ']', 1489, - '\t', 1735, - ' ', 1735, - 'E', 1972, - 'e', 1972, + '#', 2212, + '(', 1583, + '.', 1984, + 'E', 1991, + 'G', 1993, + 'K', 1993, + 'M', 1993, + 'P', 1993, + 'T', 1993, + '_', 1999, + 'd', 2000, + 'e', 1990, + 'g', 1992, + 'h', 2006, + 'k', 1992, + 'm', 1994, + 'n', 2007, + 'p', 1992, + 's', 2003, + 't', 1992, + 'u', 2007, + 'w', 2004, + '}', 1521, + 0xb5, 2007, + '\t', 1734, + ' ', 1734, + 'B', 1675, + 'b', 1675, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + lookahead == ',') ADVANCE(1729); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 217: ADVANCE_MAP( - '#', 2213, - '(', 1584, - '.', 1985, - 'E', 1992, - 'G', 1994, - 'K', 1994, - 'M', 1994, - 'P', 1994, - 'T', 1994, - '_', 2000, - 'd', 2001, - 'e', 1991, - 'g', 1993, - 'h', 2007, - 'k', 1993, - 'm', 1995, - 'n', 2008, - 'p', 1993, - 's', 2004, - 't', 1993, - 'u', 2008, - 'w', 2005, - '}', 1522, - 0xb5, 2008, - '\t', 1735, - ' ', 1735, - 'B', 1676, - 'b', 1676, + '#', 2212, + '(', 1583, + '.', 1984, + 'E', 1991, + 'G', 1993, + 'K', 1993, + 'M', 1993, + 'P', 1993, + 'T', 1993, + 'd', 2000, + 'e', 1990, + 'g', 1992, + 'h', 2006, + 'k', 1992, + 'm', 1994, + 'n', 2007, + 'p', 1992, + 's', 2003, + 't', 1992, + 'u', 2007, + 'w', 2004, + '}', 1521, + 0xb5, 2007, + '\t', 1734, + ' ', 1734, + 'B', 1675, + 'b', 1675, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == ',') ADVANCE(1729); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 218: ADVANCE_MAP( - '#', 2213, - '(', 1584, - '.', 1985, - 'E', 1992, - 'G', 1994, - 'K', 1994, - 'M', 1994, - 'P', 1994, - 'T', 1994, - 'd', 2001, - 'e', 1991, - 'g', 1993, - 'h', 2007, - 'k', 1993, - 'm', 1995, - 'n', 2008, - 'p', 1993, - 's', 2004, - 't', 1993, - 'u', 2008, - 'w', 2005, - '}', 1522, - 0xb5, 2008, - '\t', 1735, - ' ', 1735, - 'B', 1676, - 'b', 1676, + '#', 2212, + '(', 1583, + '.', 1984, + 'E', 1993, + 'G', 1993, + 'K', 1993, + 'M', 1993, + 'P', 1993, + 'T', 1993, + 'd', 2000, + 'e', 1992, + 'g', 1992, + 'h', 2006, + 'k', 1992, + 'm', 1994, + 'n', 2007, + 'p', 1992, + 's', 2003, + 't', 1992, + 'u', 2007, + 'w', 2004, + '}', 1521, + 0xb5, 2007, + '\t', 1734, + ' ', 1734, + 'B', 1675, + 'b', 1675, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == ',') ADVANCE(1729); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 219: ADVANCE_MAP( - '#', 2213, - '(', 1584, - '.', 1985, - 'E', 1994, - 'G', 1994, - 'K', 1994, - 'M', 1994, - 'P', 1994, - 'T', 1994, - 'd', 2001, - 'e', 1993, - 'g', 1993, - 'h', 2007, - 'k', 1993, - 'm', 1995, - 'n', 2008, - 'p', 1993, - 's', 2004, - 't', 1993, - 'u', 2008, - 'w', 2005, - '}', 1522, - 0xb5, 2008, - '\t', 1735, - ' ', 1735, - 'B', 1676, - 'b', 1676, + '#', 2212, + '(', 1583, + '.', 1984, + '_', 1999, + '}', 1521, + '\t', 1734, + ' ', 1734, + 'E', 1997, + 'e', 1997, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == ',') ADVANCE(1729); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 220: ADVANCE_MAP( - '#', 2213, - '(', 1584, - '.', 1985, - '_', 2000, - '}', 1522, - '\t', 1735, - ' ', 1735, - 'E', 1998, - 'e', 1998, + '#', 2212, + '(', 1583, + '.', 1984, + '}', 1521, + '\t', 1734, + ' ', 1734, + 'E', 1997, + 'e', 1997, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == ',') ADVANCE(1729); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 221: - ADVANCE_MAP( - '#', 2213, - '(', 1584, - '.', 1985, - '}', 1522, - '\t', 1735, - ' ', 1735, - 'E', 1998, - 'e', 1998, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); - END_STATE(); - case 222: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '(') ADVANCE(1584); - if (lookahead == '.') ADVANCE(1985); - if (lookahead == '}') ADVANCE(1522); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '(') ADVANCE(1583); + if (lookahead == '.') ADVANCE(1984); + if (lookahead == '}') ADVANCE(1521); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1735); + lookahead == ' ') ADVANCE(1734); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == ',') ADVANCE(1729); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); - case 223: + case 222: ADVANCE_MAP( - '#', 2213, - '(', 1584, - ']', 1489, - '_', 1969, - '\t', 1735, - ' ', 1735, - 'E', 1972, - 'e', 1972, + '#', 2212, + '(', 1583, + ']', 1488, + '_', 1968, + '\t', 1734, + ' ', 1734, + 'E', 1971, + 'e', 1971, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + lookahead == ',') ADVANCE(1729); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17546,17 +17481,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1983); END_STATE(); - case 224: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '(') ADVANCE(1584); - if (lookahead == ']') ADVANCE(1489); - if (lookahead == '}') ADVANCE(1522); + case 223: + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '(') ADVANCE(1583); + if (lookahead == ']') ADVANCE(1488); + if (lookahead == '}') ADVANCE(1521); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1735); + lookahead == ' ') ADVANCE(1734); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); + lookahead == ',') ADVANCE(1729); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17564,18 +17499,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1983); END_STATE(); - case 225: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '(') ADVANCE(1584); - if (lookahead == ']') ADVANCE(1489); + case 224: + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '(') ADVANCE(1583); + if (lookahead == ']') ADVANCE(1488); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1735); + lookahead == ' ') ADVANCE(1734); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1972); + lookahead == 'e') ADVANCE(1971); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); + lookahead == ',') ADVANCE(1729); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17583,678 +17518,678 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1983); END_STATE(); - case 226: + case 225: ADVANCE_MAP( - '#', 2213, - '(', 1584, - '_', 2000, - '}', 1522, - '\t', 1735, - ' ', 1735, - 'E', 1998, - 'e', 1998, + '#', 2212, + '(', 1583, + '_', 1999, + '}', 1521, + '\t', 1734, + ' ', 1734, + 'E', 1997, + 'e', 1997, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == ',') ADVANCE(1729); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); + END_STATE(); + case 226: + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '(') ADVANCE(1583); + if (lookahead == '{') ADVANCE(1520); + if (lookahead == '\t' || + lookahead == ' ') SKIP(268); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 227: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '(') ADVANCE(1584); - if (lookahead == '{') ADVANCE(1521); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '(') ADVANCE(1583); + if (lookahead == '}') ADVANCE(1521); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == ' ') ADVANCE(1734); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1997); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1729); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 228: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '(') ADVANCE(1584); - if (lookahead == '}') ADVANCE(1522); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '(') ADVANCE(1583); + if (lookahead == '}') ADVANCE(1521); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1735); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1998); + lookahead == ' ') ADVANCE(1734); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == ',') ADVANCE(1729); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 229: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '(') ADVANCE(1584); - if (lookahead == '}') ADVANCE(1522); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '(') ADVANCE(1583); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1735); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == ' ') SKIP(270); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 230: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '(') ADVANCE(1584); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '(') ADVANCE(1583); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == ' ') SKIP(270); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1983); END_STATE(); case 231: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '(') ADVANCE(1584); + ADVANCE_MAP( + '#', 2212, + '(', 1489, + '-', 1807, + '.', 1617, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + '[', 1487, + 'd', 1848, + 'e', 1830, + 'g', 1833, + 'h', 1902, + 'k', 1833, + 'm', 1836, + 'n', 1915, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + 0xb5, 1915, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); + lookahead == ' ') SKIP(237); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 232: ADVANCE_MAP( - '#', 2213, - '(', 1490, - '-', 1808, - '.', 1618, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - '[', 1488, - 'd', 1849, - 'e', 1831, - 'g', 1834, - 'h', 1903, - 'k', 1834, - 'm', 1837, - 'n', 1916, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - 0xb5, 1916, + '#', 2212, + '(', 1489, + '-', 1807, + '.', 1814, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + '[', 1487, + '_', 1837, + 'd', 1848, + 'e', 1830, + 'g', 1833, + 'h', 1902, + 'k', 1833, + 'm', 1836, + 'n', 1915, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + 0xb5, 1915, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(238); + lookahead == ' ') SKIP(237); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 233: ADVANCE_MAP( - '#', 2213, - '(', 1490, - '-', 1808, - '.', 1815, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - '[', 1488, - '_', 1838, - 'd', 1849, - 'e', 1831, - 'g', 1834, - 'h', 1903, - 'k', 1834, - 'm', 1837, - 'n', 1916, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - 0xb5, 1916, + '#', 2212, + '(', 1489, + '-', 1807, + '.', 1814, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + '[', 1487, + 'd', 1848, + 'e', 1830, + 'g', 1833, + 'h', 1902, + 'k', 1833, + 'm', 1836, + 'n', 1915, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + 0xb5, 1915, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(238); + lookahead == ' ') SKIP(237); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 234: ADVANCE_MAP( - '#', 2213, - '(', 1490, - '-', 1808, - '.', 1815, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - '[', 1488, - 'd', 1849, - 'e', 1831, - 'g', 1834, - 'h', 1903, - 'k', 1834, - 'm', 1837, - 'n', 1916, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - 0xb5, 1916, + '#', 2212, + '(', 1489, + '-', 1807, + '.', 1814, + 'E', 1834, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + '[', 1487, + 'd', 1848, + 'e', 1833, + 'g', 1833, + 'h', 1902, + 'k', 1833, + 'm', 1836, + 'n', 1915, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + 0xb5, 1915, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(238); + lookahead == ' ') SKIP(237); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 235: - ADVANCE_MAP( - '#', 2213, - '(', 1490, - '-', 1808, - '.', 1815, - 'E', 1835, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - '[', 1488, - 'd', 1849, - 'e', 1834, - 'g', 1834, - 'h', 1903, - 'k', 1834, - 'm', 1837, - 'n', 1916, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - 0xb5, 1916, - ); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '(') ADVANCE(1489); + if (lookahead == '-') ADVANCE(1807); + if (lookahead == '[') ADVANCE(1487); if (lookahead == '\t' || - lookahead == ' ') SKIP(238); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == ' ') SKIP(237); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 236: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '(') ADVANCE(1490); - if (lookahead == '-') ADVANCE(1808); - if (lookahead == '[') ADVANCE(1488); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '(') ADVANCE(1489); + if (lookahead == '-') ADVANCE(295); + if (lookahead == '=') ADVANCE(1751); + if (lookahead == '[') ADVANCE(1487); if (lookahead == '\t' || - lookahead == ' ') SKIP(238); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == ' ') SKIP(237); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(1469); END_STATE(); case 237: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '(') ADVANCE(1490); - if (lookahead == '-') ADVANCE(296); - if (lookahead == '=') ADVANCE(1752); - if (lookahead == '[') ADVANCE(1488); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '(') ADVANCE(1489); + if (lookahead == '-') ADVANCE(295); + if (lookahead == '[') ADVANCE(1487); if (lookahead == '\t' || - lookahead == ' ') SKIP(238); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1470); + lookahead == ' ') SKIP(237); END_STATE(); case 238: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '(') ADVANCE(1490); - if (lookahead == '-') ADVANCE(296); - if (lookahead == '[') ADVANCE(1488); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == ',') ADVANCE(1491); + if (lookahead == ']') ADVANCE(1488); if (lookahead == '\t' || lookahead == ' ') SKIP(238); - END_STATE(); - case 239: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == ',') ADVANCE(1492); - if (lookahead == ']') ADVANCE(1489); - if (lookahead == '\t' || - lookahead == ' ') SKIP(239); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1689); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1688); END_STATE(); - case 240: + case 239: ADVANCE_MAP( - '#', 2213, - '.', 1618, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'd', 1849, - 'e', 1831, - 'g', 1834, - 'h', 1903, - 'k', 1834, - 'm', 1837, - 'n', 1916, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - '{', 1521, - 0xb5, 1916, + '#', 2212, + '.', 1617, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'd', 1848, + 'e', 1830, + 'g', 1833, + 'h', 1902, + 'k', 1833, + 'm', 1836, + 'n', 1915, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + '{', 1520, + 0xb5, 1915, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); + lookahead == ' ') SKIP(268); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); - case 241: + case 240: ADVANCE_MAP( - '#', 2213, - '.', 1618, - 'E', 1992, - 'G', 1994, - 'K', 1994, - 'M', 1994, - 'P', 1994, - 'T', 1994, - 'd', 2001, - 'e', 1991, - 'g', 1993, - 'h', 2007, - 'k', 1993, - 'm', 1995, - 'n', 2008, - 'p', 1993, - 's', 2004, - 't', 1993, - 'u', 2008, - 'w', 2005, - 0xb5, 2008, + '#', 2212, + '.', 1617, + 'E', 1991, + 'G', 1993, + 'K', 1993, + 'M', 1993, + 'P', 1993, + 'T', 1993, + 'd', 2000, + 'e', 1990, + 'g', 1992, + 'h', 2006, + 'k', 1992, + 'm', 1994, + 'n', 2007, + 'p', 1992, + 's', 2003, + 't', 1992, + 'u', 2007, + 'w', 2004, + 0xb5, 2007, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); + lookahead == ' ') SKIP(270); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); + END_STATE(); + case 241: + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '.') ADVANCE(1617); + if (lookahead == '{') ADVANCE(1520); + if (lookahead == '\t' || + lookahead == ' ') SKIP(268); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1843); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 242: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '.') ADVANCE(1618); - if (lookahead == '{') ADVANCE(1521); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '.') ADVANCE(1617); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); + lookahead == ' ') SKIP(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1844); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'e') ADVANCE(1997); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 243: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '.') ADVANCE(1618); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '.') ADVANCE(1742); + if (lookahead == 'i') ADVANCE(1378); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1998); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == ' ') SKIP(243); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1390); END_STATE(); case 244: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '.') ADVANCE(1743); - if (lookahead == 'i') ADVANCE(1379); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '.') ADVANCE(1626); + if (lookahead == '_') ADVANCE(1837); if (lookahead == '\t' || - lookahead == ' ') SKIP(244); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1391); + lookahead == ' ') SKIP(253); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 245: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '.') ADVANCE(1627); - if (lookahead == '_') ADVANCE(1838); + ADVANCE_MAP( + '#', 2212, + '.', 1814, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + '_', 1837, + 'd', 1848, + 'e', 1830, + 'g', 1833, + 'h', 1902, + 'k', 1833, + 'm', 1836, + 'n', 1915, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + '{', 1520, + 0xb5, 1915, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(254); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1816); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == ' ') SKIP(268); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 246: ADVANCE_MAP( - '#', 2213, - '.', 1815, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - '_', 1838, - 'd', 1849, - 'e', 1831, - 'g', 1834, - 'h', 1903, - 'k', 1834, - 'm', 1837, - 'n', 1916, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - '{', 1521, - 0xb5, 1916, + '#', 2212, + '.', 1814, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'd', 1848, + 'e', 1830, + 'g', 1833, + 'h', 1902, + 'k', 1833, + 'm', 1836, + 'n', 1915, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + '{', 1520, + 0xb5, 1915, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); + lookahead == ' ') SKIP(268); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 247: ADVANCE_MAP( - '#', 2213, - '.', 1815, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'd', 1849, - 'e', 1831, - 'g', 1834, - 'h', 1903, - 'k', 1834, - 'm', 1837, - 'n', 1916, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - '{', 1521, - 0xb5, 1916, + '#', 2212, + '.', 1814, + 'E', 1834, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'd', 1848, + 'e', 1833, + 'g', 1833, + 'h', 1902, + 'k', 1833, + 'm', 1836, + 'n', 1915, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + '{', 1520, + 0xb5, 1915, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); + lookahead == ' ') SKIP(268); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 248: - ADVANCE_MAP( - '#', 2213, - '.', 1815, - 'E', 1835, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'd', 1849, - 'e', 1834, - 'g', 1834, - 'h', 1903, - 'k', 1834, - 'm', 1837, - 'n', 1916, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - '{', 1521, - 0xb5, 1916, - ); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '.') ADVANCE(1814); + if (lookahead == '_') ADVANCE(1837); + if (lookahead == '{') ADVANCE(1520); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == ' ') SKIP(268); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1843); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 249: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '.') ADVANCE(1815); - if (lookahead == '_') ADVANCE(1838); - if (lookahead == '{') ADVANCE(1521); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '.') ADVANCE(1814); + if (lookahead == '{') ADVANCE(1520); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); + lookahead == ' ') SKIP(268); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1844); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'e') ADVANCE(1843); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 250: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '.') ADVANCE(1815); - if (lookahead == '{') ADVANCE(1521); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '.') ADVANCE(1814); + if (lookahead == '{') ADVANCE(1520); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1844); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == ' ') SKIP(268); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 251: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '.') ADVANCE(1815); - if (lookahead == '{') ADVANCE(1521); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '.') ADVANCE(1616); + if (lookahead == '{') ADVANCE(1520); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == ' ') SKIP(268); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1843); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 252: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '.') ADVANCE(1617); - if (lookahead == '{') ADVANCE(1521); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '.') ADVANCE(1616); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); + lookahead == ' ') SKIP(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1844); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'e') ADVANCE(1997); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 253: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '.') ADVANCE(1617); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '.') ADVANCE(334); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1998); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == ' ') SKIP(253); + if (lookahead == '+' || + lookahead == '-') ADVANCE(312); END_STATE(); case 254: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '.') ADVANCE(335); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '.') ADVANCE(1996); + if (lookahead == '_') ADVANCE(1999); if (lookahead == '\t' || - lookahead == ' ') SKIP(254); + lookahead == ' ') SKIP(253); if (lookahead == '+' || - lookahead == '-') ADVANCE(313); + lookahead == '-') ADVANCE(1985); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 255: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '.') ADVANCE(1997); - if (lookahead == '_') ADVANCE(2000); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '.') ADVANCE(1624); + if (lookahead == '_') ADVANCE(1999); if (lookahead == '\t' || - lookahead == ' ') SKIP(254); + lookahead == ' ') SKIP(253); if (lookahead == '+' || - lookahead == '-') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == '-') ADVANCE(1985); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 256: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '.') ADVANCE(1625); - if (lookahead == '_') ADVANCE(2000); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '.') ADVANCE(1839); + if (lookahead == '_') ADVANCE(1837); if (lookahead == '\t' || - lookahead == ' ') SKIP(254); + lookahead == ' ') SKIP(253); if (lookahead == '+' || - lookahead == '-') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == '-') ADVANCE(1815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 257: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '.') ADVANCE(1840); - if (lookahead == '_') ADVANCE(1838); + ADVANCE_MAP( + '#', 2212, + '.', 1984, + 'E', 1991, + 'G', 1993, + 'K', 1993, + 'M', 1993, + 'P', 1993, + 'T', 1993, + '_', 1999, + 'd', 2000, + 'e', 1990, + 'g', 1992, + 'h', 2006, + 'k', 1992, + 'm', 1994, + 'n', 2007, + 'p', 1992, + 's', 2003, + 't', 1992, + 'u', 2007, + 'w', 2004, + 0xb5, 2007, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(254); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1816); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == ' ') SKIP(270); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 258: ADVANCE_MAP( - '#', 2213, - '.', 1985, - 'E', 1992, - 'G', 1994, - 'K', 1994, - 'M', 1994, - 'P', 1994, - 'T', 1994, - '_', 2000, - 'd', 2001, - 'e', 1991, - 'g', 1993, - 'h', 2007, - 'k', 1993, - 'm', 1995, - 'n', 2008, - 'p', 1993, - 's', 2004, - 't', 1993, - 'u', 2008, - 'w', 2005, - 0xb5, 2008, + '#', 2212, + '.', 1984, + 'E', 1991, + 'G', 1993, + 'K', 1993, + 'M', 1993, + 'P', 1993, + 'T', 1993, + 'd', 2000, + 'e', 1990, + 'g', 1992, + 'h', 2006, + 'k', 1992, + 'm', 1994, + 'n', 2007, + 'p', 1992, + 's', 2003, + 't', 1992, + 'u', 2007, + 'w', 2004, + 0xb5, 2007, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); + lookahead == ' ') SKIP(270); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 259: ADVANCE_MAP( - '#', 2213, - '.', 1985, - 'E', 1992, - 'G', 1994, - 'K', 1994, - 'M', 1994, - 'P', 1994, - 'T', 1994, - 'd', 2001, - 'e', 1991, - 'g', 1993, - 'h', 2007, - 'k', 1993, - 'm', 1995, - 'n', 2008, - 'p', 1993, - 's', 2004, - 't', 1993, - 'u', 2008, - 'w', 2005, - 0xb5, 2008, + '#', 2212, + '.', 1984, + 'E', 1993, + 'G', 1993, + 'K', 1993, + 'M', 1993, + 'P', 1993, + 'T', 1993, + 'd', 2000, + 'e', 1992, + 'g', 1992, + 'h', 2006, + 'k', 1992, + 'm', 1994, + 'n', 2007, + 'p', 1992, + 's', 2003, + 't', 1992, + 'u', 2007, + 'w', 2004, + 0xb5, 2007, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); + lookahead == ' ') SKIP(270); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 260: - ADVANCE_MAP( - '#', 2213, - '.', 1985, - 'E', 1994, - 'G', 1994, - 'K', 1994, - 'M', 1994, - 'P', 1994, - 'T', 1994, - 'd', 2001, - 'e', 1993, - 'g', 1993, - 'h', 2007, - 'k', 1993, - 'm', 1995, - 'n', 2008, - 'p', 1993, - 's', 2004, - 't', 1993, - 'u', 2008, - 'w', 2005, - 0xb5, 2008, - ); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '.') ADVANCE(1984); + if (lookahead == '_') ADVANCE(1999); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == ' ') SKIP(270); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1997); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 261: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '.') ADVANCE(1985); - if (lookahead == '_') ADVANCE(2000); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '.') ADVANCE(1984); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); + lookahead == ' ') SKIP(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1998); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == 'e') ADVANCE(1997); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 262: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '.') ADVANCE(1985); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '.') ADVANCE(1984); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1998); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == ' ') SKIP(270); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 263: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '.') ADVANCE(1985); + ADVANCE_MAP( + '#', 2212, + ':', 1735, + 'a', 411, + 'c', 439, + 'd', 370, + 'e', 516, + 'm', 436, + 'u', 473, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == ' ') SKIP(263); END_STATE(); case 264: - ADVANCE_MAP( - '#', 2213, - ':', 1736, - 'a', 412, - 'c', 440, - 'd', 371, - 'e', 517, - 'm', 437, - 'u', 474, - ); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == ':') ADVANCE(1735); if (lookahead == '\t' || lookahead == ' ') SKIP(264); END_STATE(); case 265: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == ':') ADVANCE(1736); - if (lookahead == '\t' || - lookahead == ' ') SKIP(265); - END_STATE(); - case 266: ADVANCE_MAP( - '#', 2213, - '>', 1502, - '[', 1488, - ']', 1489, - 'c', 1369, - 'f', 1388, - 'i', 1377, - 'o', 1380, - 'v', 1365, - '\t', 1735, - ' ', 1735, + '#', 2212, + '>', 1501, + '[', 1487, + ']', 1488, + 'c', 1368, + 'f', 1387, + 'i', 1376, + 'o', 1379, + 'v', 1364, + '\t', 1734, + ' ', 1734, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); + lookahead == ',') ADVANCE(1729); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -18262,73 +18197,73 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '^' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1391); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1390); + END_STATE(); + case 266: + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '_') ADVANCE(1837); + if (lookahead == '{') ADVANCE(1520); + if (lookahead == '\t' || + lookahead == ' ') SKIP(268); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1843); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 267: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '_') ADVANCE(1838); - if (lookahead == '{') ADVANCE(1521); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '_') ADVANCE(1999); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); + lookahead == ' ') SKIP(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1844); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'e') ADVANCE(1997); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 268: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '_') ADVANCE(2000); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '{') ADVANCE(1520); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1998); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == ' ') SKIP(268); END_STATE(); case 269: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '{') ADVANCE(1521); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '{') ADVANCE(1520); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); + lookahead == ' ') SKIP(268); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1843); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 270: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '{') ADVANCE(1521); + if (lookahead == '#') ADVANCE(2212); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1844); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == ' ') SKIP(270); END_STATE(); case 271: - if (lookahead == '#') ADVANCE(2213); + if (lookahead == '#') ADVANCE(2212); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); + lookahead == ' ') SKIP(270); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1997); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 272: - if (lookahead == '#') ADVANCE(2213); + if (lookahead == '#') ADVANCE(2212); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1998); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == ' ') SKIP(270); + if (set_contains(sym_attribute_identifier_character_set_1, 668, lookahead)) ADVANCE(1483); END_STATE(); case 273: - if (lookahead == '#') ADVANCE(2213); + if (lookahead == '#') ADVANCE(2212); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1484); + lookahead == ' ') SKIP(270); + if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(1519); END_STATE(); case 274: - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if (set_contains(sym_param_short_flag_identifier_character_set_1, 770, lookahead)) ADVANCE(1520); - END_STATE(); - case 275: - if (lookahead == '#') ADVANCE(2216); - if (lookahead == '$') ADVANCE(1496); - if (lookahead == ':') ADVANCE(1736); + if (lookahead == '#') ADVANCE(2215); + if (lookahead == '$') ADVANCE(1495); + if (lookahead == ':') ADVANCE(1735); if (lookahead == '\t' || lookahead == ' ') SKIP(192); if (lookahead == '!' || @@ -18339,292 +18274,296 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '.' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1061); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1045); + lookahead == '^') ADVANCE(1060); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1044); END_STATE(); - case 276: + case 275: ADVANCE_MAP( - '#', 2216, - ':', 1736, - 'a', 944, - 'c', 965, - 'd', 906, - 'e', 1033, - 'm', 966, - 'u', 994, + '#', 2215, + ':', 1735, + 'a', 943, + 'c', 964, + 'd', 905, + 'e', 1032, + 'm', 965, + 'u', 993, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(264); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + lookahead == ' ') SKIP(263); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); - case 277: - if (lookahead == '#') ADVANCE(1723); - if (lookahead == '\'') ADVANCE(1714); - if (lookahead == '(') ADVANCE(1490); + case 276: + if (lookahead == '#') ADVANCE(1722); + if (lookahead == '\'') ADVANCE(1713); + if (lookahead == '(') ADVANCE(1489); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1722); - if (lookahead != 0) ADVANCE(1723); + lookahead == ' ') ADVANCE(1721); + if (lookahead != 0) ADVANCE(1722); + END_STATE(); + case 277: + if (lookahead == '+') ADVANCE(373); + if (lookahead == '>') ADVANCE(1763); + if (lookahead == 'r') ADVANCE(1553); + if (lookahead == 'u') ADVANCE(486); END_STATE(); case 278: if (lookahead == '+') ADVANCE(374); - if (lookahead == '>') ADVANCE(1764); - if (lookahead == 'r') ADVANCE(1554); - if (lookahead == 'u') ADVANCE(487); + if (lookahead == '>') ADVANCE(1759); END_STATE(); case 279: - if (lookahead == '+') ADVANCE(375); - if (lookahead == '>') ADVANCE(1760); - END_STATE(); - case 280: ADVANCE_MAP( - '+', 430, - '>', 1762, - 'I', 534, - 'i', 534, - 'n', 361, - 'r', 452, - 'x', 445, - 'B', 1676, - 'b', 1676, + '+', 429, + '>', 1761, + 'I', 533, + 'i', 533, + 'n', 360, + 'r', 451, + 'x', 444, + 'B', 1675, + 'b', 1675, ); END_STATE(); + case 280: + if (lookahead == '+') ADVANCE(429); + if (lookahead == '>') ADVANCE(1761); + if (lookahead == 'l') ADVANCE(471); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'r') ADVANCE(451); + END_STATE(); case 281: - if (lookahead == '+') ADVANCE(430); - if (lookahead == '>') ADVANCE(1762); - if (lookahead == 'l') ADVANCE(472); - if (lookahead == 'n') ADVANCE(361); - if (lookahead == 'r') ADVANCE(452); + if (lookahead == '+') ADVANCE(429); + if (lookahead == '>') ADVANCE(1761); + if (lookahead == 'l') ADVANCE(471); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'r') ADVANCE(451); + if (lookahead == 'x') ADVANCE(444); END_STATE(); case 282: - if (lookahead == '+') ADVANCE(430); - if (lookahead == '>') ADVANCE(1762); - if (lookahead == 'l') ADVANCE(472); - if (lookahead == 'n') ADVANCE(361); - if (lookahead == 'r') ADVANCE(452); - if (lookahead == 'x') ADVANCE(445); + if (lookahead == '+') ADVANCE(429); + if (lookahead == '>') ADVANCE(1761); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'r') ADVANCE(451); END_STATE(); case 283: - if (lookahead == '+') ADVANCE(430); - if (lookahead == '>') ADVANCE(1762); - if (lookahead == 'n') ADVANCE(361); - if (lookahead == 'r') ADVANCE(452); + if (lookahead == '+') ADVANCE(429); + if (lookahead == '>') ADVANCE(1761); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'r') ADVANCE(451); + if (lookahead == 'x') ADVANCE(444); END_STATE(); case 284: - if (lookahead == '+') ADVANCE(430); - if (lookahead == '>') ADVANCE(1762); - if (lookahead == 'n') ADVANCE(361); - if (lookahead == 'r') ADVANCE(452); - if (lookahead == 'x') ADVANCE(445); + if (lookahead == '+') ADVANCE(428); + if (lookahead == '>') ADVANCE(1757); END_STATE(); case 285: - if (lookahead == '+') ADVANCE(429); - if (lookahead == '>') ADVANCE(1758); + if (lookahead == '+') ADVANCE(437); + if (lookahead == '>') ADVANCE(522); + if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'r') ADVANCE(456); END_STATE(); case 286: - if (lookahead == '+') ADVANCE(438); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'n') ADVANCE(361); - if (lookahead == 'r') ADVANCE(457); + if (lookahead == '+') ADVANCE(437); + if (lookahead == '>') ADVANCE(522); + if (lookahead == 'r') ADVANCE(456); END_STATE(); case 287: - if (lookahead == '+') ADVANCE(438); + if (lookahead == '+') ADVANCE(375); if (lookahead == '>') ADVANCE(523); - if (lookahead == 'r') ADVANCE(457); + if (lookahead == 'r') ADVANCE(1553); + if (lookahead == 'u') ADVANCE(491); END_STATE(); case 288: - if (lookahead == '+') ADVANCE(376); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'r') ADVANCE(1554); - if (lookahead == 'u') ADVANCE(492); + if (lookahead == '+') ADVANCE(375); + if (lookahead == '>') ADVANCE(523); + if (lookahead == 'u') ADVANCE(491); END_STATE(); case 289: - if (lookahead == '+') ADVANCE(376); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'u') ADVANCE(492); + if (lookahead == '+') ADVANCE(442); + if (lookahead == '>') ADVANCE(525); END_STATE(); case 290: - if (lookahead == '+') ADVANCE(443); - if (lookahead == '>') ADVANCE(526); + if (lookahead == '+') ADVANCE(378); + if (lookahead == '>') ADVANCE(527); END_STATE(); case 291: - if (lookahead == '+') ADVANCE(379); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '-') ADVANCE(351); END_STATE(); case 292: - if (lookahead == '-') ADVANCE(352); + if (lookahead == '-') ADVANCE(379); END_STATE(); case 293: - if (lookahead == '-') ADVANCE(380); + if (lookahead == '-') ADVANCE(379); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1582); END_STATE(); case 294: - if (lookahead == '-') ADVANCE(380); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1583); + if (lookahead == '-') ADVANCE(511); END_STATE(); case 295: - if (lookahead == '-') ADVANCE(512); + if (lookahead == '-') ADVANCE(1506); END_STATE(); case 296: - if (lookahead == '-') ADVANCE(1507); + if (lookahead == '-') ADVANCE(1506); + if (lookahead == '.') ADVANCE(333); + if (lookahead == '>') ADVANCE(1486); + if (lookahead == '_') ADVANCE(307); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(538); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); END_STATE(); case 297: - if (lookahead == '-') ADVANCE(1507); - if (lookahead == '.') ADVANCE(334); - if (lookahead == '>') ADVANCE(1487); - if (lookahead == '_') ADVANCE(308); + if (lookahead == '-') ADVANCE(1506); + if (lookahead == '.') ADVANCE(333); + if (lookahead == '_') ADVANCE(307); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + lookahead == 'i') ADVANCE(538); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); END_STATE(); case 298: - if (lookahead == '-') ADVANCE(1507); - if (lookahead == '.') ADVANCE(334); - if (lookahead == '_') ADVANCE(308); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if (lookahead == '-') ADVANCE(1506); + if (lookahead == '>') ADVANCE(1486); END_STATE(); case 299: - if (lookahead == '-') ADVANCE(1507); - if (lookahead == '>') ADVANCE(1487); + if (lookahead == '-') ADVANCE(432); END_STATE(); case 300: - if (lookahead == '-') ADVANCE(433); + if (lookahead == '-') ADVANCE(489); END_STATE(); case 301: - if (lookahead == '-') ADVANCE(490); + if (lookahead == '-') ADVANCE(559); END_STATE(); case 302: - if (lookahead == '-') ADVANCE(560); + if (lookahead == '-') ADVANCE(512); END_STATE(); case 303: if (lookahead == '-') ADVANCE(513); END_STATE(); case 304: - if (lookahead == '-') ADVANCE(514); + if (lookahead == '-') ADVANCE(449); END_STATE(); case 305: - if (lookahead == '-') ADVANCE(450); + if (lookahead == '-') ADVANCE(514); END_STATE(); case 306: - if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(333); + if (lookahead == '_') ADVANCE(307); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(538); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); END_STATE(); case 307: - if (lookahead == '.') ADVANCE(334); - if (lookahead == '_') ADVANCE(308); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if (lookahead == '.') ADVANCE(333); + if (lookahead == '_') ADVANCE(307); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); END_STATE(); case 308: - if (lookahead == '.') ADVANCE(334); - if (lookahead == '_') ADVANCE(308); + if (lookahead == '.') ADVANCE(1529); + if (lookahead == '_') ADVANCE(337); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); END_STATE(); case 309: - if (lookahead == '.') ADVANCE(1530); - if (lookahead == '_') ADVANCE(338); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); + if (lookahead == '.') ADVANCE(1504); END_STATE(); case 310: - if (lookahead == '.') ADVANCE(1505); + if (lookahead == '.') ADVANCE(309); END_STATE(); case 311: - if (lookahead == '.') ADVANCE(310); + if (lookahead == '.') ADVANCE(309); + if (lookahead == '_') ADVANCE(334); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); END_STATE(); case 312: - if (lookahead == '.') ADVANCE(310); - if (lookahead == '_') ADVANCE(335); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '_') ADVANCE(312); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); END_STATE(); case 313: - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(313); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if (lookahead == '2') ADVANCE(547); + if (lookahead == '0' || + lookahead == '1') ADVANCE(553); END_STATE(); case 314: - if (lookahead == '2') ADVANCE(548); - if (lookahead == '0' || - lookahead == '1') ADVANCE(554); + if (lookahead == ':') ADVANCE(554); END_STATE(); case 315: if (lookahead == ':') ADVANCE(555); END_STATE(); case 316: - if (lookahead == ':') ADVANCE(556); + if (lookahead == ';') ADVANCE(1738); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(316); END_STATE(); case 317: - if (lookahead == ';') ADVANCE(1739); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(317); + if (lookahead == '=') ADVANCE(1156); + if (lookahead == '~') ADVANCE(1138); END_STATE(); case 318: - if (lookahead == '=') ADVANCE(1157); - if (lookahead == '~') ADVANCE(1139); + if (lookahead == '=') ADVANCE(1570); + if (lookahead == '~') ADVANCE(1576); END_STATE(); case 319: - if (lookahead == '=') ADVANCE(1571); - if (lookahead == '~') ADVANCE(1577); + if (lookahead == '=') ADVANCE(1569); + if (lookahead == '>') ADVANCE(1522); + if (lookahead == '~') ADVANCE(1575); END_STATE(); case 320: - if (lookahead == '=') ADVANCE(1570); - if (lookahead == '>') ADVANCE(1523); - if (lookahead == '~') ADVANCE(1576); + if (lookahead == '=') ADVANCE(1569); + if (lookahead == '~') ADVANCE(1575); END_STATE(); case 321: - if (lookahead == '=') ADVANCE(1570); - if (lookahead == '~') ADVANCE(1576); + if (lookahead == '>') ADVANCE(1522); END_STATE(); case 322: - if (lookahead == '>') ADVANCE(1523); + if (lookahead == '>') ADVANCE(1771); END_STATE(); case 323: - if (lookahead == '>') ADVANCE(1772); + if (lookahead == '>') ADVANCE(1769); END_STATE(); case 324: - if (lookahead == '>') ADVANCE(1770); + if (lookahead == '>') ADVANCE(1765); END_STATE(); case 325: - if (lookahead == '>') ADVANCE(1766); + if (lookahead == '>') ADVANCE(1767); END_STATE(); case 326: - if (lookahead == '>') ADVANCE(1768); + if (lookahead == '>') ADVANCE(524); END_STATE(); case 327: - if (lookahead == '>') ADVANCE(525); + if (lookahead == '>') ADVANCE(526); END_STATE(); case 328: - if (lookahead == '>') ADVANCE(527); + if (lookahead == '>') ADVANCE(528); END_STATE(); case 329: if (lookahead == '>') ADVANCE(529); END_STATE(); case 330: - if (lookahead == '>') ADVANCE(530); + if (lookahead == 'I') ADVANCE(533); + if (lookahead == 'i') ADVANCE(533); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1675); END_STATE(); case 331: - if (lookahead == 'I') ADVANCE(534); - if (lookahead == 'i') ADVANCE(534); + if (lookahead == 'I') ADVANCE(533); + if (lookahead == 'i') ADVANCE(353); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); + lookahead == 'b') ADVANCE(1675); END_STATE(); case 332: - if (lookahead == 'I') ADVANCE(534); - if (lookahead == 'i') ADVANCE(354); + if (lookahead == 'I') ADVANCE(533); + if (lookahead == 'i') ADVANCE(418); + if (lookahead == 'o') ADVANCE(358); + if (lookahead == 's') ADVANCE(1680); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); + lookahead == 'b') ADVANCE(1675); END_STATE(); case 333: - if (lookahead == 'I') ADVANCE(534); - if (lookahead == 'i') ADVANCE(419); - if (lookahead == 'o') ADVANCE(359); - if (lookahead == 's') ADVANCE(1681); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); + if (lookahead == '_') ADVANCE(333); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); END_STATE(); case 334: if (lookahead == '_') ADVANCE(334); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); END_STATE(); case 335: if (lookahead == '_') ADVANCE(335); @@ -18632,210 +18571,209 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 336: if (lookahead == '_') ADVANCE(336); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); END_STATE(); case 337: if (lookahead == '_') ADVANCE(337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); END_STATE(); case 338: - if (lookahead == '_') ADVANCE(338); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); + if (lookahead == 'a') ADVANCE(468); END_STATE(); case 339: - if (lookahead == 'a') ADVANCE(469); + if (lookahead == 'a') ADVANCE(468); + if (lookahead == 'r') ADVANCE(1680); END_STATE(); case 340: - if (lookahead == 'a') ADVANCE(469); - if (lookahead == 'r') ADVANCE(1681); + if (lookahead == 'a') ADVANCE(410); END_STATE(); case 341: - if (lookahead == 'a') ADVANCE(411); + if (lookahead == 'a') ADVANCE(518); + if (lookahead == 'e') ADVANCE(383); END_STATE(); case 342: - if (lookahead == 'a') ADVANCE(519); - if (lookahead == 'e') ADVANCE(384); + if (lookahead == 'a') ADVANCE(459); END_STATE(); case 343: - if (lookahead == 'a') ADVANCE(460); + if (lookahead == 'a') ADVANCE(469); END_STATE(); case 344: - if (lookahead == 'a') ADVANCE(470); + if (lookahead == 'a') ADVANCE(416); END_STATE(); case 345: - if (lookahead == 'a') ADVANCE(417); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'i') ADVANCE(424); END_STATE(); case 346: - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'i') ADVANCE(425); + if (lookahead == 'a') ADVANCE(466); END_STATE(); case 347: - if (lookahead == 'a') ADVANCE(467); + if (lookahead == 'a') ADVANCE(480); END_STATE(); case 348: - if (lookahead == 'a') ADVANCE(481); + if (lookahead == 'a') ADVANCE(497); END_STATE(); case 349: - if (lookahead == 'a') ADVANCE(498); + if (lookahead == 'a') ADVANCE(499); END_STATE(); case 350: - if (lookahead == 'a') ADVANCE(500); + if (lookahead == 'a') ADVANCE(498); END_STATE(); case 351: - if (lookahead == 'a') ADVANCE(499); + if (lookahead == 'a') ADVANCE(425); + if (lookahead == 'o') ADVANCE(453); + if (lookahead == 's') ADVANCE(386); + if (lookahead == 'x') ADVANCE(438); END_STATE(); case 352: - if (lookahead == 'a') ADVANCE(426); - if (lookahead == 'o') ADVANCE(454); - if (lookahead == 's') ADVANCE(387); - if (lookahead == 'x') ADVANCE(439); + if (lookahead == 'a') ADVANCE(465); END_STATE(); case 353: - if (lookahead == 'a') ADVANCE(466); + if (lookahead == 'b') ADVANCE(1675); END_STATE(); case 354: - if (lookahead == 'b') ADVANCE(1676); + if (lookahead == 'c') ADVANCE(1680); END_STATE(); case 355: - if (lookahead == 'c') ADVANCE(1681); + if (lookahead == 'c') ADVANCE(385); END_STATE(); case 356: - if (lookahead == 'c') ADVANCE(386); + if (lookahead == 'c') ADVANCE(380); END_STATE(); case 357: - if (lookahead == 'c') ADVANCE(381); + if (lookahead == 'd') ADVANCE(1549); END_STATE(); case 358: - if (lookahead == 'd') ADVANCE(1550); + if (lookahead == 'd') ADVANCE(1593); END_STATE(); case 359: - if (lookahead == 'd') ADVANCE(1594); + if (lookahead == 'd') ADVANCE(1607); END_STATE(); case 360: - if (lookahead == 'd') ADVANCE(1608); + if (lookahead == 'd') ADVANCE(470); END_STATE(); case 361: - if (lookahead == 'd') ADVANCE(471); + if (lookahead == 'd') ADVANCE(508); END_STATE(); case 362: - if (lookahead == 'd') ADVANCE(509); + if (lookahead == 'd') ADVANCE(476); END_STATE(); case 363: - if (lookahead == 'd') ADVANCE(477); + if (lookahead == 'e') ADVANCE(1061); END_STATE(); case 364: - if (lookahead == 'e') ADVANCE(1062); + if (lookahead == 'e') ADVANCE(1085); END_STATE(); case 365: - if (lookahead == 'e') ADVANCE(1086); + if (lookahead == 'e') ADVANCE(1106); END_STATE(); case 366: - if (lookahead == 'e') ADVANCE(1107); + if (lookahead == 'e') ADVANCE(1109); END_STATE(); case 367: - if (lookahead == 'e') ADVANCE(1110); + if (lookahead == 'e') ADVANCE(1070); END_STATE(); case 368: - if (lookahead == 'e') ADVANCE(1071); + if (lookahead == 'e') ADVANCE(1578); END_STATE(); case 369: - if (lookahead == 'e') ADVANCE(1579); + if (lookahead == 'e') ADVANCE(1580); END_STATE(); case 370: - if (lookahead == 'e') ADVANCE(1581); + if (lookahead == 'e') ADVANCE(383); END_STATE(); case 371: - if (lookahead == 'e') ADVANCE(384); + if (lookahead == 'e') ADVANCE(1500); END_STATE(); case 372: - if (lookahead == 'e') ADVANCE(1501); + if (lookahead == 'e') ADVANCE(354); + if (lookahead == 't') ADVANCE(342); END_STATE(); case 373: - if (lookahead == 'e') ADVANCE(355); - if (lookahead == 't') ADVANCE(343); + if (lookahead == 'e') ADVANCE(323); END_STATE(); case 374: - if (lookahead == 'e') ADVANCE(324); + if (lookahead == 'e') ADVANCE(461); END_STATE(); case 375: - if (lookahead == 'e') ADVANCE(462); + if (lookahead == 'e') ADVANCE(327); END_STATE(); case 376: - if (lookahead == 'e') ADVANCE(328); + if (lookahead == 'e') ADVANCE(458); END_STATE(); case 377: - if (lookahead == 'e') ADVANCE(459); + if (lookahead == 'e') ADVANCE(460); END_STATE(); case 378: - if (lookahead == 'e') ADVANCE(461); + if (lookahead == 'e') ADVANCE(462); END_STATE(); case 379: - if (lookahead == 'e') ADVANCE(463); + if (lookahead == 'e') ADVANCE(427); + if (lookahead == 'h') ADVANCE(343); + if (lookahead == 'i') ADVANCE(421); + if (lookahead == 'l') ADVANCE(402); + if (lookahead == 's') ADVANCE(504); END_STATE(); case 380: - if (lookahead == 'e') ADVANCE(428); - if (lookahead == 'h') ADVANCE(344); - if (lookahead == 'i') ADVANCE(422); - if (lookahead == 'l') ADVANCE(403); - if (lookahead == 's') ADVANCE(505); + if (lookahead == 'e') ADVANCE(413); END_STATE(); case 381: - if (lookahead == 'e') ADVANCE(414); + if (lookahead == 'f') ADVANCE(1082); END_STATE(); case 382: - if (lookahead == 'f') ADVANCE(1083); + if (lookahead == 'f') ADVANCE(1082); + if (lookahead == 'n') ADVANCE(1100); END_STATE(); case 383: - if (lookahead == 'f') ADVANCE(1083); - if (lookahead == 'n') ADVANCE(1101); + if (lookahead == 'f') ADVANCE(834); END_STATE(); case 384: - if (lookahead == 'f') ADVANCE(835); + if (lookahead == 'f') ADVANCE(1499); END_STATE(); case 385: - if (lookahead == 'f') ADVANCE(1500); + if (lookahead == 'h') ADVANCE(1091); END_STATE(); case 386: - if (lookahead == 'h') ADVANCE(1092); + if (lookahead == 'h') ADVANCE(408); END_STATE(); case 387: - if (lookahead == 'h') ADVANCE(409); + if (lookahead == 'h') ADVANCE(1565); END_STATE(); case 388: - if (lookahead == 'h') ADVANCE(1566); + if (lookahead == 'h') ADVANCE(1561); END_STATE(); case 389: - if (lookahead == 'h') ADVANCE(1562); + if (lookahead == 'h') ADVANCE(1567); END_STATE(); case 390: - if (lookahead == 'h') ADVANCE(1568); + if (lookahead == 'h') ADVANCE(1563); END_STATE(); case 391: - if (lookahead == 'h') ADVANCE(1564); + if (lookahead == 'h') ADVANCE(1496); END_STATE(); case 392: if (lookahead == 'h') ADVANCE(1497); END_STATE(); case 393: - if (lookahead == 'h') ADVANCE(1498); + if (lookahead == 'h') ADVANCE(299); END_STATE(); case 394: - if (lookahead == 'h') ADVANCE(300); + if (lookahead == 'i') ADVANCE(405); END_STATE(); case 395: - if (lookahead == 'i') ADVANCE(406); + if (lookahead == 'i') ADVANCE(479); END_STATE(); case 396: - if (lookahead == 'i') ADVANCE(480); + if (lookahead == 'i') ADVANCE(424); END_STATE(); case 397: - if (lookahead == 'i') ADVANCE(425); + if (lookahead == 'i') ADVANCE(487); END_STATE(); case 398: if (lookahead == 'i') ADVANCE(488); END_STATE(); case 399: - if (lookahead == 'i') ADVANCE(489); + if (lookahead == 'i') ADVANCE(492); END_STATE(); case 400: if (lookahead == 'i') ADVANCE(493); @@ -18844,150 +18782,150 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(494); END_STATE(); case 402: - if (lookahead == 'i') ADVANCE(495); + if (lookahead == 'i') ADVANCE(406); END_STATE(); case 403: - if (lookahead == 'i') ADVANCE(407); + if (lookahead == 'i') ADVANCE(346); END_STATE(); case 404: - if (lookahead == 'i') ADVANCE(347); + if (lookahead == 'k') ADVANCE(1680); END_STATE(); case 405: - if (lookahead == 'k') ADVANCE(1681); + if (lookahead == 'k') ADVANCE(368); END_STATE(); case 406: if (lookahead == 'k') ADVANCE(369); END_STATE(); case 407: - if (lookahead == 'k') ADVANCE(370); + if (lookahead == 'l') ADVANCE(1112); END_STATE(); case 408: - if (lookahead == 'l') ADVANCE(1113); + if (lookahead == 'l') ADVANCE(1603); + if (lookahead == 'r') ADVANCE(1605); END_STATE(); case 409: - if (lookahead == 'l') ADVANCE(1604); - if (lookahead == 'r') ADVANCE(1606); + if (lookahead == 'l') ADVANCE(517); END_STATE(); case 410: - if (lookahead == 'l') ADVANCE(518); + if (lookahead == 'l') ADVANCE(409); END_STATE(); case 411: - if (lookahead == 'l') ADVANCE(410); + if (lookahead == 'l') ADVANCE(403); END_STATE(); case 412: - if (lookahead == 'l') ADVANCE(404); + if (lookahead == 'l') ADVANCE(407); END_STATE(); case 413: - if (lookahead == 'l') ADVANCE(408); + if (lookahead == 'l') ADVANCE(414); END_STATE(); case 414: - if (lookahead == 'l') ADVANCE(415); + if (lookahead == 'l') ADVANCE(304); END_STATE(); case 415: - if (lookahead == 'l') ADVANCE(305); + if (lookahead == 'l') ADVANCE(367); END_STATE(); case 416: - if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'l') ADVANCE(472); END_STATE(); case 417: - if (lookahead == 'l') ADVANCE(473); + if (lookahead == 'n') ADVANCE(1067); END_STATE(); case 418: - if (lookahead == 'n') ADVANCE(1068); + if (lookahead == 'n') ADVANCE(1680); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1675); END_STATE(); case 419: - if (lookahead == 'n') ADVANCE(1681); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); + if (lookahead == 'n') ADVANCE(357); END_STATE(); case 420: - if (lookahead == 'n') ADVANCE(358); + if (lookahead == 'n') ADVANCE(1100); END_STATE(); case 421: - if (lookahead == 'n') ADVANCE(1101); + if (lookahead == 'n') ADVANCE(1555); END_STATE(); case 422: - if (lookahead == 'n') ADVANCE(1556); + if (lookahead == 'n') ADVANCE(1498); END_STATE(); case 423: - if (lookahead == 'n') ADVANCE(1499); + if (lookahead == 'n') ADVANCE(360); END_STATE(); case 424: - if (lookahead == 'n') ADVANCE(361); + if (lookahead == 'n') ADVANCE(340); END_STATE(); case 425: - if (lookahead == 'n') ADVANCE(341); + if (lookahead == 'n') ADVANCE(359); END_STATE(); case 426: - if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'n') ADVANCE(474); END_STATE(); case 427: - if (lookahead == 'n') ADVANCE(475); + if (lookahead == 'n') ADVANCE(362); END_STATE(); case 428: - if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'o') ADVANCE(506); END_STATE(); case 429: - if (lookahead == 'o') ADVANCE(507); + if (lookahead == 'o') ADVANCE(322); END_STATE(); case 430: - if (lookahead == 'o') ADVANCE(323); + if (lookahead == 'o') ADVANCE(452); END_STATE(); case 431: - if (lookahead == 'o') ADVANCE(453); + if (lookahead == 'o') ADVANCE(384); END_STATE(); case 432: - if (lookahead == 'o') ADVANCE(385); + if (lookahead == 'o') ADVANCE(446); END_STATE(); case 433: - if (lookahead == 'o') ADVANCE(447); + if (lookahead == 'o') ADVANCE(485); END_STATE(); case 434: - if (lookahead == 'o') ADVANCE(486); + if (lookahead == 'o') ADVANCE(485); + if (lookahead == 's') ADVANCE(1680); END_STATE(); case 435: - if (lookahead == 'o') ADVANCE(486); - if (lookahead == 's') ADVANCE(1681); + if (lookahead == 'o') ADVANCE(358); END_STATE(); case 436: - if (lookahead == 'o') ADVANCE(359); + if (lookahead == 'o') ADVANCE(361); END_STATE(); case 437: - if (lookahead == 'o') ADVANCE(362); + if (lookahead == 'o') ADVANCE(326); END_STATE(); case 438: - if (lookahead == 'o') ADVANCE(327); + if (lookahead == 'o') ADVANCE(454); END_STATE(); case 439: - if (lookahead == 'o') ADVANCE(455); + if (lookahead == 'o') ADVANCE(426); END_STATE(); case 440: - if (lookahead == 'o') ADVANCE(427); + if (lookahead == 'o') ADVANCE(482); END_STATE(); case 441: if (lookahead == 'o') ADVANCE(483); + if (lookahead == 'u') ADVANCE(412); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(539); END_STATE(); case 442: - if (lookahead == 'o') ADVANCE(484); - if (lookahead == 'u') ADVANCE(413); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(540); + if (lookahead == 'o') ADVANCE(509); END_STATE(); case 443: - if (lookahead == 'o') ADVANCE(510); + if (lookahead == 'o') ADVANCE(464); END_STATE(); case 444: - if (lookahead == 'o') ADVANCE(465); + if (lookahead == 'p') ADVANCE(443); + if (lookahead == 't') ADVANCE(376); END_STATE(); case 445: - if (lookahead == 'p') ADVANCE(444); - if (lookahead == 't') ADVANCE(377); + if (lookahead == 'p') ADVANCE(371); END_STATE(); case 446: - if (lookahead == 'p') ADVANCE(372); + if (lookahead == 'p') ADVANCE(496); END_STATE(); case 447: - if (lookahead == 'p') ADVANCE(497); + if (lookahead == 'p') ADVANCE(348); END_STATE(); case 448: if (lookahead == 'p') ADVANCE(349); @@ -18996,194 +18934,194 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'p') ADVANCE(350); END_STATE(); case 450: - if (lookahead == 'p') ADVANCE(351); + if (lookahead == 'r') ADVANCE(1553); END_STATE(); case 451: - if (lookahead == 'r') ADVANCE(1554); + if (lookahead == 'r') ADVANCE(284); END_STATE(); case 452: - if (lookahead == 'r') ADVANCE(285); + if (lookahead == 'r') ADVANCE(1551); END_STATE(); case 453: - if (lookahead == 'r') ADVANCE(1552); + if (lookahead == 'r') ADVANCE(1611); END_STATE(); case 454: - if (lookahead == 'r') ADVANCE(1612); + if (lookahead == 'r') ADVANCE(1609); END_STATE(); case 455: - if (lookahead == 'r') ADVANCE(1610); + if (lookahead == 'r') ADVANCE(507); END_STATE(); case 456: - if (lookahead == 'r') ADVANCE(508); + if (lookahead == 'r') ADVANCE(289); END_STATE(); case 457: - if (lookahead == 'r') ADVANCE(290); + if (lookahead == 'r') ADVANCE(325); END_STATE(); case 458: - if (lookahead == 'r') ADVANCE(326); + if (lookahead == 'r') ADVANCE(417); END_STATE(); case 459: - if (lookahead == 'r') ADVANCE(418); + if (lookahead == 'r') ADVANCE(502); END_STATE(); case 460: - if (lookahead == 'r') ADVANCE(503); + if (lookahead == 'r') ADVANCE(422); END_STATE(); case 461: - if (lookahead == 'r') ADVANCE(423); + if (lookahead == 'r') ADVANCE(457); END_STATE(); case 462: - if (lookahead == 'r') ADVANCE(458); + if (lookahead == 'r') ADVANCE(463); END_STATE(); case 463: - if (lookahead == 'r') ADVANCE(464); + if (lookahead == 'r') ADVANCE(329); END_STATE(); case 464: - if (lookahead == 'r') ADVANCE(330); + if (lookahead == 'r') ADVANCE(481); END_STATE(); case 465: - if (lookahead == 'r') ADVANCE(482); + if (lookahead == 'r') ADVANCE(503); END_STATE(); case 466: - if (lookahead == 'r') ADVANCE(504); + if (lookahead == 's') ADVANCE(674); END_STATE(); case 467: - if (lookahead == 's') ADVANCE(675); + if (lookahead == 's') ADVANCE(1680); END_STATE(); case 468: - if (lookahead == 's') ADVANCE(1681); + if (lookahead == 's') ADVANCE(1557); END_STATE(); case 469: - if (lookahead == 's') ADVANCE(1558); + if (lookahead == 's') ADVANCE(1559); END_STATE(); case 470: - if (lookahead == 's') ADVANCE(1560); + if (lookahead == 's') ADVANCE(294); END_STATE(); case 471: - if (lookahead == 's') ADVANCE(295); + if (lookahead == 's') ADVANCE(364); END_STATE(); case 472: - if (lookahead == 's') ADVANCE(365); + if (lookahead == 's') ADVANCE(366); END_STATE(); case 473: - if (lookahead == 's') ADVANCE(367); + if (lookahead == 's') ADVANCE(363); END_STATE(); case 474: - if (lookahead == 's') ADVANCE(364); + if (lookahead == 's') ADVANCE(478); END_STATE(); case 475: - if (lookahead == 's') ADVANCE(479); + if (lookahead == 's') ADVANCE(302); END_STATE(); case 476: if (lookahead == 's') ADVANCE(303); END_STATE(); case 477: - if (lookahead == 's') ADVANCE(304); + if (lookahead == 's') ADVANCE(305); END_STATE(); case 478: - if (lookahead == 's') ADVANCE(306); + if (lookahead == 't') ADVANCE(686); END_STATE(); case 479: - if (lookahead == 't') ADVANCE(687); + if (lookahead == 't') ADVANCE(291); END_STATE(); case 480: - if (lookahead == 't') ADVANCE(292); + if (lookahead == 't') ADVANCE(355); END_STATE(); case 481: - if (lookahead == 't') ADVANCE(356); + if (lookahead == 't') ADVANCE(670); END_STATE(); case 482: - if (lookahead == 't') ADVANCE(671); + if (lookahead == 't') ADVANCE(293); END_STATE(); case 483: - if (lookahead == 't') ADVANCE(294); + if (lookahead == 't') ADVANCE(548); END_STATE(); case 484: - if (lookahead == 't') ADVANCE(549); + if (lookahead == 't') ADVANCE(342); END_STATE(); case 485: - if (lookahead == 't') ADVANCE(343); + if (lookahead == 't') ADVANCE(292); END_STATE(); case 486: - if (lookahead == 't') ADVANCE(293); + if (lookahead == 't') ADVANCE(278); END_STATE(); case 487: - if (lookahead == 't') ADVANCE(279); + if (lookahead == 't') ADVANCE(387); END_STATE(); case 488: if (lookahead == 't') ADVANCE(388); END_STATE(); case 489: - if (lookahead == 't') ADVANCE(389); + if (lookahead == 't') ADVANCE(519); END_STATE(); case 490: - if (lookahead == 't') ADVANCE(520); + if (lookahead == 't') ADVANCE(324); END_STATE(); case 491: - if (lookahead == 't') ADVANCE(325); + if (lookahead == 't') ADVANCE(290); END_STATE(); case 492: - if (lookahead == 't') ADVANCE(291); + if (lookahead == 't') ADVANCE(389); END_STATE(); case 493: if (lookahead == 't') ADVANCE(390); END_STATE(); case 494: - if (lookahead == 't') ADVANCE(391); + if (lookahead == 't') ADVANCE(393); END_STATE(); case 495: - if (lookahead == 't') ADVANCE(394); + if (lookahead == 't') ADVANCE(328); END_STATE(); case 496: - if (lookahead == 't') ADVANCE(329); + if (lookahead == 't') ADVANCE(300); END_STATE(); case 497: - if (lookahead == 't') ADVANCE(301); + if (lookahead == 't') ADVANCE(391); END_STATE(); case 498: if (lookahead == 't') ADVANCE(392); END_STATE(); case 499: - if (lookahead == 't') ADVANCE(393); + if (lookahead == 't') ADVANCE(501); END_STATE(); case 500: - if (lookahead == 't') ADVANCE(502); + if (lookahead == 't') ADVANCE(376); END_STATE(); case 501: if (lookahead == 't') ADVANCE(377); END_STATE(); case 502: - if (lookahead == 't') ADVANCE(378); + if (lookahead == 't') ADVANCE(475); END_STATE(); case 503: - if (lookahead == 't') ADVANCE(476); + if (lookahead == 't') ADVANCE(477); END_STATE(); case 504: - if (lookahead == 't') ADVANCE(478); + if (lookahead == 't') ADVANCE(352); END_STATE(); case 505: - if (lookahead == 't') ADVANCE(353); + if (lookahead == 'u') ADVANCE(520); + if (lookahead == 'x') ADVANCE(567); + if (lookahead != 0) ADVANCE(1726); END_STATE(); case 506: - if (lookahead == 'u') ADVANCE(521); - if (lookahead == 'x') ADVANCE(568); - if (lookahead != 0) ADVANCE(1727); + if (lookahead == 'u') ADVANCE(490); END_STATE(); case 507: - if (lookahead == 'u') ADVANCE(491); + if (lookahead == 'u') ADVANCE(365); END_STATE(); case 508: - if (lookahead == 'u') ADVANCE(366); + if (lookahead == 'u') ADVANCE(415); END_STATE(); case 509: - if (lookahead == 'u') ADVANCE(416); + if (lookahead == 'u') ADVANCE(495); END_STATE(); case 510: - if (lookahead == 'u') ADVANCE(496); + if (lookahead == 'u') ADVANCE(521); + if (lookahead == 'x') ADVANCE(568); + if (lookahead != 0) ADVANCE(1718); END_STATE(); case 511: - if (lookahead == 'u') ADVANCE(522); - if (lookahead == 'x') ADVANCE(569); - if (lookahead != 0) ADVANCE(1719); + if (lookahead == 'w') ADVANCE(397); END_STATE(); case 512: if (lookahead == 'w') ADVANCE(398); @@ -19198,2835 +19136,2832 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'w') ADVANCE(401); END_STATE(); case 516: - if (lookahead == 'w') ADVANCE(402); + if (lookahead == 'x') ADVANCE(500); END_STATE(); case 517: - if (lookahead == 'x') ADVANCE(501); + if (lookahead == 'y') ADVANCE(1094); END_STATE(); case 518: - if (lookahead == 'y') ADVANCE(1095); + if (lookahead == 'y') ADVANCE(1680); END_STATE(); case 519: - if (lookahead == 'y') ADVANCE(1681); + if (lookahead == 'y') ADVANCE(445); END_STATE(); case 520: - if (lookahead == 'y') ADVANCE(446); + if (lookahead == '{') ADVANCE(564); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(562); END_STATE(); case 521: - if (lookahead == '{') ADVANCE(565); + if (lookahead == '{') ADVANCE(566); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(563); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(569); END_STATE(); case 522: - if (lookahead == '{') ADVANCE(567); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(570); + if (lookahead == '|') ADVANCE(1477); END_STATE(); case 523: if (lookahead == '|') ADVANCE(1478); END_STATE(); case 524: - if (lookahead == '|') ADVANCE(1479); + if (lookahead == '|') ADVANCE(1482); END_STATE(); case 525: - if (lookahead == '|') ADVANCE(1483); + if (lookahead == '|') ADVANCE(1475); END_STATE(); case 526: - if (lookahead == '|') ADVANCE(1476); + if (lookahead == '|') ADVANCE(1481); END_STATE(); case 527: - if (lookahead == '|') ADVANCE(1482); + if (lookahead == '|') ADVANCE(1476); END_STATE(); case 528: - if (lookahead == '|') ADVANCE(1477); + if (lookahead == '|') ADVANCE(1479); END_STATE(); case 529: if (lookahead == '|') ADVANCE(1480); END_STATE(); case 530: - if (lookahead == '|') ADVANCE(1481); + if (lookahead == '}') ADVANCE(1726); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(530); END_STATE(); case 531: - if (lookahead == '}') ADVANCE(1727); + if (lookahead == '}') ADVANCE(1718); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(531); END_STATE(); case 532: - if (lookahead == '}') ADVANCE(1719); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(532); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(539); END_STATE(); case 533: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(540); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1675); END_STATE(); case 534: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1122); END_STATE(); case 535: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1123); + lookahead == 'f') ADVANCE(1120); END_STATE(); case 536: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1121); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(543); END_STATE(); case 537: if (lookahead == 'I' || lookahead == 'i') ADVANCE(544); END_STATE(); case 538: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(545); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(534); END_STATE(); case 539: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(535); + lookahead == 'n') ADVANCE(1126); END_STATE(); case 540: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1127); + lookahead == 'n') ADVANCE(536); END_STATE(); case 541: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(537); + lookahead == 'n') ADVANCE(535); END_STATE(); case 542: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(536); + lookahead == 'n') ADVANCE(537); END_STATE(); case 543: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(538); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(546); END_STATE(); case 544: if (lookahead == 'T' || - lookahead == 't') ADVANCE(547); + lookahead == 't') ADVANCE(545); END_STATE(); case 545: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(546); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1115); END_STATE(); case 546: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1116); + lookahead == 'y') ADVANCE(1121); END_STATE(); case 547: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1122); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1693); END_STATE(); case 548: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1694); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1582); END_STATE(); case 549: - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1583); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(315); END_STATE(); case 550: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1690); END_STATE(); case 551: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1691); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1689); END_STATE(); case 552: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1690); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1701); END_STATE(); case 553: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1702); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1693); END_STATE(); case 554: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(549); END_STATE(); case 555: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(550); END_STATE(); case 556: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(551); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1700); END_STATE(); case 557: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1701); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(301); END_STATE(); case 558: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(302); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(557); END_STATE(); case 559: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(556); END_STATE(); case 560: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(557); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(314); END_STATE(); case 561: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(315); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(560); END_STATE(); case 562: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(561); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(567); END_STATE(); case 563: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(568); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1726); END_STATE(); case 564: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1727); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(530); END_STATE(); case 565: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(531); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1718); END_STATE(); case 566: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1719); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(531); END_STATE(); case 567: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(532); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(563); END_STATE(); case 568: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(564); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(565); END_STATE(); case 569: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(566); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(568); END_STATE(); case 570: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(569); - END_STATE(); - case 571: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1741, - '"', 1708, - '#', 2213, - '$', 1494, - '%', 1756, - '&', 834, - '\'', 1711, - '(', 1490, - ')', 1491, - '*', 1535, - '+', 1598, - ',', 1492, - '-', 1509, - '.', 1744, - '/', 1593, - ':', 1736, - ';', 1474, - '<', 1572, - '=', 678, - '>', 1503, - '?', 1740, - '@', 1485, - '[', 1488, - ']', 1489, - '^', 1754, - '_', 1525, - '`', 1715, - '{', 1521, - '|', 1475, - '}', 1522, + '!', 1740, + '"', 1707, + '#', 2212, + '$', 1493, + '%', 1755, + '&', 833, + '\'', 1710, + '(', 1489, + ')', 1490, + '*', 1534, + '+', 1597, + ',', 1491, + '-', 1508, + '.', 1743, + '/', 1592, + ':', 1735, + ';', 1473, + '<', 1571, + '=', 677, + '>', 1502, + '?', 1739, + '@', 1484, + '[', 1487, + ']', 1488, + '^', 1753, + '_', 1524, + '`', 1714, + '{', 1520, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(571); + lookahead == ' ') SKIP(570); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1391); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1390); END_STATE(); - case 572: - if (eof) ADVANCE(666); + case 571: + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1741, - '"', 1708, - '#', 2213, - '\'', 1711, - ')', 1491, - '*', 1534, - '+', 707, - '-', 307, - '.', 1749, - ';', 1474, - '?', 1740, - 'I', 819, - 'N', 815, - '[', 1488, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 807, - 't', 781, - 'u', 794, - 'w', 757, - '}', 1522, + '!', 1740, + '"', 1707, + '#', 2212, + '\'', 1710, + ')', 1490, + '*', 1533, + '+', 706, + '-', 306, + '.', 1748, + ';', 1473, + '?', 1739, + 'I', 818, + 'N', 814, + '[', 1487, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 806, + 't', 780, + 'u', 793, + 'w', 756, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(572); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + lookahead == ' ') SKIP(571); + if (('0' <= 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(834); + (lookahead < '{' || '}' < lookahead)) ADVANCE(833); + END_STATE(); + case 572: + if (eof) ADVANCE(665); + ADVANCE_MAP( + '\n', 1470, + '\r', 1, + '!', 1740, + '"', 1707, + '#', 2212, + '\'', 1710, + ')', 1490, + '*', 1533, + '+', 706, + '-', 306, + '.', 1748, + ';', 1473, + 'I', 818, + 'N', 814, + '[', 1487, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 806, + 't', 780, + 'u', 793, + 'w', 756, + '}', 1521, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(572); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(833); END_STATE(); case 573: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1741, - '"', 1708, - '#', 2213, - '\'', 1711, - ')', 1491, - '*', 1534, - '+', 707, - '-', 307, - '.', 1749, - ';', 1474, - 'I', 819, - 'N', 815, - '[', 1488, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 807, - 't', 781, - 'u', 794, - 'w', 757, - '}', 1522, + '!', 1740, + '#', 2212, + '(', 1489, + ')', 1490, + '-', 298, + '.', 1742, + ':', 1485, + ';', 1473, + '=', 677, + '>', 1501, + '?', 1739, + '[', 1487, + 'a', 419, + 'e', 286, + 'i', 420, + 'o', 287, + 'x', 430, + '{', 1520, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(573); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); END_STATE(); case 574: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1741, - '#', 2213, - '(', 1490, - ')', 1491, - '-', 299, - '.', 1743, - ':', 1486, - ';', 1474, - '=', 678, - '>', 1502, - '?', 1740, - '[', 1488, - 'a', 420, - 'e', 287, - 'i', 421, - 'o', 288, - 'x', 431, - '{', 1521, - '|', 1475, - '}', 1522, + '!', 1740, + '#', 2212, + '(', 1489, + ')', 1490, + '-', 298, + '.', 1744, + ':', 1485, + ';', 1473, + '<', 1158, + '=', 677, + '>', 1501, + '?', 1739, + '@', 1503, + '[', 1487, + 'a', 419, + 'e', 286, + 'i', 420, + 'o', 287, + 'x', 430, + '{', 1520, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(574); + lookahead == ' ') SKIP(573); END_STATE(); case 575: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1741, - '#', 2213, - '(', 1490, - ')', 1491, - '-', 299, - '.', 1745, - ':', 1486, - ';', 1474, - '<', 1159, - '=', 678, - '>', 1502, - '?', 1740, - '@', 1504, - '[', 1488, - 'a', 420, - 'e', 287, - 'i', 421, - 'o', 288, - 'x', 431, - '{', 1521, - '|', 1475, - '}', 1522, + '!', 1740, + '#', 2212, + '(', 1489, + ')', 1490, + '-', 295, + '.', 1742, + ':', 1485, + ';', 1473, + '=', 679, + '>', 1501, + '?', 1739, + '[', 1487, + 'a', 419, + 'e', 286, + 'i', 382, + 'o', 287, + 'x', 430, + '{', 1520, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(574); + lookahead == ' ') SKIP(575); END_STATE(); case 576: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1741, - '#', 2213, - '(', 1490, - ')', 1491, - '-', 296, - '.', 1743, - ':', 1486, - ';', 1474, - '=', 680, - '>', 1502, - '?', 1740, - '[', 1488, - 'a', 420, - 'e', 287, - 'i', 383, - 'o', 288, - 'x', 431, - '{', 1521, - '|', 1475, - '}', 1522, + '!', 1740, + '#', 2212, + '(', 1489, + ')', 1490, + '-', 295, + '.', 1744, + ':', 1485, + ';', 1473, + '=', 679, + '>', 1501, + '?', 1739, + '[', 1487, + 'a', 419, + 'e', 286, + 'i', 382, + 'o', 287, + 'x', 430, + '{', 1520, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(576); + lookahead == ' ') SKIP(575); END_STATE(); case 577: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1741, - '#', 2213, - '(', 1490, - ')', 1491, - '-', 296, - '.', 1745, - ':', 1486, - ';', 1474, - '=', 680, - '>', 1502, - '?', 1740, - '[', 1488, - 'a', 420, - 'e', 287, - 'i', 383, - 'o', 288, - 'x', 431, - '{', 1521, - '|', 1475, - '}', 1522, + '!', 1740, + '#', 2212, + ')', 1490, + '.', 1744, + ';', 1473, + '=', 1751, + '?', 1739, + 'e', 1391, + 'o', 1392, + '|', 1474, + '}', 1521, + '\t', 1472, + ' ', 1472, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(576); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(1469); END_STATE(); case 578: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, '!', 1741, - '#', 2213, - ')', 1491, - '.', 1745, - ';', 1474, - '=', 1752, - '?', 1740, - 'e', 1392, - 'o', 1393, - '|', 1475, - '}', 1522, - '\t', 1473, - ' ', 1473, + '#', 2212, + '$', 1531, + '\'', 1713, + '(', 1583, + ')', 1490, + '*', 1535, + '+', 1600, + '-', 1517, + '.', 1744, + '/', 1590, + ':', 1735, + ';', 1473, + '<', 1572, + '=', 678, + '>', 1502, + '?', 1739, + '@', 1503, + ']', 1488, + '`', 1717, + 'a', 419, + 'b', 395, + 'c', 347, + 'd', 370, + 'e', 281, + 'f', 396, + 'h', 338, + 'i', 420, + 'l', 394, + 'm', 435, + 'n', 433, + 'o', 277, + 's', 484, + 'x', 430, + '{', 1520, + '|', 1474, + '}', 1521, ); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1470); + if (lookahead == '\t' || + lookahead == ' ') SKIP(581); END_STATE(); case 579: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1742, - '#', 2213, - '$', 1532, - '\'', 1714, - '(', 1584, - ')', 1491, - '*', 1536, - '+', 1601, - '-', 1518, - '.', 1745, - '/', 1591, - ':', 1736, - ';', 1474, - '<', 1573, - '=', 679, - '>', 1503, - '?', 1740, - '@', 1504, - ']', 1489, - '`', 1718, - 'a', 420, - 'b', 396, - 'c', 348, - 'd', 371, - 'e', 282, - 'f', 397, + '!', 1741, + '#', 2212, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1744, + '/', 1589, + ':', 1735, + ';', 1473, + '<', 1572, + '=', 319, + '>', 1502, + '?', 1739, + '@', 1484, + 'B', 1675, + 'E', 331, + 'G', 331, + 'K', 331, + 'M', 331, + 'P', 331, + 'T', 331, + '[', 1687, + 'a', 419, + 'b', 1677, + 'd', 341, + 'e', 279, + 'f', 396, + 'g', 330, 'h', 339, - 'i', 421, - 'l', 395, - 'm', 436, + 'i', 382, + 'k', 330, + 'l', 394, + 'm', 332, 'n', 434, - 'o', 278, - 's', 485, - 'x', 431, - '{', 1521, - '|', 1475, - '}', 1522, + 'o', 277, + 'p', 330, + 's', 372, + 't', 330, + 'u', 467, + 'w', 404, + 'x', 430, + '{', 1520, + '|', 1474, + '}', 1521, + 0xb5, 467, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(582); + lookahead == ' ') SKIP(580); END_STATE(); case 580: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1742, - '#', 2213, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1745, - '/', 1590, - ':', 1736, - ';', 1474, - '<', 1573, - '=', 320, - '>', 1503, - '?', 1740, - '@', 1485, - 'B', 1676, - 'E', 332, - 'G', 332, - 'K', 332, - 'M', 332, - 'P', 332, - 'T', 332, - '[', 1688, - 'a', 420, - 'b', 1678, - 'd', 342, - 'e', 280, - 'f', 397, - 'g', 331, - 'h', 340, - 'i', 383, - 'k', 331, - 'l', 395, - 'm', 333, - 'n', 435, - 'o', 278, - 'p', 331, - 's', 373, - 't', 331, - 'u', 468, - 'w', 405, - 'x', 431, - '{', 1521, - '|', 1475, - '}', 1522, - 0xb5, 468, + '!', 1741, + '#', 2212, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1742, + '/', 1589, + ':', 1735, + ';', 1473, + '<', 1572, + '=', 319, + '>', 1502, + '?', 1739, + '@', 1484, + 'a', 419, + 'b', 395, + 'd', 370, + 'e', 283, + 'f', 396, + 'h', 338, + 'i', 382, + 'l', 394, + 'm', 435, + 'n', 433, + 'o', 277, + 's', 484, + 'x', 430, + '{', 1520, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(581); + lookahead == ' ') SKIP(580); END_STATE(); case 581: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1742, - '#', 2213, - ')', 1491, + '!', 1741, + '#', 2212, + ')', 1490, '*', 1535, - '+', 1598, - '-', 1509, - '.', 1743, + '+', 1600, + '-', 1517, + '.', 1742, '/', 1590, - ':', 1736, - ';', 1474, - '<', 1573, - '=', 320, - '>', 1503, - '?', 1740, - '@', 1485, - 'a', 420, - 'b', 396, - 'd', 371, - 'e', 284, - 'f', 397, - 'h', 339, - 'i', 383, - 'l', 395, - 'm', 436, - 'n', 434, - 'o', 278, - 's', 485, - 'x', 431, - '{', 1521, - '|', 1475, - '}', 1522, + ':', 1735, + ';', 1473, + '<', 1572, + '=', 678, + '>', 1502, + '?', 1739, + ']', 1488, + 'a', 419, + 'b', 395, + 'c', 347, + 'd', 370, + 'e', 281, + 'f', 396, + 'h', 338, + 'i', 420, + 'l', 394, + 'm', 435, + 'n', 433, + 'o', 277, + 's', 484, + 'x', 430, + '{', 1520, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(581); END_STATE(); case 582: - if (eof) ADVANCE(666); - ADVANCE_MAP( - '\n', 1471, - '\r', 1, - '!', 1742, - '#', 2213, - ')', 1491, - '*', 1536, - '+', 1601, - '-', 1518, - '.', 1743, - '/', 1591, - ':', 1736, - ';', 1474, - '<', 1573, - '=', 679, - '>', 1503, - '?', 1740, - ']', 1489, - 'a', 420, - 'b', 396, - 'c', 348, - 'd', 371, - 'e', 282, - 'f', 397, - 'h', 339, - 'i', 421, - 'l', 395, - 'm', 436, - 'n', 434, - 'o', 278, - 's', 485, - 'x', 431, - '{', 1521, - '|', 1475, - '}', 1522, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(582); - END_STATE(); - case 583: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '$', 1493, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1599, - '-', 1516, - '.', 1627, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - '_', 1838, - 'a', 1890, - 'b', 1877, - 'e', 1797, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1788, - 's', 1924, - 'x', 1896, - '{', 1521, - '|', 1475, - '}', 1522, + '!', 1817, + '#', 2212, + '$', 1492, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1598, + '-', 1515, + '.', 1626, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + '_', 1837, + 'a', 1889, + 'b', 1876, + 'e', 1796, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1787, + 's', 1923, + 'x', 1895, + '{', 1520, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(615); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + lookahead == ' ') SKIP(614); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(1959); + (lookahead < '_' || 'b' < lookahead)) ADVANCE(1958); + END_STATE(); + case 583: + if (eof) ADVANCE(665); + ADVANCE_MAP( + '\n', 1470, + '\r', 1, + '!', 1817, + '#', 2212, + '$', 1492, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1598, + '-', 1515, + '.', 1626, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + '_', 1837, + 'a', 1889, + 'b', 1876, + 'e', 1800, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1802, + 's', 1923, + 'x', 1895, + '|', 1474, + '}', 1521, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(616); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1958); END_STATE(); case 584: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '$', 1493, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1599, - '-', 1516, - '.', 1627, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - '_', 1838, - 'a', 1890, - 'b', 1877, - 'e', 1801, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1803, - 's', 1924, - 'x', 1896, - '|', 1475, - '}', 1522, + '!', 1817, + '#', 2212, + '$', 1492, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1598, + '-', 1515, + '.', 1839, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + '_', 1837, + 'a', 1889, + 'b', 1876, + 'e', 1796, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1787, + 's', 1923, + 'x', 1895, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); + lookahead == ' ') SKIP(615); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1958); END_STATE(); case 585: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '$', 1493, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1599, - '-', 1516, - '.', 1840, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - '_', 1838, - 'a', 1890, - 'b', 1877, - 'e', 1797, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1788, - 's', 1924, - 'x', 1896, - '|', 1475, - '}', 1522, + '!', 1817, + '#', 2212, + '$', 1492, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1598, + '-', 1515, + '.', 1839, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + '_', 1837, + 'a', 1889, + 'b', 1876, + 'e', 1800, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1802, + 's', 1923, + 'x', 1895, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(616); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1958); END_STATE(); case 586: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '$', 1493, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1599, - '-', 1516, - '.', 1840, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - '_', 1838, - 'a', 1890, - 'b', 1877, - 'e', 1801, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1803, - 's', 1924, - 'x', 1896, - '|', 1475, - '}', 1522, + '!', 1817, + '#', 2212, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1617, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + 'B', 1675, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'a', 1889, + 'b', 1678, + 'd', 1848, + 'e', 1788, + 'g', 1833, + 'h', 1846, + 'i', 1887, + 'k', 1833, + 'l', 1875, + 'm', 1835, + 'n', 1896, + 'o', 1787, + 'p', 1833, + 's', 1862, + 't', 1833, + 'u', 1915, + 'w', 1882, + 'x', 1895, + '|', 1474, + '}', 1521, + 0xb5, 1915, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); + lookahead == ' ') SKIP(619); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 587: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1618, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - 'B', 1676, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'a', 1890, - 'b', 1679, - 'd', 1849, - 'e', 1789, - 'g', 1834, - 'h', 1847, - 'i', 1888, - 'k', 1834, - 'l', 1876, - 'm', 1836, - 'n', 1897, - 'o', 1788, - 'p', 1834, - 's', 1863, - 't', 1834, - 'u', 1916, - 'w', 1883, - 'x', 1896, - '|', 1475, - '}', 1522, - 0xb5, 1916, + '!', 1817, + '#', 2212, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1617, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + 'B', 1675, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'a', 1889, + 'b', 1678, + 'd', 1848, + 'e', 1790, + 'g', 1833, + 'h', 1846, + 'i', 1887, + 'k', 1833, + 'l', 1875, + 'm', 1835, + 'n', 1896, + 'o', 1802, + 'p', 1833, + 's', 1862, + 't', 1833, + 'u', 1915, + 'w', 1882, + 'x', 1895, + '|', 1474, + '}', 1521, + 0xb5, 1915, ); if (lookahead == '\t' || lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 588: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1618, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - 'B', 1676, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'a', 1890, - 'b', 1679, - 'd', 1849, - 'e', 1791, - 'g', 1834, + '!', 1817, + '#', 2212, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1617, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + 'E', 1843, + 'a', 1889, + 'b', 1876, + 'e', 1789, 'h', 1847, - 'i', 1888, - 'k', 1834, - 'l', 1876, - 'm', 1836, + 'i', 1887, + 'l', 1875, + 'm', 1898, 'n', 1897, - 'o', 1803, - 'p', 1834, - 's', 1863, - 't', 1834, - 'u', 1916, - 'w', 1883, - 'x', 1896, - '|', 1475, - '}', 1522, - 0xb5, 1916, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); - END_STATE(); - case 589: - if (eof) ADVANCE(666); - ADVANCE_MAP( - '\n', 1471, - '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1618, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - 'E', 1844, - 'a', 1890, - 'b', 1877, - 'e', 1790, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1788, - 's', 1924, - 'x', 1896, - '{', 1521, - '|', 1475, - '}', 1522, + 'o', 1787, + 's', 1923, + 'x', 1895, + '{', 1520, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); + lookahead == ' ') SKIP(618); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1959); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1958); + END_STATE(); + case 589: + if (eof) ADVANCE(665); + ADVANCE_MAP( + '\n', 1470, + '\r', 1, + '!', 1817, + '#', 2212, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1617, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + 'E', 1843, + 'a', 1889, + 'b', 1876, + 'e', 1792, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1802, + 's', 1923, + 'x', 1895, + '|', 1474, + '}', 1521, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 590: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1618, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - 'E', 1844, - 'a', 1890, - 'b', 1877, - 'e', 1793, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1803, - 's', 1924, - 'x', 1896, - '|', 1475, - '}', 1522, + '!', 1817, + '#', 2212, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1814, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + 'B', 1675, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + '_', 1837, + 'a', 1889, + 'b', 1678, + 'd', 1848, + 'e', 1788, + 'g', 1833, + 'h', 1846, + 'i', 1887, + 'k', 1833, + 'l', 1875, + 'm', 1835, + 'n', 1896, + 'o', 1787, + 'p', 1833, + 's', 1862, + 't', 1833, + 'u', 1915, + 'w', 1882, + 'x', 1895, + '|', 1474, + '}', 1521, + 0xb5, 1915, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == ' ') SKIP(619); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 591: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1815, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - 'B', 1676, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - '_', 1838, - 'a', 1890, - 'b', 1679, - 'd', 1849, - 'e', 1789, - 'g', 1834, - 'h', 1847, - 'i', 1888, - 'k', 1834, - 'l', 1876, - 'm', 1836, - 'n', 1897, - 'o', 1788, - 'p', 1834, - 's', 1863, - 't', 1834, - 'u', 1916, - 'w', 1883, - 'x', 1896, - '|', 1475, - '}', 1522, - 0xb5, 1916, + '!', 1817, + '#', 2212, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1814, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + 'B', 1675, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + '_', 1837, + 'a', 1889, + 'b', 1678, + 'd', 1848, + 'e', 1790, + 'g', 1833, + 'h', 1846, + 'i', 1887, + 'k', 1833, + 'l', 1875, + 'm', 1835, + 'n', 1896, + 'o', 1802, + 'p', 1833, + 's', 1862, + 't', 1833, + 'u', 1915, + 'w', 1882, + 'x', 1895, + '|', 1474, + '}', 1521, + 0xb5, 1915, ); if (lookahead == '\t' || lookahead == ' ') SKIP(620); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 592: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1815, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - 'B', 1676, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - '_', 1838, - 'a', 1890, - 'b', 1679, - 'd', 1849, - 'e', 1791, - 'g', 1834, - 'h', 1847, - 'i', 1888, - 'k', 1834, - 'l', 1876, - 'm', 1836, - 'n', 1897, - 'o', 1803, - 'p', 1834, - 's', 1863, - 't', 1834, - 'u', 1916, - 'w', 1883, - 'x', 1896, - '|', 1475, - '}', 1522, - 0xb5, 1916, + '!', 1817, + '#', 2212, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1814, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + 'B', 1675, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'a', 1889, + 'b', 1678, + 'd', 1848, + 'e', 1788, + 'g', 1833, + 'h', 1846, + 'i', 1887, + 'k', 1833, + 'l', 1875, + 'm', 1835, + 'n', 1896, + 'o', 1787, + 'p', 1833, + 's', 1862, + 't', 1833, + 'u', 1915, + 'w', 1882, + 'x', 1895, + '|', 1474, + '}', 1521, + 0xb5, 1915, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == ' ') SKIP(619); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 593: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1815, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - 'B', 1676, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'a', 1890, - 'b', 1679, - 'd', 1849, - 'e', 1789, - 'g', 1834, - 'h', 1847, - 'i', 1888, - 'k', 1834, - 'l', 1876, - 'm', 1836, - 'n', 1897, - 'o', 1788, - 'p', 1834, - 's', 1863, - 't', 1834, - 'u', 1916, - 'w', 1883, - 'x', 1896, - '|', 1475, - '}', 1522, - 0xb5, 1916, + '!', 1817, + '#', 2212, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1814, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + 'B', 1675, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'a', 1889, + 'b', 1678, + 'd', 1848, + 'e', 1790, + 'g', 1833, + 'h', 1846, + 'i', 1887, + 'k', 1833, + 'l', 1875, + 'm', 1835, + 'n', 1896, + 'o', 1802, + 'p', 1833, + 's', 1862, + 't', 1833, + 'u', 1915, + 'w', 1882, + 'x', 1895, + '|', 1474, + '}', 1521, + 0xb5, 1915, ); if (lookahead == '\t' || lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 594: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1815, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - 'B', 1676, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'a', 1890, - 'b', 1679, - 'd', 1849, - 'e', 1791, - 'g', 1834, - 'h', 1847, - 'i', 1888, - 'k', 1834, - 'l', 1876, - 'm', 1836, - 'n', 1897, - 'o', 1803, - 'p', 1834, - 's', 1863, - 't', 1834, - 'u', 1916, - 'w', 1883, - 'x', 1896, - '|', 1475, - '}', 1522, - 0xb5, 1916, + '!', 1817, + '#', 2212, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1814, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + 'B', 1675, + 'E', 1834, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'a', 1889, + 'b', 1678, + 'd', 1848, + 'e', 1795, + 'g', 1833, + 'h', 1846, + 'i', 1887, + 'k', 1833, + 'l', 1875, + 'm', 1835, + 'n', 1896, + 'o', 1787, + 'p', 1833, + 's', 1862, + 't', 1833, + 'u', 1915, + 'w', 1882, + 'x', 1895, + '|', 1474, + '}', 1521, + 0xb5, 1915, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == ' ') SKIP(619); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 595: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1815, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - 'B', 1676, - 'E', 1835, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'a', 1890, - 'b', 1679, - 'd', 1849, - 'e', 1796, - 'g', 1834, - 'h', 1847, - 'i', 1888, - 'k', 1834, - 'l', 1876, - 'm', 1836, - 'n', 1897, - 'o', 1788, - 'p', 1834, - 's', 1863, - 't', 1834, - 'u', 1916, - 'w', 1883, - 'x', 1896, - '|', 1475, - '}', 1522, - 0xb5, 1916, + '!', 1817, + '#', 2212, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1814, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + 'B', 1675, + 'E', 1834, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'a', 1889, + 'b', 1678, + 'd', 1848, + 'e', 1798, + 'g', 1833, + 'h', 1846, + 'i', 1887, + 'k', 1833, + 'l', 1875, + 'm', 1835, + 'n', 1896, + 'o', 1802, + 'p', 1833, + 's', 1862, + 't', 1833, + 'u', 1915, + 'w', 1882, + 'x', 1895, + '|', 1474, + '}', 1521, + 0xb5, 1915, ); if (lookahead == '\t' || lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 596: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1815, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - 'B', 1676, - 'E', 1835, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'a', 1890, - 'b', 1679, - 'd', 1849, - 'e', 1799, - 'g', 1834, + '!', 1817, + '#', 2212, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1814, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + 'E', 1843, + '_', 1837, + 'a', 1889, + 'b', 1876, + 'e', 1789, 'h', 1847, - 'i', 1888, - 'k', 1834, - 'l', 1876, - 'm', 1836, + 'i', 1887, + 'l', 1875, + 'm', 1898, 'n', 1897, - 'o', 1803, - 'p', 1834, - 's', 1863, - 't', 1834, - 'u', 1916, - 'w', 1883, - 'x', 1896, - '|', 1475, - '}', 1522, - 0xb5, 1916, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); - END_STATE(); - case 597: - if (eof) ADVANCE(666); - ADVANCE_MAP( - '\n', 1471, - '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1815, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - 'E', 1844, - '_', 1838, - 'a', 1890, - 'b', 1877, - 'e', 1790, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1788, - 's', 1924, - 'x', 1896, - '{', 1521, - '|', 1475, - '}', 1522, + 'o', 1787, + 's', 1923, + 'x', 1895, + '{', 1520, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + lookahead == ' ') SKIP(618); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(1959); + (lookahead < '_' || 'b' < lookahead)) ADVANCE(1958); END_STATE(); - case 598: - if (eof) ADVANCE(666); + case 597: + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1815, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - 'E', 1844, - '_', 1838, - 'a', 1890, - 'b', 1877, - 'e', 1793, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1803, - 's', 1924, - 'x', 1896, - '|', 1475, - '}', 1522, + '!', 1817, + '#', 2212, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1814, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + 'E', 1843, + '_', 1837, + 'a', 1889, + 'b', 1876, + 'e', 1792, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1802, + 's', 1923, + 'x', 1895, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == ' ') SKIP(620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); - case 599: - if (eof) ADVANCE(666); + case 598: + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1815, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - 'E', 1844, - 'a', 1890, - 'b', 1877, - 'e', 1790, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1788, - 's', 1924, - 'x', 1896, - '{', 1521, - '|', 1475, - '}', 1522, + '!', 1817, + '#', 2212, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1814, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + 'E', 1843, + 'a', 1889, + 'b', 1876, + 'e', 1789, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1787, + 's', 1923, + 'x', 1895, + '{', 1520, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); + lookahead == ' ') SKIP(618); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1959); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1958); END_STATE(); - case 600: - if (eof) ADVANCE(666); + case 599: + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1815, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - 'E', 1844, - 'a', 1890, - 'b', 1877, - 'e', 1793, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1803, - 's', 1924, - 'x', 1896, - '|', 1475, - '}', 1522, + '!', 1817, + '#', 2212, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1814, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + 'E', 1843, + 'a', 1889, + 'b', 1876, + 'e', 1792, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1802, + 's', 1923, + 'x', 1895, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); - case 601: - if (eof) ADVANCE(666); + case 600: + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1815, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - 'a', 1890, - 'b', 1877, - 'e', 1797, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1788, - 's', 1924, - 'x', 1896, - '{', 1521, - '|', 1475, - '}', 1522, + '!', 1817, + '#', 2212, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1814, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + 'a', 1889, + 'b', 1876, + 'e', 1796, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1787, + 's', 1923, + 'x', 1895, + '{', 1520, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); + lookahead == ' ') SKIP(618); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1959); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1958); END_STATE(); - case 602: - if (eof) ADVANCE(666); + case 601: + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1815, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - 'a', 1890, - 'b', 1877, - 'e', 1801, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1803, - 's', 1924, - 'x', 1896, - '|', 1475, - '}', 1522, + '!', 1817, + '#', 2212, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1814, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + 'a', 1889, + 'b', 1876, + 'e', 1800, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1802, + 's', 1923, + 'x', 1895, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); - case 603: - if (eof) ADVANCE(666); + case 602: + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1617, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - 'E', 1844, - 'a', 1890, - 'b', 1877, - 'e', 1790, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1788, - 's', 1924, - 'x', 1896, - '{', 1521, - '|', 1475, - '}', 1522, + '!', 1817, + '#', 2212, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1616, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + 'E', 1843, + 'a', 1889, + 'b', 1876, + 'e', 1789, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1787, + 's', 1923, + 'x', 1895, + '{', 1520, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); + lookahead == ' ') SKIP(618); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1959); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1958); + END_STATE(); + case 603: + if (eof) ADVANCE(665); + ADVANCE_MAP( + '\n', 1470, + '\r', 1, + '!', 1817, + '#', 2212, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1616, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + 'E', 1843, + 'a', 1889, + 'b', 1876, + 'e', 1792, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1802, + 's', 1923, + 'x', 1895, + '|', 1474, + '}', 1521, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 604: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1617, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - 'E', 1844, - 'a', 1890, - 'b', 1877, - 'e', 1793, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1803, - 's', 1924, - 'x', 1896, - '|', 1475, - '}', 1522, + '!', 1817, + '#', 2212, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + 'E', 1843, + '_', 1837, + 'a', 1889, + 'b', 1876, + 'e', 1789, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1787, + 's', 1923, + 'x', 1895, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == ' ') SKIP(619); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 605: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - 'E', 1844, - '_', 1838, - 'a', 1890, - 'b', 1877, - 'e', 1790, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1788, - 's', 1924, - 'x', 1896, - '|', 1475, - '}', 1522, + '!', 1817, + '#', 2212, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + 'E', 1843, + '_', 1837, + 'a', 1889, + 'b', 1876, + 'e', 1792, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1802, + 's', 1923, + 'x', 1895, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(620); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 606: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - 'E', 1844, - '_', 1838, - 'a', 1890, - 'b', 1877, - 'e', 1793, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1803, - 's', 1924, - 'x', 1896, - '|', 1475, - '}', 1522, + '!', 1817, + '#', 2212, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + 'E', 1843, + 'a', 1889, + 'b', 1876, + 'e', 1789, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1787, + 's', 1923, + 'x', 1895, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == ' ') SKIP(619); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 607: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - 'E', 1844, - 'a', 1890, - 'b', 1877, - 'e', 1790, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1788, - 's', 1924, - 'x', 1896, - '|', 1475, - '}', 1522, + '!', 1817, + '#', 2212, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + 'E', 1843, + 'a', 1889, + 'b', 1876, + 'e', 1792, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1802, + 's', 1923, + 'x', 1895, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 608: - if (eof) ADVANCE(666); - ADVANCE_MAP( - '\n', 1471, - '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - 'E', 1844, - 'a', 1890, - 'b', 1877, - 'e', 1793, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1803, - 's', 1924, - 'x', 1896, - '|', 1475, - '}', 1522, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); - END_STATE(); - case 609: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - 'a', 1890, - 'b', 1877, - 'e', 1797, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1788, - 's', 1924, - 'x', 1896, - '{', 1521, - '|', 1475, - '}', 1522, + '!', 1817, + '#', 2212, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + 'a', 1889, + 'b', 1876, + 'e', 1796, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1787, + 's', 1923, + 'x', 1895, + '{', 1520, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); + lookahead == ' ') SKIP(618); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1959); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1958); + END_STATE(); + case 609: + if (eof) ADVANCE(665); + ADVANCE_MAP( + '\n', 1470, + '\r', 1, + '!', 1817, + '#', 2212, + '(', 1583, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 1819, + '>', 1502, + 'a', 1889, + 'b', 1876, + 'e', 1800, + 'h', 1847, + 'i', 1887, + 'l', 1875, + 'm', 1898, + 'n', 1897, + 'o', 1802, + 's', 1923, + 'x', 1895, + '|', 1474, + '}', 1521, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 610: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1818, - '#', 2213, - '(', 1584, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 1820, - '>', 1503, - 'a', 1890, - 'b', 1877, - 'e', 1801, - 'h', 1848, - 'i', 1888, - 'l', 1876, - 'm', 1899, - 'n', 1898, - 'o', 1803, - 's', 1924, - 'x', 1896, - '|', 1475, - '}', 1522, + '!', 861, + '#', 2215, + ')', 1490, + '*', 1536, + '+', 1601, + '-', 1518, + '/', 1591, + ':', 1735, + ';', 1473, + '<', 1572, + '=', 320, + '>', 1502, + 'a', 948, + 'b', 928, + 'e', 838, + 'h', 884, + 'i', 949, + 'l', 927, + 'm', 962, + 'n', 963, + 'o', 837, + 's', 1008, + 'x', 961, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == ' ') SKIP(617); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1060); END_STATE(); case 611: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 862, - '#', 2216, - ')', 1491, - '*', 1537, - '+', 1602, - '-', 1519, - '/', 1592, - ':', 1736, - ';', 1474, - '<', 1573, - '=', 321, - '>', 1503, - 'a', 949, - 'b', 929, - 'e', 839, - 'h', 885, - 'i', 950, - 'l', 928, - 'm', 963, - 'n', 964, - 'o', 838, - 's', 1009, - 'x', 962, - '|', 1475, - '}', 1522, + '!', 861, + '#', 2215, + ')', 1490, + '*', 1536, + '+', 1601, + '-', 1518, + '/', 1591, + ';', 1473, + '<', 1572, + '=', 320, + '>', 1502, + 'a', 948, + 'b', 928, + 'e', 842, + 'h', 884, + 'i', 949, + 'l', 927, + 'm', 962, + 'n', 963, + 'o', 841, + 's', 1008, + 'x', 961, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1061); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1060); END_STATE(); case 612: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 862, - '#', 2216, - ')', 1491, - '*', 1537, - '+', 1602, - '-', 1519, - '/', 1592, - ';', 1474, - '<', 1573, - '=', 321, - '>', 1503, - 'a', 949, - 'b', 929, - 'e', 842, - 'h', 885, - 'i', 950, - 'l', 928, - 'm', 963, - 'n', 964, - 'o', 843, - 's', 1009, - 'x', 962, - '|', 1475, - '}', 1522, + '!', 318, + '#', 2212, + '$', 1492, + '(', 1489, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1742, + '/', 1589, + ':', 1485, + ';', 1473, + '<', 1572, + '=', 320, + '>', 1502, + '?', 1739, + '[', 1487, + 'a', 419, + 'b', 395, + 'c', 347, + 'e', 280, + 'f', 345, + 'h', 338, + 'i', 420, + 'l', 394, + 'm', 435, + 'n', 440, + 'o', 277, + 's', 484, + 't', 455, + 'x', 430, + '{', 1520, + '|', 1474, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1061); + lookahead == ' ') SKIP(612); END_STATE(); case 613: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 319, - '#', 2213, - '$', 1493, - '(', 1490, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1743, - '/', 1590, - ':', 1486, - ';', 1474, - '<', 1573, - '=', 321, - '>', 1503, - '?', 1740, - '[', 1488, - 'a', 420, - 'b', 396, - 'c', 348, - 'e', 281, - 'f', 346, - 'h', 339, - 'i', 421, - 'l', 395, - 'm', 436, - 'n', 441, - 'o', 278, - 's', 485, - 't', 456, - 'x', 431, - '{', 1521, - '|', 1475, + '!', 318, + '#', 2212, + '$', 1492, + '(', 1489, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '.', 1744, + '/', 1589, + ':', 1485, + ';', 1473, + '<', 1572, + '=', 320, + '>', 1502, + '?', 1739, + '[', 1487, + 'a', 419, + 'b', 395, + 'c', 347, + 'e', 280, + 'f', 345, + 'h', 338, + 'i', 420, + 'l', 394, + 'm', 435, + 'n', 440, + 'o', 277, + 's', 484, + 't', 455, + 'x', 430, + '{', 1520, + '|', 1474, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(613); + lookahead == ' ') SKIP(612); END_STATE(); case 614: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 319, - '#', 2213, - '$', 1493, - '(', 1490, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '.', 1745, - '/', 1590, - ':', 1486, - ';', 1474, - '<', 1573, - '=', 321, - '>', 1503, - '?', 1740, - '[', 1488, - 'a', 420, - 'b', 396, - 'c', 348, - 'e', 281, - 'f', 346, - 'h', 339, - 'i', 421, - 'l', 395, - 'm', 436, - 'n', 441, - 'o', 278, - 's', 485, - 't', 456, - 'x', 431, - '{', 1521, - '|', 1475, + '!', 318, + '#', 2212, + '$', 1492, + ')', 1490, + '*', 1534, + '+', 1599, + '-', 1516, + '.', 334, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 320, + '>', 1502, + 'a', 419, + 'b', 395, + 'e', 282, + 'h', 338, + 'i', 420, + 'l', 394, + 'm', 435, + 'n', 433, + 'o', 277, + 's', 484, + 'x', 430, + '{', 1520, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(613); + lookahead == ' ') SKIP(614); END_STATE(); case 615: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 319, - '#', 2213, - '$', 1493, - ')', 1491, - '*', 1535, - '+', 1600, - '-', 1517, - '.', 335, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 321, - '>', 1503, - 'a', 420, - 'b', 396, - 'e', 283, - 'h', 339, - 'i', 421, - 'l', 395, - 'm', 436, - 'n', 434, - 'o', 278, - 's', 485, - 'x', 431, - '{', 1521, - '|', 1475, - '}', 1522, + '!', 318, + '#', 2212, + '$', 1492, + ')', 1490, + '*', 1534, + '+', 1599, + '-', 1516, + '.', 334, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 320, + '>', 1502, + 'a', 419, + 'b', 395, + 'e', 282, + 'h', 338, + 'i', 420, + 'l', 394, + 'm', 435, + 'n', 433, + 'o', 277, + 's', 484, + 'x', 430, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(615); END_STATE(); case 616: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 319, - '#', 2213, - '$', 1493, - ')', 1491, - '*', 1535, - '+', 1600, - '-', 1517, - '.', 335, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 321, - '>', 1503, - 'a', 420, - 'b', 396, - 'e', 283, - 'h', 339, - 'i', 421, - 'l', 395, - 'm', 436, - 'n', 434, - 'o', 278, - 's', 485, - 'x', 431, - '|', 1475, - '}', 1522, + '!', 318, + '#', 2212, + '$', 1492, + ')', 1490, + '*', 1534, + '+', 1599, + '-', 1516, + '.', 334, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 320, + '>', 1502, + 'a', 419, + 'b', 395, + 'e', 285, + 'h', 338, + 'i', 420, + 'l', 394, + 'm', 435, + 'n', 433, + 'o', 287, + 's', 484, + 'x', 430, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(616); END_STATE(); case 617: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 319, - '#', 2213, - '$', 1493, - ')', 1491, - '*', 1535, - '+', 1600, - '-', 1517, - '.', 335, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 321, - '>', 1503, - 'a', 420, - 'b', 396, - 'e', 286, - 'h', 339, - 'i', 421, - 'l', 395, - 'm', 436, - 'n', 434, - 'o', 288, - 's', 485, - 'x', 431, - '|', 1475, - '}', 1522, + '!', 318, + '#', 2212, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '/', 1589, + ':', 1735, + ';', 1473, + '<', 1572, + '=', 320, + '>', 1502, + 'a', 419, + 'b', 395, + 'e', 282, + 'h', 338, + 'i', 420, + 'l', 394, + 'm', 435, + 'n', 433, + 'o', 277, + 's', 484, + 'x', 430, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(617); END_STATE(); case 618: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 319, - '#', 2213, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '/', 1590, - ':', 1736, - ';', 1474, - '<', 1573, - '=', 321, - '>', 1503, - 'a', 420, - 'b', 396, - 'e', 283, - 'h', 339, - 'i', 421, - 'l', 395, - 'm', 436, - 'n', 434, - 'o', 278, - 's', 485, - 'x', 431, - '|', 1475, - '}', 1522, + '!', 318, + '#', 2212, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 320, + '>', 1502, + 'a', 419, + 'b', 395, + 'e', 282, + 'h', 338, + 'i', 420, + 'l', 394, + 'm', 435, + 'n', 433, + 'o', 277, + 's', 484, + 'x', 430, + '{', 1520, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(618); END_STATE(); case 619: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 319, - '#', 2213, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 321, - '>', 1503, - 'a', 420, - 'b', 396, - 'e', 283, - 'h', 339, - 'i', 421, - 'l', 395, - 'm', 436, - 'n', 434, - 'o', 278, - 's', 485, - 'x', 431, - '{', 1521, - '|', 1475, - '}', 1522, + '!', 318, + '#', 2212, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 320, + '>', 1502, + 'a', 419, + 'b', 395, + 'e', 282, + 'h', 338, + 'i', 420, + 'l', 394, + 'm', 435, + 'n', 433, + 'o', 277, + 's', 484, + 'x', 430, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(619); END_STATE(); case 620: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 319, - '#', 2213, - ')', 1491, - '*', 1535, - '+', 1598, - '-', 1509, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 321, - '>', 1503, - 'a', 420, - 'b', 396, - 'e', 283, - 'h', 339, - 'i', 421, - 'l', 395, - 'm', 436, - 'n', 434, - 'o', 278, - 's', 485, - 'x', 431, - '|', 1475, - '}', 1522, + '!', 318, + '#', 2212, + ')', 1490, + '*', 1534, + '+', 1597, + '-', 1508, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 320, + '>', 1502, + 'a', 419, + 'b', 395, + 'e', 285, + 'h', 338, + 'i', 420, + 'l', 394, + 'm', 435, + 'n', 433, + 'o', 287, + 's', 484, + 'x', 430, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(620); END_STATE(); case 621: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 319, - '#', 2213, - ')', 1491, + '!', 318, + '#', 2212, + ')', 1490, '*', 1535, - '+', 1598, - '-', 1509, + '+', 1600, + '-', 1517, + '.', 1742, '/', 1590, - ';', 1474, - '<', 1573, - '=', 321, - '>', 1503, - 'a', 420, - 'b', 396, - 'e', 286, - 'h', 339, - 'i', 421, - 'l', 395, - 'm', 436, - 'n', 434, - 'o', 288, - 's', 485, - 'x', 431, - '|', 1475, - '}', 1522, + ':', 1485, + ';', 1473, + '<', 1572, + '=', 678, + '>', 1502, + 'a', 419, + 'b', 395, + 'e', 282, + 'h', 338, + 'i', 420, + 'l', 394, + 'm', 435, + 'n', 433, + 'o', 277, + 's', 484, + 'x', 430, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(621); END_STATE(); case 622: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 319, - '#', 2213, - ')', 1491, - '*', 1536, - '+', 1601, - '-', 1518, - '.', 1743, - '/', 1591, - ':', 1486, - ';', 1474, - '<', 1573, - '=', 679, - '>', 1503, - 'a', 420, - 'b', 396, - 'e', 283, - 'h', 339, - 'i', 421, - 'l', 395, - 'm', 436, - 'n', 434, - 'o', 278, - 's', 485, - 'x', 431, - '|', 1475, - '}', 1522, + '!', 318, + '#', 2212, + ')', 1490, + '*', 1535, + '+', 1600, + '-', 1517, + '.', 1744, + '/', 1590, + ':', 1485, + ';', 1473, + '<', 1572, + '=', 678, + '>', 1502, + 'a', 419, + 'b', 395, + 'e', 282, + 'h', 338, + 'i', 420, + 'l', 394, + 'm', 435, + 'n', 433, + 'o', 277, + 's', 484, + 'x', 430, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(622); + lookahead == ' ') SKIP(621); END_STATE(); case 623: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 319, - '#', 2213, - ')', 1491, - '*', 1536, - '+', 1601, - '-', 1518, - '.', 1745, - '/', 1591, - ':', 1486, - ';', 1474, - '<', 1573, - '=', 679, - '>', 1503, - 'a', 420, - 'b', 396, - 'e', 283, - 'h', 339, - 'i', 421, - 'l', 395, - 'm', 436, - 'n', 434, - 'o', 278, - 's', 485, - 'x', 431, - '|', 1475, - '}', 1522, + '!', 318, + '#', 2212, + '*', 1534, + '+', 1597, + '-', 1508, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 320, + '>', 1502, + 'a', 419, + 'b', 395, + 'e', 282, + 'h', 338, + 'i', 420, + 'l', 394, + 'm', 435, + 'n', 433, + 'o', 277, + 's', 484, + 'x', 430, + '|', 1474, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(622); + lookahead == ' ') SKIP(623); END_STATE(); case 624: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 319, - '#', 2213, - '*', 1535, - '+', 1598, - '-', 1509, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 321, - '>', 1503, - 'a', 420, - 'b', 396, - 'e', 283, - 'h', 339, - 'i', 421, - 'l', 395, - 'm', 436, - 'n', 434, - 'o', 278, - 's', 485, - 'x', 431, - '|', 1475, + '!', 318, + '#', 2212, + '*', 1534, + '+', 1597, + '-', 1508, + '/', 1589, + ';', 1473, + '<', 1572, + '=', 320, + '>', 1502, + 'a', 419, + 'b', 395, + 'e', 285, + 'h', 338, + 'i', 420, + 'l', 394, + 'm', 435, + 'n', 433, + 'o', 287, + 's', 484, + 'x', 430, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(624); END_STATE(); case 625: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 319, - '#', 2213, - '*', 1535, - '+', 1598, - '-', 1509, - '/', 1590, - ';', 1474, - '<', 1573, - '=', 321, - '>', 1503, - 'a', 420, - 'b', 396, - 'e', 286, - 'h', 339, - 'i', 421, - 'l', 395, - 'm', 436, - 'n', 434, - 'o', 288, - 's', 485, - 'x', 431, - '|', 1475, + '"', 1707, + '#', 2212, + '$', 1493, + '%', 1754, + '\'', 1710, + '(', 1489, + ')', 1638, + '+', 706, + '-', 1513, + '.', 701, + '0', 1645, + ':', 1485, + ';', 1473, + '=', 677, + '@', 1484, + 'I', 818, + 'N', 814, + '[', 1487, + '^', 1753, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 777, + 't', 780, + 'u', 793, + 'w', 752, + '{', 1520, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(625); + lookahead == ' ') SKIP(628); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1661); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead)) ADVANCE(833); END_STATE(); case 626: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2213, - '$', 1494, - '%', 1755, - '\'', 1711, - '(', 1490, - ')', 1639, - '+', 707, - '-', 1514, - '.', 702, - '0', 1646, - ':', 1486, - ';', 1474, - '=', 678, - '@', 1485, - 'I', 819, - 'N', 815, - '[', 1488, - '^', 1754, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 778, - 't', 781, - 'u', 794, - 'w', 753, - '{', 1521, - '|', 1475, - '}', 1522, + '"', 1707, + '#', 2212, + '$', 1493, + '%', 1754, + '\'', 1710, + '(', 1489, + ')', 1490, + '+', 706, + '-', 1513, + '.', 701, + '0', 1645, + ':', 1485, + ';', 1473, + '<', 1158, + '=', 677, + '>', 1501, + '@', 1503, + 'I', 818, + 'N', 814, + '[', 1487, + '^', 1753, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 695, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 777, + 'o', 697, + 't', 780, + 'u', 793, + 'w', 752, + '{', 1520, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(629); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); + lookahead == ' ') SKIP(627); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1661); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(834); + (lookahead < ']' || 'a' < lookahead)) ADVANCE(833); END_STATE(); case 627: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2213, - '$', 1494, - '%', 1755, - '\'', 1711, - '(', 1490, - ')', 1491, - '+', 707, - '-', 1514, - '.', 702, - '0', 1646, - ':', 1486, - ';', 1474, - '<', 1159, - '=', 678, - '>', 1502, - '@', 1504, - 'I', 819, - 'N', 815, - '[', 1488, - '^', 1754, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 696, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 778, - 'o', 698, - 't', 781, - 'u', 794, - 'w', 753, - '{', 1521, - '|', 1475, - '}', 1522, + '"', 1707, + '#', 2212, + '$', 1493, + '%', 1754, + '\'', 1710, + '(', 1489, + ')', 1490, + '+', 706, + '-', 1513, + '.', 701, + '0', 1645, + ':', 1485, + ';', 1473, + '=', 677, + '>', 1501, + 'I', 818, + 'N', 814, + '[', 1487, + '^', 1753, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 695, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 777, + 'o', 697, + 't', 780, + 'u', 793, + 'w', 752, + '{', 1520, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(628); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); + lookahead == ' ') SKIP(627); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1661); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(834); + (lookahead < '0' || '>' < lookahead) && + lookahead != '@' && + (lookahead < ']' || 'a' < lookahead)) ADVANCE(833); END_STATE(); case 628: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2213, - '$', 1494, - '%', 1755, - '\'', 1711, - '(', 1490, - ')', 1491, - '+', 707, - '-', 1514, - '.', 702, - '0', 1646, - ':', 1486, - ';', 1474, - '=', 678, - '>', 1502, - 'I', 819, - 'N', 815, - '[', 1488, - '^', 1754, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 696, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 778, - 'o', 698, - 't', 781, - 'u', 794, - 'w', 753, - '{', 1521, - '|', 1475, - '}', 1522, + '"', 1707, + '#', 2212, + '$', 1493, + '%', 1754, + '\'', 1710, + '(', 1489, + ')', 1490, + '+', 706, + '-', 1513, + '.', 701, + '0', 1645, + ':', 1485, + ';', 1473, + '=', 677, + '@', 1484, + 'I', 818, + 'N', 814, + '[', 1487, + '^', 1753, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 777, + 't', 780, + 'u', 793, + 'w', 752, + '{', 1520, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(628); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1661); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && - lookahead != '@' && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(834); + (lookahead < ']' || 'a' < lookahead)) ADVANCE(833); END_STATE(); case 629: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2213, - '$', 1494, - '%', 1755, - '\'', 1711, - '(', 1490, - ')', 1491, - '+', 707, - '-', 1514, - '.', 702, + '"', 1707, + '#', 2212, + '$', 1493, + '\'', 1710, + '(', 1489, + ')', 1490, + '+', 2024, + '-', 1510, + '.', 2023, '0', 1646, - ':', 1486, - ';', 1474, - '=', 678, - '@', 1485, - 'I', 819, - 'N', 815, - '[', 1488, - '^', 1754, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 778, - 't', 781, - 'u', 794, - 'w', 753, - '{', 1521, - '|', 1475, - '}', 1522, + ';', 1473, + 'N', 2071, + '[', 1487, + '_', 2036, + '`', 1714, + 'e', 2013, + 'f', 2039, + 'n', 2067, + 'o', 2014, + 't', 2054, + '{', 1520, + '|', 1474, + '}', 1521, + '\t', 1472, + ' ', 1472, + 'I', 2075, + 'i', 2075, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(629); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(834); + lookahead != ']') ADVANCE(2094); END_STATE(); case 630: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2213, - '$', 1494, - '\'', 1711, - '(', 1490, - ')', 1491, - '+', 2025, - '-', 1511, - '.', 2024, - '0', 1647, - ';', 1474, - 'N', 2072, - '[', 1488, - '_', 2037, - '`', 1715, - 'e', 2014, - 'f', 2040, - 'n', 2068, - 'o', 2015, - 't', 2055, - '{', 1521, - '|', 1475, - '}', 1522, - '\t', 1473, - ' ', 1473, - 'I', 2076, - 'i', 2076, + '"', 1707, + '#', 2212, + '\'', 1710, + '(', 1489, + ')', 1490, + '*', 1533, + '+', 706, + '-', 297, + '.', 722, + ';', 1473, + '=', 677, + 'I', 818, + 'N', 814, + '[', 1487, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 806, + 't', 780, + 'u', 793, + 'w', 756, + '{', 1520, + '}', 1521, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1663); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2095); + if (lookahead == '\t' || + lookahead == ' ') SKIP(630); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(833); END_STATE(); case 631: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2213, - '\'', 1711, - '(', 1490, - ')', 1491, - '*', 1534, - '+', 707, - '-', 298, - '.', 723, - ';', 1474, - '=', 678, - 'I', 819, - 'N', 815, - '[', 1488, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 807, - 't', 781, - 'u', 794, - 'w', 757, - '{', 1521, - '}', 1522, + '"', 1707, + '#', 2212, + '\'', 1710, + ')', 1490, + '*', 1533, + '+', 706, + '-', 306, + '.', 1748, + ';', 1473, + '?', 1739, + 'I', 818, + 'N', 814, + '[', 1487, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 806, + 't', 780, + 'u', 793, + 'w', 756, + '}', 1521, ); if (lookahead == '\t' || lookahead == ' ') SKIP(631); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); - END_STATE(); - case 632: - if (eof) ADVANCE(666); - ADVANCE_MAP( - '\n', 1471, - '\r', 1, - '"', 1708, - '#', 2213, - '\'', 1711, - ')', 1491, - '*', 1534, - '+', 707, - '-', 307, - '.', 1749, - ';', 1474, - '?', 1740, - 'I', 819, - 'N', 815, - '[', 1488, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 807, - 't', 781, - 'u', 794, - 'w', 757, - '}', 1522, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(632); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if (('0' <= 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(834); + (lookahead < '{' || '}' < lookahead)) ADVANCE(833); END_STATE(); - case 633: - if (eof) ADVANCE(666); + case 632: + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2213, - '\'', 1711, - ')', 1491, - '*', 1534, - '+', 707, - '-', 307, - '.', 1749, - ';', 1474, - 'I', 819, - 'N', 815, - '[', 1488, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 807, - 't', 781, - 'u', 794, - 'w', 757, - '}', 1522, + '"', 1707, + '#', 2212, + '\'', 1710, + ')', 1490, + '*', 1533, + '+', 706, + '-', 306, + '.', 1748, + ';', 1473, + 'I', 818, + 'N', 814, + '[', 1487, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 806, + 't', 780, + 'u', 793, + 'w', 756, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(834); + lookahead == ' ') SKIP(632); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(833); END_STATE(); - case 634: - if (eof) ADVANCE(666); + case 633: + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '"', 1708, - '#', 2215, - '$', 1494, - '%', 1755, - '\'', 1711, - '(', 1490, - '+', 707, - '-', 1514, - '.', 702, - '0', 1646, - ';', 1474, - '@', 1485, - 'I', 819, - 'N', 815, - '[', 1488, - '^', 1754, - '_', 721, - '`', 1715, - 'a', 760, - 'c', 726, - 'd', 737, - 'e', 767, - 'f', 727, - 'i', 720, - 'l', 745, - 'm', 731, - 'n', 778, - 't', 781, - 'u', 794, - 'w', 753, - '{', 1521, + '"', 1707, + '#', 2214, + '$', 1493, + '%', 1754, + '\'', 1710, + '(', 1489, + '+', 706, + '-', 1513, + '.', 701, + '0', 1645, + ';', 1473, + '@', 1484, + 'I', 818, + 'N', 814, + '[', 1487, + '^', 1753, + '_', 720, + '`', 1714, + 'a', 759, + 'c', 725, + 'd', 736, + 'e', 766, + 'f', 726, + 'i', 719, + 'l', 744, + 'm', 730, + 'n', 777, + 't', 780, + 'u', 793, + 'w', 752, + '{', 1520, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(634); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1662); + lookahead == ' ') SKIP(633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1661); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(834); + (lookahead < '{' || '}' < lookahead)) ADVANCE(833); END_STATE(); - case 635: - if (eof) ADVANCE(666); + case 634: + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - '(', 1584, - ')', 1491, - '.', 1627, - ';', 1474, - '[', 1688, - '_', 1838, - 'e', 1802, - 'o', 1804, - '|', 1475, - '}', 1522, - '\t', 1473, - ' ', 1473, - '+', 1816, - '-', 1816, + '#', 2212, + '$', 1492, + '(', 1583, + ')', 1490, + '.', 1626, + ';', 1473, + '[', 1687, + '_', 1837, + 'e', 1801, + 'o', 1803, + '|', 1474, + '}', 1521, + '\t', 1472, + ' ', 1472, + '+', 1815, + '-', 1815, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && @@ -22034,7835 +21969,7840 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 636: - if (eof) ADVANCE(666); + case 635: + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - '(', 1584, - ')', 1491, - '.', 1627, - ';', 1474, - '_', 1838, - 'a', 1890, - 'e', 1802, - 'o', 1803, - 'x', 1896, - '|', 1475, - '}', 1522, + '#', 2212, + '$', 1492, + '(', 1583, + ')', 1490, + '.', 1626, + ';', 1473, + '_', 1837, + 'a', 1889, + 'e', 1801, + 'o', 1802, + 'x', 1895, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(639); + lookahead == ' ') SKIP(638); if (lookahead == '+' || - lookahead == '-') ADVANCE(1816); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); + lookahead == '-') ADVANCE(1815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1958); END_STATE(); - case 637: - if (eof) ADVANCE(666); + case 636: + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - '(', 1584, - ')', 1491, - '.', 1840, - ';', 1474, - '_', 1838, - 'a', 1890, - 'e', 1802, - 'o', 1803, - 'x', 1896, - '|', 1475, - '}', 1522, + '#', 2212, + '$', 1492, + '(', 1583, + ')', 1490, + '.', 1839, + ';', 1473, + '_', 1837, + 'a', 1889, + 'e', 1801, + 'o', 1802, + 'x', 1895, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(639); + lookahead == ' ') SKIP(638); if (lookahead == '+' || - lookahead == '-') ADVANCE(1816); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); + lookahead == '-') ADVANCE(1815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1958); END_STATE(); - case 638: - if (eof) ADVANCE(666); + case 637: + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - '(', 1584, - ')', 1491, - '.', 1840, - ';', 1474, - '_', 1838, - 'e', 1802, - 'o', 1804, - '|', 1475, - '}', 1522, - '\t', 1473, - ' ', 1473, - '+', 1816, - '-', 1816, + '#', 2212, + '$', 1492, + '(', 1583, + ')', 1490, + '.', 1839, + ';', 1473, + '_', 1837, + 'e', 1801, + 'o', 1803, + '|', 1474, + '}', 1521, + '\t', 1472, + ' ', 1472, + '+', 1815, + '-', 1815, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1958); END_STATE(); - case 639: - if (eof) ADVANCE(666); + case 638: + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '$', 1493, - ')', 1491, - '.', 335, - ';', 1474, - 'a', 420, - 'e', 287, - 'o', 288, - 'x', 431, - '|', 1475, - '}', 1522, + '#', 2212, + '$', 1492, + ')', 1490, + '.', 334, + ';', 1473, + 'a', 419, + 'e', 286, + 'o', 287, + 'x', 430, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(639); + lookahead == ' ') SKIP(638); if (lookahead == '+' || - lookahead == '-') ADVANCE(313); + lookahead == '-') ADVANCE(312); END_STATE(); - case 640: - if (eof) ADVANCE(666); + case 639: + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - ')', 1491, - '.', 1618, - ';', 1474, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'a', 1890, - 'd', 1849, - 'e', 1792, - 'g', 1834, - 'h', 1903, - 'k', 1834, - 'm', 1837, - 'n', 1916, - 'o', 1803, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - 'x', 1896, - '|', 1475, - '}', 1522, - 0xb5, 1916, + '#', 2212, + '(', 1583, + ')', 1490, + '.', 1617, + ';', 1473, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'a', 1889, + 'd', 1848, + 'e', 1791, + 'g', 1833, + 'h', 1902, + 'k', 1833, + 'm', 1836, + 'n', 1915, + 'o', 1802, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + 'x', 1895, + '|', 1474, + '}', 1521, + 0xb5, 1915, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(665); + lookahead == ' ') SKIP(664); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); + END_STATE(); + case 640: + if (eof) ADVANCE(665); + ADVANCE_MAP( + '\n', 1470, + '\r', 1, + '#', 2212, + '(', 1583, + ')', 1490, + '.', 1617, + ';', 1473, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'd', 1848, + 'e', 1791, + 'g', 1833, + 'h', 1902, + 'k', 1833, + 'm', 1836, + 'n', 1915, + 'o', 1803, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + '|', 1474, + '}', 1521, + 0xb5, 1915, + '\t', 1472, + ' ', 1472, + 'B', 1675, + 'b', 1675, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 641: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - ')', 1491, - '.', 1618, - ';', 1474, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'd', 1849, - 'e', 1792, - 'g', 1834, - 'h', 1903, - 'k', 1834, - 'm', 1837, - 'n', 1916, - 'o', 1804, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - '|', 1475, - '}', 1522, - 0xb5, 1916, - '\t', 1473, - ' ', 1473, - 'B', 1676, - 'b', 1676, + '#', 2212, + '(', 1583, + ')', 1490, + '.', 1617, + ';', 1473, + 'E', 1843, + 'a', 1889, + 'e', 1793, + 'o', 1802, + 'x', 1895, + '|', 1474, + '}', 1521, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '\t' || + lookahead == ' ') SKIP(664); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 642: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - ')', 1491, - '.', 1618, - ';', 1474, - 'E', 1844, - 'a', 1890, - 'e', 1794, + '#', 2212, + '(', 1583, + ')', 1490, + '.', 1617, + ';', 1473, + 'E', 1843, + 'e', 1793, 'o', 1803, - 'x', 1896, - '|', 1475, - '}', 1522, + '|', 1474, + '}', 1521, + '\t', 1472, + ' ', 1472, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(665); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 643: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - ')', 1491, - '.', 1618, - ';', 1474, - 'E', 1844, - 'e', 1794, - 'o', 1804, - '|', 1475, - '}', 1522, - '\t', 1473, - ' ', 1473, + '#', 2212, + '(', 1583, + ')', 1490, + '.', 1814, + ';', 1473, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + '_', 1837, + 'a', 1889, + 'd', 1848, + 'e', 1791, + 'g', 1833, + 'h', 1902, + 'k', 1833, + 'm', 1836, + 'n', 1915, + 'o', 1802, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + 'x', 1895, + '|', 1474, + '}', 1521, + 0xb5, 1915, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '\t' || + lookahead == ' ') SKIP(664); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 644: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - ')', 1491, - '.', 1815, - ';', 1474, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - '_', 1838, - 'a', 1890, - 'd', 1849, - 'e', 1792, - 'g', 1834, - 'h', 1903, - 'k', 1834, - 'm', 1837, - 'n', 1916, + '#', 2212, + '(', 1583, + ')', 1490, + '.', 1814, + ';', 1473, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + '_', 1837, + 'd', 1848, + 'e', 1791, + 'g', 1833, + 'h', 1902, + 'k', 1833, + 'm', 1836, + 'n', 1915, 'o', 1803, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - 'x', 1896, - '|', 1475, - '}', 1522, - 0xb5, 1916, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + '|', 1474, + '}', 1521, + 0xb5, 1915, + '\t', 1472, + ' ', 1472, + 'B', 1675, + 'b', 1675, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(665); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 645: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - ')', 1491, - '.', 1815, - ';', 1474, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - '_', 1838, - 'd', 1849, - 'e', 1792, - 'g', 1834, - 'h', 1903, - 'k', 1834, - 'm', 1837, - 'n', 1916, - 'o', 1804, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - '|', 1475, - '}', 1522, - 0xb5, 1916, - '\t', 1473, - ' ', 1473, - 'B', 1676, - 'b', 1676, + '#', 2212, + '(', 1583, + ')', 1490, + '.', 1814, + ';', 1473, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'a', 1889, + 'd', 1848, + 'e', 1791, + 'g', 1833, + 'h', 1902, + 'k', 1833, + 'm', 1836, + 'n', 1915, + 'o', 1802, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + 'x', 1895, + '|', 1474, + '}', 1521, + 0xb5, 1915, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '\t' || + lookahead == ' ') SKIP(664); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 646: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - ')', 1491, - '.', 1815, - ';', 1474, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'a', 1890, - 'd', 1849, - 'e', 1792, - 'g', 1834, - 'h', 1903, - 'k', 1834, - 'm', 1837, - 'n', 1916, + '#', 2212, + '(', 1583, + ')', 1490, + '.', 1814, + ';', 1473, + 'E', 1831, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'd', 1848, + 'e', 1791, + 'g', 1833, + 'h', 1902, + 'k', 1833, + 'm', 1836, + 'n', 1915, 'o', 1803, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - 'x', 1896, - '|', 1475, - '}', 1522, - 0xb5, 1916, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + '|', 1474, + '}', 1521, + 0xb5, 1915, + '\t', 1472, + ' ', 1472, + 'B', 1675, + 'b', 1675, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(665); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 647: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - ')', 1491, - '.', 1815, - ';', 1474, - 'E', 1832, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'd', 1849, - 'e', 1792, - 'g', 1834, - 'h', 1903, - 'k', 1834, - 'm', 1837, - 'n', 1916, - 'o', 1804, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - '|', 1475, - '}', 1522, - 0xb5, 1916, - '\t', 1473, - ' ', 1473, - 'B', 1676, - 'b', 1676, + '#', 2212, + '(', 1583, + ')', 1490, + '.', 1814, + ';', 1473, + 'E', 1834, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'a', 1889, + 'd', 1848, + 'e', 1799, + 'g', 1833, + 'h', 1902, + 'k', 1833, + 'm', 1836, + 'n', 1915, + 'o', 1802, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + 'x', 1895, + '|', 1474, + '}', 1521, + 0xb5, 1915, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '\t' || + lookahead == ' ') SKIP(664); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 648: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - ')', 1491, - '.', 1815, - ';', 1474, - 'E', 1835, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'a', 1890, - 'd', 1849, - 'e', 1800, - 'g', 1834, - 'h', 1903, - 'k', 1834, - 'm', 1837, - 'n', 1916, + '#', 2212, + '(', 1583, + ')', 1490, + '.', 1814, + ';', 1473, + 'E', 1834, + 'G', 1834, + 'K', 1834, + 'M', 1834, + 'P', 1834, + 'T', 1834, + 'd', 1848, + 'e', 1799, + 'g', 1833, + 'h', 1902, + 'k', 1833, + 'm', 1836, + 'n', 1915, 'o', 1803, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - 'x', 1896, - '|', 1475, - '}', 1522, - 0xb5, 1916, + 'p', 1833, + 's', 1863, + 't', 1833, + 'u', 1915, + 'w', 1882, + '|', 1474, + '}', 1521, + 0xb5, 1915, + '\t', 1472, + ' ', 1472, + 'B', 1675, + 'b', 1675, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(665); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 649: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - ')', 1491, - '.', 1815, - ';', 1474, - 'E', 1835, - 'G', 1835, - 'K', 1835, - 'M', 1835, - 'P', 1835, - 'T', 1835, - 'd', 1849, - 'e', 1800, - 'g', 1834, - 'h', 1903, - 'k', 1834, - 'm', 1837, - 'n', 1916, - 'o', 1804, - 'p', 1834, - 's', 1864, - 't', 1834, - 'u', 1916, - 'w', 1883, - '|', 1475, - '}', 1522, - 0xb5, 1916, - '\t', 1473, - ' ', 1473, - 'B', 1676, - 'b', 1676, + '#', 2212, + '(', 1583, + ')', 1490, + '.', 1814, + ';', 1473, + 'E', 1843, + '_', 1837, + 'a', 1889, + 'e', 1793, + 'o', 1802, + 'x', 1895, + '|', 1474, + '}', 1521, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '\t' || + lookahead == ' ') SKIP(664); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 650: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - ')', 1491, - '.', 1815, - ';', 1474, - 'E', 1844, - '_', 1838, - 'a', 1890, - 'e', 1794, + '#', 2212, + '(', 1583, + ')', 1490, + '.', 1814, + ';', 1473, + 'E', 1843, + '_', 1837, + 'e', 1793, 'o', 1803, - 'x', 1896, - '|', 1475, - '}', 1522, + '|', 1474, + '}', 1521, + '\t', 1472, + ' ', 1472, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(665); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 651: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - ')', 1491, - '.', 1815, - ';', 1474, - 'E', 1844, - '_', 1838, - 'e', 1794, - 'o', 1804, - '|', 1475, - '}', 1522, - '\t', 1473, - ' ', 1473, + '#', 2212, + '(', 1583, + ')', 1490, + '.', 1814, + ';', 1473, + 'E', 1843, + 'a', 1889, + 'e', 1793, + 'o', 1802, + 'x', 1895, + '|', 1474, + '}', 1521, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '\t' || + lookahead == ' ') SKIP(664); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 652: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - ')', 1491, - '.', 1815, - ';', 1474, - 'E', 1844, - 'a', 1890, - 'e', 1794, + '#', 2212, + '(', 1583, + ')', 1490, + '.', 1814, + ';', 1473, + 'E', 1843, + 'e', 1793, 'o', 1803, - 'x', 1896, - '|', 1475, - '}', 1522, + '|', 1474, + '}', 1521, + '\t', 1472, + ' ', 1472, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(665); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 653: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - ')', 1491, - '.', 1815, - ';', 1474, - 'E', 1844, - 'e', 1794, - 'o', 1804, - '|', 1475, - '}', 1522, - '\t', 1473, - ' ', 1473, + '#', 2212, + '(', 1583, + ')', 1490, + '.', 1814, + ';', 1473, + 'a', 1889, + 'e', 1801, + 'o', 1802, + 'x', 1895, + '|', 1474, + '}', 1521, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '\t' || + lookahead == ' ') SKIP(664); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 654: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - ')', 1491, - '.', 1815, - ';', 1474, - 'a', 1890, - 'e', 1802, + '#', 2212, + '(', 1583, + ')', 1490, + '.', 1814, + ';', 1473, + 'e', 1801, 'o', 1803, - 'x', 1896, - '|', 1475, - '}', 1522, + '|', 1474, + '}', 1521, + '\t', 1472, + ' ', 1472, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(665); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 655: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - ')', 1491, - '.', 1815, - ';', 1474, - 'e', 1802, - 'o', 1804, - '|', 1475, - '}', 1522, - '\t', 1473, - ' ', 1473, + '#', 2212, + '(', 1583, + ')', 1490, + '.', 1616, + ';', 1473, + 'E', 1843, + 'a', 1889, + 'e', 1793, + 'o', 1802, + 'x', 1895, + '|', 1474, + '}', 1521, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '\t' || + lookahead == ' ') SKIP(664); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 656: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - ')', 1491, - '.', 1617, - ';', 1474, - 'E', 1844, - 'a', 1890, - 'e', 1794, + '#', 2212, + '(', 1583, + ')', 1490, + '.', 1616, + ';', 1473, + 'E', 1843, + 'e', 1793, 'o', 1803, - 'x', 1896, - '|', 1475, - '}', 1522, + '|', 1474, + '}', 1521, + '\t', 1472, + ' ', 1472, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(665); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 657: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - ')', 1491, - '.', 1617, - ';', 1474, - 'E', 1844, - 'e', 1794, - 'o', 1804, - '|', 1475, - '}', 1522, - '\t', 1473, - ' ', 1473, + '#', 2212, + '(', 1583, + ')', 1490, + ';', 1473, + 'E', 1843, + '_', 1837, + 'a', 1889, + 'e', 1793, + 'o', 1802, + 'x', 1895, + '|', 1474, + '}', 1521, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '\t' || + lookahead == ' ') SKIP(664); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 658: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - ')', 1491, - ';', 1474, - 'E', 1844, - '_', 1838, - 'a', 1890, - 'e', 1794, + '#', 2212, + '(', 1583, + ')', 1490, + ';', 1473, + 'E', 1843, + '_', 1837, + 'e', 1793, 'o', 1803, - 'x', 1896, - '|', 1475, - '}', 1522, + '|', 1474, + '}', 1521, + '\t', 1472, + ' ', 1472, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(665); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 659: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - ')', 1491, - ';', 1474, - 'E', 1844, - '_', 1838, - 'e', 1794, - 'o', 1804, - '|', 1475, - '}', 1522, - '\t', 1473, - ' ', 1473, + '#', 2212, + '(', 1583, + ')', 1490, + ';', 1473, + 'E', 1843, + 'a', 1889, + 'e', 1793, + 'o', 1802, + 'x', 1895, + '|', 1474, + '}', 1521, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '\t' || + lookahead == ' ') SKIP(664); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 660: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - ')', 1491, - ';', 1474, - 'E', 1844, - 'a', 1890, - 'e', 1794, + '#', 2212, + '(', 1583, + ')', 1490, + ';', 1473, + 'E', 1843, + 'e', 1793, 'o', 1803, - 'x', 1896, - '|', 1475, - '}', 1522, + '|', 1474, + '}', 1521, + '\t', 1472, + ' ', 1472, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(665); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 661: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - ')', 1491, - ';', 1474, - 'E', 1844, - 'e', 1794, - 'o', 1804, - '|', 1475, - '}', 1522, - '\t', 1473, - ' ', 1473, + '#', 2212, + '(', 1583, + ')', 1490, + ';', 1473, + 'a', 1889, + 'e', 1801, + 'o', 1802, + 'x', 1895, + '|', 1474, + '}', 1521, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '\t' || + lookahead == ' ') SKIP(664); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 662: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - ')', 1491, - ';', 1474, - 'a', 1890, - 'e', 1802, + '#', 2212, + '(', 1583, + ')', 1490, + ';', 1473, + 'e', 1801, 'o', 1803, - 'x', 1896, - '|', 1475, - '}', 1522, + '|', 1474, + '}', 1521, + '\t', 1472, + ' ', 1472, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(665); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 663: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - '(', 1584, - ')', 1491, - ';', 1474, - 'e', 1802, - 'o', 1804, - '|', 1475, - '}', 1522, - '\t', 1473, - ' ', 1473, + '#', 2212, + ')', 1490, + ';', 1473, + '=', 1751, + 'e', 1780, + 'o', 1781, + '|', 1474, + '}', 1521, + '\t', 1472, + ' ', 1472, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(1786); END_STATE(); case 664: - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '#', 2213, - ')', 1491, - ';', 1474, - '=', 1752, - 'e', 1781, - 'o', 1782, - '|', 1475, - '}', 1522, - '\t', 1473, - ' ', 1473, + '#', 2212, + ')', 1490, + ';', 1473, + 'a', 419, + 'e', 286, + 'o', 287, + 'x', 430, + '|', 1474, + '}', 1521, ); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1787); + if (lookahead == '\t' || + lookahead == ' ') SKIP(664); END_STATE(); case 665: - if (eof) ADVANCE(666); - ADVANCE_MAP( - '\n', 1471, - '\r', 1, - '#', 2213, - ')', 1491, - ';', 1474, - 'a', 420, - 'e', 287, - 'o', 288, - 'x', 431, - '|', 1475, - '}', 1522, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(665); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 666: - ACCEPT_TOKEN(ts_builtin_sym_end); + ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); case 667: - ACCEPT_TOKEN(anon_sym_POUND_BANG); + ACCEPT_TOKEN(aux_sym_shebang_token1); END_STATE(); case 668: ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '\n') ADVANCE(667); + if (lookahead == '\r') ADVANCE(669); + if (lookahead == '#') ADVANCE(2213); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(668); + if (lookahead != 0) ADVANCE(669); END_STATE(); case 669: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(668); - if (lookahead == '\r') ADVANCE(670); - if (lookahead == '#') ADVANCE(2214); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(669); - if (lookahead != 0) ADVANCE(670); + if (lookahead == '\n') ADVANCE(667); + if (lookahead == '\r') ADVANCE(669); + if (lookahead != 0) ADVANCE(669); END_STATE(); case 670: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(668); - if (lookahead == '\r') ADVANCE(670); - if (lookahead != 0) ADVANCE(670); + ACCEPT_TOKEN(anon_sym_export); END_STATE(); case 671: ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(1414); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 672: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(1415); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == '-') ADVANCE(747); END_STATE(); case 673: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(748); + if (lookahead == '-') ADVANCE(913); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 674: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(914); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_alias); END_STATE(); case 675: ACCEPT_TOKEN(anon_sym_alias); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 676: ACCEPT_TOKEN(anon_sym_alias); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 677: - ACCEPT_TOKEN(anon_sym_alias); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 678: ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(1569); + if (lookahead == '~') ADVANCE(1575); END_STATE(); case 679: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(1570); - if (lookahead == '~') ADVANCE(1576); + if (lookahead == '>') ADVANCE(1522); END_STATE(); case 680: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(1523); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 681: ACCEPT_TOKEN(anon_sym_let); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 682: ACCEPT_TOKEN(anon_sym_let); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 683: - ACCEPT_TOKEN(anon_sym_let); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_mut); END_STATE(); case 684: ACCEPT_TOKEN(anon_sym_mut); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 685: ACCEPT_TOKEN(anon_sym_mut); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 686: - ACCEPT_TOKEN(anon_sym_mut); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 687: ACCEPT_TOKEN(anon_sym_const); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 688: ACCEPT_TOKEN(anon_sym_const); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 689: - ACCEPT_TOKEN(anon_sym_const); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 690: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 691: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 692: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 693: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); END_STATE(); case 694: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '$') ADVANCE(1639); + if (lookahead == '(') ADVANCE(1613); + if (lookahead == '{') ADVANCE(1728); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 695: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(1640); - if (lookahead == '(') ADVANCE(1614); - if (lookahead == '{') ADVANCE(1729); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == '+') ADVANCE(774); + if (lookahead == '>') ADVANCE(522); + if (lookahead == 'l') ADVANCE(794); + if (lookahead == 'r') ADVANCE(783); + if (lookahead == 'x') ADVANCE(779); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 696: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '+') ADVANCE(775); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'l') ADVANCE(795); - if (lookahead == 'r') ADVANCE(784); - if (lookahead == 'x') ADVANCE(780); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == '>') ADVANCE(525); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 697: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(776); - if (lookahead == '>') ADVANCE(526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == '+') ADVANCE(750); + if (lookahead == '>') ADVANCE(523); + if (lookahead == 'u') ADVANCE(803); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 698: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(751); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'u') ADVANCE(804); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == '+') ADVANCE(749); + if (lookahead == '>') ADVANCE(527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 699: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(750); - if (lookahead == '>') ADVANCE(528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == '-') ADVANCE(830); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 700: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(831); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == '.') ADVANCE(813); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 701: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(814); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == '.') ADVANCE(1529); + if (lookahead == '_') ADVANCE(722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 702: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1530); - if (lookahead == '_') ADVANCE(723); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == '.') ADVANCE(1526); + if (lookahead == '_') ADVANCE(722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 703: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1527); - if (lookahead == '_') ADVANCE(723); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == '.') ADVANCE(694); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 704: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(695); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == '.') ADVANCE(1615); + if (lookahead == '_') ADVANCE(722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 705: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1616); - if (lookahead == '_') ADVANCE(723); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == '.') ADVANCE(703); + if (lookahead == '_') ADVANCE(722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 706: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(704); - if (lookahead == '_') ADVANCE(723); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == '.') ADVANCE(721); + if (lookahead == '_') ADVANCE(706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 707: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(722); - if (lookahead == '_') ADVANCE(707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == ':') ADVANCE(554); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 708: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ':') ADVANCE(555); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == '>') ADVANCE(524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 709: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == '>') ADVANCE(526); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 710: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == '>') ADVANCE(528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 711: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '>') ADVANCE(529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 712: - 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(834); - END_STATE(); - case 713: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - 'I', 816, - '_', 724, - 'i', 816, - 'l', 795, - 'x', 780, - '+', 724, - '-', 724, - 'B', 1676, - 'b', 1676, + 'I', 815, + '_', 723, + 'i', 815, + 'l', 794, + 'x', 779, + '+', 723, + '-', 723, + 'B', 1675, + 'b', 1675, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); - case 714: + case 713: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(816); - if (lookahead == '_') ADVANCE(724); - if (lookahead == 'i') ADVANCE(732); + if (lookahead == 'I') ADVANCE(815); + if (lookahead == '_') ADVANCE(723); + if (lookahead == 'i') ADVANCE(731); if (lookahead == '+' || - lookahead == '-') ADVANCE(724); + lookahead == '-') ADVANCE(723); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + lookahead == 'b') ADVANCE(1675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); - case 715: + case 714: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - 'I', 816, - 'a', 805, - 'i', 771, - 'o', 736, - 's', 1681, - 'u', 800, - 'B', 1676, - 'b', 1676, + 'I', 815, + 'a', 804, + 'i', 770, + 'o', 735, + 's', 1680, + 'u', 799, + 'B', 1675, + 'b', 1675, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); + END_STATE(); + case 715: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'I') ADVANCE(815); + if (lookahead == 'i') ADVANCE(815); + if (lookahead == 'l') ADVANCE(794); + if (lookahead == 'x') ADVANCE(779); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 716: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(816); - if (lookahead == 'i') ADVANCE(816); - if (lookahead == 'l') ADVANCE(795); - if (lookahead == 'x') ADVANCE(780); + if (lookahead == 'I') ADVANCE(815); + if (lookahead == 'i') ADVANCE(815); + if (lookahead == 'r') ADVANCE(807); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 717: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(816); - if (lookahead == 'i') ADVANCE(816); - if (lookahead == 'r') ADVANCE(808); + if (lookahead == 'I') ADVANCE(815); + if (lookahead == 'i') ADVANCE(815); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 718: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(816); - if (lookahead == 'i') ADVANCE(816); + if (lookahead == 'I') ADVANCE(815); + if (lookahead == 'i') ADVANCE(731); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 719: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(816); - if (lookahead == 'i') ADVANCE(732); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'N') ADVANCE(816); + if (lookahead == 'f') ADVANCE(1082); + if (lookahead == 'n') ADVANCE(1101); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 720: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(817); - if (lookahead == 'f') ADVANCE(1083); - if (lookahead == 'n') ADVANCE(1102); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == '_') ADVANCE(720); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 721: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(721); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 722: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(722); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 723: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(723); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 724: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(724); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 725: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(725); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'a') ADVANCE(797); + if (lookahead == 'o') ADVANCE(771); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 726: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(798); - if (lookahead == 'o') ADVANCE(772); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'a') ADVANCE(767); + if (lookahead == 'i') ADVANCE(772); + if (lookahead == 'o') ADVANCE(781); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 727: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(768); - if (lookahead == 'i') ADVANCE(773); - if (lookahead == 'o') ADVANCE(782); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'a') ADVANCE(812); + if (lookahead == 'e') ADVANCE(751); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 728: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(813); - if (lookahead == 'e') ADVANCE(752); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'a') ADVANCE(789); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 729: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(790); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'a') ADVANCE(763); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 730: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(764); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'a') ADVANCE(804); + if (lookahead == 'o') ADVANCE(735); + if (lookahead == 'u') ADVANCE(799); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 731: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(805); - if (lookahead == 'o') ADVANCE(736); - if (lookahead == 'u') ADVANCE(800); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 732: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'c') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 733: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'c') ADVANCE(753); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 734: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'c') ADVANCE(754); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 735: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(755); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'd') ADVANCE(809); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 736: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'e') ADVANCE(751); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 737: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(752); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'e') ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 738: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1062); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'e') ADVANCE(1085); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 739: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1086); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'e') ADVANCE(1106); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 740: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1107); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'e') ADVANCE(1109); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 741: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1110); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'e') ADVANCE(1548); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 742: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1549); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'e') ADVANCE(1079); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 743: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1080); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'e') ADVANCE(1070); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 744: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1071); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'e') ADVANCE(798); + if (lookahead == 'o') ADVANCE(773); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 745: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(799); - if (lookahead == 'o') ADVANCE(774); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'e') ADVANCE(732); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 746: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'e') ADVANCE(786); + if (lookahead == 'i') ADVANCE(764); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 747: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(787); - if (lookahead == 'i') ADVANCE(765); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'e') ADVANCE(769); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 748: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(770); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'e') ADVANCE(784); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 749: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(785); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'e') ADVANCE(787); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 750: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(788); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'e') ADVANCE(709); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 751: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(710); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'f') ADVANCE(834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 752: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(835); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'h') ADVANCE(746); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 753: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'h') ADVANCE(1091); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 754: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1092); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'h') ADVANCE(1097); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 755: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1098); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'h') ADVANCE(758); + if (lookahead == 'k') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 756: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(759); - if (lookahead == 'k') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'h') ADVANCE(758); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 757: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(759); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'i') ADVANCE(728); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 758: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(729); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'i') ADVANCE(764); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 759: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(765); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'l') ADVANCE(757); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 760: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(758); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'l') ADVANCE(1112); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 761: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1113); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'l') ADVANCE(811); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 762: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(812); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'l') ADVANCE(760); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 763: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'l') ADVANCE(761); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 764: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(762); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'l') ADVANCE(742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 765: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'l') ADVANCE(743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 766: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(744); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'l') ADVANCE(794); + if (lookahead == 'x') ADVANCE(779); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 767: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(795); - if (lookahead == 'x') ADVANCE(780); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'l') ADVANCE(796); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 768: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(797); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'n') ADVANCE(1067); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 769: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1068); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'n') ADVANCE(810); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 770: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(811); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'n') ADVANCE(1680); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 771: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1681); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'n') ADVANCE(795); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 772: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(796); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'n') ADVANCE(729); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 773: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(730); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'o') ADVANCE(778); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 774: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(779); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'o') ADVANCE(708); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 775: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(709); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'o') ADVANCE(808); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 776: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(809); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'o') ADVANCE(785); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 777: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(786); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'o') ADVANCE(800); + if (lookahead == 'u') ADVANCE(762); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(819); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 778: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(801); - if (lookahead == 'u') ADVANCE(763); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(820); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'p') ADVANCE(1076); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 779: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1077); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'p') ADVANCE(776); + if (lookahead == 't') ADVANCE(748); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 780: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(777); - if (lookahead == 't') ADVANCE(749); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'r') ADVANCE(807); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 781: 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(834); + if (lookahead == 'r') ADVANCE(1073); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 782: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1074); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'r') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 783: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'r') ADVANCE(696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 784: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(697); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'r') ADVANCE(768); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 785: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(769); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'r') ADVANCE(802); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 786: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(803); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'r') ADVANCE(741); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 787: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(742); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'r') ADVANCE(788); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 788: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(789); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'r') ADVANCE(711); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 789: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(712); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 's') ADVANCE(674); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 790: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(675); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 's') ADVANCE(1680); + if (lookahead == 'u') ADVANCE(762); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(819); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 791: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1681); - if (lookahead == 'u') ADVANCE(763); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(820); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 's') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 792: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 's') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 793: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1682); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 's') ADVANCE(737); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 794: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 's') ADVANCE(738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 795: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(739); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 's') ADVANCE(801); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 796: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(802); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 's') ADVANCE(740); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 797: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(741); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 't') ADVANCE(733); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 798: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(734); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 't') ADVANCE(680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 799: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 't') ADVANCE(683); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 800: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(684); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 't') ADVANCE(824); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 801: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(825); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 't') ADVANCE(686); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 802: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(687); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 't') ADVANCE(672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 803: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(673); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 't') ADVANCE(698); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 804: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(699); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 't') ADVANCE(734); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 805: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 't') ADVANCE(710); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 806: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(711); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'u') ADVANCE(762); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(819); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 807: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(763); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(820); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'u') ADVANCE(739); + if (lookahead == 'y') ADVANCE(1088); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 808: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(740); - if (lookahead == 'y') ADVANCE(1089); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'u') ADVANCE(805); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 809: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(806); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'u') ADVANCE(765); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 810: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(766); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'v') ADVANCE(1064); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 811: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(1065); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'y') ADVANCE(1094); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 812: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(1095); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'y') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 813: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == '{') ADVANCE(1728); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 814: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '{') ADVANCE(1729); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(819); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 815: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(820); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 816: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1116); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 817: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1117); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(821); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 818: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(822); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(816); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 819: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(817); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + lookahead == 'n') ADVANCE(1126); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 820: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + lookahead == 'n') ADVANCE(817); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 821: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(818); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(822); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 822: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(823); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1115); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 823: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1116); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(1671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 824: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(1672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1582); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 825: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1583); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(1672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 826: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1673); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(699); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 827: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(700); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 828: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1697); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(707); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 829: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(708); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(826); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 830: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(827); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 831: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(828); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); case 832: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(829); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); - END_STATE(); - case 833: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1670); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); END_STATE(); - case 834: + case 833: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(833); + END_STATE(); + case 834: + ACCEPT_TOKEN(anon_sym_def); END_STATE(); case 835: ACCEPT_TOKEN(anon_sym_def); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 836: ACCEPT_TOKEN(anon_sym_def); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 837: - ACCEPT_TOKEN(anon_sym_def); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == '+') ADVANCE(910); + if (lookahead == '>') ADVANCE(1763); + if (lookahead == 'r') ADVANCE(1554); + if (lookahead == 'u') ADVANCE(1006); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 838: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(911); - if (lookahead == '>') ADVANCE(1764); - if (lookahead == 'r') ADVANCE(1555); - if (lookahead == 'u') ADVANCE(1007); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '+') ADVANCE(958); + if (lookahead == '>') ADVANCE(1761); + if (lookahead == 'n') ADVANCE(899); + if (lookahead == 'r') ADVANCE(973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 839: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(959); - if (lookahead == '>') ADVANCE(1762); - if (lookahead == 'n') ADVANCE(900); - if (lookahead == 'r') ADVANCE(974); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '+') ADVANCE(911); + if (lookahead == '>') ADVANCE(1759); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 840: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(912); - if (lookahead == '>') ADVANCE(1760); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '+') ADVANCE(960); + if (lookahead == '>') ADVANCE(1757); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 841: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(961); - if (lookahead == '>') ADVANCE(1758); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '+') ADVANCE(912); + if (lookahead == '>') ADVANCE(523); + if (lookahead == 'r') ADVANCE(1554); + if (lookahead == 'u') ADVANCE(1012); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 842: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(967); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'n') ADVANCE(900); - if (lookahead == 'r') ADVANCE(980); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '+') ADVANCE(966); + if (lookahead == '>') ADVANCE(522); + if (lookahead == 'n') ADVANCE(899); + if (lookahead == 'r') ADVANCE(979); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 843: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(913); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'r') ADVANCE(1555); - if (lookahead == 'u') ADVANCE(1013); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '+') ADVANCE(968); + if (lookahead == '>') ADVANCE(525); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 844: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(969); - if (lookahead == '>') ADVANCE(526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '+') ADVANCE(916); + if (lookahead == '>') ADVANCE(527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 845: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(917); - if (lookahead == '>') ADVANCE(528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '-') ADVANCE(1050); + if (lookahead == '_') ADVANCE(875); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(875); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 846: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1051); - if (lookahead == '_') ADVANCE(876); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(876); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '-') ADVANCE(889); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 847: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(890); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '-') ADVANCE(917); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 848: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(918); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '-') ADVANCE(1028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 849: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1029); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '-') ADVANCE(1507); + if (lookahead == '.') ADVANCE(875); + if (lookahead == '_') ADVANCE(857); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1039); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(875); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 850: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1508); - if (lookahead == '.') ADVANCE(876); - if (lookahead == '_') ADVANCE(858); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(876); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '-') ADVANCE(1052); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 851: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1053); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '-') ADVANCE(1029); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 852: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1030); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '-') ADVANCE(1056); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 853: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1057); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '-') ADVANCE(1030); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 854: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == '-') ADVANCE(1031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 855: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '-') ADVANCE(1058); + if (lookahead == '_') ADVANCE(875); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(875); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 856: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1059); - if (lookahead == '_') ADVANCE(876); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(876); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '.') ADVANCE(875); + if (lookahead == '_') ADVANCE(857); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1039); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(875); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 857: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(876); - if (lookahead == '_') ADVANCE(858); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(876); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '.') ADVANCE(875); + if (lookahead == '_') ADVANCE(857); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(875); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 858: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(876); - if (lookahead == '_') ADVANCE(858); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(876); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '.') ADVANCE(1530); + if (lookahead == '_') ADVANCE(875); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(875); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 859: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(1531); - if (lookahead == '_') ADVANCE(876); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(876); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == ':') ADVANCE(554); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 860: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ':') ADVANCE(555); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == ':') ADVANCE(2093); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 861: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ':') ADVANCE(2094); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '=') ADVANCE(1570); + if (lookahead == '~') ADVANCE(1577); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 862: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '=') ADVANCE(1571); - if (lookahead == '~') ADVANCE(1578); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '>') ADVANCE(1771); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 863: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1772); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '>') ADVANCE(1769); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 864: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1770); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '>') ADVANCE(1765); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 865: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1766); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '>') ADVANCE(1767); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 866: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1768); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '>') ADVANCE(524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 867: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '>') ADVANCE(526); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 868: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '>') ADVANCE(528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 869: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == '>') ADVANCE(529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 870: 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(1061); + if (lookahead == 'N') ADVANCE(1035); + if (lookahead == 'f') ADVANCE(1084); + if (lookahead == 'n') ADVANCE(1102); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 871: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N') ADVANCE(1036); - if (lookahead == 'f') ADVANCE(1085); - if (lookahead == 'n') ADVANCE(1103); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'T') ADVANCE(1053); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 872: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'T') ADVANCE(1054); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 873: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'T') ADVANCE(1055); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '_') ADVANCE(875); + if (lookahead == 'b') ADVANCE(1674); + if (lookahead == 'o') ADVANCE(1684); + if (lookahead == 'x') ADVANCE(1686); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(877); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 874: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(876); - if (lookahead == 'b') ADVANCE(1675); - if (lookahead == 'o') ADVANCE(1685); - if (lookahead == 'x') ADVANCE(1687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(878); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '_') ADVANCE(875); + if (lookahead == 'b') ADVANCE(1674); + if (lookahead == 'o') ADVANCE(1684); + if (lookahead == 'x') ADVANCE(1686); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 875: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(876); - if (lookahead == 'b') ADVANCE(1675); - if (lookahead == 'o') ADVANCE(1685); - if (lookahead == 'x') ADVANCE(1687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(881); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '_') ADVANCE(875); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(875); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 876: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(876); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(876); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '_') ADVANCE(875); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(845); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 877: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(876); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(846); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '_') ADVANCE(875); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(876); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 878: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(876); + if (lookahead == '_') ADVANCE(875); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(877); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 879: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(876); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(878); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '_') ADVANCE(875); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 880: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(876); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(856); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '_') ADVANCE(875); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(879); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 881: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(876); + if (lookahead == '_') ADVANCE(875); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(880); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 882: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(876); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(881); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'a') ADVANCE(938); + if (lookahead == 'i') ADVANCE(955); + if (lookahead == 'o') ADVANCE(978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 883: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(939); - if (lookahead == 'i') ADVANCE(956); - if (lookahead == 'o') ADVANCE(979); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'a') ADVANCE(938); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 884: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(939); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'a') ADVANCE(988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 885: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(989); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'a') ADVANCE(981); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 886: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(982); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'a') ADVANCE(989); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 887: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'a') ADVANCE(990); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 888: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(991); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'a') ADVANCE(1000); + if (lookahead == 'o') ADVANCE(954); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 889: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(1001); - if (lookahead == 'o') ADVANCE(955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'a') ADVANCE(953); + if (lookahead == 'o') ADVANCE(975); + if (lookahead == 's') ADVANCE(919); + if (lookahead == 'x') ADVANCE(967); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 890: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(954); - if (lookahead == 'o') ADVANCE(976); - if (lookahead == 's') ADVANCE(920); - if (lookahead == 'x') ADVANCE(968); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'a') ADVANCE(944); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 891: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(945); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'a') ADVANCE(1016); + if (lookahead == 'o') ADVANCE(898); + if (lookahead == 'u') ADVANCE(1002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 892: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(1017); - if (lookahead == 'o') ADVANCE(899); - if (lookahead == 'u') ADVANCE(1003); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'a') ADVANCE(987); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 893: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(988); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'c') ADVANCE(924); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 894: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'c') ADVANCE(925); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 895: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'c') ADVANCE(926); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'd') ADVANCE(1550); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 896: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1551); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'd') ADVANCE(1594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 897: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1595); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'd') ADVANCE(1608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 898: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1609); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'd') ADVANCE(1026); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 899: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1027); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'd') ADVANCE(992); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 900: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(993); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'd') ADVANCE(997); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 901: 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(1061); + if (lookahead == 'e') ADVANCE(1108); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 902: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1109); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'e') ADVANCE(1111); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 903: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1112); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'e') ADVANCE(1579); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 904: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1580); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'e') ADVANCE(1581); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 905: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1582); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'e') ADVANCE(918); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 906: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'e') ADVANCE(1063); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 907: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1064); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'e') ADVANCE(1087); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 908: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1088); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'e') ADVANCE(1081); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 909: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1082); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'e') ADVANCE(1072); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 910: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1073); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'e') ADVANCE(863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 911: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(864); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'e') ADVANCE(983); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 912: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'e') ADVANCE(867); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 913: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'e') ADVANCE(952); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 914: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(953); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'e') ADVANCE(982); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 915: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(983); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'e') ADVANCE(1001); + if (lookahead == 'o') ADVANCE(959); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 916: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1002); - if (lookahead == 'o') ADVANCE(960); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'e') ADVANCE(985); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 917: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(986); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'e') ADVANCE(956); + if (lookahead == 'h') ADVANCE(886); + if (lookahead == 'i') ADVANCE(950); + if (lookahead == 'l') ADVANCE(934); + if (lookahead == 's') ADVANCE(1020); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 918: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(957); - if (lookahead == 'h') ADVANCE(887); - if (lookahead == 'i') ADVANCE(951); - if (lookahead == 'l') ADVANCE(935); - if (lookahead == 's') ADVANCE(1021); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'f') ADVANCE(836); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 919: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'f') ADVANCE(837); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'h') ADVANCE(940); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 920: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(941); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'h') ADVANCE(1566); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 921: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1567); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'h') ADVANCE(1562); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 922: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1563); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'h') ADVANCE(1568); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 923: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1569); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'h') ADVANCE(1564); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 924: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1565); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'h') ADVANCE(1093); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 925: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1094); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'h') ADVANCE(1099); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 926: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1100); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'h') ADVANCE(929); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 927: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(930); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'i') ADVANCE(936); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 928: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(937); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'i') ADVANCE(1005); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 929: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(1006); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'i') ADVANCE(945); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 930: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(946); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'i') ADVANCE(1007); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 931: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(1008); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'i') ADVANCE(1011); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 932: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(1012); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'i') ADVANCE(1013); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 933: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'i') ADVANCE(1014); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 934: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(1015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'i') ADVANCE(937); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 935: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(938); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'i') ADVANCE(887); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 936: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(888); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'k') ADVANCE(903); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 937: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'k') ADVANCE(904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 938: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'k') ADVANCE(905); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'l') ADVANCE(991); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 939: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(992); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'l') ADVANCE(1114); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 940: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(1115); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'l') ADVANCE(1604); + if (lookahead == 'r') ADVANCE(1606); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 941: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(1605); - if (lookahead == 'r') ADVANCE(1607); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'l') ADVANCE(1033); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 942: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(1034); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'l') ADVANCE(939); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 943: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(940); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'l') ADVANCE(935); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 944: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(936); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'l') ADVANCE(941); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 945: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(942); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'l') ADVANCE(908); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 946: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'l') ADVANCE(909); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 947: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(910); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'l') ADVANCE(994); + if (lookahead == 'x') ADVANCE(971); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 948: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(995); - if (lookahead == 'x') ADVANCE(972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'n') ADVANCE(895); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 949: 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(1061); + if (lookahead == 'n') ADVANCE(1105); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 950: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1106); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'n') ADVANCE(1556); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 951: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1557); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'n') ADVANCE(1069); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 952: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1070); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'n') ADVANCE(1027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 953: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1028); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'n') ADVANCE(897); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 954: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'n') ADVANCE(995); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 955: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(996); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'n') ADVANCE(890); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 956: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(891); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'n') ADVANCE(900); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 957: 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(1061); + if (lookahead == 'o') ADVANCE(999); + if (lookahead == 'u') ADVANCE(942); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 958: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(1000); - if (lookahead == 'u') ADVANCE(943); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'o') ADVANCE(862); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 959: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(863); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'o') ADVANCE(970); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 960: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(971); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'o') ADVANCE(1024); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 961: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(1025); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'o') ADVANCE(974); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 962: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(975); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'o') ADVANCE(896); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 963: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'o') ADVANCE(1009); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 964: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(1010); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'o') ADVANCE(954); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 965: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'o') ADVANCE(898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 966: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(899); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'o') ADVANCE(866); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 967: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'o') ADVANCE(976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 968: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(977); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'o') ADVANCE(1025); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 969: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(1026); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'o') ADVANCE(986); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 970: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(987); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'p') ADVANCE(1078); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 971: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'p') ADVANCE(1079); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'p') ADVANCE(969); + if (lookahead == 't') ADVANCE(914); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 972: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'p') ADVANCE(970); - if (lookahead == 't') ADVANCE(915); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'r') ADVANCE(1022); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 973: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1023); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'r') ADVANCE(840); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 974: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(841); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'r') ADVANCE(1552); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 975: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1553); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'r') ADVANCE(1612); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 976: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1613); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'r') ADVANCE(1610); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 977: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1611); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'r') ADVANCE(1021); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 978: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'r') ADVANCE(1075); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 979: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1076); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'r') ADVANCE(843); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 980: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(844); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'r') ADVANCE(865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 981: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'r') ADVANCE(1018); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 982: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1019); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'r') ADVANCE(951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 983: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(952); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'r') ADVANCE(980); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 984: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(981); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'r') ADVANCE(869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 985: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(870); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'r') ADVANCE(984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 986: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(985); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'r') ADVANCE(1004); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 987: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1005); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'r') ADVANCE(1019); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 988: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1020); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 's') ADVANCE(1558); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 989: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(1559); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 's') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 990: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(1561); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 's') ADVANCE(676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 991: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(677); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 's') ADVANCE(902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 992: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(903); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 's') ADVANCE(848); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 993: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(849); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 's') ADVANCE(906); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 994: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 's') ADVANCE(907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 995: 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(1061); + if (lookahead == 's') ADVANCE(1003); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 996: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(1004); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 's') ADVANCE(851); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 997: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(852); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 's') ADVANCE(853); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); 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(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 999: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(855); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 't') ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1000: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(1046); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 't') ADVANCE(893); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1001: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(894); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 't') ADVANCE(682); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1002: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(683); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 't') ADVANCE(685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1003: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(686); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 't') ADVANCE(688); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1004: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(689); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 't') ADVANCE(673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1005: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(674); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 't') ADVANCE(846); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1006: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(847); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 't') ADVANCE(839); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1007: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(840); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 't') ADVANCE(920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1008: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(921); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 't') ADVANCE(885); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1009: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(886); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 't') ADVANCE(847); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1010: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(848); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 't') ADVANCE(864); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1011: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 't') ADVANCE(921); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1012: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(922); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 't') ADVANCE(844); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1013: 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(1061); + if (lookahead == 't') ADVANCE(922); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1014: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 't') ADVANCE(923); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1015: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(924); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 't') ADVANCE(868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1016: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 't') ADVANCE(894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1017: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(895); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 't') ADVANCE(914); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1018: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(915); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 't') ADVANCE(996); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1019: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(997); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 't') ADVANCE(998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1020: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(999); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 't') ADVANCE(892); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1021: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'u') ADVANCE(901); + if (lookahead == 'y') ADVANCE(1090); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1022: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(902); - if (lookahead == 'y') ADVANCE(1091); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'u') ADVANCE(901); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1023: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'u') ADVANCE(942); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1024: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(943); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'u') ADVANCE(1010); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1025: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(1011); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'u') ADVANCE(1015); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1026: 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(1061); + if (lookahead == 'u') ADVANCE(946); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1027: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(947); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'v') ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1028: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'v') ADVANCE(1067); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'w') ADVANCE(930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1029: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'w') ADVANCE(931); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1030: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'w') ADVANCE(932); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1031: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'w') ADVANCE(933); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1032: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'w') ADVANCE(934); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'x') ADVANCE(1017); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1033: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'x') ADVANCE(1018); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'y') ADVANCE(1096); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1034: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'y') ADVANCE(1097); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1035: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1037); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1036: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1038); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1041); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1037: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1042); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + lookahead == 'i') ADVANCE(1040); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1038: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1041); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1060); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1039: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1061); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + lookahead == 'n') ADVANCE(1035); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1040: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1036); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1041: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1037); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); - END_STATE(); - case 1042: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1043); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + lookahead == 't') ADVANCE(1042); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); - case 1043: + case 1042: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1061); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + lookahead == 'y') ADVANCE(1060); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); - case 1044: + case 1043: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1044); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + lookahead == '_') ADVANCE(1043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); - case 1045: + case 1044: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1061); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1045); + lookahead == '@') ADVANCE(1060); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1044); END_STATE(); - case 1046: + case 1045: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1583); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + lookahead == ' ') ADVANCE(1582); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); - case 1047: + case 1046: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1047); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + lookahead == '_') ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); + END_STATE(); + case 1047: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(850); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1048: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(851); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(871); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1049: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(872); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(859); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1050: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(860); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1047); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1051: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1048); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(860); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1052: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(861); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1053: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1049); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1054: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1050); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1051); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1055: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1052); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(872); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1056: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(873); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1055); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1057: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1056); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1058: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(853); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1057); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1059: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1058); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); - END_STATE(); - case 1060: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1060); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1059); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); - case 1061: + case 1060: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); + END_STATE(); + case 1061: + ACCEPT_TOKEN(anon_sym_use); END_STATE(); case 1062: ACCEPT_TOKEN(anon_sym_use); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1063: ACCEPT_TOKEN(anon_sym_use); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1064: - ACCEPT_TOKEN(anon_sym_use); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_export_DASHenv); END_STATE(); case 1065: ACCEPT_TOKEN(anon_sym_export_DASHenv); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1066: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1067: - ACCEPT_TOKEN(anon_sym_export_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 1068: ACCEPT_TOKEN(anon_sym_extern); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1069: ACCEPT_TOKEN(anon_sym_extern); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1070: - ACCEPT_TOKEN(anon_sym_extern); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_module); END_STATE(); case 1071: ACCEPT_TOKEN(anon_sym_module); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1072: ACCEPT_TOKEN(anon_sym_module); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1073: - ACCEPT_TOKEN(anon_sym_module); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 1074: ACCEPT_TOKEN(anon_sym_for); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1075: ACCEPT_TOKEN(anon_sym_for); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1076: - ACCEPT_TOKEN(anon_sym_for); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_loop); END_STATE(); case 1077: ACCEPT_TOKEN(anon_sym_loop); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1078: ACCEPT_TOKEN(anon_sym_loop); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1079: - ACCEPT_TOKEN(anon_sym_loop); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 1080: ACCEPT_TOKEN(anon_sym_while); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1081: ACCEPT_TOKEN(anon_sym_while); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1082: - ACCEPT_TOKEN(anon_sym_while); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 1083: ACCEPT_TOKEN(anon_sym_if); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1084: ACCEPT_TOKEN(anon_sym_if); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1085: - ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 1086: ACCEPT_TOKEN(anon_sym_else); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1087: ACCEPT_TOKEN(anon_sym_else); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1088: - ACCEPT_TOKEN(anon_sym_else); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 1089: ACCEPT_TOKEN(anon_sym_try); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1090: ACCEPT_TOKEN(anon_sym_try); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1091: - ACCEPT_TOKEN(anon_sym_try); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_catch); END_STATE(); case 1092: ACCEPT_TOKEN(anon_sym_catch); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1093: ACCEPT_TOKEN(anon_sym_catch); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1094: - ACCEPT_TOKEN(anon_sym_catch); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_finally); END_STATE(); case 1095: ACCEPT_TOKEN(anon_sym_finally); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1096: ACCEPT_TOKEN(anon_sym_finally); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1097: - ACCEPT_TOKEN(anon_sym_finally); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 1098: ACCEPT_TOKEN(anon_sym_match); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1099: ACCEPT_TOKEN(anon_sym_match); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1100: - ACCEPT_TOKEN(anon_sym_match); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 1101: ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1116); END_STATE(); case 1102: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1117); + lookahead == 'f') ADVANCE(1037); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1103: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1038); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + lookahead == 'f') ADVANCE(1463); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1104: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1464); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1105: ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1106: - ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 1107: ACCEPT_TOKEN(anon_sym_true); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1108: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1109: - ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 1110: ACCEPT_TOKEN(anon_sym_false); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1111: ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1112: - ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_null); END_STATE(); case 1113: ACCEPT_TOKEN(anon_sym_null); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1114: ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1115: - ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); END_STATE(); case 1116: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(820); END_STATE(); case 1117: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(821); + lookahead == 'i') ADVANCE(2076); END_STATE(); case 1118: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2077); + lookahead == 'i') ADVANCE(2131); END_STATE(); case 1119: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2132); + lookahead == 'i') ADVANCE(2185); END_STATE(); case 1120: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2186); + lookahead == 'i') ADVANCE(542); END_STATE(); case 1121: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(543); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); END_STATE(); case 1122: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(540); END_STATE(); case 1123: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(541); + lookahead == 'i') ADVANCE(1955); END_STATE(); case 1124: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1956); + lookahead == 'i') ADVANCE(2133); END_STATE(); case 1125: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2134); + lookahead == 'i') ADVANCE(2187); END_STATE(); case 1126: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2188); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); END_STATE(); case 1127: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 1128: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 1129: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(1127); END_STATE(); case 1130: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(1128); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(1133); END_STATE(); case 1131: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(1134); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1132: - ACCEPT_TOKEN(anon_sym_SLASH); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + ACCEPT_TOKEN(anon_sym_mod); END_STATE(); case 1133: - ACCEPT_TOKEN(anon_sym_mod); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); case 1134: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(1128); END_STATE(); case 1135: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1129); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 1136: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_bit_DASHshl); END_STATE(); case 1137: - ACCEPT_TOKEN(anon_sym_bit_DASHshl); + ACCEPT_TOKEN(anon_sym_bit_DASHshr); END_STATE(); case 1138: - ACCEPT_TOKEN(anon_sym_bit_DASHshr); + ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); case 1139: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); + ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); case 1140: - ACCEPT_TOKEN(anon_sym_BANG_TILDE); + ACCEPT_TOKEN(anon_sym_like); END_STATE(); case 1141: - ACCEPT_TOKEN(anon_sym_like); + ACCEPT_TOKEN(anon_sym_not_DASHlike); END_STATE(); case 1142: - ACCEPT_TOKEN(anon_sym_not_DASHlike); + ACCEPT_TOKEN(anon_sym_bit_DASHand); END_STATE(); case 1143: - ACCEPT_TOKEN(anon_sym_bit_DASHand); + ACCEPT_TOKEN(anon_sym_bit_DASHxor); END_STATE(); case 1144: - ACCEPT_TOKEN(anon_sym_bit_DASHxor); + ACCEPT_TOKEN(anon_sym_bit_DASHor); END_STATE(); case 1145: - ACCEPT_TOKEN(anon_sym_bit_DASHor); + ACCEPT_TOKEN(anon_sym_and); END_STATE(); case 1146: - ACCEPT_TOKEN(anon_sym_and); + ACCEPT_TOKEN(anon_sym_xor); END_STATE(); case 1147: - ACCEPT_TOKEN(anon_sym_xor); + ACCEPT_TOKEN(anon_sym_or); END_STATE(); case 1148: - ACCEPT_TOKEN(anon_sym_or); + ACCEPT_TOKEN(anon_sym_in2); END_STATE(); case 1149: - ACCEPT_TOKEN(anon_sym_in2); + ACCEPT_TOKEN(anon_sym_not_DASHin); END_STATE(); case 1150: - ACCEPT_TOKEN(anon_sym_not_DASHin); + ACCEPT_TOKEN(anon_sym_has); END_STATE(); case 1151: - ACCEPT_TOKEN(anon_sym_has); + ACCEPT_TOKEN(anon_sym_not_DASHhas); END_STATE(); case 1152: - ACCEPT_TOKEN(anon_sym_not_DASHhas); + ACCEPT_TOKEN(anon_sym_starts_DASHwith); END_STATE(); case 1153: - ACCEPT_TOKEN(anon_sym_starts_DASHwith); + ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith); END_STATE(); case 1154: - ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith); + ACCEPT_TOKEN(anon_sym_ends_DASHwith); END_STATE(); case 1155: - ACCEPT_TOKEN(anon_sym_ends_DASHwith); + ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith); END_STATE(); case 1156: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 1157: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 1158: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 1159: ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(1160); END_STATE(); case 1160: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(1161); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 1161: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(1162); END_STATE(); case 1162: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1163); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 1163: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + ADVANCE_MAP( + '\n', 1470, + '\r', 1, + '!', 1226, + '#', 2212, + ')', 1490, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1225, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + '_', 1241, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1207, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1208, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + 0xb5, 1311, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(23); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1164: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - ')', 1491, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1618, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1208, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1209, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - 0xb5, 1312, + '!', 1226, + '#', 2212, + ')', 1490, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1225, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + '_', 1241, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1215, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1216, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(24); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1165: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - ')', 1491, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1618, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1216, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1217, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - 0xb5, 1312, + '!', 1226, + '#', 2212, + ')', 1490, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1225, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1207, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1208, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1166: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - ')', 1491, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1226, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - '_', 1245, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1208, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1209, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - 0xb5, 1312, + '!', 1226, + '#', 2212, + ')', 1490, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1225, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1215, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1216, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1167: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - ')', 1491, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1226, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - '_', 1245, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1216, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1217, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - 0xb5, 1312, + '!', 1226, + '#', 2212, + ')', 1490, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1225, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1239, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1210, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1208, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1168: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - ')', 1491, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1226, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1208, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1209, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - 0xb5, 1312, + '!', 1226, + '#', 2212, + ')', 1490, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1225, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1239, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1213, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1216, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1169: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - ')', 1491, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1226, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1216, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1217, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - 0xb5, 1312, + '!', 1226, + '#', 2212, + ')', 1490, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1617, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1207, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1208, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1170: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - ')', 1491, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1226, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1240, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1211, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1209, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - 0xb5, 1312, + '!', 1226, + '#', 2212, + ')', 1490, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1617, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1215, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1216, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1171: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - ')', 1491, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1226, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1240, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1214, - 'g', 1239, + '!', 1226, + '#', 2212, + ')', 1490, + '*', 1129, + '+', 1134, + '-', 1135, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'a', 1283, + 'b', 1272, + 'e', 1211, 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, + 'i', 1285, + 'l', 1273, + 'm', 1293, 'n', 1297, - 'o', 1217, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - 0xb5, 1312, + 'o', 1208, + 's', 1319, + 'x', 1292, + '|', 1474, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1172: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - ')', 1491, - '*', 1130, - '+', 1135, - '-', 1136, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'a', 1284, - 'b', 1273, - 'e', 1212, - 'h', 1248, - 'i', 1286, - 'l', 1274, - 'm', 1294, - 'n', 1298, - 'o', 1209, - 's', 1320, - 'x', 1293, - '|', 1475, + '!', 1226, + '#', 2212, + ')', 1490, + '*', 1129, + '+', 1134, + '-', 1135, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'a', 1283, + 'b', 1272, + 'e', 1214, + 'h', 1247, + 'i', 1285, + 'l', 1273, + 'm', 1293, + 'n', 1297, + 'o', 1216, + 's', 1319, + 'x', 1292, + '|', 1474, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1173: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - ')', 1491, - '*', 1130, - '+', 1135, - '-', 1136, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'a', 1284, - 'b', 1273, - 'e', 1215, - 'h', 1248, - 'i', 1286, - 'l', 1274, - 'm', 1294, - 'n', 1298, - 'o', 1217, - 's', 1320, - 'x', 1293, - '|', 1475, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1225, + '/', 1130, + ':', 1735, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + '_', 1241, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1207, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1208, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + '}', 1521, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(25); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1174: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1618, - '/', 1131, - ':', 1736, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1208, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1209, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - '}', 1522, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1225, + '/', 1130, + ':', 1735, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1207, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1208, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + '}', 1521, + 0xb5, 1311, ); if (lookahead == '\t' || lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1175: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1618, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1208, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1209, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - '}', 1522, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1225, + '/', 1130, + ':', 1735, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1239, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1210, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1208, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + '}', 1521, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1176: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1618, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1216, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1217, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - '}', 1522, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1225, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + '_', 1241, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1207, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1208, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + '}', 1521, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(26); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1177: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1618, - '/', 1131, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1208, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1209, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1225, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + '_', 1241, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1215, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1216, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + '}', 1521, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(27); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1178: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1618, - '/', 1131, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1216, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1217, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1225, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1207, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1208, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + '}', 1521, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(29); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1179: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1226, - '/', 1131, - ':', 1736, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - '_', 1245, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1208, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1209, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - '}', 1522, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1225, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1215, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1216, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + '}', 1521, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1180: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1226, - '/', 1131, - ':', 1736, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1208, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1209, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - '}', 1522, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1225, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1239, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1210, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1208, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + '}', 1521, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1181: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1226, - '/', 1131, - ':', 1736, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1240, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1211, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1209, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - '}', 1522, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1225, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1239, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1213, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1216, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + '}', 1521, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1182: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1226, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - '_', 1245, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1208, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1209, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - '}', 1522, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1225, + '/', 1130, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + '_', 1241, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1207, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1208, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(28); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1183: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1226, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - '_', 1245, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1216, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1217, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - '}', 1522, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1225, + '/', 1130, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + '_', 1241, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1215, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1216, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(29); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1184: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1226, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1208, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1209, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - '}', 1522, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1225, + '/', 1130, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1207, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1208, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1185: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1226, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1216, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1217, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - '}', 1522, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1225, + '/', 1130, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1215, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1216, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1186: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1226, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1240, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1211, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1209, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - '}', 1522, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1225, + '/', 1130, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1239, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1210, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1208, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1187: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1226, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1240, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1214, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1217, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - '}', 1522, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1225, + '/', 1130, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1239, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1213, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1216, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1188: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1226, - '/', 1131, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - '_', 1245, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1208, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1209, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1617, + '/', 1130, + ':', 1735, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1207, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1208, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + '}', 1521, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1189: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1226, - '/', 1131, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - '_', 1245, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1216, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1217, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1617, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1207, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1208, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + '}', 1521, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(29); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1190: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1226, - '/', 1131, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1208, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1209, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1617, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1215, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1216, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + '}', 1521, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1191: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1226, - '/', 1131, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1216, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1217, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1617, + '/', 1130, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1207, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1208, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(29); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1192: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1226, - '/', 1131, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1240, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1211, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1209, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1617, + '/', 1130, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1215, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1216, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1193: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1226, - '/', 1131, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1240, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1214, - 'g', 1239, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'a', 1283, + 'b', 1272, + 'e', 1211, 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, + 'i', 1285, + 'l', 1273, + 'm', 1293, 'n', 1297, - 'o', 1217, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - 0xb5, 1312, + 'o', 1208, + 's', 1319, + 'x', 1292, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(29); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1194: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'a', 1284, - 'b', 1273, - 'e', 1212, - 'h', 1248, - 'i', 1286, - 'l', 1274, - 'm', 1294, - 'n', 1298, - 'o', 1209, - 's', 1320, - 'x', 1293, - '|', 1475, - '}', 1522, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'a', 1283, + 'b', 1272, + 'e', 1214, + 'h', 1247, + 'i', 1285, + 'l', 1273, + 'm', 1293, + 'n', 1297, + 'o', 1216, + 's', 1319, + 'x', 1292, + '|', 1474, + '}', 1521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1195: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'a', 1284, - 'b', 1273, - 'e', 1215, - 'h', 1248, - 'i', 1286, - 'l', 1274, - 'm', 1294, - 'n', 1298, - 'o', 1217, - 's', 1320, - 'x', 1293, - '|', 1475, - '}', 1522, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '/', 1130, + '<', 1159, + '=', 317, + '>', 1161, + 'a', 1283, + 'b', 1272, + 'e', 1211, + 'h', 1247, + 'i', 1285, + 'l', 1273, + 'm', 1293, + 'n', 1297, + 'o', 1208, + 's', 1319, + 'x', 1292, + '|', 1474, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1196: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '/', 1131, - '<', 1160, - '=', 318, - '>', 1162, - 'a', 1284, - 'b', 1273, - 'e', 1212, - 'h', 1248, - 'i', 1286, - 'l', 1274, - 'm', 1294, - 'n', 1298, - 'o', 1209, - 's', 1320, - 'x', 1293, - '|', 1475, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '/', 1130, + '<', 1159, + '=', 317, + '>', 1161, + 'a', 1283, + 'b', 1272, + 'e', 1214, + 'h', 1247, + 'i', 1285, + 'l', 1273, + 'm', 1293, + 'n', 1297, + 'o', 1216, + 's', 1319, + 'x', 1292, + '|', 1474, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1197: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1471, - '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '/', 1131, - '<', 1160, - '=', 318, - '>', 1162, - 'a', 1284, - 'b', 1273, - 'e', 1215, - 'h', 1248, - 'i', 1286, - 'l', 1274, - 'm', 1294, - 'n', 1298, - 'o', 1217, - 's', 1320, - 'x', 1293, - '|', 1475, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1616, + '/', 1130, + ':', 1735, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1235, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1299, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(29); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(264); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1198: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1617, - '/', 1131, - ':', 1736, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1236, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1300, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1616, + '/', 1130, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1235, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1299, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(265); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(270); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1199: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1617, - '/', 1131, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1236, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1300, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '/', 1130, + ':', 1735, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + '_', 1241, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1235, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1299, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(264); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1200: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '/', 1131, - ':', 1736, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - '_', 1245, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1236, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1300, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '/', 1130, + ':', 1735, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1235, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1299, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(265); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(264); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1201: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '/', 1131, - ':', 1736, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1236, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1300, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '/', 1130, + ':', 1735, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1239, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1237, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1299, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(265); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(264); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1202: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '/', 1131, - ':', 1736, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1240, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1238, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1300, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '/', 1130, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + '_', 1241, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1235, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1299, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(265); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(270); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1203: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '/', 1131, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - '_', 1245, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1236, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1300, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '/', 1130, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1235, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1299, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(270); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1204: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '/', 1131, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1236, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1300, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '/', 1130, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1239, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1237, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1299, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(270); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1205: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '/', 1131, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1240, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1238, - 'g', 1239, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '/', 1130, + '<', 1159, + '=', 317, + '>', 1161, + 'a', 1283, + 'b', 1272, + 'e', 1287, 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, + 'i', 1285, + 'l', 1273, + 'm', 1293, 'n', 1297, - 'o', 1300, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - 0xb5, 1312, + 'o', 1299, + 's', 1319, + 'x', 1292, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(270); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1206: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '/', 1131, - '<', 1160, - '=', 318, - '>', 1162, - 'a', 1284, - 'b', 1273, - 'e', 1288, - 'h', 1248, - 'i', 1286, - 'l', 1274, - 'm', 1294, - 'n', 1298, - 'o', 1300, - 's', 1320, - 'x', 1293, - ); + if (lookahead == '#') ADVANCE(2212); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(270); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1207: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); - END_STATE(); - case 1208: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( '+', 1242, '-', 1244, - '>', 1762, - 'I', 1340, + '>', 1761, + 'I', 1339, '_', 1244, - 'i', 1340, - 'n', 1258, - 'r', 1301, - 'B', 1676, - 'b', 1676, + 'i', 1339, + 'n', 1257, + 'r', 1300, + 'B', 1675, + 'b', 1675, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); + END_STATE(); + case 1208: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == '+') ADVANCE(1262); + if (lookahead == '>') ADVANCE(1763); + if (lookahead == 'r') ADVANCE(1147); + if (lookahead == 'u') ADVANCE(1321); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1209: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1263); - if (lookahead == '>') ADVANCE(1764); - if (lookahead == 'r') ADVANCE(1148); - if (lookahead == 'u') ADVANCE(1322); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == '+') ADVANCE(1291); + if (lookahead == '>') ADVANCE(1757); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1210: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1292); - if (lookahead == '>') ADVANCE(1758); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + ADVANCE_MAP( + '+', 1290, + '>', 1761, + 'I', 1339, + 'i', 1339, + 'n', 1257, + 'r', 1300, + 'B', 1675, + 'b', 1675, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1211: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '+', 1291, - '>', 1762, - 'I', 1340, - 'i', 1340, - 'n', 1258, - 'r', 1301, - 'B', 1676, - 'b', 1676, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == '+') ADVANCE(1290); + if (lookahead == '>') ADVANCE(1761); + if (lookahead == 'n') ADVANCE(1257); + if (lookahead == 'r') ADVANCE(1300); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1212: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1291); - if (lookahead == '>') ADVANCE(1762); - if (lookahead == 'n') ADVANCE(1258); - if (lookahead == 'r') ADVANCE(1301); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == '+') ADVANCE(1263); + if (lookahead == '>') ADVANCE(1759); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1213: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1264); - if (lookahead == '>') ADVANCE(1760); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); - END_STATE(); - case 1214: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '+', 1295, - '>', 523, - 'I', 1340, - 'i', 1340, - 'n', 1258, - 'r', 1306, - 'B', 1676, - 'b', 1676, + '+', 1294, + '>', 522, + 'I', 1339, + 'i', 1339, + 'n', 1257, + 'r', 1305, + 'B', 1675, + 'b', 1675, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); - case 1215: + case 1214: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1295); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'n') ADVANCE(1258); - if (lookahead == 'r') ADVANCE(1306); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == '+') ADVANCE(1294); + if (lookahead == '>') ADVANCE(522); + if (lookahead == 'n') ADVANCE(1257); + if (lookahead == 'r') ADVANCE(1305); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); - case 1216: + case 1215: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( '+', 1243, '-', 1244, - '>', 523, - 'I', 1340, + '>', 522, + 'I', 1339, '_', 1244, - 'i', 1340, - 'n', 1258, - 'r', 1306, - 'B', 1676, - 'b', 1676, + 'i', 1339, + 'n', 1257, + 'r', 1305, + 'B', 1675, + 'b', 1675, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); + END_STATE(); + case 1216: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == '+') ADVANCE(1264); + if (lookahead == '>') ADVANCE(523); + if (lookahead == 'r') ADVANCE(1147); + if (lookahead == 'u') ADVANCE(1325); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1217: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1265); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'r') ADVANCE(1148); - if (lookahead == 'u') ADVANCE(1326); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == '+') ADVANCE(1298); + if (lookahead == '>') ADVANCE(525); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1218: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1299); - if (lookahead == '>') ADVANCE(526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == '+') ADVANCE(1265); + if (lookahead == '>') ADVANCE(527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1219: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1266); - if (lookahead == '>') ADVANCE(528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == '-') ADVANCE(1250); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1220: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1251); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == '-') ADVANCE(1266); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1221: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1267); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == '-') ADVANCE(1334); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1222: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == '-') ADVANCE(1335); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1223: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == '-') ADVANCE(1336); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1224: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == '-') ADVANCE(1337); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1225: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1338); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == '.') ADVANCE(1615); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1226: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '.') ADVANCE(1616); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == '=') ADVANCE(1157); + if (lookahead == '~') ADVANCE(1139); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1227: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '=') ADVANCE(1158); - if (lookahead == '~') ADVANCE(1140); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == '>') ADVANCE(1771); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1228: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1772); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == '>') ADVANCE(1769); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1229: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1770); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == '>') ADVANCE(1765); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1230: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1766); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == '>') ADVANCE(1767); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1231: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1768); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == '>') ADVANCE(524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1232: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == '>') ADVANCE(526); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1233: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == '>') ADVANCE(528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1234: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == '>') ADVANCE(529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1235: - 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(1341); - END_STATE(); - case 1236: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - 'I', 1340, + 'I', 1339, '_', 1244, - 'i', 1340, - 'n', 1258, + 'i', 1339, + 'n', 1257, '+', 1244, '-', 1244, - 'B', 1676, - 'b', 1676, + 'B', 1675, + 'b', 1675, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); - case 1237: + case 1236: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1340); + if (lookahead == 'I') ADVANCE(1339); if (lookahead == '_') ADVANCE(1244); - if (lookahead == 'i') ADVANCE(1253); + if (lookahead == 'i') ADVANCE(1252); if (lookahead == '+' || lookahead == '-') ADVANCE(1244); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + lookahead == 'b') ADVANCE(1675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); + END_STATE(); + case 1237: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 'I') ADVANCE(1339); + if (lookahead == 'i') ADVANCE(1339); + if (lookahead == 'n') ADVANCE(1257); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1238: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1340); - if (lookahead == 'i') ADVANCE(1340); - if (lookahead == 'n') ADVANCE(1258); + if (lookahead == 'I') ADVANCE(1339); + if (lookahead == 'i') ADVANCE(1339); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1239: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1340); - if (lookahead == 'i') ADVANCE(1340); + if (lookahead == 'I') ADVANCE(1339); + if (lookahead == 'i') ADVANCE(1252); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1240: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1340); - if (lookahead == 'i') ADVANCE(1253); + if (lookahead == 'I') ADVANCE(1339); + if (lookahead == 'i') ADVANCE(1284); + if (lookahead == 'o') ADVANCE(1255); + if (lookahead == 's') ADVANCE(1680); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1241: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1340); - if (lookahead == 'i') ADVANCE(1285); - if (lookahead == 'o') ADVANCE(1256); - if (lookahead == 's') ADVANCE(1681); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == '_') ADVANCE(1241); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1242: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == '_') ADVANCE(1244); - if (lookahead == 'o') ADVANCE(1228); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'o') ADVANCE(1227); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1243: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == '_') ADVANCE(1244); - if (lookahead == 'o') ADVANCE(1232); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'o') ADVANCE(1231); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1244: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == '_') ADVANCE(1244); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1245: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1245); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'a') ADVANCE(1338); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1246: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1339); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'a') ADVANCE(1312); + if (lookahead == 'r') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1247: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1313); - if (lookahead == 'r') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'a') ADVANCE(1312); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1248: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1313); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'a') ADVANCE(1304); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1249: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1305); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'a') ADVANCE(1313); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1250: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1314); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'a') ADVANCE(1288); + if (lookahead == 'o') ADVANCE(1302); + if (lookahead == 's') ADVANCE(1267); + if (lookahead == 'x') ADVANCE(1295); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1251: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1289); - if (lookahead == 'o') ADVANCE(1303); - if (lookahead == 's') ADVANCE(1268); - if (lookahead == 'x') ADVANCE(1296); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'a') ADVANCE(1310); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1252: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1311); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1253: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'c') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'c') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'd') ADVANCE(1145); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1146); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'd') ADVANCE(1132); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1133); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'd') ADVANCE(1142); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1257: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1143); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'd') ADVANCE(1314); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1258: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1315); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'd') ADVANCE(1316); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1259: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1317); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'e') ADVANCE(1253); + if (lookahead == 't') ADVANCE(1248); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1260: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1254); - if (lookahead == 't') ADVANCE(1249); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'e') ADVANCE(1140); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'e') ADVANCE(1141); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1142); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'e') ADVANCE(1228); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1229); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'e') ADVANCE(1307); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1308); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'e') ADVANCE(1232); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1265: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1233); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'e') ADVANCE(1308); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1266: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1309); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'e') ADVANCE(1289); + if (lookahead == 'h') ADVANCE(1249); + if (lookahead == 'i') ADVANCE(1286); + if (lookahead == 'l') ADVANCE(1278); + if (lookahead == 's') ADVANCE(1331); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1267: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1290); - if (lookahead == 'h') ADVANCE(1250); - if (lookahead == 'i') ADVANCE(1287); - if (lookahead == 'l') ADVANCE(1279); - if (lookahead == 's') ADVANCE(1332); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'h') ADVANCE(1282); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1268: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1283); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'h') ADVANCE(1154); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1269: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1155); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'h') ADVANCE(1152); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1270: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1153); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'h') ADVANCE(1155); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1271: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1156); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'h') ADVANCE(1153); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1272: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1154); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'i') ADVANCE(1318); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1273: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1319); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'i') ADVANCE(1280); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1274: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1281); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'i') ADVANCE(1322); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1275: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1323); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'i') ADVANCE(1324); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1276: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1325); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'i') ADVANCE(1326); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1277: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'i') ADVANCE(1327); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1278: 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(1341); + if (lookahead == 'i') ADVANCE(1281); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1279: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1282); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'k') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1280: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'k') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'k') ADVANCE(1260); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1281: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'k') ADVANCE(1261); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1282: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'k') ADVANCE(1262); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'l') ADVANCE(1136); + if (lookahead == 'r') ADVANCE(1137); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1283: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'l') ADVANCE(1137); - if (lookahead == 'r') ADVANCE(1138); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'n') ADVANCE(1254); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1284: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1255); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'n') ADVANCE(1680); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1285: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1681); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'n') ADVANCE(1148); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1286: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'n') ADVANCE(1149); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1287: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1150); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'n') ADVANCE(1257); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1288: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1258); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'n') ADVANCE(1256); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1289: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1257); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'n') ADVANCE(1258); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1290: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1259); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'o') ADVANCE(1227); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1291: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1228); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'o') ADVANCE(1332); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1292: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1333); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'o') ADVANCE(1301); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1293: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1302); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'o') ADVANCE(1255); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1294: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1256); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'o') ADVANCE(1231); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1295: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1232); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'o') ADVANCE(1303); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1296: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1304); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'o') ADVANCE(1320); + if (lookahead == 's') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1297: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1321); - if (lookahead == 's') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'o') ADVANCE(1320); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1298: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1321); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'o') ADVANCE(1333); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1299: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1334); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'r') ADVANCE(1147); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1300: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1148); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'r') ADVANCE(1209); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1301: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1210); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'r') ADVANCE(1146); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1302: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1147); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'r') ADVANCE(1144); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1303: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1145); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'r') ADVANCE(1143); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1304: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1144); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'r') ADVANCE(1329); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1305: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1330); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'r') ADVANCE(1217); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1306: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1218); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'r') ADVANCE(1230); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1307: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1231); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'r') ADVANCE(1306); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1308: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1307); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'r') ADVANCE(1309); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1309: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1310); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'r') ADVANCE(1234); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1310: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1235); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'r') ADVANCE(1330); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1311: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1331); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 's') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1312: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 's') ADVANCE(1150); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1313: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 's') ADVANCE(1151); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1314: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1152); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 's') ADVANCE(1221); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1315: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 's') ADVANCE(1222); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1316: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 's') ADVANCE(1223); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1317: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 's') ADVANCE(1224); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1318: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1225); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 't') ADVANCE(1219); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1319: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1220); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 't') ADVANCE(1248); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1320: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1249); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 't') ADVANCE(1220); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1321: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1221); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 't') ADVANCE(1212); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1322: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1213); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 't') ADVANCE(1268); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1323: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1269); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 't') ADVANCE(1229); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1324: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1230); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 't') ADVANCE(1269); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1325: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1270); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 't') ADVANCE(1218); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1326: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1219); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 't') ADVANCE(1270); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1327: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 't') ADVANCE(1271); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1328: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1272); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 't') ADVANCE(1233); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1329: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1234); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 't') ADVANCE(1315); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1330: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1316); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 't') ADVANCE(1317); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1331: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1318); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 't') ADVANCE(1251); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1332: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1252); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'u') ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1333: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'u') ADVANCE(1324); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'u') ADVANCE(1328); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1334: 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(1341); + if (lookahead == 'w') ADVANCE(1274); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1335: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'w') ADVANCE(1275); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1336: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'w') ADVANCE(1276); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1337: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'w') ADVANCE(1277); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1338: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'w') ADVANCE(1278); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'y') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1339: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'y') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1340: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1340); END_STATE(); case 1341: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1341); + if (eof) ADVANCE(665); + ADVANCE_MAP( + '\n', 1470, + '\r', 1, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1225, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + '_', 1241, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1207, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1208, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + 0xb5, 1311, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(623); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1342: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1618, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1208, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1209, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1225, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + '_', 1241, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1215, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1216, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + 0xb5, 1311, ); if (lookahead == '\t' || lookahead == ' ') SKIP(624); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1343: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1618, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1216, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1217, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1225, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1207, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1208, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(625); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(623); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1344: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1226, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - '_', 1245, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1208, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1209, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1225, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1215, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1216, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + 0xb5, 1311, ); if (lookahead == '\t' || lookahead == ' ') SKIP(624); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1345: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1226, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - '_', 1245, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1216, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1217, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1225, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1239, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1210, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1208, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(625); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(623); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1346: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1226, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1208, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1209, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1225, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1239, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1213, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1216, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + 0xb5, 1311, ); if (lookahead == '\t' || lookahead == ' ') SKIP(624); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1347: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1226, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1237, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1216, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1217, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1617, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1207, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1208, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + 0xb5, 1311, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(625); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(623); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1348: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1226, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1240, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1211, - 'g', 1239, - 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, - 'n', 1297, - 'o', 1209, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - 0xb5, 1312, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '.', 1617, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'B', 1675, + 'E', 1236, + 'G', 1239, + 'K', 1239, + 'M', 1239, + 'P', 1239, + 'T', 1239, + 'a', 1283, + 'b', 1676, + 'd', 1245, + 'e', 1215, + 'g', 1238, + 'h', 1246, + 'i', 1285, + 'k', 1238, + 'l', 1273, + 'm', 1240, + 'n', 1296, + 'o', 1216, + 'p', 1238, + 's', 1259, + 't', 1238, + 'u', 1311, + 'w', 1279, + 'x', 1292, + '|', 1474, + 0xb5, 1311, ); if (lookahead == '\t' || lookahead == ' ') SKIP(624); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1349: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '.', 1226, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'B', 1676, - 'E', 1240, - 'G', 1240, - 'K', 1240, - 'M', 1240, - 'P', 1240, - 'T', 1240, - 'a', 1284, - 'b', 1677, - 'd', 1246, - 'e', 1214, - 'g', 1239, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'a', 1283, + 'b', 1272, + 'e', 1211, 'h', 1247, - 'i', 1286, - 'k', 1239, - 'l', 1274, - 'm', 1241, + 'i', 1285, + 'l', 1273, + 'm', 1293, 'n', 1297, - 'o', 1217, - 'p', 1239, - 's', 1260, - 't', 1239, - 'u', 1312, - 'w', 1280, - 'x', 1293, - '|', 1475, - 0xb5, 1312, + 'o', 1208, + 's', 1319, + 'x', 1292, + '|', 1474, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(625); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + lookahead == ' ') SKIP(623); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1350: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(666); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1471, + '\n', 1470, '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'a', 1284, - 'b', 1273, - 'e', 1212, - 'h', 1248, - 'i', 1286, - 'l', 1274, - 'm', 1294, - 'n', 1298, - 'o', 1209, - 's', 1320, - 'x', 1293, - '|', 1475, + '!', 1226, + '#', 2212, + '*', 1129, + '+', 1134, + '-', 1135, + '/', 1130, + ';', 1473, + '<', 1159, + '=', 317, + '>', 1161, + 'a', 1283, + 'b', 1272, + 'e', 1214, + 'h', 1247, + 'i', 1285, + 'l', 1273, + 'm', 1293, + 'n', 1297, + 'o', 1216, + 's', 1319, + 'x', 1292, + '|', 1474, ); if (lookahead == '\t' || lookahead == ' ') SKIP(624); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1340); END_STATE(); case 1351: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(666); - ADVANCE_MAP( - '\n', 1471, - '\r', 1, - '!', 1227, - '#', 2213, - '*', 1130, - '+', 1135, - '-', 1136, - '/', 1131, - ';', 1474, - '<', 1160, - '=', 318, - '>', 1162, - 'a', 1284, - 'b', 1273, - 'e', 1215, - 'h', 1248, - 'i', 1286, - 'l', 1274, - 'm', 1294, - 'n', 1298, - 'o', 1217, - 's', 1320, - 'x', 1293, - '|', 1475, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(625); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1341); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(1363); + if (lookahead == '-') ADVANCE(1998); + if (lookahead == 'I') ADVANCE(1389); + if (lookahead == '_') ADVANCE(1363); + if (lookahead == 'i') ADVANCE(1389); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1679); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1352: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1364); - if (lookahead == '-') ADVANCE(1999); - if (lookahead == 'I') ADVANCE(1390); - if (lookahead == '_') ADVANCE(1364); - if (lookahead == 'i') ADVANCE(1390); + if (lookahead == '+') ADVANCE(1363); + if (lookahead == '-') ADVANCE(1998); + if (lookahead == 'I') ADVANCE(1389); + if (lookahead == '_') ADVANCE(1363); + if (lookahead == 'i') ADVANCE(1366); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + lookahead == 'b') ADVANCE(1679); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1353: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1364); - if (lookahead == '-') ADVANCE(1999); - if (lookahead == 'I') ADVANCE(1390); - if (lookahead == '_') ADVANCE(1364); - if (lookahead == 'i') ADVANCE(1367); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == '+') ADVANCE(1363); + if (lookahead == '-') ADVANCE(1998); + if (lookahead == '_') ADVANCE(1363); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1354: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1364); - if (lookahead == '-') ADVANCE(1999); - if (lookahead == '_') ADVANCE(1364); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == '-') ADVANCE(447); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1355: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(448); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == '-') ADVANCE(356); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1356: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(357); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == '-') ADVANCE(431); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1357: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(432); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == '-') ADVANCE(448); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1358: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(449); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == '-') ADVANCE(515); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1359: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(516); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == 'I') ADVANCE(1389); + if (lookahead == 'i') ADVANCE(1389); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1679); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1360: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1390); - if (lookahead == 'i') ADVANCE(1390); + if (lookahead == 'I') ADVANCE(1389); + if (lookahead == 'i') ADVANCE(1366); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + lookahead == 'b') ADVANCE(1679); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1361: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1390); - if (lookahead == 'i') ADVANCE(1367); + if (lookahead == 'I') ADVANCE(1389); + if (lookahead == 'i') ADVANCE(1377); + if (lookahead == 's') ADVANCE(1682); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + lookahead == 'b') ADVANCE(1679); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1362: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1390); - if (lookahead == 'i') ADVANCE(1378); - if (lookahead == 's') ADVANCE(1683); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == '_') ADVANCE(1362); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1363: ACCEPT_TOKEN(sym_identifier); if (lookahead == '_') ADVANCE(1363); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1364: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1364); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == 'a') ADVANCE(1384); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1365: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1385); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == 'a') ADVANCE(1388); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1366: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1389); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == 'b') ADVANCE(1679); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1367: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == 'c') ADVANCE(1682); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1368: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(1683); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == 'e') ADVANCE(1372); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1369: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1373); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == 'e') ADVANCE(1356); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1370: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1357); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == 'e') ADVANCE(1367); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1371: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1368); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == 'k') ADVANCE(1682); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1372: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(1683); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == 'l') ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1373: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1374); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == 'l') ADVANCE(1354); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1374: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') ADVANCE(1355); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1375: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1356); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == 'l') ADVANCE(1374); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1376: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1375); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == 'm') ADVANCE(1381); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1377: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(1382); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == 'n') ADVANCE(1682); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1679); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1378: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1683); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == 'n') ADVANCE(1104); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1379: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1105); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == 'n') ADVANCE(1369); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1380: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1370); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == 'o') ADVANCE(1382); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1381: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1383); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == 'p') ADVANCE(1380); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1382: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(1381); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == 'r') ADVANCE(1386); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1383: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1387); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == 'r') ADVANCE(1682); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1384: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1683); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == 'r') ADVANCE(1358); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1385: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1359); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == 's') ADVANCE(1682); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1386: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1683); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == 't') ADVANCE(1357); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1387: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1358); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == 'u') ADVANCE(1375); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1388: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(1376); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == 'y') ADVANCE(1682); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1389: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(1683); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1679); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1390: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1680); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1391: - ACCEPT_TOKEN(sym_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(437); + if (lookahead == '>') ADVANCE(522); + if (lookahead == 'r') ADVANCE(1440); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1392: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(438); + if (lookahead == '+') ADVANCE(375); if (lookahead == '>') ADVANCE(523); - if (lookahead == 'r') ADVANCE(1441); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'u') ADVANCE(1453); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1393: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(376); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'u') ADVANCE(1454); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == '+') ADVANCE(442); + if (lookahead == '>') ADVANCE(525); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1394: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(443); - if (lookahead == '>') ADVANCE(526); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == '+') ADVANCE(378); + if (lookahead == '>') ADVANCE(527); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1395: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(379); - if (lookahead == '>') ADVANCE(528); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'N') ADVANCE(1461); + if (lookahead == 'f') ADVANCE(1083); + if (lookahead == 'n') ADVANCE(1103); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1396: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N') ADVANCE(1462); - if (lookahead == 'f') ADVANCE(1084); - if (lookahead == 'n') ADVANCE(1104); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == '_') ADVANCE(1396); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1396); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1397: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(1397); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1397); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'a') ADVANCE(1448); + if (lookahead == 'o') ADVANCE(1432); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1398: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1449); - if (lookahead == 'o') ADVANCE(1433); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'a') ADVANCE(1429); + if (lookahead == 'i') ADVANCE(1433); + if (lookahead == 'o') ADVANCE(1439); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1399: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1430); - if (lookahead == 'i') ADVANCE(1434); - if (lookahead == 'o') ADVANCE(1440); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'a') ADVANCE(1443); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1400: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1444); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'a') ADVANCE(1425); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1401: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1426); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'a') ADVANCE(1454); + if (lookahead == 'o') ADVANCE(1404); + if (lookahead == 'u') ADVANCE(1450); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1402: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1455); - if (lookahead == 'o') ADVANCE(1405); - if (lookahead == 'u') ADVANCE(1451); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'c') ADVANCE(1416); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1403: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'c') ADVANCE(1417); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1404: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(1418); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'd') ADVANCE(1457); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1405: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(1458); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'e') ADVANCE(1415); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1406: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1416); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'e') ADVANCE(1062); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1407: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1063); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'e') ADVANCE(1086); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1408: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1087); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'e') ADVANCE(1107); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1409: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1108); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'e') ADVANCE(1110); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1410: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1111); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'e') ADVANCE(1080); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1411: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1081); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'e') ADVANCE(1071); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1412: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1072); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'e') ADVANCE(1449); + if (lookahead == 'o') ADVANCE(1434); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1413: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1450); - if (lookahead == 'o') ADVANCE(1435); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'e') ADVANCE(1441); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1414: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1442); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'e') ADVANCE(1431); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1415: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1432); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'f') ADVANCE(835); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1416: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'f') ADVANCE(836); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'h') ADVANCE(1092); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1417: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1093); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'h') ADVANCE(1098); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1418: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1099); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'h') ADVANCE(1420); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1419: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1421); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'i') ADVANCE(1399); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1420: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1400); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'i') ADVANCE(1426); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1421: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1427); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'l') ADVANCE(1419); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1422: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1420); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'l') ADVANCE(1113); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1423: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1114); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'l') ADVANCE(1459); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1424: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1460); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'l') ADVANCE(1422); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1425: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'l') ADVANCE(1423); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1426: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1424); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'l') ADVANCE(1410); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1427: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'l') ADVANCE(1411); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1428: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1412); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'l') ADVANCE(1445); + if (lookahead == 'x') ADVANCE(1437); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1429: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1446); - if (lookahead == 'x') ADVANCE(1438); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'l') ADVANCE(1447); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1430: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1448); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'n') ADVANCE(1068); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1431: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1069); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'n') ADVANCE(1458); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1432: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1459); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'n') ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1433: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1447); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'n') ADVANCE(1400); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1434: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1401); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'o') ADVANCE(1436); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1435: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1437); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'o') ADVANCE(1442); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1436: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1443); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'p') ADVANCE(1077); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1437: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(1078); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'p') ADVANCE(1435); + if (lookahead == 't') ADVANCE(1413); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1438: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(1436); - if (lookahead == 't') ADVANCE(1414); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'r') ADVANCE(1456); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1439: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1457); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'r') ADVANCE(1074); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1440: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1075); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'r') ADVANCE(1393); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1441: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1394); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'r') ADVANCE(1430); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1442: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1431); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'r') ADVANCE(1452); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1443: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1453); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 's') ADVANCE(675); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1444: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(676); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 's') ADVANCE(1406); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1445: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 's') ADVANCE(1407); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1446: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1408); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 's') ADVANCE(1451); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1447: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1452); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 's') ADVANCE(1409); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1448: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1410); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 't') ADVANCE(1402); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1449: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1403); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 't') ADVANCE(681); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1450: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(682); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 't') ADVANCE(684); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1451: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(685); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 't') ADVANCE(687); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1452: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(688); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 't') ADVANCE(671); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1453: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(672); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 't') ADVANCE(1394); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1454: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1395); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 't') ADVANCE(1403); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1455: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1404); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'u') ADVANCE(1424); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1464); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1456: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1425); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1465); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'u') ADVANCE(1408); + if (lookahead == 'y') ADVANCE(1089); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1457: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1409); - if (lookahead == 'y') ADVANCE(1090); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'u') ADVANCE(1427); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1458: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1428); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'v') ADVANCE(1065); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1459: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(1066); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'y') ADVANCE(1095); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1460: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'y') ADVANCE(1096); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1464); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1461: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1465); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1463); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1462: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1464); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1467); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1463: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1468); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + lookahead == 'i') ADVANCE(1466); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1464: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1467); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1469); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1465: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1470); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + lookahead == 'n') ADVANCE(1461); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1466: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1462); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1467: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1463); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1468); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1468: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1469); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1469); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1469: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1470); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(1469); END_STATE(); case 1470: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1470); + ACCEPT_TOKEN(sym__newline); END_STATE(); case 1471: - ACCEPT_TOKEN(sym__newline); + ACCEPT_TOKEN(sym__space); + if (lookahead == ':') ADVANCE(1735); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1471); END_STATE(); case 1472: ACCEPT_TOKEN(sym__space); - if (lookahead == ':') ADVANCE(1736); if (lookahead == '\t' || lookahead == ' ') ADVANCE(1472); END_STATE(); case 1473: - ACCEPT_TOKEN(sym__space); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1473); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 1474: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 1475: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_err_GT_PIPE); END_STATE(); case 1476: - ACCEPT_TOKEN(anon_sym_err_GT_PIPE); + ACCEPT_TOKEN(anon_sym_out_GT_PIPE); END_STATE(); case 1477: - ACCEPT_TOKEN(anon_sym_out_GT_PIPE); + ACCEPT_TOKEN(anon_sym_e_GT_PIPE); END_STATE(); case 1478: - ACCEPT_TOKEN(anon_sym_e_GT_PIPE); + ACCEPT_TOKEN(anon_sym_o_GT_PIPE); END_STATE(); case 1479: - ACCEPT_TOKEN(anon_sym_o_GT_PIPE); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); END_STATE(); case 1480: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); END_STATE(); case 1481: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); END_STATE(); case 1482: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); END_STATE(); case 1483: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); + ACCEPT_TOKEN(sym_attribute_identifier); + if (set_contains(sym_attribute_identifier_character_set_2, 777, lookahead)) ADVANCE(1483); END_STATE(); case 1484: - ACCEPT_TOKEN(sym_attribute_identifier); - if (set_contains(sym_attribute_identifier_character_set_2, 801, lookahead)) ADVANCE(1484); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 1485: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 1486: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 1487: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 1488: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 1489: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 1490: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 1491: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 1492: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 1493: ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '"') ADVANCE(1724); + if (lookahead == '\'') ADVANCE(1723); END_STATE(); case 1494: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(1725); - if (lookahead == '\'') ADVANCE(1724); + if (lookahead == '"') ADVANCE(1724); + if (lookahead == '\'') ADVANCE(1723); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1495: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(1725); - if (lookahead == '\'') ADVANCE(1724); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1496: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_cell_DASHpath); END_STATE(); case 1497: - ACCEPT_TOKEN(anon_sym_cell_DASHpath); + ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); END_STATE(); case 1498: - ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); + ACCEPT_TOKEN(anon_sym_import_DASHpattern); END_STATE(); case 1499: - ACCEPT_TOKEN(anon_sym_import_DASHpattern); + ACCEPT_TOKEN(anon_sym_one_DASHof); END_STATE(); case 1500: - ACCEPT_TOKEN(anon_sym_one_DASHof); + ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); END_STATE(); case 1501: - ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); + ACCEPT_TOKEN(anon_sym_GT2); END_STATE(); case 1502: ACCEPT_TOKEN(anon_sym_GT2); + if (lookahead == '=') ADVANCE(1574); END_STATE(); case 1503: - ACCEPT_TOKEN(anon_sym_GT2); - if (lookahead == '=') ADVANCE(1575); + ACCEPT_TOKEN(anon_sym_AT2); END_STATE(); case 1504: - ACCEPT_TOKEN(anon_sym_AT2); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 1505: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 1506: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 1507: ACCEPT_TOKEN(anon_sym_DASH_DASH); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1508: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_DASH2); END_STATE(); case 1509: ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(1506); END_STATE(); case 1510: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1507); + if (lookahead == '-') ADVANCE(1506); + if (lookahead == '.') ADVANCE(333); + if (lookahead == '_') ADVANCE(307); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(538); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); END_STATE(); case 1511: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1507); - if (lookahead == '.') ADVANCE(334); - if (lookahead == '_') ADVANCE(308); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if (lookahead == '-') ADVANCE(1506); + if (lookahead == '.') ADVANCE(1995); + if (lookahead == '_') ADVANCE(1985); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); END_STATE(); case 1512: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1507); - if (lookahead == '.') ADVANCE(1996); - if (lookahead == '_') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if (lookahead == '-') ADVANCE(1506); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '_') ADVANCE(312); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); END_STATE(); case 1513: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1507); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(313); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if (lookahead == '.') ADVANCE(333); + if (lookahead == '_') ADVANCE(307); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(538); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); END_STATE(); case 1514: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(334); - if (lookahead == '_') ADVANCE(308); + if (lookahead == '.') ADVANCE(875); + if (lookahead == '_') ADVANCE(857); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + lookahead == 'i') ADVANCE(1039); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(875); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1515: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(876); - if (lookahead == '_') ADVANCE(858); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(876); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '.') ADVANCE(1838); + if (lookahead == '_') ADVANCE(1815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); END_STATE(); case 1516: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(1839); - if (lookahead == '_') ADVANCE(1816); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '_') ADVANCE(312); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); END_STATE(); case 1517: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(313); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if (lookahead == '=') ADVANCE(690); END_STATE(); case 1518: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '=') ADVANCE(691); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1519: - ACCEPT_TOKEN(anon_sym_DASH2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(sym_param_short_flag_identifier); END_STATE(); case 1520: - ACCEPT_TOKEN(sym_param_short_flag_identifier); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 1521: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 1522: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 1523: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '_') ADVANCE(2036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); END_STATE(); case 1524: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2037); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1525: - ACCEPT_TOKEN(anon_sym__); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 1526: ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(694); + if (lookahead == '<') ADVANCE(1628); + if (lookahead == '=') ADVANCE(1627); END_STATE(); case 1527: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(695); - if (lookahead == '<') ADVANCE(1629); - if (lookahead == '=') ADVANCE(1628); + if (lookahead == '.') ADVANCE(2012); + if (lookahead == '<') ADVANCE(1628); + if (lookahead == '=') ADVANCE(1627); END_STATE(); case 1528: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(2013); - if (lookahead == '<') ADVANCE(1629); - if (lookahead == '=') ADVANCE(1628); + if (lookahead == '.') ADVANCE(2102); + if (lookahead == '<') ADVANCE(1628); + if (lookahead == '=') ADVANCE(1627); END_STATE(); case 1529: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(2103); - if (lookahead == '<') ADVANCE(1629); - if (lookahead == '=') ADVANCE(1628); + if (lookahead == '<') ADVANCE(1628); + if (lookahead == '=') ADVANCE(1627); END_STATE(); case 1530: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(1629); - if (lookahead == '=') ADVANCE(1628); + if (lookahead == '<') ADVANCE(1628); + if (lookahead == '=') ADVANCE(1627); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1060); END_STATE(); case 1531: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(1629); - if (lookahead == '=') ADVANCE(1628); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_DOLLAR2); END_STATE(); case 1532: ACCEPT_TOKEN(anon_sym_DOLLAR2); + if (lookahead == '"') ADVANCE(1724); + if (lookahead == '\'') ADVANCE(1723); END_STATE(); case 1533: - ACCEPT_TOKEN(anon_sym_DOLLAR2); - if (lookahead == '"') ADVANCE(1725); - if (lookahead == '\'') ADVANCE(1724); + ACCEPT_TOKEN(anon_sym_STAR2); END_STATE(); case 1534: ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(1584); END_STATE(); case 1535: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1585); + if (lookahead == '*') ADVANCE(1584); + if (lookahead == '=') ADVANCE(691); END_STATE(); case 1536: ACCEPT_TOKEN(anon_sym_STAR2); if (lookahead == '*') ADVANCE(1585); - if (lookahead == '=') ADVANCE(692); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1537: - ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1586); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (lookahead == 'a') ADVANCE(1540); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1547); END_STATE(); case 1538: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'a') ADVANCE(1541); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1548); + if (lookahead == 'e') ADVANCE(1106); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1547); END_STATE(); case 1539: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'e') ADVANCE(1107); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1548); + if (lookahead == 'e') ADVANCE(1109); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1547); END_STATE(); case 1540: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'e') ADVANCE(1110); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1548); + if (lookahead == 'l') ADVANCE(1543); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1547); END_STATE(); case 1541: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'l') ADVANCE(1544); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1548); + if (lookahead == 'o') ADVANCE(1544); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1547); END_STATE(); case 1542: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'o') ADVANCE(1545); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1548); + if (lookahead == 'r') ADVANCE(1545); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1547); END_STATE(); case 1543: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'r') ADVANCE(1546); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1548); + if (lookahead == 's') ADVANCE(1539); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1547); END_STATE(); case 1544: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 's') ADVANCE(1540); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1548); + if (lookahead == 't') ADVANCE(1546); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1547); END_STATE(); case 1545: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 't') ADVANCE(1547); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1548); + if (lookahead == 'u') ADVANCE(1538); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1547); END_STATE(); case 1546: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'u') ADVANCE(1539); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1548); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1582); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1547); END_STATE(); case 1547: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1583); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1548); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1547); END_STATE(); case 1548: - 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(1548); + ACCEPT_TOKEN(anon_sym_where); END_STATE(); case 1549: - ACCEPT_TOKEN(anon_sym_where); + ACCEPT_TOKEN(anon_sym_and2); END_STATE(); case 1550: ACCEPT_TOKEN(anon_sym_and2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1551: - ACCEPT_TOKEN(anon_sym_and2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_xor2); END_STATE(); case 1552: ACCEPT_TOKEN(anon_sym_xor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1553: - ACCEPT_TOKEN(anon_sym_xor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_or2); END_STATE(); case 1554: ACCEPT_TOKEN(anon_sym_or2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1555: - ACCEPT_TOKEN(anon_sym_or2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_not_DASHin2); END_STATE(); case 1556: ACCEPT_TOKEN(anon_sym_not_DASHin2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1557: - ACCEPT_TOKEN(anon_sym_not_DASHin2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_has2); END_STATE(); case 1558: ACCEPT_TOKEN(anon_sym_has2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1559: - ACCEPT_TOKEN(anon_sym_has2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_not_DASHhas2); END_STATE(); case 1560: ACCEPT_TOKEN(anon_sym_not_DASHhas2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1561: - ACCEPT_TOKEN(anon_sym_not_DASHhas2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_starts_DASHwith2); END_STATE(); case 1562: ACCEPT_TOKEN(anon_sym_starts_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1563: - ACCEPT_TOKEN(anon_sym_starts_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); END_STATE(); case 1564: ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1565: - ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_ends_DASHwith2); END_STATE(); case 1566: ACCEPT_TOKEN(anon_sym_ends_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1567: - ACCEPT_TOKEN(anon_sym_ends_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); END_STATE(); case 1568: ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1569: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_EQ_EQ2); END_STATE(); case 1570: - ACCEPT_TOKEN(anon_sym_EQ_EQ2); + ACCEPT_TOKEN(anon_sym_BANG_EQ2); END_STATE(); case 1571: - ACCEPT_TOKEN(anon_sym_BANG_EQ2); + ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); case 1572: ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '=') ADVANCE(1573); END_STATE(); case 1573: - ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(1574); + ACCEPT_TOKEN(anon_sym_LT_EQ2); END_STATE(); case 1574: - ACCEPT_TOKEN(anon_sym_LT_EQ2); + ACCEPT_TOKEN(anon_sym_GT_EQ2); END_STATE(); case 1575: - ACCEPT_TOKEN(anon_sym_GT_EQ2); + ACCEPT_TOKEN(anon_sym_EQ_TILDE2); END_STATE(); case 1576: - ACCEPT_TOKEN(anon_sym_EQ_TILDE2); + ACCEPT_TOKEN(anon_sym_BANG_TILDE2); END_STATE(); case 1577: ACCEPT_TOKEN(anon_sym_BANG_TILDE2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1578: - ACCEPT_TOKEN(anon_sym_BANG_TILDE2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_like2); END_STATE(); case 1579: ACCEPT_TOKEN(anon_sym_like2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1580: - ACCEPT_TOKEN(anon_sym_like2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_not_DASHlike2); END_STATE(); case 1581: ACCEPT_TOKEN(anon_sym_not_DASHlike2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1582: - ACCEPT_TOKEN(anon_sym_not_DASHlike2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(aux_sym_expr_unary_token1); END_STATE(); case 1583: - ACCEPT_TOKEN(aux_sym_expr_unary_token1); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 1584: - ACCEPT_TOKEN(anon_sym_LPAREN2); + ACCEPT_TOKEN(anon_sym_STAR_STAR2); END_STATE(); case 1585: ACCEPT_TOKEN(anon_sym_STAR_STAR2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1586: - ACCEPT_TOKEN(anon_sym_STAR_STAR2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); END_STATE(); case 1587: ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + if (lookahead == '=') ADVANCE(693); END_STATE(); case 1588: ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if (lookahead == '=') ADVANCE(694); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1589: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(1595); END_STATE(); case 1590: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1596); + if (lookahead == '/') ADVANCE(1595); + if (lookahead == '=') ADVANCE(692); END_STATE(); case 1591: ACCEPT_TOKEN(anon_sym_SLASH2); if (lookahead == '/') ADVANCE(1596); - if (lookahead == '=') ADVANCE(693); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1592: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1597); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1593: - ACCEPT_TOKEN(anon_sym_SLASH2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + ACCEPT_TOKEN(anon_sym_mod2); END_STATE(); case 1594: ACCEPT_TOKEN(anon_sym_mod2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1595: - ACCEPT_TOKEN(anon_sym_mod2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); END_STATE(); case 1596: ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1597: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(1586); END_STATE(); case 1598: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1587); + if (lookahead == '+') ADVANCE(1586); + if (lookahead == '.') ADVANCE(1838); + if (lookahead == '_') ADVANCE(1815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); END_STATE(); case 1599: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1587); - if (lookahead == '.') ADVANCE(1839); - if (lookahead == '_') ADVANCE(1816); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if (lookahead == '+') ADVANCE(1586); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '_') ADVANCE(312); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); END_STATE(); case 1600: ACCEPT_TOKEN(anon_sym_PLUS2); if (lookahead == '+') ADVANCE(1587); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(313); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if (lookahead == '=') ADVANCE(689); END_STATE(); case 1601: ACCEPT_TOKEN(anon_sym_PLUS2); if (lookahead == '+') ADVANCE(1588); - if (lookahead == '=') ADVANCE(690); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1602: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1589); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if (lookahead == '.') ADVANCE(721); + if (lookahead == '_') ADVANCE(706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); END_STATE(); case 1603: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(722); - if (lookahead == '_') ADVANCE(707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + ACCEPT_TOKEN(anon_sym_bit_DASHshl2); END_STATE(); case 1604: ACCEPT_TOKEN(anon_sym_bit_DASHshl2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1605: - ACCEPT_TOKEN(anon_sym_bit_DASHshl2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_bit_DASHshr2); END_STATE(); case 1606: ACCEPT_TOKEN(anon_sym_bit_DASHshr2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1607: - ACCEPT_TOKEN(anon_sym_bit_DASHshr2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_bit_DASHand2); END_STATE(); case 1608: ACCEPT_TOKEN(anon_sym_bit_DASHand2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1609: - ACCEPT_TOKEN(anon_sym_bit_DASHand2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_bit_DASHxor2); END_STATE(); case 1610: ACCEPT_TOKEN(anon_sym_bit_DASHxor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1611: - ACCEPT_TOKEN(anon_sym_bit_DASHxor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_bit_DASHor2); END_STATE(); case 1612: ACCEPT_TOKEN(anon_sym_bit_DASHor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 1613: - ACCEPT_TOKEN(anon_sym_bit_DASHor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); END_STATE(); case 1614: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '.') ADVANCE(1504); + if (lookahead == '<') ADVANCE(1630); + if (lookahead == '=') ADVANCE(1629); END_STATE(); case 1615: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1505); - if (lookahead == '<') ADVANCE(1631); - if (lookahead == '=') ADVANCE(1630); + if (lookahead == '<') ADVANCE(1630); + if (lookahead == '=') ADVANCE(1629); END_STATE(); case 1616: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '<') ADVANCE(1631); - if (lookahead == '=') ADVANCE(1630); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 1617: ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1615); END_STATE(); case 1618: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1616); + if (lookahead == '.') ADVANCE(1615); + if (lookahead == '_') ADVANCE(722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); END_STATE(); case 1619: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1616); - if (lookahead == '_') ADVANCE(723); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); + if (lookahead == '.') ADVANCE(1525); END_STATE(); case 1620: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1526); + if (lookahead == '.') ADVANCE(1525); + if (lookahead == '_') ADVANCE(1969); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); END_STATE(); case 1621: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1526); - if (lookahead == '_') ADVANCE(1970); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); + if (lookahead == '.') ADVANCE(1988); END_STATE(); case 1622: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1989); + if (lookahead == '.') ADVANCE(1988); + if (lookahead == '_') ADVANCE(1996); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); END_STATE(); case 1623: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1989); - if (lookahead == '_') ADVANCE(1997); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); + if (lookahead == '.') ADVANCE(1614); END_STATE(); case 1624: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1615); + if (lookahead == '_') ADVANCE(1996); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); END_STATE(); case 1625: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1997); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); + if (lookahead == '_') ADVANCE(1969); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); END_STATE(); case 1626: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1970); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); + if (lookahead == '_') ADVANCE(1839); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); END_STATE(); case 1627: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1840); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); case 1628: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); END_STATE(); case 1629: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); END_STATE(); case 1630: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); END_STATE(); case 1631: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(1631); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); END_STATE(); case 1632: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); if (lookahead == '_') ADVANCE(1632); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1633: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); if (lookahead == '_') ADVANCE(1633); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); END_STATE(); case 1634: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); if (lookahead == '_') ADVANCE(1634); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); END_STATE(); case 1635: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(1635); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); END_STATE(); case 1636: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); if (lookahead == '_') ADVANCE(1636); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); END_STATE(); @@ -29870,2140 +29810,2135 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); if (lookahead == '_') ADVANCE(1637); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1638: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); - if (lookahead == '_') ADVANCE(1638); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); case 1639: - ACCEPT_TOKEN(anon_sym_RPAREN2); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); END_STATE(); case 1640: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(829); + if (lookahead == '_') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); END_STATE(); case 1641: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(830); - if (lookahead == '_') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if (lookahead == '-') ADVANCE(2088); + if (lookahead == '_') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); END_STATE(); case 1642: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2089); - if (lookahead == '_') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if (lookahead == '-') ADVANCE(2142); + if (lookahead == '_') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); END_STATE(); case 1643: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2143); - if (lookahead == '_') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if (lookahead == '-') ADVANCE(2194); + if (lookahead == '_') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); END_STATE(); case 1644: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2195); - if (lookahead == '_') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if (lookahead == '-') ADVANCE(558); + if (lookahead == '_') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); END_STATE(); case 1645: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(559); - if (lookahead == '_') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if (lookahead == '_') ADVANCE(1666); + if (lookahead == 'b') ADVANCE(1673); + if (lookahead == 'o') ADVANCE(1683); + if (lookahead == 'x') ADVANCE(1685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1652); END_STATE(); case 1646: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1667); - if (lookahead == 'b') ADVANCE(1674); - if (lookahead == 'o') ADVANCE(1684); - if (lookahead == 'x') ADVANCE(1686); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1653); + if (lookahead == '_') ADVANCE(1666); + if (lookahead == 'b') ADVANCE(1673); + if (lookahead == 'o') ADVANCE(1683); + if (lookahead == 'x') ADVANCE(1685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1654); END_STATE(); case 1647: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1667); - if (lookahead == 'b') ADVANCE(1674); - if (lookahead == 'o') ADVANCE(1684); - if (lookahead == 'x') ADVANCE(1686); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1655); + if (lookahead == '_') ADVANCE(1666); + if (lookahead == 'b') ADVANCE(1673); + if (lookahead == 'o') ADVANCE(1683); + if (lookahead == 'x') ADVANCE(1685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1656); END_STATE(); case 1648: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1667); - if (lookahead == 'b') ADVANCE(1674); - if (lookahead == 'o') ADVANCE(1684); - if (lookahead == 'x') ADVANCE(1686); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1657); + if (lookahead == '_') ADVANCE(1666); + if (lookahead == 'b') ADVANCE(1673); + if (lookahead == 'o') ADVANCE(1683); + if (lookahead == 'x') ADVANCE(1685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1658); END_STATE(); case 1649: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1667); - if (lookahead == 'b') ADVANCE(1674); - if (lookahead == 'o') ADVANCE(1684); - if (lookahead == 'x') ADVANCE(1686); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1659); + if (lookahead == '_') ADVANCE(1666); + if (lookahead == 'b') ADVANCE(1673); + if (lookahead == 'o') ADVANCE(1683); + if (lookahead == 'x') ADVANCE(1685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1660); END_STATE(); case 1650: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1667); - if (lookahead == 'b') ADVANCE(1674); - if (lookahead == 'o') ADVANCE(1684); - if (lookahead == 'x') ADVANCE(1686); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1661); + if (lookahead == '_') ADVANCE(1666); + if (lookahead == 'b') ADVANCE(823); + if (lookahead == 'o') ADVANCE(825); + if (lookahead == 'x') ADVANCE(832); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); END_STATE(); case 1651: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1667); - if (lookahead == 'b') ADVANCE(824); - if (lookahead == 'o') ADVANCE(826); - if (lookahead == 'x') ADVANCE(833); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if (lookahead == '_') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); END_STATE(); case 1652: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if (lookahead == '_') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1651); END_STATE(); case 1653: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1652); + if (lookahead == '_') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); END_STATE(); case 1654: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if (lookahead == '_') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1653); END_STATE(); case 1655: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1654); + if (lookahead == '_') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); END_STATE(); case 1656: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if (lookahead == '_') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1655); END_STATE(); case 1657: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1656); + if (lookahead == '_') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); END_STATE(); case 1658: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead == '_') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1657); END_STATE(); case 1659: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1658); + if (lookahead == '_') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); END_STATE(); case 1660: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead == '_') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1659); END_STATE(); case 1661: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1660); + if (lookahead == '_') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1652); END_STATE(); case 1662: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1653); + if (lookahead == '_') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1654); END_STATE(); case 1663: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1655); + if (lookahead == '_') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1656); END_STATE(); case 1664: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1657); + if (lookahead == '_') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1658); END_STATE(); case 1665: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1659); + if (lookahead == '_') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1660); END_STATE(); case 1666: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1661); + if (lookahead == '_') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); END_STATE(); case 1667: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); if (lookahead == '_') ADVANCE(1667); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); END_STATE(); case 1668: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); if (lookahead == '_') ADVANCE(1668); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); END_STATE(); case 1669: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); if (lookahead == '_') ADVANCE(1669); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); END_STATE(); case 1670: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); - if (lookahead == '_') ADVANCE(1670); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); - END_STATE(); - case 1671: ACCEPT_TOKEN(aux_sym__val_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1671); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1670); END_STATE(); - case 1672: + case 1671: ACCEPT_TOKEN(aux_sym__val_number_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1672); + lookahead == '_') ADVANCE(1671); END_STATE(); - case 1673: + case 1672: ACCEPT_TOKEN(aux_sym__val_number_token3); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1673); + lookahead == '_') ADVANCE(1672); END_STATE(); - case 1674: + case 1673: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1672); + lookahead == '_') ADVANCE(1671); END_STATE(); - case 1675: + case 1674: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1044); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + lookahead == '_') ADVANCE(1043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); + END_STATE(); + case 1675: + ACCEPT_TOKEN(sym_filesize_unit); END_STATE(); case 1676: ACCEPT_TOKEN(sym_filesize_unit); + if (lookahead == 'i') ADVANCE(1318); END_STATE(); case 1677: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1319); + if (lookahead == 'i') ADVANCE(479); END_STATE(); case 1678: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(480); + if (lookahead == 'i') ADVANCE(1922); END_STATE(); case 1679: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1923); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1680: - ACCEPT_TOKEN(sym_filesize_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + ACCEPT_TOKEN(sym_duration_unit); END_STATE(); case 1681: ACCEPT_TOKEN(sym_duration_unit); + if (lookahead == 'e') ADVANCE(1061); END_STATE(); case 1682: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(1062); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1683: - ACCEPT_TOKEN(sym_duration_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); - END_STATE(); - case 1684: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1673); + lookahead == '_') ADVANCE(1672); END_STATE(); - case 1685: + case 1684: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1047); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + lookahead == '_') ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); - case 1686: + case 1685: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1671); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1670); END_STATE(); - case 1687: + case 1686: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1060); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1059); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); - case 1688: + case 1687: ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); - case 1689: + case 1688: ACCEPT_TOKEN(sym_hex_digit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1689); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1688); + END_STATE(); + case 1689: + ACCEPT_TOKEN(sym_val_date); END_STATE(); case 1690: ACCEPT_TOKEN(sym_val_date); + if (lookahead == '.') ADVANCE(552); + if (lookahead == '+' || + lookahead == '-') ADVANCE(313); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1689); END_STATE(); case 1691: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(553); + if (lookahead == '.') ADVANCE(2086); if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '-') ADVANCE(2025); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1690); + lookahead == 'z') ADVANCE(1689); END_STATE(); case 1692: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2087); + if (lookahead == '.') ADVANCE(2145); if (lookahead == '+' || - lookahead == '-') ADVANCE(2026); + lookahead == '-') ADVANCE(2108); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1690); + lookahead == 'z') ADVANCE(1689); END_STATE(); case 1693: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2146); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2109); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1690); + if (lookahead == ':') ADVANCE(1704); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(551); END_STATE(); case 1694: ACCEPT_TOKEN(sym_val_date); if (lookahead == ':') ADVANCE(1705); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(552); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2081); END_STATE(); case 1695: ACCEPT_TOKEN(sym_val_date); if (lookahead == ':') ADVANCE(1706); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2082); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2139); END_STATE(); case 1696: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2140); + if (lookahead == 'T') ADVANCE(831); END_STATE(); case 1697: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(832); + if (lookahead == 'T') ADVANCE(2090); END_STATE(); case 1698: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2091); + if (lookahead == 'T') ADVANCE(2148); END_STATE(); case 1699: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2149); + if (lookahead == 'T') ADVANCE(2196); END_STATE(); case 1700: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2197); + if (lookahead == 'T') ADVANCE(561); END_STATE(); case 1701: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(562); + if (lookahead == '+' || + lookahead == '-') ADVANCE(313); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1689); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1701); END_STATE(); case 1702: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '-') ADVANCE(2025); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1690); + lookahead == 'z') ADVANCE(1689); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1702); END_STATE(); case 1703: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(2026); + lookahead == '-') ADVANCE(2108); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1690); + lookahead == 'z') ADVANCE(1689); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1703); END_STATE(); case 1704: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2109); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1690); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1704); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(551); END_STATE(); case 1705: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(552); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2081); END_STATE(); case 1706: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2082); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2139); END_STATE(); case 1707: - ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2140); - END_STATE(); - case 1708: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 1709: + case 1708: ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead == '#') ADVANCE(1710); + if (lookahead == '#') ADVANCE(1709); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1709); + lookahead == ' ') ADVANCE(1708); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(1710); + lookahead != '\\') ADVANCE(1709); END_STATE(); - case 1710: + case 1709: ACCEPT_TOKEN(sym__escaped_str_content); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(1710); + lookahead != '\\') ADVANCE(1709); END_STATE(); - case 1711: + case 1710: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 1712: + case 1711: ACCEPT_TOKEN(aux_sym__str_single_quotes_token1); - if (lookahead == '#') ADVANCE(1713); + if (lookahead == '#') ADVANCE(1712); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1711); if (lookahead != 0 && - lookahead != '\'') ADVANCE(1713); + lookahead != '\'') ADVANCE(1712); END_STATE(); - case 1713: + case 1712: ACCEPT_TOKEN(aux_sym__str_single_quotes_token1); if (lookahead != 0 && - lookahead != '\'') ADVANCE(1713); + lookahead != '\'') ADVANCE(1712); END_STATE(); - case 1714: + case 1713: ACCEPT_TOKEN(anon_sym_SQUOTE2); END_STATE(); - case 1715: + case 1714: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 1716: + case 1715: ACCEPT_TOKEN(aux_sym__str_back_ticks_token1); - if (lookahead == '#') ADVANCE(1717); + if (lookahead == '#') ADVANCE(1716); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1716); + lookahead == ' ') ADVANCE(1715); if (lookahead != 0 && - lookahead != '`') ADVANCE(1717); + lookahead != '`') ADVANCE(1716); END_STATE(); - case 1717: + case 1716: ACCEPT_TOKEN(aux_sym__str_back_ticks_token1); if (lookahead != 0 && - lookahead != '`') ADVANCE(1717); + lookahead != '`') ADVANCE(1716); END_STATE(); - case 1718: + case 1717: ACCEPT_TOKEN(anon_sym_BQUOTE2); END_STATE(); - case 1719: + case 1718: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 1720: + case 1719: ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead == '#') ADVANCE(1721); + if (lookahead == '#') ADVANCE(1720); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1720); + lookahead == ' ') ADVANCE(1719); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && lookahead != '(' && - lookahead != '\\') ADVANCE(1721); + lookahead != '\\') ADVANCE(1720); END_STATE(); - case 1721: + case 1720: ACCEPT_TOKEN(sym_escaped_interpolated_content); if (lookahead != 0 && lookahead != '"' && lookahead != '(' && - lookahead != '\\') ADVANCE(1721); + lookahead != '\\') ADVANCE(1720); END_STATE(); - case 1722: + case 1721: ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead == '#') ADVANCE(1723); + if (lookahead == '#') ADVANCE(1722); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1722); + lookahead == ' ') ADVANCE(1721); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(1723); + lookahead != '(') ADVANCE(1722); END_STATE(); - case 1723: + case 1722: ACCEPT_TOKEN(sym_unescaped_interpolated_content); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(1723); + lookahead != '(') ADVANCE(1722); END_STATE(); - case 1724: + case 1723: ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); END_STATE(); - case 1725: + case 1724: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); END_STATE(); - case 1726: + case 1725: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 1727: + case 1726: ACCEPT_TOKEN(sym_inter_escape_sequence); END_STATE(); - case 1728: + case 1727: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); END_STATE(); - case 1729: + case 1728: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); END_STATE(); + case 1729: + ACCEPT_TOKEN(sym__entry_separator); + END_STATE(); case 1730: ACCEPT_TOKEN(sym__entry_separator); + if (lookahead == '\n') ADVANCE(1729); + if (lookahead == '\r') ADVANCE(1729); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1730); + if (lookahead == 0x0b || + lookahead == '\f' || + lookahead == ',') ADVANCE(1729); END_STATE(); case 1731: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == '\n') ADVANCE(1730); - if (lookahead == '\r') ADVANCE(1730); + if (lookahead == ',') ADVANCE(1729); if (lookahead == '\t' || lookahead == ' ') ADVANCE(1731); - if (lookahead == 0x0b || - lookahead == '\f' || - lookahead == ',') ADVANCE(1730); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1729); END_STATE(); case 1732: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(1730); + if (lookahead == ',') ADVANCE(1729); if (lookahead == '\t' || lookahead == ' ') ADVANCE(1732); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1730); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1733); END_STATE(); case 1733: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(1730); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1733); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1734); - END_STATE(); - case 1734: - ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ';') ADVANCE(1739); + if (lookahead == ';') ADVANCE(1738); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(317); + lookahead == ' ') ADVANCE(316); END_STATE(); - case 1735: + case 1734: ACCEPT_TOKEN(sym__entry_separator); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1735); + lookahead == ' ') ADVANCE(1734); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1730); + lookahead == ',') ADVANCE(1729); END_STATE(); - case 1736: + case 1735: ACCEPT_TOKEN(anon_sym_COLON2); END_STATE(); + case 1736: + ACCEPT_TOKEN(aux_sym__record_key_token1); + if (lookahead == '#') ADVANCE(2216); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1737); + END_STATE(); case 1737: ACCEPT_TOKEN(aux_sym__record_key_token1); - if (lookahead == '#') ADVANCE(2217); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1738); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1737); END_STATE(); case 1738: - ACCEPT_TOKEN(aux_sym__record_key_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1738); + ACCEPT_TOKEN(sym__table_head_separator); END_STATE(); case 1739: - ACCEPT_TOKEN(sym__table_head_separator); + ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); case 1740: - ACCEPT_TOKEN(anon_sym_QMARK2); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 1741: ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(1570); + if (lookahead == '~') ADVANCE(1576); END_STATE(); case 1742: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(1571); - if (lookahead == '~') ADVANCE(1577); + ACCEPT_TOKEN(anon_sym_DOT2); END_STATE(); case 1743: ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(700); END_STATE(); case 1744: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(701); + if (lookahead == '.') ADVANCE(1615); END_STATE(); case 1745: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1616); + if (lookahead == '.') ADVANCE(1525); END_STATE(); case 1746: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1526); + if (lookahead == '.') ADVANCE(309); END_STATE(); case 1747: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(310); + if (lookahead == '.') ADVANCE(1614); END_STATE(); case 1748: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1615); + if (lookahead == '_') ADVANCE(722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); END_STATE(); case 1749: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '_') ADVANCE(723); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); - END_STATE(); - case 1750: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '"') ADVANCE(1708); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '\'') ADVANCE(1711); - if (lookahead == '`') ADVANCE(1715); + if (lookahead == '"') ADVANCE(1707); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '\'') ADVANCE(1710); + if (lookahead == '`') ADVANCE(1714); if (lookahead == '\t' || lookahead == ' ') SKIP(171); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1751); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1750); END_STATE(); - case 1751: + case 1750: ACCEPT_TOKEN(aux_sym_path_token1); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1751); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1750); END_STATE(); - case 1752: + case 1751: ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); - case 1753: + case 1752: ACCEPT_TOKEN(aux_sym_env_var_token1); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1753); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1752); END_STATE(); - case 1754: + case 1753: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); + case 1754: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); case 1755: ACCEPT_TOKEN(anon_sym_PERCENT); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1390); END_STATE(); case 1756: - ACCEPT_TOKEN(anon_sym_PERCENT); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1391); + ACCEPT_TOKEN(anon_sym_err_GT); + if (lookahead == '>') ADVANCE(1772); END_STATE(); case 1757: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(1773); + if (lookahead == '>') ADVANCE(1772); + if (lookahead == '|') ADVANCE(1475); END_STATE(); case 1758: - ACCEPT_TOKEN(anon_sym_err_GT); + ACCEPT_TOKEN(anon_sym_out_GT); if (lookahead == '>') ADVANCE(1773); - if (lookahead == '|') ADVANCE(1476); END_STATE(); case 1759: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(1774); + if (lookahead == '>') ADVANCE(1773); + if (lookahead == '|') ADVANCE(1476); END_STATE(); case 1760: - ACCEPT_TOKEN(anon_sym_out_GT); + ACCEPT_TOKEN(anon_sym_e_GT); if (lookahead == '>') ADVANCE(1774); - if (lookahead == '|') ADVANCE(1477); END_STATE(); case 1761: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(1775); + if (lookahead == '>') ADVANCE(1774); + if (lookahead == '|') ADVANCE(1477); END_STATE(); case 1762: - ACCEPT_TOKEN(anon_sym_e_GT); + ACCEPT_TOKEN(anon_sym_o_GT); if (lookahead == '>') ADVANCE(1775); - if (lookahead == '|') ADVANCE(1478); END_STATE(); case 1763: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(1776); + if (lookahead == '>') ADVANCE(1775); + if (lookahead == '|') ADVANCE(1478); END_STATE(); case 1764: - ACCEPT_TOKEN(anon_sym_o_GT); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); if (lookahead == '>') ADVANCE(1776); - if (lookahead == '|') ADVANCE(1479); END_STATE(); case 1765: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(1777); + if (lookahead == '>') ADVANCE(1776); + if (lookahead == '|') ADVANCE(1479); END_STATE(); case 1766: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); if (lookahead == '>') ADVANCE(1777); - if (lookahead == '|') ADVANCE(1480); END_STATE(); case 1767: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(1778); + if (lookahead == '>') ADVANCE(1777); + if (lookahead == '|') ADVANCE(1480); END_STATE(); case 1768: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); if (lookahead == '>') ADVANCE(1778); - if (lookahead == '|') ADVANCE(1481); END_STATE(); case 1769: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(1779); + if (lookahead == '>') ADVANCE(1778); + if (lookahead == '|') ADVANCE(1481); END_STATE(); case 1770: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); if (lookahead == '>') ADVANCE(1779); - if (lookahead == '|') ADVANCE(1482); END_STATE(); case 1771: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(1780); + if (lookahead == '>') ADVANCE(1779); + if (lookahead == '|') ADVANCE(1482); END_STATE(); case 1772: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(1780); - if (lookahead == '|') ADVANCE(1483); + ACCEPT_TOKEN(anon_sym_err_GT_GT); END_STATE(); case 1773: - ACCEPT_TOKEN(anon_sym_err_GT_GT); + ACCEPT_TOKEN(anon_sym_out_GT_GT); END_STATE(); case 1774: - ACCEPT_TOKEN(anon_sym_out_GT_GT); + ACCEPT_TOKEN(anon_sym_e_GT_GT); END_STATE(); case 1775: - ACCEPT_TOKEN(anon_sym_e_GT_GT); + ACCEPT_TOKEN(anon_sym_o_GT_GT); END_STATE(); case 1776: - ACCEPT_TOKEN(anon_sym_o_GT_GT); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); END_STATE(); case 1777: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); END_STATE(); case 1778: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); END_STATE(); case 1779: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); END_STATE(); case 1780: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(437); + if (lookahead == '>') ADVANCE(522); + if (lookahead == 'r') ADVANCE(1784); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(1786); END_STATE(); case 1781: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(438); + if (lookahead == '+') ADVANCE(375); if (lookahead == '>') ADVANCE(523); - if (lookahead == 'r') ADVANCE(1785); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1787); + if (lookahead == 'u') ADVANCE(1785); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(1786); END_STATE(); case 1782: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(376); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'u') ADVANCE(1786); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1787); + if (lookahead == '+') ADVANCE(442); + if (lookahead == '>') ADVANCE(525); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(1786); END_STATE(); case 1783: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(443); - if (lookahead == '>') ADVANCE(526); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1787); + if (lookahead == '+') ADVANCE(378); + if (lookahead == '>') ADVANCE(527); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(1786); END_STATE(); case 1784: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(379); - if (lookahead == '>') ADVANCE(528); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1787); + if (lookahead == 'r') ADVANCE(1782); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(1786); END_STATE(); case 1785: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(1783); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1787); + if (lookahead == 't') ADVANCE(1783); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(1786); END_STATE(); case 1786: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(1784); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1787); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(1786); END_STATE(); case 1787: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1787); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '+') ADVANCE(1864); + if (lookahead == '>') ADVANCE(1763); + if (lookahead == 'r') ADVANCE(1553); + if (lookahead == 'u') ADVANCE(1925); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1788: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1865); - if (lookahead == '>') ADVANCE(1764); - if (lookahead == 'r') ADVANCE(1554); - if (lookahead == 'u') ADVANCE(1926); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + ADVANCE_MAP( + '+', 1841, + '-', 1844, + '>', 1761, + 'I', 1951, + '_', 1844, + 'i', 1951, + 'n', 1858, + 'r', 1907, + 'B', 1675, + 'b', 1675, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1789: + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '+') ADVANCE(1841); + if (lookahead == '-') ADVANCE(1844); + if (lookahead == '>') ADVANCE(1761); + if (lookahead == '_') ADVANCE(1844); + if (lookahead == 'n') ADVANCE(1858); + if (lookahead == 'r') ADVANCE(1907); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); + END_STATE(); + case 1790: ACCEPT_TOKEN(sym__unquoted_pattern); ADVANCE_MAP( '+', 1842, - '-', 1845, - '>', 1762, - 'I', 1952, - '_', 1845, - 'i', 1952, - 'n', 1859, + '-', 1844, + '>', 1943, + 'I', 1951, + '_', 1844, + 'i', 1951, + 'n', 1858, 'r', 1908, - 'B', 1676, - 'b', 1676, + 'B', 1675, + 'b', 1675, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); - END_STATE(); - case 1790: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1842); - if (lookahead == '-') ADVANCE(1845); - if (lookahead == '>') ADVANCE(1762); - if (lookahead == '_') ADVANCE(1845); - if (lookahead == 'n') ADVANCE(1859); - if (lookahead == 'r') ADVANCE(1908); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1791: ACCEPT_TOKEN(sym__unquoted_pattern); ADVANCE_MAP( - '+', 1843, - '-', 1845, - '>', 1944, - 'I', 1952, - '_', 1845, - 'i', 1952, - 'n', 1859, - 'r', 1909, - 'B', 1676, - 'b', 1676, + '+', 1842, + '-', 1844, + '>', 1943, + 'I', 1951, + '_', 1844, + 'i', 1951, + 'r', 1908, + 'B', 1675, + 'b', 1675, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1792: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1843, - '-', 1845, - '>', 1944, - 'I', 1952, - '_', 1845, - 'i', 1952, - 'r', 1909, - 'B', 1676, - 'b', 1676, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '+') ADVANCE(1842); + if (lookahead == '-') ADVANCE(1844); + if (lookahead == '>') ADVANCE(1943); + if (lookahead == '_') ADVANCE(1844); + if (lookahead == 'n') ADVANCE(1858); + if (lookahead == 'r') ADVANCE(1908); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1793: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1843); - if (lookahead == '-') ADVANCE(1845); - if (lookahead == '>') ADVANCE(1944); - if (lookahead == '_') ADVANCE(1845); - if (lookahead == 'n') ADVANCE(1859); - if (lookahead == 'r') ADVANCE(1909); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '+') ADVANCE(1842); + if (lookahead == '-') ADVANCE(1844); + if (lookahead == '>') ADVANCE(1943); + if (lookahead == '_') ADVANCE(1844); + if (lookahead == 'r') ADVANCE(1908); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1794: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1843); - if (lookahead == '-') ADVANCE(1845); - if (lookahead == '>') ADVANCE(1944); - if (lookahead == '_') ADVANCE(1845); - if (lookahead == 'r') ADVANCE(1909); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '+') ADVANCE(1865); + if (lookahead == '>') ADVANCE(1759); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1795: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1866); - if (lookahead == '>') ADVANCE(1760); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + ADVANCE_MAP( + '+', 1893, + '>', 1761, + 'I', 1951, + 'i', 1951, + 'n', 1858, + 'r', 1907, + 'B', 1675, + 'b', 1675, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1796: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1894, - '>', 1762, - 'I', 1952, - 'i', 1952, - 'n', 1859, - 'r', 1908, - 'B', 1676, - 'b', 1676, - ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '+') ADVANCE(1893); + if (lookahead == '>') ADVANCE(1761); + if (lookahead == 'n') ADVANCE(1858); + if (lookahead == 'r') ADVANCE(1907); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1797: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '+') ADVANCE(1894); - if (lookahead == '>') ADVANCE(1762); - if (lookahead == 'n') ADVANCE(1859); - if (lookahead == 'r') ADVANCE(1908); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '>') ADVANCE(1757); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1798: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1895); - if (lookahead == '>') ADVANCE(1758); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + ADVANCE_MAP( + '+', 1899, + '>', 1943, + 'I', 1951, + 'i', 1951, + 'n', 1858, + 'r', 1908, + 'B', 1675, + 'b', 1675, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1799: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1900, - '>', 1944, - 'I', 1952, - 'i', 1952, - 'n', 1859, - 'r', 1909, - 'B', 1676, - 'b', 1676, - ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '+') ADVANCE(1899); + if (lookahead == '>') ADVANCE(1943); + if (lookahead == 'I') ADVANCE(1951); + if (lookahead == 'i') ADVANCE(1951); + if (lookahead == 'r') ADVANCE(1908); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1800: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1900); - if (lookahead == '>') ADVANCE(1944); - if (lookahead == 'I') ADVANCE(1952); - if (lookahead == 'i') ADVANCE(1952); - if (lookahead == 'r') ADVANCE(1909); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '+') ADVANCE(1899); + if (lookahead == '>') ADVANCE(1943); + if (lookahead == 'n') ADVANCE(1858); + if (lookahead == 'r') ADVANCE(1908); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1801: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1900); - if (lookahead == '>') ADVANCE(1944); - if (lookahead == 'n') ADVANCE(1859); - if (lookahead == 'r') ADVANCE(1909); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '+') ADVANCE(1899); + if (lookahead == '>') ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1908); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1802: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1900); + if (lookahead == '+') ADVANCE(1866); if (lookahead == '>') ADVANCE(1944); - if (lookahead == 'r') ADVANCE(1909); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'r') ADVANCE(1553); + if (lookahead == 'u') ADVANCE(1929); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1803: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1867); - if (lookahead == '>') ADVANCE(1945); - if (lookahead == 'r') ADVANCE(1554); - if (lookahead == 'u') ADVANCE(1930); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '+') ADVANCE(1866); + if (lookahead == '>') ADVANCE(1944); + if (lookahead == 'u') ADVANCE(1929); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1804: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1867); - if (lookahead == '>') ADVANCE(1945); - if (lookahead == 'u') ADVANCE(1930); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '+') ADVANCE(1901); + if (lookahead == '>') ADVANCE(1946); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1805: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1902); - if (lookahead == '>') ADVANCE(1947); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '+') ADVANCE(1867); + if (lookahead == '>') ADVANCE(1948); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1806: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1868); - if (lookahead == '>') ADVANCE(1949); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '-') ADVANCE(1506); + if (lookahead == '.') ADVANCE(1845); + if (lookahead == '_') ADVANCE(1816); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1954); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1807: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1507); - if (lookahead == '.') ADVANCE(1846); - if (lookahead == '_') ADVANCE(1817); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1955); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '-') ADVANCE(1506); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1808: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1507); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '-') ADVANCE(1851); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1809: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1852); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '-') ADVANCE(1868); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1810: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1869); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '-') ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1811: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '-') ADVANCE(1939); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1812: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '-') ADVANCE(1940); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1813: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '-') ADVANCE(1941); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); 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(1959); + if (lookahead == '.') ADVANCE(1615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1815: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '.') ADVANCE(1838); + if (lookahead == '_') ADVANCE(1815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1816: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1839); + if (lookahead == '.') ADVANCE(1845); if (lookahead == '_') ADVANCE(1816); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1817: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1846); - if (lookahead == '_') ADVANCE(1817); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '=') ADVANCE(1570); + if (lookahead == '~') ADVANCE(1576); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1818: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1571); - if (lookahead == '~') ADVANCE(1577); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '=') ADVANCE(1569); + if (lookahead == '>') ADVANCE(1522); + if (lookahead == '~') ADVANCE(1575); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1819: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1570); - if (lookahead == '>') ADVANCE(1523); - if (lookahead == '~') ADVANCE(1576); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '=') ADVANCE(1569); + if (lookahead == '~') ADVANCE(1575); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1820: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1570); - if (lookahead == '~') ADVANCE(1576); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '>') ADVANCE(1522); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1821: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1523); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '>') ADVANCE(1771); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1822: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1772); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '>') ADVANCE(1769); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1823: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1770); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '>') ADVANCE(1765); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1824: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1766); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '>') ADVANCE(1767); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1825: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1768); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '>') ADVANCE(1945); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1826: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1946); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '>') ADVANCE(1947); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1827: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1948); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '>') ADVANCE(1949); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1828: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '>') ADVANCE(1950); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1829: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1951); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + ADVANCE_MAP( + 'I', 1951, + '_', 1844, + 'i', 1951, + 'n', 1858, + '+', 1844, + '-', 1844, + 'B', 1675, + 'b', 1675, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1830: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - 'I', 1952, - '_', 1845, - 'i', 1952, - 'n', 1859, - '+', 1845, - '-', 1845, - 'B', 1676, - 'b', 1676, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'I') ADVANCE(1951); + if (lookahead == '_') ADVANCE(1844); + if (lookahead == 'i') ADVANCE(1951); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1844); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1831: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1952); - if (lookahead == '_') ADVANCE(1845); - if (lookahead == 'i') ADVANCE(1952); + if (lookahead == 'I') ADVANCE(1951); + if (lookahead == '_') ADVANCE(1844); + if (lookahead == 'i') ADVANCE(1853); if (lookahead == '+' || - lookahead == '-') ADVANCE(1845); + lookahead == '-') ADVANCE(1844); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1832: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1952); - if (lookahead == '_') ADVANCE(1845); - if (lookahead == 'i') ADVANCE(1854); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1845); + if (lookahead == 'I') ADVANCE(1951); + if (lookahead == 'i') ADVANCE(1951); + if (lookahead == 'n') ADVANCE(1858); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1833: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1952); - if (lookahead == 'i') ADVANCE(1952); - if (lookahead == 'n') ADVANCE(1859); + if (lookahead == 'I') ADVANCE(1951); + if (lookahead == 'i') ADVANCE(1951); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1834: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1952); - if (lookahead == 'i') ADVANCE(1952); + if (lookahead == 'I') ADVANCE(1951); + if (lookahead == 'i') ADVANCE(1853); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1835: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1952); - if (lookahead == 'i') ADVANCE(1854); + if (lookahead == 'I') ADVANCE(1951); + if (lookahead == 'i') ADVANCE(1886); + if (lookahead == 'o') ADVANCE(1856); + if (lookahead == 's') ADVANCE(1680); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1836: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1952); - if (lookahead == 'i') ADVANCE(1887); - if (lookahead == 'o') ADVANCE(1857); - if (lookahead == 's') ADVANCE(1681); + if (lookahead == 'I') ADVANCE(1951); + if (lookahead == 'i') ADVANCE(1886); + if (lookahead == 's') ADVANCE(1680); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1837: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1952); - if (lookahead == 'i') ADVANCE(1887); - if (lookahead == 's') ADVANCE(1681); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '_') ADVANCE(1837); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1838: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '_') ADVANCE(1838); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1839: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '_') ADVANCE(1839); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1840: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1840); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '_') ADVANCE(1844); + if (lookahead == 'n') ADVANCE(1858); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1844); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1841: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1845); - if (lookahead == 'n') ADVANCE(1859); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1845); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '_') ADVANCE(1844); + if (lookahead == 'o') ADVANCE(1821); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1842: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1845); - if (lookahead == 'o') ADVANCE(1822); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '_') ADVANCE(1844); + if (lookahead == 'o') ADVANCE(1825); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1843: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1845); - if (lookahead == 'o') ADVANCE(1826); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '_') ADVANCE(1844); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1844); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1844: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1845); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1845); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '_') ADVANCE(1844); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1845: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '_') ADVANCE(1845); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1846: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1846); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'a') ADVANCE(1916); + if (lookahead == 'r') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1847: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1917); - if (lookahead == 'r') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'a') ADVANCE(1916); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1848: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1917); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'a') ADVANCE(1942); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1849: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1943); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'a') ADVANCE(1910); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1850: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1911); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'a') ADVANCE(1917); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1851: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1918); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'a') ADVANCE(1891); + if (lookahead == 'o') ADVANCE(1905); + if (lookahead == 's') ADVANCE(1874); + if (lookahead == 'x') ADVANCE(1900); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1852: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1892); - if (lookahead == 'o') ADVANCE(1906); - if (lookahead == 's') ADVANCE(1875); - if (lookahead == 'x') ADVANCE(1901); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'a') ADVANCE(1914); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1853: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1915); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1854: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'c') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1855: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'c') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'd') ADVANCE(1549); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1856: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1550); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'd') ADVANCE(1593); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1857: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1594); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'd') ADVANCE(1607); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1858: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'd') ADVANCE(1918); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1859: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1919); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'd') ADVANCE(1920); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1860: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1921); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'e') ADVANCE(1578); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1861: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1579); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'e') ADVANCE(1580); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1862: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1581); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'e') ADVANCE(1854); + if (lookahead == 't') ADVANCE(1849); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1863: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1855); - if (lookahead == 't') ADVANCE(1850); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'e') ADVANCE(1854); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1864: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1855); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'e') ADVANCE(1822); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1865: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1823); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'e') ADVANCE(1911); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1866: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1912); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'e') ADVANCE(1826); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1867: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1827); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'e') ADVANCE(1912); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1868: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1913); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'e') ADVANCE(1892); + if (lookahead == 'h') ADVANCE(1850); + if (lookahead == 'i') ADVANCE(1888); + if (lookahead == 'l') ADVANCE(1881); + if (lookahead == 's') ADVANCE(1935); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1869: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1893); - if (lookahead == 'h') ADVANCE(1851); - if (lookahead == 'i') ADVANCE(1889); - if (lookahead == 'l') ADVANCE(1882); - if (lookahead == 's') ADVANCE(1936); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'f') ADVANCE(1082); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1870: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'f') ADVANCE(1083); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'h') ADVANCE(1565); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1871: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1566); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'h') ADVANCE(1561); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1872: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1562); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'h') ADVANCE(1567); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1873: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1568); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'h') ADVANCE(1563); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1874: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1564); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'h') ADVANCE(1885); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1875: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1886); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'i') ADVANCE(1883); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1876: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1884); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'i') ADVANCE(1922); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1877: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1923); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'i') ADVANCE(1926); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1878: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1927); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'i') ADVANCE(1928); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1879: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1929); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'i') ADVANCE(1930); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1880: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'i') ADVANCE(1931); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1881: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1932); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'i') ADVANCE(1884); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1882: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1885); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'k') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1883: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'k') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'k') ADVANCE(1860); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1884: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'k') ADVANCE(1861); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1885: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'k') ADVANCE(1862); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'l') ADVANCE(1603); + if (lookahead == 'r') ADVANCE(1605); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1886: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'l') ADVANCE(1604); - if (lookahead == 'r') ADVANCE(1606); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'n') ADVANCE(1680); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1887: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1681); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'n') ADVANCE(1100); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1888: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1101); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'n') ADVANCE(1555); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1889: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1556); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'n') ADVANCE(1855); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1890: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1856); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'n') ADVANCE(1858); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1891: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1859); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'n') ADVANCE(1857); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1892: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1858); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'n') ADVANCE(1859); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1893: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1860); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'o') ADVANCE(1821); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1894: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1822); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'o') ADVANCE(1936); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1895: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1937); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'o') ADVANCE(1904); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1896: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1905); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'o') ADVANCE(1924); + if (lookahead == 's') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1897: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1925); - if (lookahead == 's') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'o') ADVANCE(1924); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1898: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1925); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'o') ADVANCE(1856); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1899: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1857); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'o') ADVANCE(1825); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1900: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1826); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'o') ADVANCE(1906); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1901: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1907); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'o') ADVANCE(1937); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1902: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1938); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'r') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1903: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'r') ADVANCE(1553); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1904: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1554); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'r') ADVANCE(1551); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1905: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1552); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'r') ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1906: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'r') ADVANCE(1609); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1907: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1610); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'r') ADVANCE(1797); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1908: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1798); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'r') ADVANCE(1804); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1909: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1805); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'r') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1910: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1825); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'r') ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1911: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1934); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'r') ADVANCE(1909); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1912: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1910); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'r') ADVANCE(1913); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1913: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1914); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'r') ADVANCE(1828); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1914: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1829); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'r') ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1915: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1935); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 's') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1916: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 's') ADVANCE(1557); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1917: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1558); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 's') ADVANCE(1559); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1918: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1560); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 's') ADVANCE(1810); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1919: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 's') ADVANCE(1811); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1920: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 's') ADVANCE(1812); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1921: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 's') ADVANCE(1813); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); 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(1959); + if (lookahead == 't') ADVANCE(1808); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1923: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1809); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 't') ADVANCE(1849); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1924: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1850); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 't') ADVANCE(1809); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1925: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1810); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 't') ADVANCE(1794); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1926: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1795); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 't') ADVANCE(1870); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1927: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1871); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 't') ADVANCE(1823); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1928: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1824); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 't') ADVANCE(1871); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1929: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1872); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 't') ADVANCE(1805); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1930: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1806); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 't') ADVANCE(1872); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1931: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 't') ADVANCE(1873); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1932: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1874); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 't') ADVANCE(1827); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1933: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1828); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 't') ADVANCE(1919); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1934: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1920); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 't') ADVANCE(1921); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1935: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1922); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 't') ADVANCE(1852); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1936: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1853); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'u') ADVANCE(1927); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1937: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'u') ADVANCE(1928); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'u') ADVANCE(1932); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1938: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'u') ADVANCE(1933); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'w') ADVANCE(1877); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1939: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'w') ADVANCE(1878); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1940: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'w') ADVANCE(1879); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1941: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'w') ADVANCE(1880); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); 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(1959); + if (lookahead == 'y') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1943: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'y') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '|') ADVANCE(1477); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1944: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '|') ADVANCE(1478); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1945: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1479); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '|') ADVANCE(1482); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1946: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1483); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '|') ADVANCE(1475); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1947: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1476); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '|') ADVANCE(1481); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1948: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1482); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '|') ADVANCE(1476); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1949: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1477); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == '|') ADVANCE(1479); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1950: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '|') ADVANCE(1480); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1951: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1481); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1952: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1123); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1953: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1124); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1956); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1954: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1957); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1952); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1955: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1953); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1956: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1954); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1957); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1957: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1958); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1121); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1958: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1122); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1958); END_STATE(); case 1959: - ACCEPT_TOKEN(sym__unquoted_pattern); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == '.') ADVANCE(1615); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1983); END_STATE(); case 1960: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); + if (lookahead == '.') ADVANCE(1525); + if (lookahead == '_') ADVANCE(1969); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1983); END_STATE(); case 1961: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1526); - if (lookahead == '_') ADVANCE(1970); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); + if (lookahead == '.') ADVANCE(1525); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1983); END_STATE(); case 1962: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1526); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); + if (lookahead == '.') ADVANCE(1970); + if (lookahead == '_') ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1983); END_STATE(); case 1963: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1971); - if (lookahead == '_') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); + if (lookahead == 'I') ADVANCE(1982); + if (lookahead == '_') ADVANCE(1972); + if (lookahead == 'i') ADVANCE(1982); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1972); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1983); END_STATE(); case 1964: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1983); - if (lookahead == '_') ADVANCE(1973); - if (lookahead == 'i') ADVANCE(1983); + if (lookahead == 'I') ADVANCE(1982); + if (lookahead == '_') ADVANCE(1972); + if (lookahead == 'i') ADVANCE(1974); if (lookahead == '+' || - lookahead == '-') ADVANCE(1973); + lookahead == '-') ADVANCE(1972); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); + lookahead == 'b') ADVANCE(1675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1983); END_STATE(); case 1965: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1983); - if (lookahead == '_') ADVANCE(1973); - if (lookahead == 'i') ADVANCE(1975); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1973); + if (lookahead == 'I') ADVANCE(1982); + if (lookahead == 'i') ADVANCE(1982); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1983); END_STATE(); case 1966: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1983); - if (lookahead == 'i') ADVANCE(1983); + if (lookahead == 'I') ADVANCE(1982); + if (lookahead == 'i') ADVANCE(1974); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1983); END_STATE(); case 1967: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1983); - if (lookahead == 'i') ADVANCE(1975); + if (lookahead == 'I') ADVANCE(1982); + if (lookahead == 'i') ADVANCE(1978); + if (lookahead == 's') ADVANCE(1680); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1983); END_STATE(); case 1968: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1983); - if (lookahead == 'i') ADVANCE(1979); - if (lookahead == 's') ADVANCE(1681); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); + if (lookahead == '_') ADVANCE(1968); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1983); END_STATE(); case 1969: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); if (lookahead == '_') ADVANCE(1969); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1983); END_STATE(); case 1970: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); if (lookahead == '_') ADVANCE(1970); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1983); END_STATE(); case 1971: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1971); + if (lookahead == '_') ADVANCE(1972); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1972); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1983); END_STATE(); case 1972: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1973); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1973); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); + if (lookahead == '_') ADVANCE(1972); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1983); END_STATE(); case 1973: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1973); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); + if (lookahead == 'a') ADVANCE(1981); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1983); END_STATE(); case 1974: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'a') ADVANCE(1982); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); + if (lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1983); END_STATE(); case 1975: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); + if (lookahead == 'c') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1983); END_STATE(); case 1976: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'c') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); + if (lookahead == 'e') ADVANCE(1975); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1983); END_STATE(); case 1977: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'e') ADVANCE(1976); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); + if (lookahead == 'k') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1983); END_STATE(); case 1978: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'k') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); + if (lookahead == 'n') ADVANCE(1680); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1983); END_STATE(); case 1979: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'n') ADVANCE(1681); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); + if (lookahead == 'r') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1983); END_STATE(); case 1980: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'r') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); + if (lookahead == 's') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1983); END_STATE(); case 1981: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 's') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); + if (lookahead == 'y') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1983); END_STATE(); case 1982: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'y') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1983); END_STATE(); case 1983: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1983); END_STATE(); case 1984: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1984); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '.') ADVANCE(1615); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 1985: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + if (lookahead == '.') ADVANCE(1995); + if (lookahead == '_') ADVANCE(1985); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 1986: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1996); - if (lookahead == '_') ADVANCE(1986); + if (lookahead == '.') ADVANCE(1988); + if (lookahead == '_') ADVANCE(1996); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 1987: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1989); - if (lookahead == '_') ADVANCE(1997); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + if (lookahead == '.') ADVANCE(1988); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 1988: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1989); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + if (lookahead == '.') ADVANCE(1504); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 1989: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1505); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + if (lookahead == '.') ADVANCE(1614); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 1990: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1615); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + if (lookahead == 'I') ADVANCE(2009); + if (lookahead == '_') ADVANCE(1998); + if (lookahead == 'i') ADVANCE(2009); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1998); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 1991: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(2010); - if (lookahead == '_') ADVANCE(1999); - if (lookahead == 'i') ADVANCE(2010); + if (lookahead == 'I') ADVANCE(2009); + if (lookahead == '_') ADVANCE(1998); + if (lookahead == 'i') ADVANCE(2001); if (lookahead == '+' || - lookahead == '-') ADVANCE(1999); + lookahead == '-') ADVANCE(1998); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == 'b') ADVANCE(1675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 1992: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(2010); - if (lookahead == '_') ADVANCE(1999); - if (lookahead == 'i') ADVANCE(2002); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1999); + if (lookahead == 'I') ADVANCE(2009); + if (lookahead == 'i') ADVANCE(2009); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 1993: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(2010); - if (lookahead == 'i') ADVANCE(2010); + if (lookahead == 'I') ADVANCE(2009); + if (lookahead == 'i') ADVANCE(2001); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 1994: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(2010); - if (lookahead == 'i') ADVANCE(2002); + if (lookahead == 'I') ADVANCE(2009); + if (lookahead == 'i') ADVANCE(2005); + if (lookahead == 's') ADVANCE(1680); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 1995: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(2010); - if (lookahead == 'i') ADVANCE(2006); - if (lookahead == 's') ADVANCE(1681); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + if (lookahead == '_') ADVANCE(1995); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 1996: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); if (lookahead == '_') ADVANCE(1996); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 1997: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1997); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + if (lookahead == '_') ADVANCE(1998); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1998); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 1998: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1999); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1999); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + if (lookahead == '_') ADVANCE(1998); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 1999: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); if (lookahead == '_') ADVANCE(1999); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 2000: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(2000); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + if (lookahead == 'a') ADVANCE(2008); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 2001: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'a') ADVANCE(2009); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + if (lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 2002: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + if (lookahead == 'c') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 2003: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'c') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + if (lookahead == 'e') ADVANCE(2002); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 2004: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'e') ADVANCE(2003); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + if (lookahead == 'k') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 2005: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'k') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + if (lookahead == 'n') ADVANCE(1680); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 2006: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'n') ADVANCE(1681); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + if (lookahead == 'r') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 2007: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'r') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + if (lookahead == 's') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 2008: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 's') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + if (lookahead == 'y') ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 2009: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'y') ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 2010: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2010); END_STATE(); case 2011: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2011); - END_STATE(); - case 2012: ACCEPT_TOKEN(sym__unquoted_naive); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32011,1149 +31946,1149 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2012); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2011); + END_STATE(); + case 2012: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '$') ADVANCE(1639); + if (lookahead == '(') ADVANCE(1613); + if (lookahead == '[') ADVANCE(1727); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2013: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '$') ADVANCE(1640); - if (lookahead == '(') ADVANCE(1614); - if (lookahead == '[') ADVANCE(1728); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == '+') ADVANCE(2049); + if (lookahead == '>') ADVANCE(1761); + if (lookahead == 'r') ADVANCE(2055); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2014: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2050); - if (lookahead == '>') ADVANCE(1762); - if (lookahead == 'r') ADVANCE(2056); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == '+') ADVANCE(2042); + if (lookahead == '>') ADVANCE(1763); + if (lookahead == 'u') ADVANCE(2063); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2015: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2043); - if (lookahead == '>') ADVANCE(1764); - if (lookahead == 'u') ADVANCE(2064); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == '+') ADVANCE(2050); + if (lookahead == '>') ADVANCE(1757); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2016: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2051); - if (lookahead == '>') ADVANCE(1758); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == '+') ADVANCE(2043); + if (lookahead == '>') ADVANCE(1759); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2017: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2044); + if (lookahead == '+') ADVANCE(2052); if (lookahead == '>') ADVANCE(1760); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'r') ADVANCE(2056); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2018: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2053); - if (lookahead == '>') ADVANCE(1761); - if (lookahead == 'r') ADVANCE(2057); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == '+') ADVANCE(2044); + if (lookahead == '>') ADVANCE(1762); + if (lookahead == 'u') ADVANCE(2065); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2019: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2045); - if (lookahead == '>') ADVANCE(1763); - if (lookahead == 'u') ADVANCE(2066); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == '+') ADVANCE(2053); + if (lookahead == '>') ADVANCE(1756); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2020: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2054); - if (lookahead == '>') ADVANCE(1757); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == '+') ADVANCE(2045); + if (lookahead == '>') ADVANCE(1758); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2021: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2046); - if (lookahead == '>') ADVANCE(1759); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == '-') ADVANCE(2089); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2022: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(2090); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == '.') ADVANCE(1529); + if (lookahead == '_') ADVANCE(2038); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2023: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(1530); - if (lookahead == '_') ADVANCE(2039); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == '.') ADVANCE(1527); + if (lookahead == '_') ADVANCE(2038); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2024: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(1528); - if (lookahead == '_') ADVANCE(2039); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == '.') ADVANCE(2037); + if (lookahead == '_') ADVANCE(2024); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2025: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(2038); - if (lookahead == '_') ADVANCE(2025); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == '2') ADVANCE(2079); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2087); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2026: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '2') ADVANCE(2080); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2088); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == ':') ADVANCE(2091); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2027: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(2092); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == ':') ADVANCE(2093); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2028: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(2094); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == '>') ADVANCE(1771); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2029: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1772); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == '>') ADVANCE(1769); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2030: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1770); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == '>') ADVANCE(1765); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2031: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1766); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == '>') ADVANCE(1767); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2032: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1768); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == '>') ADVANCE(1770); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2033: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1771); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == '>') ADVANCE(1768); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); 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(2095); + if (lookahead == '>') ADVANCE(1764); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2035: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1765); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == '>') ADVANCE(1766); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2036: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1767); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == '_') ADVANCE(2036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2037: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == '_') ADVANCE(2037); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2038: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == '_') ADVANCE(2038); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2039: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2039); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'a') ADVANCE(2047); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2040: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(2048); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'e') ADVANCE(1106); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2041: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1107); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'e') ADVANCE(1109); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2042: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1110); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'e') ADVANCE(2029); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2043: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2030); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'e') ADVANCE(2057); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2044: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2058); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'e') ADVANCE(2033); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2045: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2034); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'e') ADVANCE(2060); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2046: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2061); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'l') ADVANCE(1112); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2047: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(1113); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'l') ADVANCE(2061); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2048: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2062); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'l') ADVANCE(2046); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2049: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2047); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'o') ADVANCE(2028); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2050: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2029); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'o') ADVANCE(2069); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2051: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2070); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'o') ADVANCE(2062); + if (lookahead == 'u') ADVANCE(2048); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2074); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2052: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2063); - if (lookahead == 'u') ADVANCE(2049); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2075); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'o') ADVANCE(2032); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2053: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2033); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'o') ADVANCE(2070); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2054: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2071); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'r') ADVANCE(2068); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2055: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2069); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'r') ADVANCE(2015); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2056: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2016); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'r') ADVANCE(2019); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2057: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2020); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'r') ADVANCE(2058); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2058: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2059); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'r') ADVANCE(2031); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2059: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2032); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'r') ADVANCE(2035); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2060: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2036); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'r') ADVANCE(2059); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2061: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2060); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 's') ADVANCE(2041); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2062: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(2042); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 't') ADVANCE(2080); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2063: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2081); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 't') ADVANCE(2016); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2064: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2017); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 't') ADVANCE(2030); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2065: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2031); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 't') ADVANCE(2020); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2066: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2021); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 't') ADVANCE(2034); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2067: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2035); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'u') ADVANCE(2048); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2074); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2068: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2049); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2075); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'u') ADVANCE(2040); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2069: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2041); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'u') ADVANCE(2064); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2070: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2065); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'u') ADVANCE(2066); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2071: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2067); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2074); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2072: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2075); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1117); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2073: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1118); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2077); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2074: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2078); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1126); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2075: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1127); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + lookahead == 'n') ADVANCE(2072); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2076: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'N' || lookahead == 'n') ADVANCE(2073); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2077: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2074); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2078); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2078: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2079); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1115); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2079: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1116); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1694); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2080: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1695); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1582); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2081: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1583); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1689); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2082: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1690); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2021); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2083: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2022); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2027); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2084: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2028); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1697); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2085: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1698); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1691); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2086: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1692); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1702); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2087: 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(2095); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1694); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2088: 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(2095); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2082); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2089: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2083); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2084); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2090: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2085); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2083); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2091: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2084); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2085); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); 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(2095); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2026); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2093: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2027); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2092); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2094: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2093); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2094); END_STATE(); case 2095: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2095); - END_STATE(); - case 2096: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '$') ADVANCE(1493); - if (lookahead == '(') ADVANCE(1584); - if (lookahead == '.') ADVANCE(2099); - if (lookahead == '_') ADVANCE(2100); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '$') ADVANCE(1492); + if (lookahead == '(') ADVANCE(1583); + if (lookahead == '.') ADVANCE(2098); + if (lookahead == '_') ADVANCE(2099); if (lookahead == '\t' || lookahead == ' ') SKIP(191); if (lookahead == '+' || - lookahead == '-') ADVANCE(2098); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2102); + lookahead == '-') ADVANCE(2097); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2101); END_STATE(); - case 2097: + case 2096: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '.') ADVANCE(2099); - if (lookahead == '_') ADVANCE(2100); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '.') ADVANCE(2098); + if (lookahead == '_') ADVANCE(2099); if (lookahead == '\t' || - lookahead == ' ') SKIP(254); + lookahead == ' ') SKIP(253); if (lookahead == '+' || - lookahead == '-') ADVANCE(2098); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2102); + lookahead == '-') ADVANCE(2097); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2101); + END_STATE(); + case 2097: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '.') ADVANCE(2100); + if (lookahead == '_') ADVANCE(2097); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2101); END_STATE(); case 2098: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(2101); if (lookahead == '_') ADVANCE(2098); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2102); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2101); END_STATE(); case 2099: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(2099); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2102); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2101); END_STATE(); case 2100: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(2100); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2102); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2101); END_STATE(); case 2101: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2101); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2102); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2101); END_STATE(); case 2102: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2102); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '$') ADVANCE(1639); + if (lookahead == '(') ADVANCE(1613); + if (lookahead == '[') ADVANCE(1727); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2152); END_STATE(); case 2103: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '$') ADVANCE(1640); - if (lookahead == '(') ADVANCE(1614); - if (lookahead == '[') ADVANCE(1728); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2153); + if (lookahead == '-') ADVANCE(2147); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2104: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(2148); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (lookahead == '.') ADVANCE(1529); + if (lookahead == '_') ADVANCE(2113); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2105: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(1530); - if (lookahead == '_') ADVANCE(2114); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (lookahead == '.') ADVANCE(2112); + if (lookahead == '_') ADVANCE(2106); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2106: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2113); - if (lookahead == '_') ADVANCE(2107); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2133); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (lookahead == '.') ADVANCE(2112); + if (lookahead == '_') ADVANCE(2106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2107: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2113); - if (lookahead == '_') ADVANCE(2107); + if (lookahead == '.') ADVANCE(1528); + if (lookahead == '_') ADVANCE(2113); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2108: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(1529); - if (lookahead == '_') ADVANCE(2114); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (lookahead == '2') ADVANCE(2138); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2146); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2109: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '2') ADVANCE(2139); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2147); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (lookahead == ':') ADVANCE(2149); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2110: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(2150); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (lookahead == ':') ADVANCE(2151); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2111: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(2152); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (lookahead == '_') ADVANCE(2111); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2112: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == '_') ADVANCE(2112); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2113: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == '_') ADVANCE(2113); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2114: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(2114); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (lookahead == 'a') ADVANCE(2118); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2115: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(2119); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (lookahead == 'e') ADVANCE(1106); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2116: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(1107); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (lookahead == 'e') ADVANCE(1109); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2117: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(1110); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (lookahead == 'l') ADVANCE(1112); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2118: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(1113); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (lookahead == 'l') ADVANCE(2121); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2119: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2122); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (lookahead == 'l') ADVANCE(2117); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2120: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2118); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (lookahead == 'r') ADVANCE(2122); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2121: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(2123); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (lookahead == 's') ADVANCE(2116); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2122: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(2117); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (lookahead == 'u') ADVANCE(2115); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2123: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(2116); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (lookahead == 'u') ADVANCE(2119); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2129); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2124: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(2120); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2130); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + lookahead == 'a') ADVANCE(2129); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2125: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2130); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1124); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2126: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1125); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + lookahead == 'f') ADVANCE(1118); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2127: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1119); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2134); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2128: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'I' || lookahead == 'i') ADVANCE(2135); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2129: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2136); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1126); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2130: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1127); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + lookahead == 'n') ADVANCE(2126); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2131: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || lookahead == 'n') ADVANCE(2127); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2132: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2128); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + lookahead == 'n') ADVANCE(2125); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2133: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2126); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + lookahead == 'n') ADVANCE(2128); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2134: 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(2153); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2136); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2135: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'T' || lookahead == 't') ADVANCE(2137); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2136: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2138); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1115); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2137: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1116); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + lookahead == 'y') ADVANCE(1121); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2138: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1122); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1695); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2139: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1696); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1689); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2140: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1690); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2103); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2141: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2104); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2110); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2142: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2111); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2140); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2143: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2141); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1698); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2144: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1699); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1692); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2145: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1693); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1703); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2146: 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(2153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1695); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2147: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2143); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2148: 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(2153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2141); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2149: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2142); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2144); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2150: 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(2153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2109); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2151: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2110); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2150); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2152: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2151); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2152); END_STATE(); case 2153: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2153); - END_STATE(); - case 2154: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '$') ADVANCE(1532); - if (lookahead == '(') ADVANCE(1584); - if (lookahead == '.') ADVANCE(2157); - if (lookahead == ']') ADVANCE(1489); - if (lookahead == '_') ADVANCE(2158); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '$') ADVANCE(1531); + if (lookahead == '(') ADVANCE(1583); + if (lookahead == '.') ADVANCE(2156); + if (lookahead == ']') ADVANCE(1488); + if (lookahead == '_') ADVANCE(2157); if (lookahead == '\t' || lookahead == ' ') SKIP(189); if (lookahead == '+' || - lookahead == '-') ADVANCE(2156); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2160); + lookahead == '-') ADVANCE(2155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2159); END_STATE(); - case 2155: + case 2154: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '$') ADVANCE(1493); - if (lookahead == '(') ADVANCE(1584); - if (lookahead == '.') ADVANCE(2157); - if (lookahead == '_') ADVANCE(2158); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '$') ADVANCE(1492); + if (lookahead == '(') ADVANCE(1583); + if (lookahead == '.') ADVANCE(2156); + if (lookahead == '_') ADVANCE(2157); if (lookahead == '\t' || lookahead == ' ') SKIP(191); if (lookahead == '+' || - lookahead == '-') ADVANCE(2156); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2160); + lookahead == '-') ADVANCE(2155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2159); + END_STATE(); + case 2155: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(2158); + if (lookahead == '_') ADVANCE(2155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2159); END_STATE(); case 2156: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(2159); if (lookahead == '_') ADVANCE(2156); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2160); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2159); END_STATE(); case 2157: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '_') ADVANCE(2157); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2159); END_STATE(); case 2158: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '_') ADVANCE(2158); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2159); END_STATE(); case 2159: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(2159); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2160); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2159); END_STATE(); case 2160: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2160); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '-') ADVANCE(2195); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2161: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '-') ADVANCE(2196); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if (lookahead == '.') ADVANCE(1529); + if (lookahead == '_') ADVANCE(2167); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2162: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(1530); - if (lookahead == '_') ADVANCE(2168); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if (lookahead == '.') ADVANCE(2166); + if (lookahead == '_') ADVANCE(2163); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2163: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(2167); - if (lookahead == '_') ADVANCE(2164); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2187); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if (lookahead == '.') ADVANCE(2166); + if (lookahead == '_') ADVANCE(2163); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2164: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(2167); - if (lookahead == '_') ADVANCE(2164); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if (lookahead == ':') ADVANCE(554); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2165: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == ':') ADVANCE(555); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if (lookahead == '_') ADVANCE(2165); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2166: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == '_') ADVANCE(2166); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2167: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == '_') ADVANCE(2167); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2168: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(2168); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if (lookahead == 'a') ADVANCE(2172); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2169: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'a') ADVANCE(2173); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if (lookahead == 'e') ADVANCE(1106); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2170: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(1107); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if (lookahead == 'e') ADVANCE(1109); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2171: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(1110); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if (lookahead == 'l') ADVANCE(1112); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2172: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(1113); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if (lookahead == 'l') ADVANCE(2175); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2173: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(2176); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if (lookahead == 'l') ADVANCE(2171); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2174: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(2172); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if (lookahead == 'r') ADVANCE(2176); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2175: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(2177); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if (lookahead == 's') ADVANCE(2170); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2176: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 's') ADVANCE(2171); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if (lookahead == 'u') ADVANCE(2169); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2177: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(2170); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if (lookahead == 'u') ADVANCE(2173); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2183); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2178: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(2174); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2184); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + lookahead == 'a') ADVANCE(2183); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2179: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2184); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1125); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2180: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1126); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + lookahead == 'f') ADVANCE(1119); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2181: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1120); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2188); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2182: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'I' || lookahead == 'i') ADVANCE(2189); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2183: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2190); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1126); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2184: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1127); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + lookahead == 'n') ADVANCE(2180); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2185: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || lookahead == 'n') ADVANCE(2181); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2186: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2182); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + lookahead == 'n') ADVANCE(2179); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2187: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2180); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + lookahead == 'n') ADVANCE(2182); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2188: 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(2199); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2190); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2189: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'T' || lookahead == 't') ADVANCE(2191); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2190: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2192); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1115); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2191: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1116); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + lookahead == 'y') ADVANCE(1121); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2192: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1122); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2160); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2193: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2161); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2164); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2194: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2165); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2192); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2195: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2193); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2197); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2196: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2198); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2193); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2197: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2194); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1699); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2198: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1700); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2198); END_STATE(); case 2199: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2199); - END_STATE(); - case 2200: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '$') ADVANCE(1493); - if (lookahead == '(') ADVANCE(1584); - if (lookahead == '.') ADVANCE(2203); - if (lookahead == '_') ADVANCE(2204); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '$') ADVANCE(1492); + if (lookahead == '(') ADVANCE(1583); + if (lookahead == '.') ADVANCE(2202); + if (lookahead == '_') ADVANCE(2203); if (lookahead == '\t' || lookahead == ' ') SKIP(191); if (lookahead == '+' || - lookahead == '-') ADVANCE(2202); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2206); + lookahead == '-') ADVANCE(2201); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2205); END_STATE(); - case 2201: + case 2200: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '#') ADVANCE(2213); - if (lookahead == '.') ADVANCE(2203); - if (lookahead == '_') ADVANCE(2204); + if (lookahead == '#') ADVANCE(2212); + if (lookahead == '.') ADVANCE(2202); + if (lookahead == '_') ADVANCE(2203); if (lookahead == '\t' || - lookahead == ' ') SKIP(254); + lookahead == ' ') SKIP(253); if (lookahead == '+' || - lookahead == '-') ADVANCE(2202); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2206); + lookahead == '-') ADVANCE(2201); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2205); + END_STATE(); + case 2201: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '.') ADVANCE(2204); + if (lookahead == '_') ADVANCE(2201); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2205); END_STATE(); case 2202: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(2205); if (lookahead == '_') ADVANCE(2202); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2206); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2205); END_STATE(); case 2203: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == '_') ADVANCE(2203); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2206); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2205); END_STATE(); case 2204: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == '_') ADVANCE(2204); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2206); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2205); END_STATE(); case 2205: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(2205); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2206); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2205); END_STATE(); case 2206: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2206); - END_STATE(); - case 2207: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); - if (lookahead == '#') ADVANCE(2220); + if (lookahead == '#') ADVANCE(2219); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2208); + lookahead != '|') ADVANCE(2207); END_STATE(); - case 2208: + case 2207: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -33161,20 +33096,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2208); + lookahead != '|') ADVANCE(2207); END_STATE(); - case 2209: + case 2208: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if (lookahead == '#') ADVANCE(2219); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2210); + if (lookahead == '#') ADVANCE(2218); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2209); END_STATE(); - case 2210: + case 2209: 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(2210); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2209); END_STATE(); - case 2211: + case 2210: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); - if (lookahead == '#') ADVANCE(2218); + if (lookahead == '#') ADVANCE(2217); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -33183,9 +33118,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2212); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2211); END_STATE(); - case 2212: + case 2211: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -33195,30 +33130,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2212); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2211); + END_STATE(); + case 2212: + ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); case 2213: ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == '\n') ADVANCE(667); + if (lookahead == '\r') ADVANCE(669); + if (lookahead != 0) ADVANCE(669); END_STATE(); case 2214: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\n') ADVANCE(668); - if (lookahead == '\r') ADVANCE(670); - if (lookahead != 0) ADVANCE(670); + if (lookahead == '!') ADVANCE(666); END_STATE(); case 2215: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1060); END_STATE(); case 2216: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1061); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1737); END_STATE(); case 2217: - ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1738); - END_STATE(); - case 2218: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -33228,13 +33163,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2212); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2211); END_STATE(); - case 2219: + case 2218: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2210); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2209); END_STATE(); - case 2220: + case 2219: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -33242,26 +33177,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2208); + lookahead != '|') ADVANCE(2207); END_STATE(); - case 2221: + case 2220: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2223); + lookahead != '\n' && + lookahead != ')' && + lookahead != ']' && + lookahead != '}') ADVANCE(2222); END_STATE(); - case 2222: + case 2221: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '#') ADVANCE(2221); + if (lookahead == '#') ADVANCE(2220); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2222); + lookahead == ' ') ADVANCE(2221); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n') ADVANCE(2223); + lookahead != '\n' && + lookahead != ')' && + lookahead != ']' && + lookahead != '}') ADVANCE(2222); END_STATE(); - case 2223: + case 2222: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2223); + lookahead != '\n' && + lookahead != ')' && + lookahead != ']' && + lookahead != '}') ADVANCE(2222); END_STATE(); default: return false; @@ -33807,9 +33751,9 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { } } -static const TSLexerMode ts_lex_modes[STATE_COUNT] = { +static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 634, .external_lex_state = 2}, + [1] = {.lex_state = 633, .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}, @@ -33824,194 +33768,194 @@ 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 = 626, .external_lex_state = 2}, - [17] = {.lex_state = 626, .external_lex_state = 2}, - [18] = {.lex_state = 626, .external_lex_state = 2}, - [19] = {.lex_state = 626, .external_lex_state = 2}, - [20] = {.lex_state = 626, .external_lex_state = 2}, - [21] = {.lex_state = 626, .external_lex_state = 2}, - [22] = {.lex_state = 626, .external_lex_state = 2}, - [23] = {.lex_state = 626, .external_lex_state = 2}, - [24] = {.lex_state = 626, .external_lex_state = 2}, - [25] = {.lex_state = 626, .external_lex_state = 2}, - [26] = {.lex_state = 626, .external_lex_state = 2}, - [27] = {.lex_state = 626, .external_lex_state = 2}, - [28] = {.lex_state = 626, .external_lex_state = 2}, - [29] = {.lex_state = 626, .external_lex_state = 2}, - [30] = {.lex_state = 626, .external_lex_state = 2}, - [31] = {.lex_state = 626, .external_lex_state = 2}, - [32] = {.lex_state = 626, .external_lex_state = 2}, - [33] = {.lex_state = 626, .external_lex_state = 2}, - [34] = {.lex_state = 626, .external_lex_state = 2}, + [16] = {.lex_state = 625, .external_lex_state = 2}, + [17] = {.lex_state = 625, .external_lex_state = 2}, + [18] = {.lex_state = 625, .external_lex_state = 2}, + [19] = {.lex_state = 625, .external_lex_state = 2}, + [20] = {.lex_state = 625, .external_lex_state = 2}, + [21] = {.lex_state = 625, .external_lex_state = 2}, + [22] = {.lex_state = 625, .external_lex_state = 2}, + [23] = {.lex_state = 625, .external_lex_state = 2}, + [24] = {.lex_state = 625, .external_lex_state = 2}, + [25] = {.lex_state = 625, .external_lex_state = 2}, + [26] = {.lex_state = 625, .external_lex_state = 2}, + [27] = {.lex_state = 625, .external_lex_state = 2}, + [28] = {.lex_state = 625, .external_lex_state = 2}, + [29] = {.lex_state = 625, .external_lex_state = 2}, + [30] = {.lex_state = 625, .external_lex_state = 2}, + [31] = {.lex_state = 625, .external_lex_state = 2}, + [32] = {.lex_state = 625, .external_lex_state = 2}, + [33] = {.lex_state = 625, .external_lex_state = 2}, + [34] = {.lex_state = 625, .external_lex_state = 2}, [35] = {.lex_state = 31, .external_lex_state = 2}, - [36] = {.lex_state = 626, .external_lex_state = 2}, - [37] = {.lex_state = 31, .external_lex_state = 2}, - [38] = {.lex_state = 31, .external_lex_state = 2}, - [39] = {.lex_state = 626, .external_lex_state = 2}, + [36] = {.lex_state = 31, .external_lex_state = 2}, + [37] = {.lex_state = 625, .external_lex_state = 2}, + [38] = {.lex_state = 625, .external_lex_state = 2}, + [39] = {.lex_state = 31, .external_lex_state = 2}, [40] = {.lex_state = 31, .external_lex_state = 2}, - [41] = {.lex_state = 626, .external_lex_state = 2}, - [42] = {.lex_state = 626, .external_lex_state = 2}, - [43] = {.lex_state = 31, .external_lex_state = 2}, + [41] = {.lex_state = 625, .external_lex_state = 2}, + [42] = {.lex_state = 31, .external_lex_state = 2}, + [43] = {.lex_state = 625, .external_lex_state = 2}, [44] = {.lex_state = 31, .external_lex_state = 2}, - [45] = {.lex_state = 626, .external_lex_state = 2}, - [46] = {.lex_state = 31, .external_lex_state = 2}, + [45] = {.lex_state = 31, .external_lex_state = 2}, + [46] = {.lex_state = 625, .external_lex_state = 2}, [47] = {.lex_state = 31, .external_lex_state = 2}, - [48] = {.lex_state = 626, .external_lex_state = 2}, - [49] = {.lex_state = 31, .external_lex_state = 2}, - [50] = {.lex_state = 626, .external_lex_state = 2}, + [48] = {.lex_state = 625, .external_lex_state = 2}, + [49] = {.lex_state = 625, .external_lex_state = 2}, + [50] = {.lex_state = 31, .external_lex_state = 2}, [51] = {.lex_state = 31, .external_lex_state = 2}, - [52] = {.lex_state = 626, .external_lex_state = 2}, - [53] = {.lex_state = 31, .external_lex_state = 2}, - [54] = {.lex_state = 626, .external_lex_state = 2}, - [55] = {.lex_state = 31, .external_lex_state = 2}, - [56] = {.lex_state = 626, .external_lex_state = 2}, - [57] = {.lex_state = 31, .external_lex_state = 2}, - [58] = {.lex_state = 626, .external_lex_state = 2}, - [59] = {.lex_state = 31, .external_lex_state = 2}, - [60] = {.lex_state = 626, .external_lex_state = 2}, + [52] = {.lex_state = 31, .external_lex_state = 2}, + [53] = {.lex_state = 625, .external_lex_state = 2}, + [54] = {.lex_state = 31, .external_lex_state = 2}, + [55] = {.lex_state = 625, .external_lex_state = 2}, + [56] = {.lex_state = 31, .external_lex_state = 2}, + [57] = {.lex_state = 625, .external_lex_state = 2}, + [58] = {.lex_state = 31, .external_lex_state = 2}, + [59] = {.lex_state = 625, .external_lex_state = 2}, + [60] = {.lex_state = 31, .external_lex_state = 2}, [61] = {.lex_state = 31, .external_lex_state = 2}, - [62] = {.lex_state = 626, .external_lex_state = 2}, - [63] = {.lex_state = 31, .external_lex_state = 2}, - [64] = {.lex_state = 626, .external_lex_state = 2}, - [65] = {.lex_state = 626, .external_lex_state = 2}, + [62] = {.lex_state = 625, .external_lex_state = 2}, + [63] = {.lex_state = 625, .external_lex_state = 2}, + [64] = {.lex_state = 31, .external_lex_state = 2}, + [65] = {.lex_state = 31, .external_lex_state = 2}, [66] = {.lex_state = 31, .external_lex_state = 2}, - [67] = {.lex_state = 626, .external_lex_state = 2}, - [68] = {.lex_state = 31, .external_lex_state = 2}, - [69] = {.lex_state = 31, .external_lex_state = 2}, + [67] = {.lex_state = 31, .external_lex_state = 2}, + [68] = {.lex_state = 625, .external_lex_state = 2}, + [69] = {.lex_state = 625, .external_lex_state = 2}, [70] = {.lex_state = 31, .external_lex_state = 2}, - [71] = {.lex_state = 31, .external_lex_state = 2}, - [72] = {.lex_state = 31, .external_lex_state = 2}, - [73] = {.lex_state = 626, .external_lex_state = 2}, + [71] = {.lex_state = 625, .external_lex_state = 2}, + [72] = {.lex_state = 625, .external_lex_state = 2}, + [73] = {.lex_state = 31, .external_lex_state = 2}, [74] = {.lex_state = 31, .external_lex_state = 2}, - [75] = {.lex_state = 626, .external_lex_state = 2}, - [76] = {.lex_state = 31, .external_lex_state = 2}, - [77] = {.lex_state = 626, .external_lex_state = 2}, - [78] = {.lex_state = 626, .external_lex_state = 2}, - [79] = {.lex_state = 626, .external_lex_state = 2}, - [80] = {.lex_state = 626, .external_lex_state = 2}, - [81] = {.lex_state = 626, .external_lex_state = 2}, - [82] = {.lex_state = 626, .external_lex_state = 2}, - [83] = {.lex_state = 626, .external_lex_state = 2}, - [84] = {.lex_state = 626, .external_lex_state = 2}, - [85] = {.lex_state = 626, .external_lex_state = 2}, - [86] = {.lex_state = 626, .external_lex_state = 2}, - [87] = {.lex_state = 626, .external_lex_state = 2}, - [88] = {.lex_state = 626, .external_lex_state = 2}, - [89] = {.lex_state = 626, .external_lex_state = 2}, - [90] = {.lex_state = 626, .external_lex_state = 2}, - [91] = {.lex_state = 626, .external_lex_state = 2}, - [92] = {.lex_state = 1174}, - [93] = {.lex_state = 1179}, - [94] = {.lex_state = 1175}, - [95] = {.lex_state = 1182}, - [96] = {.lex_state = 1342}, - [97] = {.lex_state = 1344}, - [98] = {.lex_state = 1166}, - [99] = {.lex_state = 1164}, - [100] = {.lex_state = 1180}, - [101] = {.lex_state = 1180}, - [102] = {.lex_state = 1342}, - [103] = {.lex_state = 1346}, - [104] = {.lex_state = 1184}, - [105] = {.lex_state = 1181}, - [106] = {.lex_state = 1346}, - [107] = {.lex_state = 1344}, - [108] = {.lex_state = 1181}, - [109] = {.lex_state = 1168}, - [110] = {.lex_state = 630, .external_lex_state = 2}, - [111] = {.lex_state = 43, .external_lex_state = 2}, - [112] = {.lex_state = 1168}, - [113] = {.lex_state = 1181}, - [114] = {.lex_state = 1184}, - [115] = {.lex_state = 1181}, - [116] = {.lex_state = 1346}, - [117] = {.lex_state = 630, .external_lex_state = 2}, - [118] = {.lex_state = 1177}, - [119] = {.lex_state = 1170}, - [120] = {.lex_state = 1348}, - [121] = {.lex_state = 1348}, - [122] = {.lex_state = 1348}, - [123] = {.lex_state = 1186}, - [124] = {.lex_state = 630, .external_lex_state = 2}, - [125] = {.lex_state = 1186}, - [126] = {.lex_state = 1348}, - [127] = {.lex_state = 1188}, - [128] = {.lex_state = 1170}, - [129] = {.lex_state = 1170}, - [130] = {.lex_state = 1186}, - [131] = {.lex_state = 1170}, - [132] = {.lex_state = 1346}, - [133] = {.lex_state = 1186}, - [134] = {.lex_state = 626, .external_lex_state = 2}, - [135] = {.lex_state = 626, .external_lex_state = 2}, - [136] = {.lex_state = 626, .external_lex_state = 2}, - [137] = {.lex_state = 626, .external_lex_state = 2}, - [138] = {.lex_state = 626, .external_lex_state = 2}, - [139] = {.lex_state = 626, .external_lex_state = 2}, - [140] = {.lex_state = 626, .external_lex_state = 2}, - [141] = {.lex_state = 626, .external_lex_state = 2}, - [142] = {.lex_state = 1190}, - [143] = {.lex_state = 626, .external_lex_state = 2}, - [144] = {.lex_state = 626, .external_lex_state = 2}, - [145] = {.lex_state = 1348}, - [146] = {.lex_state = 626, .external_lex_state = 2}, - [147] = {.lex_state = 626, .external_lex_state = 2}, - [148] = {.lex_state = 626, .external_lex_state = 2}, - [149] = {.lex_state = 626, .external_lex_state = 2}, - [150] = {.lex_state = 626, .external_lex_state = 2}, - [151] = {.lex_state = 626, .external_lex_state = 2}, - [152] = {.lex_state = 1348}, - [153] = {.lex_state = 626, .external_lex_state = 2}, - [154] = {.lex_state = 626, .external_lex_state = 2}, - [155] = {.lex_state = 626, .external_lex_state = 2}, - [156] = {.lex_state = 626, .external_lex_state = 2}, - [157] = {.lex_state = 626, .external_lex_state = 2}, - [158] = {.lex_state = 626, .external_lex_state = 2}, - [159] = {.lex_state = 626, .external_lex_state = 2}, - [160] = {.lex_state = 1348}, - [161] = {.lex_state = 626, .external_lex_state = 2}, - [162] = {.lex_state = 626, .external_lex_state = 2}, - [163] = {.lex_state = 626, .external_lex_state = 2}, - [164] = {.lex_state = 1348}, - [165] = {.lex_state = 626, .external_lex_state = 2}, - [166] = {.lex_state = 626, .external_lex_state = 2}, - [167] = {.lex_state = 626, .external_lex_state = 2}, - [168] = {.lex_state = 626, .external_lex_state = 2}, - [169] = {.lex_state = 626, .external_lex_state = 2}, - [170] = {.lex_state = 626, .external_lex_state = 2}, - [171] = {.lex_state = 1190}, - [172] = {.lex_state = 626, .external_lex_state = 2}, - [173] = {.lex_state = 626, .external_lex_state = 2}, - [174] = {.lex_state = 626, .external_lex_state = 2}, - [175] = {.lex_state = 626, .external_lex_state = 2}, - [176] = {.lex_state = 1192}, - [177] = {.lex_state = 626, .external_lex_state = 2}, - [178] = {.lex_state = 626, .external_lex_state = 2}, - [179] = {.lex_state = 626, .external_lex_state = 2}, - [180] = {.lex_state = 626, .external_lex_state = 2}, - [181] = {.lex_state = 626, .external_lex_state = 2}, - [182] = {.lex_state = 626, .external_lex_state = 2}, - [183] = {.lex_state = 626, .external_lex_state = 2}, - [184] = {.lex_state = 626, .external_lex_state = 2}, - [185] = {.lex_state = 626, .external_lex_state = 2}, - [186] = {.lex_state = 626, .external_lex_state = 2}, - [187] = {.lex_state = 1192}, - [188] = {.lex_state = 1192}, - [189] = {.lex_state = 1192}, - [190] = {.lex_state = 626, .external_lex_state = 2}, - [191] = {.lex_state = 626, .external_lex_state = 2}, - [192] = {.lex_state = 1194}, - [193] = {.lex_state = 1194}, - [194] = {.lex_state = 1194}, - [195] = {.lex_state = 1172}, - [196] = {.lex_state = 1172}, - [197] = {.lex_state = 1350}, - [198] = {.lex_state = 1350}, - [199] = {.lex_state = 1194}, - [200] = {.lex_state = 1350}, - [201] = {.lex_state = 1350}, - [202] = {.lex_state = 1196}, - [203] = {.lex_state = 1196}, + [75] = {.lex_state = 31, .external_lex_state = 2}, + [76] = {.lex_state = 625, .external_lex_state = 2}, + [77] = {.lex_state = 625, .external_lex_state = 2}, + [78] = {.lex_state = 31, .external_lex_state = 2}, + [79] = {.lex_state = 625, .external_lex_state = 2}, + [80] = {.lex_state = 31, .external_lex_state = 2}, + [81] = {.lex_state = 625, .external_lex_state = 2}, + [82] = {.lex_state = 625, .external_lex_state = 2}, + [83] = {.lex_state = 625, .external_lex_state = 2}, + [84] = {.lex_state = 625, .external_lex_state = 2}, + [85] = {.lex_state = 625, .external_lex_state = 2}, + [86] = {.lex_state = 625, .external_lex_state = 2}, + [87] = {.lex_state = 625, .external_lex_state = 2}, + [88] = {.lex_state = 625, .external_lex_state = 2}, + [89] = {.lex_state = 625, .external_lex_state = 2}, + [90] = {.lex_state = 625, .external_lex_state = 2}, + [91] = {.lex_state = 625, .external_lex_state = 2}, + [92] = {.lex_state = 1173}, + [93] = {.lex_state = 1188}, + [94] = {.lex_state = 1176}, + [95] = {.lex_state = 1174}, + [96] = {.lex_state = 1174}, + [97] = {.lex_state = 1341}, + [98] = {.lex_state = 1189}, + [99] = {.lex_state = 1347}, + [100] = {.lex_state = 1163}, + [101] = {.lex_state = 1169}, + [102] = {.lex_state = 1175}, + [103] = {.lex_state = 1175}, + [104] = {.lex_state = 1165}, + [105] = {.lex_state = 1347}, + [106] = {.lex_state = 1178}, + [107] = {.lex_state = 1175}, + [108] = {.lex_state = 1165}, + [109] = {.lex_state = 629, .external_lex_state = 2}, + [110] = {.lex_state = 1175}, + [111] = {.lex_state = 1341}, + [112] = {.lex_state = 1343}, + [113] = {.lex_state = 1343}, + [114] = {.lex_state = 43, .external_lex_state = 2}, + [115] = {.lex_state = 1178}, + [116] = {.lex_state = 1180}, + [117] = {.lex_state = 1345}, + [118] = {.lex_state = 1167}, + [119] = {.lex_state = 1180}, + [120] = {.lex_state = 1180}, + [121] = {.lex_state = 1345}, + [122] = {.lex_state = 1167}, + [123] = {.lex_state = 1345}, + [124] = {.lex_state = 1167}, + [125] = {.lex_state = 1182}, + [126] = {.lex_state = 1167}, + [127] = {.lex_state = 1345}, + [128] = {.lex_state = 1343}, + [129] = {.lex_state = 1343}, + [130] = {.lex_state = 1180}, + [131] = {.lex_state = 629, .external_lex_state = 2}, + [132] = {.lex_state = 1191}, + [133] = {.lex_state = 629, .external_lex_state = 2}, + [134] = {.lex_state = 625, .external_lex_state = 2}, + [135] = {.lex_state = 1345}, + [136] = {.lex_state = 1184}, + [137] = {.lex_state = 625, .external_lex_state = 2}, + [138] = {.lex_state = 1184}, + [139] = {.lex_state = 625, .external_lex_state = 2}, + [140] = {.lex_state = 625, .external_lex_state = 2}, + [141] = {.lex_state = 625, .external_lex_state = 2}, + [142] = {.lex_state = 625, .external_lex_state = 2}, + [143] = {.lex_state = 625, .external_lex_state = 2}, + [144] = {.lex_state = 625, .external_lex_state = 2}, + [145] = {.lex_state = 625, .external_lex_state = 2}, + [146] = {.lex_state = 625, .external_lex_state = 2}, + [147] = {.lex_state = 1345}, + [148] = {.lex_state = 1345}, + [149] = {.lex_state = 1345}, + [150] = {.lex_state = 625, .external_lex_state = 2}, + [151] = {.lex_state = 625, .external_lex_state = 2}, + [152] = {.lex_state = 625, .external_lex_state = 2}, + [153] = {.lex_state = 625, .external_lex_state = 2}, + [154] = {.lex_state = 625, .external_lex_state = 2}, + [155] = {.lex_state = 625, .external_lex_state = 2}, + [156] = {.lex_state = 625, .external_lex_state = 2}, + [157] = {.lex_state = 625, .external_lex_state = 2}, + [158] = {.lex_state = 625, .external_lex_state = 2}, + [159] = {.lex_state = 625, .external_lex_state = 2}, + [160] = {.lex_state = 625, .external_lex_state = 2}, + [161] = {.lex_state = 625, .external_lex_state = 2}, + [162] = {.lex_state = 625, .external_lex_state = 2}, + [163] = {.lex_state = 625, .external_lex_state = 2}, + [164] = {.lex_state = 625, .external_lex_state = 2}, + [165] = {.lex_state = 625, .external_lex_state = 2}, + [166] = {.lex_state = 625, .external_lex_state = 2}, + [167] = {.lex_state = 625, .external_lex_state = 2}, + [168] = {.lex_state = 625, .external_lex_state = 2}, + [169] = {.lex_state = 625, .external_lex_state = 2}, + [170] = {.lex_state = 625, .external_lex_state = 2}, + [171] = {.lex_state = 625, .external_lex_state = 2}, + [172] = {.lex_state = 625, .external_lex_state = 2}, + [173] = {.lex_state = 625, .external_lex_state = 2}, + [174] = {.lex_state = 625, .external_lex_state = 2}, + [175] = {.lex_state = 625, .external_lex_state = 2}, + [176] = {.lex_state = 625, .external_lex_state = 2}, + [177] = {.lex_state = 625, .external_lex_state = 2}, + [178] = {.lex_state = 625, .external_lex_state = 2}, + [179] = {.lex_state = 625, .external_lex_state = 2}, + [180] = {.lex_state = 625, .external_lex_state = 2}, + [181] = {.lex_state = 625, .external_lex_state = 2}, + [182] = {.lex_state = 1186}, + [183] = {.lex_state = 625, .external_lex_state = 2}, + [184] = {.lex_state = 625, .external_lex_state = 2}, + [185] = {.lex_state = 625, .external_lex_state = 2}, + [186] = {.lex_state = 1186}, + [187] = {.lex_state = 625, .external_lex_state = 2}, + [188] = {.lex_state = 1186}, + [189] = {.lex_state = 625, .external_lex_state = 2}, + [190] = {.lex_state = 625, .external_lex_state = 2}, + [191] = {.lex_state = 1186}, + [192] = {.lex_state = 1193}, + [193] = {.lex_state = 1193}, + [194] = {.lex_state = 1193}, + [195] = {.lex_state = 1349}, + [196] = {.lex_state = 1349}, + [197] = {.lex_state = 1193}, + [198] = {.lex_state = 1171}, + [199] = {.lex_state = 1171}, + [200] = {.lex_state = 1349}, + [201] = {.lex_state = 1349}, + [202] = {.lex_state = 1195}, + [203] = {.lex_state = 1195}, [204] = {.lex_state = 44, .external_lex_state = 2}, [205] = {.lex_state = 36, .external_lex_state = 2}, [206] = {.lex_state = 36, .external_lex_state = 2}, @@ -34098,77 +34042,77 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [287] = {.lex_state = 36, .external_lex_state = 2}, [288] = {.lex_state = 36, .external_lex_state = 2}, [289] = {.lex_state = 36, .external_lex_state = 2}, - [290] = {.lex_state = 1167}, - [291] = {.lex_state = 1183}, - [292] = {.lex_state = 1176}, - [293] = {.lex_state = 1343}, - [294] = {.lex_state = 1345}, - [295] = {.lex_state = 1165}, - [296] = {.lex_state = 1347}, - [297] = {.lex_state = 1169}, - [298] = {.lex_state = 1345}, - [299] = {.lex_state = 1185}, - [300] = {.lex_state = 1185}, - [301] = {.lex_state = 1347}, - [302] = {.lex_state = 1343}, - [303] = {.lex_state = 1169}, - [304] = {.lex_state = 1349}, - [305] = {.lex_state = 1171}, - [306] = {.lex_state = 1187}, - [307] = {.lex_state = 1187}, - [308] = {.lex_state = 1349}, - [309] = {.lex_state = 1187}, - [310] = {.lex_state = 1187}, - [311] = {.lex_state = 1171}, - [312] = {.lex_state = 1178}, - [313] = {.lex_state = 1347}, - [314] = {.lex_state = 1189}, - [315] = {.lex_state = 1347}, - [316] = {.lex_state = 1349}, - [317] = {.lex_state = 1171}, - [318] = {.lex_state = 1349}, - [319] = {.lex_state = 1171}, - [320] = {.lex_state = 1349}, - [321] = {.lex_state = 1349}, - [322] = {.lex_state = 1191}, - [323] = {.lex_state = 1349}, - [324] = {.lex_state = 1191}, - [325] = {.lex_state = 1349}, - [326] = {.lex_state = 1193}, - [327] = {.lex_state = 1193}, - [328] = {.lex_state = 1193}, - [329] = {.lex_state = 1193}, + [290] = {.lex_state = 1170}, + [291] = {.lex_state = 1348}, + [292] = {.lex_state = 1190}, + [293] = {.lex_state = 1342}, + [294] = {.lex_state = 1164}, + [295] = {.lex_state = 1177}, + [296] = {.lex_state = 1166}, + [297] = {.lex_state = 1344}, + [298] = {.lex_state = 1179}, + [299] = {.lex_state = 1179}, + [300] = {.lex_state = 1342}, + [301] = {.lex_state = 1344}, + [302] = {.lex_state = 1348}, + [303] = {.lex_state = 1166}, + [304] = {.lex_state = 1344}, + [305] = {.lex_state = 1181}, + [306] = {.lex_state = 1344}, + [307] = {.lex_state = 1168}, + [308] = {.lex_state = 1192}, + [309] = {.lex_state = 1181}, + [310] = {.lex_state = 1346}, + [311] = {.lex_state = 1346}, + [312] = {.lex_state = 1346}, + [313] = {.lex_state = 1168}, + [314] = {.lex_state = 1181}, + [315] = {.lex_state = 1346}, + [316] = {.lex_state = 1181}, + [317] = {.lex_state = 1183}, + [318] = {.lex_state = 1168}, + [319] = {.lex_state = 1168}, + [320] = {.lex_state = 1346}, + [321] = {.lex_state = 1185}, + [322] = {.lex_state = 1346}, + [323] = {.lex_state = 1346}, + [324] = {.lex_state = 1185}, + [325] = {.lex_state = 1346}, + [326] = {.lex_state = 1187}, + [327] = {.lex_state = 1187}, + [328] = {.lex_state = 1187}, + [329] = {.lex_state = 1187}, [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 = 1195}, - [334] = {.lex_state = 1173}, - [335] = {.lex_state = 1195}, - [336] = {.lex_state = 1351}, - [337] = {.lex_state = 1173}, - [338] = {.lex_state = 1351}, - [339] = {.lex_state = 1351}, - [340] = {.lex_state = 1351}, - [341] = {.lex_state = 1197}, - [342] = {.lex_state = 1197}, + [333] = {.lex_state = 1350}, + [334] = {.lex_state = 1194}, + [335] = {.lex_state = 1350}, + [336] = {.lex_state = 1172}, + [337] = {.lex_state = 1194}, + [338] = {.lex_state = 1172}, + [339] = {.lex_state = 1350}, + [340] = {.lex_state = 1350}, + [341] = {.lex_state = 1196}, + [342] = {.lex_state = 1196}, [343] = {.lex_state = 122}, - [344] = {.lex_state = 579}, - [345] = {.lex_state = 579}, + [344] = {.lex_state = 578}, + [345] = {.lex_state = 578}, [346] = {.lex_state = 122}, [347] = {.lex_state = 122}, - [348] = {.lex_state = 579}, - [349] = {.lex_state = 579}, - [350] = {.lex_state = 45, .external_lex_state = 2}, + [348] = {.lex_state = 578}, + [349] = {.lex_state = 45, .external_lex_state = 2}, + [350] = {.lex_state = 122}, [351] = {.lex_state = 45, .external_lex_state = 2}, - [352] = {.lex_state = 579}, - [353] = {.lex_state = 579}, - [354] = {.lex_state = 579}, - [355] = {.lex_state = 45, .external_lex_state = 2}, - [356] = {.lex_state = 579}, - [357] = {.lex_state = 579}, - [358] = {.lex_state = 122}, - [359] = {.lex_state = 122}, - [360] = {.lex_state = 45, .external_lex_state = 2}, + [352] = {.lex_state = 45, .external_lex_state = 2}, + [353] = {.lex_state = 45, .external_lex_state = 2}, + [354] = {.lex_state = 122}, + [355] = {.lex_state = 578}, + [356] = {.lex_state = 122}, + [357] = {.lex_state = 578}, + [358] = {.lex_state = 578}, + [359] = {.lex_state = 45, .external_lex_state = 2}, + [360] = {.lex_state = 578}, [361] = {.lex_state = 45, .external_lex_state = 2}, [362] = {.lex_state = 122}, [363] = {.lex_state = 122}, @@ -34177,191 +34121,191 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [366] = {.lex_state = 122}, [367] = {.lex_state = 45, .external_lex_state = 2}, [368] = {.lex_state = 122}, - [369] = {.lex_state = 122}, - [370] = {.lex_state = 45, .external_lex_state = 2}, - [371] = {.lex_state = 45, .external_lex_state = 2}, + [369] = {.lex_state = 578}, + [370] = {.lex_state = 578}, + [371] = {.lex_state = 122}, [372] = {.lex_state = 45, .external_lex_state = 2}, [373] = {.lex_state = 45, .external_lex_state = 2}, - [374] = {.lex_state = 579}, + [374] = {.lex_state = 45, .external_lex_state = 2}, [375] = {.lex_state = 122}, [376] = {.lex_state = 122}, - [377] = {.lex_state = 122}, - [378] = {.lex_state = 579}, - [379] = {.lex_state = 45, .external_lex_state = 2}, - [380] = {.lex_state = 579}, - [381] = {.lex_state = 579}, - [382] = {.lex_state = 579}, - [383] = {.lex_state = 122}, - [384] = {.lex_state = 122}, - [385] = {.lex_state = 579}, - [386] = {.lex_state = 579}, - [387] = {.lex_state = 579}, - [388] = {.lex_state = 579}, + [377] = {.lex_state = 578}, + [378] = {.lex_state = 578}, + [379] = {.lex_state = 578}, + [380] = {.lex_state = 122}, + [381] = {.lex_state = 578}, + [382] = {.lex_state = 122}, + [383] = {.lex_state = 578}, + [384] = {.lex_state = 45, .external_lex_state = 2}, + [385] = {.lex_state = 122}, + [386] = {.lex_state = 582}, + [387] = {.lex_state = 582}, + [388] = {.lex_state = 578}, [389] = {.lex_state = 45, .external_lex_state = 2}, - [390] = {.lex_state = 579}, - [391] = {.lex_state = 579}, + [390] = {.lex_state = 45, .external_lex_state = 2}, + [391] = {.lex_state = 582}, [392] = {.lex_state = 45, .external_lex_state = 2}, - [393] = {.lex_state = 579}, - [394] = {.lex_state = 579}, - [395] = {.lex_state = 45, .external_lex_state = 2}, + [393] = {.lex_state = 578}, + [394] = {.lex_state = 45, .external_lex_state = 2}, + [395] = {.lex_state = 578}, [396] = {.lex_state = 45, .external_lex_state = 2}, [397] = {.lex_state = 45, .external_lex_state = 2}, - [398] = {.lex_state = 122}, - [399] = {.lex_state = 583}, - [400] = {.lex_state = 45, .external_lex_state = 2}, - [401] = {.lex_state = 45, .external_lex_state = 2}, - [402] = {.lex_state = 583}, - [403] = {.lex_state = 45, .external_lex_state = 2}, - [404] = {.lex_state = 579}, - [405] = {.lex_state = 45, .external_lex_state = 2}, + [398] = {.lex_state = 578}, + [399] = {.lex_state = 45, .external_lex_state = 2}, + [400] = {.lex_state = 578}, + [401] = {.lex_state = 578}, + [402] = {.lex_state = 578}, + [403] = {.lex_state = 578}, + [404] = {.lex_state = 578}, + [405] = {.lex_state = 578}, [406] = {.lex_state = 45, .external_lex_state = 2}, [407] = {.lex_state = 45, .external_lex_state = 2}, - [408] = {.lex_state = 579}, - [409] = {.lex_state = 583}, + [408] = {.lex_state = 45, .external_lex_state = 2}, + [409] = {.lex_state = 45, .external_lex_state = 2}, [410] = {.lex_state = 45, .external_lex_state = 2}, - [411] = {.lex_state = 579}, - [412] = {.lex_state = 583}, - [413] = {.lex_state = 585}, - [414] = {.lex_state = 580}, - [415] = {.lex_state = 579}, + [411] = {.lex_state = 578}, + [412] = {.lex_state = 579}, + [413] = {.lex_state = 582}, + [414] = {.lex_state = 582}, + [415] = {.lex_state = 582}, [416] = {.lex_state = 579}, - [417] = {.lex_state = 583}, - [418] = {.lex_state = 583}, - [419] = {.lex_state = 580}, - [420] = {.lex_state = 583}, - [421] = {.lex_state = 583}, - [422] = {.lex_state = 583}, - [423] = {.lex_state = 580}, - [424] = {.lex_state = 583}, - [425] = {.lex_state = 585}, - [426] = {.lex_state = 579}, - [427] = {.lex_state = 580}, - [428] = {.lex_state = 580}, - [429] = {.lex_state = 591}, + [417] = {.lex_state = 582}, + [418] = {.lex_state = 578}, + [419] = {.lex_state = 584}, + [420] = {.lex_state = 579}, + [421] = {.lex_state = 578}, + [422] = {.lex_state = 584}, + [423] = {.lex_state = 582}, + [424] = {.lex_state = 578}, + [425] = {.lex_state = 582}, + [426] = {.lex_state = 582}, + [427] = {.lex_state = 579}, + [428] = {.lex_state = 586}, + [429] = {.lex_state = 579}, [430] = {.lex_state = 579}, - [431] = {.lex_state = 623}, - [432] = {.lex_state = 580}, - [433] = {.lex_state = 580}, - [434] = {.lex_state = 580}, - [435] = {.lex_state = 579}, - [436] = {.lex_state = 580}, - [437] = {.lex_state = 585}, - [438] = {.lex_state = 580}, - [439] = {.lex_state = 580}, - [440] = {.lex_state = 580}, - [441] = {.lex_state = 587}, - [442] = {.lex_state = 579}, - [443] = {.lex_state = 583}, - [444] = {.lex_state = 583}, - [445] = {.lex_state = 579}, - [446] = {.lex_state = 585}, - [447] = {.lex_state = 580}, - [448] = {.lex_state = 593}, - [449] = {.lex_state = 579}, - [450] = {.lex_state = 593}, - [451] = {.lex_state = 580}, - [452] = {.lex_state = 41, .external_lex_state = 2}, - [453] = {.lex_state = 597}, - [454] = {.lex_state = 583}, - [455] = {.lex_state = 583}, - [456] = {.lex_state = 583}, - [457] = {.lex_state = 583}, - [458] = {.lex_state = 41, .external_lex_state = 2}, - [459] = {.lex_state = 589}, - [460] = {.lex_state = 595}, - [461] = {.lex_state = 41, .external_lex_state = 2}, + [431] = {.lex_state = 584}, + [432] = {.lex_state = 579}, + [433] = {.lex_state = 579}, + [434] = {.lex_state = 579}, + [435] = {.lex_state = 578}, + [436] = {.lex_state = 579}, + [437] = {.lex_state = 584}, + [438] = {.lex_state = 622}, + [439] = {.lex_state = 579}, + [440] = {.lex_state = 579}, + [441] = {.lex_state = 582}, + [442] = {.lex_state = 578}, + [443] = {.lex_state = 590}, + [444] = {.lex_state = 578}, + [445] = {.lex_state = 582}, + [446] = {.lex_state = 579}, + [447] = {.lex_state = 578}, + [448] = {.lex_state = 579}, + [449] = {.lex_state = 41, .external_lex_state = 2}, + [450] = {.lex_state = 586}, + [451] = {.lex_state = 582}, + [452] = {.lex_state = 582}, + [453] = {.lex_state = 41, .external_lex_state = 2}, + [454] = {.lex_state = 582}, + [455] = {.lex_state = 592}, + [456] = {.lex_state = 41, .external_lex_state = 2}, + [457] = {.lex_state = 582}, + [458] = {.lex_state = 582}, + [459] = {.lex_state = 41, .external_lex_state = 2}, + [460] = {.lex_state = 579}, + [461] = {.lex_state = 578}, [462] = {.lex_state = 41, .external_lex_state = 2}, [463] = {.lex_state = 41, .external_lex_state = 2}, - [464] = {.lex_state = 41, .external_lex_state = 2}, - [465] = {.lex_state = 583}, + [464] = {.lex_state = 592}, + [465] = {.lex_state = 582}, [466] = {.lex_state = 579}, - [467] = {.lex_state = 579}, - [468] = {.lex_state = 580}, - [469] = {.lex_state = 583}, - [470] = {.lex_state = 579}, - [471] = {.lex_state = 591}, - [472] = {.lex_state = 580}, - [473] = {.lex_state = 41, .external_lex_state = 2}, + [467] = {.lex_state = 578}, + [468] = {.lex_state = 596}, + [469] = {.lex_state = 588}, + [470] = {.lex_state = 41, .external_lex_state = 2}, + [471] = {.lex_state = 41, .external_lex_state = 2}, + [472] = {.lex_state = 578}, + [473] = {.lex_state = 594}, [474] = {.lex_state = 41, .external_lex_state = 2}, [475] = {.lex_state = 41, .external_lex_state = 2}, [476] = {.lex_state = 41, .external_lex_state = 2}, [477] = {.lex_state = 41, .external_lex_state = 2}, - [478] = {.lex_state = 41, .external_lex_state = 2}, - [479] = {.lex_state = 580}, - [480] = {.lex_state = 587}, - [481] = {.lex_state = 595}, - [482] = {.lex_state = 580}, - [483] = {.lex_state = 595}, - [484] = {.lex_state = 45, .external_lex_state = 2}, - [485] = {.lex_state = 579}, - [486] = {.lex_state = 593}, - [487] = {.lex_state = 595}, - [488] = {.lex_state = 593}, + [478] = {.lex_state = 579}, + [479] = {.lex_state = 590}, + [480] = {.lex_state = 578}, + [481] = {.lex_state = 592}, + [482] = {.lex_state = 45, .external_lex_state = 2}, + [483] = {.lex_state = 579}, + [484] = {.lex_state = 579}, + [485] = {.lex_state = 578}, + [486] = {.lex_state = 592}, + [487] = {.lex_state = 594}, + [488] = {.lex_state = 598}, [489] = {.lex_state = 41, .external_lex_state = 2}, - [490] = {.lex_state = 595}, - [491] = {.lex_state = 599}, - [492] = {.lex_state = 599}, - [493] = {.lex_state = 580}, - [494] = {.lex_state = 579}, - [495] = {.lex_state = 580}, - [496] = {.lex_state = 41, .external_lex_state = 2}, - [497] = {.lex_state = 580}, - [498] = {.lex_state = 580}, - [499] = {.lex_state = 580}, - [500] = {.lex_state = 580}, - [501] = {.lex_state = 614}, - [502] = {.lex_state = 601}, - [503] = {.lex_state = 41, .external_lex_state = 2}, - [504] = {.lex_state = 580}, - [505] = {.lex_state = 589}, - [506] = {.lex_state = 580}, - [507] = {.lex_state = 580}, - [508] = {.lex_state = 580}, - [509] = {.lex_state = 580}, - [510] = {.lex_state = 580}, - [511] = {.lex_state = 580}, - [512] = {.lex_state = 580}, - [513] = {.lex_state = 580}, - [514] = {.lex_state = 580}, - [515] = {.lex_state = 580}, - [516] = {.lex_state = 601}, - [517] = {.lex_state = 601}, - [518] = {.lex_state = 580}, - [519] = {.lex_state = 580}, - [520] = {.lex_state = 580}, - [521] = {.lex_state = 579}, - [522] = {.lex_state = 595}, - [523] = {.lex_state = 597}, - [524] = {.lex_state = 595}, - [525] = {.lex_state = 579}, - [526] = {.lex_state = 595}, + [490] = {.lex_state = 594}, + [491] = {.lex_state = 594}, + [492] = {.lex_state = 594}, + [493] = {.lex_state = 598}, + [494] = {.lex_state = 578}, + [495] = {.lex_state = 579}, + [496] = {.lex_state = 579}, + [497] = {.lex_state = 579}, + [498] = {.lex_state = 579}, + [499] = {.lex_state = 578}, + [500] = {.lex_state = 579}, + [501] = {.lex_state = 579}, + [502] = {.lex_state = 579}, + [503] = {.lex_state = 579}, + [504] = {.lex_state = 579}, + [505] = {.lex_state = 41, .external_lex_state = 2}, + [506] = {.lex_state = 594}, + [507] = {.lex_state = 579}, + [508] = {.lex_state = 579}, + [509] = {.lex_state = 579}, + [510] = {.lex_state = 579}, + [511] = {.lex_state = 588}, + [512] = {.lex_state = 596}, + [513] = {.lex_state = 579}, + [514] = {.lex_state = 579}, + [515] = {.lex_state = 600}, + [516] = {.lex_state = 579}, + [517] = {.lex_state = 579}, + [518] = {.lex_state = 41, .external_lex_state = 2}, + [519] = {.lex_state = 579}, + [520] = {.lex_state = 579}, + [521] = {.lex_state = 594}, + [522] = {.lex_state = 613}, + [523] = {.lex_state = 594}, + [524] = {.lex_state = 600}, + [525] = {.lex_state = 600}, + [526] = {.lex_state = 578}, [527] = {.lex_state = 42, .external_lex_state = 2}, [528] = {.lex_state = 42, .external_lex_state = 2}, - [529] = {.lex_state = 42, .external_lex_state = 2}, + [529] = {.lex_state = 626, .external_lex_state = 2}, [530] = {.lex_state = 42, .external_lex_state = 2}, [531] = {.lex_state = 42, .external_lex_state = 2}, [532] = {.lex_state = 42, .external_lex_state = 2}, - [533] = {.lex_state = 45, .external_lex_state = 2}, + [533] = {.lex_state = 42, .external_lex_state = 2}, [534] = {.lex_state = 42, .external_lex_state = 2}, - [535] = {.lex_state = 45, .external_lex_state = 2}, - [536] = {.lex_state = 599}, - [537] = {.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}, [538] = {.lex_state = 42, .external_lex_state = 2}, - [539] = {.lex_state = 627, .external_lex_state = 2}, + [539] = {.lex_state = 42, .external_lex_state = 2}, [540] = {.lex_state = 42, .external_lex_state = 2}, [541] = {.lex_state = 42, .external_lex_state = 2}, [542] = {.lex_state = 42, .external_lex_state = 2}, - [543] = {.lex_state = 42, .external_lex_state = 2}, - [544] = {.lex_state = 42, .external_lex_state = 2}, + [543] = {.lex_state = 598}, + [544] = {.lex_state = 45, .external_lex_state = 2}, [545] = {.lex_state = 42, .external_lex_state = 2}, [546] = {.lex_state = 42, .external_lex_state = 2}, [547] = {.lex_state = 42, .external_lex_state = 2}, [548] = {.lex_state = 42, .external_lex_state = 2}, [549] = {.lex_state = 42, .external_lex_state = 2}, [550] = {.lex_state = 42, .external_lex_state = 2}, - [551] = {.lex_state = 42, .external_lex_state = 2}, - [552] = {.lex_state = 42, .external_lex_state = 2}, - [553] = {.lex_state = 42, .external_lex_state = 2}, + [551] = {.lex_state = 600}, + [552] = {.lex_state = 45, .external_lex_state = 2}, + [553] = {.lex_state = 613}, [554] = {.lex_state = 42, .external_lex_state = 2}, [555] = {.lex_state = 42, .external_lex_state = 2}, [556] = {.lex_state = 42, .external_lex_state = 2}, @@ -34378,9 +34322,9 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [567] = {.lex_state = 42, .external_lex_state = 2}, [568] = {.lex_state = 42, .external_lex_state = 2}, [569] = {.lex_state = 42, .external_lex_state = 2}, - [570] = {.lex_state = 42, .external_lex_state = 2}, + [570] = {.lex_state = 626, .external_lex_state = 2}, [571] = {.lex_state = 42, .external_lex_state = 2}, - [572] = {.lex_state = 42, .external_lex_state = 2}, + [572] = {.lex_state = 600}, [573] = {.lex_state = 42, .external_lex_state = 2}, [574] = {.lex_state = 42, .external_lex_state = 2}, [575] = {.lex_state = 42, .external_lex_state = 2}, @@ -34388,13 +34332,13 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [577] = {.lex_state = 42, .external_lex_state = 2}, [578] = {.lex_state = 42, .external_lex_state = 2}, [579] = {.lex_state = 42, .external_lex_state = 2}, - [580] = {.lex_state = 42, .external_lex_state = 2}, - [581] = {.lex_state = 42, .external_lex_state = 2}, + [580] = {.lex_state = 579}, + [581] = {.lex_state = 598}, [582] = {.lex_state = 42, .external_lex_state = 2}, [583] = {.lex_state = 42, .external_lex_state = 2}, [584] = {.lex_state = 42, .external_lex_state = 2}, [585] = {.lex_state = 42, .external_lex_state = 2}, - [586] = {.lex_state = 580}, + [586] = {.lex_state = 42, .external_lex_state = 2}, [587] = {.lex_state = 42, .external_lex_state = 2}, [588] = {.lex_state = 42, .external_lex_state = 2}, [589] = {.lex_state = 42, .external_lex_state = 2}, @@ -34423,11 +34367,11 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [612] = {.lex_state = 42, .external_lex_state = 2}, [613] = {.lex_state = 42, .external_lex_state = 2}, [614] = {.lex_state = 42, .external_lex_state = 2}, - [615] = {.lex_state = 627, .external_lex_state = 2}, + [615] = {.lex_state = 42, .external_lex_state = 2}, [616] = {.lex_state = 42, .external_lex_state = 2}, [617] = {.lex_state = 42, .external_lex_state = 2}, [618] = {.lex_state = 42, .external_lex_state = 2}, - [619] = {.lex_state = 42, .external_lex_state = 2}, + [619] = {.lex_state = 626, .external_lex_state = 2}, [620] = {.lex_state = 42, .external_lex_state = 2}, [621] = {.lex_state = 42, .external_lex_state = 2}, [622] = {.lex_state = 42, .external_lex_state = 2}, @@ -34440,14 +34384,14 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [629] = {.lex_state = 42, .external_lex_state = 2}, [630] = {.lex_state = 42, .external_lex_state = 2}, [631] = {.lex_state = 42, .external_lex_state = 2}, - [632] = {.lex_state = 580}, - [633] = {.lex_state = 601}, - [634] = {.lex_state = 601}, + [632] = {.lex_state = 42, .external_lex_state = 2}, + [633] = {.lex_state = 42, .external_lex_state = 2}, + [634] = {.lex_state = 42, .external_lex_state = 2}, [635] = {.lex_state = 42, .external_lex_state = 2}, [636] = {.lex_state = 42, .external_lex_state = 2}, [637] = {.lex_state = 42, .external_lex_state = 2}, [638] = {.lex_state = 42, .external_lex_state = 2}, - [639] = {.lex_state = 42, .external_lex_state = 2}, + [639] = {.lex_state = 579}, [640] = {.lex_state = 42, .external_lex_state = 2}, [641] = {.lex_state = 42, .external_lex_state = 2}, [642] = {.lex_state = 42, .external_lex_state = 2}, @@ -34457,17 +34401,17 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [646] = {.lex_state = 42, .external_lex_state = 2}, [647] = {.lex_state = 42, .external_lex_state = 2}, [648] = {.lex_state = 42, .external_lex_state = 2}, - [649] = {.lex_state = 614}, + [649] = {.lex_state = 42, .external_lex_state = 2}, [650] = {.lex_state = 42, .external_lex_state = 2}, [651] = {.lex_state = 42, .external_lex_state = 2}, - [652] = {.lex_state = 627, .external_lex_state = 2}, + [652] = {.lex_state = 42, .external_lex_state = 2}, [653] = {.lex_state = 42, .external_lex_state = 2}, [654] = {.lex_state = 42, .external_lex_state = 2}, [655] = {.lex_state = 42, .external_lex_state = 2}, [656] = {.lex_state = 42, .external_lex_state = 2}, [657] = {.lex_state = 42, .external_lex_state = 2}, [658] = {.lex_state = 42, .external_lex_state = 2}, - [659] = {.lex_state = 599}, + [659] = {.lex_state = 42, .external_lex_state = 2}, [660] = {.lex_state = 42, .external_lex_state = 2}, [661] = {.lex_state = 42, .external_lex_state = 2}, [662] = {.lex_state = 42, .external_lex_state = 2}, @@ -34475,7 +34419,7 @@ 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 = 614}, + [667] = {.lex_state = 42, .external_lex_state = 2}, [668] = {.lex_state = 42, .external_lex_state = 2}, [669] = {.lex_state = 42, .external_lex_state = 2}, [670] = {.lex_state = 42, .external_lex_state = 2}, @@ -34490,7 +34434,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [679] = {.lex_state = 42, .external_lex_state = 2}, [680] = {.lex_state = 42, .external_lex_state = 2}, [681] = {.lex_state = 42, .external_lex_state = 2}, - [682] = {.lex_state = 42, .external_lex_state = 2}, + [682] = {.lex_state = 613}, [683] = {.lex_state = 42, .external_lex_state = 2}, [684] = {.lex_state = 42, .external_lex_state = 2}, [685] = {.lex_state = 42, .external_lex_state = 2}, @@ -34498,1488 +34442,1488 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [687] = {.lex_state = 42, .external_lex_state = 2}, [688] = {.lex_state = 42, .external_lex_state = 2}, [689] = {.lex_state = 42, .external_lex_state = 2}, - [690] = {.lex_state = 42, .external_lex_state = 2}, + [690] = {.lex_state = 45, .external_lex_state = 2}, [691] = {.lex_state = 42, .external_lex_state = 2}, [692] = {.lex_state = 42, .external_lex_state = 2}, [693] = {.lex_state = 42, .external_lex_state = 2}, [694] = {.lex_state = 42, .external_lex_state = 2}, [695] = {.lex_state = 42, .external_lex_state = 2}, [696] = {.lex_state = 42, .external_lex_state = 2}, - [697] = {.lex_state = 580}, - [698] = {.lex_state = 580}, - [699] = {.lex_state = 580}, - [700] = {.lex_state = 580}, - [701] = {.lex_state = 580}, - [702] = {.lex_state = 580}, - [703] = {.lex_state = 580}, - [704] = {.lex_state = 580}, - [705] = {.lex_state = 580}, - [706] = {.lex_state = 580}, - [707] = {.lex_state = 580}, - [708] = {.lex_state = 580}, - [709] = {.lex_state = 603}, - [710] = {.lex_state = 580}, - [711] = {.lex_state = 580}, - [712] = {.lex_state = 580}, - [713] = {.lex_state = 580}, - [714] = {.lex_state = 580}, - [715] = {.lex_state = 580}, - [716] = {.lex_state = 580}, - [717] = {.lex_state = 580}, - [718] = {.lex_state = 580}, - [719] = {.lex_state = 580}, - [720] = {.lex_state = 41, .external_lex_state = 2}, - [721] = {.lex_state = 601}, - [722] = {.lex_state = 580}, - [723] = {.lex_state = 580}, - [724] = {.lex_state = 601}, - [725] = {.lex_state = 601}, - [726] = {.lex_state = 580}, - [727] = {.lex_state = 614}, - [728] = {.lex_state = 41, .external_lex_state = 2}, - [729] = {.lex_state = 580}, - [730] = {.lex_state = 580}, - [731] = {.lex_state = 41, .external_lex_state = 2}, - [732] = {.lex_state = 41, .external_lex_state = 2}, - [733] = {.lex_state = 580}, - [734] = {.lex_state = 627, .external_lex_state = 2}, - [735] = {.lex_state = 627, .external_lex_state = 2}, - [736] = {.lex_state = 580}, - [737] = {.lex_state = 614}, - [738] = {.lex_state = 601}, - [739] = {.lex_state = 41, .external_lex_state = 2}, - [740] = {.lex_state = 605}, - [741] = {.lex_state = 601}, - [742] = {.lex_state = 614}, - [743] = {.lex_state = 580}, + [697] = {.lex_state = 579}, + [698] = {.lex_state = 579}, + [699] = {.lex_state = 41, .external_lex_state = 2}, + [700] = {.lex_state = 579}, + [701] = {.lex_state = 579}, + [702] = {.lex_state = 41, .external_lex_state = 2}, + [703] = {.lex_state = 579}, + [704] = {.lex_state = 604}, + [705] = {.lex_state = 579}, + [706] = {.lex_state = 579}, + [707] = {.lex_state = 579}, + [708] = {.lex_state = 579}, + [709] = {.lex_state = 579}, + [710] = {.lex_state = 579}, + [711] = {.lex_state = 579}, + [712] = {.lex_state = 613}, + [713] = {.lex_state = 613}, + [714] = {.lex_state = 579}, + [715] = {.lex_state = 579}, + [716] = {.lex_state = 579}, + [717] = {.lex_state = 626, .external_lex_state = 2}, + [718] = {.lex_state = 579}, + [719] = {.lex_state = 41, .external_lex_state = 2}, + [720] = {.lex_state = 579}, + [721] = {.lex_state = 579}, + [722] = {.lex_state = 579}, + [723] = {.lex_state = 41, .external_lex_state = 2}, + [724] = {.lex_state = 579}, + [725] = {.lex_state = 579}, + [726] = {.lex_state = 602}, + [727] = {.lex_state = 579}, + [728] = {.lex_state = 579}, + [729] = {.lex_state = 579}, + [730] = {.lex_state = 579}, + [731] = {.lex_state = 579}, + [732] = {.lex_state = 626, .external_lex_state = 2}, + [733] = {.lex_state = 579}, + [734] = {.lex_state = 600}, + [735] = {.lex_state = 579}, + [736] = {.lex_state = 600}, + [737] = {.lex_state = 600}, + [738] = {.lex_state = 600}, + [739] = {.lex_state = 579}, + [740] = {.lex_state = 579}, + [741] = {.lex_state = 600}, + [742] = {.lex_state = 579}, + [743] = {.lex_state = 41, .external_lex_state = 2}, [744] = {.lex_state = 41, .external_lex_state = 2}, - [745] = {.lex_state = 580}, - [746] = {.lex_state = 580}, - [747] = {.lex_state = 580}, - [748] = {.lex_state = 580}, - [749] = {.lex_state = 580}, - [750] = {.lex_state = 580}, - [751] = {.lex_state = 580}, - [752] = {.lex_state = 580}, - [753] = {.lex_state = 580}, - [754] = {.lex_state = 580}, - [755] = {.lex_state = 580}, - [756] = {.lex_state = 580}, - [757] = {.lex_state = 580}, - [758] = {.lex_state = 580}, - [759] = {.lex_state = 580}, - [760] = {.lex_state = 580}, - [761] = {.lex_state = 580}, - [762] = {.lex_state = 580}, - [763] = {.lex_state = 580}, - [764] = {.lex_state = 580}, - [765] = {.lex_state = 580}, - [766] = {.lex_state = 580}, - [767] = {.lex_state = 580}, - [768] = {.lex_state = 580}, - [769] = {.lex_state = 580}, - [770] = {.lex_state = 580}, - [771] = {.lex_state = 42, .external_lex_state = 2}, - [772] = {.lex_state = 42, .external_lex_state = 2}, + [745] = {.lex_state = 579}, + [746] = {.lex_state = 613}, + [747] = {.lex_state = 606}, + [748] = {.lex_state = 42, .external_lex_state = 2}, + [749] = {.lex_state = 579}, + [750] = {.lex_state = 579}, + [751] = {.lex_state = 579}, + [752] = {.lex_state = 579}, + [753] = {.lex_state = 579}, + [754] = {.lex_state = 579}, + [755] = {.lex_state = 579}, + [756] = {.lex_state = 42, .external_lex_state = 2}, + [757] = {.lex_state = 579}, + [758] = {.lex_state = 579}, + [759] = {.lex_state = 579}, + [760] = {.lex_state = 579}, + [761] = {.lex_state = 579}, + [762] = {.lex_state = 579}, + [763] = {.lex_state = 579}, + [764] = {.lex_state = 579}, + [765] = {.lex_state = 579}, + [766] = {.lex_state = 579}, + [767] = {.lex_state = 579}, + [768] = {.lex_state = 579}, + [769] = {.lex_state = 579}, + [770] = {.lex_state = 579}, + [771] = {.lex_state = 579}, + [772] = {.lex_state = 579}, [773] = {.lex_state = 42, .external_lex_state = 2}, - [774] = {.lex_state = 42, .external_lex_state = 2}, - [775] = {.lex_state = 42, .external_lex_state = 2}, + [774] = {.lex_state = 579}, + [775] = {.lex_state = 579}, [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}, + [778] = {.lex_state = 579}, + [779] = {.lex_state = 579}, [780] = {.lex_state = 42, .external_lex_state = 2}, [781] = {.lex_state = 42, .external_lex_state = 2}, [782] = {.lex_state = 42, .external_lex_state = 2}, - [783] = {.lex_state = 42, .external_lex_state = 2}, - [784] = {.lex_state = 580}, - [785] = {.lex_state = 580}, - [786] = {.lex_state = 580}, - [787] = {.lex_state = 580}, - [788] = {.lex_state = 580}, - [789] = {.lex_state = 580}, - [790] = {.lex_state = 580}, - [791] = {.lex_state = 580}, - [792] = {.lex_state = 580}, - [793] = {.lex_state = 580}, - [794] = {.lex_state = 580}, - [795] = {.lex_state = 580}, - [796] = {.lex_state = 580}, - [797] = {.lex_state = 580}, - [798] = {.lex_state = 603}, - [799] = {.lex_state = 580}, - [800] = {.lex_state = 627, .external_lex_state = 2}, - [801] = {.lex_state = 627, .external_lex_state = 2}, - [802] = {.lex_state = 580}, - [803] = {.lex_state = 580}, - [804] = {.lex_state = 605}, - [805] = {.lex_state = 580}, - [806] = {.lex_state = 580}, - [807] = {.lex_state = 580}, - [808] = {.lex_state = 580}, - [809] = {.lex_state = 580}, - [810] = {.lex_state = 580}, - [811] = {.lex_state = 603}, - [812] = {.lex_state = 580}, - [813] = {.lex_state = 580}, - [814] = {.lex_state = 580}, - [815] = {.lex_state = 607}, - [816] = {.lex_state = 607}, - [817] = {.lex_state = 580}, - [818] = {.lex_state = 580}, - [819] = {.lex_state = 580}, - [820] = {.lex_state = 580}, - [821] = {.lex_state = 580}, - [822] = {.lex_state = 42, .external_lex_state = 2}, - [823] = {.lex_state = 580}, + [783] = {.lex_state = 579}, + [784] = {.lex_state = 42, .external_lex_state = 2}, + [785] = {.lex_state = 42, .external_lex_state = 2}, + [786] = {.lex_state = 42, .external_lex_state = 2}, + [787] = {.lex_state = 579}, + [788] = {.lex_state = 42, .external_lex_state = 2}, + [789] = {.lex_state = 42, .external_lex_state = 2}, + [790] = {.lex_state = 42, .external_lex_state = 2}, + [791] = {.lex_state = 579}, + [792] = {.lex_state = 579}, + [793] = {.lex_state = 579}, + [794] = {.lex_state = 579}, + [795] = {.lex_state = 579}, + [796] = {.lex_state = 579}, + [797] = {.lex_state = 42, .external_lex_state = 2}, + [798] = {.lex_state = 579}, + [799] = {.lex_state = 579}, + [800] = {.lex_state = 579}, + [801] = {.lex_state = 579}, + [802] = {.lex_state = 579}, + [803] = {.lex_state = 579}, + [804] = {.lex_state = 602}, + [805] = {.lex_state = 42, .external_lex_state = 2}, + [806] = {.lex_state = 604}, + [807] = {.lex_state = 579}, + [808] = {.lex_state = 579}, + [809] = {.lex_state = 42, .external_lex_state = 2}, + [810] = {.lex_state = 42, .external_lex_state = 2}, + [811] = {.lex_state = 579}, + [812] = {.lex_state = 579}, + [813] = {.lex_state = 42, .external_lex_state = 2}, + [814] = {.lex_state = 42, .external_lex_state = 2}, + [815] = {.lex_state = 579}, + [816] = {.lex_state = 42, .external_lex_state = 2}, + [817] = {.lex_state = 42, .external_lex_state = 2}, + [818] = {.lex_state = 579}, + [819] = {.lex_state = 579}, + [820] = {.lex_state = 579}, + [821] = {.lex_state = 42, .external_lex_state = 2}, + [822] = {.lex_state = 579}, + [823] = {.lex_state = 579}, [824] = {.lex_state = 42, .external_lex_state = 2}, - [825] = {.lex_state = 580}, - [826] = {.lex_state = 580}, - [827] = {.lex_state = 580}, - [828] = {.lex_state = 580}, - [829] = {.lex_state = 580}, + [825] = {.lex_state = 42, .external_lex_state = 2}, + [826] = {.lex_state = 42, .external_lex_state = 2}, + [827] = {.lex_state = 42, .external_lex_state = 2}, + [828] = {.lex_state = 42, .external_lex_state = 2}, + [829] = {.lex_state = 42, .external_lex_state = 2}, [830] = {.lex_state = 42, .external_lex_state = 2}, - [831] = {.lex_state = 580}, + [831] = {.lex_state = 579}, [832] = {.lex_state = 42, .external_lex_state = 2}, - [833] = {.lex_state = 580}, - [834] = {.lex_state = 580}, + [833] = {.lex_state = 42, .external_lex_state = 2}, + [834] = {.lex_state = 579}, [835] = {.lex_state = 42, .external_lex_state = 2}, - [836] = {.lex_state = 580}, - [837] = {.lex_state = 42, .external_lex_state = 2}, - [838] = {.lex_state = 580}, - [839] = {.lex_state = 42, .external_lex_state = 2}, + [836] = {.lex_state = 42, .external_lex_state = 2}, + [837] = {.lex_state = 606}, + [838] = {.lex_state = 42, .external_lex_state = 2}, + [839] = {.lex_state = 579}, [840] = {.lex_state = 42, .external_lex_state = 2}, - [841] = {.lex_state = 42, .external_lex_state = 2}, + [841] = {.lex_state = 579}, [842] = {.lex_state = 42, .external_lex_state = 2}, - [843] = {.lex_state = 42, .external_lex_state = 2}, - [844] = {.lex_state = 42, .external_lex_state = 2}, - [845] = {.lex_state = 42, .external_lex_state = 2}, - [846] = {.lex_state = 42, .external_lex_state = 2}, + [843] = {.lex_state = 579}, + [844] = {.lex_state = 579}, + [845] = {.lex_state = 579}, + [846] = {.lex_state = 579}, [847] = {.lex_state = 42, .external_lex_state = 2}, - [848] = {.lex_state = 42, .external_lex_state = 2}, + [848] = {.lex_state = 579}, [849] = {.lex_state = 42, .external_lex_state = 2}, - [850] = {.lex_state = 42, .external_lex_state = 2}, - [851] = {.lex_state = 42, .external_lex_state = 2}, - [852] = {.lex_state = 42, .external_lex_state = 2}, - [853] = {.lex_state = 42, .external_lex_state = 2}, + [850] = {.lex_state = 579}, + [851] = {.lex_state = 579}, + [852] = {.lex_state = 579}, + [853] = {.lex_state = 579}, [854] = {.lex_state = 42, .external_lex_state = 2}, [855] = {.lex_state = 42, .external_lex_state = 2}, [856] = {.lex_state = 42, .external_lex_state = 2}, - [857] = {.lex_state = 42, .external_lex_state = 2}, - [858] = {.lex_state = 580}, - [859] = {.lex_state = 580}, - [860] = {.lex_state = 580}, - [861] = {.lex_state = 580}, - [862] = {.lex_state = 580}, - [863] = {.lex_state = 580}, - [864] = {.lex_state = 580}, - [865] = {.lex_state = 580}, - [866] = {.lex_state = 580}, - [867] = {.lex_state = 580}, - [868] = {.lex_state = 42, .external_lex_state = 2}, - [869] = {.lex_state = 42, .external_lex_state = 2}, - [870] = {.lex_state = 42, .external_lex_state = 2}, + [857] = {.lex_state = 579}, + [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 = 579}, + [862] = {.lex_state = 579}, + [863] = {.lex_state = 579}, + [864] = {.lex_state = 42, .external_lex_state = 2}, + [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 = 579}, + [869] = {.lex_state = 626, .external_lex_state = 2}, + [870] = {.lex_state = 626, .external_lex_state = 2}, [871] = {.lex_state = 42, .external_lex_state = 2}, [872] = {.lex_state = 42, .external_lex_state = 2}, - [873] = {.lex_state = 42, .external_lex_state = 2}, - [874] = {.lex_state = 42, .external_lex_state = 2}, - [875] = {.lex_state = 42, .external_lex_state = 2}, + [873] = {.lex_state = 579}, + [874] = {.lex_state = 579}, + [875] = {.lex_state = 579}, [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 = 580}, - [882] = {.lex_state = 580}, - [883] = {.lex_state = 580}, + [878] = {.lex_state = 579}, + [879] = {.lex_state = 579}, + [880] = {.lex_state = 579}, + [881] = {.lex_state = 42, .external_lex_state = 2}, + [882] = {.lex_state = 579}, + [883] = {.lex_state = 42, .external_lex_state = 2}, [884] = {.lex_state = 42, .external_lex_state = 2}, - [885] = {.lex_state = 627, .external_lex_state = 2}, - [886] = {.lex_state = 627, .external_lex_state = 2}, - [887] = {.lex_state = 609}, - [888] = {.lex_state = 580}, - [889] = {.lex_state = 580}, + [885] = {.lex_state = 42, .external_lex_state = 2}, + [886] = {.lex_state = 579}, + [887] = {.lex_state = 579}, + [888] = {.lex_state = 42, .external_lex_state = 2}, + [889] = {.lex_state = 579}, [890] = {.lex_state = 42, .external_lex_state = 2}, - [891] = {.lex_state = 42, .external_lex_state = 2}, - [892] = {.lex_state = 42, .external_lex_state = 2}, - [893] = {.lex_state = 42, .external_lex_state = 2}, - [894] = {.lex_state = 42, .external_lex_state = 2}, + [891] = {.lex_state = 579}, + [892] = {.lex_state = 579}, + [893] = {.lex_state = 579}, + [894] = {.lex_state = 626, .external_lex_state = 2}, [895] = {.lex_state = 42, .external_lex_state = 2}, - [896] = {.lex_state = 42, .external_lex_state = 2}, - [897] = {.lex_state = 42, .external_lex_state = 2}, + [896] = {.lex_state = 579}, + [897] = {.lex_state = 579}, [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}, + [899] = {.lex_state = 626, .external_lex_state = 2}, + [900] = {.lex_state = 579}, + [901] = {.lex_state = 579}, + [902] = {.lex_state = 579}, + [903] = {.lex_state = 602}, [904] = {.lex_state = 42, .external_lex_state = 2}, [905] = {.lex_state = 42, .external_lex_state = 2}, [906] = {.lex_state = 42, .external_lex_state = 2}, [907] = {.lex_state = 42, .external_lex_state = 2}, - [908] = {.lex_state = 42, .external_lex_state = 2}, + [908] = {.lex_state = 579}, [909] = {.lex_state = 42, .external_lex_state = 2}, [910] = {.lex_state = 42, .external_lex_state = 2}, [911] = {.lex_state = 42, .external_lex_state = 2}, - [912] = {.lex_state = 42, .external_lex_state = 2}, - [913] = {.lex_state = 42, .external_lex_state = 2}, + [912] = {.lex_state = 579}, + [913] = {.lex_state = 579}, [914] = {.lex_state = 42, .external_lex_state = 2}, - [915] = {.lex_state = 42, .external_lex_state = 2}, - [916] = {.lex_state = 580}, - [917] = {.lex_state = 580}, - [918] = {.lex_state = 580}, - [919] = {.lex_state = 580}, - [920] = {.lex_state = 580}, - [921] = {.lex_state = 580}, - [922] = {.lex_state = 580}, - [923] = {.lex_state = 580}, - [924] = {.lex_state = 580}, - [925] = {.lex_state = 580}, - [926] = {.lex_state = 580}, - [927] = {.lex_state = 580}, - [928] = {.lex_state = 580}, - [929] = {.lex_state = 609}, - [930] = {.lex_state = 33, .external_lex_state = 2}, - [931] = {.lex_state = 609}, - [932] = {.lex_state = 609}, - [933] = {.lex_state = 580}, - [934] = {.lex_state = 580}, - [935] = {.lex_state = 51, .external_lex_state = 2}, - [936] = {.lex_state = 580}, - [937] = {.lex_state = 580}, - [938] = {.lex_state = 580}, - [939] = {.lex_state = 580}, - [940] = {.lex_state = 580}, - [941] = {.lex_state = 580}, - [942] = {.lex_state = 580}, - [943] = {.lex_state = 609}, - [944] = {.lex_state = 580}, - [945] = {.lex_state = 609}, - [946] = {.lex_state = 609}, - [947] = {.lex_state = 580}, - [948] = {.lex_state = 580}, - [949] = {.lex_state = 609}, - [950] = {.lex_state = 607}, - [951] = {.lex_state = 51, .external_lex_state = 2}, - [952] = {.lex_state = 609}, - [953] = {.lex_state = 580}, - [954] = {.lex_state = 580}, - [955] = {.lex_state = 580}, - [956] = {.lex_state = 609}, - [957] = {.lex_state = 580}, - [958] = {.lex_state = 580}, - [959] = {.lex_state = 580}, - [960] = {.lex_state = 609}, - [961] = {.lex_state = 609}, - [962] = {.lex_state = 580}, - [963] = {.lex_state = 580}, - [964] = {.lex_state = 580}, - [965] = {.lex_state = 580}, - [966] = {.lex_state = 580}, - [967] = {.lex_state = 580}, - [968] = {.lex_state = 580}, - [969] = {.lex_state = 580}, - [970] = {.lex_state = 580}, - [971] = {.lex_state = 580}, - [972] = {.lex_state = 580}, - [973] = {.lex_state = 580}, - [974] = {.lex_state = 580}, - [975] = {.lex_state = 580}, - [976] = {.lex_state = 580}, - [977] = {.lex_state = 580}, - [978] = {.lex_state = 580}, - [979] = {.lex_state = 580}, - [980] = {.lex_state = 580}, - [981] = {.lex_state = 580}, - [982] = {.lex_state = 607}, - [983] = {.lex_state = 580}, - [984] = {.lex_state = 580}, - [985] = {.lex_state = 580}, - [986] = {.lex_state = 580}, - [987] = {.lex_state = 609}, - [988] = {.lex_state = 51, .external_lex_state = 2}, - [989] = {.lex_state = 580}, - [990] = {.lex_state = 580}, - [991] = {.lex_state = 580}, - [992] = {.lex_state = 580}, - [993] = {.lex_state = 580}, - [994] = {.lex_state = 609}, - [995] = {.lex_state = 580}, - [996] = {.lex_state = 580}, - [997] = {.lex_state = 580}, - [998] = {.lex_state = 580}, - [999] = {.lex_state = 580}, - [1000] = {.lex_state = 609}, - [1001] = {.lex_state = 580}, - [1002] = {.lex_state = 609}, - [1003] = {.lex_state = 580}, - [1004] = {.lex_state = 580}, - [1005] = {.lex_state = 580}, - [1006] = {.lex_state = 580}, - [1007] = {.lex_state = 580}, - [1008] = {.lex_state = 580}, - [1009] = {.lex_state = 580}, - [1010] = {.lex_state = 580}, - [1011] = {.lex_state = 609}, - [1012] = {.lex_state = 580}, - [1013] = {.lex_state = 580}, - [1014] = {.lex_state = 609}, - [1015] = {.lex_state = 580}, - [1016] = {.lex_state = 580}, - [1017] = {.lex_state = 580}, - [1018] = {.lex_state = 626, .external_lex_state = 2}, - [1019] = {.lex_state = 580}, - [1020] = {.lex_state = 609}, - [1021] = {.lex_state = 580}, - [1022] = {.lex_state = 609}, - [1023] = {.lex_state = 580}, - [1024] = {.lex_state = 580}, - [1025] = {.lex_state = 580}, - [1026] = {.lex_state = 580}, - [1027] = {.lex_state = 580}, - [1028] = {.lex_state = 580}, - [1029] = {.lex_state = 42, .external_lex_state = 2}, - [1030] = {.lex_state = 42, .external_lex_state = 2}, - [1031] = {.lex_state = 42, .external_lex_state = 2}, - [1032] = {.lex_state = 48, .external_lex_state = 2}, - [1033] = {.lex_state = 580}, - [1034] = {.lex_state = 580}, - [1035] = {.lex_state = 580}, - [1036] = {.lex_state = 580}, - [1037] = {.lex_state = 580}, - [1038] = {.lex_state = 580}, - [1039] = {.lex_state = 580}, - [1040] = {.lex_state = 580}, - [1041] = {.lex_state = 580}, - [1042] = {.lex_state = 580}, - [1043] = {.lex_state = 580}, - [1044] = {.lex_state = 580}, - [1045] = {.lex_state = 580}, - [1046] = {.lex_state = 580}, - [1047] = {.lex_state = 580}, - [1048] = {.lex_state = 580}, - [1049] = {.lex_state = 580}, - [1050] = {.lex_state = 580}, - [1051] = {.lex_state = 580}, - [1052] = {.lex_state = 580}, - [1053] = {.lex_state = 580}, - [1054] = {.lex_state = 580}, - [1055] = {.lex_state = 580}, - [1056] = {.lex_state = 580}, - [1057] = {.lex_state = 580}, - [1058] = {.lex_state = 580}, - [1059] = {.lex_state = 580}, - [1060] = {.lex_state = 580}, - [1061] = {.lex_state = 580}, - [1062] = {.lex_state = 580}, - [1063] = {.lex_state = 580}, - [1064] = {.lex_state = 611}, - [1065] = {.lex_state = 580}, - [1066] = {.lex_state = 580}, - [1067] = {.lex_state = 580}, - [1068] = {.lex_state = 580}, - [1069] = {.lex_state = 580}, - [1070] = {.lex_state = 580}, - [1071] = {.lex_state = 580}, - [1072] = {.lex_state = 580}, - [1073] = {.lex_state = 580}, - [1074] = {.lex_state = 580}, - [1075] = {.lex_state = 580}, - [1076] = {.lex_state = 580}, - [1077] = {.lex_state = 580}, - [1078] = {.lex_state = 626, .external_lex_state = 2}, - [1079] = {.lex_state = 580}, - [1080] = {.lex_state = 580}, - [1081] = {.lex_state = 580}, - [1082] = {.lex_state = 580}, - [1083] = {.lex_state = 580}, - [1084] = {.lex_state = 580}, - [1085] = {.lex_state = 580}, - [1086] = {.lex_state = 580}, - [1087] = {.lex_state = 580}, - [1088] = {.lex_state = 580}, - [1089] = {.lex_state = 580}, - [1090] = {.lex_state = 580}, - [1091] = {.lex_state = 580}, - [1092] = {.lex_state = 580}, - [1093] = {.lex_state = 611}, - [1094] = {.lex_state = 611}, - [1095] = {.lex_state = 611}, - [1096] = {.lex_state = 580}, - [1097] = {.lex_state = 609}, - [1098] = {.lex_state = 580}, - [1099] = {.lex_state = 580}, - [1100] = {.lex_state = 580}, - [1101] = {.lex_state = 580}, - [1102] = {.lex_state = 580}, - [1103] = {.lex_state = 603}, - [1104] = {.lex_state = 580}, - [1105] = {.lex_state = 580}, - [1106] = {.lex_state = 580}, - [1107] = {.lex_state = 580}, - [1108] = {.lex_state = 580}, - [1109] = {.lex_state = 609}, - [1110] = {.lex_state = 609}, - [1111] = {.lex_state = 580}, - [1112] = {.lex_state = 609}, - [1113] = {.lex_state = 580}, - [1114] = {.lex_state = 580}, - [1115] = {.lex_state = 580}, - [1116] = {.lex_state = 580}, - [1117] = {.lex_state = 580}, - [1118] = {.lex_state = 580}, - [1119] = {.lex_state = 580}, - [1120] = {.lex_state = 580}, - [1121] = {.lex_state = 580}, - [1122] = {.lex_state = 580}, - [1123] = {.lex_state = 580}, - [1124] = {.lex_state = 626, .external_lex_state = 2}, - [1125] = {.lex_state = 42, .external_lex_state = 2}, - [1126] = {.lex_state = 42, .external_lex_state = 2}, - [1127] = {.lex_state = 42, .external_lex_state = 2}, - [1128] = {.lex_state = 580}, - [1129] = {.lex_state = 48, .external_lex_state = 2}, - [1130] = {.lex_state = 609}, - [1131] = {.lex_state = 580}, - [1132] = {.lex_state = 580}, - [1133] = {.lex_state = 609}, - [1134] = {.lex_state = 580}, - [1135] = {.lex_state = 51, .external_lex_state = 2}, - [1136] = {.lex_state = 580}, - [1137] = {.lex_state = 609}, - [1138] = {.lex_state = 580}, - [1139] = {.lex_state = 580}, - [1140] = {.lex_state = 51, .external_lex_state = 2}, - [1141] = {.lex_state = 580}, - [1142] = {.lex_state = 580}, - [1143] = {.lex_state = 580}, - [1144] = {.lex_state = 580}, - [1145] = {.lex_state = 48, .external_lex_state = 2}, - [1146] = {.lex_state = 580}, - [1147] = {.lex_state = 580}, - [1148] = {.lex_state = 580}, - [1149] = {.lex_state = 580}, - [1150] = {.lex_state = 580}, - [1151] = {.lex_state = 580}, - [1152] = {.lex_state = 580}, - [1153] = {.lex_state = 580}, - [1154] = {.lex_state = 580}, - [1155] = {.lex_state = 580}, - [1156] = {.lex_state = 580}, - [1157] = {.lex_state = 580}, - [1158] = {.lex_state = 580}, - [1159] = {.lex_state = 580}, - [1160] = {.lex_state = 580}, - [1161] = {.lex_state = 580}, - [1162] = {.lex_state = 611}, - [1163] = {.lex_state = 611}, - [1164] = {.lex_state = 580}, - [1165] = {.lex_state = 580}, - [1166] = {.lex_state = 580}, - [1167] = {.lex_state = 580}, - [1168] = {.lex_state = 580}, - [1169] = {.lex_state = 580}, - [1170] = {.lex_state = 580}, - [1171] = {.lex_state = 580}, - [1172] = {.lex_state = 580}, - [1173] = {.lex_state = 580}, - [1174] = {.lex_state = 580}, - [1175] = {.lex_state = 580}, - [1176] = {.lex_state = 580}, - [1177] = {.lex_state = 580}, - [1178] = {.lex_state = 580}, - [1179] = {.lex_state = 580}, - [1180] = {.lex_state = 580}, - [1181] = {.lex_state = 580}, - [1182] = {.lex_state = 580}, - [1183] = {.lex_state = 580}, - [1184] = {.lex_state = 47, .external_lex_state = 2}, - [1185] = {.lex_state = 580}, - [1186] = {.lex_state = 47, .external_lex_state = 2}, - [1187] = {.lex_state = 580}, - [1188] = {.lex_state = 580}, - [1189] = {.lex_state = 580}, - [1190] = {.lex_state = 580}, - [1191] = {.lex_state = 580}, - [1192] = {.lex_state = 580}, - [1193] = {.lex_state = 580}, - [1194] = {.lex_state = 580}, - [1195] = {.lex_state = 580}, - [1196] = {.lex_state = 580}, - [1197] = {.lex_state = 580}, - [1198] = {.lex_state = 580}, - [1199] = {.lex_state = 580}, - [1200] = {.lex_state = 580}, - [1201] = {.lex_state = 580}, - [1202] = {.lex_state = 580}, - [1203] = {.lex_state = 580}, - [1204] = {.lex_state = 580}, - [1205] = {.lex_state = 580}, - [1206] = {.lex_state = 580}, - [1207] = {.lex_state = 580}, - [1208] = {.lex_state = 580}, - [1209] = {.lex_state = 580}, - [1210] = {.lex_state = 580}, - [1211] = {.lex_state = 580}, - [1212] = {.lex_state = 580}, - [1213] = {.lex_state = 580}, - [1214] = {.lex_state = 580}, - [1215] = {.lex_state = 580}, - [1216] = {.lex_state = 580}, - [1217] = {.lex_state = 580}, - [1218] = {.lex_state = 609}, - [1219] = {.lex_state = 580}, - [1220] = {.lex_state = 580}, - [1221] = {.lex_state = 580}, - [1222] = {.lex_state = 580}, - [1223] = {.lex_state = 580}, - [1224] = {.lex_state = 580}, - [1225] = {.lex_state = 580}, - [1226] = {.lex_state = 580}, - [1227] = {.lex_state = 47, .external_lex_state = 2}, - [1228] = {.lex_state = 580}, - [1229] = {.lex_state = 580}, - [1230] = {.lex_state = 580}, - [1231] = {.lex_state = 580}, - [1232] = {.lex_state = 580}, - [1233] = {.lex_state = 580}, - [1234] = {.lex_state = 580}, - [1235] = {.lex_state = 51, .external_lex_state = 2}, - [1236] = {.lex_state = 580}, - [1237] = {.lex_state = 47, .external_lex_state = 2}, - [1238] = {.lex_state = 580}, - [1239] = {.lex_state = 580}, - [1240] = {.lex_state = 580}, - [1241] = {.lex_state = 580}, - [1242] = {.lex_state = 580}, - [1243] = {.lex_state = 580}, - [1244] = {.lex_state = 580}, - [1245] = {.lex_state = 580}, - [1246] = {.lex_state = 580}, - [1247] = {.lex_state = 580}, - [1248] = {.lex_state = 580}, - [1249] = {.lex_state = 580}, - [1250] = {.lex_state = 580}, - [1251] = {.lex_state = 580}, - [1252] = {.lex_state = 580}, - [1253] = {.lex_state = 611}, - [1254] = {.lex_state = 611}, - [1255] = {.lex_state = 580}, - [1256] = {.lex_state = 51, .external_lex_state = 2}, - [1257] = {.lex_state = 580}, - [1258] = {.lex_state = 580}, - [1259] = {.lex_state = 51, .external_lex_state = 2}, - [1260] = {.lex_state = 611}, - [1261] = {.lex_state = 580}, - [1262] = {.lex_state = 580}, - [1263] = {.lex_state = 580}, - [1264] = {.lex_state = 580}, - [1265] = {.lex_state = 580}, - [1266] = {.lex_state = 580}, - [1267] = {.lex_state = 580}, - [1268] = {.lex_state = 580}, - [1269] = {.lex_state = 580}, - [1270] = {.lex_state = 580}, - [1271] = {.lex_state = 580}, - [1272] = {.lex_state = 51, .external_lex_state = 2}, - [1273] = {.lex_state = 580}, - [1274] = {.lex_state = 580}, - [1275] = {.lex_state = 580}, - [1276] = {.lex_state = 580}, - [1277] = {.lex_state = 580}, - [1278] = {.lex_state = 580}, - [1279] = {.lex_state = 580}, - [1280] = {.lex_state = 580}, - [1281] = {.lex_state = 580}, - [1282] = {.lex_state = 580}, - [1283] = {.lex_state = 580}, - [1284] = {.lex_state = 580}, - [1285] = {.lex_state = 51, .external_lex_state = 2}, - [1286] = {.lex_state = 51, .external_lex_state = 2}, - [1287] = {.lex_state = 51, .external_lex_state = 2}, - [1288] = {.lex_state = 580}, - [1289] = {.lex_state = 580}, - [1290] = {.lex_state = 580}, - [1291] = {.lex_state = 580}, - [1292] = {.lex_state = 626, .external_lex_state = 2}, - [1293] = {.lex_state = 580}, - [1294] = {.lex_state = 580}, - [1295] = {.lex_state = 580}, - [1296] = {.lex_state = 580}, - [1297] = {.lex_state = 46, .external_lex_state = 2}, - [1298] = {.lex_state = 580}, - [1299] = {.lex_state = 46, .external_lex_state = 2}, - [1300] = {.lex_state = 580}, - [1301] = {.lex_state = 580}, - [1302] = {.lex_state = 580}, - [1303] = {.lex_state = 580}, - [1304] = {.lex_state = 580}, - [1305] = {.lex_state = 580}, - [1306] = {.lex_state = 580}, - [1307] = {.lex_state = 580}, - [1308] = {.lex_state = 580}, - [1309] = {.lex_state = 580}, - [1310] = {.lex_state = 580}, - [1311] = {.lex_state = 580}, - [1312] = {.lex_state = 580}, - [1313] = {.lex_state = 580}, - [1314] = {.lex_state = 580}, - [1315] = {.lex_state = 580}, - [1316] = {.lex_state = 31, .external_lex_state = 2}, - [1317] = {.lex_state = 580}, - [1318] = {.lex_state = 580}, - [1319] = {.lex_state = 580}, - [1320] = {.lex_state = 580}, - [1321] = {.lex_state = 580}, - [1322] = {.lex_state = 580}, - [1323] = {.lex_state = 580}, - [1324] = {.lex_state = 580}, - [1325] = {.lex_state = 580}, - [1326] = {.lex_state = 580}, - [1327] = {.lex_state = 580}, - [1328] = {.lex_state = 580}, - [1329] = {.lex_state = 46, .external_lex_state = 2}, - [1330] = {.lex_state = 580}, - [1331] = {.lex_state = 580}, - [1332] = {.lex_state = 580}, - [1333] = {.lex_state = 580}, - [1334] = {.lex_state = 580}, - [1335] = {.lex_state = 626, .external_lex_state = 2}, - [1336] = {.lex_state = 580}, - [1337] = {.lex_state = 580}, - [1338] = {.lex_state = 626, .external_lex_state = 2}, - [1339] = {.lex_state = 580}, - [1340] = {.lex_state = 580}, - [1341] = {.lex_state = 580}, - [1342] = {.lex_state = 580}, - [1343] = {.lex_state = 580}, - [1344] = {.lex_state = 580}, - [1345] = {.lex_state = 580}, - [1346] = {.lex_state = 580}, - [1347] = {.lex_state = 580}, - [1348] = {.lex_state = 580}, - [1349] = {.lex_state = 580}, - [1350] = {.lex_state = 31, .external_lex_state = 2}, - [1351] = {.lex_state = 46, .external_lex_state = 2}, - [1352] = {.lex_state = 580}, - [1353] = {.lex_state = 626, .external_lex_state = 2}, - [1354] = {.lex_state = 580}, - [1355] = {.lex_state = 580}, - [1356] = {.lex_state = 580}, - [1357] = {.lex_state = 580}, - [1358] = {.lex_state = 580}, - [1359] = {.lex_state = 580}, - [1360] = {.lex_state = 580}, - [1361] = {.lex_state = 580}, - [1362] = {.lex_state = 580}, + [915] = {.lex_state = 579}, + [916] = {.lex_state = 608}, + [917] = {.lex_state = 42, .external_lex_state = 2}, + [918] = {.lex_state = 42, .external_lex_state = 2}, + [919] = {.lex_state = 42, .external_lex_state = 2}, + [920] = {.lex_state = 579}, + [921] = {.lex_state = 42, .external_lex_state = 2}, + [922] = {.lex_state = 42, .external_lex_state = 2}, + [923] = {.lex_state = 579}, + [924] = {.lex_state = 42, .external_lex_state = 2}, + [925] = {.lex_state = 42, .external_lex_state = 2}, + [926] = {.lex_state = 42, .external_lex_state = 2}, + [927] = {.lex_state = 42, .external_lex_state = 2}, + [928] = {.lex_state = 579}, + [929] = {.lex_state = 579}, + [930] = {.lex_state = 579}, + [931] = {.lex_state = 579}, + [932] = {.lex_state = 579}, + [933] = {.lex_state = 579}, + [934] = {.lex_state = 608}, + [935] = {.lex_state = 579}, + [936] = {.lex_state = 579}, + [937] = {.lex_state = 579}, + [938] = {.lex_state = 579}, + [939] = {.lex_state = 579}, + [940] = {.lex_state = 579}, + [941] = {.lex_state = 579}, + [942] = {.lex_state = 579}, + [943] = {.lex_state = 579}, + [944] = {.lex_state = 579}, + [945] = {.lex_state = 579}, + [946] = {.lex_state = 608}, + [947] = {.lex_state = 579}, + [948] = {.lex_state = 579}, + [949] = {.lex_state = 579}, + [950] = {.lex_state = 608}, + [951] = {.lex_state = 579}, + [952] = {.lex_state = 579}, + [953] = {.lex_state = 579}, + [954] = {.lex_state = 608}, + [955] = {.lex_state = 579}, + [956] = {.lex_state = 579}, + [957] = {.lex_state = 579}, + [958] = {.lex_state = 579}, + [959] = {.lex_state = 33, .external_lex_state = 2}, + [960] = {.lex_state = 579}, + [961] = {.lex_state = 608}, + [962] = {.lex_state = 579}, + [963] = {.lex_state = 579}, + [964] = {.lex_state = 579}, + [965] = {.lex_state = 579}, + [966] = {.lex_state = 579}, + [967] = {.lex_state = 608}, + [968] = {.lex_state = 608}, + [969] = {.lex_state = 579}, + [970] = {.lex_state = 608}, + [971] = {.lex_state = 579}, + [972] = {.lex_state = 579}, + [973] = {.lex_state = 579}, + [974] = {.lex_state = 51, .external_lex_state = 2}, + [975] = {.lex_state = 606}, + [976] = {.lex_state = 579}, + [977] = {.lex_state = 608}, + [978] = {.lex_state = 579}, + [979] = {.lex_state = 579}, + [980] = {.lex_state = 608}, + [981] = {.lex_state = 579}, + [982] = {.lex_state = 579}, + [983] = {.lex_state = 606}, + [984] = {.lex_state = 579}, + [985] = {.lex_state = 608}, + [986] = {.lex_state = 579}, + [987] = {.lex_state = 51, .external_lex_state = 2}, + [988] = {.lex_state = 608}, + [989] = {.lex_state = 51, .external_lex_state = 2}, + [990] = {.lex_state = 579}, + [991] = {.lex_state = 579}, + [992] = {.lex_state = 579}, + [993] = {.lex_state = 579}, + [994] = {.lex_state = 608}, + [995] = {.lex_state = 579}, + [996] = {.lex_state = 625, .external_lex_state = 2}, + [997] = {.lex_state = 579}, + [998] = {.lex_state = 579}, + [999] = {.lex_state = 608}, + [1000] = {.lex_state = 579}, + [1001] = {.lex_state = 42, .external_lex_state = 2}, + [1002] = {.lex_state = 42, .external_lex_state = 2}, + [1003] = {.lex_state = 42, .external_lex_state = 2}, + [1004] = {.lex_state = 579}, + [1005] = {.lex_state = 579}, + [1006] = {.lex_state = 579}, + [1007] = {.lex_state = 48, .external_lex_state = 2}, + [1008] = {.lex_state = 579}, + [1009] = {.lex_state = 579}, + [1010] = {.lex_state = 579}, + [1011] = {.lex_state = 579}, + [1012] = {.lex_state = 579}, + [1013] = {.lex_state = 579}, + [1014] = {.lex_state = 579}, + [1015] = {.lex_state = 579}, + [1016] = {.lex_state = 579}, + [1017] = {.lex_state = 579}, + [1018] = {.lex_state = 579}, + [1019] = {.lex_state = 579}, + [1020] = {.lex_state = 579}, + [1021] = {.lex_state = 579}, + [1022] = {.lex_state = 608}, + [1023] = {.lex_state = 579}, + [1024] = {.lex_state = 579}, + [1025] = {.lex_state = 579}, + [1026] = {.lex_state = 579}, + [1027] = {.lex_state = 579}, + [1028] = {.lex_state = 579}, + [1029] = {.lex_state = 579}, + [1030] = {.lex_state = 579}, + [1031] = {.lex_state = 625, .external_lex_state = 2}, + [1032] = {.lex_state = 579}, + [1033] = {.lex_state = 579}, + [1034] = {.lex_state = 579}, + [1035] = {.lex_state = 579}, + [1036] = {.lex_state = 579}, + [1037] = {.lex_state = 579}, + [1038] = {.lex_state = 579}, + [1039] = {.lex_state = 608}, + [1040] = {.lex_state = 579}, + [1041] = {.lex_state = 579}, + [1042] = {.lex_state = 579}, + [1043] = {.lex_state = 579}, + [1044] = {.lex_state = 579}, + [1045] = {.lex_state = 608}, + [1046] = {.lex_state = 579}, + [1047] = {.lex_state = 48, .external_lex_state = 2}, + [1048] = {.lex_state = 579}, + [1049] = {.lex_state = 579}, + [1050] = {.lex_state = 579}, + [1051] = {.lex_state = 579}, + [1052] = {.lex_state = 579}, + [1053] = {.lex_state = 579}, + [1054] = {.lex_state = 579}, + [1055] = {.lex_state = 579}, + [1056] = {.lex_state = 579}, + [1057] = {.lex_state = 579}, + [1058] = {.lex_state = 579}, + [1059] = {.lex_state = 579}, + [1060] = {.lex_state = 579}, + [1061] = {.lex_state = 579}, + [1062] = {.lex_state = 579}, + [1063] = {.lex_state = 579}, + [1064] = {.lex_state = 579}, + [1065] = {.lex_state = 48, .external_lex_state = 2}, + [1066] = {.lex_state = 579}, + [1067] = {.lex_state = 579}, + [1068] = {.lex_state = 579}, + [1069] = {.lex_state = 579}, + [1070] = {.lex_state = 608}, + [1071] = {.lex_state = 579}, + [1072] = {.lex_state = 608}, + [1073] = {.lex_state = 579}, + [1074] = {.lex_state = 579}, + [1075] = {.lex_state = 579}, + [1076] = {.lex_state = 579}, + [1077] = {.lex_state = 608}, + [1078] = {.lex_state = 625, .external_lex_state = 2}, + [1079] = {.lex_state = 608}, + [1080] = {.lex_state = 602}, + [1081] = {.lex_state = 579}, + [1082] = {.lex_state = 579}, + [1083] = {.lex_state = 608}, + [1084] = {.lex_state = 608}, + [1085] = {.lex_state = 579}, + [1086] = {.lex_state = 610}, + [1087] = {.lex_state = 579}, + [1088] = {.lex_state = 610}, + [1089] = {.lex_state = 579}, + [1090] = {.lex_state = 610}, + [1091] = {.lex_state = 579}, + [1092] = {.lex_state = 610}, + [1093] = {.lex_state = 42, .external_lex_state = 2}, + [1094] = {.lex_state = 579}, + [1095] = {.lex_state = 42, .external_lex_state = 2}, + [1096] = {.lex_state = 42, .external_lex_state = 2}, + [1097] = {.lex_state = 608}, + [1098] = {.lex_state = 579}, + [1099] = {.lex_state = 579}, + [1100] = {.lex_state = 579}, + [1101] = {.lex_state = 579}, + [1102] = {.lex_state = 579}, + [1103] = {.lex_state = 579}, + [1104] = {.lex_state = 579}, + [1105] = {.lex_state = 579}, + [1106] = {.lex_state = 579}, + [1107] = {.lex_state = 51, .external_lex_state = 2}, + [1108] = {.lex_state = 579}, + [1109] = {.lex_state = 579}, + [1110] = {.lex_state = 579}, + [1111] = {.lex_state = 579}, + [1112] = {.lex_state = 51, .external_lex_state = 2}, + [1113] = {.lex_state = 579}, + [1114] = {.lex_state = 579}, + [1115] = {.lex_state = 579}, + [1116] = {.lex_state = 579}, + [1117] = {.lex_state = 579}, + [1118] = {.lex_state = 579}, + [1119] = {.lex_state = 579}, + [1120] = {.lex_state = 579}, + [1121] = {.lex_state = 579}, + [1122] = {.lex_state = 608}, + [1123] = {.lex_state = 579}, + [1124] = {.lex_state = 579}, + [1125] = {.lex_state = 579}, + [1126] = {.lex_state = 579}, + [1127] = {.lex_state = 579}, + [1128] = {.lex_state = 579}, + [1129] = {.lex_state = 579}, + [1130] = {.lex_state = 608}, + [1131] = {.lex_state = 579}, + [1132] = {.lex_state = 579}, + [1133] = {.lex_state = 579}, + [1134] = {.lex_state = 579}, + [1135] = {.lex_state = 579}, + [1136] = {.lex_state = 579}, + [1137] = {.lex_state = 579}, + [1138] = {.lex_state = 579}, + [1139] = {.lex_state = 579}, + [1140] = {.lex_state = 579}, + [1141] = {.lex_state = 579}, + [1142] = {.lex_state = 579}, + [1143] = {.lex_state = 579}, + [1144] = {.lex_state = 579}, + [1145] = {.lex_state = 579}, + [1146] = {.lex_state = 579}, + [1147] = {.lex_state = 579}, + [1148] = {.lex_state = 579}, + [1149] = {.lex_state = 579}, + [1150] = {.lex_state = 579}, + [1151] = {.lex_state = 579}, + [1152] = {.lex_state = 579}, + [1153] = {.lex_state = 579}, + [1154] = {.lex_state = 579}, + [1155] = {.lex_state = 579}, + [1156] = {.lex_state = 579}, + [1157] = {.lex_state = 579}, + [1158] = {.lex_state = 579}, + [1159] = {.lex_state = 579}, + [1160] = {.lex_state = 579}, + [1161] = {.lex_state = 579}, + [1162] = {.lex_state = 47, .external_lex_state = 2}, + [1163] = {.lex_state = 579}, + [1164] = {.lex_state = 579}, + [1165] = {.lex_state = 47, .external_lex_state = 2}, + [1166] = {.lex_state = 579}, + [1167] = {.lex_state = 579}, + [1168] = {.lex_state = 579}, + [1169] = {.lex_state = 579}, + [1170] = {.lex_state = 579}, + [1171] = {.lex_state = 579}, + [1172] = {.lex_state = 579}, + [1173] = {.lex_state = 579}, + [1174] = {.lex_state = 579}, + [1175] = {.lex_state = 579}, + [1176] = {.lex_state = 579}, + [1177] = {.lex_state = 579}, + [1178] = {.lex_state = 579}, + [1179] = {.lex_state = 579}, + [1180] = {.lex_state = 579}, + [1181] = {.lex_state = 579}, + [1182] = {.lex_state = 579}, + [1183] = {.lex_state = 579}, + [1184] = {.lex_state = 579}, + [1185] = {.lex_state = 579}, + [1186] = {.lex_state = 579}, + [1187] = {.lex_state = 579}, + [1188] = {.lex_state = 579}, + [1189] = {.lex_state = 579}, + [1190] = {.lex_state = 579}, + [1191] = {.lex_state = 579}, + [1192] = {.lex_state = 579}, + [1193] = {.lex_state = 579}, + [1194] = {.lex_state = 47, .external_lex_state = 2}, + [1195] = {.lex_state = 579}, + [1196] = {.lex_state = 579}, + [1197] = {.lex_state = 579}, + [1198] = {.lex_state = 579}, + [1199] = {.lex_state = 579}, + [1200] = {.lex_state = 579}, + [1201] = {.lex_state = 579}, + [1202] = {.lex_state = 610}, + [1203] = {.lex_state = 579}, + [1204] = {.lex_state = 610}, + [1205] = {.lex_state = 579}, + [1206] = {.lex_state = 47, .external_lex_state = 2}, + [1207] = {.lex_state = 579}, + [1208] = {.lex_state = 579}, + [1209] = {.lex_state = 579}, + [1210] = {.lex_state = 579}, + [1211] = {.lex_state = 579}, + [1212] = {.lex_state = 579}, + [1213] = {.lex_state = 579}, + [1214] = {.lex_state = 579}, + [1215] = {.lex_state = 579}, + [1216] = {.lex_state = 579}, + [1217] = {.lex_state = 579}, + [1218] = {.lex_state = 579}, + [1219] = {.lex_state = 579}, + [1220] = {.lex_state = 579}, + [1221] = {.lex_state = 579}, + [1222] = {.lex_state = 579}, + [1223] = {.lex_state = 579}, + [1224] = {.lex_state = 579}, + [1225] = {.lex_state = 579}, + [1226] = {.lex_state = 579}, + [1227] = {.lex_state = 579}, + [1228] = {.lex_state = 579}, + [1229] = {.lex_state = 579}, + [1230] = {.lex_state = 579}, + [1231] = {.lex_state = 579}, + [1232] = {.lex_state = 579}, + [1233] = {.lex_state = 579}, + [1234] = {.lex_state = 579}, + [1235] = {.lex_state = 579}, + [1236] = {.lex_state = 579}, + [1237] = {.lex_state = 579}, + [1238] = {.lex_state = 579}, + [1239] = {.lex_state = 579}, + [1240] = {.lex_state = 579}, + [1241] = {.lex_state = 579}, + [1242] = {.lex_state = 579}, + [1243] = {.lex_state = 579}, + [1244] = {.lex_state = 579}, + [1245] = {.lex_state = 579}, + [1246] = {.lex_state = 579}, + [1247] = {.lex_state = 579}, + [1248] = {.lex_state = 579}, + [1249] = {.lex_state = 579}, + [1250] = {.lex_state = 579}, + [1251] = {.lex_state = 579}, + [1252] = {.lex_state = 579}, + [1253] = {.lex_state = 579}, + [1254] = {.lex_state = 51, .external_lex_state = 2}, + [1255] = {.lex_state = 51, .external_lex_state = 2}, + [1256] = {.lex_state = 579}, + [1257] = {.lex_state = 579}, + [1258] = {.lex_state = 579}, + [1259] = {.lex_state = 579}, + [1260] = {.lex_state = 579}, + [1261] = {.lex_state = 579}, + [1262] = {.lex_state = 579}, + [1263] = {.lex_state = 579}, + [1264] = {.lex_state = 579}, + [1265] = {.lex_state = 579}, + [1266] = {.lex_state = 579}, + [1267] = {.lex_state = 608}, + [1268] = {.lex_state = 579}, + [1269] = {.lex_state = 579}, + [1270] = {.lex_state = 579}, + [1271] = {.lex_state = 579}, + [1272] = {.lex_state = 579}, + [1273] = {.lex_state = 610}, + [1274] = {.lex_state = 610}, + [1275] = {.lex_state = 610}, + [1276] = {.lex_state = 51, .external_lex_state = 2}, + [1277] = {.lex_state = 51, .external_lex_state = 2}, + [1278] = {.lex_state = 51, .external_lex_state = 2}, + [1279] = {.lex_state = 579}, + [1280] = {.lex_state = 51, .external_lex_state = 2}, + [1281] = {.lex_state = 579}, + [1282] = {.lex_state = 51, .external_lex_state = 2}, + [1283] = {.lex_state = 579}, + [1284] = {.lex_state = 579}, + [1285] = {.lex_state = 579}, + [1286] = {.lex_state = 579}, + [1287] = {.lex_state = 579}, + [1288] = {.lex_state = 579}, + [1289] = {.lex_state = 579}, + [1290] = {.lex_state = 31, .external_lex_state = 2}, + [1291] = {.lex_state = 46, .external_lex_state = 2}, + [1292] = {.lex_state = 625, .external_lex_state = 2}, + [1293] = {.lex_state = 579}, + [1294] = {.lex_state = 579}, + [1295] = {.lex_state = 579}, + [1296] = {.lex_state = 579}, + [1297] = {.lex_state = 579}, + [1298] = {.lex_state = 579}, + [1299] = {.lex_state = 579}, + [1300] = {.lex_state = 579}, + [1301] = {.lex_state = 579}, + [1302] = {.lex_state = 579}, + [1303] = {.lex_state = 579}, + [1304] = {.lex_state = 579}, + [1305] = {.lex_state = 579}, + [1306] = {.lex_state = 579}, + [1307] = {.lex_state = 579}, + [1308] = {.lex_state = 579}, + [1309] = {.lex_state = 31, .external_lex_state = 2}, + [1310] = {.lex_state = 579}, + [1311] = {.lex_state = 579}, + [1312] = {.lex_state = 579}, + [1313] = {.lex_state = 579}, + [1314] = {.lex_state = 625, .external_lex_state = 2}, + [1315] = {.lex_state = 579}, + [1316] = {.lex_state = 579}, + [1317] = {.lex_state = 579}, + [1318] = {.lex_state = 579}, + [1319] = {.lex_state = 579}, + [1320] = {.lex_state = 579}, + [1321] = {.lex_state = 579}, + [1322] = {.lex_state = 579}, + [1323] = {.lex_state = 579}, + [1324] = {.lex_state = 579}, + [1325] = {.lex_state = 579}, + [1326] = {.lex_state = 579}, + [1327] = {.lex_state = 579}, + [1328] = {.lex_state = 579}, + [1329] = {.lex_state = 579}, + [1330] = {.lex_state = 46, .external_lex_state = 2}, + [1331] = {.lex_state = 579}, + [1332] = {.lex_state = 579}, + [1333] = {.lex_state = 579}, + [1334] = {.lex_state = 579}, + [1335] = {.lex_state = 46, .external_lex_state = 2}, + [1336] = {.lex_state = 579}, + [1337] = {.lex_state = 579}, + [1338] = {.lex_state = 579}, + [1339] = {.lex_state = 579}, + [1340] = {.lex_state = 579}, + [1341] = {.lex_state = 579}, + [1342] = {.lex_state = 46, .external_lex_state = 2}, + [1343] = {.lex_state = 579}, + [1344] = {.lex_state = 579}, + [1345] = {.lex_state = 579}, + [1346] = {.lex_state = 579}, + [1347] = {.lex_state = 579}, + [1348] = {.lex_state = 579}, + [1349] = {.lex_state = 579}, + [1350] = {.lex_state = 579}, + [1351] = {.lex_state = 579}, + [1352] = {.lex_state = 579}, + [1353] = {.lex_state = 579}, + [1354] = {.lex_state = 579}, + [1355] = {.lex_state = 579}, + [1356] = {.lex_state = 579}, + [1357] = {.lex_state = 579}, + [1358] = {.lex_state = 31, .external_lex_state = 2}, + [1359] = {.lex_state = 579}, + [1360] = {.lex_state = 579}, + [1361] = {.lex_state = 579}, + [1362] = {.lex_state = 579}, [1363] = {.lex_state = 31, .external_lex_state = 2}, - [1364] = {.lex_state = 580}, - [1365] = {.lex_state = 580}, - [1366] = {.lex_state = 31, .external_lex_state = 2}, - [1367] = {.lex_state = 580}, - [1368] = {.lex_state = 580}, - [1369] = {.lex_state = 580}, - [1370] = {.lex_state = 580}, - [1371] = {.lex_state = 626, .external_lex_state = 2}, - [1372] = {.lex_state = 626, .external_lex_state = 2}, - [1373] = {.lex_state = 47, .external_lex_state = 2}, - [1374] = {.lex_state = 31, .external_lex_state = 2}, - [1375] = {.lex_state = 626, .external_lex_state = 2}, - [1376] = {.lex_state = 634, .external_lex_state = 2}, - [1377] = {.lex_state = 626, .external_lex_state = 2}, - [1378] = {.lex_state = 626, .external_lex_state = 2}, - [1379] = {.lex_state = 626, .external_lex_state = 2}, + [1364] = {.lex_state = 579}, + [1365] = {.lex_state = 625, .external_lex_state = 2}, + [1366] = {.lex_state = 579}, + [1367] = {.lex_state = 625, .external_lex_state = 2}, + [1368] = {.lex_state = 579}, + [1369] = {.lex_state = 579}, + [1370] = {.lex_state = 579}, + [1371] = {.lex_state = 625, .external_lex_state = 2}, + [1372] = {.lex_state = 625, .external_lex_state = 2}, + [1373] = {.lex_state = 625, .external_lex_state = 2}, + [1374] = {.lex_state = 625, .external_lex_state = 2}, + [1375] = {.lex_state = 625, .external_lex_state = 2}, + [1376] = {.lex_state = 625, .external_lex_state = 2}, + [1377] = {.lex_state = 625, .external_lex_state = 2}, + [1378] = {.lex_state = 625, .external_lex_state = 2}, + [1379] = {.lex_state = 31, .external_lex_state = 2}, [1380] = {.lex_state = 172, .external_lex_state = 2}, - [1381] = {.lex_state = 626, .external_lex_state = 2}, - [1382] = {.lex_state = 626, .external_lex_state = 2}, - [1383] = {.lex_state = 46, .external_lex_state = 2}, - [1384] = {.lex_state = 626, .external_lex_state = 2}, - [1385] = {.lex_state = 626, .external_lex_state = 2}, - [1386] = {.lex_state = 173, .external_lex_state = 2}, - [1387] = {.lex_state = 626, .external_lex_state = 2}, - [1388] = {.lex_state = 626, .external_lex_state = 2}, - [1389] = {.lex_state = 626, .external_lex_state = 2}, - [1390] = {.lex_state = 31, .external_lex_state = 2}, - [1391] = {.lex_state = 173, .external_lex_state = 2}, - [1392] = {.lex_state = 626, .external_lex_state = 2}, + [1381] = {.lex_state = 47, .external_lex_state = 2}, + [1382] = {.lex_state = 633, .external_lex_state = 2}, + [1383] = {.lex_state = 173, .external_lex_state = 2}, + [1384] = {.lex_state = 173, .external_lex_state = 2}, + [1385] = {.lex_state = 31, .external_lex_state = 2}, + [1386] = {.lex_state = 625, .external_lex_state = 2}, + [1387] = {.lex_state = 625, .external_lex_state = 2}, + [1388] = {.lex_state = 625, .external_lex_state = 2}, + [1389] = {.lex_state = 46, .external_lex_state = 2}, + [1390] = {.lex_state = 625, .external_lex_state = 2}, + [1391] = {.lex_state = 625, .external_lex_state = 2}, + [1392] = {.lex_state = 625, .external_lex_state = 2}, [1393] = {.lex_state = 46, .external_lex_state = 2}, - [1394] = {.lex_state = 46, .external_lex_state = 2}, - [1395] = {.lex_state = 626, .external_lex_state = 2}, - [1396] = {.lex_state = 626, .external_lex_state = 2}, - [1397] = {.lex_state = 146, .external_lex_state = 2}, - [1398] = {.lex_state = 47, .external_lex_state = 2}, - [1399] = {.lex_state = 626, .external_lex_state = 2}, - [1400] = {.lex_state = 626, .external_lex_state = 2}, - [1401] = {.lex_state = 36, .external_lex_state = 2}, - [1402] = {.lex_state = 36, .external_lex_state = 2}, - [1403] = {.lex_state = 146, .external_lex_state = 2}, - [1404] = {.lex_state = 146, .external_lex_state = 2}, + [1394] = {.lex_state = 625, .external_lex_state = 2}, + [1395] = {.lex_state = 625, .external_lex_state = 2}, + [1396] = {.lex_state = 46, .external_lex_state = 2}, + [1397] = {.lex_state = 625, .external_lex_state = 2}, + [1398] = {.lex_state = 146, .external_lex_state = 2}, + [1399] = {.lex_state = 146, .external_lex_state = 2}, + [1400] = {.lex_state = 146, .external_lex_state = 2}, + [1401] = {.lex_state = 47, .external_lex_state = 2}, + [1402] = {.lex_state = 146, .external_lex_state = 2}, + [1403] = {.lex_state = 625, .external_lex_state = 2}, + [1404] = {.lex_state = 36, .external_lex_state = 2}, [1405] = {.lex_state = 47, .external_lex_state = 2}, - [1406] = {.lex_state = 146, .external_lex_state = 2}, - [1407] = {.lex_state = 47, .external_lex_state = 2}, - [1408] = {.lex_state = 146, .external_lex_state = 2}, + [1406] = {.lex_state = 47, .external_lex_state = 2}, + [1407] = {.lex_state = 146, .external_lex_state = 2}, + [1408] = {.lex_state = 36, .external_lex_state = 2}, [1409] = {.lex_state = 35, .external_lex_state = 2}, [1410] = {.lex_state = 35, .external_lex_state = 2}, - [1411] = {.lex_state = 584}, - [1412] = {.lex_state = 35, .external_lex_state = 2}, - [1413] = {.lex_state = 586}, + [1411] = {.lex_state = 583}, + [1412] = {.lex_state = 585}, + [1413] = {.lex_state = 35, .external_lex_state = 2}, [1414] = {.lex_state = 35, .external_lex_state = 2}, - [1415] = {.lex_state = 584}, - [1416] = {.lex_state = 36, .external_lex_state = 2}, - [1417] = {.lex_state = 35, .external_lex_state = 2}, - [1418] = {.lex_state = 586}, - [1419] = {.lex_state = 36, .external_lex_state = 2}, - [1420] = {.lex_state = 35, .external_lex_state = 2}, - [1421] = {.lex_state = 588}, - [1422] = {.lex_state = 592}, - [1423] = {.lex_state = 48, .external_lex_state = 2}, - [1424] = {.lex_state = 586}, - [1425] = {.lex_state = 586}, - [1426] = {.lex_state = 626, .external_lex_state = 2}, - [1427] = {.lex_state = 626, .external_lex_state = 2}, - [1428] = {.lex_state = 592}, - [1429] = {.lex_state = 588}, - [1430] = {.lex_state = 594}, - [1431] = {.lex_state = 596}, - [1432] = {.lex_state = 594}, - [1433] = {.lex_state = 596}, - [1434] = {.lex_state = 156, .external_lex_state = 2}, - [1435] = {.lex_state = 156, .external_lex_state = 2}, - [1436] = {.lex_state = 594}, - [1437] = {.lex_state = 596}, - [1438] = {.lex_state = 596}, - [1439] = {.lex_state = 596}, - [1440] = {.lex_state = 48, .external_lex_state = 2}, - [1441] = {.lex_state = 598}, - [1442] = {.lex_state = 594}, + [1415] = {.lex_state = 35, .external_lex_state = 2}, + [1416] = {.lex_state = 585}, + [1417] = {.lex_state = 36, .external_lex_state = 2}, + [1418] = {.lex_state = 583}, + [1419] = {.lex_state = 625, .external_lex_state = 2}, + [1420] = {.lex_state = 585}, + [1421] = {.lex_state = 585}, + [1422] = {.lex_state = 591}, + [1423] = {.lex_state = 587}, + [1424] = {.lex_state = 35, .external_lex_state = 2}, + [1425] = {.lex_state = 48, .external_lex_state = 2}, + [1426] = {.lex_state = 36, .external_lex_state = 2}, + [1427] = {.lex_state = 625, .external_lex_state = 2}, + [1428] = {.lex_state = 591}, + [1429] = {.lex_state = 593}, + [1430] = {.lex_state = 587}, + [1431] = {.lex_state = 593}, + [1432] = {.lex_state = 595}, + [1433] = {.lex_state = 593}, + [1434] = {.lex_state = 48, .external_lex_state = 2}, + [1435] = {.lex_state = 595}, + [1436] = {.lex_state = 589}, + [1437] = {.lex_state = 48, .external_lex_state = 2}, + [1438] = {.lex_state = 156, .external_lex_state = 2}, + [1439] = {.lex_state = 156, .external_lex_state = 2}, + [1440] = {.lex_state = 595}, + [1441] = {.lex_state = 595}, + [1442] = {.lex_state = 595}, [1443] = {.lex_state = 48, .external_lex_state = 2}, - [1444] = {.lex_state = 590}, - [1445] = {.lex_state = 48, .external_lex_state = 2}, - [1446] = {.lex_state = 596}, - [1447] = {.lex_state = 598}, - [1448] = {.lex_state = 596}, - [1449] = {.lex_state = 596}, - [1450] = {.lex_state = 590}, - [1451] = {.lex_state = 600}, - [1452] = {.lex_state = 600}, - [1453] = {.lex_state = 602}, - [1454] = {.lex_state = 631, .external_lex_state = 2}, - [1455] = {.lex_state = 602}, - [1456] = {.lex_state = 602}, - [1457] = {.lex_state = 600}, - [1458] = {.lex_state = 602}, - [1459] = {.lex_state = 602}, - [1460] = {.lex_state = 600}, - [1461] = {.lex_state = 631, .external_lex_state = 2}, - [1462] = {.lex_state = 631, .external_lex_state = 2}, - [1463] = {.lex_state = 602}, - [1464] = {.lex_state = 602}, - [1465] = {.lex_state = 606}, - [1466] = {.lex_state = 604}, - [1467] = {.lex_state = 631, .external_lex_state = 2}, - [1468] = {.lex_state = 602}, - [1469] = {.lex_state = 580}, - [1470] = {.lex_state = 38, .external_lex_state = 2}, - [1471] = {.lex_state = 602}, - [1472] = {.lex_state = 602}, - [1473] = {.lex_state = 38, .external_lex_state = 2}, - [1474] = {.lex_state = 38, .external_lex_state = 2}, - [1475] = {.lex_state = 147, .external_lex_state = 2}, - [1476] = {.lex_state = 604}, - [1477] = {.lex_state = 147, .external_lex_state = 2}, - [1478] = {.lex_state = 147, .external_lex_state = 2}, + [1444] = {.lex_state = 593}, + [1445] = {.lex_state = 597}, + [1446] = {.lex_state = 595}, + [1447] = {.lex_state = 595}, + [1448] = {.lex_state = 597}, + [1449] = {.lex_state = 599}, + [1450] = {.lex_state = 599}, + [1451] = {.lex_state = 595}, + [1452] = {.lex_state = 589}, + [1453] = {.lex_state = 601}, + [1454] = {.lex_state = 599}, + [1455] = {.lex_state = 601}, + [1456] = {.lex_state = 630, .external_lex_state = 2}, + [1457] = {.lex_state = 630, .external_lex_state = 2}, + [1458] = {.lex_state = 599}, + [1459] = {.lex_state = 601}, + [1460] = {.lex_state = 601}, + [1461] = {.lex_state = 601}, + [1462] = {.lex_state = 601}, + [1463] = {.lex_state = 630, .external_lex_state = 2}, + [1464] = {.lex_state = 603}, + [1465] = {.lex_state = 605}, + [1466] = {.lex_state = 38, .external_lex_state = 2}, + [1467] = {.lex_state = 630, .external_lex_state = 2}, + [1468] = {.lex_state = 601}, + [1469] = {.lex_state = 601}, + [1470] = {.lex_state = 601}, + [1471] = {.lex_state = 38, .external_lex_state = 2}, + [1472] = {.lex_state = 38, .external_lex_state = 2}, + [1473] = {.lex_state = 579}, + [1474] = {.lex_state = 601}, + [1475] = {.lex_state = 603}, + [1476] = {.lex_state = 147, .external_lex_state = 2}, + [1477] = {.lex_state = 607}, + [1478] = {.lex_state = 607}, [1479] = {.lex_state = 147, .external_lex_state = 2}, [1480] = {.lex_state = 147, .external_lex_state = 2}, [1481] = {.lex_state = 147, .external_lex_state = 2}, - [1482] = {.lex_state = 147, .external_lex_state = 2}, + [1482] = {.lex_state = 579}, [1483] = {.lex_state = 147, .external_lex_state = 2}, [1484] = {.lex_state = 147, .external_lex_state = 2}, [1485] = {.lex_state = 147, .external_lex_state = 2}, [1486] = {.lex_state = 147, .external_lex_state = 2}, - [1487] = {.lex_state = 608}, - [1488] = {.lex_state = 608}, - [1489] = {.lex_state = 580}, - [1490] = {.lex_state = 606}, + [1487] = {.lex_state = 147, .external_lex_state = 2}, + [1488] = {.lex_state = 605}, + [1489] = {.lex_state = 147, .external_lex_state = 2}, + [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 = 610}, - [1494] = {.lex_state = 147, .external_lex_state = 2}, - [1495] = {.lex_state = 610}, - [1496] = {.lex_state = 610}, + [1493] = {.lex_state = 609}, + [1494] = {.lex_state = 609}, + [1495] = {.lex_state = 609}, + [1496] = {.lex_state = 607}, [1497] = {.lex_state = 147, .external_lex_state = 2}, - [1498] = {.lex_state = 610}, - [1499] = {.lex_state = 610}, - [1500] = {.lex_state = 610}, - [1501] = {.lex_state = 610}, - [1502] = {.lex_state = 610}, - [1503] = {.lex_state = 610}, - [1504] = {.lex_state = 147, .external_lex_state = 2}, - [1505] = {.lex_state = 41, .external_lex_state = 2}, - [1506] = {.lex_state = 608}, - [1507] = {.lex_state = 610}, - [1508] = {.lex_state = 610}, - [1509] = {.lex_state = 610}, - [1510] = {.lex_state = 610}, - [1511] = {.lex_state = 608}, - [1512] = {.lex_state = 38, .external_lex_state = 2}, - [1513] = {.lex_state = 610}, - [1514] = {.lex_state = 610}, - [1515] = {.lex_state = 610}, - [1516] = {.lex_state = 610}, - [1517] = {.lex_state = 610}, - [1518] = {.lex_state = 610}, - [1519] = {.lex_state = 177, .external_lex_state = 2}, - [1520] = {.lex_state = 610}, - [1521] = {.lex_state = 38, .external_lex_state = 2}, - [1522] = {.lex_state = 580}, + [1498] = {.lex_state = 609}, + [1499] = {.lex_state = 609}, + [1500] = {.lex_state = 607}, + [1501] = {.lex_state = 41, .external_lex_state = 2}, + [1502] = {.lex_state = 609}, + [1503] = {.lex_state = 147, .external_lex_state = 2}, + [1504] = {.lex_state = 609}, + [1505] = {.lex_state = 609}, + [1506] = {.lex_state = 609}, + [1507] = {.lex_state = 609}, + [1508] = {.lex_state = 147, .external_lex_state = 2}, + [1509] = {.lex_state = 609}, + [1510] = {.lex_state = 609}, + [1511] = {.lex_state = 609}, + [1512] = {.lex_state = 609}, + [1513] = {.lex_state = 38, .external_lex_state = 2}, + [1514] = {.lex_state = 609}, + [1515] = {.lex_state = 609}, + [1516] = {.lex_state = 609}, + [1517] = {.lex_state = 579}, + [1518] = {.lex_state = 609}, + [1519] = {.lex_state = 38, .external_lex_state = 2}, + [1520] = {.lex_state = 609}, + [1521] = {.lex_state = 611}, + [1522] = {.lex_state = 38, .external_lex_state = 2}, [1523] = {.lex_state = 38, .external_lex_state = 2}, - [1524] = {.lex_state = 610}, + [1524] = {.lex_state = 611}, [1525] = {.lex_state = 41, .external_lex_state = 2}, - [1526] = {.lex_state = 38, .external_lex_state = 2}, - [1527] = {.lex_state = 38, .external_lex_state = 2}, - [1528] = {.lex_state = 610}, - [1529] = {.lex_state = 612}, - [1530] = {.lex_state = 612}, - [1531] = {.lex_state = 610}, - [1532] = {.lex_state = 38, .external_lex_state = 2}, - [1533] = {.lex_state = 612}, - [1534] = {.lex_state = 610}, - [1535] = {.lex_state = 38, .external_lex_state = 2}, - [1536] = {.lex_state = 610}, - [1537] = {.lex_state = 610}, - [1538] = {.lex_state = 610}, - [1539] = {.lex_state = 38, .external_lex_state = 2}, + [1526] = {.lex_state = 177, .external_lex_state = 2}, + [1527] = {.lex_state = 609}, + [1528] = {.lex_state = 609}, + [1529] = {.lex_state = 609}, + [1530] = {.lex_state = 611}, + [1531] = {.lex_state = 609}, + [1532] = {.lex_state = 609}, + [1533] = {.lex_state = 38, .external_lex_state = 2}, + [1534] = {.lex_state = 38, .external_lex_state = 2}, + [1535] = {.lex_state = 609}, + [1536] = {.lex_state = 38, .external_lex_state = 2}, + [1537] = {.lex_state = 38, .external_lex_state = 2}, + [1538] = {.lex_state = 38, .external_lex_state = 2}, + [1539] = {.lex_state = 609}, [1540] = {.lex_state = 38, .external_lex_state = 2}, - [1541] = {.lex_state = 38, .external_lex_state = 2}, - [1542] = {.lex_state = 580}, - [1543] = {.lex_state = 90}, - [1544] = {.lex_state = 90}, - [1545] = {.lex_state = 90}, - [1546] = {.lex_state = 90}, - [1547] = {.lex_state = 177, .external_lex_state = 2}, + [1541] = {.lex_state = 609}, + [1542] = {.lex_state = 579}, + [1543] = {.lex_state = 177, .external_lex_state = 2}, + [1544] = {.lex_state = 579}, + [1545] = {.lex_state = 579}, + [1546] = {.lex_state = 579}, + [1547] = {.lex_state = 90}, [1548] = {.lex_state = 90}, - [1549] = {.lex_state = 90}, - [1550] = {.lex_state = 612}, - [1551] = {.lex_state = 612}, + [1549] = {.lex_state = 579}, + [1550] = {.lex_state = 90}, + [1551] = {.lex_state = 90}, [1552] = {.lex_state = 90}, [1553] = {.lex_state = 90}, - [1554] = {.lex_state = 90}, - [1555] = {.lex_state = 90}, - [1556] = {.lex_state = 90}, - [1557] = {.lex_state = 90}, - [1558] = {.lex_state = 90}, + [1554] = {.lex_state = 579}, + [1555] = {.lex_state = 579}, + [1556] = {.lex_state = 611}, + [1557] = {.lex_state = 579}, + [1558] = {.lex_state = 579}, [1559] = {.lex_state = 90}, - [1560] = {.lex_state = 90}, - [1561] = {.lex_state = 90}, - [1562] = {.lex_state = 90}, - [1563] = {.lex_state = 90}, - [1564] = {.lex_state = 90}, - [1565] = {.lex_state = 90}, + [1560] = {.lex_state = 579}, + [1561] = {.lex_state = 579}, + [1562] = {.lex_state = 579}, + [1563] = {.lex_state = 579}, + [1564] = {.lex_state = 579}, + [1565] = {.lex_state = 579}, [1566] = {.lex_state = 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 = 612}, - [1585] = {.lex_state = 90}, - [1586] = {.lex_state = 90}, - [1587] = {.lex_state = 90}, + [1570] = {.lex_state = 579}, + [1571] = {.lex_state = 579}, + [1572] = {.lex_state = 579}, + [1573] = {.lex_state = 579}, + [1574] = {.lex_state = 579}, + [1575] = {.lex_state = 579}, + [1576] = {.lex_state = 579}, + [1577] = {.lex_state = 579}, + [1578] = {.lex_state = 579}, + [1579] = {.lex_state = 579}, + [1580] = {.lex_state = 579}, + [1581] = {.lex_state = 579}, + [1582] = {.lex_state = 579}, + [1583] = {.lex_state = 579}, + [1584] = {.lex_state = 579}, + [1585] = {.lex_state = 579}, + [1586] = {.lex_state = 579}, + [1587] = {.lex_state = 579}, [1588] = {.lex_state = 90}, [1589] = {.lex_state = 90}, - [1590] = {.lex_state = 90}, + [1590] = {.lex_state = 579}, [1591] = {.lex_state = 90}, - [1592] = {.lex_state = 610}, + [1592] = {.lex_state = 90}, [1593] = {.lex_state = 90}, - [1594] = {.lex_state = 580}, - [1595] = {.lex_state = 580}, - [1596] = {.lex_state = 580}, - [1597] = {.lex_state = 580}, - [1598] = {.lex_state = 580}, - [1599] = {.lex_state = 580}, - [1600] = {.lex_state = 580}, - [1601] = {.lex_state = 580}, - [1602] = {.lex_state = 8}, - [1603] = {.lex_state = 580}, - [1604] = {.lex_state = 580}, - [1605] = {.lex_state = 580}, - [1606] = {.lex_state = 580}, - [1607] = {.lex_state = 580}, - [1608] = {.lex_state = 580}, - [1609] = {.lex_state = 580}, - [1610] = {.lex_state = 580}, - [1611] = {.lex_state = 580}, - [1612] = {.lex_state = 580}, - [1613] = {.lex_state = 580}, - [1614] = {.lex_state = 580}, - [1615] = {.lex_state = 580}, - [1616] = {.lex_state = 580}, - [1617] = {.lex_state = 580}, - [1618] = {.lex_state = 580}, - [1619] = {.lex_state = 580}, - [1620] = {.lex_state = 580}, - [1621] = {.lex_state = 580}, - [1622] = {.lex_state = 580}, - [1623] = {.lex_state = 580}, - [1624] = {.lex_state = 580}, - [1625] = {.lex_state = 580}, - [1626] = {.lex_state = 580}, - [1627] = {.lex_state = 580}, - [1628] = {.lex_state = 580}, - [1629] = {.lex_state = 580}, - [1630] = {.lex_state = 177, .external_lex_state = 2}, - [1631] = {.lex_state = 580}, - [1632] = {.lex_state = 580}, - [1633] = {.lex_state = 580}, - [1634] = {.lex_state = 580}, - [1635] = {.lex_state = 580}, - [1636] = {.lex_state = 580}, - [1637] = {.lex_state = 580}, - [1638] = {.lex_state = 580}, - [1639] = {.lex_state = 580}, - [1640] = {.lex_state = 580}, - [1641] = {.lex_state = 580}, - [1642] = {.lex_state = 580}, - [1643] = {.lex_state = 580}, - [1644] = {.lex_state = 580}, - [1645] = {.lex_state = 580}, - [1646] = {.lex_state = 580}, - [1647] = {.lex_state = 580}, - [1648] = {.lex_state = 580}, - [1649] = {.lex_state = 580}, - [1650] = {.lex_state = 580}, - [1651] = {.lex_state = 580}, - [1652] = {.lex_state = 580}, - [1653] = {.lex_state = 580}, - [1654] = {.lex_state = 580}, - [1655] = {.lex_state = 580}, - [1656] = {.lex_state = 580}, - [1657] = {.lex_state = 580}, - [1658] = {.lex_state = 580}, - [1659] = {.lex_state = 580}, - [1660] = {.lex_state = 580}, - [1661] = {.lex_state = 580}, - [1662] = {.lex_state = 580}, - [1663] = {.lex_state = 580}, - [1664] = {.lex_state = 580}, - [1665] = {.lex_state = 580}, - [1666] = {.lex_state = 580}, - [1667] = {.lex_state = 580}, - [1668] = {.lex_state = 580}, - [1669] = {.lex_state = 580}, - [1670] = {.lex_state = 580}, - [1671] = {.lex_state = 580}, - [1672] = {.lex_state = 580}, - [1673] = {.lex_state = 580}, - [1674] = {.lex_state = 580}, - [1675] = {.lex_state = 580}, - [1676] = {.lex_state = 580}, - [1677] = {.lex_state = 580}, - [1678] = {.lex_state = 90}, - [1679] = {.lex_state = 90}, - [1680] = {.lex_state = 580}, - [1681] = {.lex_state = 580}, - [1682] = {.lex_state = 580}, - [1683] = {.lex_state = 580}, - [1684] = {.lex_state = 580}, - [1685] = {.lex_state = 580}, - [1686] = {.lex_state = 580}, - [1687] = {.lex_state = 580}, - [1688] = {.lex_state = 580}, - [1689] = {.lex_state = 580}, - [1690] = {.lex_state = 580}, - [1691] = {.lex_state = 580}, - [1692] = {.lex_state = 580}, - [1693] = {.lex_state = 580}, - [1694] = {.lex_state = 580}, - [1695] = {.lex_state = 580}, - [1696] = {.lex_state = 580}, - [1697] = {.lex_state = 580}, - [1698] = {.lex_state = 580}, - [1699] = {.lex_state = 580}, - [1700] = {.lex_state = 580}, - [1701] = {.lex_state = 580}, - [1702] = {.lex_state = 580}, - [1703] = {.lex_state = 580}, - [1704] = {.lex_state = 580}, - [1705] = {.lex_state = 580}, - [1706] = {.lex_state = 580}, - [1707] = {.lex_state = 38, .external_lex_state = 2}, - [1708] = {.lex_state = 9}, - [1709] = {.lex_state = 580}, - [1710] = {.lex_state = 38, .external_lex_state = 2}, - [1711] = {.lex_state = 580}, - [1712] = {.lex_state = 580}, - [1713] = {.lex_state = 90}, - [1714] = {.lex_state = 580}, - [1715] = {.lex_state = 9}, - [1716] = {.lex_state = 580}, - [1717] = {.lex_state = 580}, + [1594] = {.lex_state = 579}, + [1595] = {.lex_state = 579}, + [1596] = {.lex_state = 579}, + [1597] = {.lex_state = 90}, + [1598] = {.lex_state = 90}, + [1599] = {.lex_state = 579}, + [1600] = {.lex_state = 579}, + [1601] = {.lex_state = 90}, + [1602] = {.lex_state = 90}, + [1603] = {.lex_state = 90}, + [1604] = {.lex_state = 90}, + [1605] = {.lex_state = 90}, + [1606] = {.lex_state = 579}, + [1607] = {.lex_state = 90}, + [1608] = {.lex_state = 90}, + [1609] = {.lex_state = 90}, + [1610] = {.lex_state = 90}, + [1611] = {.lex_state = 579}, + [1612] = {.lex_state = 579}, + [1613] = {.lex_state = 90}, + [1614] = {.lex_state = 579}, + [1615] = {.lex_state = 579}, + [1616] = {.lex_state = 579}, + [1617] = {.lex_state = 609}, + [1618] = {.lex_state = 579}, + [1619] = {.lex_state = 579}, + [1620] = {.lex_state = 579}, + [1621] = {.lex_state = 579}, + [1622] = {.lex_state = 579}, + [1623] = {.lex_state = 579}, + [1624] = {.lex_state = 579}, + [1625] = {.lex_state = 90}, + [1626] = {.lex_state = 579}, + [1627] = {.lex_state = 579}, + [1628] = {.lex_state = 90}, + [1629] = {.lex_state = 579}, + [1630] = {.lex_state = 579}, + [1631] = {.lex_state = 579}, + [1632] = {.lex_state = 579}, + [1633] = {.lex_state = 579}, + [1634] = {.lex_state = 579}, + [1635] = {.lex_state = 579}, + [1636] = {.lex_state = 90}, + [1637] = {.lex_state = 579}, + [1638] = {.lex_state = 90}, + [1639] = {.lex_state = 90}, + [1640] = {.lex_state = 90}, + [1641] = {.lex_state = 90}, + [1642] = {.lex_state = 90}, + [1643] = {.lex_state = 579}, + [1644] = {.lex_state = 579}, + [1645] = {.lex_state = 90}, + [1646] = {.lex_state = 90}, + [1647] = {.lex_state = 579}, + [1648] = {.lex_state = 611}, + [1649] = {.lex_state = 90}, + [1650] = {.lex_state = 90}, + [1651] = {.lex_state = 579}, + [1652] = {.lex_state = 579}, + [1653] = {.lex_state = 579}, + [1654] = {.lex_state = 579}, + [1655] = {.lex_state = 579}, + [1656] = {.lex_state = 579}, + [1657] = {.lex_state = 579}, + [1658] = {.lex_state = 90}, + [1659] = {.lex_state = 8}, + [1660] = {.lex_state = 611}, + [1661] = {.lex_state = 90}, + [1662] = {.lex_state = 579}, + [1663] = {.lex_state = 90}, + [1664] = {.lex_state = 90}, + [1665] = {.lex_state = 579}, + [1666] = {.lex_state = 579}, + [1667] = {.lex_state = 90}, + [1668] = {.lex_state = 177, .external_lex_state = 2}, + [1669] = {.lex_state = 579}, + [1670] = {.lex_state = 90}, + [1671] = {.lex_state = 579}, + [1672] = {.lex_state = 579}, + [1673] = {.lex_state = 90}, + [1674] = {.lex_state = 579}, + [1675] = {.lex_state = 579}, + [1676] = {.lex_state = 579}, + [1677] = {.lex_state = 579}, + [1678] = {.lex_state = 579}, + [1679] = {.lex_state = 579}, + [1680] = {.lex_state = 579}, + [1681] = {.lex_state = 90}, + [1682] = {.lex_state = 579}, + [1683] = {.lex_state = 579}, + [1684] = {.lex_state = 579}, + [1685] = {.lex_state = 579}, + [1686] = {.lex_state = 579}, + [1687] = {.lex_state = 579}, + [1688] = {.lex_state = 579}, + [1689] = {.lex_state = 579}, + [1690] = {.lex_state = 579}, + [1691] = {.lex_state = 579}, + [1692] = {.lex_state = 579}, + [1693] = {.lex_state = 579}, + [1694] = {.lex_state = 579}, + [1695] = {.lex_state = 579}, + [1696] = {.lex_state = 579}, + [1697] = {.lex_state = 579}, + [1698] = {.lex_state = 579}, + [1699] = {.lex_state = 579}, + [1700] = {.lex_state = 579}, + [1701] = {.lex_state = 579}, + [1702] = {.lex_state = 579}, + [1703] = {.lex_state = 579}, + [1704] = {.lex_state = 579}, + [1705] = {.lex_state = 579}, + [1706] = {.lex_state = 579}, + [1707] = {.lex_state = 579}, + [1708] = {.lex_state = 38, .external_lex_state = 2}, + [1709] = {.lex_state = 579}, + [1710] = {.lex_state = 579}, + [1711] = {.lex_state = 579}, + [1712] = {.lex_state = 38, .external_lex_state = 2}, + [1713] = {.lex_state = 579}, + [1714] = {.lex_state = 9}, + [1715] = {.lex_state = 38, .external_lex_state = 2}, + [1716] = {.lex_state = 579}, + [1717] = {.lex_state = 579}, [1718] = {.lex_state = 38, .external_lex_state = 2}, [1719] = {.lex_state = 38, .external_lex_state = 2}, - [1720] = {.lex_state = 580}, - [1721] = {.lex_state = 580}, - [1722] = {.lex_state = 580}, - [1723] = {.lex_state = 580}, - [1724] = {.lex_state = 580}, + [1720] = {.lex_state = 579}, + [1721] = {.lex_state = 9}, + [1722] = {.lex_state = 130}, + [1723] = {.lex_state = 579}, + [1724] = {.lex_state = 38, .external_lex_state = 2}, [1725] = {.lex_state = 38, .external_lex_state = 2}, [1726] = {.lex_state = 38, .external_lex_state = 2}, - [1727] = {.lex_state = 38, .external_lex_state = 2}, - [1728] = {.lex_state = 130}, - [1729] = {.lex_state = 38, .external_lex_state = 2}, + [1727] = {.lex_state = 90}, + [1728] = {.lex_state = 579}, + [1729] = {.lex_state = 579}, [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 = 12}, - [1734] = {.lex_state = 633, .external_lex_state = 2}, - [1735] = {.lex_state = 176, .external_lex_state = 2}, - [1736] = {.lex_state = 633, .external_lex_state = 2}, - [1737] = {.lex_state = 130}, - [1738] = {.lex_state = 572, .external_lex_state = 2}, - [1739] = {.lex_state = 176, .external_lex_state = 2}, - [1740] = {.lex_state = 10}, - [1741] = {.lex_state = 131}, - [1742] = {.lex_state = 131}, + [1733] = {.lex_state = 176, .external_lex_state = 2}, + [1734] = {.lex_state = 130}, + [1735] = {.lex_state = 632, .external_lex_state = 2}, + [1736] = {.lex_state = 10}, + [1737] = {.lex_state = 571, .external_lex_state = 2}, + [1738] = {.lex_state = 12}, + [1739] = {.lex_state = 131}, + [1740] = {.lex_state = 632, .external_lex_state = 2}, + [1741] = {.lex_state = 130}, + [1742] = {.lex_state = 176, .external_lex_state = 2}, [1743] = {.lex_state = 176, .external_lex_state = 2}, - [1744] = {.lex_state = 633, .external_lex_state = 2}, - [1745] = {.lex_state = 130}, - [1746] = {.lex_state = 633, .external_lex_state = 2}, - [1747] = {.lex_state = 176, .external_lex_state = 2}, - [1748] = {.lex_state = 633, .external_lex_state = 2}, - [1749] = {.lex_state = 176, .external_lex_state = 2}, - [1750] = {.lex_state = 90}, - [1751] = {.lex_state = 165, .external_lex_state = 2}, - [1752] = {.lex_state = 14}, - [1753] = {.lex_state = 130}, - [1754] = {.lex_state = 13}, + [1744] = {.lex_state = 632, .external_lex_state = 2}, + [1745] = {.lex_state = 131}, + [1746] = {.lex_state = 571, .external_lex_state = 2}, + [1747] = {.lex_state = 134}, + [1748] = {.lex_state = 130}, + [1749] = {.lex_state = 38, .external_lex_state = 2}, + [1750] = {.lex_state = 130}, + [1751] = {.lex_state = 90}, + [1752] = {.lex_state = 165, .external_lex_state = 2}, + [1753] = {.lex_state = 168, .external_lex_state = 2}, + [1754] = {.lex_state = 132}, [1755] = {.lex_state = 38, .external_lex_state = 2}, - [1756] = {.lex_state = 633, .external_lex_state = 2}, - [1757] = {.lex_state = 130}, + [1756] = {.lex_state = 13}, + [1757] = {.lex_state = 632, .external_lex_state = 2}, [1758] = {.lex_state = 90}, - [1759] = {.lex_state = 572, .external_lex_state = 2}, + [1759] = {.lex_state = 632, .external_lex_state = 2}, [1760] = {.lex_state = 176, .external_lex_state = 2}, - [1761] = {.lex_state = 633, .external_lex_state = 2}, + [1761] = {.lex_state = 130}, [1762] = {.lex_state = 130}, - [1763] = {.lex_state = 572, .external_lex_state = 2}, - [1764] = {.lex_state = 176, .external_lex_state = 2}, - [1765] = {.lex_state = 572, .external_lex_state = 2}, - [1766] = {.lex_state = 572, .external_lex_state = 2}, - [1767] = {.lex_state = 572, .external_lex_state = 2}, - [1768] = {.lex_state = 176, .external_lex_state = 2}, - [1769] = {.lex_state = 633, .external_lex_state = 2}, - [1770] = {.lex_state = 130}, - [1771] = {.lex_state = 130}, - [1772] = {.lex_state = 130}, - [1773] = {.lex_state = 176, .external_lex_state = 2}, - [1774] = {.lex_state = 168, .external_lex_state = 2}, - [1775] = {.lex_state = 38, .external_lex_state = 2}, + [1763] = {.lex_state = 90}, + [1764] = {.lex_state = 632, .external_lex_state = 2}, + [1765] = {.lex_state = 571, .external_lex_state = 2}, + [1766] = {.lex_state = 13}, + [1767] = {.lex_state = 176, .external_lex_state = 2}, + [1768] = {.lex_state = 571, .external_lex_state = 2}, + [1769] = {.lex_state = 14}, + [1770] = {.lex_state = 38, .external_lex_state = 2}, + [1771] = {.lex_state = 176, .external_lex_state = 2}, + [1772] = {.lex_state = 632, .external_lex_state = 2}, + [1773] = {.lex_state = 571, .external_lex_state = 2}, + [1774] = {.lex_state = 571, .external_lex_state = 2}, + [1775] = {.lex_state = 176, .external_lex_state = 2}, [1776] = {.lex_state = 176, .external_lex_state = 2}, - [1777] = {.lex_state = 13}, - [1778] = {.lex_state = 90}, - [1779] = {.lex_state = 132}, - [1780] = {.lex_state = 176, .external_lex_state = 2}, - [1781] = {.lex_state = 90}, - [1782] = {.lex_state = 134}, - [1783] = {.lex_state = 176, .external_lex_state = 2}, - [1784] = {.lex_state = 90}, + [1777] = {.lex_state = 176, .external_lex_state = 2}, + [1778] = {.lex_state = 176, .external_lex_state = 2}, + [1779] = {.lex_state = 632, .external_lex_state = 2}, + [1780] = {.lex_state = 571, .external_lex_state = 2}, + [1781] = {.lex_state = 571, .external_lex_state = 2}, + [1782] = {.lex_state = 176, .external_lex_state = 2}, + [1783] = {.lex_state = 130}, + [1784] = {.lex_state = 176, .external_lex_state = 2}, [1785] = {.lex_state = 176, .external_lex_state = 2}, - [1786] = {.lex_state = 572, .external_lex_state = 2}, - [1787] = {.lex_state = 38, .external_lex_state = 2}, - [1788] = {.lex_state = 572, .external_lex_state = 2}, - [1789] = {.lex_state = 90}, - [1790] = {.lex_state = 90}, - [1791] = {.lex_state = 572, .external_lex_state = 2}, - [1792] = {.lex_state = 38, .external_lex_state = 2}, - [1793] = {.lex_state = 11}, - [1794] = {.lex_state = 90}, - [1795] = {.lex_state = 14}, - [1796] = {.lex_state = 633, .external_lex_state = 2}, - [1797] = {.lex_state = 573, .external_lex_state = 2}, - [1798] = {.lex_state = 572, .external_lex_state = 2}, + [1786] = {.lex_state = 130}, + [1787] = {.lex_state = 90}, + [1788] = {.lex_state = 90}, + [1789] = {.lex_state = 38, .external_lex_state = 2}, + [1790] = {.lex_state = 167, .external_lex_state = 2}, + [1791] = {.lex_state = 631, .external_lex_state = 2}, + [1792] = {.lex_state = 14}, + [1793] = {.lex_state = 135}, + [1794] = {.lex_state = 571, .external_lex_state = 2}, + [1795] = {.lex_state = 571, .external_lex_state = 2}, + [1796] = {.lex_state = 632, .external_lex_state = 2}, + [1797] = {.lex_state = 38, .external_lex_state = 2}, + [1798] = {.lex_state = 90}, [1799] = {.lex_state = 38, .external_lex_state = 2}, - [1800] = {.lex_state = 633, .external_lex_state = 2}, - [1801] = {.lex_state = 38, .external_lex_state = 2}, + [1800] = {.lex_state = 571, .external_lex_state = 2}, + [1801] = {.lex_state = 571, .external_lex_state = 2}, [1802] = {.lex_state = 38, .external_lex_state = 2}, [1803] = {.lex_state = 38, .external_lex_state = 2}, - [1804] = {.lex_state = 135}, - [1805] = {.lex_state = 14}, - [1806] = {.lex_state = 38, .external_lex_state = 2}, - [1807] = {.lex_state = 572, .external_lex_state = 2}, - [1808] = {.lex_state = 90}, - [1809] = {.lex_state = 135}, - [1810] = {.lex_state = 632, .external_lex_state = 2}, + [1804] = {.lex_state = 167, .external_lex_state = 2}, + [1805] = {.lex_state = 11}, + [1806] = {.lex_state = 571, .external_lex_state = 2}, + [1807] = {.lex_state = 90}, + [1808] = {.lex_state = 632, .external_lex_state = 2}, + [1809] = {.lex_state = 38, .external_lex_state = 2}, + [1810] = {.lex_state = 14}, [1811] = {.lex_state = 38, .external_lex_state = 2}, - [1812] = {.lex_state = 572, .external_lex_state = 2}, - [1813] = {.lex_state = 136}, - [1814] = {.lex_state = 572, .external_lex_state = 2}, - [1815] = {.lex_state = 38, .external_lex_state = 2}, - [1816] = {.lex_state = 572, .external_lex_state = 2}, - [1817] = {.lex_state = 167, .external_lex_state = 2}, - [1818] = {.lex_state = 38, .external_lex_state = 2}, - [1819] = {.lex_state = 14}, - [1820] = {.lex_state = 167, .external_lex_state = 2}, - [1821] = {.lex_state = 15}, - [1822] = {.lex_state = 90}, - [1823] = {.lex_state = 38, .external_lex_state = 2}, + [1812] = {.lex_state = 38, .external_lex_state = 2}, + [1813] = {.lex_state = 38, .external_lex_state = 2}, + [1814] = {.lex_state = 38, .external_lex_state = 2}, + [1815] = {.lex_state = 135}, + [1816] = {.lex_state = 38, .external_lex_state = 2}, + [1817] = {.lex_state = 90}, + [1818] = {.lex_state = 572, .external_lex_state = 2}, + [1819] = {.lex_state = 90}, + [1820] = {.lex_state = 571, .external_lex_state = 2}, + [1821] = {.lex_state = 38, .external_lex_state = 2}, + [1822] = {.lex_state = 14}, + [1823] = {.lex_state = 90}, [1824] = {.lex_state = 90}, - [1825] = {.lex_state = 38, .external_lex_state = 2}, - [1826] = {.lex_state = 38, .external_lex_state = 2}, - [1827] = {.lex_state = 169, .external_lex_state = 2}, - [1828] = {.lex_state = 133}, + [1825] = {.lex_state = 136}, + [1826] = {.lex_state = 15}, + [1827] = {.lex_state = 631, .external_lex_state = 2}, + [1828] = {.lex_state = 169, .external_lex_state = 2}, [1829] = {.lex_state = 90}, [1830] = {.lex_state = 90}, - [1831] = {.lex_state = 169, .external_lex_state = 2}, + [1831] = {.lex_state = 90}, [1832] = {.lex_state = 90}, [1833] = {.lex_state = 90}, [1834] = {.lex_state = 90}, - [1835] = {.lex_state = 169, .external_lex_state = 2}, + [1835] = {.lex_state = 16}, [1836] = {.lex_state = 90}, [1837] = {.lex_state = 90}, - [1838] = {.lex_state = 90}, - [1839] = {.lex_state = 90}, + [1838] = {.lex_state = 169, .external_lex_state = 2}, + [1839] = {.lex_state = 137}, [1840] = {.lex_state = 136}, - [1841] = {.lex_state = 136}, + [1841] = {.lex_state = 133}, [1842] = {.lex_state = 90}, [1843] = {.lex_state = 90}, - [1844] = {.lex_state = 136}, - [1845] = {.lex_state = 90}, + [1844] = {.lex_state = 90}, + [1845] = {.lex_state = 136}, [1846] = {.lex_state = 90}, [1847] = {.lex_state = 90}, - [1848] = {.lex_state = 90}, + [1848] = {.lex_state = 632, .external_lex_state = 2}, [1849] = {.lex_state = 90}, - [1850] = {.lex_state = 633, .external_lex_state = 2}, - [1851] = {.lex_state = 633, .external_lex_state = 2}, - [1852] = {.lex_state = 90}, + [1850] = {.lex_state = 632, .external_lex_state = 2}, + [1851] = {.lex_state = 90}, + [1852] = {.lex_state = 169, .external_lex_state = 2}, [1853] = {.lex_state = 90}, [1854] = {.lex_state = 90}, [1855] = {.lex_state = 90}, - [1856] = {.lex_state = 90}, - [1857] = {.lex_state = 16}, - [1858] = {.lex_state = 632, .external_lex_state = 2}, + [1856] = {.lex_state = 169, .external_lex_state = 2}, + [1857] = {.lex_state = 90}, + [1858] = {.lex_state = 136}, [1859] = {.lex_state = 90}, [1860] = {.lex_state = 90}, [1861] = {.lex_state = 90}, - [1862] = {.lex_state = 90}, - [1863] = {.lex_state = 169, .external_lex_state = 2}, - [1864] = {.lex_state = 90}, - [1865] = {.lex_state = 137}, + [1862] = {.lex_state = 16}, + [1863] = {.lex_state = 632, .external_lex_state = 2}, + [1864] = {.lex_state = 572, .external_lex_state = 2}, + [1865] = {.lex_state = 90}, [1866] = {.lex_state = 90}, [1867] = {.lex_state = 90}, - [1868] = {.lex_state = 633, .external_lex_state = 2}, + [1868] = {.lex_state = 90}, [1869] = {.lex_state = 90}, [1870] = {.lex_state = 90}, [1871] = {.lex_state = 90}, - [1872] = {.lex_state = 573, .external_lex_state = 2}, + [1872] = {.lex_state = 90}, [1873] = {.lex_state = 90}, [1874] = {.lex_state = 90}, - [1875] = {.lex_state = 16}, - [1876] = {.lex_state = 17}, - [1877] = {.lex_state = 631, .external_lex_state = 2}, - [1878] = {.lex_state = 580}, - [1879] = {.lex_state = 17}, - [1880] = {.lex_state = 631, .external_lex_state = 2}, - [1881] = {.lex_state = 17}, - [1882] = {.lex_state = 138}, - [1883] = {.lex_state = 631, .external_lex_state = 2}, - [1884] = {.lex_state = 631, .external_lex_state = 2}, - [1885] = {.lex_state = 631, .external_lex_state = 2}, - [1886] = {.lex_state = 631, .external_lex_state = 2}, - [1887] = {.lex_state = 633, .external_lex_state = 2}, - [1888] = {.lex_state = 633, .external_lex_state = 2}, - [1889] = {.lex_state = 90}, - [1890] = {.lex_state = 90}, - [1891] = {.lex_state = 631, .external_lex_state = 2}, - [1892] = {.lex_state = 631, .external_lex_state = 2}, - [1893] = {.lex_state = 90}, - [1894] = {.lex_state = 631, .external_lex_state = 2}, - [1895] = {.lex_state = 631, .external_lex_state = 2}, - [1896] = {.lex_state = 631, .external_lex_state = 2}, - [1897] = {.lex_state = 138}, - [1898] = {.lex_state = 631, .external_lex_state = 2}, - [1899] = {.lex_state = 631, .external_lex_state = 2}, - [1900] = {.lex_state = 17}, - [1901] = {.lex_state = 631, .external_lex_state = 2}, - [1902] = {.lex_state = 631, .external_lex_state = 2}, - [1903] = {.lex_state = 631, .external_lex_state = 2}, - [1904] = {.lex_state = 631, .external_lex_state = 2}, - [1905] = {.lex_state = 17}, - [1906] = {.lex_state = 633, .external_lex_state = 2}, - [1907] = {.lex_state = 90}, - [1908] = {.lex_state = 631, .external_lex_state = 2}, - [1909] = {.lex_state = 161, .external_lex_state = 2}, + [1875] = {.lex_state = 90}, + [1876] = {.lex_state = 630, .external_lex_state = 2}, + [1877] = {.lex_state = 138}, + [1878] = {.lex_state = 90}, + [1879] = {.lex_state = 138}, + [1880] = {.lex_state = 17}, + [1881] = {.lex_state = 90}, + [1882] = {.lex_state = 630, .external_lex_state = 2}, + [1883] = {.lex_state = 632, .external_lex_state = 2}, + [1884] = {.lex_state = 630, .external_lex_state = 2}, + [1885] = {.lex_state = 17}, + [1886] = {.lex_state = 630, .external_lex_state = 2}, + [1887] = {.lex_state = 630, .external_lex_state = 2}, + [1888] = {.lex_state = 632, .external_lex_state = 2}, + [1889] = {.lex_state = 17}, + [1890] = {.lex_state = 632, .external_lex_state = 2}, + [1891] = {.lex_state = 630, .external_lex_state = 2}, + [1892] = {.lex_state = 17}, + [1893] = {.lex_state = 630, .external_lex_state = 2}, + [1894] = {.lex_state = 630, .external_lex_state = 2}, + [1895] = {.lex_state = 630, .external_lex_state = 2}, + [1896] = {.lex_state = 17}, + [1897] = {.lex_state = 630, .external_lex_state = 2}, + [1898] = {.lex_state = 630, .external_lex_state = 2}, + [1899] = {.lex_state = 630, .external_lex_state = 2}, + [1900] = {.lex_state = 630, .external_lex_state = 2}, + [1901] = {.lex_state = 630, .external_lex_state = 2}, + [1902] = {.lex_state = 630, .external_lex_state = 2}, + [1903] = {.lex_state = 90}, + [1904] = {.lex_state = 630, .external_lex_state = 2}, + [1905] = {.lex_state = 579}, + [1906] = {.lex_state = 630, .external_lex_state = 2}, + [1907] = {.lex_state = 174, .external_lex_state = 2}, + [1908] = {.lex_state = 630, .external_lex_state = 2}, + [1909] = {.lex_state = 139}, [1910] = {.lex_state = 161, .external_lex_state = 2}, - [1911] = {.lex_state = 139}, - [1912] = {.lex_state = 19}, - [1913] = {.lex_state = 631, .external_lex_state = 2}, - [1914] = {.lex_state = 631, .external_lex_state = 2}, - [1915] = {.lex_state = 631, .external_lex_state = 2}, - [1916] = {.lex_state = 631, .external_lex_state = 2}, - [1917] = {.lex_state = 631, .external_lex_state = 2}, - [1918] = {.lex_state = 631, .external_lex_state = 2}, - [1919] = {.lex_state = 580}, - [1920] = {.lex_state = 631, .external_lex_state = 2}, - [1921] = {.lex_state = 161, .external_lex_state = 2}, - [1922] = {.lex_state = 174, .external_lex_state = 2}, - [1923] = {.lex_state = 631, .external_lex_state = 2}, + [1911] = {.lex_state = 125, .external_lex_state = 2}, + [1912] = {.lex_state = 161, .external_lex_state = 2}, + [1913] = {.lex_state = 630, .external_lex_state = 2}, + [1914] = {.lex_state = 139}, + [1915] = {.lex_state = 630, .external_lex_state = 2}, + [1916] = {.lex_state = 90}, + [1917] = {.lex_state = 161, .external_lex_state = 2}, + [1918] = {.lex_state = 579}, + [1919] = {.lex_state = 90}, + [1920] = {.lex_state = 630, .external_lex_state = 2}, + [1921] = {.lex_state = 630, .external_lex_state = 2}, + [1922] = {.lex_state = 90}, + [1923] = {.lex_state = 139}, [1924] = {.lex_state = 161, .external_lex_state = 2}, - [1925] = {.lex_state = 631, .external_lex_state = 2}, + [1925] = {.lex_state = 161, .external_lex_state = 2}, [1926] = {.lex_state = 90}, - [1927] = {.lex_state = 139}, - [1928] = {.lex_state = 631, .external_lex_state = 2}, - [1929] = {.lex_state = 139}, - [1930] = {.lex_state = 631, .external_lex_state = 2}, - [1931] = {.lex_state = 18}, - [1932] = {.lex_state = 161, .external_lex_state = 2}, - [1933] = {.lex_state = 125, .external_lex_state = 2}, - [1934] = {.lex_state = 266}, - [1935] = {.lex_state = 139}, - [1936] = {.lex_state = 139}, - [1937] = {.lex_state = 631, .external_lex_state = 2}, - [1938] = {.lex_state = 161, .external_lex_state = 2}, - [1939] = {.lex_state = 90}, - [1940] = {.lex_state = 90}, + [1927] = {.lex_state = 1199}, + [1928] = {.lex_state = 265}, + [1929] = {.lex_state = 630, .external_lex_state = 2}, + [1930] = {.lex_state = 161, .external_lex_state = 2}, + [1931] = {.lex_state = 139}, + [1932] = {.lex_state = 630, .external_lex_state = 2}, + [1933] = {.lex_state = 1197}, + [1934] = {.lex_state = 19}, + [1935] = {.lex_state = 630, .external_lex_state = 2}, + [1936] = {.lex_state = 630, .external_lex_state = 2}, + [1937] = {.lex_state = 630, .external_lex_state = 2}, + [1938] = {.lex_state = 630, .external_lex_state = 2}, + [1939] = {.lex_state = 630, .external_lex_state = 2}, + [1940] = {.lex_state = 139}, [1941] = {.lex_state = 161, .external_lex_state = 2}, - [1942] = {.lex_state = 1198}, - [1943] = {.lex_state = 631, .external_lex_state = 2}, - [1944] = {.lex_state = 631, .external_lex_state = 2}, - [1945] = {.lex_state = 631, .external_lex_state = 2}, - [1946] = {.lex_state = 1200}, - [1947] = {.lex_state = 631, .external_lex_state = 2}, - [1948] = {.lex_state = 175, .external_lex_state = 2}, - [1949] = {.lex_state = 161, .external_lex_state = 2}, - [1950] = {.lex_state = 20}, - [1951] = {.lex_state = 125, .external_lex_state = 2}, - [1952] = {.lex_state = 1201}, - [1953] = {.lex_state = 1201}, - [1954] = {.lex_state = 1203}, - [1955] = {.lex_state = 1199}, - [1956] = {.lex_state = 161, .external_lex_state = 2}, - [1957] = {.lex_state = 125, .external_lex_state = 2}, - [1958] = {.lex_state = 125, .external_lex_state = 2}, + [1942] = {.lex_state = 630, .external_lex_state = 2}, + [1943] = {.lex_state = 630, .external_lex_state = 2}, + [1944] = {.lex_state = 630, .external_lex_state = 2}, + [1945] = {.lex_state = 630, .external_lex_state = 2}, + [1946] = {.lex_state = 630, .external_lex_state = 2}, + [1947] = {.lex_state = 18}, + [1948] = {.lex_state = 161, .external_lex_state = 2}, + [1949] = {.lex_state = 1202}, + [1950] = {.lex_state = 1200}, + [1951] = {.lex_state = 163, .external_lex_state = 2}, + [1952] = {.lex_state = 140}, + [1953] = {.lex_state = 161, .external_lex_state = 2}, + [1954] = {.lex_state = 1200}, + [1955] = {.lex_state = 125, .external_lex_state = 2}, + [1956] = {.lex_state = 125, .external_lex_state = 2}, + [1957] = {.lex_state = 175, .external_lex_state = 2}, + [1958] = {.lex_state = 175, .external_lex_state = 2}, [1959] = {.lex_state = 141}, - [1960] = {.lex_state = 140}, + [1960] = {.lex_state = 20}, [1961] = {.lex_state = 125, .external_lex_state = 2}, - [1962] = {.lex_state = 266}, + [1962] = {.lex_state = 125, .external_lex_state = 2}, [1963] = {.lex_state = 125, .external_lex_state = 2}, - [1964] = {.lex_state = 125, .external_lex_state = 2}, - [1965] = {.lex_state = 175, .external_lex_state = 2}, - [1966] = {.lex_state = 20}, - [1967] = {.lex_state = 163, .external_lex_state = 2}, - [1968] = {.lex_state = 160, .external_lex_state = 2}, + [1964] = {.lex_state = 20}, + [1965] = {.lex_state = 1198}, + [1966] = {.lex_state = 265}, + [1967] = {.lex_state = 125, .external_lex_state = 2}, + [1968] = {.lex_state = 1203}, [1969] = {.lex_state = 158, .external_lex_state = 2}, - [1970] = {.lex_state = 266}, - [1971] = {.lex_state = 21}, - [1972] = {.lex_state = 21}, - [1973] = {.lex_state = 152, .external_lex_state = 2}, - [1974] = {.lex_state = 158, .external_lex_state = 2}, - [1975] = {.lex_state = 580}, - [1976] = {.lex_state = 1204}, - [1977] = {.lex_state = 158, .external_lex_state = 2}, - [1978] = {.lex_state = 38, .external_lex_state = 2}, - [1979] = {.lex_state = 142}, - [1980] = {.lex_state = 1202}, - [1981] = {.lex_state = 266}, - [1982] = {.lex_state = 580}, - [1983] = {.lex_state = 1202}, - [1984] = {.lex_state = 580}, - [1985] = {.lex_state = 580}, + [1970] = {.lex_state = 158, .external_lex_state = 2}, + [1971] = {.lex_state = 126, .external_lex_state = 2}, + [1972] = {.lex_state = 158, .external_lex_state = 2}, + [1973] = {.lex_state = 579}, + [1974] = {.lex_state = 265}, + [1975] = {.lex_state = 265}, + [1976] = {.lex_state = 1201}, + [1977] = {.lex_state = 265}, + [1978] = {.lex_state = 579}, + [1979] = {.lex_state = 21}, + [1980] = {.lex_state = 21}, + [1981] = {.lex_state = 21}, + [1982] = {.lex_state = 21}, + [1983] = {.lex_state = 579}, + [1984] = {.lex_state = 1201}, + [1985] = {.lex_state = 265}, [1986] = {.lex_state = 21}, - [1987] = {.lex_state = 266}, - [1988] = {.lex_state = 266}, - [1989] = {.lex_state = 142}, - [1990] = {.lex_state = 158, .external_lex_state = 2}, - [1991] = {.lex_state = 158, .external_lex_state = 2}, - [1992] = {.lex_state = 266}, - [1993] = {.lex_state = 580}, - [1994] = {.lex_state = 580}, - [1995] = {.lex_state = 580}, - [1996] = {.lex_state = 580}, + [1987] = {.lex_state = 21}, + [1988] = {.lex_state = 265}, + [1989] = {.lex_state = 158, .external_lex_state = 2}, + [1990] = {.lex_state = 1201}, + [1991] = {.lex_state = 265}, + [1992] = {.lex_state = 158, .external_lex_state = 2}, + [1993] = {.lex_state = 142}, + [1994] = {.lex_state = 1203}, + [1995] = {.lex_state = 21}, + [1996] = {.lex_state = 21}, [1997] = {.lex_state = 21}, - [1998] = {.lex_state = 21}, - [1999] = {.lex_state = 90}, - [2000] = {.lex_state = 1202}, - [2001] = {.lex_state = 1204}, - [2002] = {.lex_state = 266}, - [2003] = {.lex_state = 21}, - [2004] = {.lex_state = 266}, - [2005] = {.lex_state = 21}, - [2006] = {.lex_state = 266}, - [2007] = {.lex_state = 21}, - [2008] = {.lex_state = 21}, - [2009] = {.lex_state = 38, .external_lex_state = 2}, - [2010] = {.lex_state = 21}, - [2011] = {.lex_state = 580}, - [2012] = {.lex_state = 21}, - [2013] = {.lex_state = 21}, - [2014] = {.lex_state = 1202}, - [2015] = {.lex_state = 152, .external_lex_state = 2}, - [2016] = {.lex_state = 21}, - [2017] = {.lex_state = 126, .external_lex_state = 2}, - [2018] = {.lex_state = 580}, - [2019] = {.lex_state = 580}, - [2020] = {.lex_state = 580}, - [2021] = {.lex_state = 580}, - [2022] = {.lex_state = 580}, - [2023] = {.lex_state = 580}, - [2024] = {.lex_state = 580}, - [2025] = {.lex_state = 580}, - [2026] = {.lex_state = 580}, - [2027] = {.lex_state = 580}, - [2028] = {.lex_state = 580}, - [2029] = {.lex_state = 580}, - [2030] = {.lex_state = 580}, - [2031] = {.lex_state = 580}, - [2032] = {.lex_state = 580}, - [2033] = {.lex_state = 580}, - [2034] = {.lex_state = 580}, - [2035] = {.lex_state = 580}, - [2036] = {.lex_state = 580}, - [2037] = {.lex_state = 580}, - [2038] = {.lex_state = 580}, - [2039] = {.lex_state = 580}, - [2040] = {.lex_state = 580}, - [2041] = {.lex_state = 580}, - [2042] = {.lex_state = 580}, - [2043] = {.lex_state = 580}, - [2044] = {.lex_state = 580}, - [2045] = {.lex_state = 580}, - [2046] = {.lex_state = 580}, - [2047] = {.lex_state = 580}, - [2048] = {.lex_state = 580}, - [2049] = {.lex_state = 580}, - [2050] = {.lex_state = 580}, - [2051] = {.lex_state = 580}, - [2052] = {.lex_state = 580}, - [2053] = {.lex_state = 580}, - [2054] = {.lex_state = 580}, - [2055] = {.lex_state = 580}, - [2056] = {.lex_state = 580}, - [2057] = {.lex_state = 580}, - [2058] = {.lex_state = 580}, - [2059] = {.lex_state = 580}, - [2060] = {.lex_state = 580}, - [2061] = {.lex_state = 580}, - [2062] = {.lex_state = 580}, - [2063] = {.lex_state = 580}, - [2064] = {.lex_state = 580}, - [2065] = {.lex_state = 580}, - [2066] = {.lex_state = 580}, - [2067] = {.lex_state = 580}, - [2068] = {.lex_state = 580}, - [2069] = {.lex_state = 580}, - [2070] = {.lex_state = 580}, - [2071] = {.lex_state = 266}, - [2072] = {.lex_state = 45, .external_lex_state = 2}, - [2073] = {.lex_state = 166, .external_lex_state = 2}, - [2074] = {.lex_state = 266}, - [2075] = {.lex_state = 158, .external_lex_state = 2}, - [2076] = {.lex_state = 38, .external_lex_state = 2}, - [2077] = {.lex_state = 1205}, - [2078] = {.lex_state = 153, .external_lex_state = 2}, - [2079] = {.lex_state = 143}, - [2080] = {.lex_state = 166, .external_lex_state = 2}, - [2081] = {.lex_state = 166, .external_lex_state = 2}, - [2082] = {.lex_state = 21}, - [2083] = {.lex_state = 166, .external_lex_state = 2}, - [2084] = {.lex_state = 143}, - [2085] = {.lex_state = 143}, - [2086] = {.lex_state = 580}, - [2087] = {.lex_state = 153, .external_lex_state = 2}, - [2088] = {.lex_state = 153, .external_lex_state = 2}, - [2089] = {.lex_state = 143}, - [2090] = {.lex_state = 161, .external_lex_state = 2}, - [2091] = {.lex_state = 153, .external_lex_state = 2}, - [2092] = {.lex_state = 166, .external_lex_state = 2}, - [2093] = {.lex_state = 166, .external_lex_state = 2}, - [2094] = {.lex_state = 161, .external_lex_state = 2}, - [2095] = {.lex_state = 143}, - [2096] = {.lex_state = 1205}, - [2097] = {.lex_state = 1205}, - [2098] = {.lex_state = 90}, - [2099] = {.lex_state = 1205}, - [2100] = {.lex_state = 579}, - [2101] = {.lex_state = 143}, - [2102] = {.lex_state = 143}, - [2103] = {.lex_state = 580}, - [2104] = {.lex_state = 143}, - [2105] = {.lex_state = 143}, - [2106] = {.lex_state = 143}, - [2107] = {.lex_state = 1205}, - [2108] = {.lex_state = 161, .external_lex_state = 2}, - [2109] = {.lex_state = 158, .external_lex_state = 2}, - [2110] = {.lex_state = 45, .external_lex_state = 2}, - [2111] = {.lex_state = 143}, - [2112] = {.lex_state = 143}, + [1998] = {.lex_state = 152, .external_lex_state = 2}, + [1999] = {.lex_state = 160, .external_lex_state = 2}, + [2000] = {.lex_state = 21}, + [2001] = {.lex_state = 38, .external_lex_state = 2}, + [2002] = {.lex_state = 21}, + [2003] = {.lex_state = 579}, + [2004] = {.lex_state = 265}, + [2005] = {.lex_state = 579}, + [2006] = {.lex_state = 579}, + [2007] = {.lex_state = 142}, + [2008] = {.lex_state = 579}, + [2009] = {.lex_state = 152, .external_lex_state = 2}, + [2010] = {.lex_state = 90}, + [2011] = {.lex_state = 21}, + [2012] = {.lex_state = 265}, + [2013] = {.lex_state = 1201}, + [2014] = {.lex_state = 21}, + [2015] = {.lex_state = 579}, + [2016] = {.lex_state = 579}, + [2017] = {.lex_state = 38, .external_lex_state = 2}, + [2018] = {.lex_state = 579}, + [2019] = {.lex_state = 579}, + [2020] = {.lex_state = 153, .external_lex_state = 2}, + [2021] = {.lex_state = 153, .external_lex_state = 2}, + [2022] = {.lex_state = 21}, + [2023] = {.lex_state = 38, .external_lex_state = 2}, + [2024] = {.lex_state = 1204}, + [2025] = {.lex_state = 166, .external_lex_state = 2}, + [2026] = {.lex_state = 1204}, + [2027] = {.lex_state = 579}, + [2028] = {.lex_state = 579}, + [2029] = {.lex_state = 579}, + [2030] = {.lex_state = 90}, + [2031] = {.lex_state = 579}, + [2032] = {.lex_state = 45, .external_lex_state = 2}, + [2033] = {.lex_state = 579}, + [2034] = {.lex_state = 579}, + [2035] = {.lex_state = 579}, + [2036] = {.lex_state = 579}, + [2037] = {.lex_state = 579}, + [2038] = {.lex_state = 579}, + [2039] = {.lex_state = 579}, + [2040] = {.lex_state = 579}, + [2041] = {.lex_state = 579}, + [2042] = {.lex_state = 1204}, + [2043] = {.lex_state = 45, .external_lex_state = 2}, + [2044] = {.lex_state = 579}, + [2045] = {.lex_state = 158, .external_lex_state = 2}, + [2046] = {.lex_state = 579}, + [2047] = {.lex_state = 579}, + [2048] = {.lex_state = 579}, + [2049] = {.lex_state = 579}, + [2050] = {.lex_state = 579}, + [2051] = {.lex_state = 579}, + [2052] = {.lex_state = 579}, + [2053] = {.lex_state = 579}, + [2054] = {.lex_state = 579}, + [2055] = {.lex_state = 579}, + [2056] = {.lex_state = 166, .external_lex_state = 2}, + [2057] = {.lex_state = 579}, + [2058] = {.lex_state = 153, .external_lex_state = 2}, + [2059] = {.lex_state = 579}, + [2060] = {.lex_state = 579}, + [2061] = {.lex_state = 579}, + [2062] = {.lex_state = 265}, + [2063] = {.lex_state = 166, .external_lex_state = 2}, + [2064] = {.lex_state = 579}, + [2065] = {.lex_state = 579}, + [2066] = {.lex_state = 579}, + [2067] = {.lex_state = 579}, + [2068] = {.lex_state = 579}, + [2069] = {.lex_state = 579}, + [2070] = {.lex_state = 579}, + [2071] = {.lex_state = 579}, + [2072] = {.lex_state = 579}, + [2073] = {.lex_state = 579}, + [2074] = {.lex_state = 579}, + [2075] = {.lex_state = 1204}, + [2076] = {.lex_state = 579}, + [2077] = {.lex_state = 1204}, + [2078] = {.lex_state = 579}, + [2079] = {.lex_state = 1204}, + [2080] = {.lex_state = 579}, + [2081] = {.lex_state = 143}, + [2082] = {.lex_state = 579}, + [2083] = {.lex_state = 579}, + [2084] = {.lex_state = 579}, + [2085] = {.lex_state = 579}, + [2086] = {.lex_state = 143}, + [2087] = {.lex_state = 579}, + [2088] = {.lex_state = 579}, + [2089] = {.lex_state = 579}, + [2090] = {.lex_state = 153, .external_lex_state = 2}, + [2091] = {.lex_state = 579}, + [2092] = {.lex_state = 579}, + [2093] = {.lex_state = 579}, + [2094] = {.lex_state = 579}, + [2095] = {.lex_state = 579}, + [2096] = {.lex_state = 579}, + [2097] = {.lex_state = 579}, + [2098] = {.lex_state = 579}, + [2099] = {.lex_state = 579}, + [2100] = {.lex_state = 1204}, + [2101] = {.lex_state = 153, .external_lex_state = 2}, + [2102] = {.lex_state = 579}, + [2103] = {.lex_state = 579}, + [2104] = {.lex_state = 579}, + [2105] = {.lex_state = 579}, + [2106] = {.lex_state = 578}, + [2107] = {.lex_state = 579}, + [2108] = {.lex_state = 45, .external_lex_state = 2}, + [2109] = {.lex_state = 579}, + [2110] = {.lex_state = 579}, + [2111] = {.lex_state = 579}, + [2112] = {.lex_state = 161, .external_lex_state = 2}, [2113] = {.lex_state = 143}, - [2114] = {.lex_state = 166, .external_lex_state = 2}, + [2114] = {.lex_state = 143}, [2115] = {.lex_state = 90}, - [2116] = {.lex_state = 580}, - [2117] = {.lex_state = 580}, - [2118] = {.lex_state = 580}, - [2119] = {.lex_state = 580}, - [2120] = {.lex_state = 580}, - [2121] = {.lex_state = 580}, - [2122] = {.lex_state = 580}, - [2123] = {.lex_state = 580}, - [2124] = {.lex_state = 1205}, - [2125] = {.lex_state = 580}, - [2126] = {.lex_state = 580}, - [2127] = {.lex_state = 45, .external_lex_state = 2}, - [2128] = {.lex_state = 580}, - [2129] = {.lex_state = 580}, - [2130] = {.lex_state = 1205}, - [2131] = {.lex_state = 1205}, - [2132] = {.lex_state = 153, .external_lex_state = 2}, - [2133] = {.lex_state = 1205}, - [2134] = {.lex_state = 1205}, - [2135] = {.lex_state = 580}, - [2136] = {.lex_state = 580}, - [2137] = {.lex_state = 580}, - [2138] = {.lex_state = 580}, - [2139] = {.lex_state = 580}, - [2140] = {.lex_state = 580}, - [2141] = {.lex_state = 580}, - [2142] = {.lex_state = 580}, - [2143] = {.lex_state = 580}, - [2144] = {.lex_state = 580}, - [2145] = {.lex_state = 580}, - [2146] = {.lex_state = 580}, - [2147] = {.lex_state = 580}, - [2148] = {.lex_state = 580}, - [2149] = {.lex_state = 580}, - [2150] = {.lex_state = 580}, - [2151] = {.lex_state = 580}, - [2152] = {.lex_state = 580}, - [2153] = {.lex_state = 580}, - [2154] = {.lex_state = 580}, - [2155] = {.lex_state = 580}, - [2156] = {.lex_state = 580}, - [2157] = {.lex_state = 580}, - [2158] = {.lex_state = 580}, - [2159] = {.lex_state = 580}, - [2160] = {.lex_state = 580}, - [2161] = {.lex_state = 580}, - [2162] = {.lex_state = 580}, - [2163] = {.lex_state = 580}, - [2164] = {.lex_state = 580}, - [2165] = {.lex_state = 580}, - [2166] = {.lex_state = 580}, + [2116] = {.lex_state = 1204}, + [2117] = {.lex_state = 579}, + [2118] = {.lex_state = 143}, + [2119] = {.lex_state = 579}, + [2120] = {.lex_state = 1204}, + [2121] = {.lex_state = 579}, + [2122] = {.lex_state = 143}, + [2123] = {.lex_state = 579}, + [2124] = {.lex_state = 158, .external_lex_state = 2}, + [2125] = {.lex_state = 579}, + [2126] = {.lex_state = 579}, + [2127] = {.lex_state = 143}, + [2128] = {.lex_state = 579}, + [2129] = {.lex_state = 579}, + [2130] = {.lex_state = 579}, + [2131] = {.lex_state = 579}, + [2132] = {.lex_state = 166, .external_lex_state = 2}, + [2133] = {.lex_state = 143}, + [2134] = {.lex_state = 579}, + [2135] = {.lex_state = 579}, + [2136] = {.lex_state = 166, .external_lex_state = 2}, + [2137] = {.lex_state = 161, .external_lex_state = 2}, + [2138] = {.lex_state = 143}, + [2139] = {.lex_state = 166, .external_lex_state = 2}, + [2140] = {.lex_state = 265}, + [2141] = {.lex_state = 1204}, + [2142] = {.lex_state = 579}, + [2143] = {.lex_state = 579}, + [2144] = {.lex_state = 579}, + [2145] = {.lex_state = 579}, + [2146] = {.lex_state = 579}, + [2147] = {.lex_state = 579}, + [2148] = {.lex_state = 579}, + [2149] = {.lex_state = 143}, + [2150] = {.lex_state = 579}, + [2151] = {.lex_state = 579}, + [2152] = {.lex_state = 579}, + [2153] = {.lex_state = 579}, + [2154] = {.lex_state = 579}, + [2155] = {.lex_state = 579}, + [2156] = {.lex_state = 579}, + [2157] = {.lex_state = 143}, + [2158] = {.lex_state = 579}, + [2159] = {.lex_state = 579}, + [2160] = {.lex_state = 161, .external_lex_state = 2}, + [2161] = {.lex_state = 579}, + [2162] = {.lex_state = 579}, + [2163] = {.lex_state = 166, .external_lex_state = 2}, + [2164] = {.lex_state = 579}, + [2165] = {.lex_state = 143}, + [2166] = {.lex_state = 143}, [2167] = {.lex_state = 38, .external_lex_state = 2}, [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}, + [2171] = {.lex_state = 579}, [2172] = {.lex_state = 38, .external_lex_state = 2}, [2173] = {.lex_state = 38, .external_lex_state = 2}, [2174] = {.lex_state = 38, .external_lex_state = 2}, @@ -35993,141 +35937,141 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2182] = {.lex_state = 38, .external_lex_state = 2}, [2183] = {.lex_state = 38, .external_lex_state = 2}, [2184] = {.lex_state = 38, .external_lex_state = 2}, - [2185] = {.lex_state = 45, .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 = 153, .external_lex_state = 2}, + [2188] = {.lex_state = 90}, + [2189] = {.lex_state = 579}, + [2190] = {.lex_state = 38, .external_lex_state = 2}, [2191] = {.lex_state = 38, .external_lex_state = 2}, - [2192] = {.lex_state = 38, .external_lex_state = 2}, + [2192] = {.lex_state = 579}, [2193] = {.lex_state = 38, .external_lex_state = 2}, - [2194] = {.lex_state = 38, .external_lex_state = 2}, - [2195] = {.lex_state = 153, .external_lex_state = 2}, + [2194] = {.lex_state = 579}, + [2195] = {.lex_state = 38, .external_lex_state = 2}, [2196] = {.lex_state = 38, .external_lex_state = 2}, [2197] = {.lex_state = 38, .external_lex_state = 2}, - [2198] = {.lex_state = 38, .external_lex_state = 2}, + [2198] = {.lex_state = 579}, [2199] = {.lex_state = 38, .external_lex_state = 2}, - [2200] = {.lex_state = 90}, - [2201] = {.lex_state = 143}, + [2200] = {.lex_state = 579}, + [2201] = {.lex_state = 38, .external_lex_state = 2}, [2202] = {.lex_state = 38, .external_lex_state = 2}, [2203] = {.lex_state = 38, .external_lex_state = 2}, - [2204] = {.lex_state = 580}, + [2204] = {.lex_state = 153, .external_lex_state = 2}, [2205] = {.lex_state = 38, .external_lex_state = 2}, - [2206] = {.lex_state = 38, .external_lex_state = 2}, - [2207] = {.lex_state = 580}, + [2206] = {.lex_state = 143}, + [2207] = {.lex_state = 153, .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}, + [2212] = {.lex_state = 45, .external_lex_state = 2}, [2213] = {.lex_state = 38, .external_lex_state = 2}, [2214] = {.lex_state = 38, .external_lex_state = 2}, - [2215] = {.lex_state = 580}, - [2216] = {.lex_state = 580}, - [2217] = {.lex_state = 580}, - [2218] = {.lex_state = 580}, + [2215] = {.lex_state = 38, .external_lex_state = 2}, + [2216] = {.lex_state = 38, .external_lex_state = 2}, + [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 = 580}, - [2221] = {.lex_state = 580}, - [2222] = {.lex_state = 580}, - [2223] = {.lex_state = 580}, - [2224] = {.lex_state = 580}, - [2225] = {.lex_state = 580}, + [2220] = {.lex_state = 50, .external_lex_state = 2}, + [2221] = {.lex_state = 1205}, + [2222] = {.lex_state = 1205}, + [2223] = {.lex_state = 50, .external_lex_state = 2}, + [2224] = {.lex_state = 579}, + [2225] = {.lex_state = 1205}, [2226] = {.lex_state = 50, .external_lex_state = 2}, - [2227] = {.lex_state = 580}, - [2228] = {.lex_state = 580}, - [2229] = {.lex_state = 580}, - [2230] = {.lex_state = 580}, - [2231] = {.lex_state = 580}, - [2232] = {.lex_state = 580}, - [2233] = {.lex_state = 580}, - [2234] = {.lex_state = 580}, - [2235] = {.lex_state = 580}, - [2236] = {.lex_state = 1206}, - [2237] = {.lex_state = 580}, - [2238] = {.lex_state = 50, .external_lex_state = 2}, - [2239] = {.lex_state = 580}, - [2240] = {.lex_state = 580}, - [2241] = {.lex_state = 1206}, - [2242] = {.lex_state = 50, .external_lex_state = 2}, - [2243] = {.lex_state = 1206}, - [2244] = {.lex_state = 50, .external_lex_state = 2}, - [2245] = {.lex_state = 580}, - [2246] = {.lex_state = 1206}, - [2247] = {.lex_state = 1206}, - [2248] = {.lex_state = 1206}, - [2249] = {.lex_state = 1206}, - [2250] = {.lex_state = 45, .external_lex_state = 2}, - [2251] = {.lex_state = 1206}, - [2252] = {.lex_state = 580}, - [2253] = {.lex_state = 580}, - [2254] = {.lex_state = 580}, - [2255] = {.lex_state = 42, .external_lex_state = 2}, - [2256] = {.lex_state = 580}, - [2257] = {.lex_state = 580}, - [2258] = {.lex_state = 580}, - [2259] = {.lex_state = 579}, - [2260] = {.lex_state = 580}, - [2261] = {.lex_state = 580}, - [2262] = {.lex_state = 580}, - [2263] = {.lex_state = 42, .external_lex_state = 2}, - [2264] = {.lex_state = 580}, - [2265] = {.lex_state = 580}, - [2266] = {.lex_state = 38}, + [2227] = {.lex_state = 1205}, + [2228] = {.lex_state = 45, .external_lex_state = 2}, + [2229] = {.lex_state = 1205}, + [2230] = {.lex_state = 1205}, + [2231] = {.lex_state = 42, .external_lex_state = 2}, + [2232] = {.lex_state = 579}, + [2233] = {.lex_state = 50, .external_lex_state = 2}, + [2234] = {.lex_state = 579}, + [2235] = {.lex_state = 1205}, + [2236] = {.lex_state = 579}, + [2237] = {.lex_state = 579}, + [2238] = {.lex_state = 579}, + [2239] = {.lex_state = 579}, + [2240] = {.lex_state = 579}, + [2241] = {.lex_state = 579}, + [2242] = {.lex_state = 1205}, + [2243] = {.lex_state = 579}, + [2244] = {.lex_state = 579}, + [2245] = {.lex_state = 579}, + [2246] = {.lex_state = 579}, + [2247] = {.lex_state = 579}, + [2248] = {.lex_state = 579}, + [2249] = {.lex_state = 579}, + [2250] = {.lex_state = 579}, + [2251] = {.lex_state = 579}, + [2252] = {.lex_state = 579}, + [2253] = {.lex_state = 579}, + [2254] = {.lex_state = 579}, + [2255] = {.lex_state = 579}, + [2256] = {.lex_state = 579}, + [2257] = {.lex_state = 579}, + [2258] = {.lex_state = 579}, + [2259] = {.lex_state = 578}, + [2260] = {.lex_state = 42, .external_lex_state = 2}, + [2261] = {.lex_state = 579}, + [2262] = {.lex_state = 579}, + [2263] = {.lex_state = 579}, + [2264] = {.lex_state = 579}, + [2265] = {.lex_state = 579}, + [2266] = {.lex_state = 155, .external_lex_state = 2}, [2267] = {.lex_state = 155, .external_lex_state = 2}, - [2268] = {.lex_state = 38}, - [2269] = {.lex_state = 155, .external_lex_state = 2}, - [2270] = {.lex_state = 579}, - [2271] = {.lex_state = 50, .external_lex_state = 2}, - [2272] = {.lex_state = 38}, - [2273] = {.lex_state = 46, .external_lex_state = 2}, - [2274] = {.lex_state = 155, .external_lex_state = 2}, - [2275] = {.lex_state = 155, .external_lex_state = 2}, + [2268] = {.lex_state = 46, .external_lex_state = 2}, + [2269] = {.lex_state = 38}, + [2270] = {.lex_state = 38}, + [2271] = {.lex_state = 155, .external_lex_state = 2}, + [2272] = {.lex_state = 50, .external_lex_state = 2}, + [2273] = {.lex_state = 155, .external_lex_state = 2}, + [2274] = {.lex_state = 38}, + [2275] = {.lex_state = 578}, [2276] = {.lex_state = 5}, - [2277] = {.lex_state = 157, .external_lex_state = 2}, + [2277] = {.lex_state = 155, .external_lex_state = 2}, [2278] = {.lex_state = 157, .external_lex_state = 2}, - [2279] = {.lex_state = 155, .external_lex_state = 2}, - [2280] = {.lex_state = 48, .external_lex_state = 2}, + [2279] = {.lex_state = 157, .external_lex_state = 2}, + [2280] = {.lex_state = 5}, [2281] = {.lex_state = 5}, - [2282] = {.lex_state = 46, .external_lex_state = 2}, - [2283] = {.lex_state = 47, .external_lex_state = 2}, - [2284] = {.lex_state = 5}, - [2285] = {.lex_state = 5}, + [2282] = {.lex_state = 157, .external_lex_state = 2}, + [2283] = {.lex_state = 157, .external_lex_state = 2}, + [2284] = {.lex_state = 48, .external_lex_state = 2}, + [2285] = {.lex_state = 157, .external_lex_state = 2}, [2286] = {.lex_state = 157, .external_lex_state = 2}, [2287] = {.lex_state = 157, .external_lex_state = 2}, [2288] = {.lex_state = 5}, - [2289] = {.lex_state = 157, .external_lex_state = 2}, - [2290] = {.lex_state = 157, .external_lex_state = 2}, - [2291] = {.lex_state = 155, .external_lex_state = 2}, - [2292] = {.lex_state = 5}, - [2293] = {.lex_state = 157, .external_lex_state = 2}, - [2294] = {.lex_state = 50, .external_lex_state = 2}, - [2295] = {.lex_state = 48, .external_lex_state = 2}, - [2296] = {.lex_state = 50, .external_lex_state = 2}, - [2297] = {.lex_state = 50, .external_lex_state = 2}, + [2289] = {.lex_state = 46, .external_lex_state = 2}, + [2290] = {.lex_state = 47, .external_lex_state = 2}, + [2291] = {.lex_state = 5}, + [2292] = {.lex_state = 155, .external_lex_state = 2}, + [2293] = {.lex_state = 5}, + [2294] = {.lex_state = 47, .external_lex_state = 2}, + [2295] = {.lex_state = 50, .external_lex_state = 2}, + [2296] = {.lex_state = 48, .external_lex_state = 2}, + [2297] = {.lex_state = 157, .external_lex_state = 2}, [2298] = {.lex_state = 157, .external_lex_state = 2}, - [2299] = {.lex_state = 157, .external_lex_state = 2}, - [2300] = {.lex_state = 47, .external_lex_state = 2}, - [2301] = {.lex_state = 579}, - [2302] = {.lex_state = 579}, + [2299] = {.lex_state = 50, .external_lex_state = 2}, + [2300] = {.lex_state = 50, .external_lex_state = 2}, + [2301] = {.lex_state = 578}, + [2302] = {.lex_state = 578}, [2303] = {.lex_state = 48, .external_lex_state = 2}, - [2304] = {.lex_state = 579}, - [2305] = {.lex_state = 49, .external_lex_state = 2}, - [2306] = {.lex_state = 579}, - [2307] = {.lex_state = 579}, - [2308] = {.lex_state = 579}, - [2309] = {.lex_state = 577}, + [2304] = {.lex_state = 578}, + [2305] = {.lex_state = 576}, + [2306] = {.lex_state = 578}, + [2307] = {.lex_state = 578}, + [2308] = {.lex_state = 578}, + [2309] = {.lex_state = 49, .external_lex_state = 2}, [2310] = {.lex_state = 49, .external_lex_state = 2}, [2311] = {.lex_state = 7}, - [2312] = {.lex_state = 580}, + [2312] = {.lex_state = 49, .external_lex_state = 2}, [2313] = {.lex_state = 49, .external_lex_state = 2}, - [2314] = {.lex_state = 580}, - [2315] = {.lex_state = 580}, + [2314] = {.lex_state = 49, .external_lex_state = 2}, + [2315] = {.lex_state = 635}, [2316] = {.lex_state = 49, .external_lex_state = 2}, [2317] = {.lex_state = 49, .external_lex_state = 2}, [2318] = {.lex_state = 49, .external_lex_state = 2}, - [2319] = {.lex_state = 636}, + [2319] = {.lex_state = 579}, [2320] = {.lex_state = 49, .external_lex_state = 2}, [2321] = {.lex_state = 49, .external_lex_state = 2}, [2322] = {.lex_state = 49, .external_lex_state = 2}, @@ -36143,3208 +36087,3210 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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 = 580}, + [2335] = {.lex_state = 579}, [2336] = {.lex_state = 49, .external_lex_state = 2}, - [2337] = {.lex_state = 49, .external_lex_state = 2}, + [2337] = {.lex_state = 579}, [2338] = {.lex_state = 49, .external_lex_state = 2}, [2339] = {.lex_state = 49, .external_lex_state = 2}, - [2340] = {.lex_state = 580}, - [2341] = {.lex_state = 49, .external_lex_state = 2}, + [2340] = {.lex_state = 579}, + [2341] = {.lex_state = 579}, [2342] = {.lex_state = 49, .external_lex_state = 2}, [2343] = {.lex_state = 49, .external_lex_state = 2}, [2344] = {.lex_state = 7}, - [2345] = {.lex_state = 583}, + [2345] = {.lex_state = 635}, [2346] = {.lex_state = 636}, - [2347] = {.lex_state = 637}, - [2348] = {.lex_state = 637}, + [2347] = {.lex_state = 636}, + [2348] = {.lex_state = 582}, [2349] = {.lex_state = 49, .external_lex_state = 2}, [2350] = {.lex_state = 49, .external_lex_state = 2}, - [2351] = {.lex_state = 637}, - [2352] = {.lex_state = 49, .external_lex_state = 2}, - [2353] = {.lex_state = 640}, - [2354] = {.lex_state = 644}, - [2355] = {.lex_state = 583}, - [2356] = {.lex_state = 637}, - [2357] = {.lex_state = 583}, - [2358] = {.lex_state = 583}, - [2359] = {.lex_state = 583}, - [2360] = {.lex_state = 583}, - [2361] = {.lex_state = 49, .external_lex_state = 2}, + [2351] = {.lex_state = 582}, + [2352] = {.lex_state = 643}, + [2353] = {.lex_state = 582}, + [2354] = {.lex_state = 582}, + [2355] = {.lex_state = 49, .external_lex_state = 2}, + [2356] = {.lex_state = 49, .external_lex_state = 2}, + [2357] = {.lex_state = 49, .external_lex_state = 2}, + [2358] = {.lex_state = 49, .external_lex_state = 2}, + [2359] = {.lex_state = 49, .external_lex_state = 2}, + [2360] = {.lex_state = 582}, + [2361] = {.lex_state = 582}, [2362] = {.lex_state = 49, .external_lex_state = 2}, [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 = 635}, + [2364] = {.lex_state = 634}, + [2365] = {.lex_state = 636}, + [2366] = {.lex_state = 49, .external_lex_state = 2}, [2367] = {.lex_state = 49, .external_lex_state = 2}, [2368] = {.lex_state = 49, .external_lex_state = 2}, - [2369] = {.lex_state = 49, .external_lex_state = 2}, - [2370] = {.lex_state = 49, .external_lex_state = 2}, - [2371] = {.lex_state = 635}, - [2372] = {.lex_state = 648}, - [2373] = {.lex_state = 646}, - [2374] = {.lex_state = 646}, - [2375] = {.lex_state = 635}, - [2376] = {.lex_state = 583}, - [2377] = {.lex_state = 583}, - [2378] = {.lex_state = 583}, - [2379] = {.lex_state = 583}, - [2380] = {.lex_state = 640}, - [2381] = {.lex_state = 638}, - [2382] = {.lex_state = 638}, - [2383] = {.lex_state = 644}, - [2384] = {.lex_state = 575}, - [2385] = {.lex_state = 646}, - [2386] = {.lex_state = 575}, - [2387] = {.lex_state = 650}, - [2388] = {.lex_state = 648}, - [2389] = {.lex_state = 575}, - [2390] = {.lex_state = 635}, - [2391] = {.lex_state = 635}, - [2392] = {.lex_state = 635}, - [2393] = {.lex_state = 641}, - [2394] = {.lex_state = 648}, - [2395] = {.lex_state = 575}, - [2396] = {.lex_state = 575}, - [2397] = {.lex_state = 635}, - [2398] = {.lex_state = 638}, - [2399] = {.lex_state = 635}, - [2400] = {.lex_state = 575}, - [2401] = {.lex_state = 580}, - [2402] = {.lex_state = 638}, - [2403] = {.lex_state = 580}, - [2404] = {.lex_state = 645}, - [2405] = {.lex_state = 577}, - [2406] = {.lex_state = 646}, - [2407] = {.lex_state = 642}, - [2408] = {.lex_state = 623}, - [2409] = {.lex_state = 648}, - [2410] = {.lex_state = 648}, - [2411] = {.lex_state = 575}, - [2412] = {.lex_state = 635}, - [2413] = {.lex_state = 635}, - [2414] = {.lex_state = 648}, - [2415] = {.lex_state = 642}, - [2416] = {.lex_state = 650}, - [2417] = {.lex_state = 579}, - [2418] = {.lex_state = 649}, - [2419] = {.lex_state = 645}, - [2420] = {.lex_state = 52}, + [2369] = {.lex_state = 639}, + [2370] = {.lex_state = 636}, + [2371] = {.lex_state = 582}, + [2372] = {.lex_state = 582}, + [2373] = {.lex_state = 637}, + [2374] = {.lex_state = 647}, + [2375] = {.lex_state = 634}, + [2376] = {.lex_state = 582}, + [2377] = {.lex_state = 645}, + [2378] = {.lex_state = 643}, + [2379] = {.lex_state = 645}, + [2380] = {.lex_state = 639}, + [2381] = {.lex_state = 582}, + [2382] = {.lex_state = 637}, + [2383] = {.lex_state = 634}, + [2384] = {.lex_state = 649}, + [2385] = {.lex_state = 622}, + [2386] = {.lex_state = 641}, + [2387] = {.lex_state = 576}, + [2388] = {.lex_state = 645}, + [2389] = {.lex_state = 634}, + [2390] = {.lex_state = 634}, + [2391] = {.lex_state = 579}, + [2392] = {.lex_state = 634}, + [2393] = {.lex_state = 645}, + [2394] = {.lex_state = 637}, + [2395] = {.lex_state = 637}, + [2396] = {.lex_state = 574}, + [2397] = {.lex_state = 574}, + [2398] = {.lex_state = 574}, + [2399] = {.lex_state = 574}, + [2400] = {.lex_state = 647}, + [2401] = {.lex_state = 644}, + [2402] = {.lex_state = 579}, + [2403] = {.lex_state = 574}, + [2404] = {.lex_state = 574}, + [2405] = {.lex_state = 574}, + [2406] = {.lex_state = 634}, + [2407] = {.lex_state = 634}, + [2408] = {.lex_state = 640}, + [2409] = {.lex_state = 647}, + [2410] = {.lex_state = 647}, + [2411] = {.lex_state = 647}, + [2412] = {.lex_state = 578}, + [2413] = {.lex_state = 646}, + [2414] = {.lex_state = 651}, + [2415] = {.lex_state = 651}, + [2416] = {.lex_state = 646}, + [2417] = {.lex_state = 578}, + [2418] = {.lex_state = 52}, + [2419] = {.lex_state = 634}, + [2420] = {.lex_state = 648}, [2421] = {.lex_state = 170, .external_lex_state = 2}, [2422] = {.lex_state = 170, .external_lex_state = 2}, - [2423] = {.lex_state = 579}, - [2424] = {.lex_state = 652}, - [2425] = {.lex_state = 635}, - [2426] = {.lex_state = 623}, - [2427] = {.lex_state = 635}, - [2428] = {.lex_state = 641}, + [2423] = {.lex_state = 647}, + [2424] = {.lex_state = 170, .external_lex_state = 2}, + [2425] = {.lex_state = 644}, + [2426] = {.lex_state = 170, .external_lex_state = 2}, + [2427] = {.lex_state = 622}, + [2428] = {.lex_state = 634}, [2429] = {.lex_state = 647}, - [2430] = {.lex_state = 575}, - [2431] = {.lex_state = 579}, - [2432] = {.lex_state = 170, .external_lex_state = 2}, - [2433] = {.lex_state = 170, .external_lex_state = 2}, - [2434] = {.lex_state = 623}, - [2435] = {.lex_state = 170, .external_lex_state = 2}, - [2436] = {.lex_state = 647}, - [2437] = {.lex_state = 648}, - [2438] = {.lex_state = 648}, - [2439] = {.lex_state = 652}, - [2440] = {.lex_state = 578}, - [2441] = {.lex_state = 50, .external_lex_state = 2}, - [2442] = {.lex_state = 578}, - [2443] = {.lex_state = 170, .external_lex_state = 2}, - [2444] = {.lex_state = 54}, - [2445] = {.lex_state = 575}, - [2446] = {.lex_state = 53}, - [2447] = {.lex_state = 56}, - [2448] = {.lex_state = 575}, - [2449] = {.lex_state = 654}, - [2450] = {.lex_state = 579}, - [2451] = {.lex_state = 652}, - [2452] = {.lex_state = 654}, - [2453] = {.lex_state = 654}, - [2454] = {.lex_state = 649}, + [2430] = {.lex_state = 170, .external_lex_state = 2}, + [2431] = {.lex_state = 641}, + [2432] = {.lex_state = 634}, + [2433] = {.lex_state = 634}, + [2434] = {.lex_state = 574}, + [2435] = {.lex_state = 578}, + [2436] = {.lex_state = 649}, + [2437] = {.lex_state = 640}, + [2438] = {.lex_state = 647}, + [2439] = {.lex_state = 622}, + [2440] = {.lex_state = 53}, + [2441] = {.lex_state = 648}, + [2442] = {.lex_state = 170, .external_lex_state = 2}, + [2443] = {.lex_state = 578}, + [2444] = {.lex_state = 56}, + [2445] = {.lex_state = 646}, + [2446] = {.lex_state = 642}, + [2447] = {.lex_state = 54}, + [2448] = {.lex_state = 577}, + [2449] = {.lex_state = 653}, + [2450] = {.lex_state = 646}, + [2451] = {.lex_state = 653}, + [2452] = {.lex_state = 648}, + [2453] = {.lex_state = 653}, + [2454] = {.lex_state = 574}, [2455] = {.lex_state = 578}, - [2456] = {.lex_state = 649}, - [2457] = {.lex_state = 579}, - [2458] = {.lex_state = 579}, - [2459] = {.lex_state = 579}, - [2460] = {.lex_state = 651}, - [2461] = {.lex_state = 654}, - [2462] = {.lex_state = 647}, - [2463] = {.lex_state = 578}, - [2464] = {.lex_state = 52}, - [2465] = {.lex_state = 649}, - [2466] = {.lex_state = 649}, - [2467] = {.lex_state = 53}, - [2468] = {.lex_state = 652}, - [2469] = {.lex_state = 575}, - [2470] = {.lex_state = 575}, - [2471] = {.lex_state = 647}, - [2472] = {.lex_state = 577}, - [2473] = {.lex_state = 579}, - [2474] = {.lex_state = 643}, - [2475] = {.lex_state = 170, .external_lex_state = 2}, - [2476] = {.lex_state = 654}, - [2477] = {.lex_state = 579}, - [2478] = {.lex_state = 654}, - [2479] = {.lex_state = 649}, - [2480] = {.lex_state = 578}, - [2481] = {.lex_state = 654}, - [2482] = {.lex_state = 578}, - [2483] = {.lex_state = 643}, - [2484] = {.lex_state = 649}, - [2485] = {.lex_state = 575}, - [2486] = {.lex_state = 575}, - [2487] = {.lex_state = 575}, - [2488] = {.lex_state = 653}, - [2489] = {.lex_state = 656}, - [2490] = {.lex_state = 651}, - [2491] = {.lex_state = 57}, - [2492] = {.lex_state = 578}, - [2493] = {.lex_state = 50, .external_lex_state = 2}, - [2494] = {.lex_state = 649}, - [2495] = {.lex_state = 578}, - [2496] = {.lex_state = 653}, - [2497] = {.lex_state = 52}, - [2498] = {.lex_state = 52}, - [2499] = {.lex_state = 578}, - [2500] = {.lex_state = 654}, - [2501] = {.lex_state = 52}, - [2502] = {.lex_state = 578}, - [2503] = {.lex_state = 578}, - [2504] = {.lex_state = 654}, - [2505] = {.lex_state = 52}, - [2506] = {.lex_state = 658}, - [2507] = {.lex_state = 58}, - [2508] = {.lex_state = 654}, - [2509] = {.lex_state = 578}, - [2510] = {.lex_state = 578}, - [2511] = {.lex_state = 649}, - [2512] = {.lex_state = 578}, - [2513] = {.lex_state = 578}, - [2514] = {.lex_state = 578}, - [2515] = {.lex_state = 57}, - [2516] = {.lex_state = 579}, - [2517] = {.lex_state = 575}, - [2518] = {.lex_state = 578}, - [2519] = {.lex_state = 575}, - [2520] = {.lex_state = 653}, - [2521] = {.lex_state = 578}, - [2522] = {.lex_state = 2}, - [2523] = {.lex_state = 2}, - [2524] = {.lex_state = 154, .external_lex_state = 2}, - [2525] = {.lex_state = 655}, + [2456] = {.lex_state = 648}, + [2457] = {.lex_state = 577}, + [2458] = {.lex_state = 52}, + [2459] = {.lex_state = 574}, + [2460] = {.lex_state = 578}, + [2461] = {.lex_state = 653}, + [2462] = {.lex_state = 578}, + [2463] = {.lex_state = 577}, + [2464] = {.lex_state = 578}, + [2465] = {.lex_state = 653}, + [2466] = {.lex_state = 577}, + [2467] = {.lex_state = 574}, + [2468] = {.lex_state = 651}, + [2469] = {.lex_state = 50, .external_lex_state = 2}, + [2470] = {.lex_state = 576}, + [2471] = {.lex_state = 170, .external_lex_state = 2}, + [2472] = {.lex_state = 574}, + [2473] = {.lex_state = 650}, + [2474] = {.lex_state = 53}, + [2475] = {.lex_state = 578}, + [2476] = {.lex_state = 648}, + [2477] = {.lex_state = 651}, + [2478] = {.lex_state = 653}, + [2479] = {.lex_state = 657}, + [2480] = {.lex_state = 652}, + [2481] = {.lex_state = 653}, + [2482] = {.lex_state = 577}, + [2483] = {.lex_state = 57}, + [2484] = {.lex_state = 52}, + [2485] = {.lex_state = 577}, + [2486] = {.lex_state = 577}, + [2487] = {.lex_state = 648}, + [2488] = {.lex_state = 577}, + [2489] = {.lex_state = 648}, + [2490] = {.lex_state = 653}, + [2491] = {.lex_state = 577}, + [2492] = {.lex_state = 653}, + [2493] = {.lex_state = 652}, + [2494] = {.lex_state = 52}, + [2495] = {.lex_state = 653}, + [2496] = {.lex_state = 642}, + [2497] = {.lex_state = 655}, + [2498] = {.lex_state = 58}, + [2499] = {.lex_state = 574}, + [2500] = {.lex_state = 50, .external_lex_state = 2}, + [2501] = {.lex_state = 577}, + [2502] = {.lex_state = 648}, + [2503] = {.lex_state = 577}, + [2504] = {.lex_state = 650}, + [2505] = {.lex_state = 577}, + [2506] = {.lex_state = 574}, + [2507] = {.lex_state = 57}, + [2508] = {.lex_state = 648}, + [2509] = {.lex_state = 577}, + [2510] = {.lex_state = 574}, + [2511] = {.lex_state = 577}, + [2512] = {.lex_state = 577}, + [2513] = {.lex_state = 52}, + [2514] = {.lex_state = 52}, + [2515] = {.lex_state = 577}, + [2516] = {.lex_state = 55}, + [2517] = {.lex_state = 659}, + [2518] = {.lex_state = 154, .external_lex_state = 2}, + [2519] = {.lex_state = 154, .external_lex_state = 2}, + [2520] = {.lex_state = 578}, + [2521] = {.lex_state = 58}, + [2522] = {.lex_state = 578}, + [2523] = {.lex_state = 574}, + [2524] = {.lex_state = 574}, + [2525] = {.lex_state = 574}, [2526] = {.lex_state = 578}, - [2527] = {.lex_state = 575}, - [2528] = {.lex_state = 579}, - [2529] = {.lex_state = 579}, - [2530] = {.lex_state = 55}, - [2531] = {.lex_state = 58}, - [2532] = {.lex_state = 579}, - [2533] = {.lex_state = 579}, - [2534] = {.lex_state = 653}, - [2535] = {.lex_state = 658}, - [2536] = {.lex_state = 579}, - [2537] = {.lex_state = 578}, - [2538] = {.lex_state = 655}, - [2539] = {.lex_state = 655}, - [2540] = {.lex_state = 58}, + [2527] = {.lex_state = 578}, + [2528] = {.lex_state = 577}, + [2529] = {.lex_state = 2}, + [2530] = {.lex_state = 574}, + [2531] = {.lex_state = 652}, + [2532] = {.lex_state = 578}, + [2533] = {.lex_state = 574}, + [2534] = {.lex_state = 58}, + [2535] = {.lex_state = 58}, + [2536] = {.lex_state = 578}, + [2537] = {.lex_state = 577}, + [2538] = {.lex_state = 654}, + [2539] = {.lex_state = 577}, + [2540] = {.lex_state = 574}, [2541] = {.lex_state = 2}, - [2542] = {.lex_state = 578}, - [2543] = {.lex_state = 578}, + [2542] = {.lex_state = 657}, + [2543] = {.lex_state = 154, .external_lex_state = 2}, [2544] = {.lex_state = 578}, - [2545] = {.lex_state = 575}, + [2545] = {.lex_state = 574}, [2546] = {.lex_state = 2}, - [2547] = {.lex_state = 579}, - [2548] = {.lex_state = 660}, - [2549] = {.lex_state = 154, .external_lex_state = 2}, - [2550] = {.lex_state = 579}, - [2551] = {.lex_state = 575}, - [2552] = {.lex_state = 154, .external_lex_state = 2}, - [2553] = {.lex_state = 660}, - [2554] = {.lex_state = 579}, - [2555] = {.lex_state = 656}, - [2556] = {.lex_state = 575}, - [2557] = {.lex_state = 59}, - [2558] = {.lex_state = 579}, - [2559] = {.lex_state = 579}, - [2560] = {.lex_state = 579}, - [2561] = {.lex_state = 579}, + [2547] = {.lex_state = 2}, + [2548] = {.lex_state = 154, .external_lex_state = 2}, + [2549] = {.lex_state = 578}, + [2550] = {.lex_state = 577}, + [2551] = {.lex_state = 577}, + [2552] = {.lex_state = 577}, + [2553] = {.lex_state = 577}, + [2554] = {.lex_state = 578}, + [2555] = {.lex_state = 574}, + [2556] = {.lex_state = 659}, + [2557] = {.lex_state = 577}, + [2558] = {.lex_state = 574}, + [2559] = {.lex_state = 2}, + [2560] = {.lex_state = 577}, + [2561] = {.lex_state = 578}, [2562] = {.lex_state = 578}, - [2563] = {.lex_state = 649}, - [2564] = {.lex_state = 2}, - [2565] = {.lex_state = 575}, - [2566] = {.lex_state = 655}, - [2567] = {.lex_state = 154, .external_lex_state = 2}, - [2568] = {.lex_state = 578}, - [2569] = {.lex_state = 655}, - [2570] = {.lex_state = 578}, - [2571] = {.lex_state = 575}, - [2572] = {.lex_state = 58}, - [2573] = {.lex_state = 579}, - [2574] = {.lex_state = 575}, - [2575] = {.lex_state = 579}, - [2576] = {.lex_state = 579}, - [2577] = {.lex_state = 575}, - [2578] = {.lex_state = 578}, - [2579] = {.lex_state = 575}, - [2580] = {.lex_state = 578}, - [2581] = {.lex_state = 578}, - [2582] = {.lex_state = 579}, - [2583] = {.lex_state = 579}, - [2584] = {.lex_state = 578}, - [2585] = {.lex_state = 579}, - [2586] = {.lex_state = 662}, - [2587] = {.lex_state = 662}, - [2588] = {.lex_state = 662}, - [2589] = {.lex_state = 662}, - [2590] = {.lex_state = 662}, - [2591] = {.lex_state = 662}, - [2592] = {.lex_state = 662}, - [2593] = {.lex_state = 662}, - [2594] = {.lex_state = 662}, - [2595] = {.lex_state = 662}, - [2596] = {.lex_state = 2}, - [2597] = {.lex_state = 2}, - [2598] = {.lex_state = 659}, - [2599] = {.lex_state = 2}, - [2600] = {.lex_state = 2}, - [2601] = {.lex_state = 2}, - [2602] = {.lex_state = 2}, - [2603] = {.lex_state = 2}, - [2604] = {.lex_state = 2}, - [2605] = {.lex_state = 575}, - [2606] = {.lex_state = 575}, - [2607] = {.lex_state = 657}, - [2608] = {.lex_state = 660}, - [2609] = {.lex_state = 575}, - [2610] = {.lex_state = 575}, - [2611] = {.lex_state = 575}, - [2612] = {.lex_state = 575}, - [2613] = {.lex_state = 575}, - [2614] = {.lex_state = 660}, - [2615] = {.lex_state = 662}, - [2616] = {.lex_state = 662}, - [2617] = {.lex_state = 662}, - [2618] = {.lex_state = 60}, - [2619] = {.lex_state = 579}, - [2620] = {.lex_state = 575}, - [2621] = {.lex_state = 579}, - [2622] = {.lex_state = 579}, - [2623] = {.lex_state = 575}, - [2624] = {.lex_state = 575}, - [2625] = {.lex_state = 575}, - [2626] = {.lex_state = 575}, - [2627] = {.lex_state = 575}, - [2628] = {.lex_state = 575}, - [2629] = {.lex_state = 575}, - [2630] = {.lex_state = 579}, - [2631] = {.lex_state = 579}, - [2632] = {.lex_state = 655}, - [2633] = {.lex_state = 578}, - [2634] = {.lex_state = 578}, - [2635] = {.lex_state = 578}, - [2636] = {.lex_state = 655}, - [2637] = {.lex_state = 578}, - [2638] = {.lex_state = 578}, - [2639] = {.lex_state = 575}, - [2640] = {.lex_state = 578}, - [2641] = {.lex_state = 578}, - [2642] = {.lex_state = 575}, + [2563] = {.lex_state = 578}, + [2564] = {.lex_state = 577}, + [2565] = {.lex_state = 652}, + [2566] = {.lex_state = 578}, + [2567] = {.lex_state = 654}, + [2568] = {.lex_state = 648}, + [2569] = {.lex_state = 654}, + [2570] = {.lex_state = 654}, + [2571] = {.lex_state = 59}, + [2572] = {.lex_state = 578}, + [2573] = {.lex_state = 578}, + [2574] = {.lex_state = 655}, + [2575] = {.lex_state = 654}, + [2576] = {.lex_state = 574}, + [2577] = {.lex_state = 661}, + [2578] = {.lex_state = 574}, + [2579] = {.lex_state = 658}, + [2580] = {.lex_state = 577}, + [2581] = {.lex_state = 2}, + [2582] = {.lex_state = 577}, + [2583] = {.lex_state = 2}, + [2584] = {.lex_state = 577}, + [2585] = {.lex_state = 60}, + [2586] = {.lex_state = 574}, + [2587] = {.lex_state = 661}, + [2588] = {.lex_state = 578}, + [2589] = {.lex_state = 578}, + [2590] = {.lex_state = 574}, + [2591] = {.lex_state = 654}, + [2592] = {.lex_state = 654}, + [2593] = {.lex_state = 60}, + [2594] = {.lex_state = 2}, + [2595] = {.lex_state = 661}, + [2596] = {.lex_state = 578}, + [2597] = {.lex_state = 654}, + [2598] = {.lex_state = 654}, + [2599] = {.lex_state = 578}, + [2600] = {.lex_state = 574}, + [2601] = {.lex_state = 577}, + [2602] = {.lex_state = 577}, + [2603] = {.lex_state = 661}, + [2604] = {.lex_state = 578}, + [2605] = {.lex_state = 574}, + [2606] = {.lex_state = 661}, + [2607] = {.lex_state = 661}, + [2608] = {.lex_state = 578}, + [2609] = {.lex_state = 661}, + [2610] = {.lex_state = 577}, + [2611] = {.lex_state = 661}, + [2612] = {.lex_state = 574}, + [2613] = {.lex_state = 574}, + [2614] = {.lex_state = 661}, + [2615] = {.lex_state = 577}, + [2616] = {.lex_state = 2}, + [2617] = {.lex_state = 661}, + [2618] = {.lex_state = 661}, + [2619] = {.lex_state = 2}, + [2620] = {.lex_state = 659}, + [2621] = {.lex_state = 578}, + [2622] = {.lex_state = 574}, + [2623] = {.lex_state = 654}, + [2624] = {.lex_state = 577}, + [2625] = {.lex_state = 578}, + [2626] = {.lex_state = 574}, + [2627] = {.lex_state = 577}, + [2628] = {.lex_state = 574}, + [2629] = {.lex_state = 574}, + [2630] = {.lex_state = 661}, + [2631] = {.lex_state = 574}, + [2632] = {.lex_state = 2}, + [2633] = {.lex_state = 574}, + [2634] = {.lex_state = 656}, + [2635] = {.lex_state = 577}, + [2636] = {.lex_state = 659}, + [2637] = {.lex_state = 577}, + [2638] = {.lex_state = 574}, + [2639] = {.lex_state = 577}, + [2640] = {.lex_state = 574}, + [2641] = {.lex_state = 574}, + [2642] = {.lex_state = 2}, [2643] = {.lex_state = 578}, - [2644] = {.lex_state = 578}, - [2645] = {.lex_state = 578}, - [2646] = {.lex_state = 578}, - [2647] = {.lex_state = 655}, - [2648] = {.lex_state = 655}, - [2649] = {.lex_state = 655}, - [2650] = {.lex_state = 579}, - [2651] = {.lex_state = 575}, - [2652] = {.lex_state = 575}, - [2653] = {.lex_state = 575}, - [2654] = {.lex_state = 578}, - [2655] = {.lex_state = 579}, - [2656] = {.lex_state = 579}, - [2657] = {.lex_state = 579}, - [2658] = {.lex_state = 60}, - [2659] = {.lex_state = 61}, - [2660] = {.lex_state = 578}, - [2661] = {.lex_state = 61}, - [2662] = {.lex_state = 662}, + [2644] = {.lex_state = 574}, + [2645] = {.lex_state = 577}, + [2646] = {.lex_state = 574}, + [2647] = {.lex_state = 577}, + [2648] = {.lex_state = 574}, + [2649] = {.lex_state = 661}, + [2650] = {.lex_state = 578}, + [2651] = {.lex_state = 574}, + [2652] = {.lex_state = 577}, + [2653] = {.lex_state = 578}, + [2654] = {.lex_state = 577}, + [2655] = {.lex_state = 2}, + [2656] = {.lex_state = 578}, + [2657] = {.lex_state = 574}, + [2658] = {.lex_state = 578}, + [2659] = {.lex_state = 577}, + [2660] = {.lex_state = 574}, + [2661] = {.lex_state = 574}, + [2662] = {.lex_state = 644}, [2663] = {.lex_state = 578}, - [2664] = {.lex_state = 661}, - [2665] = {.lex_state = 657}, - [2666] = {.lex_state = 110}, + [2664] = {.lex_state = 577}, + [2665] = {.lex_state = 577}, + [2666] = {.lex_state = 577}, [2667] = {.lex_state = 2}, [2668] = {.lex_state = 2}, - [2669] = {.lex_state = 661}, - [2670] = {.lex_state = 579}, - [2671] = {.lex_state = 662}, - [2672] = {.lex_state = 662}, - [2673] = {.lex_state = 662}, - [2674] = {.lex_state = 579}, - [2675] = {.lex_state = 2}, + [2669] = {.lex_state = 578}, + [2670] = {.lex_state = 577}, + [2671] = {.lex_state = 661}, + [2672] = {.lex_state = 577}, + [2673] = {.lex_state = 574}, + [2674] = {.lex_state = 644}, + [2675] = {.lex_state = 661}, [2676] = {.lex_state = 2}, - [2677] = {.lex_state = 575}, - [2678] = {.lex_state = 662}, - [2679] = {.lex_state = 575}, - [2680] = {.lex_state = 579}, - [2681] = {.lex_state = 578}, - [2682] = {.lex_state = 578}, + [2677] = {.lex_state = 577}, + [2678] = {.lex_state = 61}, + [2679] = {.lex_state = 661}, + [2680] = {.lex_state = 661}, + [2681] = {.lex_state = 661}, + [2682] = {.lex_state = 577}, [2683] = {.lex_state = 578}, - [2684] = {.lex_state = 578}, - [2685] = {.lex_state = 578}, - [2686] = {.lex_state = 578}, - [2687] = {.lex_state = 575}, - [2688] = {.lex_state = 662}, - [2689] = {.lex_state = 578}, - [2690] = {.lex_state = 575}, - [2691] = {.lex_state = 641}, - [2692] = {.lex_state = 662}, - [2693] = {.lex_state = 662}, - [2694] = {.lex_state = 662}, + [2684] = {.lex_state = 574}, + [2685] = {.lex_state = 61}, + [2686] = {.lex_state = 656}, + [2687] = {.lex_state = 577}, + [2688] = {.lex_state = 661}, + [2689] = {.lex_state = 660}, + [2690] = {.lex_state = 577}, + [2691] = {.lex_state = 658}, + [2692] = {.lex_state = 2}, + [2693] = {.lex_state = 578}, + [2694] = {.lex_state = 644}, [2695] = {.lex_state = 2}, - [2696] = {.lex_state = 662}, - [2697] = {.lex_state = 662}, - [2698] = {.lex_state = 641}, - [2699] = {.lex_state = 579}, - [2700] = {.lex_state = 578}, - [2701] = {.lex_state = 641}, - [2702] = {.lex_state = 662}, - [2703] = {.lex_state = 578}, - [2704] = {.lex_state = 575}, - [2705] = {.lex_state = 2}, - [2706] = {.lex_state = 659}, - [2707] = {.lex_state = 2}, - [2708] = {.lex_state = 664}, - [2709] = {.lex_state = 641}, - [2710] = {.lex_state = 662}, - [2711] = {.lex_state = 575}, - [2712] = {.lex_state = 641}, - [2713] = {.lex_state = 641}, - [2714] = {.lex_state = 641}, - [2715] = {.lex_state = 641}, - [2716] = {.lex_state = 641}, - [2717] = {.lex_state = 578}, - [2718] = {.lex_state = 578}, - [2719] = {.lex_state = 575}, - [2720] = {.lex_state = 578}, - [2721] = {.lex_state = 641}, - [2722] = {.lex_state = 61}, - [2723] = {.lex_state = 61}, - [2724] = {.lex_state = 2}, - [2725] = {.lex_state = 61}, - [2726] = {.lex_state = 641}, - [2727] = {.lex_state = 578}, - [2728] = {.lex_state = 662}, + [2696] = {.lex_state = 661}, + [2697] = {.lex_state = 661}, + [2698] = {.lex_state = 661}, + [2699] = {.lex_state = 661}, + [2700] = {.lex_state = 574}, + [2701] = {.lex_state = 574}, + [2702] = {.lex_state = 644}, + [2703] = {.lex_state = 644}, + [2704] = {.lex_state = 661}, + [2705] = {.lex_state = 644}, + [2706] = {.lex_state = 2}, + [2707] = {.lex_state = 644}, + [2708] = {.lex_state = 661}, + [2709] = {.lex_state = 644}, + [2710] = {.lex_state = 644}, + [2711] = {.lex_state = 663}, + [2712] = {.lex_state = 661}, + [2713] = {.lex_state = 644}, + [2714] = {.lex_state = 577}, + [2715] = {.lex_state = 110}, + [2716] = {.lex_state = 644}, + [2717] = {.lex_state = 2}, + [2718] = {.lex_state = 661}, + [2719] = {.lex_state = 61}, + [2720] = {.lex_state = 574}, + [2721] = {.lex_state = 2}, + [2722] = {.lex_state = 577}, + [2723] = {.lex_state = 660}, + [2724] = {.lex_state = 577}, + [2725] = {.lex_state = 577}, + [2726] = {.lex_state = 61}, + [2727] = {.lex_state = 61}, + [2728] = {.lex_state = 577}, [2729] = {.lex_state = 2}, - [2730] = {.lex_state = 627}, - [2731] = {.lex_state = 2}, - [2732] = {.lex_state = 663}, - [2733] = {.lex_state = 2}, - [2734] = {.lex_state = 635}, - [2735] = {.lex_state = 663}, - [2736] = {.lex_state = 579}, - [2737] = {.lex_state = 579}, - [2738] = {.lex_state = 579}, - [2739] = {.lex_state = 579}, - [2740] = {.lex_state = 579}, - [2741] = {.lex_state = 579}, - [2742] = {.lex_state = 579}, - [2743] = {.lex_state = 579}, - [2744] = {.lex_state = 579}, - [2745] = {.lex_state = 579}, - [2746] = {.lex_state = 579}, - [2747] = {.lex_state = 579}, - [2748] = {.lex_state = 579}, - [2749] = {.lex_state = 579}, - [2750] = {.lex_state = 579}, - [2751] = {.lex_state = 579}, - [2752] = {.lex_state = 579}, - [2753] = {.lex_state = 579}, - [2754] = {.lex_state = 579}, - [2755] = {.lex_state = 579}, - [2756] = {.lex_state = 579}, - [2757] = {.lex_state = 579}, - [2758] = {.lex_state = 579}, - [2759] = {.lex_state = 579}, - [2760] = {.lex_state = 579}, - [2761] = {.lex_state = 579}, - [2762] = {.lex_state = 579}, - [2763] = {.lex_state = 579}, - [2764] = {.lex_state = 579}, - [2765] = {.lex_state = 579}, - [2766] = {.lex_state = 579}, - [2767] = {.lex_state = 579}, - [2768] = {.lex_state = 579}, - [2769] = {.lex_state = 623}, - [2770] = {.lex_state = 579}, - [2771] = {.lex_state = 579}, - [2772] = {.lex_state = 579}, - [2773] = {.lex_state = 579}, - [2774] = {.lex_state = 2}, - [2775] = {.lex_state = 579}, - [2776] = {.lex_state = 579}, - [2777] = {.lex_state = 575}, - [2778] = {.lex_state = 579}, - [2779] = {.lex_state = 579}, - [2780] = {.lex_state = 579}, - [2781] = {.lex_state = 579}, - [2782] = {.lex_state = 63}, - [2783] = {.lex_state = 579}, - [2784] = {.lex_state = 579}, - [2785] = {.lex_state = 579}, - [2786] = {.lex_state = 579}, - [2787] = {.lex_state = 579}, - [2788] = {.lex_state = 579}, - [2789] = {.lex_state = 579}, - [2790] = {.lex_state = 579}, - [2791] = {.lex_state = 579}, - [2792] = {.lex_state = 579}, - [2793] = {.lex_state = 579}, - [2794] = {.lex_state = 579}, - [2795] = {.lex_state = 579}, - [2796] = {.lex_state = 579}, - [2797] = {.lex_state = 579}, - [2798] = {.lex_state = 627}, - [2799] = {.lex_state = 657}, - [2800] = {.lex_state = 579}, - [2801] = {.lex_state = 62}, - [2802] = {.lex_state = 578}, - [2803] = {.lex_state = 579}, - [2804] = {.lex_state = 579}, - [2805] = {.lex_state = 579}, - [2806] = {.lex_state = 579}, - [2807] = {.lex_state = 579}, - [2808] = {.lex_state = 579}, - [2809] = {.lex_state = 579}, - [2810] = {.lex_state = 579}, - [2811] = {.lex_state = 579}, - [2812] = {.lex_state = 579}, - [2813] = {.lex_state = 579}, - [2814] = {.lex_state = 579}, - [2815] = {.lex_state = 579}, - [2816] = {.lex_state = 579}, - [2817] = {.lex_state = 579}, - [2818] = {.lex_state = 579}, - [2819] = {.lex_state = 579}, - [2820] = {.lex_state = 627}, - [2821] = {.lex_state = 579}, - [2822] = {.lex_state = 664}, - [2823] = {.lex_state = 641}, - [2824] = {.lex_state = 641}, - [2825] = {.lex_state = 641}, - [2826] = {.lex_state = 641}, - [2827] = {.lex_state = 641}, - [2828] = {.lex_state = 641}, - [2829] = {.lex_state = 579}, - [2830] = {.lex_state = 579}, - [2831] = {.lex_state = 579}, - [2832] = {.lex_state = 579}, - [2833] = {.lex_state = 579}, - [2834] = {.lex_state = 579}, - [2835] = {.lex_state = 579}, - [2836] = {.lex_state = 662}, - [2837] = {.lex_state = 579}, - [2838] = {.lex_state = 579}, - [2839] = {.lex_state = 579}, - [2840] = {.lex_state = 579}, - [2841] = {.lex_state = 579}, - [2842] = {.lex_state = 635}, - [2843] = {.lex_state = 635}, - [2844] = {.lex_state = 579}, - [2845] = {.lex_state = 635}, - [2846] = {.lex_state = 635}, - [2847] = {.lex_state = 2}, - [2848] = {.lex_state = 579}, - [2849] = {.lex_state = 579}, - [2850] = {.lex_state = 579}, - [2851] = {.lex_state = 579}, - [2852] = {.lex_state = 579}, - [2853] = {.lex_state = 579}, - [2854] = {.lex_state = 579}, - [2855] = {.lex_state = 579}, - [2856] = {.lex_state = 579}, - [2857] = {.lex_state = 579}, - [2858] = {.lex_state = 579}, - [2859] = {.lex_state = 579}, - [2860] = {.lex_state = 579}, - [2861] = {.lex_state = 579}, - [2862] = {.lex_state = 579}, - [2863] = {.lex_state = 579}, - [2864] = {.lex_state = 579}, - [2865] = {.lex_state = 579}, - [2866] = {.lex_state = 579}, - [2867] = {.lex_state = 579}, - [2868] = {.lex_state = 575}, - [2869] = {.lex_state = 579}, - [2870] = {.lex_state = 579}, - [2871] = {.lex_state = 579}, - [2872] = {.lex_state = 2}, - [2873] = {.lex_state = 2}, - [2874] = {.lex_state = 2}, - [2875] = {.lex_state = 2}, - [2876] = {.lex_state = 2}, - [2877] = {.lex_state = 2}, - [2878] = {.lex_state = 641}, - [2879] = {.lex_state = 575}, - [2880] = {.lex_state = 627}, - [2881] = {.lex_state = 579}, - [2882] = {.lex_state = 641}, - [2883] = {.lex_state = 579}, - [2884] = {.lex_state = 641}, - [2885] = {.lex_state = 575}, - [2886] = {.lex_state = 579}, - [2887] = {.lex_state = 579}, - [2888] = {.lex_state = 579}, - [2889] = {.lex_state = 579}, - [2890] = {.lex_state = 641}, - [2891] = {.lex_state = 579}, - [2892] = {.lex_state = 579}, - [2893] = {.lex_state = 579}, - [2894] = {.lex_state = 579}, - [2895] = {.lex_state = 579}, - [2896] = {.lex_state = 579}, - [2897] = {.lex_state = 579}, - [2898] = {.lex_state = 579}, - [2899] = {.lex_state = 663}, - [2900] = {.lex_state = 661}, - [2901] = {.lex_state = 663}, - [2902] = {.lex_state = 663}, - [2903] = {.lex_state = 663}, - [2904] = {.lex_state = 661}, - [2905] = {.lex_state = 627}, - [2906] = {.lex_state = 663}, - [2907] = {.lex_state = 663}, + [2730] = {.lex_state = 578}, + [2731] = {.lex_state = 626}, + [2732] = {.lex_state = 578}, + [2733] = {.lex_state = 578}, + [2734] = {.lex_state = 578}, + [2735] = {.lex_state = 660}, + [2736] = {.lex_state = 578}, + [2737] = {.lex_state = 578}, + [2738] = {.lex_state = 578}, + [2739] = {.lex_state = 578}, + [2740] = {.lex_state = 578}, + [2741] = {.lex_state = 578}, + [2742] = {.lex_state = 578}, + [2743] = {.lex_state = 578}, + [2744] = {.lex_state = 578}, + [2745] = {.lex_state = 578}, + [2746] = {.lex_state = 578}, + [2747] = {.lex_state = 578}, + [2748] = {.lex_state = 578}, + [2749] = {.lex_state = 578}, + [2750] = {.lex_state = 578}, + [2751] = {.lex_state = 578}, + [2752] = {.lex_state = 578}, + [2753] = {.lex_state = 578}, + [2754] = {.lex_state = 578}, + [2755] = {.lex_state = 578}, + [2756] = {.lex_state = 578}, + [2757] = {.lex_state = 578}, + [2758] = {.lex_state = 578}, + [2759] = {.lex_state = 578}, + [2760] = {.lex_state = 662}, + [2761] = {.lex_state = 578}, + [2762] = {.lex_state = 578}, + [2763] = {.lex_state = 578}, + [2764] = {.lex_state = 578}, + [2765] = {.lex_state = 626}, + [2766] = {.lex_state = 578}, + [2767] = {.lex_state = 644}, + [2768] = {.lex_state = 644}, + [2769] = {.lex_state = 578}, + [2770] = {.lex_state = 626}, + [2771] = {.lex_state = 626}, + [2772] = {.lex_state = 644}, + [2773] = {.lex_state = 662}, + [2774] = {.lex_state = 577}, + [2775] = {.lex_state = 644}, + [2776] = {.lex_state = 662}, + [2777] = {.lex_state = 662}, + [2778] = {.lex_state = 644}, + [2779] = {.lex_state = 62}, + [2780] = {.lex_state = 2}, + [2781] = {.lex_state = 578}, + [2782] = {.lex_state = 578}, + [2783] = {.lex_state = 578}, + [2784] = {.lex_state = 578}, + [2785] = {.lex_state = 578}, + [2786] = {.lex_state = 578}, + [2787] = {.lex_state = 578}, + [2788] = {.lex_state = 578}, + [2789] = {.lex_state = 578}, + [2790] = {.lex_state = 578}, + [2791] = {.lex_state = 578}, + [2792] = {.lex_state = 578}, + [2793] = {.lex_state = 578}, + [2794] = {.lex_state = 626}, + [2795] = {.lex_state = 578}, + [2796] = {.lex_state = 578}, + [2797] = {.lex_state = 578}, + [2798] = {.lex_state = 578}, + [2799] = {.lex_state = 578}, + [2800] = {.lex_state = 578}, + [2801] = {.lex_state = 634}, + [2802] = {.lex_state = 634}, + [2803] = {.lex_state = 578}, + [2804] = {.lex_state = 578}, + [2805] = {.lex_state = 578}, + [2806] = {.lex_state = 578}, + [2807] = {.lex_state = 578}, + [2808] = {.lex_state = 578}, + [2809] = {.lex_state = 2}, + [2810] = {.lex_state = 578}, + [2811] = {.lex_state = 644}, + [2812] = {.lex_state = 578}, + [2813] = {.lex_state = 2}, + [2814] = {.lex_state = 2}, + [2815] = {.lex_state = 2}, + [2816] = {.lex_state = 634}, + [2817] = {.lex_state = 634}, + [2818] = {.lex_state = 2}, + [2819] = {.lex_state = 2}, + [2820] = {.lex_state = 578}, + [2821] = {.lex_state = 574}, + [2822] = {.lex_state = 2}, + [2823] = {.lex_state = 626}, + [2824] = {.lex_state = 578}, + [2825] = {.lex_state = 644}, + [2826] = {.lex_state = 578}, + [2827] = {.lex_state = 578}, + [2828] = {.lex_state = 578}, + [2829] = {.lex_state = 644}, + [2830] = {.lex_state = 578}, + [2831] = {.lex_state = 578}, + [2832] = {.lex_state = 578}, + [2833] = {.lex_state = 662}, + [2834] = {.lex_state = 662}, + [2835] = {.lex_state = 577}, + [2836] = {.lex_state = 578}, + [2837] = {.lex_state = 622}, + [2838] = {.lex_state = 577}, + [2839] = {.lex_state = 634}, + [2840] = {.lex_state = 578}, + [2841] = {.lex_state = 578}, + [2842] = {.lex_state = 662}, + [2843] = {.lex_state = 661}, + [2844] = {.lex_state = 578}, + [2845] = {.lex_state = 578}, + [2846] = {.lex_state = 578}, + [2847] = {.lex_state = 578}, + [2848] = {.lex_state = 578}, + [2849] = {.lex_state = 574}, + [2850] = {.lex_state = 578}, + [2851] = {.lex_state = 626}, + [2852] = {.lex_state = 574}, + [2853] = {.lex_state = 578}, + [2854] = {.lex_state = 578}, + [2855] = {.lex_state = 578}, + [2856] = {.lex_state = 578}, + [2857] = {.lex_state = 662}, + [2858] = {.lex_state = 578}, + [2859] = {.lex_state = 2}, + [2860] = {.lex_state = 578}, + [2861] = {.lex_state = 578}, + [2862] = {.lex_state = 578}, + [2863] = {.lex_state = 656}, + [2864] = {.lex_state = 578}, + [2865] = {.lex_state = 662}, + [2866] = {.lex_state = 578}, + [2867] = {.lex_state = 578}, + [2868] = {.lex_state = 578}, + [2869] = {.lex_state = 578}, + [2870] = {.lex_state = 63}, + [2871] = {.lex_state = 578}, + [2872] = {.lex_state = 578}, + [2873] = {.lex_state = 578}, + [2874] = {.lex_state = 578}, + [2875] = {.lex_state = 578}, + [2876] = {.lex_state = 578}, + [2877] = {.lex_state = 577}, + [2878] = {.lex_state = 578}, + [2879] = {.lex_state = 2}, + [2880] = {.lex_state = 578}, + [2881] = {.lex_state = 662}, + [2882] = {.lex_state = 644}, + [2883] = {.lex_state = 578}, + [2884] = {.lex_state = 578}, + [2885] = {.lex_state = 578}, + [2886] = {.lex_state = 578}, + [2887] = {.lex_state = 578}, + [2888] = {.lex_state = 578}, + [2889] = {.lex_state = 578}, + [2890] = {.lex_state = 663}, + [2891] = {.lex_state = 578}, + [2892] = {.lex_state = 660}, + [2893] = {.lex_state = 578}, + [2894] = {.lex_state = 626}, + [2895] = {.lex_state = 574}, + [2896] = {.lex_state = 662}, + [2897] = {.lex_state = 578}, + [2898] = {.lex_state = 578}, + [2899] = {.lex_state = 2}, + [2900] = {.lex_state = 578}, + [2901] = {.lex_state = 578}, + [2902] = {.lex_state = 662}, + [2903] = {.lex_state = 578}, + [2904] = {.lex_state = 578}, + [2905] = {.lex_state = 662}, + [2906] = {.lex_state = 578}, + [2907] = {.lex_state = 578}, [2908] = {.lex_state = 578}, - [2909] = {.lex_state = 663}, - [2910] = {.lex_state = 663}, + [2909] = {.lex_state = 578}, + [2910] = {.lex_state = 578}, [2911] = {.lex_state = 578}, - [2912] = {.lex_state = 2}, - [2913] = {.lex_state = 663}, - [2914] = {.lex_state = 663}, - [2915] = {.lex_state = 641}, - [2916] = {.lex_state = 663}, - [2917] = {.lex_state = 627}, - [2918] = {.lex_state = 627}, - [2919] = {.lex_state = 627}, + [2912] = {.lex_state = 578}, + [2913] = {.lex_state = 578}, + [2914] = {.lex_state = 578}, + [2915] = {.lex_state = 578}, + [2916] = {.lex_state = 578}, + [2917] = {.lex_state = 644}, + [2918] = {.lex_state = 578}, + [2919] = {.lex_state = 644}, [2920] = {.lex_state = 578}, - [2921] = {.lex_state = 579}, - [2922] = {.lex_state = 579}, - [2923] = {.lex_state = 110}, - [2924] = {.lex_state = 627}, - [2925] = {.lex_state = 578}, - [2926] = {.lex_state = 663}, - [2927] = {.lex_state = 2}, - [2928] = {.lex_state = 627}, - [2929] = {.lex_state = 663}, - [2930] = {.lex_state = 110}, - [2931] = {.lex_state = 663}, - [2932] = {.lex_state = 2}, - [2933] = {.lex_state = 2}, - [2934] = {.lex_state = 663}, - [2935] = {.lex_state = 579}, - [2936] = {.lex_state = 635}, - [2937] = {.lex_state = 579}, - [2938] = {.lex_state = 579}, - [2939] = {.lex_state = 579}, - [2940] = {.lex_state = 575}, + [2921] = {.lex_state = 578}, + [2922] = {.lex_state = 578}, + [2923] = {.lex_state = 574}, + [2924] = {.lex_state = 2}, + [2925] = {.lex_state = 662}, + [2926] = {.lex_state = 110}, + [2927] = {.lex_state = 662}, + [2928] = {.lex_state = 634}, + [2929] = {.lex_state = 2}, + [2930] = {.lex_state = 662}, + [2931] = {.lex_state = 662}, + [2932] = {.lex_state = 662}, + [2933] = {.lex_state = 622}, + [2934] = {.lex_state = 574}, + [2935] = {.lex_state = 2}, + [2936] = {.lex_state = 626}, + [2937] = {.lex_state = 626}, + [2938] = {.lex_state = 634}, + [2939] = {.lex_state = 578}, + [2940] = {.lex_state = 110}, [2941] = {.lex_state = 2}, - [2942] = {.lex_state = 635}, - [2943] = {.lex_state = 635}, - [2944] = {.lex_state = 579}, - [2945] = {.lex_state = 110}, - [2946] = {.lex_state = 627}, - [2947] = {.lex_state = 579}, - [2948] = {.lex_state = 630}, - [2949] = {.lex_state = 579}, - [2950] = {.lex_state = 579}, - [2951] = {.lex_state = 579}, - [2952] = {.lex_state = 579}, - [2953] = {.lex_state = 635}, - [2954] = {.lex_state = 2}, + [2942] = {.lex_state = 626}, + [2943] = {.lex_state = 2}, + [2944] = {.lex_state = 2}, + [2945] = {.lex_state = 656}, + [2946] = {.lex_state = 2}, + [2947] = {.lex_state = 124, .external_lex_state = 2}, + [2948] = {.lex_state = 64}, + [2949] = {.lex_state = 578}, + [2950] = {.lex_state = 578}, + [2951] = {.lex_state = 2}, + [2952] = {.lex_state = 578}, + [2953] = {.lex_state = 110}, + [2954] = {.lex_state = 662}, [2955] = {.lex_state = 2}, - [2956] = {.lex_state = 663}, - [2957] = {.lex_state = 579}, - [2958] = {.lex_state = 635}, - [2959] = {.lex_state = 663}, - [2960] = {.lex_state = 579}, - [2961] = {.lex_state = 579}, - [2962] = {.lex_state = 110}, - [2963] = {.lex_state = 110}, - [2964] = {.lex_state = 579}, - [2965] = {.lex_state = 124, .external_lex_state = 2}, - [2966] = {.lex_state = 579}, - [2967] = {.lex_state = 579}, - [2968] = {.lex_state = 663}, - [2969] = {.lex_state = 575}, - [2970] = {.lex_state = 2}, - [2971] = {.lex_state = 663}, - [2972] = {.lex_state = 575}, + [2956] = {.lex_state = 578}, + [2957] = {.lex_state = 629}, + [2958] = {.lex_state = 634}, + [2959] = {.lex_state = 578}, + [2960] = {.lex_state = 578}, + [2961] = {.lex_state = 634}, + [2962] = {.lex_state = 578}, + [2963] = {.lex_state = 626}, + [2964] = {.lex_state = 2}, + [2965] = {.lex_state = 2}, + [2966] = {.lex_state = 574}, + [2967] = {.lex_state = 578}, + [2968] = {.lex_state = 2}, + [2969] = {.lex_state = 577}, + [2970] = {.lex_state = 578}, + [2971] = {.lex_state = 578}, + [2972] = {.lex_state = 578}, [2973] = {.lex_state = 578}, - [2974] = {.lex_state = 110}, - [2975] = {.lex_state = 635}, - [2976] = {.lex_state = 2}, - [2977] = {.lex_state = 2}, - [2978] = {.lex_state = 67}, - [2979] = {.lex_state = 579}, - [2980] = {.lex_state = 579}, - [2981] = {.lex_state = 578}, - [2982] = {.lex_state = 578}, - [2983] = {.lex_state = 2}, - [2984] = {.lex_state = 2}, - [2985] = {.lex_state = 2}, - [2986] = {.lex_state = 579}, - [2987] = {.lex_state = 2}, - [2988] = {.lex_state = 630}, + [2974] = {.lex_state = 629}, + [2975] = {.lex_state = 629}, + [2976] = {.lex_state = 578}, + [2977] = {.lex_state = 578}, + [2978] = {.lex_state = 578}, + [2979] = {.lex_state = 2}, + [2980] = {.lex_state = 578}, + [2981] = {.lex_state = 2}, + [2982] = {.lex_state = 2}, + [2983] = {.lex_state = 578}, + [2984] = {.lex_state = 578}, + [2985] = {.lex_state = 629}, + [2986] = {.lex_state = 110}, + [2987] = {.lex_state = 662}, + [2988] = {.lex_state = 2}, [2989] = {.lex_state = 578}, - [2990] = {.lex_state = 630}, - [2991] = {.lex_state = 2}, - [2992] = {.lex_state = 2}, - [2993] = {.lex_state = 579}, - [2994] = {.lex_state = 2}, - [2995] = {.lex_state = 579}, - [2996] = {.lex_state = 72}, - [2997] = {.lex_state = 579}, - [2998] = {.lex_state = 2}, - [2999] = {.lex_state = 635}, - [3000] = {.lex_state = 579}, - [3001] = {.lex_state = 627}, - [3002] = {.lex_state = 635}, - [3003] = {.lex_state = 627}, - [3004] = {.lex_state = 578}, - [3005] = {.lex_state = 2}, - [3006] = {.lex_state = 2}, - [3007] = {.lex_state = 2}, - [3008] = {.lex_state = 663}, + [2990] = {.lex_state = 2}, + [2991] = {.lex_state = 662}, + [2992] = {.lex_state = 578}, + [2993] = {.lex_state = 578}, + [2994] = {.lex_state = 578}, + [2995] = {.lex_state = 578}, + [2996] = {.lex_state = 662}, + [2997] = {.lex_state = 67}, + [2998] = {.lex_state = 662}, + [2999] = {.lex_state = 577}, + [3000] = {.lex_state = 577}, + [3001] = {.lex_state = 110}, + [3002] = {.lex_state = 577}, + [3003] = {.lex_state = 578}, + [3004] = {.lex_state = 662}, + [3005] = {.lex_state = 578}, + [3006] = {.lex_state = 578}, + [3007] = {.lex_state = 578}, + [3008] = {.lex_state = 578}, [3009] = {.lex_state = 578}, - [3010] = {.lex_state = 627}, + [3010] = {.lex_state = 578}, [3011] = {.lex_state = 578}, - [3012] = {.lex_state = 2}, - [3013] = {.lex_state = 2}, - [3014] = {.lex_state = 627}, - [3015] = {.lex_state = 663}, - [3016] = {.lex_state = 627}, - [3017] = {.lex_state = 657}, - [3018] = {.lex_state = 623}, - [3019] = {.lex_state = 2}, - [3020] = {.lex_state = 2}, - [3021] = {.lex_state = 64}, - [3022] = {.lex_state = 663}, - [3023] = {.lex_state = 2}, - [3024] = {.lex_state = 579}, - [3025] = {.lex_state = 663}, - [3026] = {.lex_state = 579}, - [3027] = {.lex_state = 579}, - [3028] = {.lex_state = 663}, - [3029] = {.lex_state = 579}, - [3030] = {.lex_state = 663}, - [3031] = {.lex_state = 579}, - [3032] = {.lex_state = 579}, - [3033] = {.lex_state = 579}, - [3034] = {.lex_state = 627}, - [3035] = {.lex_state = 579}, - [3036] = {.lex_state = 579}, - [3037] = {.lex_state = 630}, - [3038] = {.lex_state = 630}, - [3039] = {.lex_state = 627}, - [3040] = {.lex_state = 578}, - [3041] = {.lex_state = 579}, - [3042] = {.lex_state = 2}, - [3043] = {.lex_state = 579}, - [3044] = {.lex_state = 579}, - [3045] = {.lex_state = 64}, - [3046] = {.lex_state = 579}, - [3047] = {.lex_state = 579}, - [3048] = {.lex_state = 579}, - [3049] = {.lex_state = 579}, - [3050] = {.lex_state = 578}, - [3051] = {.lex_state = 579}, - [3052] = {.lex_state = 61}, - [3053] = {.lex_state = 579}, - [3054] = {.lex_state = 579}, - [3055] = {.lex_state = 61}, - [3056] = {.lex_state = 2}, - [3057] = {.lex_state = 2}, - [3058] = {.lex_state = 630}, - [3059] = {.lex_state = 630}, - [3060] = {.lex_state = 630}, - [3061] = {.lex_state = 627}, - [3062] = {.lex_state = 61}, - [3063] = {.lex_state = 61}, - [3064] = {.lex_state = 627}, - [3065] = {.lex_state = 579}, - [3066] = {.lex_state = 579}, - [3067] = {.lex_state = 579}, - [3068] = {.lex_state = 630}, - [3069] = {.lex_state = 627}, - [3070] = {.lex_state = 579}, - [3071] = {.lex_state = 2}, - [3072] = {.lex_state = 627}, - [3073] = {.lex_state = 579}, - [3074] = {.lex_state = 62}, - [3075] = {.lex_state = 2}, - [3076] = {.lex_state = 188}, - [3077] = {.lex_state = 579}, - [3078] = {.lex_state = 579}, - [3079] = {.lex_state = 579}, - [3080] = {.lex_state = 578}, - [3081] = {.lex_state = 627}, - [3082] = {.lex_state = 630}, - [3083] = {.lex_state = 579}, - [3084] = {.lex_state = 627}, - [3085] = {.lex_state = 627}, - [3086] = {.lex_state = 627}, - [3087] = {.lex_state = 65}, - [3088] = {.lex_state = 67}, - [3089] = {.lex_state = 579}, - [3090] = {.lex_state = 65}, - [3091] = {.lex_state = 579}, - [3092] = {.lex_state = 65}, - [3093] = {.lex_state = 630}, - [3094] = {.lex_state = 579}, - [3095] = {.lex_state = 65}, - [3096] = {.lex_state = 65}, - [3097] = {.lex_state = 579}, - [3098] = {.lex_state = 579}, - [3099] = {.lex_state = 65}, - [3100] = {.lex_state = 578}, - [3101] = {.lex_state = 579}, - [3102] = {.lex_state = 630}, - [3103] = {.lex_state = 61}, - [3104] = {.lex_state = 65}, - [3105] = {.lex_state = 630}, - [3106] = {.lex_state = 579}, - [3107] = {.lex_state = 627}, - [3108] = {.lex_state = 630}, - [3109] = {.lex_state = 630}, - [3110] = {.lex_state = 630}, - [3111] = {.lex_state = 630}, - [3112] = {.lex_state = 627}, - [3113] = {.lex_state = 630}, - [3114] = {.lex_state = 630}, - [3115] = {.lex_state = 627}, - [3116] = {.lex_state = 630}, - [3117] = {.lex_state = 630}, - [3118] = {.lex_state = 627}, - [3119] = {.lex_state = 627}, - [3120] = {.lex_state = 627}, - [3121] = {.lex_state = 61}, - [3122] = {.lex_state = 630}, - [3123] = {.lex_state = 630}, - [3124] = {.lex_state = 630}, - [3125] = {.lex_state = 630}, - [3126] = {.lex_state = 627}, - [3127] = {.lex_state = 627}, - [3128] = {.lex_state = 627}, - [3129] = {.lex_state = 630}, - [3130] = {.lex_state = 630}, - [3131] = {.lex_state = 630}, - [3132] = {.lex_state = 630}, - [3133] = {.lex_state = 630}, - [3134] = {.lex_state = 630}, - [3135] = {.lex_state = 630}, - [3136] = {.lex_state = 630}, - [3137] = {.lex_state = 630}, - [3138] = {.lex_state = 630}, - [3139] = {.lex_state = 630}, - [3140] = {.lex_state = 579}, - [3141] = {.lex_state = 579}, - [3142] = {.lex_state = 2}, - [3143] = {.lex_state = 579}, - [3144] = {.lex_state = 630}, - [3145] = {.lex_state = 630}, - [3146] = {.lex_state = 65}, - [3147] = {.lex_state = 579}, - [3148] = {.lex_state = 579}, - [3149] = {.lex_state = 70}, - [3150] = {.lex_state = 579}, - [3151] = {.lex_state = 579}, - [3152] = {.lex_state = 65}, - [3153] = {.lex_state = 630}, - [3154] = {.lex_state = 630}, - [3155] = {.lex_state = 630}, - [3156] = {.lex_state = 627}, - [3157] = {.lex_state = 579}, - [3158] = {.lex_state = 630}, - [3159] = {.lex_state = 579}, - [3160] = {.lex_state = 579}, - [3161] = {.lex_state = 630}, - [3162] = {.lex_state = 630}, - [3163] = {.lex_state = 630}, - [3164] = {.lex_state = 630}, - [3165] = {.lex_state = 630}, - [3166] = {.lex_state = 630}, - [3167] = {.lex_state = 630}, - [3168] = {.lex_state = 630}, - [3169] = {.lex_state = 579}, - [3170] = {.lex_state = 630}, - [3171] = {.lex_state = 70}, - [3172] = {.lex_state = 630}, - [3173] = {.lex_state = 630}, - [3174] = {.lex_state = 2}, - [3175] = {.lex_state = 630}, - [3176] = {.lex_state = 2}, + [3012] = {.lex_state = 578}, + [3013] = {.lex_state = 110}, + [3014] = {.lex_state = 2}, + [3015] = {.lex_state = 578}, + [3016] = {.lex_state = 577}, + [3017] = {.lex_state = 626}, + [3018] = {.lex_state = 626}, + [3019] = {.lex_state = 634}, + [3020] = {.lex_state = 634}, + [3021] = {.lex_state = 578}, + [3022] = {.lex_state = 578}, + [3023] = {.lex_state = 577}, + [3024] = {.lex_state = 578}, + [3025] = {.lex_state = 2}, + [3026] = {.lex_state = 2}, + [3027] = {.lex_state = 626}, + [3028] = {.lex_state = 2}, + [3029] = {.lex_state = 2}, + [3030] = {.lex_state = 577}, + [3031] = {.lex_state = 2}, + [3032] = {.lex_state = 64}, + [3033] = {.lex_state = 634}, + [3034] = {.lex_state = 634}, + [3035] = {.lex_state = 626}, + [3036] = {.lex_state = 577}, + [3037] = {.lex_state = 662}, + [3038] = {.lex_state = 2}, + [3039] = {.lex_state = 662}, + [3040] = {.lex_state = 626}, + [3041] = {.lex_state = 626}, + [3042] = {.lex_state = 578}, + [3043] = {.lex_state = 2}, + [3044] = {.lex_state = 629}, + [3045] = {.lex_state = 2}, + [3046] = {.lex_state = 577}, + [3047] = {.lex_state = 577}, + [3048] = {.lex_state = 578}, + [3049] = {.lex_state = 662}, + [3050] = {.lex_state = 72}, + [3051] = {.lex_state = 578}, + [3052] = {.lex_state = 65}, + [3053] = {.lex_state = 629}, + [3054] = {.lex_state = 629}, + [3055] = {.lex_state = 578}, + [3056] = {.lex_state = 70}, + [3057] = {.lex_state = 577}, + [3058] = {.lex_state = 626}, + [3059] = {.lex_state = 626}, + [3060] = {.lex_state = 578}, + [3061] = {.lex_state = 577}, + [3062] = {.lex_state = 629}, + [3063] = {.lex_state = 629}, + [3064] = {.lex_state = 578}, + [3065] = {.lex_state = 629}, + [3066] = {.lex_state = 629}, + [3067] = {.lex_state = 629}, + [3068] = {.lex_state = 629}, + [3069] = {.lex_state = 70}, + [3070] = {.lex_state = 629}, + [3071] = {.lex_state = 629}, + [3072] = {.lex_state = 577}, + [3073] = {.lex_state = 578}, + [3074] = {.lex_state = 65}, + [3075] = {.lex_state = 65}, + [3076] = {.lex_state = 629}, + [3077] = {.lex_state = 629}, + [3078] = {.lex_state = 65}, + [3079] = {.lex_state = 578}, + [3080] = {.lex_state = 68}, + [3081] = {.lex_state = 629}, + [3082] = {.lex_state = 629}, + [3083] = {.lex_state = 629}, + [3084] = {.lex_state = 2}, + [3085] = {.lex_state = 577}, + [3086] = {.lex_state = 2}, + [3087] = {.lex_state = 629}, + [3088] = {.lex_state = 2}, + [3089] = {.lex_state = 629}, + [3090] = {.lex_state = 629}, + [3091] = {.lex_state = 629}, + [3092] = {.lex_state = 629}, + [3093] = {.lex_state = 577}, + [3094] = {.lex_state = 629}, + [3095] = {.lex_state = 629}, + [3096] = {.lex_state = 629}, + [3097] = {.lex_state = 629}, + [3098] = {.lex_state = 629}, + [3099] = {.lex_state = 629}, + [3100] = {.lex_state = 2}, + [3101] = {.lex_state = 629}, + [3102] = {.lex_state = 2}, + [3103] = {.lex_state = 629}, + [3104] = {.lex_state = 629}, + [3105] = {.lex_state = 629}, + [3106] = {.lex_state = 65}, + [3107] = {.lex_state = 629}, + [3108] = {.lex_state = 65}, + [3109] = {.lex_state = 626}, + [3110] = {.lex_state = 629}, + [3111] = {.lex_state = 629}, + [3112] = {.lex_state = 629}, + [3113] = {.lex_state = 629}, + [3114] = {.lex_state = 626}, + [3115] = {.lex_state = 629}, + [3116] = {.lex_state = 629}, + [3117] = {.lex_state = 629}, + [3118] = {.lex_state = 629}, + [3119] = {.lex_state = 629}, + [3120] = {.lex_state = 629}, + [3121] = {.lex_state = 65}, + [3122] = {.lex_state = 578}, + [3123] = {.lex_state = 629}, + [3124] = {.lex_state = 66}, + [3125] = {.lex_state = 65}, + [3126] = {.lex_state = 629}, + [3127] = {.lex_state = 65}, + [3128] = {.lex_state = 629}, + [3129] = {.lex_state = 65}, + [3130] = {.lex_state = 577}, + [3131] = {.lex_state = 629}, + [3132] = {.lex_state = 578}, + [3133] = {.lex_state = 578}, + [3134] = {.lex_state = 578}, + [3135] = {.lex_state = 629}, + [3136] = {.lex_state = 578}, + [3137] = {.lex_state = 61}, + [3138] = {.lex_state = 626}, + [3139] = {.lex_state = 626}, + [3140] = {.lex_state = 2}, + [3141] = {.lex_state = 2}, + [3142] = {.lex_state = 578}, + [3143] = {.lex_state = 578}, + [3144] = {.lex_state = 578}, + [3145] = {.lex_state = 578}, + [3146] = {.lex_state = 578}, + [3147] = {.lex_state = 2}, + [3148] = {.lex_state = 578}, + [3149] = {.lex_state = 578}, + [3150] = {.lex_state = 2}, + [3151] = {.lex_state = 61}, + [3152] = {.lex_state = 626}, + [3153] = {.lex_state = 626}, + [3154] = {.lex_state = 629}, + [3155] = {.lex_state = 629}, + [3156] = {.lex_state = 626}, + [3157] = {.lex_state = 626}, + [3158] = {.lex_state = 188}, + [3159] = {.lex_state = 578}, + [3160] = {.lex_state = 578}, + [3161] = {.lex_state = 578}, + [3162] = {.lex_state = 629}, + [3163] = {.lex_state = 578}, + [3164] = {.lex_state = 2}, + [3165] = {.lex_state = 578}, + [3166] = {.lex_state = 2}, + [3167] = {.lex_state = 578}, + [3168] = {.lex_state = 2}, + [3169] = {.lex_state = 2}, + [3170] = {.lex_state = 2}, + [3171] = {.lex_state = 578}, + [3172] = {.lex_state = 578}, + [3173] = {.lex_state = 629}, + [3174] = {.lex_state = 61}, + [3175] = {.lex_state = 626}, + [3176] = {.lex_state = 67}, [3177] = {.lex_state = 2}, - [3178] = {.lex_state = 627}, - [3179] = {.lex_state = 630}, - [3180] = {.lex_state = 630}, - [3181] = {.lex_state = 2}, - [3182] = {.lex_state = 627}, - [3183] = {.lex_state = 2}, - [3184] = {.lex_state = 579}, + [3178] = {.lex_state = 578}, + [3179] = {.lex_state = 578}, + [3180] = {.lex_state = 578}, + [3181] = {.lex_state = 578}, + [3182] = {.lex_state = 578}, + [3183] = {.lex_state = 578}, + [3184] = {.lex_state = 2}, [3185] = {.lex_state = 2}, [3186] = {.lex_state = 578}, - [3187] = {.lex_state = 630}, - [3188] = {.lex_state = 630}, - [3189] = {.lex_state = 579}, - [3190] = {.lex_state = 66}, - [3191] = {.lex_state = 630}, - [3192] = {.lex_state = 630}, - [3193] = {.lex_state = 630}, - [3194] = {.lex_state = 579}, - [3195] = {.lex_state = 2}, - [3196] = {.lex_state = 2}, - [3197] = {.lex_state = 68}, - [3198] = {.lex_state = 579}, - [3199] = {.lex_state = 2}, - [3200] = {.lex_state = 579}, - [3201] = {.lex_state = 579}, - [3202] = {.lex_state = 630}, - [3203] = {.lex_state = 630}, - [3204] = {.lex_state = 630}, - [3205] = {.lex_state = 2}, - [3206] = {.lex_state = 2}, - [3207] = {.lex_state = 2}, - [3208] = {.lex_state = 2}, - [3209] = {.lex_state = 2}, - [3210] = {.lex_state = 2}, - [3211] = {.lex_state = 2}, - [3212] = {.lex_state = 579}, - [3213] = {.lex_state = 579}, - [3214] = {.lex_state = 630}, - [3215] = {.lex_state = 578}, - [3216] = {.lex_state = 630}, - [3217] = {.lex_state = 579}, - [3218] = {.lex_state = 635}, - [3219] = {.lex_state = 579}, - [3220] = {.lex_state = 579}, - [3221] = {.lex_state = 579}, - [3222] = {.lex_state = 630}, - [3223] = {.lex_state = 630}, - [3224] = {.lex_state = 579}, - [3225] = {.lex_state = 579}, - [3226] = {.lex_state = 635}, - [3227] = {.lex_state = 61}, - [3228] = {.lex_state = 579}, - [3229] = {.lex_state = 579}, - [3230] = {.lex_state = 2}, - [3231] = {.lex_state = 2}, - [3232] = {.lex_state = 627}, - [3233] = {.lex_state = 579}, - [3234] = {.lex_state = 65}, - [3235] = {.lex_state = 49, .external_lex_state = 2}, - [3236] = {.lex_state = 627}, - [3237] = {.lex_state = 627}, - [3238] = {.lex_state = 579}, - [3239] = {.lex_state = 578}, - [3240] = {.lex_state = 630}, - [3241] = {.lex_state = 579}, - [3242] = {.lex_state = 2}, - [3243] = {.lex_state = 2}, - [3244] = {.lex_state = 627}, - [3245] = {.lex_state = 579}, - [3246] = {.lex_state = 65}, - [3247] = {.lex_state = 630}, - [3248] = {.lex_state = 627}, - [3249] = {.lex_state = 65}, - [3250] = {.lex_state = 630}, - [3251] = {.lex_state = 578}, - [3252] = {.lex_state = 2}, + [3187] = {.lex_state = 629}, + [3188] = {.lex_state = 578}, + [3189] = {.lex_state = 629}, + [3190] = {.lex_state = 629}, + [3191] = {.lex_state = 578}, + [3192] = {.lex_state = 2}, + [3193] = {.lex_state = 2}, + [3194] = {.lex_state = 578}, + [3195] = {.lex_state = 578}, + [3196] = {.lex_state = 578}, + [3197] = {.lex_state = 626}, + [3198] = {.lex_state = 578}, + [3199] = {.lex_state = 578}, + [3200] = {.lex_state = 578}, + [3201] = {.lex_state = 626}, + [3202] = {.lex_state = 662}, + [3203] = {.lex_state = 578}, + [3204] = {.lex_state = 65}, + [3205] = {.lex_state = 578}, + [3206] = {.lex_state = 626}, + [3207] = {.lex_state = 629}, + [3208] = {.lex_state = 634}, + [3209] = {.lex_state = 629}, + [3210] = {.lex_state = 629}, + [3211] = {.lex_state = 629}, + [3212] = {.lex_state = 49, .external_lex_state = 2}, + [3213] = {.lex_state = 626}, + [3214] = {.lex_state = 629}, + [3215] = {.lex_state = 629}, + [3216] = {.lex_state = 629}, + [3217] = {.lex_state = 629}, + [3218] = {.lex_state = 629}, + [3219] = {.lex_state = 634}, + [3220] = {.lex_state = 626}, + [3221] = {.lex_state = 578}, + [3222] = {.lex_state = 634}, + [3223] = {.lex_state = 578}, + [3224] = {.lex_state = 2}, + [3225] = {.lex_state = 62}, + [3226] = {.lex_state = 2}, + [3227] = {.lex_state = 578}, + [3228] = {.lex_state = 629}, + [3229] = {.lex_state = 626}, + [3230] = {.lex_state = 578}, + [3231] = {.lex_state = 629}, + [3232] = {.lex_state = 629}, + [3233] = {.lex_state = 578}, + [3234] = {.lex_state = 626}, + [3235] = {.lex_state = 578}, + [3236] = {.lex_state = 2}, + [3237] = {.lex_state = 626}, + [3238] = {.lex_state = 2}, + [3239] = {.lex_state = 2}, + [3240] = {.lex_state = 629}, + [3241] = {.lex_state = 626}, + [3242] = {.lex_state = 626}, + [3243] = {.lex_state = 65}, + [3244] = {.lex_state = 61}, + [3245] = {.lex_state = 61}, + [3246] = {.lex_state = 626}, + [3247] = {.lex_state = 629}, + [3248] = {.lex_state = 629}, + [3249] = {.lex_state = 578}, + [3250] = {.lex_state = 61}, + [3251] = {.lex_state = 629}, + [3252] = {.lex_state = 61}, [3253] = {.lex_state = 2}, - [3254] = {.lex_state = 635}, - [3255] = {.lex_state = 579}, - [3256] = {.lex_state = 663}, - [3257] = {.lex_state = 627}, - [3258] = {.lex_state = 65}, - [3259] = {.lex_state = 630}, - [3260] = {.lex_state = 630}, - [3261] = {.lex_state = 579}, - [3262] = {.lex_state = 630}, - [3263] = {.lex_state = 630}, - [3264] = {.lex_state = 630}, - [3265] = {.lex_state = 630}, - [3266] = {.lex_state = 630}, - [3267] = {.lex_state = 579}, - [3268] = {.lex_state = 630}, - [3269] = {.lex_state = 579}, - [3270] = {.lex_state = 579}, - [3271] = {.lex_state = 630}, - [3272] = {.lex_state = 2}, - [3273] = {.lex_state = 630}, - [3274] = {.lex_state = 630}, - [3275] = {.lex_state = 630}, - [3276] = {.lex_state = 2}, - [3277] = {.lex_state = 630}, - [3278] = {.lex_state = 630}, - [3279] = {.lex_state = 630}, - [3280] = {.lex_state = 627}, - [3281] = {.lex_state = 579}, - [3282] = {.lex_state = 630}, - [3283] = {.lex_state = 630}, - [3284] = {.lex_state = 2}, - [3285] = {.lex_state = 2}, - [3286] = {.lex_state = 630}, - [3287] = {.lex_state = 630}, - [3288] = {.lex_state = 630}, - [3289] = {.lex_state = 188}, - [3290] = {.lex_state = 579}, - [3291] = {.lex_state = 627}, - [3292] = {.lex_state = 69}, - [3293] = {.lex_state = 579}, - [3294] = {.lex_state = 2}, - [3295] = {.lex_state = 2}, - [3296] = {.lex_state = 630}, - [3297] = {.lex_state = 2}, - [3298] = {.lex_state = 2}, - [3299] = {.lex_state = 630}, - [3300] = {.lex_state = 71}, - [3301] = {.lex_state = 579}, - [3302] = {.lex_state = 2}, - [3303] = {.lex_state = 579}, - [3304] = {.lex_state = 579}, - [3305] = {.lex_state = 579}, - [3306] = {.lex_state = 579}, - [3307] = {.lex_state = 579}, - [3308] = {.lex_state = 579}, - [3309] = {.lex_state = 2}, - [3310] = {.lex_state = 2}, - [3311] = {.lex_state = 630}, - [3312] = {.lex_state = 630}, - [3313] = {.lex_state = 630}, - [3314] = {.lex_state = 630}, - [3315] = {.lex_state = 185}, - [3316] = {.lex_state = 69}, - [3317] = {.lex_state = 630}, - [3318] = {.lex_state = 630}, - [3319] = {.lex_state = 579}, - [3320] = {.lex_state = 630}, - [3321] = {.lex_state = 627}, - [3322] = {.lex_state = 579}, - [3323] = {.lex_state = 630}, - [3324] = {.lex_state = 2}, - [3325] = {.lex_state = 61}, - [3326] = {.lex_state = 182}, - [3327] = {.lex_state = 630}, - [3328] = {.lex_state = 630}, - [3329] = {.lex_state = 627}, - [3330] = {.lex_state = 630}, - [3331] = {.lex_state = 627}, - [3332] = {.lex_state = 630}, - [3333] = {.lex_state = 630}, - [3334] = {.lex_state = 579}, - [3335] = {.lex_state = 630}, - [3336] = {.lex_state = 630}, - [3337] = {.lex_state = 67}, - [3338] = {.lex_state = 630}, - [3339] = {.lex_state = 2}, - [3340] = {.lex_state = 2}, - [3341] = {.lex_state = 630}, - [3342] = {.lex_state = 627}, - [3343] = {.lex_state = 579}, - [3344] = {.lex_state = 61}, - [3345] = {.lex_state = 627}, - [3346] = {.lex_state = 630}, - [3347] = {.lex_state = 627}, - [3348] = {.lex_state = 2}, - [3349] = {.lex_state = 630}, - [3350] = {.lex_state = 627}, - [3351] = {.lex_state = 579}, - [3352] = {.lex_state = 71}, - [3353] = {.lex_state = 2}, - [3354] = {.lex_state = 72}, - [3355] = {.lex_state = 630}, - [3356] = {.lex_state = 635}, - [3357] = {.lex_state = 630}, - [3358] = {.lex_state = 630}, - [3359] = {.lex_state = 630}, - [3360] = {.lex_state = 630}, - [3361] = {.lex_state = 2}, - [3362] = {.lex_state = 630}, - [3363] = {.lex_state = 627}, - [3364] = {.lex_state = 630}, - [3365] = {.lex_state = 49, .external_lex_state = 2}, - [3366] = {.lex_state = 630}, - [3367] = {.lex_state = 630}, - [3368] = {.lex_state = 182}, - [3369] = {.lex_state = 579}, - [3370] = {.lex_state = 186}, - [3371] = {.lex_state = 579}, - [3372] = {.lex_state = 630}, - [3373] = {.lex_state = 630}, - [3374] = {.lex_state = 2}, - [3375] = {.lex_state = 67}, - [3376] = {.lex_state = 579}, - [3377] = {.lex_state = 579}, - [3378] = {.lex_state = 579}, - [3379] = {.lex_state = 579}, - [3380] = {.lex_state = 579}, - [3381] = {.lex_state = 579}, - [3382] = {.lex_state = 579}, - [3383] = {.lex_state = 579}, - [3384] = {.lex_state = 579}, - [3385] = {.lex_state = 579}, - [3386] = {.lex_state = 579}, - [3387] = {.lex_state = 579}, - [3388] = {.lex_state = 630}, + [3254] = {.lex_state = 2}, + [3255] = {.lex_state = 626}, + [3256] = {.lex_state = 65}, + [3257] = {.lex_state = 626}, + [3258] = {.lex_state = 2}, + [3259] = {.lex_state = 578}, + [3260] = {.lex_state = 626}, + [3261] = {.lex_state = 626}, + [3262] = {.lex_state = 578}, + [3263] = {.lex_state = 629}, + [3264] = {.lex_state = 634}, + [3265] = {.lex_state = 578}, + [3266] = {.lex_state = 629}, + [3267] = {.lex_state = 578}, + [3268] = {.lex_state = 578}, + [3269] = {.lex_state = 626}, + [3270] = {.lex_state = 578}, + [3271] = {.lex_state = 629}, + [3272] = {.lex_state = 629}, + [3273] = {.lex_state = 629}, + [3274] = {.lex_state = 578}, + [3275] = {.lex_state = 578}, + [3276] = {.lex_state = 578}, + [3277] = {.lex_state = 2}, + [3278] = {.lex_state = 578}, + [3279] = {.lex_state = 2}, + [3280] = {.lex_state = 578}, + [3281] = {.lex_state = 578}, + [3282] = {.lex_state = 578}, + [3283] = {.lex_state = 578}, + [3284] = {.lex_state = 629}, + [3285] = {.lex_state = 578}, + [3286] = {.lex_state = 626}, + [3287] = {.lex_state = 626}, + [3288] = {.lex_state = 578}, + [3289] = {.lex_state = 61}, + [3290] = {.lex_state = 629}, + [3291] = {.lex_state = 629}, + [3292] = {.lex_state = 578}, + [3293] = {.lex_state = 578}, + [3294] = {.lex_state = 578}, + [3295] = {.lex_state = 578}, + [3296] = {.lex_state = 578}, + [3297] = {.lex_state = 578}, + [3298] = {.lex_state = 72}, + [3299] = {.lex_state = 578}, + [3300] = {.lex_state = 626}, + [3301] = {.lex_state = 626}, + [3302] = {.lex_state = 71}, + [3303] = {.lex_state = 2}, + [3304] = {.lex_state = 2}, + [3305] = {.lex_state = 2}, + [3306] = {.lex_state = 578}, + [3307] = {.lex_state = 578}, + [3308] = {.lex_state = 629}, + [3309] = {.lex_state = 61}, + [3310] = {.lex_state = 65}, + [3311] = {.lex_state = 629}, + [3312] = {.lex_state = 629}, + [3313] = {.lex_state = 629}, + [3314] = {.lex_state = 578}, + [3315] = {.lex_state = 629}, + [3316] = {.lex_state = 578}, + [3317] = {.lex_state = 629}, + [3318] = {.lex_state = 71}, + [3319] = {.lex_state = 578}, + [3320] = {.lex_state = 629}, + [3321] = {.lex_state = 629}, + [3322] = {.lex_state = 578}, + [3323] = {.lex_state = 626}, + [3324] = {.lex_state = 578}, + [3325] = {.lex_state = 629}, + [3326] = {.lex_state = 629}, + [3327] = {.lex_state = 629}, + [3328] = {.lex_state = 629}, + [3329] = {.lex_state = 629}, + [3330] = {.lex_state = 629}, + [3331] = {.lex_state = 182}, + [3332] = {.lex_state = 629}, + [3333] = {.lex_state = 629}, + [3334] = {.lex_state = 578}, + [3335] = {.lex_state = 629}, + [3336] = {.lex_state = 629}, + [3337] = {.lex_state = 629}, + [3338] = {.lex_state = 182}, + [3339] = {.lex_state = 578}, + [3340] = {.lex_state = 626}, + [3341] = {.lex_state = 578}, + [3342] = {.lex_state = 629}, + [3343] = {.lex_state = 578}, + [3344] = {.lex_state = 629}, + [3345] = {.lex_state = 188}, + [3346] = {.lex_state = 2}, + [3347] = {.lex_state = 629}, + [3348] = {.lex_state = 578}, + [3349] = {.lex_state = 578}, + [3350] = {.lex_state = 578}, + [3351] = {.lex_state = 629}, + [3352] = {.lex_state = 578}, + [3353] = {.lex_state = 578}, + [3354] = {.lex_state = 626}, + [3355] = {.lex_state = 578}, + [3356] = {.lex_state = 578}, + [3357] = {.lex_state = 629}, + [3358] = {.lex_state = 69}, + [3359] = {.lex_state = 186}, + [3360] = {.lex_state = 2}, + [3361] = {.lex_state = 629}, + [3362] = {.lex_state = 2}, + [3363] = {.lex_state = 629}, + [3364] = {.lex_state = 2}, + [3365] = {.lex_state = 626}, + [3366] = {.lex_state = 2}, + [3367] = {.lex_state = 2}, + [3368] = {.lex_state = 629}, + [3369] = {.lex_state = 578}, + [3370] = {.lex_state = 629}, + [3371] = {.lex_state = 629}, + [3372] = {.lex_state = 629}, + [3373] = {.lex_state = 578}, + [3374] = {.lex_state = 629}, + [3375] = {.lex_state = 629}, + [3376] = {.lex_state = 629}, + [3377] = {.lex_state = 49, .external_lex_state = 2}, + [3378] = {.lex_state = 626}, + [3379] = {.lex_state = 626}, + [3380] = {.lex_state = 629}, + [3381] = {.lex_state = 626}, + [3382] = {.lex_state = 629}, + [3383] = {.lex_state = 626}, + [3384] = {.lex_state = 2}, + [3385] = {.lex_state = 2}, + [3386] = {.lex_state = 185}, + [3387] = {.lex_state = 2}, + [3388] = {.lex_state = 2}, [3389] = {.lex_state = 2}, - [3390] = {.lex_state = 67}, - [3391] = {.lex_state = 627}, - [3392] = {.lex_state = 67}, - [3393] = {.lex_state = 185}, - [3394] = {.lex_state = 627}, - [3395] = {.lex_state = 630}, - [3396] = {.lex_state = 630}, - [3397] = {.lex_state = 630}, - [3398] = {.lex_state = 579}, - [3399] = {.lex_state = 65}, - [3400] = {.lex_state = 2}, - [3401] = {.lex_state = 579}, - [3402] = {.lex_state = 627}, - [3403] = {.lex_state = 627}, - [3404] = {.lex_state = 579}, - [3405] = {.lex_state = 579}, - [3406] = {.lex_state = 579}, - [3407] = {.lex_state = 630}, - [3408] = {.lex_state = 630}, - [3409] = {.lex_state = 630}, - [3410] = {.lex_state = 630}, - [3411] = {.lex_state = 579}, - [3412] = {.lex_state = 579}, - [3413] = {.lex_state = 630}, - [3414] = {.lex_state = 579}, - [3415] = {.lex_state = 579}, - [3416] = {.lex_state = 630}, - [3417] = {.lex_state = 630}, - [3418] = {.lex_state = 630}, - [3419] = {.lex_state = 579}, - [3420] = {.lex_state = 579}, - [3421] = {.lex_state = 184}, - [3422] = {.lex_state = 579}, - [3423] = {.lex_state = 2}, - [3424] = {.lex_state = 2}, - [3425] = {.lex_state = 579}, - [3426] = {.lex_state = 579}, - [3427] = {.lex_state = 579}, - [3428] = {.lex_state = 2154}, - [3429] = {.lex_state = 188}, - [3430] = {.lex_state = 188}, - [3431] = {.lex_state = 188}, - [3432] = {.lex_state = 184}, - [3433] = {.lex_state = 2}, - [3434] = {.lex_state = 2}, - [3435] = {.lex_state = 579}, - [3436] = {.lex_state = 579}, - [3437] = {.lex_state = 579}, - [3438] = {.lex_state = 579}, - [3439] = {.lex_state = 193}, - [3440] = {.lex_state = 579}, - [3441] = {.lex_state = 579}, - [3442] = {.lex_state = 579}, - [3443] = {.lex_state = 579}, - [3444] = {.lex_state = 183}, - [3445] = {.lex_state = 92}, - [3446] = {.lex_state = 579}, - [3447] = {.lex_state = 201}, - [3448] = {.lex_state = 2}, - [3449] = {.lex_state = 2}, - [3450] = {.lex_state = 2}, - [3451] = {.lex_state = 188}, - [3452] = {.lex_state = 188}, - [3453] = {.lex_state = 188}, - [3454] = {.lex_state = 188}, - [3455] = {.lex_state = 96}, - [3456] = {.lex_state = 579}, - [3457] = {.lex_state = 579}, - [3458] = {.lex_state = 579}, - [3459] = {.lex_state = 579}, - [3460] = {.lex_state = 579}, - [3461] = {.lex_state = 183}, - [3462] = {.lex_state = 2}, - [3463] = {.lex_state = 2}, - [3464] = {.lex_state = 579}, - [3465] = {.lex_state = 579}, - [3466] = {.lex_state = 579}, - [3467] = {.lex_state = 579}, - [3468] = {.lex_state = 2}, - [3469] = {.lex_state = 579}, - [3470] = {.lex_state = 579}, - [3471] = {.lex_state = 579}, - [3472] = {.lex_state = 579}, - [3473] = {.lex_state = 122}, - [3474] = {.lex_state = 182}, - [3475] = {.lex_state = 2}, - [3476] = {.lex_state = 579}, - [3477] = {.lex_state = 579}, - [3478] = {.lex_state = 579}, - [3479] = {.lex_state = 579}, - [3480] = {.lex_state = 635}, - [3481] = {.lex_state = 579}, - [3482] = {.lex_state = 579}, - [3483] = {.lex_state = 579}, - [3484] = {.lex_state = 579}, - [3485] = {.lex_state = 579}, - [3486] = {.lex_state = 2}, - [3487] = {.lex_state = 2}, - [3488] = {.lex_state = 2}, - [3489] = {.lex_state = 2}, - [3490] = {.lex_state = 2}, - [3491] = {.lex_state = 579}, - [3492] = {.lex_state = 2}, + [3390] = {.lex_state = 2}, + [3391] = {.lex_state = 2}, + [3392] = {.lex_state = 629}, + [3393] = {.lex_state = 2}, + [3394] = {.lex_state = 2}, + [3395] = {.lex_state = 629}, + [3396] = {.lex_state = 69}, + [3397] = {.lex_state = 629}, + [3398] = {.lex_state = 629}, + [3399] = {.lex_state = 629}, + [3400] = {.lex_state = 629}, + [3401] = {.lex_state = 629}, + [3402] = {.lex_state = 629}, + [3403] = {.lex_state = 629}, + [3404] = {.lex_state = 67}, + [3405] = {.lex_state = 629}, + [3406] = {.lex_state = 67}, + [3407] = {.lex_state = 67}, + [3408] = {.lex_state = 67}, + [3409] = {.lex_state = 629}, + [3410] = {.lex_state = 629}, + [3411] = {.lex_state = 629}, + [3412] = {.lex_state = 629}, + [3413] = {.lex_state = 629}, + [3414] = {.lex_state = 629}, + [3415] = {.lex_state = 185}, + [3416] = {.lex_state = 626}, + [3417] = {.lex_state = 629}, + [3418] = {.lex_state = 629}, + [3419] = {.lex_state = 578}, + [3420] = {.lex_state = 578}, + [3421] = {.lex_state = 578}, + [3422] = {.lex_state = 578}, + [3423] = {.lex_state = 578}, + [3424] = {.lex_state = 578}, + [3425] = {.lex_state = 578}, + [3426] = {.lex_state = 578}, + [3427] = {.lex_state = 578}, + [3428] = {.lex_state = 578}, + [3429] = {.lex_state = 578}, + [3430] = {.lex_state = 578}, + [3431] = {.lex_state = 578}, + [3432] = {.lex_state = 578}, + [3433] = {.lex_state = 578}, + [3434] = {.lex_state = 578}, + [3435] = {.lex_state = 578}, + [3436] = {.lex_state = 578}, + [3437] = {.lex_state = 2}, + [3438] = {.lex_state = 578}, + [3439] = {.lex_state = 2}, + [3440] = {.lex_state = 578}, + [3441] = {.lex_state = 578}, + [3442] = {.lex_state = 578}, + [3443] = {.lex_state = 188}, + [3444] = {.lex_state = 188}, + [3445] = {.lex_state = 578}, + [3446] = {.lex_state = 578}, + [3447] = {.lex_state = 578}, + [3448] = {.lex_state = 188}, + [3449] = {.lex_state = 578}, + [3450] = {.lex_state = 578}, + [3451] = {.lex_state = 578}, + [3452] = {.lex_state = 578}, + [3453] = {.lex_state = 578}, + [3454] = {.lex_state = 578}, + [3455] = {.lex_state = 578}, + [3456] = {.lex_state = 578}, + [3457] = {.lex_state = 578}, + [3458] = {.lex_state = 578}, + [3459] = {.lex_state = 578}, + [3460] = {.lex_state = 578}, + [3461] = {.lex_state = 2}, + [3462] = {.lex_state = 188}, + [3463] = {.lex_state = 188}, + [3464] = {.lex_state = 188}, + [3465] = {.lex_state = 578}, + [3466] = {.lex_state = 578}, + [3467] = {.lex_state = 188}, + [3468] = {.lex_state = 578}, + [3469] = {.lex_state = 182}, + [3470] = {.lex_state = 578}, + [3471] = {.lex_state = 578}, + [3472] = {.lex_state = 578}, + [3473] = {.lex_state = 2}, + [3474] = {.lex_state = 2}, + [3475] = {.lex_state = 578}, + [3476] = {.lex_state = 2}, + [3477] = {.lex_state = 2}, + [3478] = {.lex_state = 2}, + [3479] = {.lex_state = 578}, + [3480] = {.lex_state = 578}, + [3481] = {.lex_state = 578}, + [3482] = {.lex_state = 2}, + [3483] = {.lex_state = 2}, + [3484] = {.lex_state = 578}, + [3485] = {.lex_state = 183}, + [3486] = {.lex_state = 578}, + [3487] = {.lex_state = 578}, + [3488] = {.lex_state = 578}, + [3489] = {.lex_state = 626}, + [3490] = {.lex_state = 578}, + [3491] = {.lex_state = 578}, + [3492] = {.lex_state = 578}, [3493] = {.lex_state = 2}, - [3494] = {.lex_state = 2}, - [3495] = {.lex_state = 2}, - [3496] = {.lex_state = 635}, - [3497] = {.lex_state = 635}, - [3498] = {.lex_state = 635}, + [3494] = {.lex_state = 578}, + [3495] = {.lex_state = 578}, + [3496] = {.lex_state = 2}, + [3497] = {.lex_state = 578}, + [3498] = {.lex_state = 578}, [3499] = {.lex_state = 2}, - [3500] = {.lex_state = 2}, + [3500] = {.lex_state = 578}, [3501] = {.lex_state = 2}, [3502] = {.lex_state = 2}, - [3503] = {.lex_state = 2}, - [3504] = {.lex_state = 2}, - [3505] = {.lex_state = 2}, + [3503] = {.lex_state = 634}, + [3504] = {.lex_state = 578}, + [3505] = {.lex_state = 578}, [3506] = {.lex_state = 2}, - [3507] = {.lex_state = 78}, - [3508] = {.lex_state = 579}, - [3509] = {.lex_state = 579}, - [3510] = {.lex_state = 579}, - [3511] = {.lex_state = 579}, - [3512] = {.lex_state = 579}, - [3513] = {.lex_state = 579}, - [3514] = {.lex_state = 194}, - [3515] = {.lex_state = 80}, - [3516] = {.lex_state = 579}, - [3517] = {.lex_state = 579}, - [3518] = {.lex_state = 202}, - [3519] = {.lex_state = 579}, - [3520] = {.lex_state = 579}, - [3521] = {.lex_state = 579}, - [3522] = {.lex_state = 579}, - [3523] = {.lex_state = 579}, - [3524] = {.lex_state = 579}, - [3525] = {.lex_state = 2}, - [3526] = {.lex_state = 579}, - [3527] = {.lex_state = 579}, - [3528] = {.lex_state = 579}, - [3529] = {.lex_state = 2}, - [3530] = {.lex_state = 579}, - [3531] = {.lex_state = 579}, - [3532] = {.lex_state = 2}, - [3533] = {.lex_state = 579}, - [3534] = {.lex_state = 2}, - [3535] = {.lex_state = 579}, - [3536] = {.lex_state = 579}, - [3537] = {.lex_state = 579}, - [3538] = {.lex_state = 579}, - [3539] = {.lex_state = 579}, - [3540] = {.lex_state = 579}, - [3541] = {.lex_state = 2}, - [3542] = {.lex_state = 579}, - [3543] = {.lex_state = 579}, - [3544] = {.lex_state = 579}, - [3545] = {.lex_state = 579}, - [3546] = {.lex_state = 181}, + [3507] = {.lex_state = 578}, + [3508] = {.lex_state = 578}, + [3509] = {.lex_state = 578}, + [3510] = {.lex_state = 578}, + [3511] = {.lex_state = 578}, + [3512] = {.lex_state = 578}, + [3513] = {.lex_state = 634}, + [3514] = {.lex_state = 2}, + [3515] = {.lex_state = 201}, + [3516] = {.lex_state = 201}, + [3517] = {.lex_state = 578}, + [3518] = {.lex_state = 634}, + [3519] = {.lex_state = 578}, + [3520] = {.lex_state = 578}, + [3521] = {.lex_state = 578}, + [3522] = {.lex_state = 578}, + [3523] = {.lex_state = 578}, + [3524] = {.lex_state = 194}, + [3525] = {.lex_state = 2153}, + [3526] = {.lex_state = 578}, + [3527] = {.lex_state = 578}, + [3528] = {.lex_state = 578}, + [3529] = {.lex_state = 578}, + [3530] = {.lex_state = 578}, + [3531] = {.lex_state = 634}, + [3532] = {.lex_state = 578}, + [3533] = {.lex_state = 578}, + [3534] = {.lex_state = 578}, + [3535] = {.lex_state = 578}, + [3536] = {.lex_state = 578}, + [3537] = {.lex_state = 578}, + [3538] = {.lex_state = 578}, + [3539] = {.lex_state = 2}, + [3540] = {.lex_state = 2}, + [3541] = {.lex_state = 578}, + [3542] = {.lex_state = 2}, + [3543] = {.lex_state = 2}, + [3544] = {.lex_state = 578}, + [3545] = {.lex_state = 578}, + [3546] = {.lex_state = 2}, [3547] = {.lex_state = 2}, [3548] = {.lex_state = 2}, - [3549] = {.lex_state = 579}, - [3550] = {.lex_state = 579}, - [3551] = {.lex_state = 579}, - [3552] = {.lex_state = 2}, - [3553] = {.lex_state = 2}, - [3554] = {.lex_state = 579}, - [3555] = {.lex_state = 627}, - [3556] = {.lex_state = 579}, - [3557] = {.lex_state = 2}, - [3558] = {.lex_state = 579}, - [3559] = {.lex_state = 579}, - [3560] = {.lex_state = 579}, - [3561] = {.lex_state = 579}, - [3562] = {.lex_state = 579}, - [3563] = {.lex_state = 579}, - [3564] = {.lex_state = 579}, - [3565] = {.lex_state = 579}, - [3566] = {.lex_state = 579}, - [3567] = {.lex_state = 579}, - [3568] = {.lex_state = 579}, - [3569] = {.lex_state = 579}, - [3570] = {.lex_state = 579}, - [3571] = {.lex_state = 2}, - [3572] = {.lex_state = 579}, - [3573] = {.lex_state = 579}, - [3574] = {.lex_state = 579}, - [3575] = {.lex_state = 579}, - [3576] = {.lex_state = 2154}, - [3577] = {.lex_state = 579}, - [3578] = {.lex_state = 579}, - [3579] = {.lex_state = 579}, - [3580] = {.lex_state = 579}, - [3581] = {.lex_state = 579}, - [3582] = {.lex_state = 579}, - [3583] = {.lex_state = 579}, - [3584] = {.lex_state = 579}, - [3585] = {.lex_state = 579}, - [3586] = {.lex_state = 579}, - [3587] = {.lex_state = 579}, - [3588] = {.lex_state = 579}, - [3589] = {.lex_state = 579}, - [3590] = {.lex_state = 188}, - [3591] = {.lex_state = 627}, - [3592] = {.lex_state = 579}, - [3593] = {.lex_state = 579}, - [3594] = {.lex_state = 579}, - [3595] = {.lex_state = 579}, - [3596] = {.lex_state = 579}, - [3597] = {.lex_state = 579}, - [3598] = {.lex_state = 579}, - [3599] = {.lex_state = 579}, - [3600] = {.lex_state = 579}, - [3601] = {.lex_state = 579}, - [3602] = {.lex_state = 579}, - [3603] = {.lex_state = 579}, - [3604] = {.lex_state = 579}, - [3605] = {.lex_state = 128}, - [3606] = {.lex_state = 2}, + [3549] = {.lex_state = 578}, + [3550] = {.lex_state = 578}, + [3551] = {.lex_state = 578}, + [3552] = {.lex_state = 578}, + [3553] = {.lex_state = 578}, + [3554] = {.lex_state = 578}, + [3555] = {.lex_state = 578}, + [3556] = {.lex_state = 183}, + [3557] = {.lex_state = 578}, + [3558] = {.lex_state = 578}, + [3559] = {.lex_state = 578}, + [3560] = {.lex_state = 578}, + [3561] = {.lex_state = 2}, + [3562] = {.lex_state = 578}, + [3563] = {.lex_state = 578}, + [3564] = {.lex_state = 2}, + [3565] = {.lex_state = 578}, + [3566] = {.lex_state = 578}, + [3567] = {.lex_state = 578}, + [3568] = {.lex_state = 578}, + [3569] = {.lex_state = 578}, + [3570] = {.lex_state = 578}, + [3571] = {.lex_state = 578}, + [3572] = {.lex_state = 578}, + [3573] = {.lex_state = 578}, + [3574] = {.lex_state = 626}, + [3575] = {.lex_state = 578}, + [3576] = {.lex_state = 184}, + [3577] = {.lex_state = 181}, + [3578] = {.lex_state = 2}, + [3579] = {.lex_state = 193}, + [3580] = {.lex_state = 2}, + [3581] = {.lex_state = 2}, + [3582] = {.lex_state = 80}, + [3583] = {.lex_state = 578}, + [3584] = {.lex_state = 2}, + [3585] = {.lex_state = 92}, + [3586] = {.lex_state = 2}, + [3587] = {.lex_state = 578}, + [3588] = {.lex_state = 578}, + [3589] = {.lex_state = 122}, + [3590] = {.lex_state = 2}, + [3591] = {.lex_state = 578}, + [3592] = {.lex_state = 2}, + [3593] = {.lex_state = 184}, + [3594] = {.lex_state = 128}, + [3595] = {.lex_state = 2}, + [3596] = {.lex_state = 96}, + [3597] = {.lex_state = 2}, + [3598] = {.lex_state = 188}, + [3599] = {.lex_state = 2}, + [3600] = {.lex_state = 578}, + [3601] = {.lex_state = 78}, + [3602] = {.lex_state = 2}, + [3603] = {.lex_state = 2}, + [3604] = {.lex_state = 2}, + [3605] = {.lex_state = 2}, + [3606] = {.lex_state = 2153}, [3607] = {.lex_state = 2}, - [3608] = {.lex_state = 579}, - [3609] = {.lex_state = 2}, + [3608] = {.lex_state = 2}, + [3609] = {.lex_state = 578}, [3610] = {.lex_state = 2}, - [3611] = {.lex_state = 82}, - [3612] = {.lex_state = 81}, - [3613] = {.lex_state = 2}, - [3614] = {.lex_state = 614}, - [3615] = {.lex_state = 204}, - [3616] = {.lex_state = 203}, - [3617] = {.lex_state = 204}, - [3618] = {.lex_state = 2}, + [3611] = {.lex_state = 81}, + [3612] = {.lex_state = 613}, + [3613] = {.lex_state = 97}, + [3614] = {.lex_state = 613}, + [3615] = {.lex_state = 98}, + [3616] = {.lex_state = 93}, + [3617] = {.lex_state = 2}, + [3618] = {.lex_state = 578}, [3619] = {.lex_state = 188}, - [3620] = {.lex_state = 614}, - [3621] = {.lex_state = 203}, - [3622] = {.lex_state = 614}, - [3623] = {.lex_state = 2}, - [3624] = {.lex_state = 579}, - [3625] = {.lex_state = 206}, - [3626] = {.lex_state = 614}, - [3627] = {.lex_state = 187}, - [3628] = {.lex_state = 187}, - [3629] = {.lex_state = 2}, - [3630] = {.lex_state = 217}, - [3631] = {.lex_state = 583}, + [3620] = {.lex_state = 202}, + [3621] = {.lex_state = 582}, + [3622] = {.lex_state = 2}, + [3623] = {.lex_state = 128}, + [3624] = {.lex_state = 2}, + [3625] = {.lex_state = 128}, + [3626] = {.lex_state = 216}, + [3627] = {.lex_state = 613}, + [3628] = {.lex_state = 232}, + [3629] = {.lex_state = 122}, + [3630] = {.lex_state = 81}, + [3631] = {.lex_state = 128}, [3632] = {.lex_state = 128}, - [3633] = {.lex_state = 188}, + [3633] = {.lex_state = 613}, [3634] = {.lex_state = 122}, - [3635] = {.lex_state = 195}, - [3636] = {.lex_state = 122}, - [3637] = {.lex_state = 81}, - [3638] = {.lex_state = 122}, - [3639] = {.lex_state = 614}, - [3640] = {.lex_state = 233}, - [3641] = {.lex_state = 128}, - [3642] = {.lex_state = 98}, - [3643] = {.lex_state = 128}, - [3644] = {.lex_state = 93}, - [3645] = {.lex_state = 97}, - [3646] = {.lex_state = 98}, - [3647] = {.lex_state = 2}, - [3648] = {.lex_state = 579}, - [3649] = {.lex_state = 128}, - [3650] = {.lex_state = 128}, + [3635] = {.lex_state = 122}, + [3636] = {.lex_state = 98}, + [3637] = {.lex_state = 195}, + [3638] = {.lex_state = 203}, + [3639] = {.lex_state = 187}, + [3640] = {.lex_state = 122}, + [3641] = {.lex_state = 203}, + [3642] = {.lex_state = 82}, + [3643] = {.lex_state = 2}, + [3644] = {.lex_state = 2}, + [3645] = {.lex_state = 128}, + [3646] = {.lex_state = 2}, + [3647] = {.lex_state = 578}, + [3648] = {.lex_state = 231}, + [3649] = {.lex_state = 202}, + [3650] = {.lex_state = 2}, [3651] = {.lex_state = 128}, - [3652] = {.lex_state = 2}, - [3653] = {.lex_state = 122}, - [3654] = {.lex_state = 2}, - [3655] = {.lex_state = 232}, - [3656] = {.lex_state = 2096}, - [3657] = {.lex_state = 205}, - [3658] = {.lex_state = 206}, - [3659] = {.lex_state = 2096}, - [3660] = {.lex_state = 2096}, - [3661] = {.lex_state = 1750, .external_lex_state = 2}, - [3662] = {.lex_state = 206}, - [3663] = {.lex_state = 82}, - [3664] = {.lex_state = 83}, - [3665] = {.lex_state = 2096}, - [3666] = {.lex_state = 2096}, - [3667] = {.lex_state = 1750, .external_lex_state = 2}, - [3668] = {.lex_state = 583}, - [3669] = {.lex_state = 583}, - [3670] = {.lex_state = 583}, - [3671] = {.lex_state = 2096}, - [3672] = {.lex_state = 2096}, - [3673] = {.lex_state = 1750, .external_lex_state = 2}, - [3674] = {.lex_state = 100}, - [3675] = {.lex_state = 100}, - [3676] = {.lex_state = 2096}, - [3677] = {.lex_state = 2096}, - [3678] = {.lex_state = 1750, .external_lex_state = 2}, - [3679] = {.lex_state = 2096}, - [3680] = {.lex_state = 2096}, - [3681] = {.lex_state = 1750, .external_lex_state = 2}, - [3682] = {.lex_state = 205}, - [3683] = {.lex_state = 2096}, - [3684] = {.lex_state = 2096}, - [3685] = {.lex_state = 1750, .external_lex_state = 2}, - [3686] = {.lex_state = 2096}, - [3687] = {.lex_state = 2096}, - [3688] = {.lex_state = 2096}, - [3689] = {.lex_state = 1750, .external_lex_state = 2}, - [3690] = {.lex_state = 2096}, - [3691] = {.lex_state = 2096}, - [3692] = {.lex_state = 1750, .external_lex_state = 2}, - [3693] = {.lex_state = 2096}, - [3694] = {.lex_state = 2096}, - [3695] = {.lex_state = 1750, .external_lex_state = 2}, - [3696] = {.lex_state = 100}, - [3697] = {.lex_state = 2096}, - [3698] = {.lex_state = 1750, .external_lex_state = 2}, - [3699] = {.lex_state = 2096}, - [3700] = {.lex_state = 2096}, - [3701] = {.lex_state = 1750, .external_lex_state = 2}, - [3702] = {.lex_state = 1750, .external_lex_state = 2}, - [3703] = {.lex_state = 1750, .external_lex_state = 2}, - [3704] = {.lex_state = 208}, - [3705] = {.lex_state = 1750, .external_lex_state = 2}, - [3706] = {.lex_state = 1750, .external_lex_state = 2}, - [3707] = {.lex_state = 1750, .external_lex_state = 2}, - [3708] = {.lex_state = 1750, .external_lex_state = 2}, - [3709] = {.lex_state = 1750, .external_lex_state = 2}, - [3710] = {.lex_state = 2096}, - [3711] = {.lex_state = 2155}, - [3712] = {.lex_state = 2155}, - [3713] = {.lex_state = 205}, - [3714] = {.lex_state = 1750, .external_lex_state = 2}, - [3715] = {.lex_state = 1750, .external_lex_state = 2}, - [3716] = {.lex_state = 234}, - [3717] = {.lex_state = 583}, - [3718] = {.lex_state = 197}, - [3719] = {.lex_state = 196}, - [3720] = {.lex_state = 2200}, - [3721] = {.lex_state = 218}, - [3722] = {.lex_state = 2096}, - [3723] = {.lex_state = 2200}, - [3724] = {.lex_state = 102}, - [3725] = {.lex_state = 94}, - [3726] = {.lex_state = 2096}, - [3727] = {.lex_state = 82}, - [3728] = {.lex_state = 2}, - [3729] = {.lex_state = 2096}, - [3730] = {.lex_state = 2096}, - [3731] = {.lex_state = 99}, - [3732] = {.lex_state = 1750, .external_lex_state = 2}, - [3733] = {.lex_state = 206}, - [3734] = {.lex_state = 99}, - [3735] = {.lex_state = 234}, - [3736] = {.lex_state = 2155}, - [3737] = {.lex_state = 218}, - [3738] = {.lex_state = 100}, - [3739] = {.lex_state = 128}, - [3740] = {.lex_state = 205}, - [3741] = {.lex_state = 207}, - [3742] = {.lex_state = 2155}, - [3743] = {.lex_state = 82}, - [3744] = {.lex_state = 2200}, - [3745] = {.lex_state = 2200}, - [3746] = {.lex_state = 219}, - [3747] = {.lex_state = 79}, - [3748] = {.lex_state = 1750, .external_lex_state = 2}, - [3749] = {.lex_state = 235}, - [3750] = {.lex_state = 583}, - [3751] = {.lex_state = 583}, - [3752] = {.lex_state = 211}, - [3753] = {.lex_state = 583}, - [3754] = {.lex_state = 583}, - [3755] = {.lex_state = 583}, - [3756] = {.lex_state = 583}, - [3757] = {.lex_state = 583}, - [3758] = {.lex_state = 583}, - [3759] = {.lex_state = 583}, - [3760] = {.lex_state = 583}, - [3761] = {.lex_state = 583}, + [3652] = {.lex_state = 613}, + [3653] = {.lex_state = 188}, + [3654] = {.lex_state = 187}, + [3655] = {.lex_state = 205}, + [3656] = {.lex_state = 2095}, + [3657] = {.lex_state = 1749, .external_lex_state = 2}, + [3658] = {.lex_state = 2095}, + [3659] = {.lex_state = 2095}, + [3660] = {.lex_state = 1749, .external_lex_state = 2}, + [3661] = {.lex_state = 82}, + [3662] = {.lex_state = 2095}, + [3663] = {.lex_state = 2095}, + [3664] = {.lex_state = 1749, .external_lex_state = 2}, + [3665] = {.lex_state = 2095}, + [3666] = {.lex_state = 2095}, + [3667] = {.lex_state = 1749, .external_lex_state = 2}, + [3668] = {.lex_state = 1749, .external_lex_state = 2}, + [3669] = {.lex_state = 1749, .external_lex_state = 2}, + [3670] = {.lex_state = 1749, .external_lex_state = 2}, + [3671] = {.lex_state = 1749, .external_lex_state = 2}, + [3672] = {.lex_state = 82}, + [3673] = {.lex_state = 1749, .external_lex_state = 2}, + [3674] = {.lex_state = 1749, .external_lex_state = 2}, + [3675] = {.lex_state = 1749, .external_lex_state = 2}, + [3676] = {.lex_state = 1749, .external_lex_state = 2}, + [3677] = {.lex_state = 100}, + [3678] = {.lex_state = 128}, + [3679] = {.lex_state = 1749, .external_lex_state = 2}, + [3680] = {.lex_state = 2095}, + [3681] = {.lex_state = 2095}, + [3682] = {.lex_state = 1749, .external_lex_state = 2}, + [3683] = {.lex_state = 2095}, + [3684] = {.lex_state = 233}, + [3685] = {.lex_state = 2095}, + [3686] = {.lex_state = 2095}, + [3687] = {.lex_state = 204}, + [3688] = {.lex_state = 2095}, + [3689] = {.lex_state = 204}, + [3690] = {.lex_state = 206}, + [3691] = {.lex_state = 2095}, + [3692] = {.lex_state = 102}, + [3693] = {.lex_state = 2199}, + [3694] = {.lex_state = 218}, + [3695] = {.lex_state = 2095}, + [3696] = {.lex_state = 1749, .external_lex_state = 2}, + [3697] = {.lex_state = 2095}, + [3698] = {.lex_state = 1749, .external_lex_state = 2}, + [3699] = {.lex_state = 2095}, + [3700] = {.lex_state = 582}, + [3701] = {.lex_state = 582}, + [3702] = {.lex_state = 83}, + [3703] = {.lex_state = 1749, .external_lex_state = 2}, + [3704] = {.lex_state = 204}, + [3705] = {.lex_state = 82}, + [3706] = {.lex_state = 205}, + [3707] = {.lex_state = 207}, + [3708] = {.lex_state = 196}, + [3709] = {.lex_state = 2095}, + [3710] = {.lex_state = 94}, + [3711] = {.lex_state = 217}, + [3712] = {.lex_state = 205}, + [3713] = {.lex_state = 2199}, + [3714] = {.lex_state = 1749, .external_lex_state = 2}, + [3715] = {.lex_state = 79}, + [3716] = {.lex_state = 204}, + [3717] = {.lex_state = 100}, + [3718] = {.lex_state = 2154}, + [3719] = {.lex_state = 2154}, + [3720] = {.lex_state = 2}, + [3721] = {.lex_state = 582}, + [3722] = {.lex_state = 2095}, + [3723] = {.lex_state = 2095}, + [3724] = {.lex_state = 205}, + [3725] = {.lex_state = 2154}, + [3726] = {.lex_state = 2095}, + [3727] = {.lex_state = 2095}, + [3728] = {.lex_state = 2154}, + [3729] = {.lex_state = 2199}, + [3730] = {.lex_state = 99}, + [3731] = {.lex_state = 217}, + [3732] = {.lex_state = 100}, + [3733] = {.lex_state = 1749, .external_lex_state = 2}, + [3734] = {.lex_state = 2199}, + [3735] = {.lex_state = 1749, .external_lex_state = 2}, + [3736] = {.lex_state = 582}, + [3737] = {.lex_state = 2095}, + [3738] = {.lex_state = 2095}, + [3739] = {.lex_state = 197}, + [3740] = {.lex_state = 1749, .external_lex_state = 2}, + [3741] = {.lex_state = 2095}, + [3742] = {.lex_state = 2095}, + [3743] = {.lex_state = 2095}, + [3744] = {.lex_state = 99}, + [3745] = {.lex_state = 100}, + [3746] = {.lex_state = 1749, .external_lex_state = 2}, + [3747] = {.lex_state = 233}, + [3748] = {.lex_state = 2095}, + [3749] = {.lex_state = 82}, + [3750] = {.lex_state = 582}, + [3751] = {.lex_state = 582}, + [3752] = {.lex_state = 582}, + [3753] = {.lex_state = 218}, + [3754] = {.lex_state = 234}, + [3755] = {.lex_state = 218}, + [3756] = {.lex_state = 582}, + [3757] = {.lex_state = 219}, + [3758] = {.lex_state = 101}, + [3759] = {.lex_state = 101}, + [3760] = {.lex_state = 582}, + [3761] = {.lex_state = 101}, [3762] = {.lex_state = 90}, - [3763] = {.lex_state = 583}, - [3764] = {.lex_state = 240}, - [3765] = {.lex_state = 583}, - [3766] = {.lex_state = 583}, - [3767] = {.lex_state = 583}, - [3768] = {.lex_state = 129}, - [3769] = {.lex_state = 101}, - [3770] = {.lex_state = 583}, - [3771] = {.lex_state = 103}, - [3772] = {.lex_state = 583}, - [3773] = {.lex_state = 104}, - [3774] = {.lex_state = 583}, - [3775] = {.lex_state = 583}, - [3776] = {.lex_state = 129}, - [3777] = {.lex_state = 583}, - [3778] = {.lex_state = 583}, - [3779] = {.lex_state = 583}, - [3780] = {.lex_state = 220}, - [3781] = {.lex_state = 129}, - [3782] = {.lex_state = 209}, - [3783] = {.lex_state = 631}, - [3784] = {.lex_state = 583}, - [3785] = {.lex_state = 583}, - [3786] = {.lex_state = 219}, - [3787] = {.lex_state = 104}, - [3788] = {.lex_state = 583}, - [3789] = {.lex_state = 206}, - [3790] = {.lex_state = 129}, - [3791] = {.lex_state = 583}, - [3792] = {.lex_state = 198}, + [3763] = {.lex_state = 218}, + [3764] = {.lex_state = 582}, + [3765] = {.lex_state = 582}, + [3766] = {.lex_state = 582}, + [3767] = {.lex_state = 90}, + [3768] = {.lex_state = 582}, + [3769] = {.lex_state = 103}, + [3770] = {.lex_state = 582}, + [3771] = {.lex_state = 104}, + [3772] = {.lex_state = 205}, + [3773] = {.lex_state = 90}, + [3774] = {.lex_state = 582}, + [3775] = {.lex_state = 582}, + [3776] = {.lex_state = 582}, + [3777] = {.lex_state = 582}, + [3778] = {.lex_state = 582}, + [3779] = {.lex_state = 582}, + [3780] = {.lex_state = 234}, + [3781] = {.lex_state = 582}, + [3782] = {.lex_state = 239}, + [3783] = {.lex_state = 129}, + [3784] = {.lex_state = 101}, + [3785] = {.lex_state = 582}, + [3786] = {.lex_state = 582}, + [3787] = {.lex_state = 582}, + [3788] = {.lex_state = 234}, + [3789] = {.lex_state = 208}, + [3790] = {.lex_state = 245}, + [3791] = {.lex_state = 582}, + [3792] = {.lex_state = 582}, [3793] = {.lex_state = 129}, - [3794] = {.lex_state = 583}, - [3795] = {.lex_state = 583}, - [3796] = {.lex_state = 583}, - [3797] = {.lex_state = 90}, - [3798] = {.lex_state = 583}, - [3799] = {.lex_state = 583}, - [3800] = {.lex_state = 235}, - [3801] = {.lex_state = 583}, - [3802] = {.lex_state = 583}, - [3803] = {.lex_state = 95}, - [3804] = {.lex_state = 631}, - [3805] = {.lex_state = 84}, - [3806] = {.lex_state = 209}, - [3807] = {.lex_state = 583}, - [3808] = {.lex_state = 101}, - [3809] = {.lex_state = 211}, - [3810] = {.lex_state = 583}, - [3811] = {.lex_state = 235}, - [3812] = {.lex_state = 101}, - [3813] = {.lex_state = 101}, - [3814] = {.lex_state = 583}, - [3815] = {.lex_state = 246}, - [3816] = {.lex_state = 219}, - [3817] = {.lex_state = 82}, - [3818] = {.lex_state = 583}, - [3819] = {.lex_state = 583}, - [3820] = {.lex_state = 235}, - [3821] = {.lex_state = 129}, - [3822] = {.lex_state = 90}, - [3823] = {.lex_state = 583}, - [3824] = {.lex_state = 583}, - [3825] = {.lex_state = 84}, - [3826] = {.lex_state = 583}, - [3827] = {.lex_state = 583}, - [3828] = {.lex_state = 219}, - [3829] = {.lex_state = 583}, - [3830] = {.lex_state = 244}, - [3831] = {.lex_state = 105}, - [3832] = {.lex_state = 244}, - [3833] = {.lex_state = 212}, - [3834] = {.lex_state = 85}, - [3835] = {.lex_state = 212}, - [3836] = {.lex_state = 210}, - [3837] = {.lex_state = 127}, - [3838] = {.lex_state = 244}, - [3839] = {.lex_state = 580}, - [3840] = {.lex_state = 247}, - [3841] = {.lex_state = 129}, - [3842] = {.lex_state = 105}, - [3843] = {.lex_state = 85}, - [3844] = {.lex_state = 244}, - [3845] = {.lex_state = 244}, - [3846] = {.lex_state = 85}, - [3847] = {.lex_state = 244}, - [3848] = {.lex_state = 244}, - [3849] = {.lex_state = 244}, - [3850] = {.lex_state = 276}, - [3851] = {.lex_state = 212}, - [3852] = {.lex_state = 241}, - [3853] = {.lex_state = 85}, - [3854] = {.lex_state = 258}, - [3855] = {.lex_state = 105}, - [3856] = {.lex_state = 127}, - [3857] = {.lex_state = 85}, - [3858] = {.lex_state = 106}, - [3859] = {.lex_state = 244}, - [3860] = {.lex_state = 2}, - [3861] = {.lex_state = 244}, - [3862] = {.lex_state = 221}, - [3863] = {.lex_state = 247}, - [3864] = {.lex_state = 244}, - [3865] = {.lex_state = 244}, - [3866] = {.lex_state = 105}, - [3867] = {.lex_state = 580}, - [3868] = {.lex_state = 210}, - [3869] = {.lex_state = 106}, - [3870] = {.lex_state = 212}, - [3871] = {.lex_state = 212}, - [3872] = {.lex_state = 244}, - [3873] = {.lex_state = 105}, - [3874] = {.lex_state = 129}, - [3875] = {.lex_state = 221}, - [3876] = {.lex_state = 210}, - [3877] = {.lex_state = 259}, - [3878] = {.lex_state = 33}, - [3879] = {.lex_state = 248}, - [3880] = {.lex_state = 213}, + [3794] = {.lex_state = 234}, + [3795] = {.lex_state = 582}, + [3796] = {.lex_state = 129}, + [3797] = {.lex_state = 582}, + [3798] = {.lex_state = 582}, + [3799] = {.lex_state = 129}, + [3800] = {.lex_state = 582}, + [3801] = {.lex_state = 630}, + [3802] = {.lex_state = 630}, + [3803] = {.lex_state = 582}, + [3804] = {.lex_state = 582}, + [3805] = {.lex_state = 582}, + [3806] = {.lex_state = 129}, + [3807] = {.lex_state = 129}, + [3808] = {.lex_state = 582}, + [3809] = {.lex_state = 582}, + [3810] = {.lex_state = 208}, + [3811] = {.lex_state = 582}, + [3812] = {.lex_state = 104}, + [3813] = {.lex_state = 582}, + [3814] = {.lex_state = 582}, + [3815] = {.lex_state = 84}, + [3816] = {.lex_state = 582}, + [3817] = {.lex_state = 582}, + [3818] = {.lex_state = 582}, + [3819] = {.lex_state = 582}, + [3820] = {.lex_state = 210}, + [3821] = {.lex_state = 95}, + [3822] = {.lex_state = 582}, + [3823] = {.lex_state = 582}, + [3824] = {.lex_state = 582}, + [3825] = {.lex_state = 582}, + [3826] = {.lex_state = 198}, + [3827] = {.lex_state = 210}, + [3828] = {.lex_state = 84}, + [3829] = {.lex_state = 582}, + [3830] = {.lex_state = 211}, + [3831] = {.lex_state = 211}, + [3832] = {.lex_state = 129}, + [3833] = {.lex_state = 243}, + [3834] = {.lex_state = 211}, + [3835] = {.lex_state = 243}, + [3836] = {.lex_state = 85}, + [3837] = {.lex_state = 243}, + [3838] = {.lex_state = 243}, + [3839] = {.lex_state = 85}, + [3840] = {.lex_state = 85}, + [3841] = {.lex_state = 243}, + [3842] = {.lex_state = 243}, + [3843] = {.lex_state = 2}, + [3844] = {.lex_state = 243}, + [3845] = {.lex_state = 209}, + [3846] = {.lex_state = 243}, + [3847] = {.lex_state = 246}, + [3848] = {.lex_state = 243}, + [3849] = {.lex_state = 243}, + [3850] = {.lex_state = 211}, + [3851] = {.lex_state = 209}, + [3852] = {.lex_state = 209}, + [3853] = {.lex_state = 246}, + [3854] = {.lex_state = 105}, + [3855] = {.lex_state = 211}, + [3856] = {.lex_state = 105}, + [3857] = {.lex_state = 243}, + [3858] = {.lex_state = 85}, + [3859] = {.lex_state = 240}, + [3860] = {.lex_state = 243}, + [3861] = {.lex_state = 105}, + [3862] = {.lex_state = 105}, + [3863] = {.lex_state = 257}, + [3864] = {.lex_state = 106}, + [3865] = {.lex_state = 579}, + [3866] = {.lex_state = 85}, + [3867] = {.lex_state = 127}, + [3868] = {.lex_state = 106}, + [3869] = {.lex_state = 579}, + [3870] = {.lex_state = 105}, + [3871] = {.lex_state = 127}, + [3872] = {.lex_state = 129}, + [3873] = {.lex_state = 275}, + [3874] = {.lex_state = 243}, + [3875] = {.lex_state = 220}, + [3876] = {.lex_state = 220}, + [3877] = {.lex_state = 47}, + [3878] = {.lex_state = 115}, + [3879] = {.lex_state = 255}, + [3880] = {.lex_state = 209}, [3881] = {.lex_state = 275}, - [3882] = {.lex_state = 275}, - [3883] = {.lex_state = 276}, - [3884] = {.lex_state = 47}, - [3885] = {.lex_state = 47}, - [3886] = {.lex_state = 33}, - [3887] = {.lex_state = 127}, - [3888] = {.lex_state = 276}, - [3889] = {.lex_state = 222}, - [3890] = {.lex_state = 33}, - [3891] = {.lex_state = 33}, - [3892] = {.lex_state = 47}, - [3893] = {.lex_state = 33}, - [3894] = {.lex_state = 127}, - [3895] = {.lex_state = 129}, - [3896] = {.lex_state = 33}, - [3897] = {.lex_state = 47}, - [3898] = {.lex_state = 122}, - [3899] = {.lex_state = 107}, - [3900] = {.lex_state = 90}, - [3901] = {.lex_state = 205}, - [3902] = {.lex_state = 122}, - [3903] = {.lex_state = 122}, - [3904] = {.lex_state = 222}, - [3905] = {.lex_state = 129}, - [3906] = {.lex_state = 122}, - [3907] = {.lex_state = 248}, - [3908] = {.lex_state = 107}, - [3909] = {.lex_state = 242}, - [3910] = {.lex_state = 47}, - [3911] = {.lex_state = 122}, - [3912] = {.lex_state = 248}, - [3913] = {.lex_state = 222}, - [3914] = {.lex_state = 115}, - [3915] = {.lex_state = 47}, - [3916] = {.lex_state = 245}, - [3917] = {.lex_state = 47}, - [3918] = {.lex_state = 210}, - [3919] = {.lex_state = 33}, - [3920] = {.lex_state = 47}, - [3921] = {.lex_state = 47}, - [3922] = {.lex_state = 47}, - [3923] = {.lex_state = 129}, - [3924] = {.lex_state = 47}, - [3925] = {.lex_state = 47}, - [3926] = {.lex_state = 47}, - [3927] = {.lex_state = 248}, + [3882] = {.lex_state = 248}, + [3883] = {.lex_state = 221}, + [3884] = {.lex_state = 122}, + [3885] = {.lex_state = 221}, + [3886] = {.lex_state = 209}, + [3887] = {.lex_state = 275}, + [3888] = {.lex_state = 129}, + [3889] = {.lex_state = 221}, + [3890] = {.lex_state = 129}, + [3891] = {.lex_state = 129}, + [3892] = {.lex_state = 204}, + [3893] = {.lex_state = 221}, + [3894] = {.lex_state = 129}, + [3895] = {.lex_state = 33}, + [3896] = {.lex_state = 47}, + [3897] = {.lex_state = 275}, + [3898] = {.lex_state = 127}, + [3899] = {.lex_state = 129}, + [3900] = {.lex_state = 33}, + [3901] = {.lex_state = 274}, + [3902] = {.lex_state = 86}, + [3903] = {.lex_state = 201}, + [3904] = {.lex_state = 47}, + [3905] = {.lex_state = 275}, + [3906] = {.lex_state = 221}, + [3907] = {.lex_state = 108}, + [3908] = {.lex_state = 274}, + [3909] = {.lex_state = 47}, + [3910] = {.lex_state = 274}, + [3911] = {.lex_state = 47}, + [3912] = {.lex_state = 122}, + [3913] = {.lex_state = 33}, + [3914] = {.lex_state = 579}, + [3915] = {.lex_state = 579}, + [3916] = {.lex_state = 579}, + [3917] = {.lex_state = 215}, + [3918] = {.lex_state = 579}, + [3919] = {.lex_state = 127}, + [3920] = {.lex_state = 107}, + [3921] = {.lex_state = 579}, + [3922] = {.lex_state = 90}, + [3923] = {.lex_state = 579}, + [3924] = {.lex_state = 122}, + [3925] = {.lex_state = 241}, + [3926] = {.lex_state = 129}, + [3927] = {.lex_state = 247}, [3928] = {.lex_state = 47}, - [3929] = {.lex_state = 276}, - [3930] = {.lex_state = 90}, - [3931] = {.lex_state = 47}, - [3932] = {.lex_state = 107}, - [3933] = {.lex_state = 33}, - [3934] = {.lex_state = 47}, - [3935] = {.lex_state = 47}, - [3936] = {.lex_state = 222}, - [3937] = {.lex_state = 580}, - [3938] = {.lex_state = 122}, - [3939] = {.lex_state = 122}, - [3940] = {.lex_state = 580}, - [3941] = {.lex_state = 580}, - [3942] = {.lex_state = 580}, - [3943] = {.lex_state = 259}, - [3944] = {.lex_state = 256}, - [3945] = {.lex_state = 47}, - [3946] = {.lex_state = 47}, - [3947] = {.lex_state = 107}, - [3948] = {.lex_state = 90}, - [3949] = {.lex_state = 222}, - [3950] = {.lex_state = 107}, - [3951] = {.lex_state = 129}, - [3952] = {.lex_state = 47}, + [3929] = {.lex_state = 33}, + [3930] = {.lex_state = 47}, + [3931] = {.lex_state = 127}, + [3932] = {.lex_state = 33}, + [3933] = {.lex_state = 47}, + [3934] = {.lex_state = 90}, + [3935] = {.lex_state = 122}, + [3936] = {.lex_state = 107}, + [3937] = {.lex_state = 47}, + [3938] = {.lex_state = 258}, + [3939] = {.lex_state = 107}, + [3940] = {.lex_state = 107}, + [3941] = {.lex_state = 129}, + [3942] = {.lex_state = 107}, + [3943] = {.lex_state = 122}, + [3944] = {.lex_state = 47}, + [3945] = {.lex_state = 247}, + [3946] = {.lex_state = 122}, + [3947] = {.lex_state = 47}, + [3948] = {.lex_state = 47}, + [3949] = {.lex_state = 47}, + [3950] = {.lex_state = 33}, + [3951] = {.lex_state = 90}, + [3952] = {.lex_state = 87}, [3953] = {.lex_state = 122}, - [3954] = {.lex_state = 122}, + [3954] = {.lex_state = 47}, [3955] = {.lex_state = 33}, - [3956] = {.lex_state = 129}, - [3957] = {.lex_state = 129}, - [3958] = {.lex_state = 47}, - [3959] = {.lex_state = 33}, - [3960] = {.lex_state = 129}, - [3961] = {.lex_state = 580}, - [3962] = {.lex_state = 33}, - [3963] = {.lex_state = 108}, - [3964] = {.lex_state = 216}, - [3965] = {.lex_state = 122}, - [3966] = {.lex_state = 580}, - [3967] = {.lex_state = 127}, - [3968] = {.lex_state = 90}, - [3969] = {.lex_state = 86}, - [3970] = {.lex_state = 122}, - [3971] = {.lex_state = 122}, - [3972] = {.lex_state = 47}, - [3973] = {.lex_state = 249}, - [3974] = {.lex_state = 122}, - [3975] = {.lex_state = 122}, - [3976] = {.lex_state = 276}, - [3977] = {.lex_state = 87}, - [3978] = {.lex_state = 129}, - [3979] = {.lex_state = 276}, - [3980] = {.lex_state = 276}, - [3981] = {.lex_state = 210}, - [3982] = {.lex_state = 193}, - [3983] = {.lex_state = 275}, - [3984] = {.lex_state = 47}, + [3956] = {.lex_state = 47}, + [3957] = {.lex_state = 33}, + [3958] = {.lex_state = 258}, + [3959] = {.lex_state = 47}, + [3960] = {.lex_state = 90}, + [3961] = {.lex_state = 122}, + [3962] = {.lex_state = 47}, + [3963] = {.lex_state = 275}, + [3964] = {.lex_state = 33}, + [3965] = {.lex_state = 47}, + [3966] = {.lex_state = 47}, + [3967] = {.lex_state = 247}, + [3968] = {.lex_state = 33}, + [3969] = {.lex_state = 47}, + [3970] = {.lex_state = 47}, + [3971] = {.lex_state = 47}, + [3972] = {.lex_state = 275}, + [3973] = {.lex_state = 129}, + [3974] = {.lex_state = 247}, + [3975] = {.lex_state = 212}, + [3976] = {.lex_state = 47}, + [3977] = {.lex_state = 244}, + [3978] = {.lex_state = 122}, + [3979] = {.lex_state = 122}, + [3980] = {.lex_state = 122}, + [3981] = {.lex_state = 122}, + [3982] = {.lex_state = 122}, + [3983] = {.lex_state = 33}, + [3984] = {.lex_state = 122}, [3985] = {.lex_state = 47}, - [3986] = {.lex_state = 33}, - [3987] = {.lex_state = 641}, - [3988] = {.lex_state = 180}, - [3989] = {.lex_state = 275}, - [3990] = {.lex_state = 0}, - [3991] = {.lex_state = 122}, - [3992] = {.lex_state = 90}, - [3993] = {.lex_state = 127}, - [3994] = {.lex_state = 641}, - [3995] = {.lex_state = 199}, - [3996] = {.lex_state = 108}, - [3997] = {.lex_state = 2097}, - [3998] = {.lex_state = 214}, - [3999] = {.lex_state = 641}, - [4000] = {.lex_state = 122}, - [4001] = {.lex_state = 122}, - [4002] = {.lex_state = 2097}, - [4003] = {.lex_state = 188}, - [4004] = {.lex_state = 127}, - [4005] = {.lex_state = 127}, + [3986] = {.lex_state = 180}, + [3987] = {.lex_state = 33}, + [3988] = {.lex_state = 90}, + [3989] = {.lex_state = 249}, + [3990] = {.lex_state = 236}, + [3991] = {.lex_state = 33}, + [3992] = {.lex_state = 122}, + [3993] = {.lex_state = 274}, + [3994] = {.lex_state = 644}, + [3995] = {.lex_state = 644}, + [3996] = {.lex_state = 644}, + [3997] = {.lex_state = 0}, + [3998] = {.lex_state = 117}, + [3999] = {.lex_state = 199}, + [4000] = {.lex_state = 0}, + [4001] = {.lex_state = 0}, + [4002] = {.lex_state = 0}, + [4003] = {.lex_state = 644}, + [4004] = {.lex_state = 254}, + [4005] = {.lex_state = 644}, [4006] = {.lex_state = 0}, [4007] = {.lex_state = 33}, - [4008] = {.lex_state = 0}, - [4009] = {.lex_state = 257}, + [4008] = {.lex_state = 33}, + [4009] = {.lex_state = 0}, [4010] = {.lex_state = 0}, [4011] = {.lex_state = 0}, [4012] = {.lex_state = 0}, - [4013] = {.lex_state = 0}, - [4014] = {.lex_state = 0}, + [4013] = {.lex_state = 242}, + [4014] = {.lex_state = 259}, [4015] = {.lex_state = 0}, [4016] = {.lex_state = 0}, - [4017] = {.lex_state = 188}, + [4017] = {.lex_state = 213}, [4018] = {.lex_state = 0}, [4019] = {.lex_state = 0}, - [4020] = {.lex_state = 0}, - [4021] = {.lex_state = 2097}, - [4022] = {.lex_state = 180}, - [4023] = {.lex_state = 122}, - [4024] = {.lex_state = 180}, + [4020] = {.lex_state = 274}, + [4021] = {.lex_state = 90}, + [4022] = {.lex_state = 112}, + [4023] = {.lex_state = 274}, + [4024] = {.lex_state = 127}, [4025] = {.lex_state = 0}, - [4026] = {.lex_state = 127}, - [4027] = {.lex_state = 0}, - [4028] = {.lex_state = 122}, - [4029] = {.lex_state = 122}, - [4030] = {.lex_state = 180}, - [4031] = {.lex_state = 127}, - [4032] = {.lex_state = 90}, + [4026] = {.lex_state = 128}, + [4027] = {.lex_state = 663}, + [4028] = {.lex_state = 222}, + [4029] = {.lex_state = 256}, + [4030] = {.lex_state = 109}, + [4031] = {.lex_state = 644}, + [4032] = {.lex_state = 247}, [4033] = {.lex_state = 0}, - [4034] = {.lex_state = 275}, - [4035] = {.lex_state = 0}, - [4036] = {.lex_state = 122}, - [4037] = {.lex_state = 128}, - [4038] = {.lex_state = 180}, - [4039] = {.lex_state = 180}, - [4040] = {.lex_state = 127}, - [4041] = {.lex_state = 261}, - [4042] = {.lex_state = 122}, - [4043] = {.lex_state = 0}, + [4034] = {.lex_state = 122}, + [4035] = {.lex_state = 33}, + [4036] = {.lex_state = 0}, + [4037] = {.lex_state = 2096}, + [4038] = {.lex_state = 274}, + [4039] = {.lex_state = 274}, + [4040] = {.lex_state = 274}, + [4041] = {.lex_state = 33}, + [4042] = {.lex_state = 213}, + [4043] = {.lex_state = 33}, [4044] = {.lex_state = 0}, - [4045] = {.lex_state = 641}, - [4046] = {.lex_state = 275}, - [4047] = {.lex_state = 2201}, - [4048] = {.lex_state = 275}, - [4049] = {.lex_state = 122}, - [4050] = {.lex_state = 0}, + [4045] = {.lex_state = 127}, + [4046] = {.lex_state = 0}, + [4047] = {.lex_state = 127}, + [4048] = {.lex_state = 0}, + [4049] = {.lex_state = 0}, + [4050] = {.lex_state = 2096}, [4051] = {.lex_state = 0}, - [4052] = {.lex_state = 226}, - [4053] = {.lex_state = 0}, - [4054] = {.lex_state = 260}, - [4055] = {.lex_state = 0}, - [4056] = {.lex_state = 2097}, - [4057] = {.lex_state = 0}, - [4058] = {.lex_state = 2097}, - [4059] = {.lex_state = 248}, - [4060] = {.lex_state = 33}, - [4061] = {.lex_state = 275}, + [4052] = {.lex_state = 0}, + [4053] = {.lex_state = 274}, + [4054] = {.lex_state = 0}, + [4055] = {.lex_state = 274}, + [4056] = {.lex_state = 127}, + [4057] = {.lex_state = 127}, + [4058] = {.lex_state = 127}, + [4059] = {.lex_state = 180}, + [4060] = {.lex_state = 0}, + [4061] = {.lex_state = 0}, [4062] = {.lex_state = 0}, - [4063] = {.lex_state = 641}, - [4064] = {.lex_state = 180}, - [4065] = {.lex_state = 250}, - [4066] = {.lex_state = 275}, + [4063] = {.lex_state = 180}, + [4064] = {.lex_state = 0}, + [4065] = {.lex_state = 0}, + [4066] = {.lex_state = 180}, [4067] = {.lex_state = 0}, - [4068] = {.lex_state = 223}, - [4069] = {.lex_state = 243}, + [4068] = {.lex_state = 0}, + [4069] = {.lex_state = 0}, [4070] = {.lex_state = 0}, - [4071] = {.lex_state = 122}, - [4072] = {.lex_state = 250}, - [4073] = {.lex_state = 275}, - [4074] = {.lex_state = 275}, - [4075] = {.lex_state = 180}, - [4076] = {.lex_state = 88}, - [4077] = {.lex_state = 275}, - [4078] = {.lex_state = 33}, - [4079] = {.lex_state = 0}, + [4071] = {.lex_state = 274}, + [4072] = {.lex_state = 274}, + [4073] = {.lex_state = 0}, + [4074] = {.lex_state = 33}, + [4075] = {.lex_state = 88}, + [4076] = {.lex_state = 2096}, + [4077] = {.lex_state = 2096}, + [4078] = {.lex_state = 247}, + [4079] = {.lex_state = 180}, [4080] = {.lex_state = 0}, [4081] = {.lex_state = 0}, - [4082] = {.lex_state = 33}, - [4083] = {.lex_state = 0}, - [4084] = {.lex_state = 260}, - [4085] = {.lex_state = 0}, - [4086] = {.lex_state = 112}, - [4087] = {.lex_state = 180}, - [4088] = {.lex_state = 0}, + [4082] = {.lex_state = 0}, + [4083] = {.lex_state = 180}, + [4084] = {.lex_state = 122}, + [4085] = {.lex_state = 122}, + [4086] = {.lex_state = 0}, + [4087] = {.lex_state = 274}, + [4088] = {.lex_state = 122}, [4089] = {.lex_state = 0}, [4090] = {.lex_state = 0}, - [4091] = {.lex_state = 122}, + [4091] = {.lex_state = 180}, [4092] = {.lex_state = 0}, [4093] = {.lex_state = 0}, - [4094] = {.lex_state = 122}, - [4095] = {.lex_state = 122}, - [4096] = {.lex_state = 122}, - [4097] = {.lex_state = 255}, - [4098] = {.lex_state = 0}, - [4099] = {.lex_state = 33}, - [4100] = {.lex_state = 260}, - [4101] = {.lex_state = 116}, - [4102] = {.lex_state = 200}, - [4103] = {.lex_state = 0}, - [4104] = {.lex_state = 180}, - [4105] = {.lex_state = 255}, - [4106] = {.lex_state = 641}, - [4107] = {.lex_state = 275}, - [4108] = {.lex_state = 275}, - [4109] = {.lex_state = 275}, - [4110] = {.lex_state = 260}, + [4094] = {.lex_state = 0}, + [4095] = {.lex_state = 249}, + [4096] = {.lex_state = 0}, + [4097] = {.lex_state = 0}, + [4098] = {.lex_state = 180}, + [4099] = {.lex_state = 0}, + [4100] = {.lex_state = 0}, + [4101] = {.lex_state = 0}, + [4102] = {.lex_state = 0}, + [4103] = {.lex_state = 88}, + [4104] = {.lex_state = 225}, + [4105] = {.lex_state = 0}, + [4106] = {.lex_state = 0}, + [4107] = {.lex_state = 180}, + [4108] = {.lex_state = 180}, + [4109] = {.lex_state = 0}, + [4110] = {.lex_state = 122}, [4111] = {.lex_state = 0}, - [4112] = {.lex_state = 180}, - [4113] = {.lex_state = 129}, - [4114] = {.lex_state = 0}, - [4115] = {.lex_state = 180}, - [4116] = {.lex_state = 0}, - [4117] = {.lex_state = 0}, - [4118] = {.lex_state = 128}, - [4119] = {.lex_state = 0}, + [4112] = {.lex_state = 0}, + [4113] = {.lex_state = 180}, + [4114] = {.lex_state = 122}, + [4115] = {.lex_state = 0}, + [4116] = {.lex_state = 116}, + [4117] = {.lex_state = 2096}, + [4118] = {.lex_state = 122}, + [4119] = {.lex_state = 122}, [4120] = {.lex_state = 0}, - [4121] = {.lex_state = 33}, - [4122] = {.lex_state = 248}, + [4121] = {.lex_state = 2096}, + [4122] = {.lex_state = 0}, [4123] = {.lex_state = 0}, - [4124] = {.lex_state = 180}, - [4125] = {.lex_state = 128}, + [4124] = {.lex_state = 117}, + [4125] = {.lex_state = 0}, [4126] = {.lex_state = 180}, - [4127] = {.lex_state = 33}, - [4128] = {.lex_state = 0}, + [4127] = {.lex_state = 128}, + [4128] = {.lex_state = 128}, [4129] = {.lex_state = 0}, - [4130] = {.lex_state = 2097}, - [4131] = {.lex_state = 2097}, - [4132] = {.lex_state = 33}, - [4133] = {.lex_state = 180}, - [4134] = {.lex_state = 122}, - [4135] = {.lex_state = 580}, - [4136] = {.lex_state = 128}, - [4137] = {.lex_state = 0}, - [4138] = {.lex_state = 0}, - [4139] = {.lex_state = 0}, - [4140] = {.lex_state = 0}, - [4141] = {.lex_state = 275}, - [4142] = {.lex_state = 180}, - [4143] = {.lex_state = 0}, - [4144] = {.lex_state = 0}, - [4145] = {.lex_state = 33}, - [4146] = {.lex_state = 117}, - [4147] = {.lex_state = 2097}, - [4148] = {.lex_state = 122}, - [4149] = {.lex_state = 127}, - [4150] = {.lex_state = 33}, - [4151] = {.lex_state = 0}, - [4152] = {.lex_state = 275}, - [4153] = {.lex_state = 275}, - [4154] = {.lex_state = 275}, + [4130] = {.lex_state = 128}, + [4131] = {.lex_state = 188}, + [4132] = {.lex_state = 579}, + [4133] = {.lex_state = 122}, + [4134] = {.lex_state = 180}, + [4135] = {.lex_state = 274}, + [4136] = {.lex_state = 274}, + [4137] = {.lex_state = 122}, + [4138] = {.lex_state = 254}, + [4139] = {.lex_state = 259}, + [4140] = {.lex_state = 274}, + [4141] = {.lex_state = 108}, + [4142] = {.lex_state = 2096}, + [4143] = {.lex_state = 2096}, + [4144] = {.lex_state = 180}, + [4145] = {.lex_state = 122}, + [4146] = {.lex_state = 33}, + [4147] = {.lex_state = 33}, + [4148] = {.lex_state = 579}, + [4149] = {.lex_state = 180}, + [4150] = {.lex_state = 129}, + [4151] = {.lex_state = 274}, + [4152] = {.lex_state = 2096}, + [4153] = {.lex_state = 122}, + [4154] = {.lex_state = 2096}, [4155] = {.lex_state = 180}, - [4156] = {.lex_state = 0}, - [4157] = {.lex_state = 257}, - [4158] = {.lex_state = 129}, - [4159] = {.lex_state = 0}, - [4160] = {.lex_state = 0}, + [4156] = {.lex_state = 122}, + [4157] = {.lex_state = 122}, + [4158] = {.lex_state = 33}, + [4159] = {.lex_state = 274}, + [4160] = {.lex_state = 259}, [4161] = {.lex_state = 0}, - [4162] = {.lex_state = 237}, + [4162] = {.lex_state = 274}, [4163] = {.lex_state = 0}, - [4164] = {.lex_state = 122}, - [4165] = {.lex_state = 275}, - [4166] = {.lex_state = 275}, - [4167] = {.lex_state = 275}, + [4164] = {.lex_state = 0}, + [4165] = {.lex_state = 0}, + [4166] = {.lex_state = 180}, + [4167] = {.lex_state = 0}, [4168] = {.lex_state = 0}, - [4169] = {.lex_state = 0}, - [4170] = {.lex_state = 214}, - [4171] = {.lex_state = 2097}, - [4172] = {.lex_state = 0}, - [4173] = {.lex_state = 0}, + [4169] = {.lex_state = 127}, + [4170] = {.lex_state = 200}, + [4171] = {.lex_state = 0}, + [4172] = {.lex_state = 2096}, + [4173] = {.lex_state = 2096}, [4174] = {.lex_state = 0}, - [4175] = {.lex_state = 33}, - [4176] = {.lex_state = 580}, + [4175] = {.lex_state = 0}, + [4176] = {.lex_state = 122}, [4177] = {.lex_state = 122}, - [4178] = {.lex_state = 109}, - [4179] = {.lex_state = 2201}, - [4180] = {.lex_state = 0}, - [4181] = {.lex_state = 0}, - [4182] = {.lex_state = 127}, - [4183] = {.lex_state = 90}, - [4184] = {.lex_state = 180}, - [4185] = {.lex_state = 180}, - [4186] = {.lex_state = 0}, - [4187] = {.lex_state = 0}, - [4188] = {.lex_state = 117}, - [4189] = {.lex_state = 88}, - [4190] = {.lex_state = 0}, - [4191] = {.lex_state = 0}, - [4192] = {.lex_state = 2097}, - [4193] = {.lex_state = 2097}, - [4194] = {.lex_state = 122}, - [4195] = {.lex_state = 2097}, - [4196] = {.lex_state = 122}, - [4197] = {.lex_state = 664}, - [4198] = {.lex_state = 0}, + [4178] = {.lex_state = 180}, + [4179] = {.lex_state = 188}, + [4180] = {.lex_state = 122}, + [4181] = {.lex_state = 274}, + [4182] = {.lex_state = 122}, + [4183] = {.lex_state = 180}, + [4184] = {.lex_state = 0}, + [4185] = {.lex_state = 0}, + [4186] = {.lex_state = 33}, + [4187] = {.lex_state = 129}, + [4188] = {.lex_state = 259}, + [4189] = {.lex_state = 2200}, + [4190] = {.lex_state = 127}, + [4191] = {.lex_state = 122}, + [4192] = {.lex_state = 2200}, + [4193] = {.lex_state = 274}, + [4194] = {.lex_state = 0}, + [4195] = {.lex_state = 256}, + [4196] = {.lex_state = 0}, + [4197] = {.lex_state = 260}, + [4198] = {.lex_state = 90}, [4199] = {.lex_state = 0}, [4200] = {.lex_state = 0}, [4201] = {.lex_state = 0}, [4202] = {.lex_state = 0}, - [4203] = {.lex_state = 178}, - [4204] = {.lex_state = 583}, - [4205] = {.lex_state = 127}, - [4206] = {.lex_state = 90}, - [4207] = {.lex_state = 122}, - [4208] = {.lex_state = 147}, - [4209] = {.lex_state = 147}, - [4210] = {.lex_state = 199}, - [4211] = {.lex_state = 33}, - [4212] = {.lex_state = 124}, + [4203] = {.lex_state = 121}, + [4204] = {.lex_state = 178}, + [4205] = {.lex_state = 89}, + [4206] = {.lex_state = 261}, + [4207] = {.lex_state = 158}, + [4208] = {.lex_state = 122}, + [4209] = {.lex_state = 124}, + [4210] = {.lex_state = 261}, + [4211] = {.lex_state = 582}, + [4212] = {.lex_state = 0}, [4213] = {.lex_state = 0}, - [4214] = {.lex_state = 124}, - [4215] = {.lex_state = 215}, - [4216] = {.lex_state = 122}, - [4217] = {.lex_state = 215}, - [4218] = {.lex_state = 118}, - [4219] = {.lex_state = 215}, - [4220] = {.lex_state = 215}, - [4221] = {.lex_state = 118}, - [4222] = {.lex_state = 215}, - [4223] = {.lex_state = 118}, - [4224] = {.lex_state = 215}, - [4225] = {.lex_state = 277}, - [4226] = {.lex_state = 35}, - [4227] = {.lex_state = 0}, - [4228] = {.lex_state = 0}, - [4229] = {.lex_state = 178}, - [4230] = {.lex_state = 251}, - [4231] = {.lex_state = 626}, - [4232] = {.lex_state = 215}, - [4233] = {.lex_state = 121}, - [4234] = {.lex_state = 275}, - [4235] = {.lex_state = 33}, - [4236] = {.lex_state = 277}, - [4237] = {.lex_state = 122}, - [4238] = {.lex_state = 122}, - [4239] = {.lex_state = 215}, - [4240] = {.lex_state = 215}, - [4241] = {.lex_state = 122}, - [4242] = {.lex_state = 124}, - [4243] = {.lex_state = 89}, - [4244] = {.lex_state = 38}, - [4245] = {.lex_state = 47}, - [4246] = {.lex_state = 89}, + [4214] = {.lex_state = 122}, + [4215] = {.lex_state = 122}, + [4216] = {.lex_state = 158}, + [4217] = {.lex_state = 178}, + [4218] = {.lex_state = 276}, + [4219] = {.lex_state = 214}, + [4220] = {.lex_state = 2}, + [4221] = {.lex_state = 89}, + [4222] = {.lex_state = 276}, + [4223] = {.lex_state = 90}, + [4224] = {.lex_state = 127}, + [4225] = {.lex_state = 274}, + [4226] = {.lex_state = 122}, + [4227] = {.lex_state = 122}, + [4228] = {.lex_state = 227}, + [4229] = {.lex_state = 625}, + [4230] = {.lex_state = 129}, + [4231] = {.lex_state = 129}, + [4232] = {.lex_state = 188}, + [4233] = {.lex_state = 124}, + [4234] = {.lex_state = 250}, + [4235] = {.lex_state = 89}, + [4236] = {.lex_state = 118}, + [4237] = {.lex_state = 2}, + [4238] = {.lex_state = 223}, + [4239] = {.lex_state = 89}, + [4240] = {.lex_state = 127}, + [4241] = {.lex_state = 89}, + [4242] = {.lex_state = 276}, + [4243] = {.lex_state = 276}, + [4244] = {.lex_state = 118}, + [4245] = {.lex_state = 122}, + [4246] = {.lex_state = 625}, [4247] = {.lex_state = 89}, - [4248] = {.lex_state = 178}, - [4249] = {.lex_state = 277}, - [4250] = {.lex_state = 626}, - [4251] = {.lex_state = 129}, - [4252] = {.lex_state = 277}, - [4253] = {.lex_state = 275}, - [4254] = {.lex_state = 129}, - [4255] = {.lex_state = 90}, - [4256] = {.lex_state = 129}, - [4257] = {.lex_state = 33}, - [4258] = {.lex_state = 251}, - [4259] = {.lex_state = 2}, - [4260] = {.lex_state = 626}, - [4261] = {.lex_state = 277}, - [4262] = {.lex_state = 158}, - [4263] = {.lex_state = 122}, + [4248] = {.lex_state = 89}, + [4249] = {.lex_state = 178}, + [4250] = {.lex_state = 250}, + [4251] = {.lex_state = 276}, + [4252] = {.lex_state = 199}, + [4253] = {.lex_state = 276}, + [4254] = {.lex_state = 178}, + [4255] = {.lex_state = 582}, + [4256] = {.lex_state = 89}, + [4257] = {.lex_state = 122}, + [4258] = {.lex_state = 276}, + [4259] = {.lex_state = 89}, + [4260] = {.lex_state = 656}, + [4261] = {.lex_state = 129}, + [4262] = {.lex_state = 0}, + [4263] = {.lex_state = 178}, [4264] = {.lex_state = 122}, - [4265] = {.lex_state = 0}, - [4266] = {.lex_state = 158}, - [4267] = {.lex_state = 0}, - [4268] = {.lex_state = 33}, - [4269] = {.lex_state = 0}, - [4270] = {.lex_state = 228}, - [4271] = {.lex_state = 122}, - [4272] = {.lex_state = 228}, - [4273] = {.lex_state = 0}, + [4265] = {.lex_state = 578}, + [4266] = {.lex_state = 276}, + [4267] = {.lex_state = 224}, + [4268] = {.lex_state = 0}, + [4269] = {.lex_state = 89}, + [4270] = {.lex_state = 119}, + [4271] = {.lex_state = 214}, + [4272] = {.lex_state = 122}, + [4273] = {.lex_state = 122}, [4274] = {.lex_state = 0}, - [4275] = {.lex_state = 118}, - [4276] = {.lex_state = 251}, - [4277] = {.lex_state = 225}, - [4278] = {.lex_state = 118}, - [4279] = {.lex_state = 215}, - [4280] = {.lex_state = 277}, - [4281] = {.lex_state = 215}, - [4282] = {.lex_state = 626}, - [4283] = {.lex_state = 215}, - [4284] = {.lex_state = 35}, - [4285] = {.lex_state = 277}, - [4286] = {.lex_state = 2}, - [4287] = {.lex_state = 251}, - [4288] = {.lex_state = 277}, - [4289] = {.lex_state = 118}, - [4290] = {.lex_state = 118}, - [4291] = {.lex_state = 277}, - [4292] = {.lex_state = 225}, - [4293] = {.lex_state = 583}, - [4294] = {.lex_state = 178}, - [4295] = {.lex_state = 277}, - [4296] = {.lex_state = 262}, - [4297] = {.lex_state = 118}, - [4298] = {.lex_state = 251}, - [4299] = {.lex_state = 262}, - [4300] = {.lex_state = 277}, - [4301] = {.lex_state = 178}, - [4302] = {.lex_state = 277}, - [4303] = {.lex_state = 118}, - [4304] = {.lex_state = 277}, - [4305] = {.lex_state = 118}, - [4306] = {.lex_state = 118}, - [4307] = {.lex_state = 657}, - [4308] = {.lex_state = 178}, - [4309] = {.lex_state = 277}, - [4310] = {.lex_state = 119}, - [4311] = {.lex_state = 89}, - [4312] = {.lex_state = 277}, - [4313] = {.lex_state = 119}, - [4314] = {.lex_state = 178}, - [4315] = {.lex_state = 277}, - [4316] = {.lex_state = 277}, - [4317] = {.lex_state = 178}, + [4275] = {.lex_state = 276}, + [4276] = {.lex_state = 122}, + [4277] = {.lex_state = 276}, + [4278] = {.lex_state = 2}, + [4279] = {.lex_state = 276}, + [4280] = {.lex_state = 33}, + [4281] = {.lex_state = 276}, + [4282] = {.lex_state = 90}, + [4283] = {.lex_state = 625}, + [4284] = {.lex_state = 147}, + [4285] = {.lex_state = 178}, + [4286] = {.lex_state = 35}, + [4287] = {.lex_state = 276}, + [4288] = {.lex_state = 250}, + [4289] = {.lex_state = 89}, + [4290] = {.lex_state = 119}, + [4291] = {.lex_state = 118}, + [4292] = {.lex_state = 89}, + [4293] = {.lex_state = 276}, + [4294] = {.lex_state = 89}, + [4295] = {.lex_state = 2}, + [4296] = {.lex_state = 124}, + [4297] = {.lex_state = 214}, + [4298] = {.lex_state = 118}, + [4299] = {.lex_state = 178}, + [4300] = {.lex_state = 276}, + [4301] = {.lex_state = 118}, + [4302] = {.lex_state = 214}, + [4303] = {.lex_state = 276}, + [4304] = {.lex_state = 625}, + [4305] = {.lex_state = 178}, + [4306] = {.lex_state = 276}, + [4307] = {.lex_state = 147}, + [4308] = {.lex_state = 2}, + [4309] = {.lex_state = 118}, + [4310] = {.lex_state = 276}, + [4311] = {.lex_state = 276}, + [4312] = {.lex_state = 178}, + [4313] = {.lex_state = 214}, + [4314] = {.lex_state = 625}, + [4315] = {.lex_state = 178}, + [4316] = {.lex_state = 625}, + [4317] = {.lex_state = 224}, [4318] = {.lex_state = 178}, - [4319] = {.lex_state = 89}, - [4320] = {.lex_state = 118}, - [4321] = {.lex_state = 118}, - [4322] = {.lex_state = 178}, - [4323] = {.lex_state = 215}, - [4324] = {.lex_state = 178}, + [4319] = {.lex_state = 2}, + [4320] = {.lex_state = 274}, + [4321] = {.lex_state = 178}, + [4322] = {.lex_state = 33}, + [4323] = {.lex_state = 178}, + [4324] = {.lex_state = 118}, [4325] = {.lex_state = 178}, - [4326] = {.lex_state = 178}, + [4326] = {.lex_state = 118}, [4327] = {.lex_state = 178}, - [4328] = {.lex_state = 178}, + [4328] = {.lex_state = 214}, [4329] = {.lex_state = 178}, - [4330] = {.lex_state = 275}, - [4331] = {.lex_state = 90}, - [4332] = {.lex_state = 178}, - [4333] = {.lex_state = 178}, - [4334] = {.lex_state = 178}, - [4335] = {.lex_state = 89}, - [4336] = {.lex_state = 89}, - [4337] = {.lex_state = 626}, - [4338] = {.lex_state = 89}, - [4339] = {.lex_state = 89}, - [4340] = {.lex_state = 275}, - [4341] = {.lex_state = 188}, - [4342] = {.lex_state = 89}, - [4343] = {.lex_state = 89}, - [4344] = {.lex_state = 178}, - [4345] = {.lex_state = 277}, - [4346] = {.lex_state = 2}, - [4347] = {.lex_state = 626}, - [4348] = {.lex_state = 224}, - [4349] = {.lex_state = 89}, - [4350] = {.lex_state = 89}, - [4351] = {.lex_state = 579}, - [4352] = {.lex_state = 122}, - [4353] = {.lex_state = 277}, - [4354] = {.lex_state = 122}, - [4355] = {.lex_state = 122}, - [4356] = {.lex_state = 2}, - [4357] = {.lex_state = 127}, - [4358] = {.lex_state = 118}, - [4359] = {.lex_state = 2}, - [4360] = {.lex_state = 2}, - [4361] = {.lex_state = 178}, + [4330] = {.lex_state = 178}, + [4331] = {.lex_state = 227}, + [4332] = {.lex_state = 250}, + [4333] = {.lex_state = 118}, + [4334] = {.lex_state = 214}, + [4335] = {.lex_state = 90}, + [4336] = {.lex_state = 178}, + [4337] = {.lex_state = 35}, + [4338] = {.lex_state = 178}, + [4339] = {.lex_state = 0}, + [4340] = {.lex_state = 118}, + [4341] = {.lex_state = 274}, + [4342] = {.lex_state = 178}, + [4343] = {.lex_state = 178}, + [4344] = {.lex_state = 214}, + [4345] = {.lex_state = 250}, + [4346] = {.lex_state = 0}, + [4347] = {.lex_state = 118}, + [4348] = {.lex_state = 214}, + [4349] = {.lex_state = 214}, + [4350] = {.lex_state = 118}, + [4351] = {.lex_state = 214}, + [4352] = {.lex_state = 214}, + [4353] = {.lex_state = 33}, + [4354] = {.lex_state = 47}, + [4355] = {.lex_state = 118}, + [4356] = {.lex_state = 38}, + [4357] = {.lex_state = 214}, + [4358] = {.lex_state = 0}, + [4359] = {.lex_state = 33}, + [4360] = {.lex_state = 274}, + [4361] = {.lex_state = 118}, [4362] = {.lex_state = 33}, [4363] = {.lex_state = 33}, - [4364] = {.lex_state = 120}, - [4365] = {.lex_state = 224}, - [4366] = {.lex_state = 188}, - [4367] = {.lex_state = 224}, - [4368] = {.lex_state = 224}, - [4369] = {.lex_state = 33}, - [4370] = {.lex_state = 120}, + [4364] = {.lex_state = 124}, + [4365] = {.lex_state = 124}, + [4366] = {.lex_state = 124}, + [4367] = {.lex_state = 33}, + [4368] = {.lex_state = 33}, + [4369] = {.lex_state = 228}, + [4370] = {.lex_state = 228}, [4371] = {.lex_state = 120}, - [4372] = {.lex_state = 188}, - [4373] = {.lex_state = 122}, - [4374] = {.lex_state = 188}, - [4375] = {.lex_state = 120}, - [4376] = {.lex_state = 188}, + [4372] = {.lex_state = 0}, + [4373] = {.lex_state = 33}, + [4374] = {.lex_state = 0}, + [4375] = {.lex_state = 0}, + [4376] = {.lex_state = 0}, [4377] = {.lex_state = 120}, - [4378] = {.lex_state = 120}, - [4379] = {.lex_state = 178}, - [4380] = {.lex_state = 188}, - [4381] = {.lex_state = 188}, - [4382] = {.lex_state = 33}, + [4378] = {.lex_state = 33}, + [4379] = {.lex_state = 124}, + [4380] = {.lex_state = 262}, + [4381] = {.lex_state = 124}, + [4382] = {.lex_state = 223}, [4383] = {.lex_state = 33}, - [4384] = {.lex_state = 188}, - [4385] = {.lex_state = 188}, - [4386] = {.lex_state = 188}, - [4387] = {.lex_state = 33}, - [4388] = {.lex_state = 122}, + [4384] = {.lex_state = 90}, + [4385] = {.lex_state = 214}, + [4386] = {.lex_state = 223}, + [4387] = {.lex_state = 120}, + [4388] = {.lex_state = 124}, [4389] = {.lex_state = 33}, - [4390] = {.lex_state = 0}, - [4391] = {.lex_state = 630}, - [4392] = {.lex_state = 0}, + [4390] = {.lex_state = 33}, + [4391] = {.lex_state = 120}, + [4392] = {.lex_state = 120}, [4393] = {.lex_state = 0}, - [4394] = {.lex_state = 188}, - [4395] = {.lex_state = 124}, - [4396] = {.lex_state = 180}, - [4397] = {.lex_state = 120}, - [4398] = {.lex_state = 229}, - [4399] = {.lex_state = 229}, - [4400] = {.lex_state = 124}, - [4401] = {.lex_state = 124}, - [4402] = {.lex_state = 180}, - [4403] = {.lex_state = 122}, - [4404] = {.lex_state = 120}, - [4405] = {.lex_state = 120}, - [4406] = {.lex_state = 33}, - [4407] = {.lex_state = 124}, - [4408] = {.lex_state = 124}, - [4409] = {.lex_state = 124}, - [4410] = {.lex_state = 0}, - [4411] = {.lex_state = 626}, - [4412] = {.lex_state = 580}, - [4413] = {.lex_state = 0}, - [4414] = {.lex_state = 188}, - [4415] = {.lex_state = 122}, - [4416] = {.lex_state = 188}, - [4417] = {.lex_state = 33}, - [4418] = {.lex_state = 147}, - [4419] = {.lex_state = 147}, - [4420] = {.lex_state = 0}, - [4421] = {.lex_state = 33}, - [4422] = {.lex_state = 33}, - [4423] = {.lex_state = 33}, - [4424] = {.lex_state = 33}, - [4425] = {.lex_state = 33}, - [4426] = {.lex_state = 0}, - [4427] = {.lex_state = 0}, - [4428] = {.lex_state = 0}, - [4429] = {.lex_state = 0}, - [4430] = {.lex_state = 0}, + [4394] = {.lex_state = 33}, + [4395] = {.lex_state = 33}, + [4396] = {.lex_state = 33}, + [4397] = {.lex_state = 0}, + [4398] = {.lex_state = 0}, + [4399] = {.lex_state = 33}, + [4400] = {.lex_state = 33}, + [4401] = {.lex_state = 33}, + [4402] = {.lex_state = 33}, + [4403] = {.lex_state = 33}, + [4404] = {.lex_state = 0}, + [4405] = {.lex_state = 33}, + [4406] = {.lex_state = 0}, + [4407] = {.lex_state = 0}, + [4408] = {.lex_state = 0}, + [4409] = {.lex_state = 120}, + [4410] = {.lex_state = 120}, + [4411] = {.lex_state = 120}, + [4412] = {.lex_state = 120}, + [4413] = {.lex_state = 124}, + [4414] = {.lex_state = 243}, + [4415] = {.lex_state = 33}, + [4416] = {.lex_state = 33}, + [4417] = {.lex_state = 124}, + [4418] = {.lex_state = 228}, + [4419] = {.lex_state = 129}, + [4420] = {.lex_state = 235}, + [4421] = {.lex_state = 235}, + [4422] = {.lex_state = 223}, + [4423] = {.lex_state = 223}, + [4424] = {.lex_state = 223}, + [4425] = {.lex_state = 120}, + [4426] = {.lex_state = 180}, + [4427] = {.lex_state = 629}, + [4428] = {.lex_state = 33}, + [4429] = {.lex_state = 33}, + [4430] = {.lex_state = 33}, [4431] = {.lex_state = 33}, - [4432] = {.lex_state = 33}, - [4433] = {.lex_state = 229}, - [4434] = {.lex_state = 33}, - [4435] = {.lex_state = 263}, - [4436] = {.lex_state = 33}, - [4437] = {.lex_state = 33}, - [4438] = {.lex_state = 33}, - [4439] = {.lex_state = 229}, - [4440] = {.lex_state = 122}, - [4441] = {.lex_state = 229}, - [4442] = {.lex_state = 215}, - [4443] = {.lex_state = 224}, - [4444] = {.lex_state = 224}, - [4445] = {.lex_state = 147}, - [4446] = {.lex_state = 147}, - [4447] = {.lex_state = 579}, - [4448] = {.lex_state = 43}, - [4449] = {.lex_state = 147}, - [4450] = {.lex_state = 147}, - [4451] = {.lex_state = 122}, - [4452] = {.lex_state = 147}, - [4453] = {.lex_state = 122}, - [4454] = {.lex_state = 33}, - [4455] = {.lex_state = 33}, - [4456] = {.lex_state = 147}, - [4457] = {.lex_state = 147}, - [4458] = {.lex_state = 236}, - [4459] = {.lex_state = 244}, - [4460] = {.lex_state = 188}, - [4461] = {.lex_state = 33}, - [4462] = {.lex_state = 180}, - [4463] = {.lex_state = 33}, - [4464] = {.lex_state = 33}, - [4465] = {.lex_state = 147}, - [4466] = {.lex_state = 224}, - [4467] = {.lex_state = 188}, - [4468] = {.lex_state = 33}, - [4469] = {.lex_state = 33}, - [4470] = {.lex_state = 33}, - [4471] = {.lex_state = 33}, - [4472] = {.lex_state = 43}, - [4473] = {.lex_state = 33}, + [4432] = {.lex_state = 235}, + [4433] = {.lex_state = 33}, + [4434] = {.lex_state = 235}, + [4435] = {.lex_state = 243}, + [4436] = {.lex_state = 578}, + [4437] = {.lex_state = 629}, + [4438] = {.lex_state = 0}, + [4439] = {.lex_state = 0}, + [4440] = {.lex_state = 188}, + [4441] = {.lex_state = 33}, + [4442] = {.lex_state = 243}, + [4443] = {.lex_state = 243}, + [4444] = {.lex_state = 33}, + [4445] = {.lex_state = 33}, + [4446] = {.lex_state = 33}, + [4447] = {.lex_state = 228}, + [4448] = {.lex_state = 262}, + [4449] = {.lex_state = 33}, + [4450] = {.lex_state = 33}, + [4451] = {.lex_state = 214}, + [4452] = {.lex_state = 243}, + [4453] = {.lex_state = 228}, + [4454] = {.lex_state = 122}, + [4455] = {.lex_state = 228}, + [4456] = {.lex_state = 235}, + [4457] = {.lex_state = 228}, + [4458] = {.lex_state = 0}, + [4459] = {.lex_state = 235}, + [4460] = {.lex_state = 228}, + [4461] = {.lex_state = 228}, + [4462] = {.lex_state = 228}, + [4463] = {.lex_state = 228}, + [4464] = {.lex_state = 228}, + [4465] = {.lex_state = 127}, + [4466] = {.lex_state = 127}, + [4467] = {.lex_state = 578}, + [4468] = {.lex_state = 223}, + [4469] = {.lex_state = 223}, + [4470] = {.lex_state = 127}, + [4471] = {.lex_state = 262}, + [4472] = {.lex_state = 262}, + [4473] = {.lex_state = 43}, [4474] = {.lex_state = 0}, - [4475] = {.lex_state = 0}, - [4476] = {.lex_state = 122}, - [4477] = {.lex_state = 224}, - [4478] = {.lex_state = 33}, - [4479] = {.lex_state = 33}, - [4480] = {.lex_state = 244}, - [4481] = {.lex_state = 33}, - [4482] = {.lex_state = 224}, - [4483] = {.lex_state = 33}, - [4484] = {.lex_state = 215}, - [4485] = {.lex_state = 33}, - [4486] = {.lex_state = 33}, - [4487] = {.lex_state = 33}, + [4475] = {.lex_state = 121}, + [4476] = {.lex_state = 180}, + [4477] = {.lex_state = 262}, + [4478] = {.lex_state = 121}, + [4479] = {.lex_state = 121}, + [4480] = {.lex_state = 178}, + [4481] = {.lex_state = 180}, + [4482] = {.lex_state = 180}, + [4483] = {.lex_state = 579}, + [4484] = {.lex_state = 0}, + [4485] = {.lex_state = 147}, + [4486] = {.lex_state = 228}, + [4487] = {.lex_state = 120}, [4488] = {.lex_state = 33}, - [4489] = {.lex_state = 90}, - [4490] = {.lex_state = 33}, - [4491] = {.lex_state = 224}, - [4492] = {.lex_state = 229}, - [4493] = {.lex_state = 224}, - [4494] = {.lex_state = 251}, - [4495] = {.lex_state = 252}, - [4496] = {.lex_state = 33}, - [4497] = {.lex_state = 244}, - [4498] = {.lex_state = 229}, - [4499] = {.lex_state = 122}, - [4500] = {.lex_state = 263}, - [4501] = {.lex_state = 188}, - [4502] = {.lex_state = 120}, - [4503] = {.lex_state = 263}, - [4504] = {.lex_state = 224}, - [4505] = {.lex_state = 33}, - [4506] = {.lex_state = 263}, - [4507] = {.lex_state = 178}, - [4508] = {.lex_state = 236}, - [4509] = {.lex_state = 120}, - [4510] = {.lex_state = 244}, + [4489] = {.lex_state = 120}, + [4490] = {.lex_state = 120}, + [4491] = {.lex_state = 89}, + [4492] = {.lex_state = 223}, + [4493] = {.lex_state = 250}, + [4494] = {.lex_state = 223}, + [4495] = {.lex_state = 223}, + [4496] = {.lex_state = 578}, + [4497] = {.lex_state = 251}, + [4498] = {.lex_state = 147}, + [4499] = {.lex_state = 0}, + [4500] = {.lex_state = 0}, + [4501] = {.lex_state = 122}, + [4502] = {.lex_state = 147}, + [4503] = {.lex_state = 122}, + [4504] = {.lex_state = 578}, + [4505] = {.lex_state = 578}, + [4506] = {.lex_state = 578}, + [4507] = {.lex_state = 33}, + [4508] = {.lex_state = 0}, + [4509] = {.lex_state = 33}, + [4510] = {.lex_state = 122}, [4511] = {.lex_state = 122}, - [4512] = {.lex_state = 33}, + [4512] = {.lex_state = 188}, [4513] = {.lex_state = 33}, - [4514] = {.lex_state = 33}, - [4515] = {.lex_state = 33}, - [4516] = {.lex_state = 122}, - [4517] = {.lex_state = 33}, - [4518] = {.lex_state = 229}, - [4519] = {.lex_state = 89}, - [4520] = {.lex_state = 122}, - [4521] = {.lex_state = 579}, - [4522] = {.lex_state = 236}, - [4523] = {.lex_state = 236}, - [4524] = {.lex_state = 244}, - [4525] = {.lex_state = 129}, - [4526] = {.lex_state = 33}, - [4527] = {.lex_state = 120}, - [4528] = {.lex_state = 147}, - [4529] = {.lex_state = 122}, - [4530] = {.lex_state = 120}, - [4531] = {.lex_state = 120}, + [4514] = {.lex_state = 188}, + [4515] = {.lex_state = 147}, + [4516] = {.lex_state = 33}, + [4517] = {.lex_state = 147}, + [4518] = {.lex_state = 0}, + [4519] = {.lex_state = 33}, + [4520] = {.lex_state = 33}, + [4521] = {.lex_state = 147}, + [4522] = {.lex_state = 147}, + [4523] = {.lex_state = 33}, + [4524] = {.lex_state = 147}, + [4525] = {.lex_state = 243}, + [4526] = {.lex_state = 147}, + [4527] = {.lex_state = 629}, + [4528] = {.lex_state = 33}, + [4529] = {.lex_state = 243}, + [4530] = {.lex_state = 147}, + [4531] = {.lex_state = 243}, [4532] = {.lex_state = 188}, - [4533] = {.lex_state = 0}, - [4534] = {.lex_state = 188}, - [4535] = {.lex_state = 0}, - [4536] = {.lex_state = 0}, - [4537] = {.lex_state = 33}, + [4533] = {.lex_state = 122}, + [4534] = {.lex_state = 33}, + [4535] = {.lex_state = 188}, + [4536] = {.lex_state = 188}, + [4537] = {.lex_state = 188}, [4538] = {.lex_state = 33}, - [4539] = {.lex_state = 0}, - [4540] = {.lex_state = 33}, + [4539] = {.lex_state = 33}, + [4540] = {.lex_state = 188}, [4541] = {.lex_state = 33}, - [4542] = {.lex_state = 33}, - [4543] = {.lex_state = 33}, - [4544] = {.lex_state = 0}, - [4545] = {.lex_state = 244}, - [4546] = {.lex_state = 251}, - [4547] = {.lex_state = 121}, + [4542] = {.lex_state = 243}, + [4543] = {.lex_state = 188}, + [4544] = {.lex_state = 33}, + [4545] = {.lex_state = 188}, + [4546] = {.lex_state = 33}, + [4547] = {.lex_state = 243}, [4548] = {.lex_state = 188}, - [4549] = {.lex_state = 244}, - [4550] = {.lex_state = 244}, - [4551] = {.lex_state = 122}, - [4552] = {.lex_state = 122}, - [4553] = {.lex_state = 630}, - [4554] = {.lex_state = 244}, - [4555] = {.lex_state = 188}, - [4556] = {.lex_state = 224}, - [4557] = {.lex_state = 33}, - [4558] = {.lex_state = 244}, + [4549] = {.lex_state = 188}, + [4550] = {.lex_state = 33}, + [4551] = {.lex_state = 33}, + [4552] = {.lex_state = 223}, + [4553] = {.lex_state = 188}, + [4554] = {.lex_state = 188}, + [4555] = {.lex_state = 0}, + [4556] = {.lex_state = 0}, + [4557] = {.lex_state = 243}, + [4558] = {.lex_state = 243}, [4559] = {.lex_state = 33}, - [4560] = {.lex_state = 33}, - [4561] = {.lex_state = 33}, - [4562] = {.lex_state = 244}, + [4560] = {.lex_state = 188}, + [4561] = {.lex_state = 243}, + [4562] = {.lex_state = 33}, [4563] = {.lex_state = 33}, [4564] = {.lex_state = 33}, - [4565] = {.lex_state = 33}, - [4566] = {.lex_state = 33}, - [4567] = {.lex_state = 579}, - [4568] = {.lex_state = 33}, - [4569] = {.lex_state = 33}, - [4570] = {.lex_state = 579}, - [4571] = {.lex_state = 33}, - [4572] = {.lex_state = 579}, - [4573] = {.lex_state = 33}, - [4574] = {.lex_state = 124}, - [4575] = {.lex_state = 33}, - [4576] = {.lex_state = 122}, - [4577] = {.lex_state = 122}, - [4578] = {.lex_state = 33}, + [4565] = {.lex_state = 188}, + [4566] = {.lex_state = 188}, + [4567] = {.lex_state = 33}, + [4568] = {.lex_state = 578}, + [4569] = {.lex_state = 243}, + [4570] = {.lex_state = 33}, + [4571] = {.lex_state = 147}, + [4572] = {.lex_state = 43}, + [4573] = {.lex_state = 43}, + [4574] = {.lex_state = 188}, + [4575] = {.lex_state = 243}, + [4576] = {.lex_state = 147}, + [4577] = {.lex_state = 178}, + [4578] = {.lex_state = 188}, [4579] = {.lex_state = 0}, - [4580] = {.lex_state = 147}, - [4581] = {.lex_state = 630}, - [4582] = {.lex_state = 33}, - [4583] = {.lex_state = 33}, - [4584] = {.lex_state = 33}, + [4580] = {.lex_state = 188}, + [4581] = {.lex_state = 188}, + [4582] = {.lex_state = 188}, + [4583] = {.lex_state = 243}, + [4584] = {.lex_state = 266}, [4585] = {.lex_state = 33}, - [4586] = {.lex_state = 579}, - [4587] = {.lex_state = 188}, + [4586] = {.lex_state = 33}, + [4587] = {.lex_state = 33}, [4588] = {.lex_state = 33}, - [4589] = {.lex_state = 33}, - [4590] = {.lex_state = 33}, - [4591] = {.lex_state = 33}, + [4589] = {.lex_state = 147}, + [4590] = {.lex_state = 0}, + [4591] = {.lex_state = 0}, [4592] = {.lex_state = 33}, - [4593] = {.lex_state = 33}, - [4594] = {.lex_state = 33}, - [4595] = {.lex_state = 33}, - [4596] = {.lex_state = 33}, - [4597] = {.lex_state = 33}, + [4593] = {.lex_state = 243}, + [4594] = {.lex_state = 250}, + [4595] = {.lex_state = 120}, + [4596] = {.lex_state = 188}, + [4597] = {.lex_state = 188}, [4598] = {.lex_state = 33}, - [4599] = {.lex_state = 188}, + [4599] = {.lex_state = 33}, [4600] = {.lex_state = 33}, - [4601] = {.lex_state = 33}, - [4602] = {.lex_state = 33}, + [4601] = {.lex_state = 122}, + [4602] = {.lex_state = 188}, [4603] = {.lex_state = 33}, - [4604] = {.lex_state = 33}, - [4605] = {.lex_state = 33}, - [4606] = {.lex_state = 188}, - [4607] = {.lex_state = 229}, - [4608] = {.lex_state = 188}, - [4609] = {.lex_state = 122}, - [4610] = {.lex_state = 229}, - [4611] = {.lex_state = 124}, - [4612] = {.lex_state = 188}, - [4613] = {.lex_state = 188}, - [4614] = {.lex_state = 33}, - [4615] = {.lex_state = 188}, + [4604] = {.lex_state = 122}, + [4605] = {.lex_state = 188}, + [4606] = {.lex_state = 243}, + [4607] = {.lex_state = 33}, + [4608] = {.lex_state = 0}, + [4609] = {.lex_state = 0}, + [4610] = {.lex_state = 33}, + [4611] = {.lex_state = 33}, + [4612] = {.lex_state = 33}, + [4613] = {.lex_state = 33}, + [4614] = {.lex_state = 122}, + [4615] = {.lex_state = 122}, [4616] = {.lex_state = 122}, - [4617] = {.lex_state = 127}, - [4618] = {.lex_state = 244}, - [4619] = {.lex_state = 263}, - [4620] = {.lex_state = 188}, - [4621] = {.lex_state = 229}, - [4622] = {.lex_state = 188}, - [4623] = {.lex_state = 0}, + [4617] = {.lex_state = 33}, + [4618] = {.lex_state = 0}, + [4619] = {.lex_state = 0}, + [4620] = {.lex_state = 33}, + [4621] = {.lex_state = 33}, + [4622] = {.lex_state = 33}, + [4623] = {.lex_state = 33}, [4624] = {.lex_state = 33}, [4625] = {.lex_state = 33}, - [4626] = {.lex_state = 579}, - [4627] = {.lex_state = 121}, - [4628] = {.lex_state = 122}, - [4629] = {.lex_state = 122}, - [4630] = {.lex_state = 188}, - [4631] = {.lex_state = 147}, + [4626] = {.lex_state = 33}, + [4627] = {.lex_state = 122}, + [4628] = {.lex_state = 33}, + [4629] = {.lex_state = 0}, + [4630] = {.lex_state = 33}, + [4631] = {.lex_state = 33}, [4632] = {.lex_state = 33}, [4633] = {.lex_state = 33}, - [4634] = {.lex_state = 229}, - [4635] = {.lex_state = 33}, - [4636] = {.lex_state = 33}, - [4637] = {.lex_state = 188}, - [4638] = {.lex_state = 0}, - [4639] = {.lex_state = 236}, - [4640] = {.lex_state = 244}, + [4634] = {.lex_state = 33}, + [4635] = {.lex_state = 122}, + [4636] = {.lex_state = 625}, + [4637] = {.lex_state = 33}, + [4638] = {.lex_state = 33}, + [4639] = {.lex_state = 33}, + [4640] = {.lex_state = 122}, [4641] = {.lex_state = 33}, - [4642] = {.lex_state = 33}, - [4643] = {.lex_state = 244}, - [4644] = {.lex_state = 244}, + [4642] = {.lex_state = 122}, + [4643] = {.lex_state = 33}, + [4644] = {.lex_state = 122}, [4645] = {.lex_state = 33}, - [4646] = {.lex_state = 122}, - [4647] = {.lex_state = 244}, - [4648] = {.lex_state = 0}, - [4649] = {.lex_state = 0}, - [4650] = {.lex_state = 127}, - [4651] = {.lex_state = 127}, + [4646] = {.lex_state = 33}, + [4647] = {.lex_state = 188}, + [4648] = {.lex_state = 188}, + [4649] = {.lex_state = 188}, + [4650] = {.lex_state = 0}, + [4651] = {.lex_state = 33}, [4652] = {.lex_state = 33}, - [4653] = {.lex_state = 229}, - [4654] = {.lex_state = 244}, - [4655] = {.lex_state = 33}, - [4656] = {.lex_state = 33}, - [4657] = {.lex_state = 236}, - [4658] = {.lex_state = 0}, - [4659] = {.lex_state = 33}, + [4653] = {.lex_state = 188}, + [4654] = {.lex_state = 33}, + [4655] = {.lex_state = 122}, + [4656] = {.lex_state = 223}, + [4657] = {.lex_state = 33}, + [4658] = {.lex_state = 122}, + [4659] = {.lex_state = 122}, [4660] = {.lex_state = 0}, - [4661] = {.lex_state = 0}, - [4662] = {.lex_state = 0}, + [4661] = {.lex_state = 33}, + [4662] = {.lex_state = 122}, [4663] = {.lex_state = 33}, - [4664] = {.lex_state = 43}, - [4665] = {.lex_state = 33}, - [4666] = {.lex_state = 121}, - [4667] = {.lex_state = 147}, - [4668] = {.lex_state = 0}, - [4669] = {.lex_state = 0}, - [4670] = {.lex_state = 0}, - [4671] = {.lex_state = 0}, + [4664] = {.lex_state = 33}, + [4665] = {.lex_state = 122}, + [4666] = {.lex_state = 33}, + [4667] = {.lex_state = 122}, + [4668] = {.lex_state = 33}, + [4669] = {.lex_state = 33}, + [4670] = {.lex_state = 147}, + [4671] = {.lex_state = 33}, [4672] = {.lex_state = 33}, - [4673] = {.lex_state = 267}, - [4674] = {.lex_state = 0}, - [4675] = {.lex_state = 244}, - [4676] = {.lex_state = 122}, - [4677] = {.lex_state = 90}, - [4678] = {.lex_state = 33}, - [4679] = {.lex_state = 0}, - [4680] = {.lex_state = 634}, - [4681] = {.lex_state = 0}, - [4682] = {.lex_state = 0}, - [4683] = {.lex_state = 0}, - [4684] = {.lex_state = 36}, - [4685] = {.lex_state = 231}, - [4686] = {.lex_state = 0}, - [4687] = {.lex_state = 122}, - [4688] = {.lex_state = 0}, + [4673] = {.lex_state = 33}, + [4674] = {.lex_state = 33}, + [4675] = {.lex_state = 33}, + [4676] = {.lex_state = 33}, + [4677] = {.lex_state = 0}, + [4678] = {.lex_state = 147}, + [4679] = {.lex_state = 188}, + [4680] = {.lex_state = 33}, + [4681] = {.lex_state = 122}, + [4682] = {.lex_state = 122}, + [4683] = {.lex_state = 33}, + [4684] = {.lex_state = 122}, + [4685] = {.lex_state = 147}, + [4686] = {.lex_state = 122}, + [4687] = {.lex_state = 121}, + [4688] = {.lex_state = 122}, [4689] = {.lex_state = 0}, - [4690] = {.lex_state = 270}, - [4691] = {.lex_state = 122}, - [4692] = {.lex_state = 0}, + [4690] = {.lex_state = 33}, + [4691] = {.lex_state = 0}, + [4692] = {.lex_state = 147}, [4693] = {.lex_state = 0}, [4694] = {.lex_state = 0}, - [4695] = {.lex_state = 630}, + [4695] = {.lex_state = 0}, [4696] = {.lex_state = 0}, [4697] = {.lex_state = 36}, - [4698] = {.lex_state = 0}, - [4699] = {.lex_state = 121}, + [4698] = {.lex_state = 122}, + [4699] = {.lex_state = 122}, [4700] = {.lex_state = 121}, - [4701] = {.lex_state = 47}, - [4702] = {.lex_state = 47}, - [4703] = {.lex_state = 0}, - [4704] = {.lex_state = 47}, + [4701] = {.lex_state = 0}, + [4702] = {.lex_state = 147}, + [4703] = {.lex_state = 33}, + [4704] = {.lex_state = 36}, [4705] = {.lex_state = 0}, - [4706] = {.lex_state = 239}, - [4707] = {.lex_state = 239}, - [4708] = {.lex_state = 122}, - [4709] = {.lex_state = 122}, - [4710] = {.lex_state = 122}, + [4706] = {.lex_state = 33}, + [4707] = {.lex_state = 147}, + [4708] = {.lex_state = 121}, + [4709] = {.lex_state = 0}, + [4710] = {.lex_state = 147}, [4711] = {.lex_state = 0}, - [4712] = {.lex_state = 188}, - [4713] = {.lex_state = 188}, - [4714] = {.lex_state = 188}, + [4712] = {.lex_state = 121}, + [4713] = {.lex_state = 0}, + [4714] = {.lex_state = 147}, [4715] = {.lex_state = 0}, - [4716] = {.lex_state = 33}, + [4716] = {.lex_state = 147}, [4717] = {.lex_state = 0}, [4718] = {.lex_state = 0}, - [4719] = {.lex_state = 0}, - [4720] = {.lex_state = 0}, - [4721] = {.lex_state = 0}, - [4722] = {.lex_state = 0}, - [4723] = {.lex_state = 127}, - [4724] = {.lex_state = 0}, - [4725] = {.lex_state = 0}, - [4726] = {.lex_state = 0}, + [4719] = {.lex_state = 188}, + [4720] = {.lex_state = 47}, + [4721] = {.lex_state = 122}, + [4722] = {.lex_state = 121}, + [4723] = {.lex_state = 0}, + [4724] = {.lex_state = 122}, + [4725] = {.lex_state = 33}, + [4726] = {.lex_state = 122}, [4727] = {.lex_state = 0}, - [4728] = {.lex_state = 0}, - [4729] = {.lex_state = 0}, - [4730] = {.lex_state = 0}, - [4731] = {.lex_state = 0}, - [4732] = {.lex_state = 0}, - [4733] = {.lex_state = 0}, - [4734] = {.lex_state = 122}, + [4728] = {.lex_state = 33}, + [4729] = {.lex_state = 33}, + [4730] = {.lex_state = 229}, + [4731] = {.lex_state = 47}, + [4732] = {.lex_state = 36}, + [4733] = {.lex_state = 269}, + [4734] = {.lex_state = 0}, [4735] = {.lex_state = 122}, - [4736] = {.lex_state = 147}, - [4737] = {.lex_state = 122}, - [4738] = {.lex_state = 0}, - [4739] = {.lex_state = 239}, - [4740] = {.lex_state = 227}, - [4741] = {.lex_state = 277}, - [4742] = {.lex_state = 0}, - [4743] = {.lex_state = 147}, - [4744] = {.lex_state = 33}, - [4745] = {.lex_state = 147}, - [4746] = {.lex_state = 239}, - [4747] = {.lex_state = 188}, - [4748] = {.lex_state = 33}, + [4736] = {.lex_state = 122}, + [4737] = {.lex_state = 188}, + [4738] = {.lex_state = 33}, + [4739] = {.lex_state = 33}, + [4740] = {.lex_state = 188}, + [4741] = {.lex_state = 122}, + [4742] = {.lex_state = 122}, + [4743] = {.lex_state = 122}, + [4744] = {.lex_state = 252}, + [4745] = {.lex_state = 122}, + [4746] = {.lex_state = 122}, + [4747] = {.lex_state = 238}, + [4748] = {.lex_state = 122}, [4749] = {.lex_state = 122}, - [4750] = {.lex_state = 239}, - [4751] = {.lex_state = 227}, + [4750] = {.lex_state = 0}, + [4751] = {.lex_state = 0}, [4752] = {.lex_state = 0}, - [4753] = {.lex_state = 36}, - [4754] = {.lex_state = 122}, - [4755] = {.lex_state = 124}, + [4753] = {.lex_state = 188}, + [4754] = {.lex_state = 36}, + [4755] = {.lex_state = 188}, [4756] = {.lex_state = 36}, - [4757] = {.lex_state = 36}, - [4758] = {.lex_state = 36}, - [4759] = {.lex_state = 122}, - [4760] = {.lex_state = 122}, - [4761] = {.lex_state = 0}, - [4762] = {.lex_state = 33}, - [4763] = {.lex_state = 239}, - [4764] = {.lex_state = 33}, - [4765] = {.lex_state = 147}, + [4757] = {.lex_state = 633}, + [4758] = {.lex_state = 90}, + [4759] = {.lex_state = 188}, + [4760] = {.lex_state = 578}, + [4761] = {.lex_state = 122}, + [4762] = {.lex_state = 147}, + [4763] = {.lex_state = 0}, + [4764] = {.lex_state = 0}, + [4765] = {.lex_state = 122}, [4766] = {.lex_state = 122}, - [4767] = {.lex_state = 0}, - [4768] = {.lex_state = 239}, - [4769] = {.lex_state = 188}, - [4770] = {.lex_state = 122}, + [4767] = {.lex_state = 122}, + [4768] = {.lex_state = 122}, + [4769] = {.lex_state = 0}, + [4770] = {.lex_state = 238}, [4771] = {.lex_state = 0}, [4772] = {.lex_state = 122}, [4773] = {.lex_state = 0}, [4774] = {.lex_state = 122}, - [4775] = {.lex_state = 122}, - [4776] = {.lex_state = 122}, - [4777] = {.lex_state = 33}, - [4778] = {.lex_state = 230}, - [4779] = {.lex_state = 239}, - [4780] = {.lex_state = 122}, + [4775] = {.lex_state = 0}, + [4776] = {.lex_state = 0}, + [4777] = {.lex_state = 0}, + [4778] = {.lex_state = 0}, + [4779] = {.lex_state = 0}, + [4780] = {.lex_state = 0}, [4781] = {.lex_state = 0}, [4782] = {.lex_state = 122}, - [4783] = {.lex_state = 239}, - [4784] = {.lex_state = 268}, - [4785] = {.lex_state = 0}, + [4783] = {.lex_state = 0}, + [4784] = {.lex_state = 0}, + [4785] = {.lex_state = 127}, [4786] = {.lex_state = 0}, - [4787] = {.lex_state = 90}, - [4788] = {.lex_state = 147}, - [4789] = {.lex_state = 0}, + [4787] = {.lex_state = 0}, + [4788] = {.lex_state = 0}, + [4789] = {.lex_state = 122}, [4790] = {.lex_state = 0}, - [4791] = {.lex_state = 0}, - [4792] = {.lex_state = 239}, - [4793] = {.lex_state = 0}, + [4791] = {.lex_state = 122}, + [4792] = {.lex_state = 0}, + [4793] = {.lex_state = 121}, [4794] = {.lex_state = 0}, - [4795] = {.lex_state = 239}, - [4796] = {.lex_state = 147}, - [4797] = {.lex_state = 33}, + [4795] = {.lex_state = 33}, + [4796] = {.lex_state = 188}, + [4797] = {.lex_state = 0}, [4798] = {.lex_state = 0}, - [4799] = {.lex_state = 124}, - [4800] = {.lex_state = 0}, + [4799] = {.lex_state = 276}, + [4800] = {.lex_state = 238}, [4801] = {.lex_state = 122}, - [4802] = {.lex_state = 147}, - [4803] = {.lex_state = 47}, - [4804] = {.lex_state = 188}, - [4805] = {.lex_state = 36}, - [4806] = {.lex_state = 33}, + [4802] = {.lex_state = 238}, + [4803] = {.lex_state = 122}, + [4804] = {.lex_state = 122}, + [4805] = {.lex_state = 0}, + [4806] = {.lex_state = 578}, [4807] = {.lex_state = 0}, - [4808] = {.lex_state = 122}, - [4809] = {.lex_state = 147}, - [4810] = {.lex_state = 36}, - [4811] = {.lex_state = 0}, - [4812] = {.lex_state = 230}, + [4808] = {.lex_state = 0}, + [4809] = {.lex_state = 276}, + [4810] = {.lex_state = 0}, + [4811] = {.lex_state = 33}, + [4812] = {.lex_state = 238}, [4813] = {.lex_state = 0}, - [4814] = {.lex_state = 188}, - [4815] = {.lex_state = 188}, - [4816] = {.lex_state = 188}, + [4814] = {.lex_state = 229}, + [4815] = {.lex_state = 238}, + [4816] = {.lex_state = 124}, [4817] = {.lex_state = 0}, - [4818] = {.lex_state = 188}, - [4819] = {.lex_state = 0}, - [4820] = {.lex_state = 188}, - [4821] = {.lex_state = 0}, - [4822] = {.lex_state = 0}, + [4818] = {.lex_state = 228}, + [4819] = {.lex_state = 33}, + [4820] = {.lex_state = 122}, + [4821] = {.lex_state = 147}, + [4822] = {.lex_state = 147}, [4823] = {.lex_state = 0}, - [4824] = {.lex_state = 0}, - [4825] = {.lex_state = 0}, - [4826] = {.lex_state = 239}, - [4827] = {.lex_state = 122}, - [4828] = {.lex_state = 0}, - [4829] = {.lex_state = 188}, - [4830] = {.lex_state = 188}, - [4831] = {.lex_state = 188}, - [4832] = {.lex_state = 147}, - [4833] = {.lex_state = 147}, - [4834] = {.lex_state = 122}, - [4835] = {.lex_state = 0}, - [4836] = {.lex_state = 253}, - [4837] = {.lex_state = 127}, - [4838] = {.lex_state = 121}, - [4839] = {.lex_state = 239}, - [4840] = {.lex_state = 33}, - [4841] = {.lex_state = 147}, - [4842] = {.lex_state = 147}, - [4843] = {.lex_state = 178}, - [4844] = {.lex_state = 122}, - [4845] = {.lex_state = 147}, + [4824] = {.lex_state = 122}, + [4825] = {.lex_state = 33}, + [4826] = {.lex_state = 0}, + [4827] = {.lex_state = 226}, + [4828] = {.lex_state = 33}, + [4829] = {.lex_state = 33}, + [4830] = {.lex_state = 33}, + [4831] = {.lex_state = 0}, + [4832] = {.lex_state = 122}, + [4833] = {.lex_state = 238}, + [4834] = {.lex_state = 0}, + [4835] = {.lex_state = 33}, + [4836] = {.lex_state = 122}, + [4837] = {.lex_state = 33}, + [4838] = {.lex_state = 122}, + [4839] = {.lex_state = 226}, + [4840] = {.lex_state = 0}, + [4841] = {.lex_state = 0}, + [4842] = {.lex_state = 238}, + [4843] = {.lex_state = 0}, + [4844] = {.lex_state = 33}, + [4845] = {.lex_state = 0}, [4846] = {.lex_state = 0}, - [4847] = {.lex_state = 0}, + [4847] = {.lex_state = 226}, [4848] = {.lex_state = 0}, - [4849] = {.lex_state = 121}, - [4850] = {.lex_state = 33}, - [4851] = {.lex_state = 0}, - [4852] = {.lex_state = 121}, - [4853] = {.lex_state = 121}, - [4854] = {.lex_state = 122}, - [4855] = {.lex_state = 0}, - [4856] = {.lex_state = 239}, - [4857] = {.lex_state = 47}, - [4858] = {.lex_state = 122}, - [4859] = {.lex_state = 227}, - [4860] = {.lex_state = 0}, - [4861] = {.lex_state = 188}, - [4862] = {.lex_state = 224}, - [4863] = {.lex_state = 43}, - [4864] = {.lex_state = 33}, - [4865] = {.lex_state = 147}, - [4866] = {.lex_state = 147}, - [4867] = {.lex_state = 122}, - [4868] = {.lex_state = 634}, - [4869] = {.lex_state = 122}, + [4849] = {.lex_state = 238}, + [4850] = {.lex_state = 147}, + [4851] = {.lex_state = 43}, + [4852] = {.lex_state = 238}, + [4853] = {.lex_state = 147}, + [4854] = {.lex_state = 36}, + [4855] = {.lex_state = 238}, + [4856] = {.lex_state = 36}, + [4857] = {.lex_state = 122}, + [4858] = {.lex_state = 33}, + [4859] = {.lex_state = 147}, + [4860] = {.lex_state = 47}, + [4861] = {.lex_state = 122}, + [4862] = {.lex_state = 188}, + [4863] = {.lex_state = 0}, + [4864] = {.lex_state = 47}, + [4865] = {.lex_state = 47}, + [4866] = {.lex_state = 0}, + [4867] = {.lex_state = 0}, + [4868] = {.lex_state = 122}, + [4869] = {.lex_state = 633}, [4870] = {.lex_state = 122}, - [4871] = {.lex_state = 579}, - [4872] = {.lex_state = 122}, - [4873] = {.lex_state = 122}, - [4874] = {.lex_state = 47}, - [4875] = {.lex_state = 122}, - [4876] = {.lex_state = 0}, + [4871] = {.lex_state = 147}, + [4872] = {.lex_state = 238}, + [4873] = {.lex_state = 0}, + [4874] = {.lex_state = 276}, + [4875] = {.lex_state = 0}, + [4876] = {.lex_state = 33}, [4877] = {.lex_state = 0}, - [4878] = {.lex_state = 270}, - [4879] = {.lex_state = 239}, - [4880] = {.lex_state = 122}, - [4881] = {.lex_state = 33}, - [4882] = {.lex_state = 33}, + [4878] = {.lex_state = 188}, + [4879] = {.lex_state = 0}, + [4880] = {.lex_state = 0}, + [4881] = {.lex_state = 223}, + [4882] = {.lex_state = 276}, [4883] = {.lex_state = 0}, - [4884] = {.lex_state = 33}, - [4885] = {.lex_state = 122}, - [4886] = {.lex_state = 33}, - [4887] = {.lex_state = 47}, - [4888] = {.lex_state = 33}, - [4889] = {.lex_state = 122}, - [4890] = {.lex_state = 33}, - [4891] = {.lex_state = 33}, - [4892] = {.lex_state = 33}, - [4893] = {.lex_state = 33}, - [4894] = {.lex_state = 122}, - [4895] = {.lex_state = 0}, - [4896] = {.lex_state = 0}, + [4884] = {.lex_state = 238}, + [4885] = {.lex_state = 178}, + [4886] = {.lex_state = 122}, + [4887] = {.lex_state = 122}, + [4888] = {.lex_state = 238}, + [4889] = {.lex_state = 238}, + [4890] = {.lex_state = 226}, + [4891] = {.lex_state = 230}, + [4892] = {.lex_state = 188}, + [4893] = {.lex_state = 47}, + [4894] = {.lex_state = 188}, + [4895] = {.lex_state = 267}, + [4896] = {.lex_state = 188}, [4897] = {.lex_state = 122}, - [4898] = {.lex_state = 277}, + [4898] = {.lex_state = 127}, [4899] = {.lex_state = 0}, [4900] = {.lex_state = 122}, - [4901] = {.lex_state = 33}, + [4901] = {.lex_state = 238}, [4902] = {.lex_state = 0}, - [4903] = {.lex_state = 0}, - [4904] = {.lex_state = 0}, - [4905] = {.lex_state = 579}, - [4906] = {.lex_state = 0}, - [4907] = {.lex_state = 0}, - [4908] = {.lex_state = 122}, - [4909] = {.lex_state = 127}, - [4910] = {.lex_state = 0}, - [4911] = {.lex_state = 122}, - [4912] = {.lex_state = 0}, - [4913] = {.lex_state = 239}, - [4914] = {.lex_state = 33}, - [4915] = {.lex_state = 227}, - [4916] = {.lex_state = 122}, - [4917] = {.lex_state = 603}, - [4918] = {.lex_state = 122}, - [4919] = {.lex_state = 122}, - [4920] = {.lex_state = 0}, - [4921] = {.lex_state = 277}, - [4922] = {.lex_state = 122}, - [4923] = {.lex_state = 122}, - [4924] = {.lex_state = 33}, - [4925] = {.lex_state = 229}, - [4926] = {.lex_state = 122}, - [4927] = {.lex_state = 122}, + [4903] = {.lex_state = 122}, + [4904] = {.lex_state = 36}, + [4905] = {.lex_state = 47}, + [4906] = {.lex_state = 188}, + [4907] = {.lex_state = 122}, + [4908] = {.lex_state = 0}, + [4909] = {.lex_state = 0}, + [4910] = {.lex_state = 122}, + [4911] = {.lex_state = 33}, + [4912] = {.lex_state = 269}, + [4913] = {.lex_state = 0}, + [4914] = {.lex_state = 90}, + [4915] = {.lex_state = 629}, + [4916] = {.lex_state = 0}, + [4917] = {.lex_state = 0}, + [4918] = {.lex_state = 0}, + [4919] = {.lex_state = 33}, + [4920] = {.lex_state = 602}, + [4921] = {.lex_state = 0}, + [4922] = {.lex_state = 147}, + [4923] = {.lex_state = 0}, + [4924] = {.lex_state = 0}, + [4925] = {.lex_state = 124}, + [4926] = {.lex_state = 0}, + [4927] = {.lex_state = 33}, [4928] = {.lex_state = 33}, - [4929] = {.lex_state = 147}, - [4930] = {.lex_state = 33}, + [4929] = {.lex_state = 127}, + [4930] = {.lex_state = 122}, [4931] = {.lex_state = 0}, - [4932] = {.lex_state = 0}, - [4933] = {.lex_state = 227}, - [4934] = {.lex_state = 227}, - [4935] = {.lex_state = 0}, - [4936] = {.lex_state = 1737}, + [4932] = {.lex_state = 188}, + [4933] = {.lex_state = 0}, + [4934] = {.lex_state = 0}, + [4935] = {.lex_state = 122}, + [4936] = {.lex_state = 0}, [4937] = {.lex_state = 0}, - [4938] = {.lex_state = 579}, - [4939] = {.lex_state = 122}, - [4940] = {.lex_state = 122}, - [4941] = {.lex_state = 36}, - [4942] = {.lex_state = 0}, + [4938] = {.lex_state = 147}, + [4939] = {.lex_state = 0}, + [4940] = {.lex_state = 0}, + [4941] = {.lex_state = 2206}, + [4942] = {.lex_state = 2206}, [4943] = {.lex_state = 0}, - [4944] = {.lex_state = 122}, - [4945] = {.lex_state = 2211}, - [4946] = {.lex_state = 630}, - [4947] = {.lex_state = 227}, - [4948] = {.lex_state = 0}, - [4949] = {.lex_state = 630}, - [4950] = {.lex_state = 0}, - [4951] = {.lex_state = 227}, - [4952] = {.lex_state = 227}, - [4953] = {.lex_state = 122}, - [4954] = {.lex_state = 579}, - [4955] = {.lex_state = 2211}, + [4944] = {.lex_state = 0}, + [4945] = {.lex_state = 0}, + [4946] = {.lex_state = 0}, + [4947] = {.lex_state = 2206}, + [4948] = {.lex_state = 121}, + [4949] = {.lex_state = 2206}, + [4950] = {.lex_state = 1736}, + [4951] = {.lex_state = 122}, + [4952] = {.lex_state = 271}, + [4953] = {.lex_state = 0}, + [4954] = {.lex_state = 0}, + [4955] = {.lex_state = 122}, [4956] = {.lex_state = 122}, - [4957] = {.lex_state = 2211}, - [4958] = {.lex_state = 0}, - [4959] = {.lex_state = 2211}, + [4957] = {.lex_state = 122}, + [4958] = {.lex_state = 122}, + [4959] = {.lex_state = 0}, [4960] = {.lex_state = 0}, - [4961] = {.lex_state = 147}, - [4962] = {.lex_state = 122}, + [4961] = {.lex_state = 0}, + [4962] = {.lex_state = 0}, [4963] = {.lex_state = 0}, - [4964] = {.lex_state = 227}, + [4964] = {.lex_state = 122}, [4965] = {.lex_state = 122}, - [4966] = {.lex_state = 122}, - [4967] = {.lex_state = 2211}, - [4968] = {.lex_state = 2209}, - [4969] = {.lex_state = 0}, - [4970] = {.lex_state = 2}, - [4971] = {.lex_state = 122}, - [4972] = {.lex_state = 0}, - [4973] = {.lex_state = 121}, - [4974] = {.lex_state = 2207}, - [4975] = {.lex_state = 0}, - [4976] = {.lex_state = 2207}, - [4977] = {.lex_state = 0}, - [4978] = {.lex_state = 124}, - [4979] = {.lex_state = 0}, - [4980] = {.lex_state = 227}, - [4981] = {.lex_state = 0}, - [4982] = {.lex_state = 0}, - [4983] = {.lex_state = 0}, - [4984] = {.lex_state = 122}, - [4985] = {.lex_state = 0}, + [4966] = {.lex_state = 2210}, + [4967] = {.lex_state = 0}, + [4968] = {.lex_state = 226}, + [4969] = {.lex_state = 226}, + [4970] = {.lex_state = 271}, + [4971] = {.lex_state = 226}, + [4972] = {.lex_state = 2210}, + [4973] = {.lex_state = 122}, + [4974] = {.lex_state = 0}, + [4975] = {.lex_state = 633}, + [4976] = {.lex_state = 226}, + [4977] = {.lex_state = 226}, + [4978] = {.lex_state = 226}, + [4979] = {.lex_state = 33}, + [4980] = {.lex_state = 122}, + [4981] = {.lex_state = 121}, + [4982] = {.lex_state = 122}, + [4983] = {.lex_state = 122}, + [4984] = {.lex_state = 226}, + [4985] = {.lex_state = 122}, [4986] = {.lex_state = 122}, - [4987] = {.lex_state = 2207}, + [4987] = {.lex_state = 2208}, [4988] = {.lex_state = 0}, - [4989] = {.lex_state = 147}, - [4990] = {.lex_state = 122}, - [4991] = {.lex_state = 0}, + [4989] = {.lex_state = 122}, + [4990] = {.lex_state = 124}, + [4991] = {.lex_state = 2208}, [4992] = {.lex_state = 122}, - [4993] = {.lex_state = 122}, - [4994] = {.lex_state = 122}, + [4993] = {.lex_state = 0}, + [4994] = {.lex_state = 0}, [4995] = {.lex_state = 0}, - [4996] = {.lex_state = 272}, + [4996] = {.lex_state = 0}, [4997] = {.lex_state = 0}, - [4998] = {.lex_state = 2209}, - [4999] = {.lex_state = 239}, + [4998] = {.lex_state = 629}, + [4999] = {.lex_state = 0}, [5000] = {.lex_state = 0}, - [5001] = {.lex_state = 0}, - [5002] = {.lex_state = 0}, - [5003] = {.lex_state = 634}, - [5004] = {.lex_state = 272}, - [5005] = {.lex_state = 2207}, - [5006] = {.lex_state = 2207}, + [5001] = {.lex_state = 226}, + [5002] = {.lex_state = 122}, + [5003] = {.lex_state = 0}, + [5004] = {.lex_state = 122}, + [5005] = {.lex_state = 122}, + [5006] = {.lex_state = 122}, [5007] = {.lex_state = 0}, - [5008] = {.lex_state = 122}, - [5009] = {.lex_state = 0}, - [5010] = {.lex_state = 122}, - [5011] = {.lex_state = 580}, + [5008] = {.lex_state = 0}, + [5009] = {.lex_state = 122}, + [5010] = {.lex_state = 579}, + [5011] = {.lex_state = 122}, [5012] = {.lex_state = 122}, - [5013] = {.lex_state = 122}, - [5014] = {.lex_state = 0}, - [5015] = {.lex_state = 0}, + [5013] = {.lex_state = 36}, + [5014] = {.lex_state = 124}, + [5015] = {.lex_state = 122}, [5016] = {.lex_state = 122}, - [5017] = {.lex_state = 122}, + [5017] = {.lex_state = 2206}, [5018] = {.lex_state = 0}, - [5019] = {.lex_state = 0}, - [5020] = {.lex_state = 122}, - [5021] = {.lex_state = 122}, - [5022] = {.lex_state = 2209}, - [5023] = {.lex_state = 122}, - [5024] = {.lex_state = 122}, - [5025] = {.lex_state = 0}, - [5026] = {.lex_state = 0}, + [5019] = {.lex_state = 122}, + [5020] = {.lex_state = 2206}, + [5021] = {.lex_state = 0}, + [5022] = {.lex_state = 0}, + [5023] = {.lex_state = 0}, + [5024] = {.lex_state = 124}, + [5025] = {.lex_state = 629}, + [5026] = {.lex_state = 2210}, [5027] = {.lex_state = 0}, [5028] = {.lex_state = 0}, [5029] = {.lex_state = 0}, [5030] = {.lex_state = 0}, [5031] = {.lex_state = 0}, [5032] = {.lex_state = 0}, - [5033] = {.lex_state = 122}, - [5034] = {.lex_state = 227}, - [5035] = {.lex_state = 122}, - [5036] = {.lex_state = 0}, - [5037] = {.lex_state = 122}, - [5038] = {.lex_state = 122}, - [5039] = {.lex_state = 2211}, - [5040] = {.lex_state = 2209}, - [5041] = {.lex_state = 2211}, - [5042] = {.lex_state = 2211}, - [5043] = {.lex_state = 122}, - [5044] = {.lex_state = 2207}, - [5045] = {.lex_state = 0}, - [5046] = {.lex_state = 2211}, - [5047] = {.lex_state = 33}, - [5048] = {.lex_state = 2209}, - [5049] = {.lex_state = 122}, - [5050] = {.lex_state = 121}, - [5051] = {.lex_state = 2207}, - [5052] = {.lex_state = 0}, - [5053] = {.lex_state = 0}, + [5033] = {.lex_state = 0}, + [5034] = {.lex_state = 2210}, + [5035] = {.lex_state = 0}, + [5036] = {.lex_state = 223}, + [5037] = {.lex_state = 238}, + [5038] = {.lex_state = 226}, + [5039] = {.lex_state = 0}, + [5040] = {.lex_state = 226}, + [5041] = {.lex_state = 122}, + [5042] = {.lex_state = 226}, + [5043] = {.lex_state = 33}, + [5044] = {.lex_state = 2206}, + [5045] = {.lex_state = 578}, + [5046] = {.lex_state = 226}, + [5047] = {.lex_state = 2210}, + [5048] = {.lex_state = 2210}, + [5049] = {.lex_state = 2210}, + [5050] = {.lex_state = 122}, + [5051] = {.lex_state = 2206}, + [5052] = {.lex_state = 2208}, + [5053] = {.lex_state = 122}, [5054] = {.lex_state = 0}, [5055] = {.lex_state = 0}, [5056] = {.lex_state = 0}, [5057] = {.lex_state = 0}, [5058] = {.lex_state = 0}, - [5059] = {.lex_state = 122}, - [5060] = {.lex_state = 0}, + [5059] = {.lex_state = 2206}, + [5060] = {.lex_state = 2206}, [5061] = {.lex_state = 0}, - [5062] = {.lex_state = 224}, - [5063] = {.lex_state = 0}, - [5064] = {.lex_state = 2207}, - [5065] = {.lex_state = 122}, - [5066] = {.lex_state = 33}, - [5067] = {.lex_state = 227}, - [5068] = {.lex_state = 2207}, - [5069] = {.lex_state = 2207}, - [5070] = {.lex_state = 124}, + [5062] = {.lex_state = 226}, + [5063] = {.lex_state = 2206}, + [5064] = {.lex_state = 122}, + [5065] = {.lex_state = 0}, + [5066] = {.lex_state = 147}, + [5067] = {.lex_state = 147}, + [5068] = {.lex_state = 2206}, + [5069] = {.lex_state = 2208}, + [5070] = {.lex_state = 2206}, [5071] = {.lex_state = 122}, - [5072] = {.lex_state = 0}, - [5073] = {.lex_state = 124}, - [5074] = {.lex_state = 122}, - [5075] = {.lex_state = 0}, + [5072] = {.lex_state = 2}, + [5073] = {.lex_state = 122}, + [5074] = {.lex_state = 2210}, + [5075] = {.lex_state = 2210}, [5076] = {.lex_state = 0}, - [5077] = {.lex_state = 0}, - [5078] = {.lex_state = 147}, - [5079] = {.lex_state = 2207}, - [5080] = {.lex_state = 2207}, - [5081] = {.lex_state = 2207}, - [5082] = {.lex_state = 2207}, - [5083] = {.lex_state = 2207}, - [5084] = {.lex_state = 122}, + [5077] = {.lex_state = 147}, + [5078] = {.lex_state = 2208}, + [5079] = {.lex_state = 122}, + [5080] = {.lex_state = 122}, + [5081] = {.lex_state = 2206}, + [5082] = {.lex_state = 2206}, + [5083] = {.lex_state = 226}, + [5084] = {.lex_state = 0}, [5085] = {.lex_state = 0}, [5086] = {.lex_state = 122}, - [5087] = {.lex_state = 2207}, - [5088] = {.lex_state = 122}, - [5089] = {.lex_state = 147}, - [5090] = {.lex_state = 227}, - [5091] = {.lex_state = 0}, - [5092] = {.lex_state = 2207}, - [5093] = {.lex_state = 227}, - [5094] = {.lex_state = 122}, - [5095] = {.lex_state = 227}, - [5096] = {.lex_state = 227}, - [5097] = {.lex_state = 227}, - [5098] = {.lex_state = 0}, + [5087] = {.lex_state = 0}, + [5088] = {.lex_state = 0}, + [5089] = {.lex_state = 0}, + [5090] = {.lex_state = 122}, + [5091] = {.lex_state = 122}, + [5092] = {.lex_state = 578}, + [5093] = {.lex_state = 0}, + [5094] = {.lex_state = 0}, + [5095] = {.lex_state = 0}, + [5096] = {.lex_state = 122}, + [5097] = {.lex_state = 0}, + [5098] = {.lex_state = 122}, [5099] = {.lex_state = 0}, [5100] = {.lex_state = 0}, - [5101] = {.lex_state = 33}, - [5102] = {.lex_state = 0}, - [5103] = {.lex_state = 33}, - [5104] = {.lex_state = 579}, - [5105] = {.lex_state = 31}, - [5106] = {.lex_state = 626}, - [5107] = {.lex_state = 0, .external_lex_state = 3}, - [5108] = {.lex_state = 0, .external_lex_state = 3}, - [5109] = {.lex_state = 33}, - [5110] = {.lex_state = 230}, - [5111] = {.lex_state = 630}, - [5112] = {.lex_state = 0}, - [5113] = {.lex_state = 1712}, - [5114] = {.lex_state = 0}, - [5115] = {.lex_state = 33}, + [5101] = {.lex_state = 2206}, + [5102] = {.lex_state = 2206}, + [5103] = {.lex_state = 1206}, + [5104] = {.lex_state = 47}, + [5105] = {.lex_state = 2}, + [5106] = {.lex_state = 33}, + [5107] = {.lex_state = 0}, + [5108] = {.lex_state = 33}, + [5109] = {.lex_state = 1206}, + [5110] = {.lex_state = 2}, + [5111] = {.lex_state = 226}, + [5112] = {.lex_state = 33}, + [5113] = {.lex_state = 625}, + [5114] = {.lex_state = 0, .external_lex_state = 3}, + [5115] = {.lex_state = 226}, [5116] = {.lex_state = 0}, - [5117] = {.lex_state = 579}, - [5118] = {.lex_state = 579}, - [5119] = {.lex_state = 33}, - [5120] = {.lex_state = 227}, - [5121] = {.lex_state = 0, .external_lex_state = 3}, - [5122] = {.lex_state = 33}, + [5117] = {.lex_state = 0, .external_lex_state = 3}, + [5118] = {.lex_state = 625}, + [5119] = {.lex_state = 0}, + [5120] = {.lex_state = 0}, + [5121] = {.lex_state = 578}, + [5122] = {.lex_state = 578}, [5123] = {.lex_state = 0, .external_lex_state = 3}, - [5124] = {.lex_state = 31}, - [5125] = {.lex_state = 0}, + [5124] = {.lex_state = 0}, + [5125] = {.lex_state = 33}, [5126] = {.lex_state = 0, .external_lex_state = 3}, - [5127] = {.lex_state = 0}, - [5128] = {.lex_state = 1716}, + [5127] = {.lex_state = 229}, + [5128] = {.lex_state = 0}, [5129] = {.lex_state = 0}, - [5130] = {.lex_state = 2209}, + [5130] = {.lex_state = 625}, [5131] = {.lex_state = 0}, - [5132] = {.lex_state = 579}, - [5133] = {.lex_state = 579}, + [5132] = {.lex_state = 578}, + [5133] = {.lex_state = 578}, [5134] = {.lex_state = 33}, - [5135] = {.lex_state = 626}, - [5136] = {.lex_state = 230}, - [5137] = {.lex_state = 0}, - [5138] = {.lex_state = 0, .external_lex_state = 3}, - [5139] = {.lex_state = 626}, - [5140] = {.lex_state = 227}, - [5141] = {.lex_state = 33}, - [5142] = {.lex_state = 0}, - [5143] = {.lex_state = 121}, + [5135] = {.lex_state = 121}, + [5136] = {.lex_state = 0, .external_lex_state = 3}, + [5137] = {.lex_state = 121}, + [5138] = {.lex_state = 0}, + [5139] = {.lex_state = 0}, + [5140] = {.lex_state = 0}, + [5141] = {.lex_state = 578}, + [5142] = {.lex_state = 578}, + [5143] = {.lex_state = 33}, [5144] = {.lex_state = 0}, - [5145] = {.lex_state = 579}, - [5146] = {.lex_state = 579}, - [5147] = {.lex_state = 230}, - [5148] = {.lex_state = 230}, - [5149] = {.lex_state = 0, .external_lex_state = 3}, - [5150] = {.lex_state = 0}, - [5151] = {.lex_state = 227}, - [5152] = {.lex_state = 33}, - [5153] = {.lex_state = 0}, - [5154] = {.lex_state = 0}, + [5145] = {.lex_state = 0, .external_lex_state = 3}, + [5146] = {.lex_state = 0}, + [5147] = {.lex_state = 0}, + [5148] = {.lex_state = 0}, + [5149] = {.lex_state = 578}, + [5150] = {.lex_state = 578}, + [5151] = {.lex_state = 33}, + [5152] = {.lex_state = 578}, + [5153] = {.lex_state = 0, .external_lex_state = 3}, + [5154] = {.lex_state = 578}, [5155] = {.lex_state = 0}, - [5156] = {.lex_state = 579}, - [5157] = {.lex_state = 579}, - [5158] = {.lex_state = 2209}, - [5159] = {.lex_state = 2}, - [5160] = {.lex_state = 0, .external_lex_state = 3}, - [5161] = {.lex_state = 2}, - [5162] = {.lex_state = 0}, + [5156] = {.lex_state = 0}, + [5157] = {.lex_state = 0}, + [5158] = {.lex_state = 236}, + [5159] = {.lex_state = 0}, + [5160] = {.lex_state = 578}, + [5161] = {.lex_state = 578}, + [5162] = {.lex_state = 33}, [5163] = {.lex_state = 0}, - [5164] = {.lex_state = 0}, + [5164] = {.lex_state = 0, .external_lex_state = 3}, [5165] = {.lex_state = 0}, - [5166] = {.lex_state = 579}, - [5167] = {.lex_state = 579}, - [5168] = {.lex_state = 33}, + [5166] = {.lex_state = 146}, + [5167] = {.lex_state = 0}, + [5168] = {.lex_state = 0}, [5169] = {.lex_state = 0}, - [5170] = {.lex_state = 0, .external_lex_state = 3}, - [5171] = {.lex_state = 579}, - [5172] = {.lex_state = 0}, - [5173] = {.lex_state = 579}, - [5174] = {.lex_state = 579}, - [5175] = {.lex_state = 579}, - [5176] = {.lex_state = 227}, - [5177] = {.lex_state = 0, .external_lex_state = 3}, - [5178] = {.lex_state = 0}, - [5179] = {.lex_state = 0}, - [5180] = {.lex_state = 579}, - [5181] = {.lex_state = 579}, - [5182] = {.lex_state = 2207}, + [5170] = {.lex_state = 578}, + [5171] = {.lex_state = 578}, + [5172] = {.lex_state = 273}, + [5173] = {.lex_state = 1206}, + [5174] = {.lex_state = 0, .external_lex_state = 3}, + [5175] = {.lex_state = 0, .external_lex_state = 3}, + [5176] = {.lex_state = 0}, + [5177] = {.lex_state = 578}, + [5178] = {.lex_state = 578}, + [5179] = {.lex_state = 31}, + [5180] = {.lex_state = 2}, + [5181] = {.lex_state = 0, .external_lex_state = 3}, + [5182] = {.lex_state = 33}, [5183] = {.lex_state = 0}, - [5184] = {.lex_state = 0, .external_lex_state = 3}, - [5185] = {.lex_state = 0}, - [5186] = {.lex_state = 0}, - [5187] = {.lex_state = 579}, - [5188] = {.lex_state = 579}, - [5189] = {.lex_state = 1207}, + [5184] = {.lex_state = 578}, + [5185] = {.lex_state = 578}, + [5186] = {.lex_state = 121}, + [5187] = {.lex_state = 31}, + [5188] = {.lex_state = 0, .external_lex_state = 3}, + [5189] = {.lex_state = 0}, [5190] = {.lex_state = 0}, - [5191] = {.lex_state = 0, .external_lex_state = 3}, - [5192] = {.lex_state = 33}, + [5191] = {.lex_state = 578}, + [5192] = {.lex_state = 578}, [5193] = {.lex_state = 0}, - [5194] = {.lex_state = 579}, - [5195] = {.lex_state = 579}, + [5194] = {.lex_state = 1206}, + [5195] = {.lex_state = 0, .external_lex_state = 3}, [5196] = {.lex_state = 33}, [5197] = {.lex_state = 0}, - [5198] = {.lex_state = 0, .external_lex_state = 3}, - [5199] = {.lex_state = 579}, + [5198] = {.lex_state = 578}, + [5199] = {.lex_state = 578}, [5200] = {.lex_state = 0}, - [5201] = {.lex_state = 579}, - [5202] = {.lex_state = 579}, - [5203] = {.lex_state = 579}, - [5204] = {.lex_state = 0, .external_lex_state = 3}, - [5205] = {.lex_state = 2}, - [5206] = {.lex_state = 0}, - [5207] = {.lex_state = 579}, - [5208] = {.lex_state = 579}, + [5201] = {.lex_state = 0}, + [5202] = {.lex_state = 0, .external_lex_state = 3}, + [5203] = {.lex_state = 0}, + [5204] = {.lex_state = 0}, + [5205] = {.lex_state = 578}, + [5206] = {.lex_state = 578}, + [5207] = {.lex_state = 2208}, + [5208] = {.lex_state = 0, .external_lex_state = 3}, [5209] = {.lex_state = 0}, - [5210] = {.lex_state = 0, .external_lex_state = 3}, - [5211] = {.lex_state = 31}, - [5212] = {.lex_state = 0}, - [5213] = {.lex_state = 579}, - [5214] = {.lex_state = 579}, - [5215] = {.lex_state = 1207}, - [5216] = {.lex_state = 0, .external_lex_state = 4}, - [5217] = {.lex_state = 626}, - [5218] = {.lex_state = 0}, - [5219] = {.lex_state = 0}, - [5220] = {.lex_state = 0}, - [5221] = {.lex_state = 1712}, - [5222] = {.lex_state = 1716}, - [5223] = {.lex_state = 31}, + [5210] = {.lex_state = 0}, + [5211] = {.lex_state = 578}, + [5212] = {.lex_state = 578}, + [5213] = {.lex_state = 0}, + [5214] = {.lex_state = 0, .external_lex_state = 3}, + [5215] = {.lex_state = 1206}, + [5216] = {.lex_state = 0}, + [5217] = {.lex_state = 578}, + [5218] = {.lex_state = 578}, + [5219] = {.lex_state = 33}, + [5220] = {.lex_state = 0, .external_lex_state = 4}, + [5221] = {.lex_state = 578}, + [5222] = {.lex_state = 578}, + [5223] = {.lex_state = 0}, [5224] = {.lex_state = 0}, - [5225] = {.lex_state = 33}, - [5226] = {.lex_state = 0}, - [5227] = {.lex_state = 1207}, - [5228] = {.lex_state = 230}, - [5229] = {.lex_state = 626}, - [5230] = {.lex_state = 0}, - [5231] = {.lex_state = 0}, - [5232] = {.lex_state = 0}, + [5225] = {.lex_state = 1711}, + [5226] = {.lex_state = 1715}, + [5227] = {.lex_state = 0}, + [5228] = {.lex_state = 0}, + [5229] = {.lex_state = 0}, + [5230] = {.lex_state = 33}, + [5231] = {.lex_state = 2208}, + [5232] = {.lex_state = 33}, [5233] = {.lex_state = 0}, - [5234] = {.lex_state = 33}, + [5234] = {.lex_state = 0}, [5235] = {.lex_state = 0}, - [5236] = {.lex_state = 33}, - [5237] = {.lex_state = 33}, - [5238] = {.lex_state = 0}, - [5239] = {.lex_state = 0}, - [5240] = {.lex_state = 0}, - [5241] = {.lex_state = 2}, - [5242] = {.lex_state = 630}, + [5236] = {.lex_state = 0}, + [5237] = {.lex_state = 0}, + [5238] = {.lex_state = 31}, + [5239] = {.lex_state = 226}, + [5240] = {.lex_state = 31}, + [5241] = {.lex_state = 33}, + [5242] = {.lex_state = 226}, [5243] = {.lex_state = 0, .external_lex_state = 3}, - [5244] = {.lex_state = 121}, - [5245] = {.lex_state = 626}, + [5244] = {.lex_state = 0}, + [5245] = {.lex_state = 629}, [5246] = {.lex_state = 0}, - [5247] = {.lex_state = 1207}, - [5248] = {.lex_state = 121}, - [5249] = {.lex_state = 2207}, - [5250] = {.lex_state = 0}, - [5251] = {.lex_state = 0}, - [5252] = {.lex_state = 626}, - [5253] = {.lex_state = 626}, - [5254] = {.lex_state = 227}, - [5255] = {.lex_state = 2}, - [5256] = {.lex_state = 237}, - [5257] = {.lex_state = 231}, - [5258] = {.lex_state = 0, .external_lex_state = 3}, - [5259] = {.lex_state = 146}, - [5260] = {.lex_state = 274}, - [5261] = {.lex_state = 47}, + [5247] = {.lex_state = 0}, + [5248] = {.lex_state = 31}, + [5249] = {.lex_state = 121}, + [5250] = {.lex_state = 33}, + [5251] = {.lex_state = 31}, + [5252] = {.lex_state = 0}, + [5253] = {.lex_state = 0}, + [5254] = {.lex_state = 0}, + [5255] = {.lex_state = 625}, + [5256] = {.lex_state = 226}, + [5257] = {.lex_state = 31}, + [5258] = {.lex_state = 1206}, + [5259] = {.lex_state = 33}, + [5260] = {.lex_state = 31}, + [5261] = {.lex_state = 0}, [5262] = {.lex_state = 0}, - [5263] = {.lex_state = 626}, - [5264] = {.lex_state = 33}, - [5265] = {.lex_state = 626}, - [5266] = {.lex_state = 227}, - [5267] = {.lex_state = 1207}, - [5268] = {.lex_state = 31}, - [5269] = {.lex_state = 0}, - [5270] = {.lex_state = 0}, - [5271] = {.lex_state = 227}, - [5272] = {.lex_state = 33}, - [5273] = {.lex_state = 0}, - [5274] = {.lex_state = 0}, + [5263] = {.lex_state = 0}, + [5264] = {.lex_state = 47}, + [5265] = {.lex_state = 0}, + [5266] = {.lex_state = 625}, + [5267] = {.lex_state = 625}, + [5268] = {.lex_state = 625}, + [5269] = {.lex_state = 1206}, + [5270] = {.lex_state = 578}, + [5271] = {.lex_state = 578}, + [5272] = {.lex_state = 578}, + [5273] = {.lex_state = 578}, + [5274] = {.lex_state = 2206}, [5275] = {.lex_state = 0}, - [5276] = {.lex_state = 33}, + [5276] = {.lex_state = 625}, [5277] = {.lex_state = 0}, - [5278] = {.lex_state = 121}, + [5278] = {.lex_state = 0}, [5279] = {.lex_state = 0}, - [5280] = {.lex_state = 33}, - [5281] = {.lex_state = 0}, - [5282] = {.lex_state = 0}, - [5283] = {.lex_state = 2207}, - [5284] = {.lex_state = 0}, - [5285] = {.lex_state = 669}, - [5286] = {.lex_state = 33}, - [5287] = {.lex_state = 0}, - [5288] = {.lex_state = 0}, - [5289] = {.lex_state = 579}, - [5290] = {.lex_state = 1207}, + [5280] = {.lex_state = 2206}, + [5281] = {.lex_state = 31}, + [5282] = {.lex_state = 1206}, + [5283] = {.lex_state = 629}, + [5284] = {.lex_state = 33}, + [5285] = {.lex_state = 0}, + [5286] = {.lex_state = 0}, + [5287] = {.lex_state = 578}, + [5288] = {.lex_state = 226}, + [5289] = {.lex_state = 578}, + [5290] = {.lex_state = 668}, [5291] = {.lex_state = 0}, - [5292] = {.lex_state = 579}, - [5293] = {.lex_state = 0}, - [5294] = {.lex_state = 31}, - [5295] = {.lex_state = 0, .external_lex_state = 3}, - [5296] = {.lex_state = 1207}, - [5297] = {.lex_state = 0}, - [5298] = {.lex_state = 0}, - [5299] = {.lex_state = 626}, - [5300] = {.lex_state = 0}, - [5301] = {.lex_state = 0}, + [5292] = {.lex_state = 229}, + [5293] = {.lex_state = 1206}, + [5294] = {.lex_state = 0, .external_lex_state = 3}, + [5295] = {.lex_state = 229}, + [5296] = {.lex_state = 1206}, + [5297] = {.lex_state = 625}, + [5298] = {.lex_state = 625}, + [5299] = {.lex_state = 578}, + [5300] = {.lex_state = 578}, + [5301] = {.lex_state = 121}, [5302] = {.lex_state = 0}, - [5303] = {.lex_state = 227}, + [5303] = {.lex_state = 625}, [5304] = {.lex_state = 0}, - [5305] = {.lex_state = 0}, - [5306] = {.lex_state = 1737}, - [5307] = {.lex_state = 33}, + [5305] = {.lex_state = 31}, + [5306] = {.lex_state = 0}, + [5307] = {.lex_state = 1206}, [5308] = {.lex_state = 0}, - [5309] = {.lex_state = 0}, - [5310] = {.lex_state = 1207}, - [5311] = {.lex_state = 33}, + [5309] = {.lex_state = 33}, + [5310] = {.lex_state = 229}, + [5311] = {.lex_state = 0}, [5312] = {.lex_state = 0}, [5313] = {.lex_state = 0}, - [5314] = {.lex_state = 579}, - [5315] = {.lex_state = 33}, + [5314] = {.lex_state = 0}, + [5315] = {.lex_state = 1736}, [5316] = {.lex_state = 0}, - [5317] = {.lex_state = 47}, - [5318] = {.lex_state = 2}, - [5319] = {.lex_state = 230}, - [5320] = {.lex_state = 0}, - [5321] = {.lex_state = 121}, - [5322] = {.lex_state = 33}, + [5317] = {.lex_state = 0}, + [5318] = {.lex_state = 1206}, + [5319] = {.lex_state = 1206}, + [5320] = {.lex_state = 578}, + [5321] = {.lex_state = 578}, + [5322] = {.lex_state = 0}, [5323] = {.lex_state = 0}, - [5324] = {.lex_state = 579}, - [5325] = {.lex_state = 579}, - [5326] = {.lex_state = 31}, - [5327] = {.lex_state = 33}, - [5328] = {.lex_state = 0}, - [5329] = {.lex_state = 0}, - [5330] = {.lex_state = 0}, - [5331] = {.lex_state = 230}, - [5332] = {.lex_state = 0, .external_lex_state = 3}, + [5324] = {.lex_state = 0}, + [5325] = {.lex_state = 0}, + [5326] = {.lex_state = 0}, + [5327] = {.lex_state = 0}, + [5328] = {.lex_state = 33}, + [5329] = {.lex_state = 121}, + [5330] = {.lex_state = 625}, + [5331] = {.lex_state = 33}, + [5332] = {.lex_state = 2210}, [5333] = {.lex_state = 0}, - [5334] = {.lex_state = 579}, - [5335] = {.lex_state = 1207}, - [5336] = {.lex_state = 626}, - [5337] = {.lex_state = 33}, + [5334] = {.lex_state = 33}, + [5335] = {.lex_state = 0}, + [5336] = {.lex_state = 2210}, + [5337] = {.lex_state = 226}, [5338] = {.lex_state = 0}, - [5339] = {.lex_state = 579}, - [5340] = {.lex_state = 579}, - [5341] = {.lex_state = 227}, - [5342] = {.lex_state = 230}, - [5343] = {.lex_state = 626}, - [5344] = {.lex_state = 33}, - [5345] = {.lex_state = 0}, - [5346] = {.lex_state = 626}, + [5339] = {.lex_state = 2210}, + [5340] = {.lex_state = 226}, + [5341] = {.lex_state = 0, .external_lex_state = 3}, + [5342] = {.lex_state = 0}, + [5343] = {.lex_state = 0}, + [5344] = {.lex_state = 0}, + [5345] = {.lex_state = 121}, + [5346] = {.lex_state = 0}, [5347] = {.lex_state = 33}, - [5348] = {.lex_state = 227}, - [5349] = {.lex_state = 0}, - [5350] = {.lex_state = 33}, - [5351] = {.lex_state = 0}, - [5352] = {.lex_state = 0}, - [5353] = {.lex_state = 0}, - [5354] = {.lex_state = 0}, + [5348] = {.lex_state = 33}, + [5349] = {.lex_state = 33}, + [5350] = {.lex_state = 0}, + [5351] = {.lex_state = 146}, + [5352] = {.lex_state = 33}, + [5353] = {.lex_state = 33}, + [5354] = {.lex_state = 33}, [5355] = {.lex_state = 0}, [5356] = {.lex_state = 0}, [5357] = {.lex_state = 0}, - [5358] = {.lex_state = 669}, - [5359] = {.lex_state = 33}, + [5358] = {.lex_state = 33}, + [5359] = {.lex_state = 0}, [5360] = {.lex_state = 0}, - [5361] = {.lex_state = 626}, - [5362] = {.lex_state = 579}, - [5363] = {.lex_state = 0, .external_lex_state = 4}, - [5364] = {.lex_state = 0}, - [5365] = {.lex_state = 1712}, - [5366] = {.lex_state = 1716}, - [5367] = {.lex_state = 579}, - [5368] = {.lex_state = 0}, - [5369] = {.lex_state = 1207}, - [5370] = {.lex_state = 630}, - [5371] = {.lex_state = 626}, - [5372] = {.lex_state = 33}, - [5373] = {.lex_state = 1207}, - [5374] = {.lex_state = 0}, - [5375] = {.lex_state = 146}, - [5376] = {.lex_state = 626}, + [5361] = {.lex_state = 0}, + [5362] = {.lex_state = 33}, + [5363] = {.lex_state = 33}, + [5364] = {.lex_state = 229}, + [5365] = {.lex_state = 0}, + [5366] = {.lex_state = 0, .external_lex_state = 4}, + [5367] = {.lex_state = 0}, + [5368] = {.lex_state = 1711}, + [5369] = {.lex_state = 1715}, + [5370] = {.lex_state = 146}, + [5371] = {.lex_state = 0}, + [5372] = {.lex_state = 0}, + [5373] = {.lex_state = 629}, + [5374] = {.lex_state = 2}, + [5375] = {.lex_state = 2206}, + [5376] = {.lex_state = 625}, [5377] = {.lex_state = 0}, - [5378] = {.lex_state = 0}, + [5378] = {.lex_state = 625}, [5379] = {.lex_state = 0}, - [5380] = {.lex_state = 31}, - [5381] = {.lex_state = 230}, + [5380] = {.lex_state = 1206}, + [5381] = {.lex_state = 33}, [5382] = {.lex_state = 0}, - [5383] = {.lex_state = 0}, - [5384] = {.lex_state = 0}, - [5385] = {.lex_state = 33}, + [5383] = {.lex_state = 578}, + [5384] = {.lex_state = 578}, + [5385] = {.lex_state = 0}, [5386] = {.lex_state = 0}, - [5387] = {.lex_state = 0}, - [5388] = {.lex_state = 33}, + [5387] = {.lex_state = 578}, + [5388] = {.lex_state = 0}, [5389] = {.lex_state = 0}, - [5390] = {.lex_state = 0}, - [5391] = {.lex_state = 230}, - [5392] = {.lex_state = 0}, + [5390] = {.lex_state = 33}, + [5391] = {.lex_state = 0}, + [5392] = {.lex_state = 226}, [5393] = {.lex_state = 0}, - [5394] = {.lex_state = 0}, - [5395] = {.lex_state = 1207}, - [5396] = {.lex_state = 1207}, - [5397] = {.lex_state = 0}, - [5398] = {.lex_state = 0}, - [5399] = {.lex_state = 33}, - [5400] = {.lex_state = 2209}, - [5401] = {.lex_state = 0, .external_lex_state = 4}, - [5402] = {.lex_state = 230}, - [5403] = {.lex_state = 121}, - [5404] = {.lex_state = 0}, - [5405] = {.lex_state = 33}, - [5406] = {.lex_state = 0, .external_lex_state = 4}, - [5407] = {.lex_state = 0}, - [5408] = {.lex_state = 1712}, - [5409] = {.lex_state = 1716}, - [5410] = {.lex_state = 33}, - [5411] = {.lex_state = 630}, - [5412] = {.lex_state = 33}, - [5413] = {.lex_state = 2211}, - [5414] = {.lex_state = 0}, - [5415] = {.lex_state = 0, .external_lex_state = 3}, - [5416] = {.lex_state = 0, .external_lex_state = 4}, + [5394] = {.lex_state = 33}, + [5395] = {.lex_state = 226}, + [5396] = {.lex_state = 226}, + [5397] = {.lex_state = 226}, + [5398] = {.lex_state = 625}, + [5399] = {.lex_state = 0, .external_lex_state = 3}, + [5400] = {.lex_state = 33}, + [5401] = {.lex_state = 0}, + [5402] = {.lex_state = 0}, + [5403] = {.lex_state = 33}, + [5404] = {.lex_state = 33}, + [5405] = {.lex_state = 2}, + [5406] = {.lex_state = 1206}, + [5407] = {.lex_state = 625}, + [5408] = {.lex_state = 625}, + [5409] = {.lex_state = 0, .external_lex_state = 4}, + [5410] = {.lex_state = 0}, + [5411] = {.lex_state = 1711}, + [5412] = {.lex_state = 1715}, + [5413] = {.lex_state = 2221}, + [5414] = {.lex_state = 629}, + [5415] = {.lex_state = 229}, + [5416] = {.lex_state = 625}, [5417] = {.lex_state = 0}, - [5418] = {.lex_state = 1712}, - [5419] = {.lex_state = 1716}, - [5420] = {.lex_state = 0, .external_lex_state = 4}, - [5421] = {.lex_state = 0}, - [5422] = {.lex_state = 1712}, - [5423] = {.lex_state = 1716}, - [5424] = {.lex_state = 0, .external_lex_state = 4}, - [5425] = {.lex_state = 0}, - [5426] = {.lex_state = 1712}, - [5427] = {.lex_state = 1716}, - [5428] = {.lex_state = 0, .external_lex_state = 4}, - [5429] = {.lex_state = 1712}, - [5430] = {.lex_state = 1716}, + [5418] = {.lex_state = 229}, + [5419] = {.lex_state = 0, .external_lex_state = 4}, + [5420] = {.lex_state = 0}, + [5421] = {.lex_state = 1711}, + [5422] = {.lex_state = 1715}, + [5423] = {.lex_state = 0, .external_lex_state = 4}, + [5424] = {.lex_state = 0}, + [5425] = {.lex_state = 1711}, + [5426] = {.lex_state = 1715}, + [5427] = {.lex_state = 0, .external_lex_state = 4}, + [5428] = {.lex_state = 0}, + [5429] = {.lex_state = 1711}, + [5430] = {.lex_state = 1715}, [5431] = {.lex_state = 0, .external_lex_state = 4}, - [5432] = {.lex_state = 1712}, - [5433] = {.lex_state = 1716}, + [5432] = {.lex_state = 1711}, + [5433] = {.lex_state = 1715}, [5434] = {.lex_state = 0, .external_lex_state = 4}, - [5435] = {.lex_state = 1712}, - [5436] = {.lex_state = 1716}, + [5435] = {.lex_state = 1711}, + [5436] = {.lex_state = 1715}, [5437] = {.lex_state = 0, .external_lex_state = 4}, - [5438] = {.lex_state = 1712}, - [5439] = {.lex_state = 1716}, + [5438] = {.lex_state = 1711}, + [5439] = {.lex_state = 1715}, [5440] = {.lex_state = 0, .external_lex_state = 4}, - [5441] = {.lex_state = 1712}, - [5442] = {.lex_state = 1716}, + [5441] = {.lex_state = 1711}, + [5442] = {.lex_state = 1715}, [5443] = {.lex_state = 0, .external_lex_state = 4}, - [5444] = {.lex_state = 1712}, - [5445] = {.lex_state = 1716}, + [5444] = {.lex_state = 1711}, + [5445] = {.lex_state = 1715}, [5446] = {.lex_state = 0, .external_lex_state = 4}, - [5447] = {.lex_state = 1712}, - [5448] = {.lex_state = 1716}, + [5447] = {.lex_state = 1711}, + [5448] = {.lex_state = 1715}, [5449] = {.lex_state = 0, .external_lex_state = 4}, - [5450] = {.lex_state = 1712}, - [5451] = {.lex_state = 1716}, + [5450] = {.lex_state = 1711}, + [5451] = {.lex_state = 1715}, [5452] = {.lex_state = 0, .external_lex_state = 4}, - [5453] = {.lex_state = 1712}, - [5454] = {.lex_state = 1716}, + [5453] = {.lex_state = 1711}, + [5454] = {.lex_state = 1715}, [5455] = {.lex_state = 0, .external_lex_state = 4}, - [5456] = {.lex_state = 1712}, - [5457] = {.lex_state = 1716}, + [5456] = {.lex_state = 1711}, + [5457] = {.lex_state = 1715}, [5458] = {.lex_state = 0, .external_lex_state = 4}, - [5459] = {.lex_state = 1712}, - [5460] = {.lex_state = 1716}, + [5459] = {.lex_state = 1711}, + [5460] = {.lex_state = 1715}, [5461] = {.lex_state = 0, .external_lex_state = 4}, - [5462] = {.lex_state = 1712}, - [5463] = {.lex_state = 1716}, + [5462] = {.lex_state = 1711}, + [5463] = {.lex_state = 1715}, [5464] = {.lex_state = 0, .external_lex_state = 4}, - [5465] = {.lex_state = 1712}, - [5466] = {.lex_state = 1716}, + [5465] = {.lex_state = 1711}, + [5466] = {.lex_state = 1715}, [5467] = {.lex_state = 0, .external_lex_state = 4}, - [5468] = {.lex_state = 1712}, - [5469] = {.lex_state = 1716}, - [5470] = {.lex_state = 0}, - [5471] = {.lex_state = 2222}, - [5472] = {.lex_state = 0}, - [5473] = {.lex_state = 2211}, - [5474] = {.lex_state = 0}, - [5475] = {.lex_state = 33}, - [5476] = {.lex_state = 579}, - [5477] = {.lex_state = 0}, + [5468] = {.lex_state = 1711}, + [5469] = {.lex_state = 1715}, + [5470] = {.lex_state = 0, .external_lex_state = 4}, + [5471] = {.lex_state = 1711}, + [5472] = {.lex_state = 1715}, + [5473] = {.lex_state = 0}, + [5474] = {.lex_state = 0, .external_lex_state = 3}, + [5475] = {.lex_state = 0}, + [5476] = {.lex_state = 0}, + [5477] = {.lex_state = 0, .external_lex_state = 4}, [5478] = {.lex_state = 33}, - [5479] = {.lex_state = 0}, - [5480] = {.lex_state = 33}, - [5481] = {.lex_state = 146}, + [5479] = {.lex_state = 578}, + [5480] = {.lex_state = 1206}, + [5481] = {.lex_state = 0}, [5482] = {.lex_state = 0}, [5483] = {.lex_state = 0}, - [5484] = {.lex_state = 33}, - [5485] = {.lex_state = 0}, - [5486] = {.lex_state = 579}, - [5487] = {.lex_state = 579}, - [5488] = {.lex_state = 227}, + [5484] = {.lex_state = 0}, + [5485] = {.lex_state = 226}, + [5486] = {.lex_state = 33}, + [5487] = {.lex_state = 0}, + [5488] = {.lex_state = 2}, [5489] = {.lex_state = 0}, - [5490] = {.lex_state = 33}, - [5491] = {.lex_state = 1207}, - [5492] = {.lex_state = 33}, - [5493] = {.lex_state = 33}, - [5494] = {.lex_state = 146}, + [5490] = {.lex_state = 230}, + [5491] = {.lex_state = 0}, + [5492] = {.lex_state = 146}, + [5493] = {.lex_state = 0}, + [5494] = {.lex_state = 0}, [5495] = {.lex_state = 33}, [5496] = {.lex_state = 0}, [5497] = {.lex_state = 0}, - [5498] = {.lex_state = 33}, - [5499] = {.lex_state = 1207}, - [5500] = {.lex_state = 33}, + [5498] = {.lex_state = 2208}, + [5499] = {.lex_state = 33}, + [5500] = {.lex_state = 0}, [5501] = {.lex_state = 33}, - [5502] = {.lex_state = 0}, - [5503] = {.lex_state = 31}, - [5504] = {.lex_state = 227}, - [5505] = {.lex_state = 0}, - [5506] = {.lex_state = 626}, - [5507] = {.lex_state = 0}, - [5508] = {.lex_state = 227}, + [5502] = {.lex_state = 229}, + [5503] = {.lex_state = 1715}, + [5504] = {.lex_state = 1711}, + [5505] = {.lex_state = 229}, + [5506] = {.lex_state = 0}, + [5507] = {.lex_state = 33}, + [5508] = {.lex_state = 33}, [5509] = {.lex_state = 0}, - [5510] = {.lex_state = 273}, - [5511] = {.lex_state = 1207}, - [5512] = {.lex_state = 0}, - [5513] = {.lex_state = 121}, - [5514] = {.lex_state = 33}, - [5515] = {.lex_state = 0, .external_lex_state = 3}, - [5516] = {.lex_state = 33}, - [5517] = {.lex_state = 230}, - [5518] = {.lex_state = 0}, - [5519] = {.lex_state = 33}, - [5520] = {.lex_state = 0}, - [5521] = {.lex_state = 0}, - [5522] = {.lex_state = 0}, - [5523] = {.lex_state = 0}, - [5524] = {.lex_state = 0}, - [5525] = {.lex_state = 2211}, - [5526] = {.lex_state = 121}, - [5527] = {.lex_state = 0}, - [5528] = {.lex_state = 579}, - [5529] = {.lex_state = 579}, - [5530] = {.lex_state = 31}, - [5531] = {.lex_state = 227}, - [5532] = {(TSStateId)(-1),}, + [5510] = {.lex_state = 33}, + [5511] = {.lex_state = 272}, + [5512] = {.lex_state = 229}, + [5513] = {.lex_state = 0}, + [5514] = {.lex_state = 121}, + [5515] = {.lex_state = 229}, + [5516] = {.lex_state = 0}, + [5517] = {.lex_state = 33}, + [5518] = {.lex_state = 33}, + [5519] = {.lex_state = 0}, + [5520] = {.lex_state = 33}, + [5521] = {.lex_state = 33}, + [5522] = {.lex_state = 33}, + [5523] = {.lex_state = 33}, + [5524] = {.lex_state = 33}, + [5525] = {.lex_state = 0}, + [5526] = {.lex_state = 0}, + [5527] = {.lex_state = 33}, + [5528] = {.lex_state = 0}, + [5529] = {.lex_state = 0}, + [5530] = {.lex_state = 226}, + [5531] = {.lex_state = 229}, + [5532] = {.lex_state = 0}, + [5533] = {.lex_state = 668}, + [5534] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [STATE(0)] = { + [0] = { [sym_comment] = STATE(0), [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), @@ -39438,78 +39384,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_content] = ACTIONS(1), [sym_raw_string_end] = ACTIONS(1), }, - [STATE(1)] = { - [sym_nu_script] = STATE(5377), - [sym_shebang] = STATE(52), - [sym__block_body_statement] = STATE(4410), - [sym__declaration] = STATE(4682), - [sym_decl_alias] = STATE(4683), - [sym_stmt_let] = STATE(4686), - [sym_stmt_mut] = STATE(4686), - [sym_stmt_const] = STATE(4686), - [sym_assignment] = STATE(3457), - [sym__mutable_assignment_pattern] = STATE(3458), - [sym__statement] = STATE(4682), - [sym_pipeline] = STATE(4686), - [sym__block_body] = STATE(5239), - [sym_cmd_identifier] = STATE(2973), - [aux_sym__repeat_newline] = STATE(4868), - [sym_attribute_list] = STATE(4871), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4683), - [sym_decl_export] = STATE(4683), - [sym_decl_extern] = STATE(4683), - [sym_decl_module] = STATE(4683), - [sym_decl_use] = STATE(4683), - [sym__ctrl_statement] = STATE(4686), - [sym__ctrl_expression] = STATE(3457), - [sym_ctrl_for] = STATE(4696), - [sym_ctrl_loop] = STATE(4696), - [sym_ctrl_while] = STATE(4696), - [sym_ctrl_if] = STATE(3465), - [sym_ctrl_match] = STATE(3465), - [sym_ctrl_try] = STATE(3465), - [sym__stmt_let_shortcut] = STATE(3467), - [sym_pipe_element] = STATE(3140), - [sym_where_command] = STATE(3457), + [1] = { + [sym_nu_script] = STATE(5500), + [sym_shebang] = STATE(53), + [sym__block_body_statement] = STATE(4404), + [sym__declaration] = STATE(4750), + [sym_decl_alias] = STATE(4751), + [sym_stmt_let] = STATE(4752), + [sym_stmt_mut] = STATE(4752), + [sym_stmt_const] = STATE(4752), + [sym_assignment] = STATE(3423), + [sym__mutable_assignment_pattern] = STATE(3434), + [sym__statement] = STATE(4750), + [sym_pipeline] = STATE(4752), + [sym__block_body] = STATE(5491), + [sym_cmd_identifier] = STATE(3036), + [aux_sym__repeat_newline] = STATE(4757), + [sym_attribute_list] = STATE(4760), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4751), + [sym_decl_export] = STATE(4751), + [sym_decl_extern] = STATE(4751), + [sym_decl_module] = STATE(4751), + [sym_decl_use] = STATE(4751), + [sym__ctrl_statement] = STATE(4752), + [sym__ctrl_expression] = STATE(3423), + [sym_ctrl_for] = STATE(4784), + [sym_ctrl_loop] = STATE(4784), + [sym_ctrl_while] = STATE(4784), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3468), + [sym_pipe_element] = STATE(3055), + [sym_where_command] = STATE(3423), [sym__expression] = STATE(2307), - [sym_expr_unary] = STATE(1303), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1303), - [sym__expr_binary_expression] = STATE(2265), - [sym_expr_parenthesized] = STATE(934), - [sym_val_range] = STATE(1303), - [sym__value] = STATE(1303), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1369), - [sym_val_variable] = STATE(470), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), + [sym_expr_unary] = STATE(1343), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1343), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(979), + [sym_val_range] = STATE(1343), + [sym__value] = STATE(1343), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1338), + [sym_val_variable] = STATE(472), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3457), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3423), [sym_comment] = STATE(1), - [aux_sym_pipeline_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_pipeline_repeat1] = STATE(172), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(278), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -39573,87 +39519,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(105), [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(2)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5178), - [sym_cmd_identifier] = STATE(2666), - [aux_sym__repeat_newline] = STATE(21), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym_parameter_pipes] = STATE(48), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym__match_pattern_record_body] = STATE(5509), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [2] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5361), + [sym_cmd_identifier] = STATE(2715), + [aux_sym__repeat_newline] = STATE(20), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym_parameter_pipes] = STATE(62), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym__match_pattern_record_body] = STATE(5327), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(796), - [sym__spread_parenthesized] = STATE(4962), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(398), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(1165), - [sym__val_number_decimal] = STATE(108), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(1165), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(1165), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym__spread_record] = STATE(4962), - [sym_record_body] = STATE(5190), - [sym_record_entry] = STATE(4880), - [sym__record_key] = STATE(5380), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_expr_parenthesized] = STATE(893), + [sym__spread_parenthesized] = STATE(4951), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(385), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(1200), + [sym__val_number_decimal] = STATE(107), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(1200), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(1200), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym__spread_record] = STATE(4951), + [sym_record_body] = STATE(5252), + [sym_record_entry] = STATE(4686), + [sym__record_key] = STATE(5305), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(2), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), [aux_sym__types_body_repeat1] = STATE(489), - [aux_sym__match_pattern_record_body_repeat1] = STATE(739), - [aux_sym_pipe_element_repeat2] = STATE(283), - [aux_sym_record_body_repeat1] = STATE(728), + [aux_sym__match_pattern_record_body_repeat1] = STATE(723), + [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_record_body_repeat1] = STATE(719), [anon_sym_export] = ACTIONS(109), [anon_sym_alias] = ACTIONS(111), [anon_sym_let] = ACTIONS(113), @@ -39721,85 +39667,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(3)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5374), - [sym_cmd_identifier] = STATE(2666), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym_parameter_pipes] = STATE(73), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [3] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5487), + [sym_cmd_identifier] = STATE(2715), + [aux_sym__repeat_newline] = STATE(19), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym_parameter_pipes] = STATE(48), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(796), - [sym__spread_parenthesized] = STATE(4962), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(1165), - [sym__val_number_decimal] = STATE(108), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(1165), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(1165), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym__spread_record] = STATE(4962), - [sym_record_body] = STATE(5269), - [sym_record_entry] = STATE(4691), - [sym__record_key] = STATE(5380), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_expr_parenthesized] = STATE(893), + [sym__spread_parenthesized] = STATE(4951), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(442), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(1200), + [sym__val_number_decimal] = STATE(107), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(1200), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(1200), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym__spread_record] = STATE(4951), + [sym_record_body] = STATE(5308), + [sym_record_entry] = STATE(4887), + [sym__record_key] = STATE(5305), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(3), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym__types_body_repeat1] = STATE(503), - [aux_sym_pipe_element_repeat2] = STATE(283), - [aux_sym_record_body_repeat1] = STATE(728), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym__types_body_repeat1] = STATE(505), + [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_record_body_repeat1] = STATE(719), [anon_sym_export] = ACTIONS(109), [anon_sym_alias] = ACTIONS(111), [anon_sym_let] = ACTIONS(113), @@ -39867,85 +39813,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(4)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5178), - [sym_cmd_identifier] = STATE(2666), - [aux_sym__repeat_newline] = STATE(21), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym_parameter_pipes] = STATE(48), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [4] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5322), + [sym_cmd_identifier] = STATE(2715), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym_parameter_pipes] = STATE(38), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(796), - [sym__spread_parenthesized] = STATE(4962), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(1165), - [sym__val_number_decimal] = STATE(108), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(1165), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(1165), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym__spread_record] = STATE(4962), - [sym_record_body] = STATE(5190), - [sym_record_entry] = STATE(4691), - [sym__record_key] = STATE(5380), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_expr_parenthesized] = STATE(893), + [sym__spread_parenthesized] = STATE(4951), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(442), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(1200), + [sym__val_number_decimal] = STATE(107), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(1200), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(1200), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym__spread_record] = STATE(4951), + [sym_record_body] = STATE(5247), + [sym_record_entry] = STATE(4887), + [sym__record_key] = STATE(5305), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(4), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym__types_body_repeat1] = STATE(503), - [aux_sym_pipe_element_repeat2] = STATE(283), - [aux_sym_record_body_repeat1] = STATE(728), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym__types_body_repeat1] = STATE(505), + [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_record_body_repeat1] = STATE(719), [anon_sym_export] = ACTIONS(109), [anon_sym_alias] = ACTIONS(111), [anon_sym_let] = ACTIONS(113), @@ -40013,85 +39959,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(5)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5523), - [sym_cmd_identifier] = STATE(2666), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym_parameter_pipes] = STATE(73), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [5] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5246), + [sym_cmd_identifier] = STATE(2715), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym_parameter_pipes] = STATE(38), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(796), - [sym__spread_parenthesized] = STATE(4962), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(1165), - [sym__val_number_decimal] = STATE(108), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(1165), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(1165), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym__spread_record] = STATE(4962), - [sym_record_body] = STATE(5269), - [sym_record_entry] = STATE(4691), - [sym__record_key] = STATE(5380), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_expr_parenthesized] = STATE(893), + [sym__spread_parenthesized] = STATE(4951), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(442), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(1200), + [sym__val_number_decimal] = STATE(107), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(1200), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(1200), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym__spread_record] = STATE(4951), + [sym_record_body] = STATE(5357), + [sym_record_entry] = STATE(4887), + [sym__record_key] = STATE(5305), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(5), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym__types_body_repeat1] = STATE(503), - [aux_sym_pipe_element_repeat2] = STATE(283), - [aux_sym_record_body_repeat1] = STATE(728), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym__types_body_repeat1] = STATE(505), + [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_record_body_repeat1] = STATE(719), [anon_sym_export] = ACTIONS(109), [anon_sym_alias] = ACTIONS(111), [anon_sym_let] = ACTIONS(113), @@ -40159,85 +40105,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(6)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5496), - [sym_cmd_identifier] = STATE(2666), - [aux_sym__repeat_newline] = STATE(21), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym_parameter_pipes] = STATE(48), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [6] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5361), + [sym_cmd_identifier] = STATE(2715), + [aux_sym__repeat_newline] = STATE(20), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym_parameter_pipes] = STATE(62), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(796), - [sym__spread_parenthesized] = STATE(4962), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(1165), - [sym__val_number_decimal] = STATE(108), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(1165), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(1165), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym__spread_record] = STATE(4962), - [sym_record_body] = STATE(5190), - [sym_record_entry] = STATE(4691), - [sym__record_key] = STATE(5380), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_expr_parenthesized] = STATE(893), + [sym__spread_parenthesized] = STATE(4951), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(442), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(1200), + [sym__val_number_decimal] = STATE(107), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(1200), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(1200), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym__spread_record] = STATE(4951), + [sym_record_body] = STATE(5252), + [sym_record_entry] = STATE(4887), + [sym__record_key] = STATE(5305), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(6), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym__types_body_repeat1] = STATE(503), - [aux_sym_pipe_element_repeat2] = STATE(283), - [aux_sym_record_body_repeat1] = STATE(728), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym__types_body_repeat1] = STATE(505), + [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_record_body_repeat1] = STATE(719), [anon_sym_export] = ACTIONS(109), [anon_sym_alias] = ACTIONS(111), [anon_sym_let] = ACTIONS(113), @@ -40305,85 +40251,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(7)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5329), - [sym_cmd_identifier] = STATE(2666), - [aux_sym__repeat_newline] = STATE(18), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [7] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5388), + [sym_cmd_identifier] = STATE(2715), + [aux_sym__repeat_newline] = STATE(16), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym_parameter_pipes] = STATE(41), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(796), - [sym__spread_parenthesized] = STATE(4962), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(1165), - [sym__val_number_decimal] = STATE(108), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(1165), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(1165), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym__spread_record] = STATE(4962), - [sym_record_body] = STATE(5333), - [sym_record_entry] = STATE(4691), - [sym__record_key] = STATE(5380), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_expr_parenthesized] = STATE(893), + [sym__spread_parenthesized] = STATE(4951), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(442), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(1200), + [sym__val_number_decimal] = STATE(107), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(1200), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(1200), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym__spread_record] = STATE(4951), + [sym_record_body] = STATE(5386), + [sym_record_entry] = STATE(4887), + [sym__record_key] = STATE(5305), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(7), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym__types_body_repeat1] = STATE(503), - [aux_sym_pipe_element_repeat2] = STATE(283), - [aux_sym_record_body_repeat1] = STATE(728), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym__types_body_repeat1] = STATE(505), + [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_record_body_repeat1] = STATE(719), [anon_sym_export] = ACTIONS(109), [anon_sym_alias] = ACTIONS(111), [anon_sym_let] = ACTIONS(113), @@ -40451,85 +40397,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(8)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5505), - [sym_cmd_identifier] = STATE(2666), - [aux_sym__repeat_newline] = STATE(18), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [8] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5529), + [sym_cmd_identifier] = STATE(2715), + [aux_sym__repeat_newline] = STATE(20), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym_parameter_pipes] = STATE(62), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(796), - [sym__spread_parenthesized] = STATE(4962), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(1165), - [sym__val_number_decimal] = STATE(108), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(1165), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(1165), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym__spread_record] = STATE(4962), - [sym_record_body] = STATE(5333), - [sym_record_entry] = STATE(4691), - [sym__record_key] = STATE(5380), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_expr_parenthesized] = STATE(893), + [sym__spread_parenthesized] = STATE(4951), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(442), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(1200), + [sym__val_number_decimal] = STATE(107), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(1200), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(1200), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym__spread_record] = STATE(4951), + [sym_record_body] = STATE(5252), + [sym_record_entry] = STATE(4887), + [sym__record_key] = STATE(5305), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(8), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym__types_body_repeat1] = STATE(503), - [aux_sym_pipe_element_repeat2] = STATE(283), - [aux_sym_record_body_repeat1] = STATE(728), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym__types_body_repeat1] = STATE(505), + [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_record_body_repeat1] = STATE(719), [anon_sym_export] = ACTIONS(109), [anon_sym_alias] = ACTIONS(111), [anon_sym_let] = ACTIONS(113), @@ -40597,85 +40543,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(9)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5300), - [sym_cmd_identifier] = STATE(2666), - [aux_sym__repeat_newline] = STATE(24), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym_parameter_pipes] = STATE(54), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [9] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5246), + [sym_cmd_identifier] = STATE(2715), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym_parameter_pipes] = STATE(38), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(796), - [sym__spread_parenthesized] = STATE(4962), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(1165), - [sym__val_number_decimal] = STATE(108), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(1165), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(1165), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym__spread_record] = STATE(4962), - [sym_record_body] = STATE(5312), - [sym_record_entry] = STATE(4691), - [sym__record_key] = STATE(5380), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_expr_parenthesized] = STATE(893), + [sym__spread_parenthesized] = STATE(4951), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(442), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(1200), + [sym__val_number_decimal] = STATE(107), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(1200), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(1200), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym__spread_record] = STATE(4951), + [sym_record_body] = STATE(5247), + [sym_record_entry] = STATE(4887), + [sym__record_key] = STATE(5305), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(9), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym__types_body_repeat1] = STATE(503), - [aux_sym_pipe_element_repeat2] = STATE(283), - [aux_sym_record_body_repeat1] = STATE(728), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym__types_body_repeat1] = STATE(505), + [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_record_body_repeat1] = STATE(719), [anon_sym_export] = ACTIONS(109), [anon_sym_alias] = ACTIONS(111), [anon_sym_let] = ACTIONS(113), @@ -40743,85 +40689,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(10)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5349), - [sym_cmd_identifier] = STATE(2666), + [10] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5229), + [sym_cmd_identifier] = STATE(2715), [aux_sym__repeat_newline] = STATE(26), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym_parameter_pipes] = STATE(65), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym_parameter_pipes] = STATE(37), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(796), - [sym__spread_parenthesized] = STATE(4962), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(1165), - [sym__val_number_decimal] = STATE(108), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(1165), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(1165), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym__spread_record] = STATE(4962), - [sym_record_body] = STATE(5353), - [sym_record_entry] = STATE(4691), - [sym__record_key] = STATE(5380), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_expr_parenthesized] = STATE(893), + [sym__spread_parenthesized] = STATE(4951), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(442), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(1200), + [sym__val_number_decimal] = STATE(107), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(1200), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(1200), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym__spread_record] = STATE(4951), + [sym_record_body] = STATE(5156), + [sym_record_entry] = STATE(4887), + [sym__record_key] = STATE(5305), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(10), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym__types_body_repeat1] = STATE(503), - [aux_sym_pipe_element_repeat2] = STATE(283), - [aux_sym_record_body_repeat1] = STATE(728), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym__types_body_repeat1] = STATE(505), + [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_record_body_repeat1] = STATE(719), [anon_sym_export] = ACTIONS(109), [anon_sym_alias] = ACTIONS(111), [anon_sym_let] = ACTIONS(113), @@ -40889,85 +40835,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(11)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5349), - [sym_cmd_identifier] = STATE(2666), - [aux_sym__repeat_newline] = STATE(26), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym_parameter_pipes] = STATE(65), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [11] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5279), + [sym_cmd_identifier] = STATE(2715), + [aux_sym__repeat_newline] = STATE(22), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym_parameter_pipes] = STATE(46), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(796), - [sym__spread_parenthesized] = STATE(4962), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(1165), - [sym__val_number_decimal] = STATE(108), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(1165), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(1165), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym__spread_record] = STATE(4962), - [sym_record_body] = STATE(5483), - [sym_record_entry] = STATE(4691), - [sym__record_key] = STATE(5380), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_expr_parenthesized] = STATE(893), + [sym__spread_parenthesized] = STATE(4951), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(442), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(1200), + [sym__val_number_decimal] = STATE(107), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(1200), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(1200), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym__spread_record] = STATE(4951), + [sym_record_body] = STATE(5278), + [sym_record_entry] = STATE(4887), + [sym__record_key] = STATE(5305), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(11), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym__types_body_repeat1] = STATE(503), - [aux_sym_pipe_element_repeat2] = STATE(283), - [aux_sym_record_body_repeat1] = STATE(728), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym__types_body_repeat1] = STATE(505), + [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_record_body_repeat1] = STATE(719), [anon_sym_export] = ACTIONS(109), [anon_sym_alias] = ACTIONS(111), [anon_sym_let] = ACTIONS(113), @@ -41035,85 +40981,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(12)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5281), - [sym_cmd_identifier] = STATE(2666), - [aux_sym__repeat_newline] = STATE(22), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym_parameter_pipes] = STATE(62), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [12] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5314), + [sym_cmd_identifier] = STATE(2715), + [aux_sym__repeat_newline] = STATE(19), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym_parameter_pipes] = STATE(48), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(796), - [sym__spread_parenthesized] = STATE(4962), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(1165), - [sym__val_number_decimal] = STATE(108), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(1165), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(1165), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym__spread_record] = STATE(4962), - [sym_record_body] = STATE(5284), - [sym_record_entry] = STATE(4691), - [sym__record_key] = STATE(5380), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_expr_parenthesized] = STATE(893), + [sym__spread_parenthesized] = STATE(4951), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(442), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(1200), + [sym__val_number_decimal] = STATE(107), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(1200), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(1200), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym__spread_record] = STATE(4951), + [sym_record_body] = STATE(5308), + [sym_record_entry] = STATE(4887), + [sym__record_key] = STATE(5305), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(12), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym__types_body_repeat1] = STATE(503), - [aux_sym_pipe_element_repeat2] = STATE(283), - [aux_sym_record_body_repeat1] = STATE(728), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym__types_body_repeat1] = STATE(505), + [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_record_body_repeat1] = STATE(719), [anon_sym_export] = ACTIONS(109), [anon_sym_alias] = ACTIONS(111), [anon_sym_let] = ACTIONS(113), @@ -41181,85 +41127,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(13)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5150), - [sym_cmd_identifier] = STATE(2666), - [aux_sym__repeat_newline] = STATE(25), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym_parameter_pipes] = STATE(58), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [13] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5314), + [sym_cmd_identifier] = STATE(2715), + [aux_sym__repeat_newline] = STATE(19), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym_parameter_pipes] = STATE(48), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(796), - [sym__spread_parenthesized] = STATE(4962), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(1165), - [sym__val_number_decimal] = STATE(108), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(1165), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(1165), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym__spread_record] = STATE(4962), - [sym_record_body] = STATE(5154), - [sym_record_entry] = STATE(4691), - [sym__record_key] = STATE(5380), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_expr_parenthesized] = STATE(893), + [sym__spread_parenthesized] = STATE(4951), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(442), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(1200), + [sym__val_number_decimal] = STATE(107), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(1200), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(1200), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym__spread_record] = STATE(4951), + [sym_record_body] = STATE(5244), + [sym_record_entry] = STATE(4887), + [sym__record_key] = STATE(5305), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(13), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym__types_body_repeat1] = STATE(503), - [aux_sym_pipe_element_repeat2] = STATE(283), - [aux_sym_record_body_repeat1] = STATE(728), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym__types_body_repeat1] = STATE(505), + [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_record_body_repeat1] = STATE(719), [anon_sym_export] = ACTIONS(109), [anon_sym_alias] = ACTIONS(111), [anon_sym_let] = ACTIONS(113), @@ -41327,85 +41273,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(14)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5374), - [sym_cmd_identifier] = STATE(2666), + [14] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5326), + [sym_cmd_identifier] = STATE(2715), [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym_parameter_pipes] = STATE(73), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym_parameter_pipes] = STATE(63), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(796), - [sym__spread_parenthesized] = STATE(4962), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(1165), - [sym__val_number_decimal] = STATE(108), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(1165), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(1165), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym__spread_record] = STATE(4962), - [sym_record_body] = STATE(5240), - [sym_record_entry] = STATE(4691), - [sym__record_key] = STATE(5380), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_expr_parenthesized] = STATE(893), + [sym__spread_parenthesized] = STATE(4951), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(442), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(1200), + [sym__val_number_decimal] = STATE(107), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(1200), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(1200), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym__spread_record] = STATE(4951), + [sym_record_body] = STATE(5324), + [sym_record_entry] = STATE(4887), + [sym__record_key] = STATE(5305), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(14), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym__types_body_repeat1] = STATE(503), - [aux_sym_pipe_element_repeat2] = STATE(283), - [aux_sym_record_body_repeat1] = STATE(728), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym__types_body_repeat1] = STATE(505), + [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_record_body_repeat1] = STATE(719), [anon_sym_export] = ACTIONS(109), [anon_sym_alias] = ACTIONS(111), [anon_sym_let] = ACTIONS(113), @@ -41473,85 +41419,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(15)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5329), - [sym_cmd_identifier] = STATE(2666), - [aux_sym__repeat_newline] = STATE(18), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [15] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5229), + [sym_cmd_identifier] = STATE(2715), + [aux_sym__repeat_newline] = STATE(26), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym_parameter_pipes] = STATE(37), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(796), - [sym__spread_parenthesized] = STATE(4962), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(1165), - [sym__val_number_decimal] = STATE(108), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(1165), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(1165), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym__spread_record] = STATE(4962), - [sym_record_body] = STATE(5354), - [sym_record_entry] = STATE(4691), - [sym__record_key] = STATE(5380), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_expr_parenthesized] = STATE(893), + [sym__spread_parenthesized] = STATE(4951), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(442), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(1200), + [sym__val_number_decimal] = STATE(107), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(1200), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(1200), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym__spread_record] = STATE(4951), + [sym_record_body] = STATE(5228), + [sym_record_entry] = STATE(4887), + [sym__record_key] = STATE(5305), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(15), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym__types_body_repeat1] = STATE(503), - [aux_sym_pipe_element_repeat2] = STATE(283), - [aux_sym_record_body_repeat1] = STATE(728), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym__types_body_repeat1] = STATE(505), + [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_record_body_repeat1] = STATE(719), [anon_sym_export] = ACTIONS(109), [anon_sym_alias] = ACTIONS(111), [anon_sym_let] = ACTIONS(113), @@ -41619,77 +41565,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(16)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5374), - [sym_cmd_identifier] = STATE(2920), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym_parameter_pipes] = STATE(73), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [16] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5371), + [sym_cmd_identifier] = STATE(2877), + [aux_sym__repeat_newline] = STATE(1292), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym_parameter_pipes] = STATE(43), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(16), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(245), [anon_sym_alias] = ACTIONS(247), [anon_sym_let] = ACTIONS(249), @@ -41753,77 +41699,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(17)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5274), - [sym_cmd_identifier] = STATE(2920), - [aux_sym__repeat_newline] = STATE(1338), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym_parameter_pipes] = STATE(36), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [17] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5312), + [sym_cmd_identifier] = STATE(2877), + [aux_sym__repeat_newline] = STATE(1292), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym_parameter_pipes] = STATE(68), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(17), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(245), [anon_sym_alias] = ACTIONS(247), [anon_sym_let] = ACTIONS(249), @@ -41887,77 +41833,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(18)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5477), - [sym_cmd_identifier] = STATE(2920), - [aux_sym__repeat_newline] = STATE(1338), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [18] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5382), + [sym_cmd_identifier] = STATE(2877), + [aux_sym__repeat_newline] = STATE(1292), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym_parameter_pipes] = STATE(69), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(18), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(245), [anon_sym_alias] = ACTIONS(247), [anon_sym_let] = ACTIONS(249), @@ -42021,77 +41967,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(19)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5329), - [sym_cmd_identifier] = STATE(2920), - [aux_sym__repeat_newline] = STATE(18), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [19] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5213), + [sym_cmd_identifier] = STATE(2877), + [aux_sym__repeat_newline] = STATE(1292), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym_parameter_pipes] = STATE(49), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(19), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(245), [anon_sym_alias] = ACTIONS(247), [anon_sym_let] = ACTIONS(249), @@ -42155,77 +42101,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(20)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5505), - [sym_cmd_identifier] = STATE(2920), - [aux_sym__repeat_newline] = STATE(18), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [20] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5401), + [sym_cmd_identifier] = STATE(2877), + [aux_sym__repeat_newline] = STATE(1292), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym_parameter_pipes] = STATE(55), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(20), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(245), [anon_sym_alias] = ACTIONS(247), [anon_sym_let] = ACTIONS(249), @@ -42289,77 +42235,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(21)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5270), - [sym_cmd_identifier] = STATE(2920), - [aux_sym__repeat_newline] = STATE(1338), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym_parameter_pipes] = STATE(50), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [21] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5246), + [sym_cmd_identifier] = STATE(2877), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym_parameter_pipes] = STATE(38), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(21), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(245), [anon_sym_alias] = ACTIONS(247), [anon_sym_let] = ACTIONS(249), @@ -42423,77 +42369,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(22)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5302), - [sym_cmd_identifier] = STATE(2920), - [aux_sym__repeat_newline] = STATE(1338), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym_parameter_pipes] = STATE(64), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [22] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5263), + [sym_cmd_identifier] = STATE(2877), + [aux_sym__repeat_newline] = STATE(1292), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym_parameter_pipes] = STATE(59), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(22), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(245), [anon_sym_alias] = ACTIONS(247), [anon_sym_let] = ACTIONS(249), @@ -42557,77 +42503,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(23)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5523), - [sym_cmd_identifier] = STATE(2920), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym_parameter_pipes] = STATE(73), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [23] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5322), + [sym_cmd_identifier] = STATE(2877), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym_parameter_pipes] = STATE(38), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(23), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(245), [anon_sym_alias] = ACTIONS(247), [anon_sym_let] = ACTIONS(249), @@ -42691,77 +42637,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(24)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5357), - [sym_cmd_identifier] = STATE(2920), - [aux_sym__repeat_newline] = STATE(1338), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym_parameter_pipes] = STATE(56), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [24] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5487), + [sym_cmd_identifier] = STATE(2877), + [aux_sym__repeat_newline] = STATE(19), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym_parameter_pipes] = STATE(48), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(24), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(245), [anon_sym_alias] = ACTIONS(247), [anon_sym_let] = ACTIONS(249), @@ -42825,77 +42771,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(25)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5219), - [sym_cmd_identifier] = STATE(2920), - [aux_sym__repeat_newline] = STATE(1338), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym_parameter_pipes] = STATE(60), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [25] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5314), + [sym_cmd_identifier] = STATE(2877), + [aux_sym__repeat_newline] = STATE(19), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym_parameter_pipes] = STATE(48), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(245), [anon_sym_alias] = ACTIONS(247), [anon_sym_let] = ACTIONS(249), @@ -42959,77 +42905,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(26)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5379), - [sym_cmd_identifier] = STATE(2920), - [aux_sym__repeat_newline] = STATE(1338), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym_parameter_pipes] = STATE(67), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [26] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5203), + [sym_cmd_identifier] = STATE(2877), + [aux_sym__repeat_newline] = STATE(1292), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym_parameter_pipes] = STATE(57), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(245), [anon_sym_alias] = ACTIONS(247), [anon_sym_let] = ACTIONS(249), @@ -43093,75 +43039,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(27)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [27] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5405), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5151), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), [sym_comment] = STATE(27), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -43225,75 +43171,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(28)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [28] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5286), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5328), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), [sym_comment] = STATE(28), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -43357,75 +43303,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(29)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [29] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5168), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5241), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), [sym_comment] = STATE(29), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -43467,7 +43413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [anon_sym_RPAREN2] = ACTIONS(357), + [anon_sym_RPAREN2] = ACTIONS(353), [aux_sym__val_number_decimal_token1] = ACTIONS(341), [aux_sym__val_number_decimal_token2] = ACTIONS(343), [aux_sym__val_number_decimal_token3] = ACTIONS(345), @@ -43489,75 +43435,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(30)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [30] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5141), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5162), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), [sym_comment] = STATE(30), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -43590,7 +43536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(359), + [anon_sym_RPAREN] = ACTIONS(357), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), @@ -43599,7 +43545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [anon_sym_RPAREN2] = ACTIONS(361), + [anon_sym_RPAREN2] = ACTIONS(359), [aux_sym__val_number_decimal_token1] = ACTIONS(341), [aux_sym__val_number_decimal_token2] = ACTIONS(343), [aux_sym__val_number_decimal_token3] = ACTIONS(345), @@ -43621,75 +43567,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(31)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [31] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5347), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5362), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), [sym_comment] = STATE(31), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -43722,7 +43668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(363), + [anon_sym_RPAREN] = ACTIONS(361), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), @@ -43731,7 +43677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [anon_sym_RPAREN2] = ACTIONS(365), + [anon_sym_RPAREN2] = ACTIONS(339), [aux_sym__val_number_decimal_token1] = ACTIONS(341), [aux_sym__val_number_decimal_token2] = ACTIONS(343), [aux_sym__val_number_decimal_token3] = ACTIONS(345), @@ -43753,75 +43699,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(32)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [32] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5480), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5232), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), [sym_comment] = STATE(32), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -43854,7 +43800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(367), + [anon_sym_RPAREN] = ACTIONS(363), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), @@ -43863,7 +43809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [anon_sym_RPAREN2] = ACTIONS(369), + [anon_sym_RPAREN2] = ACTIONS(365), [aux_sym__val_number_decimal_token1] = ACTIONS(341), [aux_sym__val_number_decimal_token2] = ACTIONS(343), [aux_sym__val_number_decimal_token3] = ACTIONS(345), @@ -43885,75 +43831,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(33)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [33] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5359), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5331), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), [sym_comment] = STATE(33), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -43986,7 +43932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(371), + [anon_sym_RPAREN] = ACTIONS(367), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), @@ -43995,7 +43941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [anon_sym_RPAREN2] = ACTIONS(357), + [anon_sym_RPAREN2] = ACTIONS(369), [aux_sym__val_number_decimal_token1] = ACTIONS(341), [aux_sym__val_number_decimal_token2] = ACTIONS(343), [aux_sym__val_number_decimal_token3] = ACTIONS(345), @@ -44017,75 +43963,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(34)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [34] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5237), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5390), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), [sym_comment] = STATE(34), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -44118,7 +44064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(373), + [anon_sym_RPAREN] = ACTIONS(371), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), @@ -44127,7 +44073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [anon_sym_RPAREN2] = ACTIONS(339), + [anon_sym_RPAREN2] = ACTIONS(373), [aux_sym__val_number_decimal_token1] = ACTIONS(341), [aux_sym__val_number_decimal_token2] = ACTIONS(343), [aux_sym__val_number_decimal_token3] = ACTIONS(345), @@ -44149,75 +44095,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(35)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [35] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5311), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5196), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), [sym_comment] = STATE(35), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -44280,75 +44226,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(36)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5279), - [sym_cmd_identifier] = STATE(2920), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), - [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), + [36] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5143), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), [sym_comment] = STATE(36), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(377), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [37] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5200), + [sym_cmd_identifier] = STATE(2877), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(37), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(245), [anon_sym_alias] = ACTIONS(247), [anon_sym_let] = ACTIONS(249), @@ -44384,7 +44461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(377), + [anon_sym_RBRACE] = ACTIONS(379), [anon_sym_DOT_DOT] = ACTIONS(171), [anon_sym_where] = ACTIONS(173), [aux_sym_expr_unary_token1] = ACTIONS(175), @@ -44411,75 +44488,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(37)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [38] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5391), + [sym_cmd_identifier] = STATE(2877), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(38), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [39] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5322), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(37), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5151), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(39), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -44512,7 +44720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(383), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), @@ -44542,75 +44750,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(38)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [40] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5405), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(38), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5334), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(40), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -44643,7 +44851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(381), + [anon_sym_RPAREN] = ACTIONS(385), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), @@ -44673,75 +44881,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(39)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5383), - [sym_cmd_identifier] = STATE(2920), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [41] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5365), + [sym_cmd_identifier] = STATE(2877), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(39), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(41), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(245), [anon_sym_alias] = ACTIONS(247), [anon_sym_let] = ACTIONS(249), @@ -44777,7 +44985,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(383), + [anon_sym_RBRACE] = ACTIONS(387), [anon_sym_DOT_DOT] = ACTIONS(171), [anon_sym_where] = ACTIONS(173), [aux_sym_expr_unary_token1] = ACTIONS(175), @@ -44804,75 +45012,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(40)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [42] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5388), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(40), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5363), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(42), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -44905,7 +45113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(385), + [anon_sym_RPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), @@ -44935,206 +45143,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(41)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5226), - [sym_cmd_identifier] = STATE(2920), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), - [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(41), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), - [anon_sym_export] = ACTIONS(245), - [anon_sym_alias] = ACTIONS(247), - [anon_sym_let] = ACTIONS(249), - [anon_sym_mut] = ACTIONS(251), - [anon_sym_const] = ACTIONS(253), - [aux_sym_cmd_identifier_token1] = ACTIONS(255), - [anon_sym_def] = ACTIONS(257), - [anon_sym_use] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_for] = ACTIONS(267), - [anon_sym_loop] = ACTIONS(269), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(273), - [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(277), - [anon_sym_catch] = ACTIONS(275), - [anon_sym_finally] = ACTIONS(275), - [anon_sym_match] = ACTIONS(279), - [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(283), - [anon_sym_false] = ACTIONS(283), - [anon_sym_null] = ACTIONS(285), - [aux_sym_cmd_identifier_token3] = ACTIONS(287), - [aux_sym_cmd_identifier_token4] = ACTIONS(287), - [aux_sym_cmd_identifier_token5] = ACTIONS(287), - [sym__newline] = ACTIONS(155), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(217), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_where] = ACTIONS(173), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(181), - [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(295), - [aux_sym__val_number_decimal_token2] = ACTIONS(297), - [aux_sym__val_number_decimal_token3] = ACTIONS(299), - [aux_sym__val_number_decimal_token4] = ACTIONS(299), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(213), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(42)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5479), - [sym_cmd_identifier] = STATE(2920), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [43] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5356), + [sym_cmd_identifier] = STATE(2877), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(42), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(43), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(245), [anon_sym_alias] = ACTIONS(247), [anon_sym_let] = ACTIONS(249), @@ -45170,7 +45247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(391), [anon_sym_DOT_DOT] = ACTIONS(171), [anon_sym_where] = ACTIONS(173), [aux_sym_expr_unary_token1] = ACTIONS(175), @@ -45197,75 +45274,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(43)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [44] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5101), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(43), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5394), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(44), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -45298,7 +45375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(391), + [anon_sym_RPAREN] = ACTIONS(393), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), @@ -45328,75 +45405,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(44)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [45] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5236), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(44), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5331), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(45), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -45429,7 +45506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(393), + [anon_sym_RPAREN] = ACTIONS(395), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), @@ -45459,75 +45536,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(45)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5293), - [sym_cmd_identifier] = STATE(2920), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [46] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5261), + [sym_cmd_identifier] = STATE(2877), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(45), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(46), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(245), [anon_sym_alias] = ACTIONS(247), [anon_sym_let] = ACTIONS(249), @@ -45563,7 +45640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(397), [anon_sym_DOT_DOT] = ACTIONS(171), [anon_sym_where] = ACTIONS(173), [aux_sym_expr_unary_token1] = ACTIONS(175), @@ -45590,206 +45667,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(46)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), - [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4928), - [sym_decl_export] = STATE(4928), - [sym_decl_extern] = STATE(4928), - [sym_decl_module] = STATE(4928), - [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), - [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5141), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(46), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), - [anon_sym_export] = ACTIONS(321), - [anon_sym_alias] = ACTIONS(323), - [anon_sym_let] = ACTIONS(325), - [anon_sym_mut] = ACTIONS(327), - [anon_sym_const] = ACTIONS(329), - [aux_sym_cmd_identifier_token1] = ACTIONS(255), - [anon_sym_def] = ACTIONS(257), - [anon_sym_use] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_for] = ACTIONS(267), - [anon_sym_loop] = ACTIONS(269), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(331), - [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(333), - [anon_sym_catch] = ACTIONS(275), - [anon_sym_finally] = ACTIONS(275), - [anon_sym_match] = ACTIONS(279), - [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(283), - [anon_sym_false] = ACTIONS(283), - [anon_sym_null] = ACTIONS(285), - [aux_sym_cmd_identifier_token3] = ACTIONS(287), - [aux_sym_cmd_identifier_token4] = ACTIONS(287), - [aux_sym_cmd_identifier_token5] = ACTIONS(287), - [sym__newline] = ACTIONS(155), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(397), - [anon_sym_DOLLAR] = ACTIONS(217), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_where] = ACTIONS(337), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(181), - [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(341), - [aux_sym__val_number_decimal_token2] = ACTIONS(343), - [aux_sym__val_number_decimal_token3] = ACTIONS(345), - [aux_sym__val_number_decimal_token4] = ACTIONS(345), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(349), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(47)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [47] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5234), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5241), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), [sym_comment] = STATE(47), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -45852,75 +45798,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(48)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5277), - [sym_cmd_identifier] = STATE(2920), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [48] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5227), + [sym_cmd_identifier] = STATE(2877), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(48), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(245), [anon_sym_alias] = ACTIONS(247), [anon_sym_let] = ACTIONS(249), @@ -45983,75 +45929,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(49)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [49] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5476), + [sym_cmd_identifier] = STATE(2877), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(49), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [50] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5280), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(49), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5362), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(50), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -46084,7 +46161,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(403), + [anon_sym_RPAREN] = ACTIONS(405), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), @@ -46114,80 +46191,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(50)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5482), - [sym_cmd_identifier] = STATE(2920), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), - [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), + [51] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5219), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(50), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), - [anon_sym_export] = ACTIONS(245), - [anon_sym_alias] = ACTIONS(247), - [anon_sym_let] = ACTIONS(249), - [anon_sym_mut] = ACTIONS(251), - [anon_sym_const] = ACTIONS(253), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(51), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), [aux_sym_cmd_identifier_token1] = ACTIONS(255), [anon_sym_def] = ACTIONS(257), [anon_sym_use] = ACTIONS(259), @@ -46197,9 +46274,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(267), [anon_sym_loop] = ACTIONS(269), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(277), + [anon_sym_try] = ACTIONS(333), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(279), @@ -46215,19 +46292,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(407), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(405), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_where] = ACTIONS(173), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(295), - [aux_sym__val_number_decimal_token2] = ACTIONS(297), - [aux_sym__val_number_decimal_token3] = ACTIONS(299), - [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -46240,80 +46317,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(51)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [52] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5359), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(51), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5182), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(52), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -46346,7 +46423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(407), + [anon_sym_RPAREN] = ACTIONS(409), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), @@ -46376,76 +46453,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(52)] = { - [sym__block_body_statement] = STATE(4410), - [sym__declaration] = STATE(4682), - [sym_decl_alias] = STATE(4683), - [sym_stmt_let] = STATE(4686), - [sym_stmt_mut] = STATE(4686), - [sym_stmt_const] = STATE(4686), - [sym_assignment] = STATE(3457), - [sym__mutable_assignment_pattern] = STATE(3458), - [sym__statement] = STATE(4682), - [sym_pipeline] = STATE(4686), - [sym__block_body] = STATE(5470), - [sym_cmd_identifier] = STATE(2973), - [sym_attribute_list] = STATE(4871), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4683), - [sym_decl_export] = STATE(4683), - [sym_decl_extern] = STATE(4683), - [sym_decl_module] = STATE(4683), - [sym_decl_use] = STATE(4683), - [sym__ctrl_statement] = STATE(4686), - [sym__ctrl_expression] = STATE(3457), - [sym_ctrl_for] = STATE(4696), - [sym_ctrl_loop] = STATE(4696), - [sym_ctrl_while] = STATE(4696), - [sym_ctrl_if] = STATE(3465), - [sym_ctrl_match] = STATE(3465), - [sym_ctrl_try] = STATE(3465), - [sym__stmt_let_shortcut] = STATE(3467), - [sym_pipe_element] = STATE(3140), - [sym_where_command] = STATE(3457), + [53] = { + [sym__block_body_statement] = STATE(4404), + [sym__declaration] = STATE(4750), + [sym_decl_alias] = STATE(4751), + [sym_stmt_let] = STATE(4752), + [sym_stmt_mut] = STATE(4752), + [sym_stmt_const] = STATE(4752), + [sym_assignment] = STATE(3423), + [sym__mutable_assignment_pattern] = STATE(3434), + [sym__statement] = STATE(4750), + [sym_pipeline] = STATE(4752), + [sym__block_body] = STATE(5291), + [sym_cmd_identifier] = STATE(3036), + [sym_attribute_list] = STATE(4760), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4751), + [sym_decl_export] = STATE(4751), + [sym_decl_extern] = STATE(4751), + [sym_decl_module] = STATE(4751), + [sym_decl_use] = STATE(4751), + [sym__ctrl_statement] = STATE(4752), + [sym__ctrl_expression] = STATE(3423), + [sym_ctrl_for] = STATE(4784), + [sym_ctrl_loop] = STATE(4784), + [sym_ctrl_while] = STATE(4784), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3468), + [sym_pipe_element] = STATE(3055), + [sym_where_command] = STATE(3423), [sym__expression] = STATE(2307), - [sym_expr_unary] = STATE(1303), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1303), - [sym__expr_binary_expression] = STATE(2265), - [sym_expr_parenthesized] = STATE(934), - [sym_val_range] = STATE(1303), - [sym__value] = STATE(1303), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1369), - [sym_val_variable] = STATE(470), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), + [sym_expr_unary] = STATE(1343), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1343), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(979), + [sym_val_range] = STATE(1343), + [sym__value] = STATE(1343), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1338), + [sym_val_variable] = STATE(472), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3457), - [sym_comment] = STATE(52), - [aux_sym_pipeline_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(78), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3423), + [sym_comment] = STATE(53), + [aux_sym_pipeline_repeat1] = STATE(172), + [aux_sym__block_body_repeat1] = STATE(79), [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(287), - [ts_builtin_sym_end] = ACTIONS(409), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(278), + [ts_builtin_sym_end] = ACTIONS(411), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -46507,75 +46584,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(53)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [54] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5168), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(53), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5108), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(54), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -46608,7 +46685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(411), + [anon_sym_RPAREN] = ACTIONS(413), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), @@ -46638,75 +46715,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(54)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5368), - [sym_cmd_identifier] = STATE(2920), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [55] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5473), + [sym_cmd_identifier] = STATE(2877), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(54), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(55), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(245), [anon_sym_alias] = ACTIONS(247), [anon_sym_let] = ACTIONS(249), @@ -46742,7 +46819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(413), + [anon_sym_RBRACE] = ACTIONS(415), [anon_sym_DOT_DOT] = ACTIONS(171), [anon_sym_where] = ACTIONS(173), [aux_sym_expr_unary_token1] = ACTIONS(175), @@ -46769,75 +46846,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(55)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [56] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5372), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(55), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5284), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(56), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -46870,7 +46947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(415), + [anon_sym_RPAREN] = ACTIONS(417), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), @@ -46900,75 +46977,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(56)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5404), - [sym_cmd_identifier] = STATE(2920), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [57] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5189), + [sym_cmd_identifier] = STATE(2877), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(56), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(57), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(245), [anon_sym_alias] = ACTIONS(247), [anon_sym_let] = ACTIONS(249), @@ -47004,7 +47081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(417), + [anon_sym_RBRACE] = ACTIONS(419), [anon_sym_DOT_DOT] = ACTIONS(171), [anon_sym_where] = ACTIONS(173), [aux_sym_expr_unary_token1] = ACTIONS(175), @@ -47031,75 +47108,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(57)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [58] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5276), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(57), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5232), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(58), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -47132,7 +47209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_RPAREN] = ACTIONS(421), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), @@ -47162,75 +47239,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(58)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5224), - [sym_cmd_identifier] = STATE(2920), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [59] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5253), + [sym_cmd_identifier] = STATE(2877), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(58), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(59), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(245), [anon_sym_alias] = ACTIONS(247), [anon_sym_let] = ACTIONS(249), @@ -47266,7 +47343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(423), [anon_sym_DOT_DOT] = ACTIONS(171), [anon_sym_where] = ACTIONS(173), [aux_sym_expr_unary_token1] = ACTIONS(175), @@ -47293,75 +47370,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(59)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [60] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5225), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(59), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5358), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(60), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -47394,7 +47471,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(423), + [anon_sym_RPAREN] = ACTIONS(425), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), @@ -47424,75 +47501,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(60)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5232), - [sym_cmd_identifier] = STATE(2920), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [61] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5259), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(61), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [62] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5402), + [sym_cmd_identifier] = STATE(2877), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(60), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(62), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(245), [anon_sym_alias] = ACTIONS(247), [anon_sym_let] = ACTIONS(249), @@ -47528,7 +47736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(425), + [anon_sym_RBRACE] = ACTIONS(429), [anon_sym_DOT_DOT] = ACTIONS(171), [anon_sym_where] = ACTIONS(173), [aux_sym_expr_unary_token1] = ACTIONS(175), @@ -47555,75 +47763,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(61)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [63] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5311), + [sym_cmd_identifier] = STATE(2877), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(63), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(431), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [64] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5347), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(61), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5309), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(64), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -47656,7 +47995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(433), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), @@ -47686,80 +48025,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(62)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5305), - [sym_cmd_identifier] = STATE(2920), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), - [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), + [65] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5250), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(62), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), - [anon_sym_export] = ACTIONS(245), - [anon_sym_alias] = ACTIONS(247), - [anon_sym_let] = ACTIONS(249), - [anon_sym_mut] = ACTIONS(251), - [anon_sym_const] = ACTIONS(253), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(65), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), [aux_sym_cmd_identifier_token1] = ACTIONS(255), [anon_sym_def] = ACTIONS(257), [anon_sym_use] = ACTIONS(259), @@ -47769,9 +48108,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(267), [anon_sym_loop] = ACTIONS(269), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(277), + [anon_sym_try] = ACTIONS(333), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(279), @@ -47787,19 +48126,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(435), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(429), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_where] = ACTIONS(173), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(295), - [aux_sym__val_number_decimal_token2] = ACTIONS(297), - [aux_sym__val_number_decimal_token3] = ACTIONS(299), - [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -47812,80 +48151,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(63)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [66] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5307), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(63), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5125), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(66), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(437), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [67] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5134), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(67), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -47918,7 +48388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), @@ -47948,75 +48418,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(64)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5313), - [sym_cmd_identifier] = STATE(2920), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [68] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5306), + [sym_cmd_identifier] = STATE(2877), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(64), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(68), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(245), [anon_sym_alias] = ACTIONS(247), [anon_sym_let] = ACTIONS(249), @@ -48052,7 +48522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(433), + [anon_sym_RBRACE] = ACTIONS(441), [anon_sym_DOT_DOT] = ACTIONS(171), [anon_sym_where] = ACTIONS(173), [aux_sym_expr_unary_token1] = ACTIONS(175), @@ -48079,75 +48549,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(65)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5384), - [sym_cmd_identifier] = STATE(2920), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [69] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5165), + [sym_cmd_identifier] = STATE(2877), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(65), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(69), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(245), [anon_sym_alias] = ACTIONS(247), [anon_sym_let] = ACTIONS(249), @@ -48183,7 +48653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(435), + [anon_sym_RBRACE] = ACTIONS(443), [anon_sym_DOT_DOT] = ACTIONS(171), [anon_sym_where] = ACTIONS(173), [aux_sym_expr_unary_token1] = ACTIONS(175), @@ -48210,75 +48680,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(66)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [70] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5385), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(66), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5328), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(70), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -48311,7 +48781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(437), + [anon_sym_RPAREN] = ACTIONS(445), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), @@ -48341,75 +48811,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(67)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5397), - [sym_cmd_identifier] = STATE(2920), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [71] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5277), + [sym_cmd_identifier] = STATE(2877), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(67), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(71), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(245), [anon_sym_alias] = ACTIONS(247), [anon_sym_let] = ACTIONS(249), @@ -48445,7 +48915,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(447), [anon_sym_DOT_DOT] = ACTIONS(171), [anon_sym_where] = ACTIONS(173), [aux_sym_expr_unary_token1] = ACTIONS(175), @@ -48472,80 +48942,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(68)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), - [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4928), - [sym_decl_export] = STATE(4928), - [sym_decl_extern] = STATE(4928), - [sym_decl_module] = STATE(4928), - [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), - [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5498), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(68), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), - [anon_sym_export] = ACTIONS(321), - [anon_sym_alias] = ACTIONS(323), - [anon_sym_let] = ACTIONS(325), - [anon_sym_mut] = ACTIONS(327), - [anon_sym_const] = ACTIONS(329), + [72] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5236), + [sym_cmd_identifier] = STATE(2877), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(72), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), + [anon_sym_export] = ACTIONS(245), + [anon_sym_alias] = ACTIONS(247), + [anon_sym_let] = ACTIONS(249), + [anon_sym_mut] = ACTIONS(251), + [anon_sym_const] = ACTIONS(253), [aux_sym_cmd_identifier_token1] = ACTIONS(255), [anon_sym_def] = ACTIONS(257), [anon_sym_use] = ACTIONS(259), @@ -48555,9 +49025,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(267), [anon_sym_loop] = ACTIONS(269), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(331), + [anon_sym_if] = ACTIONS(273), [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(333), + [anon_sym_try] = ACTIONS(277), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(279), @@ -48573,19 +49043,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(441), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(449), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_where] = ACTIONS(337), + [anon_sym_where] = ACTIONS(173), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(341), - [aux_sym__val_number_decimal_token2] = ACTIONS(343), - [aux_sym__val_number_decimal_token3] = ACTIONS(345), - [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -48598,80 +49068,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(69)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [73] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5103), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(69), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5400), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(73), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -48704,7 +49174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(443), + [anon_sym_RPAREN] = ACTIONS(451), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), @@ -48734,75 +49204,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(70)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [74] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5119), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(70), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5230), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(74), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -48835,7 +49305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(445), + [anon_sym_RPAREN] = ACTIONS(453), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), @@ -48865,75 +49335,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(71)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [75] = { + [sym__block_body_statement_parenthesized] = STATE(3987), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5134), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(71), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym__parenthesized_body] = STATE(5403), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(75), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -48966,7 +49436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(447), + [anon_sym_RPAREN] = ACTIONS(455), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), @@ -48996,80 +49466,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(72)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), - [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4928), - [sym_decl_export] = STATE(4928), - [sym_decl_extern] = STATE(4928), - [sym_decl_module] = STATE(4928), - [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), - [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5237), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(72), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), - [anon_sym_export] = ACTIONS(321), - [anon_sym_alias] = ACTIONS(323), - [anon_sym_let] = ACTIONS(325), - [anon_sym_mut] = ACTIONS(327), - [anon_sym_const] = ACTIONS(329), + [76] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5106), + [sym_cmd_identifier] = STATE(2877), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(461), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(277), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), [aux_sym_cmd_identifier_token1] = ACTIONS(255), [anon_sym_def] = ACTIONS(257), [anon_sym_use] = ACTIONS(259), @@ -49079,9 +49549,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(267), [anon_sym_loop] = ACTIONS(269), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(331), + [anon_sym_if] = ACTIONS(467), [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(333), + [anon_sym_try] = ACTIONS(277), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(279), @@ -49097,12 +49567,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(449), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_where] = ACTIONS(337), + [anon_sym_where] = ACTIONS(173), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), @@ -49122,80 +49591,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(73)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5520), - [sym_cmd_identifier] = STATE(2920), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [77] = { + [sym__block_body_statement] = STATE(4359), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym_cmd_identifier] = STATE(2877), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(73), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(77), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(1309), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(245), [anon_sym_alias] = ACTIONS(247), [anon_sym_let] = ACTIONS(249), @@ -49231,7 +49699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(451), + [anon_sym_RBRACE] = ACTIONS(469), [anon_sym_DOT_DOT] = ACTIONS(171), [anon_sym_where] = ACTIONS(173), [aux_sym_expr_unary_token1] = ACTIONS(175), @@ -49258,79 +49726,339 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(74)] = { - [sym__block_body_statement] = STATE(4235), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym_cmd_identifier] = STATE(2920), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [78] = { + [sym__block_body_statement_parenthesized] = STATE(4074), + [sym__declaration_parenthesized] = STATE(4927), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(78), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym__block_body_repeat1] = STATE(1309), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(86), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(257), + [anon_sym_use] = ACTIONS(259), + [anon_sym_export_DASHenv] = ACTIONS(261), + [anon_sym_extern] = ACTIONS(263), + [anon_sym_module] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_loop] = ACTIONS(269), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [sym__newline] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [79] = { + [sym__block_body_statement] = STATE(4484), + [sym__declaration] = STATE(4750), + [sym_decl_alias] = STATE(4751), + [sym_stmt_let] = STATE(4752), + [sym_stmt_mut] = STATE(4752), + [sym_stmt_const] = STATE(4752), + [sym_assignment] = STATE(3423), + [sym__mutable_assignment_pattern] = STATE(3434), + [sym__statement] = STATE(4750), + [sym_pipeline] = STATE(4752), + [sym_cmd_identifier] = STATE(3036), + [sym_attribute_list] = STATE(4760), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4751), + [sym_decl_export] = STATE(4751), + [sym_decl_extern] = STATE(4751), + [sym_decl_module] = STATE(4751), + [sym_decl_use] = STATE(4751), + [sym__ctrl_statement] = STATE(4752), + [sym__ctrl_expression] = STATE(3423), + [sym_ctrl_for] = STATE(4784), + [sym_ctrl_loop] = STATE(4784), + [sym_ctrl_while] = STATE(4784), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3468), + [sym_pipe_element] = STATE(3055), + [sym_where_command] = STATE(3423), + [sym__expression] = STATE(2307), + [sym_expr_unary] = STATE(1343), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1343), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(979), + [sym_val_range] = STATE(1343), + [sym__value] = STATE(1343), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1338), + [sym_val_variable] = STATE(472), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3423), + [sym_comment] = STATE(79), + [aux_sym_pipeline_repeat1] = STATE(172), + [aux_sym__block_body_repeat1] = STATE(1375), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(278), + [ts_builtin_sym_end] = ACTIONS(469), + [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_PERCENT] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), + }, + [80] = { + [sym__block_body_statement] = STATE(4359), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym_cmd_identifier] = STATE(2877), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(449), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(74), - [aux_sym_pipeline_repeat1] = STATE(174), - [aux_sym__block_body_repeat1] = STATE(1316), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(280), - [anon_sym_export] = ACTIONS(453), - [anon_sym_alias] = ACTIONS(455), - [anon_sym_let] = ACTIONS(457), - [anon_sym_mut] = ACTIONS(459), - [anon_sym_const] = ACTIONS(461), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(461), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(80), + [aux_sym_pipeline_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(1309), + [aux_sym__block_body_repeat2] = STATE(82), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(277), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), [aux_sym_cmd_identifier_token1] = ACTIONS(255), [anon_sym_def] = ACTIONS(257), [anon_sym_use] = ACTIONS(259), @@ -49340,7 +50068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(267), [anon_sym_loop] = ACTIONS(269), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(463), + [anon_sym_if] = ACTIONS(467), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(277), [anon_sym_catch] = ACTIONS(275), @@ -49358,7 +50086,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(469), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), @@ -49388,80 +50116,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(75)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), - [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4928), - [sym_decl_export] = STATE(4928), - [sym_decl_extern] = STATE(4928), - [sym_decl_module] = STATE(4928), - [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), - [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5495), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(75), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), - [anon_sym_export] = ACTIONS(321), - [anon_sym_alias] = ACTIONS(323), - [anon_sym_let] = ACTIONS(325), - [anon_sym_mut] = ACTIONS(327), - [anon_sym_const] = ACTIONS(329), + [81] = { + [sym__block_body_statement] = STATE(4353), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym__block_body] = STATE(5381), + [sym_cmd_identifier] = STATE(2877), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(461), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(81), + [aux_sym_pipeline_repeat1] = STATE(177), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(277), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), [aux_sym_cmd_identifier_token1] = ACTIONS(255), [anon_sym_def] = ACTIONS(257), [anon_sym_use] = ACTIONS(259), @@ -49471,9 +50199,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(267), [anon_sym_loop] = ACTIONS(269), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(331), + [anon_sym_if] = ACTIONS(467), [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(333), + [anon_sym_try] = ACTIONS(277), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(279), @@ -49493,7 +50221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_where] = ACTIONS(337), + [anon_sym_where] = ACTIONS(173), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), @@ -49513,84 +50241,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(76)] = { - [sym__block_body_statement_parenthesized] = STATE(3986), - [sym__declaration_parenthesized] = STATE(4882), - [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4928), - [sym_decl_export] = STATE(4928), - [sym_decl_extern] = STATE(4928), - [sym_decl_module] = STATE(4928), - [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), - [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(76), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(1316), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(85), - [anon_sym_export] = ACTIONS(321), - [anon_sym_alias] = ACTIONS(323), - [anon_sym_let] = ACTIONS(325), - [anon_sym_mut] = ACTIONS(327), - [anon_sym_const] = ACTIONS(329), + [82] = { + [sym__block_body_statement] = STATE(4280), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym_cmd_identifier] = STATE(2877), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(461), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(82), + [aux_sym_pipeline_repeat1] = STATE(177), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(277), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), [aux_sym_cmd_identifier_token1] = ACTIONS(255), [anon_sym_def] = ACTIONS(257), [anon_sym_use] = ACTIONS(259), @@ -49600,9 +50327,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(267), [anon_sym_loop] = ACTIONS(269), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(331), + [anon_sym_if] = ACTIONS(467), [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(333), + [anon_sym_try] = ACTIONS(277), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(279), @@ -49613,17 +50340,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(287), [aux_sym_cmd_identifier_token4] = ACTIONS(287), [aux_sym_cmd_identifier_token5] = ACTIONS(287), - [sym__newline] = ACTIONS(155), - [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(467), [anon_sym_DOLLAR] = ACTIONS(217), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_where] = ACTIONS(337), + [anon_sym_where] = ACTIONS(173), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), @@ -49643,85 +50367,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(77)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5272), - [sym_cmd_identifier] = STATE(2920), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [83] = { + [sym__block_body_statement] = STATE(4359), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym_cmd_identifier] = STATE(2877), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(449), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(77), - [aux_sym_pipeline_repeat1] = STATE(174), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym__block_body_repeat2] = STATE(86), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(280), - [anon_sym_export] = ACTIONS(453), - [anon_sym_alias] = ACTIONS(455), - [anon_sym_let] = ACTIONS(457), - [anon_sym_mut] = ACTIONS(459), - [anon_sym_const] = ACTIONS(461), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(461), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(83), + [aux_sym_pipeline_repeat1] = STATE(177), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(277), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), [aux_sym_cmd_identifier_token1] = ACTIONS(255), [anon_sym_def] = ACTIONS(257), [anon_sym_use] = ACTIONS(259), @@ -49731,7 +50453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(267), [anon_sym_loop] = ACTIONS(269), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(463), + [anon_sym_if] = ACTIONS(467), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(277), [anon_sym_catch] = ACTIONS(275), @@ -49744,8 +50466,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(287), [aux_sym_cmd_identifier_token4] = ACTIONS(287), [aux_sym_cmd_identifier_token5] = ACTIONS(287), - [sym__newline] = ACTIONS(155), - [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), @@ -49778,75 +50498,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(78)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4682), - [sym_decl_alias] = STATE(4683), - [sym_stmt_let] = STATE(4686), - [sym_stmt_mut] = STATE(4686), - [sym_stmt_const] = STATE(4686), - [sym_assignment] = STATE(3457), - [sym__mutable_assignment_pattern] = STATE(3458), - [sym__statement] = STATE(4682), - [sym_pipeline] = STATE(4686), - [sym_cmd_identifier] = STATE(2973), - [sym_attribute_list] = STATE(4871), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4683), - [sym_decl_export] = STATE(4683), - [sym_decl_extern] = STATE(4683), - [sym_decl_module] = STATE(4683), - [sym_decl_use] = STATE(4683), - [sym__ctrl_statement] = STATE(4686), - [sym__ctrl_expression] = STATE(3457), - [sym_ctrl_for] = STATE(4696), - [sym_ctrl_loop] = STATE(4696), - [sym_ctrl_while] = STATE(4696), - [sym_ctrl_if] = STATE(3465), - [sym_ctrl_match] = STATE(3465), - [sym_ctrl_try] = STATE(3465), - [sym__stmt_let_shortcut] = STATE(3467), - [sym_pipe_element] = STATE(3140), - [sym_where_command] = STATE(3457), + [84] = { + [sym__block_body_statement] = STATE(4484), + [sym__declaration] = STATE(4750), + [sym_decl_alias] = STATE(4751), + [sym_stmt_let] = STATE(4752), + [sym_stmt_mut] = STATE(4752), + [sym_stmt_const] = STATE(4752), + [sym_assignment] = STATE(3423), + [sym__mutable_assignment_pattern] = STATE(3434), + [sym__statement] = STATE(4750), + [sym_pipeline] = STATE(4752), + [sym_cmd_identifier] = STATE(3036), + [sym_attribute_list] = STATE(4760), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4751), + [sym_decl_export] = STATE(4751), + [sym_decl_extern] = STATE(4751), + [sym_decl_module] = STATE(4751), + [sym_decl_use] = STATE(4751), + [sym__ctrl_statement] = STATE(4752), + [sym__ctrl_expression] = STATE(3423), + [sym_ctrl_for] = STATE(4784), + [sym_ctrl_loop] = STATE(4784), + [sym_ctrl_while] = STATE(4784), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3468), + [sym_pipe_element] = STATE(3055), + [sym_where_command] = STATE(3423), [sym__expression] = STATE(2307), - [sym_expr_unary] = STATE(1303), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1303), - [sym__expr_binary_expression] = STATE(2265), - [sym_expr_parenthesized] = STATE(934), - [sym_val_range] = STATE(1303), - [sym__value] = STATE(1303), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1369), - [sym_val_variable] = STATE(470), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), + [sym_expr_unary] = STATE(1343), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1343), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(979), + [sym_val_range] = STATE(1343), + [sym__value] = STATE(1343), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1338), + [sym_val_variable] = STATE(472), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3457), - [sym_comment] = STATE(78), - [aux_sym_pipeline_repeat1] = STATE(181), - [aux_sym__block_body_repeat1] = STATE(1382), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3423), + [sym_comment] = STATE(84), + [aux_sym_pipeline_repeat1] = STATE(172), [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(287), - [ts_builtin_sym_end] = ACTIONS(465), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(278), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -49874,8 +50592,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(51), [aux_sym_cmd_identifier_token4] = ACTIONS(51), [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [sym__newline] = ACTIONS(55), - [anon_sym_SEMI] = ACTIONS(55), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), @@ -49908,205 +50624,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(79)] = { - [sym__block_body_statement] = STATE(4235), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym_cmd_identifier] = STATE(2920), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), - [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(79), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat1] = STATE(1316), - [aux_sym__block_body_repeat2] = STATE(90), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), - [anon_sym_export] = ACTIONS(245), - [anon_sym_alias] = ACTIONS(247), - [anon_sym_let] = ACTIONS(249), - [anon_sym_mut] = ACTIONS(251), - [anon_sym_const] = ACTIONS(253), - [aux_sym_cmd_identifier_token1] = ACTIONS(255), - [anon_sym_def] = ACTIONS(257), - [anon_sym_use] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_for] = ACTIONS(267), - [anon_sym_loop] = ACTIONS(269), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(273), - [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(277), - [anon_sym_catch] = ACTIONS(275), - [anon_sym_finally] = ACTIONS(275), - [anon_sym_match] = ACTIONS(279), - [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(283), - [anon_sym_false] = ACTIONS(283), - [anon_sym_null] = ACTIONS(285), - [aux_sym_cmd_identifier_token3] = ACTIONS(287), - [aux_sym_cmd_identifier_token4] = ACTIONS(287), - [aux_sym_cmd_identifier_token5] = ACTIONS(287), - [sym__newline] = ACTIONS(155), - [anon_sym_SEMI] = ACTIONS(155), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(217), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(465), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_where] = ACTIONS(173), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(181), - [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(295), - [aux_sym__val_number_decimal_token2] = ACTIONS(297), - [aux_sym__val_number_decimal_token3] = ACTIONS(299), - [aux_sym__val_number_decimal_token4] = ACTIONS(299), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(213), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(80)] = { - [sym__block_body_statement_parenthesized] = STATE(4132), - [sym__declaration_parenthesized] = STATE(4882), + [85] = { + [sym__block_body_statement_parenthesized] = STATE(4074), + [sym__declaration_parenthesized] = STATE(4927), [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), [sym_decl_def] = STATE(4928), [sym_decl_export] = STATE(4928), [sym_decl_extern] = STATE(4928), [sym_decl_module] = STATE(4928), [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym__parenthesized_body] = STATE(5410), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(80), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(85), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(89), [anon_sym_export] = ACTIONS(321), [anon_sym_alias] = ACTIONS(323), [anon_sym_let] = ACTIONS(325), @@ -50134,8 +50718,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(287), [aux_sym_cmd_identifier_token4] = ACTIONS(287), [aux_sym_cmd_identifier_token5] = ACTIONS(287), - [sym__newline] = ACTIONS(155), - [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), @@ -50168,80 +50750,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(81)] = { - [sym__block_body_statement] = STATE(4211), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym__block_body] = STATE(5475), - [sym_cmd_identifier] = STATE(2920), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), - [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(449), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(81), - [aux_sym_pipeline_repeat1] = STATE(174), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym__block_body_repeat2] = STATE(86), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(280), - [anon_sym_export] = ACTIONS(453), - [anon_sym_alias] = ACTIONS(455), - [anon_sym_let] = ACTIONS(457), - [anon_sym_mut] = ACTIONS(459), - [anon_sym_const] = ACTIONS(461), + [86] = { + [sym__block_body_statement_parenthesized] = STATE(4186), + [sym__declaration_parenthesized] = STATE(4927), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(86), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__parenthesized_body_repeat2] = STATE(89), + [anon_sym_export] = ACTIONS(321), + [anon_sym_alias] = ACTIONS(323), + [anon_sym_let] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_const] = ACTIONS(329), [aux_sym_cmd_identifier_token1] = ACTIONS(255), [anon_sym_def] = ACTIONS(257), [anon_sym_use] = ACTIONS(259), @@ -50251,9 +50831,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(267), [anon_sym_loop] = ACTIONS(269), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(463), + [anon_sym_if] = ACTIONS(331), [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(277), + [anon_sym_try] = ACTIONS(333), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(279), @@ -50264,8 +50844,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(287), [aux_sym_cmd_identifier_token4] = ACTIONS(287), [aux_sym_cmd_identifier_token5] = ACTIONS(287), - [sym__newline] = ACTIONS(155), - [anon_sym_SEMI] = ACTIONS(155), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), @@ -50273,7 +50851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_where] = ACTIONS(173), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), @@ -50293,330 +50871,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(82)] = { - [sym__block_body_statement] = STATE(4681), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym_cmd_identifier] = STATE(2920), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), - [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(485), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(152), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(82), - [aux_sym_pipeline_repeat1] = STATE(182), - [aux_sym__block_body_repeat2] = STATE(82), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(285), - [anon_sym_export] = ACTIONS(469), - [anon_sym_alias] = ACTIONS(472), - [anon_sym_let] = ACTIONS(475), - [anon_sym_mut] = ACTIONS(478), - [anon_sym_const] = ACTIONS(481), - [aux_sym_cmd_identifier_token1] = ACTIONS(484), - [anon_sym_def] = ACTIONS(487), - [anon_sym_use] = ACTIONS(490), - [anon_sym_export_DASHenv] = ACTIONS(493), - [anon_sym_extern] = ACTIONS(496), - [anon_sym_module] = ACTIONS(499), - [anon_sym_for] = ACTIONS(502), - [anon_sym_loop] = ACTIONS(505), - [anon_sym_while] = ACTIONS(508), - [anon_sym_if] = ACTIONS(511), - [anon_sym_else] = ACTIONS(514), - [anon_sym_try] = ACTIONS(517), - [anon_sym_catch] = ACTIONS(514), - [anon_sym_finally] = ACTIONS(514), - [anon_sym_match] = ACTIONS(520), - [anon_sym_in] = ACTIONS(523), - [anon_sym_true] = ACTIONS(526), - [anon_sym_false] = ACTIONS(526), - [anon_sym_null] = ACTIONS(529), - [aux_sym_cmd_identifier_token3] = ACTIONS(532), - [aux_sym_cmd_identifier_token4] = ACTIONS(532), - [aux_sym_cmd_identifier_token5] = ACTIONS(532), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_LBRACK] = ACTIONS(538), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_DOLLAR] = ACTIONS(544), - [anon_sym_DASH2] = ACTIONS(547), - [anon_sym_LBRACE] = ACTIONS(550), - [anon_sym_DOT_DOT] = ACTIONS(553), - [anon_sym_where] = ACTIONS(556), - [aux_sym_expr_unary_token1] = ACTIONS(559), - [anon_sym_DOT_DOT_EQ] = ACTIONS(562), - [anon_sym_DOT_DOT_LT] = ACTIONS(562), - [aux_sym__val_number_decimal_token1] = ACTIONS(565), - [aux_sym__val_number_decimal_token2] = ACTIONS(568), - [aux_sym__val_number_decimal_token3] = ACTIONS(571), - [aux_sym__val_number_decimal_token4] = ACTIONS(571), - [aux_sym__val_number_token1] = ACTIONS(574), - [aux_sym__val_number_token2] = ACTIONS(574), - [aux_sym__val_number_token3] = ACTIONS(574), - [anon_sym_0b] = ACTIONS(577), - [anon_sym_0o] = ACTIONS(580), - [anon_sym_0x] = ACTIONS(580), - [sym_val_date] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(586), - [anon_sym_SQUOTE] = ACTIONS(589), - [anon_sym_BQUOTE] = ACTIONS(592), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(595), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(598), - [anon_sym_CARET] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(604), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(607), - }, - [STATE(83)] = { - [sym__block_body_statement_parenthesized] = STATE(4393), - [sym__declaration_parenthesized] = STATE(4882), - [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4928), - [sym_decl_export] = STATE(4928), - [sym_decl_extern] = STATE(4928), - [sym_decl_module] = STATE(4928), - [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), - [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(494), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(152), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(83), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(179), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(610), - [anon_sym_alias] = ACTIONS(613), - [anon_sym_let] = ACTIONS(616), - [anon_sym_mut] = ACTIONS(619), - [anon_sym_const] = ACTIONS(622), - [aux_sym_cmd_identifier_token1] = ACTIONS(625), - [anon_sym_def] = ACTIONS(628), - [anon_sym_use] = ACTIONS(631), - [anon_sym_export_DASHenv] = ACTIONS(634), - [anon_sym_extern] = ACTIONS(637), - [anon_sym_module] = ACTIONS(640), - [anon_sym_for] = ACTIONS(643), - [anon_sym_loop] = ACTIONS(646), - [anon_sym_while] = ACTIONS(649), - [anon_sym_if] = ACTIONS(652), - [anon_sym_else] = ACTIONS(655), - [anon_sym_try] = ACTIONS(658), - [anon_sym_catch] = ACTIONS(655), - [anon_sym_finally] = ACTIONS(655), - [anon_sym_match] = ACTIONS(661), - [anon_sym_in] = ACTIONS(664), - [anon_sym_true] = ACTIONS(667), - [anon_sym_false] = ACTIONS(667), - [anon_sym_null] = ACTIONS(670), - [aux_sym_cmd_identifier_token3] = ACTIONS(673), - [aux_sym_cmd_identifier_token4] = ACTIONS(673), - [aux_sym_cmd_identifier_token5] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(679), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_DOLLAR] = ACTIONS(685), - [anon_sym_DASH2] = ACTIONS(688), - [anon_sym_LBRACE] = ACTIONS(691), - [anon_sym_DOT_DOT] = ACTIONS(694), - [anon_sym_where] = ACTIONS(697), - [aux_sym_expr_unary_token1] = ACTIONS(700), - [anon_sym_DOT_DOT_EQ] = ACTIONS(703), - [anon_sym_DOT_DOT_LT] = ACTIONS(703), - [aux_sym__val_number_decimal_token1] = ACTIONS(706), - [aux_sym__val_number_decimal_token2] = ACTIONS(709), - [aux_sym__val_number_decimal_token3] = ACTIONS(712), - [aux_sym__val_number_decimal_token4] = ACTIONS(712), - [aux_sym__val_number_token1] = ACTIONS(715), - [aux_sym__val_number_token2] = ACTIONS(715), - [aux_sym__val_number_token3] = ACTIONS(715), - [anon_sym_0b] = ACTIONS(718), - [anon_sym_0o] = ACTIONS(721), - [anon_sym_0x] = ACTIONS(721), - [sym_val_date] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(727), - [anon_sym_SQUOTE] = ACTIONS(730), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(736), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(739), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym_PERCENT] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(748), - }, - [STATE(84)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4682), - [sym_decl_alias] = STATE(4683), - [sym_stmt_let] = STATE(4686), - [sym_stmt_mut] = STATE(4686), - [sym_stmt_const] = STATE(4686), - [sym_assignment] = STATE(3457), - [sym__mutable_assignment_pattern] = STATE(3458), - [sym__statement] = STATE(4682), - [sym_pipeline] = STATE(4686), - [sym_cmd_identifier] = STATE(2973), - [sym_attribute_list] = STATE(4871), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4683), - [sym_decl_export] = STATE(4683), - [sym_decl_extern] = STATE(4683), - [sym_decl_module] = STATE(4683), - [sym_decl_use] = STATE(4683), - [sym__ctrl_statement] = STATE(4686), - [sym__ctrl_expression] = STATE(3457), - [sym_ctrl_for] = STATE(4696), - [sym_ctrl_loop] = STATE(4696), - [sym_ctrl_while] = STATE(4696), - [sym_ctrl_if] = STATE(3465), - [sym_ctrl_match] = STATE(3465), - [sym_ctrl_try] = STATE(3465), - [sym__stmt_let_shortcut] = STATE(3467), - [sym_pipe_element] = STATE(3140), - [sym_where_command] = STATE(3457), + [87] = { + [sym__block_body_statement] = STATE(4579), + [sym__declaration] = STATE(4750), + [sym_decl_alias] = STATE(4751), + [sym_stmt_let] = STATE(4752), + [sym_stmt_mut] = STATE(4752), + [sym_stmt_const] = STATE(4752), + [sym_assignment] = STATE(3423), + [sym__mutable_assignment_pattern] = STATE(3434), + [sym__statement] = STATE(4750), + [sym_pipeline] = STATE(4752), + [sym_cmd_identifier] = STATE(3036), + [sym_attribute_list] = STATE(4760), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4751), + [sym_decl_export] = STATE(4751), + [sym_decl_extern] = STATE(4751), + [sym_decl_module] = STATE(4751), + [sym_decl_use] = STATE(4751), + [sym__ctrl_statement] = STATE(4752), + [sym__ctrl_expression] = STATE(3423), + [sym_ctrl_for] = STATE(4784), + [sym_ctrl_loop] = STATE(4784), + [sym_ctrl_while] = STATE(4784), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3468), + [sym_pipe_element] = STATE(3055), + [sym_where_command] = STATE(3423), [sym__expression] = STATE(2307), - [sym_expr_unary] = STATE(1303), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1303), - [sym__expr_binary_expression] = STATE(2265), - [sym_expr_parenthesized] = STATE(934), - [sym_val_range] = STATE(1303), - [sym__value] = STATE(1303), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1369), - [sym_val_variable] = STATE(470), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), + [sym_expr_unary] = STATE(1343), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1343), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(979), + [sym_val_range] = STATE(1343), + [sym__value] = STATE(1343), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1338), + [sym_val_variable] = STATE(472), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3457), - [sym_comment] = STATE(84), - [aux_sym_pipeline_repeat1] = STATE(181), - [aux_sym__block_body_repeat2] = STATE(82), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(287), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3423), + [sym_comment] = STATE(87), + [aux_sym_pipeline_repeat1] = STATE(172), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(278), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -50676,577 +51002,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(85)] = { - [sym__block_body_statement_parenthesized] = STATE(4175), - [sym__declaration_parenthesized] = STATE(4882), - [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4928), - [sym_decl_export] = STATE(4928), - [sym_decl_extern] = STATE(4928), - [sym_decl_module] = STATE(4928), - [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), - [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(85), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(321), - [anon_sym_alias] = ACTIONS(323), - [anon_sym_let] = ACTIONS(325), - [anon_sym_mut] = ACTIONS(327), - [anon_sym_const] = ACTIONS(329), - [aux_sym_cmd_identifier_token1] = ACTIONS(255), - [anon_sym_def] = ACTIONS(257), - [anon_sym_use] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_for] = ACTIONS(267), - [anon_sym_loop] = ACTIONS(269), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(331), - [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(333), - [anon_sym_catch] = ACTIONS(275), - [anon_sym_finally] = ACTIONS(275), - [anon_sym_match] = ACTIONS(279), - [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(283), - [anon_sym_false] = ACTIONS(283), - [anon_sym_null] = ACTIONS(285), - [aux_sym_cmd_identifier_token3] = ACTIONS(287), - [aux_sym_cmd_identifier_token4] = ACTIONS(287), - [aux_sym_cmd_identifier_token5] = ACTIONS(287), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(217), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_where] = ACTIONS(337), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(181), - [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(341), - [aux_sym__val_number_decimal_token2] = ACTIONS(343), - [aux_sym__val_number_decimal_token3] = ACTIONS(345), - [aux_sym__val_number_decimal_token4] = ACTIONS(345), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(349), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(86)] = { - [sym__block_body_statement] = STATE(4235), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym_cmd_identifier] = STATE(2920), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), - [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(449), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(86), - [aux_sym_pipeline_repeat1] = STATE(174), - [aux_sym__block_body_repeat2] = STATE(82), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(280), - [anon_sym_export] = ACTIONS(453), - [anon_sym_alias] = ACTIONS(455), - [anon_sym_let] = ACTIONS(457), - [anon_sym_mut] = ACTIONS(459), - [anon_sym_const] = ACTIONS(461), - [aux_sym_cmd_identifier_token1] = ACTIONS(255), - [anon_sym_def] = ACTIONS(257), - [anon_sym_use] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_for] = ACTIONS(267), - [anon_sym_loop] = ACTIONS(269), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(463), - [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(277), - [anon_sym_catch] = ACTIONS(275), - [anon_sym_finally] = ACTIONS(275), - [anon_sym_match] = ACTIONS(279), - [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(283), - [anon_sym_false] = ACTIONS(283), - [anon_sym_null] = ACTIONS(285), - [aux_sym_cmd_identifier_token3] = ACTIONS(287), - [aux_sym_cmd_identifier_token4] = ACTIONS(287), - [aux_sym_cmd_identifier_token5] = ACTIONS(287), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(217), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_where] = ACTIONS(173), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(181), - [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(341), - [aux_sym__val_number_decimal_token2] = ACTIONS(343), - [aux_sym__val_number_decimal_token3] = ACTIONS(345), - [aux_sym__val_number_decimal_token4] = ACTIONS(345), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(213), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(87)] = { - [sym__block_body_statement] = STATE(4268), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym_cmd_identifier] = STATE(2920), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [88] = { + [sym__block_body_statement] = STATE(4359), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym_cmd_identifier] = STATE(2877), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(449), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(87), - [aux_sym_pipeline_repeat1] = STATE(174), - [aux_sym__block_body_repeat2] = STATE(82), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(280), - [anon_sym_export] = ACTIONS(453), - [anon_sym_alias] = ACTIONS(455), - [anon_sym_let] = ACTIONS(457), - [anon_sym_mut] = ACTIONS(459), - [anon_sym_const] = ACTIONS(461), - [aux_sym_cmd_identifier_token1] = ACTIONS(255), - [anon_sym_def] = ACTIONS(257), - [anon_sym_use] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_for] = ACTIONS(267), - [anon_sym_loop] = ACTIONS(269), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(463), - [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(277), - [anon_sym_catch] = ACTIONS(275), - [anon_sym_finally] = ACTIONS(275), - [anon_sym_match] = ACTIONS(279), - [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(283), - [anon_sym_false] = ACTIONS(283), - [anon_sym_null] = ACTIONS(285), - [aux_sym_cmd_identifier_token3] = ACTIONS(287), - [aux_sym_cmd_identifier_token4] = ACTIONS(287), - [aux_sym_cmd_identifier_token5] = ACTIONS(287), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(217), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_where] = ACTIONS(173), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(181), - [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(341), - [aux_sym__val_number_decimal_token2] = ACTIONS(343), - [aux_sym__val_number_decimal_token3] = ACTIONS(345), - [aux_sym__val_number_decimal_token4] = ACTIONS(345), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(213), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(88)] = { - [sym__block_body_statement_parenthesized] = STATE(3986), - [sym__declaration_parenthesized] = STATE(4882), - [sym_decl_alias_parenthesized] = STATE(4928), - [sym_stmt_let_parenthesized] = STATE(4678), - [sym_stmt_mut_parenthesized] = STATE(4678), - [sym_stmt_const_parenthesized] = STATE(4678), - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym__statement_parenthesized] = STATE(4882), - [sym_pipeline_parenthesized] = STATE(4678), - [sym_cmd_identifier] = STATE(2982), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4928), - [sym_decl_export] = STATE(4928), - [sym_decl_extern] = STATE(4928), - [sym_decl_module] = STATE(4928), - [sym_decl_use] = STATE(4928), - [sym__ctrl_statement] = STATE(4678), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), - [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(88), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(321), - [anon_sym_alias] = ACTIONS(323), - [anon_sym_let] = ACTIONS(325), - [anon_sym_mut] = ACTIONS(327), - [anon_sym_const] = ACTIONS(329), - [aux_sym_cmd_identifier_token1] = ACTIONS(255), - [anon_sym_def] = ACTIONS(257), - [anon_sym_use] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_for] = ACTIONS(267), - [anon_sym_loop] = ACTIONS(269), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(331), - [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(333), - [anon_sym_catch] = ACTIONS(275), - [anon_sym_finally] = ACTIONS(275), - [anon_sym_match] = ACTIONS(279), - [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(283), - [anon_sym_false] = ACTIONS(283), - [anon_sym_null] = ACTIONS(285), - [aux_sym_cmd_identifier_token3] = ACTIONS(287), - [aux_sym_cmd_identifier_token4] = ACTIONS(287), - [aux_sym_cmd_identifier_token5] = ACTIONS(287), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(217), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_where] = ACTIONS(337), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(181), - [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(341), - [aux_sym__val_number_decimal_token2] = ACTIONS(343), - [aux_sym__val_number_decimal_token3] = ACTIONS(345), - [aux_sym__val_number_decimal_token4] = ACTIONS(345), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(349), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(89)] = { - [sym__block_body_statement] = STATE(4235), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym_cmd_identifier] = STATE(2920), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), - [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(89), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat2] = STATE(82), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(245), [anon_sym_alias] = ACTIONS(247), [anon_sym_let] = ACTIONS(249), @@ -51306,73 +51128,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(90)] = { - [sym__block_body_statement] = STATE(4268), - [sym__declaration] = STATE(4557), - [sym_decl_alias] = STATE(4561), - [sym_stmt_let] = STATE(4585), - [sym_stmt_mut] = STATE(4585), - [sym_stmt_const] = STATE(4585), - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym__statement] = STATE(4557), - [sym_pipeline] = STATE(4585), - [sym_cmd_identifier] = STATE(2920), - [sym_attribute_list] = STATE(4905), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4561), - [sym_decl_export] = STATE(4561), - [sym_decl_extern] = STATE(4561), - [sym_decl_module] = STATE(4561), - [sym_decl_use] = STATE(4561), - [sym__ctrl_statement] = STATE(4585), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_for] = STATE(4614), - [sym_ctrl_loop] = STATE(4614), - [sym_ctrl_while] = STATE(4614), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [89] = { + [sym__block_body_statement_parenthesized] = STATE(4629), + [sym__declaration_parenthesized] = STATE(4927), + [sym_decl_alias_parenthesized] = STATE(4928), + [sym_stmt_let_parenthesized] = STATE(4919), + [sym_stmt_mut_parenthesized] = STATE(4919), + [sym_stmt_const_parenthesized] = STATE(4919), + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym__statement_parenthesized] = STATE(4927), + [sym_pipeline_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(3000), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4928), + [sym_decl_export] = STATE(4928), + [sym_decl_extern] = STATE(4928), + [sym_decl_module] = STATE(4928), + [sym_decl_use] = STATE(4928), + [sym__ctrl_statement] = STATE(4919), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(494), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(149), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(89), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(174), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(286), + [aux_sym__parenthesized_body_repeat2] = STATE(89), + [anon_sym_export] = ACTIONS(473), + [anon_sym_alias] = ACTIONS(476), + [anon_sym_let] = ACTIONS(479), + [anon_sym_mut] = ACTIONS(482), + [anon_sym_const] = ACTIONS(485), + [aux_sym_cmd_identifier_token1] = ACTIONS(488), + [anon_sym_def] = ACTIONS(491), + [anon_sym_use] = ACTIONS(494), + [anon_sym_export_DASHenv] = ACTIONS(497), + [anon_sym_extern] = ACTIONS(500), + [anon_sym_module] = ACTIONS(503), + [anon_sym_for] = ACTIONS(506), + [anon_sym_loop] = ACTIONS(509), + [anon_sym_while] = ACTIONS(512), + [anon_sym_if] = ACTIONS(515), + [anon_sym_else] = ACTIONS(518), + [anon_sym_try] = ACTIONS(521), + [anon_sym_catch] = ACTIONS(518), + [anon_sym_finally] = ACTIONS(518), + [anon_sym_match] = ACTIONS(524), + [anon_sym_in] = ACTIONS(527), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_null] = ACTIONS(533), + [aux_sym_cmd_identifier_token3] = ACTIONS(536), + [aux_sym_cmd_identifier_token4] = ACTIONS(536), + [aux_sym_cmd_identifier_token5] = ACTIONS(536), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(542), + [anon_sym_LPAREN] = ACTIONS(545), + [anon_sym_DOLLAR] = ACTIONS(548), + [anon_sym_DASH2] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_DOT_DOT] = ACTIONS(557), + [anon_sym_where] = ACTIONS(560), + [aux_sym_expr_unary_token1] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_DOT_DOT_LT] = ACTIONS(566), + [aux_sym__val_number_decimal_token1] = ACTIONS(569), + [aux_sym__val_number_decimal_token2] = ACTIONS(572), + [aux_sym__val_number_decimal_token3] = ACTIONS(575), + [aux_sym__val_number_decimal_token4] = ACTIONS(575), + [aux_sym__val_number_token1] = ACTIONS(578), + [aux_sym__val_number_token2] = ACTIONS(578), + [aux_sym__val_number_token3] = ACTIONS(578), + [anon_sym_0b] = ACTIONS(581), + [anon_sym_0o] = ACTIONS(584), + [anon_sym_0x] = ACTIONS(584), + [sym_val_date] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(593), + [anon_sym_BQUOTE] = ACTIONS(596), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(599), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(608), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(611), + }, + [90] = { + [sym__block_body_statement] = STATE(4280), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym_cmd_identifier] = STATE(2877), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(90), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym__block_body_repeat2] = STATE(82), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(283), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(245), [anon_sym_alias] = ACTIONS(247), [anon_sym_let] = ACTIONS(249), @@ -51432,1858 +51380,1751 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(91)] = { - [sym__block_body_statement] = STATE(4413), - [sym__declaration] = STATE(4682), - [sym_decl_alias] = STATE(4683), - [sym_stmt_let] = STATE(4686), - [sym_stmt_mut] = STATE(4686), - [sym_stmt_const] = STATE(4686), - [sym_assignment] = STATE(3457), - [sym__mutable_assignment_pattern] = STATE(3458), - [sym__statement] = STATE(4682), - [sym_pipeline] = STATE(4686), - [sym_cmd_identifier] = STATE(2973), - [sym_attribute_list] = STATE(4871), - [sym_attribute] = STATE(5029), - [sym_decl_def] = STATE(4683), - [sym_decl_export] = STATE(4683), - [sym_decl_extern] = STATE(4683), - [sym_decl_module] = STATE(4683), - [sym_decl_use] = STATE(4683), - [sym__ctrl_statement] = STATE(4686), - [sym__ctrl_expression] = STATE(3457), - [sym_ctrl_for] = STATE(4696), - [sym_ctrl_loop] = STATE(4696), - [sym_ctrl_while] = STATE(4696), - [sym_ctrl_if] = STATE(3465), - [sym_ctrl_match] = STATE(3465), - [sym_ctrl_try] = STATE(3465), - [sym__stmt_let_shortcut] = STATE(3467), - [sym_pipe_element] = STATE(3140), - [sym_where_command] = STATE(3457), - [sym__expression] = STATE(2307), - [sym_expr_unary] = STATE(1303), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1303), - [sym__expr_binary_expression] = STATE(2265), - [sym_expr_parenthesized] = STATE(934), - [sym_val_range] = STATE(1303), - [sym__value] = STATE(1303), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1369), - [sym_val_variable] = STATE(470), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), - [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3457), + [91] = { + [sym__block_body_statement] = STATE(4841), + [sym__declaration] = STATE(4402), + [sym_decl_alias] = STATE(4401), + [sym_stmt_let] = STATE(4400), + [sym_stmt_mut] = STATE(4400), + [sym_stmt_const] = STATE(4400), + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym__statement] = STATE(4402), + [sym_pipeline] = STATE(4400), + [sym_cmd_identifier] = STATE(2877), + [sym_attribute_list] = STATE(4806), + [sym_attribute] = STATE(5039), + [sym_decl_def] = STATE(4401), + [sym_decl_export] = STATE(4401), + [sym_decl_extern] = STATE(4401), + [sym_decl_module] = STATE(4401), + [sym_decl_use] = STATE(4401), + [sym__ctrl_statement] = STATE(4400), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_for] = STATE(4399), + [sym_ctrl_loop] = STATE(4399), + [sym_ctrl_while] = STATE(4399), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(485), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(149), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(91), - [aux_sym_pipeline_repeat1] = STATE(181), - [aux_sym__block_body_repeat2] = STATE(82), - [aux_sym_attribute_list_repeat1] = STATE(4135), - [aux_sym_pipe_element_repeat2] = STATE(287), - [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), - [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_PERCENT] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(107), - }, - [STATE(92)] = { + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4148), + [aux_sym_pipe_element_repeat2] = STATE(281), + [anon_sym_export] = ACTIONS(614), + [anon_sym_alias] = ACTIONS(617), + [anon_sym_let] = ACTIONS(620), + [anon_sym_mut] = ACTIONS(623), + [anon_sym_const] = ACTIONS(626), + [aux_sym_cmd_identifier_token1] = ACTIONS(629), + [anon_sym_def] = ACTIONS(632), + [anon_sym_use] = ACTIONS(635), + [anon_sym_export_DASHenv] = ACTIONS(638), + [anon_sym_extern] = ACTIONS(641), + [anon_sym_module] = ACTIONS(644), + [anon_sym_for] = ACTIONS(647), + [anon_sym_loop] = ACTIONS(650), + [anon_sym_while] = ACTIONS(653), + [anon_sym_if] = ACTIONS(656), + [anon_sym_else] = ACTIONS(659), + [anon_sym_try] = ACTIONS(662), + [anon_sym_catch] = ACTIONS(659), + [anon_sym_finally] = ACTIONS(659), + [anon_sym_match] = ACTIONS(665), + [anon_sym_in] = ACTIONS(668), + [anon_sym_true] = ACTIONS(671), + [anon_sym_false] = ACTIONS(671), + [anon_sym_null] = ACTIONS(674), + [aux_sym_cmd_identifier_token3] = ACTIONS(677), + [aux_sym_cmd_identifier_token4] = ACTIONS(677), + [aux_sym_cmd_identifier_token5] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_LBRACK] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(686), + [anon_sym_DOLLAR] = ACTIONS(689), + [anon_sym_DASH2] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_where] = ACTIONS(701), + [aux_sym_expr_unary_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(707), + [anon_sym_DOT_DOT_LT] = ACTIONS(707), + [aux_sym__val_number_decimal_token1] = ACTIONS(710), + [aux_sym__val_number_decimal_token2] = ACTIONS(713), + [aux_sym__val_number_decimal_token3] = ACTIONS(716), + [aux_sym__val_number_decimal_token4] = ACTIONS(716), + [aux_sym__val_number_token1] = ACTIONS(719), + [aux_sym__val_number_token2] = ACTIONS(719), + [aux_sym__val_number_token3] = ACTIONS(719), + [anon_sym_0b] = ACTIONS(722), + [anon_sym_0o] = ACTIONS(725), + [anon_sym_0x] = ACTIONS(725), + [sym_val_date] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(731), + [anon_sym_SQUOTE] = ACTIONS(734), + [anon_sym_BQUOTE] = ACTIONS(737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(743), + [anon_sym_CARET] = ACTIONS(746), + [anon_sym_PERCENT] = ACTIONS(749), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(752), + }, + [92] = { [sym_comment] = STATE(92), - [anon_sym_in] = ACTIONS(751), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_like] = ACTIONS(753), - [anon_sym_not_DASHlike] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_in2] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_has] = ACTIONS(753), - [anon_sym_not_DASHhas] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_EQ] = ACTIONS(753), - [aux_sym_cmd_identifier_token6] = ACTIONS(751), - [sym__newline] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_err_GT_PIPE] = ACTIONS(751), - [anon_sym_out_GT_PIPE] = ACTIONS(751), - [anon_sym_e_GT_PIPE] = ACTIONS(751), - [anon_sym_o_GT_PIPE] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), - [anon_sym_GT2] = ACTIONS(751), - [anon_sym_DASH2] = ACTIONS(751), - [anon_sym_RBRACE] = ACTIONS(751), - [anon_sym_STAR2] = ACTIONS(751), - [anon_sym_and2] = ACTIONS(751), - [anon_sym_xor2] = ACTIONS(751), - [anon_sym_or2] = ACTIONS(751), - [anon_sym_not_DASHin2] = ACTIONS(751), - [anon_sym_has2] = ACTIONS(751), - [anon_sym_not_DASHhas2] = ACTIONS(751), - [anon_sym_starts_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), - [anon_sym_ends_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), - [anon_sym_EQ_EQ2] = ACTIONS(751), - [anon_sym_BANG_EQ2] = ACTIONS(751), - [anon_sym_LT2] = ACTIONS(751), - [anon_sym_LT_EQ2] = ACTIONS(751), - [anon_sym_GT_EQ2] = ACTIONS(751), - [anon_sym_EQ_TILDE2] = ACTIONS(751), - [anon_sym_BANG_TILDE2] = ACTIONS(751), - [anon_sym_like2] = ACTIONS(751), - [anon_sym_not_DASHlike2] = ACTIONS(751), - [anon_sym_STAR_STAR2] = ACTIONS(751), - [anon_sym_PLUS_PLUS2] = ACTIONS(751), - [anon_sym_SLASH2] = ACTIONS(751), - [anon_sym_mod2] = ACTIONS(751), - [anon_sym_SLASH_SLASH2] = ACTIONS(751), - [anon_sym_PLUS2] = ACTIONS(751), - [anon_sym_bit_DASHshl2] = ACTIONS(751), - [anon_sym_bit_DASHshr2] = ACTIONS(751), - [anon_sym_bit_DASHand2] = ACTIONS(751), - [anon_sym_bit_DASHxor2] = ACTIONS(751), - [anon_sym_bit_DASHor2] = ACTIONS(751), - [anon_sym_DOT_DOT2] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(753), - [aux_sym__immediate_decimal_token5] = ACTIONS(757), - [sym_filesize_unit] = ACTIONS(751), - [sym_duration_unit] = ACTIONS(753), - [anon_sym_COLON2] = ACTIONS(751), - [anon_sym_err_GT] = ACTIONS(751), - [anon_sym_out_GT] = ACTIONS(751), - [anon_sym_e_GT] = ACTIONS(751), - [anon_sym_o_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT] = ACTIONS(751), - [anon_sym_err_GT_GT] = ACTIONS(751), - [anon_sym_out_GT_GT] = ACTIONS(751), - [anon_sym_e_GT_GT] = ACTIONS(751), - [anon_sym_o_GT_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(751), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token1] = ACTIONS(759), + [aux_sym__immediate_decimal_token5] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_COLON2] = ACTIONS(755), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(93)] = { + [93] = { [sym_comment] = STATE(93), - [anon_sym_in] = ACTIONS(759), - [anon_sym_STAR_STAR] = ACTIONS(761), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_mod] = ACTIONS(761), - [anon_sym_SLASH_SLASH] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_bit_DASHshl] = ACTIONS(761), - [anon_sym_bit_DASHshr] = ACTIONS(761), - [anon_sym_EQ_TILDE] = ACTIONS(761), - [anon_sym_BANG_TILDE] = ACTIONS(761), - [anon_sym_like] = ACTIONS(761), - [anon_sym_not_DASHlike] = ACTIONS(761), - [anon_sym_bit_DASHand] = ACTIONS(761), - [anon_sym_bit_DASHxor] = ACTIONS(761), - [anon_sym_bit_DASHor] = ACTIONS(761), - [anon_sym_and] = ACTIONS(761), - [anon_sym_xor] = ACTIONS(761), - [anon_sym_or] = ACTIONS(761), - [anon_sym_in2] = ACTIONS(761), - [anon_sym_not_DASHin] = ACTIONS(761), - [anon_sym_has] = ACTIONS(761), - [anon_sym_not_DASHhas] = ACTIONS(761), - [anon_sym_starts_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), - [anon_sym_ends_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), - [anon_sym_EQ_EQ] = ACTIONS(761), - [anon_sym_BANG_EQ] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_LT_EQ] = ACTIONS(761), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_GT_EQ] = ACTIONS(761), - [aux_sym_cmd_identifier_token6] = ACTIONS(759), - [sym__newline] = ACTIONS(759), - [anon_sym_SEMI] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_err_GT_PIPE] = ACTIONS(759), - [anon_sym_out_GT_PIPE] = ACTIONS(759), - [anon_sym_e_GT_PIPE] = ACTIONS(759), - [anon_sym_o_GT_PIPE] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), - [anon_sym_GT2] = ACTIONS(759), - [anon_sym_DASH2] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(759), - [anon_sym_STAR2] = ACTIONS(759), - [anon_sym_and2] = ACTIONS(759), - [anon_sym_xor2] = ACTIONS(759), - [anon_sym_or2] = ACTIONS(759), - [anon_sym_not_DASHin2] = ACTIONS(759), - [anon_sym_has2] = ACTIONS(759), - [anon_sym_not_DASHhas2] = ACTIONS(759), - [anon_sym_starts_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), - [anon_sym_ends_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), - [anon_sym_EQ_EQ2] = ACTIONS(759), - [anon_sym_BANG_EQ2] = ACTIONS(759), - [anon_sym_LT2] = ACTIONS(759), - [anon_sym_LT_EQ2] = ACTIONS(759), - [anon_sym_GT_EQ2] = ACTIONS(759), - [anon_sym_EQ_TILDE2] = ACTIONS(759), - [anon_sym_BANG_TILDE2] = ACTIONS(759), - [anon_sym_like2] = ACTIONS(759), - [anon_sym_not_DASHlike2] = ACTIONS(759), - [anon_sym_STAR_STAR2] = ACTIONS(759), - [anon_sym_PLUS_PLUS2] = ACTIONS(759), - [anon_sym_SLASH2] = ACTIONS(759), - [anon_sym_mod2] = ACTIONS(759), - [anon_sym_SLASH_SLASH2] = ACTIONS(759), - [anon_sym_PLUS2] = ACTIONS(759), - [anon_sym_bit_DASHshl2] = ACTIONS(759), - [anon_sym_bit_DASHshr2] = ACTIONS(759), - [anon_sym_bit_DASHand2] = ACTIONS(759), - [anon_sym_bit_DASHxor2] = ACTIONS(759), - [anon_sym_bit_DASHor2] = ACTIONS(759), - [anon_sym_DOT_DOT2] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(761), - [aux_sym__immediate_decimal_token1] = ACTIONS(763), - [aux_sym__immediate_decimal_token5] = ACTIONS(765), - [sym_filesize_unit] = ACTIONS(759), - [sym_duration_unit] = ACTIONS(761), - [anon_sym_COLON2] = ACTIONS(759), - [anon_sym_err_GT] = ACTIONS(759), - [anon_sym_out_GT] = ACTIONS(759), - [anon_sym_e_GT] = ACTIONS(759), - [anon_sym_o_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT] = ACTIONS(759), - [anon_sym_err_GT_GT] = ACTIONS(759), - [anon_sym_out_GT_GT] = ACTIONS(759), - [anon_sym_e_GT_GT] = ACTIONS(759), - [anon_sym_o_GT_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(94)] = { - [sym_comment] = STATE(94), - [anon_sym_in] = ACTIONS(751), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_like] = ACTIONS(753), - [anon_sym_not_DASHlike] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_in2] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_has] = ACTIONS(753), - [anon_sym_not_DASHhas] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_EQ] = ACTIONS(753), - [aux_sym_cmd_identifier_token6] = ACTIONS(751), - [sym__newline] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_err_GT_PIPE] = ACTIONS(751), - [anon_sym_out_GT_PIPE] = ACTIONS(751), - [anon_sym_e_GT_PIPE] = ACTIONS(751), - [anon_sym_o_GT_PIPE] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), - [anon_sym_GT2] = ACTIONS(751), - [anon_sym_DASH2] = ACTIONS(751), - [anon_sym_RBRACE] = ACTIONS(751), - [anon_sym_STAR2] = ACTIONS(751), - [anon_sym_and2] = ACTIONS(751), - [anon_sym_xor2] = ACTIONS(751), - [anon_sym_or2] = ACTIONS(751), - [anon_sym_not_DASHin2] = ACTIONS(751), - [anon_sym_has2] = ACTIONS(751), - [anon_sym_not_DASHhas2] = ACTIONS(751), - [anon_sym_starts_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), - [anon_sym_ends_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), - [anon_sym_EQ_EQ2] = ACTIONS(751), - [anon_sym_BANG_EQ2] = ACTIONS(751), - [anon_sym_LT2] = ACTIONS(751), - [anon_sym_LT_EQ2] = ACTIONS(751), - [anon_sym_GT_EQ2] = ACTIONS(751), - [anon_sym_EQ_TILDE2] = ACTIONS(751), - [anon_sym_BANG_TILDE2] = ACTIONS(751), - [anon_sym_like2] = ACTIONS(751), - [anon_sym_not_DASHlike2] = ACTIONS(751), - [anon_sym_STAR_STAR2] = ACTIONS(751), - [anon_sym_PLUS_PLUS2] = ACTIONS(751), - [anon_sym_SLASH2] = ACTIONS(751), - [anon_sym_mod2] = ACTIONS(751), - [anon_sym_SLASH_SLASH2] = ACTIONS(751), - [anon_sym_PLUS2] = ACTIONS(751), - [anon_sym_bit_DASHshl2] = ACTIONS(751), - [anon_sym_bit_DASHshr2] = ACTIONS(751), - [anon_sym_bit_DASHand2] = ACTIONS(751), - [anon_sym_bit_DASHxor2] = ACTIONS(751), - [anon_sym_bit_DASHor2] = ACTIONS(751), - [anon_sym_DOT_DOT2] = ACTIONS(751), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_RBRACE] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), [anon_sym_DOT] = ACTIONS(767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), [aux_sym__immediate_decimal_token5] = ACTIONS(769), - [sym_filesize_unit] = ACTIONS(751), - [sym_duration_unit] = ACTIONS(753), - [anon_sym_err_GT] = ACTIONS(751), - [anon_sym_out_GT] = ACTIONS(751), - [anon_sym_e_GT] = ACTIONS(751), - [anon_sym_o_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT] = ACTIONS(751), - [anon_sym_err_GT_GT] = ACTIONS(751), - [anon_sym_out_GT_GT] = ACTIONS(751), - [anon_sym_e_GT_GT] = ACTIONS(751), - [anon_sym_o_GT_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(751), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_COLON2] = ACTIONS(763), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(763), + [anon_sym_out_GT_GT] = ACTIONS(763), + [anon_sym_e_GT_GT] = ACTIONS(763), + [anon_sym_o_GT_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(95)] = { - [sym_comment] = STATE(95), - [anon_sym_in] = ACTIONS(759), - [anon_sym_STAR_STAR] = ACTIONS(761), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_mod] = ACTIONS(761), - [anon_sym_SLASH_SLASH] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_bit_DASHshl] = ACTIONS(761), - [anon_sym_bit_DASHshr] = ACTIONS(761), - [anon_sym_EQ_TILDE] = ACTIONS(761), - [anon_sym_BANG_TILDE] = ACTIONS(761), - [anon_sym_like] = ACTIONS(761), - [anon_sym_not_DASHlike] = ACTIONS(761), - [anon_sym_bit_DASHand] = ACTIONS(761), - [anon_sym_bit_DASHxor] = ACTIONS(761), - [anon_sym_bit_DASHor] = ACTIONS(761), - [anon_sym_and] = ACTIONS(761), - [anon_sym_xor] = ACTIONS(761), - [anon_sym_or] = ACTIONS(761), - [anon_sym_in2] = ACTIONS(761), - [anon_sym_not_DASHin] = ACTIONS(761), - [anon_sym_has] = ACTIONS(761), - [anon_sym_not_DASHhas] = ACTIONS(761), - [anon_sym_starts_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), - [anon_sym_ends_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), - [anon_sym_EQ_EQ] = ACTIONS(761), - [anon_sym_BANG_EQ] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_LT_EQ] = ACTIONS(761), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_GT_EQ] = ACTIONS(761), - [aux_sym_cmd_identifier_token6] = ACTIONS(759), - [sym__newline] = ACTIONS(759), - [anon_sym_SEMI] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_err_GT_PIPE] = ACTIONS(759), - [anon_sym_out_GT_PIPE] = ACTIONS(759), - [anon_sym_e_GT_PIPE] = ACTIONS(759), - [anon_sym_o_GT_PIPE] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), - [anon_sym_GT2] = ACTIONS(759), - [anon_sym_DASH2] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(759), - [anon_sym_STAR2] = ACTIONS(759), - [anon_sym_and2] = ACTIONS(759), - [anon_sym_xor2] = ACTIONS(759), - [anon_sym_or2] = ACTIONS(759), - [anon_sym_not_DASHin2] = ACTIONS(759), - [anon_sym_has2] = ACTIONS(759), - [anon_sym_not_DASHhas2] = ACTIONS(759), - [anon_sym_starts_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), - [anon_sym_ends_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), - [anon_sym_EQ_EQ2] = ACTIONS(759), - [anon_sym_BANG_EQ2] = ACTIONS(759), - [anon_sym_LT2] = ACTIONS(759), - [anon_sym_LT_EQ2] = ACTIONS(759), - [anon_sym_GT_EQ2] = ACTIONS(759), - [anon_sym_EQ_TILDE2] = ACTIONS(759), - [anon_sym_BANG_TILDE2] = ACTIONS(759), - [anon_sym_like2] = ACTIONS(759), - [anon_sym_not_DASHlike2] = ACTIONS(759), - [anon_sym_STAR_STAR2] = ACTIONS(759), - [anon_sym_PLUS_PLUS2] = ACTIONS(759), - [anon_sym_SLASH2] = ACTIONS(759), - [anon_sym_mod2] = ACTIONS(759), - [anon_sym_SLASH_SLASH2] = ACTIONS(759), - [anon_sym_PLUS2] = ACTIONS(759), - [anon_sym_bit_DASHshl2] = ACTIONS(759), - [anon_sym_bit_DASHshr2] = ACTIONS(759), - [anon_sym_bit_DASHand2] = ACTIONS(759), - [anon_sym_bit_DASHxor2] = ACTIONS(759), - [anon_sym_bit_DASHor2] = ACTIONS(759), - [anon_sym_DOT_DOT2] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [94] = { + [sym_comment] = STATE(94), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), [aux_sym__immediate_decimal_token1] = ACTIONS(771), [aux_sym__immediate_decimal_token5] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(759), - [sym_duration_unit] = ACTIONS(761), - [anon_sym_err_GT] = ACTIONS(759), - [anon_sym_out_GT] = ACTIONS(759), - [anon_sym_e_GT] = ACTIONS(759), - [anon_sym_o_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT] = ACTIONS(759), - [anon_sym_err_GT_GT] = ACTIONS(759), - [anon_sym_out_GT_GT] = ACTIONS(759), - [anon_sym_e_GT_GT] = ACTIONS(759), - [anon_sym_o_GT_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(105), + }, + [95] = { + [sym_comment] = STATE(95), + [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(105), }, - [STATE(96)] = { + [96] = { [sym_comment] = STATE(96), - [ts_builtin_sym_end] = ACTIONS(753), - [anon_sym_in] = ACTIONS(751), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_like] = ACTIONS(753), - [anon_sym_not_DASHlike] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_in2] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_has] = ACTIONS(753), - [anon_sym_not_DASHhas] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_EQ] = ACTIONS(753), - [aux_sym_cmd_identifier_token6] = ACTIONS(751), - [sym__newline] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_err_GT_PIPE] = ACTIONS(751), - [anon_sym_out_GT_PIPE] = ACTIONS(751), - [anon_sym_e_GT_PIPE] = ACTIONS(751), - [anon_sym_o_GT_PIPE] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), - [anon_sym_GT2] = ACTIONS(751), - [anon_sym_DASH2] = ACTIONS(751), - [anon_sym_STAR2] = ACTIONS(751), - [anon_sym_and2] = ACTIONS(751), - [anon_sym_xor2] = ACTIONS(751), - [anon_sym_or2] = ACTIONS(751), - [anon_sym_not_DASHin2] = ACTIONS(751), - [anon_sym_has2] = ACTIONS(751), - [anon_sym_not_DASHhas2] = ACTIONS(751), - [anon_sym_starts_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), - [anon_sym_ends_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), - [anon_sym_EQ_EQ2] = ACTIONS(751), - [anon_sym_BANG_EQ2] = ACTIONS(751), - [anon_sym_LT2] = ACTIONS(751), - [anon_sym_LT_EQ2] = ACTIONS(751), - [anon_sym_GT_EQ2] = ACTIONS(751), - [anon_sym_EQ_TILDE2] = ACTIONS(751), - [anon_sym_BANG_TILDE2] = ACTIONS(751), - [anon_sym_like2] = ACTIONS(751), - [anon_sym_not_DASHlike2] = ACTIONS(751), - [anon_sym_STAR_STAR2] = ACTIONS(751), - [anon_sym_PLUS_PLUS2] = ACTIONS(751), - [anon_sym_SLASH2] = ACTIONS(751), - [anon_sym_mod2] = ACTIONS(751), - [anon_sym_SLASH_SLASH2] = ACTIONS(751), - [anon_sym_PLUS2] = ACTIONS(751), - [anon_sym_bit_DASHshl2] = ACTIONS(751), - [anon_sym_bit_DASHshr2] = ACTIONS(751), - [anon_sym_bit_DASHand2] = ACTIONS(751), - [anon_sym_bit_DASHxor2] = ACTIONS(751), - [anon_sym_bit_DASHor2] = ACTIONS(751), - [anon_sym_DOT_DOT2] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(753), - [aux_sym__immediate_decimal_token5] = ACTIONS(777), - [sym_filesize_unit] = ACTIONS(751), - [sym_duration_unit] = ACTIONS(753), - [anon_sym_err_GT] = ACTIONS(751), - [anon_sym_out_GT] = ACTIONS(751), - [anon_sym_e_GT] = ACTIONS(751), - [anon_sym_o_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT] = ACTIONS(751), - [anon_sym_err_GT_GT] = ACTIONS(751), - [anon_sym_out_GT_GT] = ACTIONS(751), - [anon_sym_e_GT_GT] = ACTIONS(751), - [anon_sym_o_GT_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(751), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_RBRACE] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(769), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_COLON2] = ACTIONS(763), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(763), + [anon_sym_out_GT_GT] = ACTIONS(763), + [anon_sym_e_GT_GT] = ACTIONS(763), + [anon_sym_o_GT_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(97)] = { + [97] = { [sym_comment] = STATE(97), - [ts_builtin_sym_end] = ACTIONS(761), - [anon_sym_in] = ACTIONS(759), - [anon_sym_STAR_STAR] = ACTIONS(761), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_mod] = ACTIONS(761), - [anon_sym_SLASH_SLASH] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_bit_DASHshl] = ACTIONS(761), - [anon_sym_bit_DASHshr] = ACTIONS(761), - [anon_sym_EQ_TILDE] = ACTIONS(761), - [anon_sym_BANG_TILDE] = ACTIONS(761), - [anon_sym_like] = ACTIONS(761), - [anon_sym_not_DASHlike] = ACTIONS(761), - [anon_sym_bit_DASHand] = ACTIONS(761), - [anon_sym_bit_DASHxor] = ACTIONS(761), - [anon_sym_bit_DASHor] = ACTIONS(761), - [anon_sym_and] = ACTIONS(761), - [anon_sym_xor] = ACTIONS(761), - [anon_sym_or] = ACTIONS(761), - [anon_sym_in2] = ACTIONS(761), - [anon_sym_not_DASHin] = ACTIONS(761), - [anon_sym_has] = ACTIONS(761), - [anon_sym_not_DASHhas] = ACTIONS(761), - [anon_sym_starts_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), - [anon_sym_ends_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), - [anon_sym_EQ_EQ] = ACTIONS(761), - [anon_sym_BANG_EQ] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_LT_EQ] = ACTIONS(761), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_GT_EQ] = ACTIONS(761), - [aux_sym_cmd_identifier_token6] = ACTIONS(759), - [sym__newline] = ACTIONS(759), - [anon_sym_SEMI] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_err_GT_PIPE] = ACTIONS(759), - [anon_sym_out_GT_PIPE] = ACTIONS(759), - [anon_sym_e_GT_PIPE] = ACTIONS(759), - [anon_sym_o_GT_PIPE] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), - [anon_sym_GT2] = ACTIONS(759), - [anon_sym_DASH2] = ACTIONS(759), - [anon_sym_STAR2] = ACTIONS(759), - [anon_sym_and2] = ACTIONS(759), - [anon_sym_xor2] = ACTIONS(759), - [anon_sym_or2] = ACTIONS(759), - [anon_sym_not_DASHin2] = ACTIONS(759), - [anon_sym_has2] = ACTIONS(759), - [anon_sym_not_DASHhas2] = ACTIONS(759), - [anon_sym_starts_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), - [anon_sym_ends_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), - [anon_sym_EQ_EQ2] = ACTIONS(759), - [anon_sym_BANG_EQ2] = ACTIONS(759), - [anon_sym_LT2] = ACTIONS(759), - [anon_sym_LT_EQ2] = ACTIONS(759), - [anon_sym_GT_EQ2] = ACTIONS(759), - [anon_sym_EQ_TILDE2] = ACTIONS(759), - [anon_sym_BANG_TILDE2] = ACTIONS(759), - [anon_sym_like2] = ACTIONS(759), - [anon_sym_not_DASHlike2] = ACTIONS(759), - [anon_sym_STAR_STAR2] = ACTIONS(759), - [anon_sym_PLUS_PLUS2] = ACTIONS(759), - [anon_sym_SLASH2] = ACTIONS(759), - [anon_sym_mod2] = ACTIONS(759), - [anon_sym_SLASH_SLASH2] = ACTIONS(759), - [anon_sym_PLUS2] = ACTIONS(759), - [anon_sym_bit_DASHshl2] = ACTIONS(759), - [anon_sym_bit_DASHshr2] = ACTIONS(759), - [anon_sym_bit_DASHand2] = ACTIONS(759), - [anon_sym_bit_DASHxor2] = ACTIONS(759), - [anon_sym_bit_DASHor2] = ACTIONS(759), - [anon_sym_DOT_DOT2] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(761), - [aux_sym__immediate_decimal_token1] = ACTIONS(779), - [aux_sym__immediate_decimal_token5] = ACTIONS(781), - [sym_filesize_unit] = ACTIONS(759), - [sym_duration_unit] = ACTIONS(761), - [anon_sym_err_GT] = ACTIONS(759), - [anon_sym_out_GT] = ACTIONS(759), - [anon_sym_e_GT] = ACTIONS(759), - [anon_sym_o_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT] = ACTIONS(759), - [anon_sym_err_GT_GT] = ACTIONS(759), - [anon_sym_out_GT_GT] = ACTIONS(759), - [anon_sym_e_GT_GT] = ACTIONS(759), - [anon_sym_o_GT_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), + [ts_builtin_sym_end] = ACTIONS(757), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token1] = ACTIONS(781), + [aux_sym__immediate_decimal_token5] = ACTIONS(783), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(98)] = { + [98] = { [sym_comment] = STATE(98), - [anon_sym_in] = ACTIONS(759), - [anon_sym_STAR_STAR] = ACTIONS(761), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_mod] = ACTIONS(761), - [anon_sym_SLASH_SLASH] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_bit_DASHshl] = ACTIONS(761), - [anon_sym_bit_DASHshr] = ACTIONS(761), - [anon_sym_EQ_TILDE] = ACTIONS(761), - [anon_sym_BANG_TILDE] = ACTIONS(761), - [anon_sym_like] = ACTIONS(761), - [anon_sym_not_DASHlike] = ACTIONS(761), - [anon_sym_bit_DASHand] = ACTIONS(761), - [anon_sym_bit_DASHxor] = ACTIONS(761), - [anon_sym_bit_DASHor] = ACTIONS(761), - [anon_sym_and] = ACTIONS(761), - [anon_sym_xor] = ACTIONS(761), - [anon_sym_or] = ACTIONS(761), - [anon_sym_in2] = ACTIONS(761), - [anon_sym_not_DASHin] = ACTIONS(761), - [anon_sym_has] = ACTIONS(761), - [anon_sym_not_DASHhas] = ACTIONS(761), - [anon_sym_starts_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), - [anon_sym_ends_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), - [anon_sym_EQ_EQ] = ACTIONS(761), - [anon_sym_BANG_EQ] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_LT_EQ] = ACTIONS(761), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_GT_EQ] = ACTIONS(761), - [aux_sym_cmd_identifier_token6] = ACTIONS(759), - [sym__newline] = ACTIONS(759), - [anon_sym_SEMI] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_err_GT_PIPE] = ACTIONS(759), - [anon_sym_out_GT_PIPE] = ACTIONS(759), - [anon_sym_e_GT_PIPE] = ACTIONS(759), - [anon_sym_o_GT_PIPE] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), - [anon_sym_RPAREN] = ACTIONS(759), - [anon_sym_GT2] = ACTIONS(759), - [anon_sym_DASH2] = ACTIONS(759), - [anon_sym_STAR2] = ACTIONS(759), - [anon_sym_and2] = ACTIONS(759), - [anon_sym_xor2] = ACTIONS(759), - [anon_sym_or2] = ACTIONS(759), - [anon_sym_not_DASHin2] = ACTIONS(759), - [anon_sym_has2] = ACTIONS(759), - [anon_sym_not_DASHhas2] = ACTIONS(759), - [anon_sym_starts_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), - [anon_sym_ends_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), - [anon_sym_EQ_EQ2] = ACTIONS(759), - [anon_sym_BANG_EQ2] = ACTIONS(759), - [anon_sym_LT2] = ACTIONS(759), - [anon_sym_LT_EQ2] = ACTIONS(759), - [anon_sym_GT_EQ2] = ACTIONS(759), - [anon_sym_EQ_TILDE2] = ACTIONS(759), - [anon_sym_BANG_TILDE2] = ACTIONS(759), - [anon_sym_like2] = ACTIONS(759), - [anon_sym_not_DASHlike2] = ACTIONS(759), - [anon_sym_STAR_STAR2] = ACTIONS(759), - [anon_sym_PLUS_PLUS2] = ACTIONS(759), - [anon_sym_SLASH2] = ACTIONS(759), - [anon_sym_mod2] = ACTIONS(759), - [anon_sym_SLASH_SLASH2] = ACTIONS(759), - [anon_sym_PLUS2] = ACTIONS(759), - [anon_sym_bit_DASHshl2] = ACTIONS(759), - [anon_sym_bit_DASHshr2] = ACTIONS(759), - [anon_sym_bit_DASHand2] = ACTIONS(759), - [anon_sym_bit_DASHxor2] = ACTIONS(759), - [anon_sym_bit_DASHor2] = ACTIONS(759), - [anon_sym_DOT_DOT2] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(761), - [aux_sym__immediate_decimal_token1] = ACTIONS(783), - [aux_sym__immediate_decimal_token5] = ACTIONS(785), - [sym_filesize_unit] = ACTIONS(759), - [sym_duration_unit] = ACTIONS(761), - [anon_sym_err_GT] = ACTIONS(759), - [anon_sym_out_GT] = ACTIONS(759), - [anon_sym_e_GT] = ACTIONS(759), - [anon_sym_o_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT] = ACTIONS(759), - [anon_sym_err_GT_GT] = ACTIONS(759), - [anon_sym_out_GT_GT] = ACTIONS(759), - [anon_sym_e_GT_GT] = ACTIONS(759), - [anon_sym_o_GT_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_RBRACE] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT] = ACTIONS(785), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(787), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(763), + [anon_sym_out_GT_GT] = ACTIONS(763), + [anon_sym_e_GT_GT] = ACTIONS(763), + [anon_sym_o_GT_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(99)] = { + [99] = { [sym_comment] = STATE(99), - [anon_sym_in] = ACTIONS(751), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_like] = ACTIONS(753), - [anon_sym_not_DASHlike] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_in2] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_has] = ACTIONS(753), - [anon_sym_not_DASHhas] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_EQ] = ACTIONS(753), - [aux_sym_cmd_identifier_token6] = ACTIONS(751), - [sym__newline] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_err_GT_PIPE] = ACTIONS(751), - [anon_sym_out_GT_PIPE] = ACTIONS(751), - [anon_sym_e_GT_PIPE] = ACTIONS(751), - [anon_sym_o_GT_PIPE] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_GT2] = ACTIONS(751), - [anon_sym_DASH2] = ACTIONS(751), - [anon_sym_STAR2] = ACTIONS(751), - [anon_sym_and2] = ACTIONS(751), - [anon_sym_xor2] = ACTIONS(751), - [anon_sym_or2] = ACTIONS(751), - [anon_sym_not_DASHin2] = ACTIONS(751), - [anon_sym_has2] = ACTIONS(751), - [anon_sym_not_DASHhas2] = ACTIONS(751), - [anon_sym_starts_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), - [anon_sym_ends_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), - [anon_sym_EQ_EQ2] = ACTIONS(751), - [anon_sym_BANG_EQ2] = ACTIONS(751), - [anon_sym_LT2] = ACTIONS(751), - [anon_sym_LT_EQ2] = ACTIONS(751), - [anon_sym_GT_EQ2] = ACTIONS(751), - [anon_sym_EQ_TILDE2] = ACTIONS(751), - [anon_sym_BANG_TILDE2] = ACTIONS(751), - [anon_sym_like2] = ACTIONS(751), - [anon_sym_not_DASHlike2] = ACTIONS(751), - [anon_sym_STAR_STAR2] = ACTIONS(751), - [anon_sym_PLUS_PLUS2] = ACTIONS(751), - [anon_sym_SLASH2] = ACTIONS(751), - [anon_sym_mod2] = ACTIONS(751), - [anon_sym_SLASH_SLASH2] = ACTIONS(751), - [anon_sym_PLUS2] = ACTIONS(751), - [anon_sym_bit_DASHshl2] = ACTIONS(751), - [anon_sym_bit_DASHshr2] = ACTIONS(751), - [anon_sym_bit_DASHand2] = ACTIONS(751), - [anon_sym_bit_DASHxor2] = ACTIONS(751), - [anon_sym_bit_DASHor2] = ACTIONS(751), - [anon_sym_DOT_DOT2] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(787), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(753), - [aux_sym__immediate_decimal_token5] = ACTIONS(789), - [sym_filesize_unit] = ACTIONS(751), - [sym_duration_unit] = ACTIONS(753), - [anon_sym_err_GT] = ACTIONS(751), - [anon_sym_out_GT] = ACTIONS(751), - [anon_sym_e_GT] = ACTIONS(751), - [anon_sym_o_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT] = ACTIONS(751), - [anon_sym_err_GT_GT] = ACTIONS(751), - [anon_sym_out_GT_GT] = ACTIONS(751), - [anon_sym_e_GT_GT] = ACTIONS(751), - [anon_sym_o_GT_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(751), + [ts_builtin_sym_end] = ACTIONS(765), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(763), + [anon_sym_out_GT_GT] = ACTIONS(763), + [anon_sym_e_GT_GT] = ACTIONS(763), + [anon_sym_o_GT_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(100)] = { + [100] = { [sym_comment] = STATE(100), - [anon_sym_in] = ACTIONS(751), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_like] = ACTIONS(753), - [anon_sym_not_DASHlike] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_in2] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_has] = ACTIONS(753), - [anon_sym_not_DASHhas] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_EQ] = ACTIONS(753), - [aux_sym_cmd_identifier_token6] = ACTIONS(751), - [sym__newline] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_err_GT_PIPE] = ACTIONS(751), - [anon_sym_out_GT_PIPE] = ACTIONS(751), - [anon_sym_e_GT_PIPE] = ACTIONS(751), - [anon_sym_o_GT_PIPE] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), - [anon_sym_GT2] = ACTIONS(751), - [anon_sym_DASH2] = ACTIONS(751), - [anon_sym_RBRACE] = ACTIONS(751), - [anon_sym_STAR2] = ACTIONS(751), - [anon_sym_and2] = ACTIONS(751), - [anon_sym_xor2] = ACTIONS(751), - [anon_sym_or2] = ACTIONS(751), - [anon_sym_not_DASHin2] = ACTIONS(751), - [anon_sym_has2] = ACTIONS(751), - [anon_sym_not_DASHhas2] = ACTIONS(751), - [anon_sym_starts_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), - [anon_sym_ends_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), - [anon_sym_EQ_EQ2] = ACTIONS(751), - [anon_sym_BANG_EQ2] = ACTIONS(751), - [anon_sym_LT2] = ACTIONS(751), - [anon_sym_LT_EQ2] = ACTIONS(751), - [anon_sym_GT_EQ2] = ACTIONS(751), - [anon_sym_EQ_TILDE2] = ACTIONS(751), - [anon_sym_BANG_TILDE2] = ACTIONS(751), - [anon_sym_like2] = ACTIONS(751), - [anon_sym_not_DASHlike2] = ACTIONS(751), - [anon_sym_STAR_STAR2] = ACTIONS(751), - [anon_sym_PLUS_PLUS2] = ACTIONS(751), - [anon_sym_SLASH2] = ACTIONS(751), - [anon_sym_mod2] = ACTIONS(751), - [anon_sym_SLASH_SLASH2] = ACTIONS(751), - [anon_sym_PLUS2] = ACTIONS(751), - [anon_sym_bit_DASHshl2] = ACTIONS(751), - [anon_sym_bit_DASHshr2] = ACTIONS(751), - [anon_sym_bit_DASHand2] = ACTIONS(751), - [anon_sym_bit_DASHxor2] = ACTIONS(751), - [anon_sym_bit_DASHor2] = ACTIONS(751), - [anon_sym_DOT_DOT2] = ACTIONS(751), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(753), - [aux_sym__immediate_decimal_token5] = ACTIONS(757), - [sym_filesize_unit] = ACTIONS(751), - [sym_duration_unit] = ACTIONS(753), - [anon_sym_COLON2] = ACTIONS(751), - [anon_sym_err_GT] = ACTIONS(751), - [anon_sym_out_GT] = ACTIONS(751), - [anon_sym_e_GT] = ACTIONS(751), - [anon_sym_o_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT] = ACTIONS(751), - [anon_sym_err_GT_GT] = ACTIONS(751), - [anon_sym_out_GT_GT] = ACTIONS(751), - [anon_sym_e_GT_GT] = ACTIONS(751), - [anon_sym_o_GT_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(751), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token1] = ACTIONS(793), + [aux_sym__immediate_decimal_token5] = ACTIONS(795), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(101)] = { + [101] = { [sym_comment] = STATE(101), - [anon_sym_in] = ACTIONS(791), - [anon_sym_STAR_STAR] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_SLASH] = ACTIONS(791), - [anon_sym_mod] = ACTIONS(793), - [anon_sym_SLASH_SLASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_like] = ACTIONS(793), - [anon_sym_not_DASHlike] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_in2] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_has] = ACTIONS(793), - [anon_sym_not_DASHhas] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(793), - [aux_sym_cmd_identifier_token6] = ACTIONS(791), - [sym__newline] = ACTIONS(791), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_GT2] = ACTIONS(791), - [anon_sym_DASH2] = ACTIONS(791), - [anon_sym_RBRACE] = ACTIONS(791), - [anon_sym_STAR2] = ACTIONS(791), - [anon_sym_and2] = ACTIONS(791), - [anon_sym_xor2] = ACTIONS(791), - [anon_sym_or2] = ACTIONS(791), - [anon_sym_not_DASHin2] = ACTIONS(791), - [anon_sym_has2] = ACTIONS(791), - [anon_sym_not_DASHhas2] = ACTIONS(791), - [anon_sym_starts_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), - [anon_sym_ends_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), - [anon_sym_EQ_EQ2] = ACTIONS(791), - [anon_sym_BANG_EQ2] = ACTIONS(791), - [anon_sym_LT2] = ACTIONS(791), - [anon_sym_LT_EQ2] = ACTIONS(791), - [anon_sym_GT_EQ2] = ACTIONS(791), - [anon_sym_EQ_TILDE2] = ACTIONS(791), - [anon_sym_BANG_TILDE2] = ACTIONS(791), - [anon_sym_like2] = ACTIONS(791), - [anon_sym_not_DASHlike2] = ACTIONS(791), - [anon_sym_STAR_STAR2] = ACTIONS(791), - [anon_sym_PLUS_PLUS2] = ACTIONS(791), - [anon_sym_SLASH2] = ACTIONS(791), - [anon_sym_mod2] = ACTIONS(791), - [anon_sym_SLASH_SLASH2] = ACTIONS(791), - [anon_sym_PLUS2] = ACTIONS(791), - [anon_sym_bit_DASHshl2] = ACTIONS(791), - [anon_sym_bit_DASHshr2] = ACTIONS(791), - [anon_sym_bit_DASHand2] = ACTIONS(791), - [anon_sym_bit_DASHxor2] = ACTIONS(791), - [anon_sym_bit_DASHor2] = ACTIONS(791), - [anon_sym_DOT_DOT2] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(793), - [aux_sym__immediate_decimal_token5] = ACTIONS(795), - [sym_filesize_unit] = ACTIONS(791), - [sym_duration_unit] = ACTIONS(793), - [anon_sym_COLON2] = ACTIONS(791), - [anon_sym_err_GT] = ACTIONS(791), - [anon_sym_out_GT] = ACTIONS(791), - [anon_sym_e_GT] = ACTIONS(791), - [anon_sym_o_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT] = ACTIONS(791), - [anon_sym_err_GT_GT] = ACTIONS(791), - [anon_sym_out_GT_GT] = ACTIONS(791), - [anon_sym_e_GT_GT] = ACTIONS(791), - [anon_sym_o_GT_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_RPAREN] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT] = ACTIONS(797), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(799), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(763), + [anon_sym_out_GT_GT] = ACTIONS(763), + [anon_sym_e_GT_GT] = ACTIONS(763), + [anon_sym_o_GT_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(102)] = { + [102] = { [sym_comment] = STATE(102), - [anon_sym_in] = ACTIONS(751), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_like] = ACTIONS(753), - [anon_sym_not_DASHlike] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_in2] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_has] = ACTIONS(753), - [anon_sym_not_DASHhas] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_EQ] = ACTIONS(753), - [aux_sym_cmd_identifier_token6] = ACTIONS(751), - [sym__newline] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_err_GT_PIPE] = ACTIONS(751), - [anon_sym_out_GT_PIPE] = ACTIONS(751), - [anon_sym_e_GT_PIPE] = ACTIONS(751), - [anon_sym_o_GT_PIPE] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), - [anon_sym_GT2] = ACTIONS(751), - [anon_sym_DASH2] = ACTIONS(751), - [anon_sym_STAR2] = ACTIONS(751), - [anon_sym_and2] = ACTIONS(751), - [anon_sym_xor2] = ACTIONS(751), - [anon_sym_or2] = ACTIONS(751), - [anon_sym_not_DASHin2] = ACTIONS(751), - [anon_sym_has2] = ACTIONS(751), - [anon_sym_not_DASHhas2] = ACTIONS(751), - [anon_sym_starts_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), - [anon_sym_ends_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), - [anon_sym_EQ_EQ2] = ACTIONS(751), - [anon_sym_BANG_EQ2] = ACTIONS(751), - [anon_sym_LT2] = ACTIONS(751), - [anon_sym_LT_EQ2] = ACTIONS(751), - [anon_sym_GT_EQ2] = ACTIONS(751), - [anon_sym_EQ_TILDE2] = ACTIONS(751), - [anon_sym_BANG_TILDE2] = ACTIONS(751), - [anon_sym_like2] = ACTIONS(751), - [anon_sym_not_DASHlike2] = ACTIONS(751), - [anon_sym_STAR_STAR2] = ACTIONS(751), - [anon_sym_PLUS_PLUS2] = ACTIONS(751), - [anon_sym_SLASH2] = ACTIONS(751), - [anon_sym_mod2] = ACTIONS(751), - [anon_sym_SLASH_SLASH2] = ACTIONS(751), - [anon_sym_PLUS2] = ACTIONS(751), - [anon_sym_bit_DASHshl2] = ACTIONS(751), - [anon_sym_bit_DASHshr2] = ACTIONS(751), - [anon_sym_bit_DASHand2] = ACTIONS(751), - [anon_sym_bit_DASHxor2] = ACTIONS(751), - [anon_sym_bit_DASHor2] = ACTIONS(751), - [anon_sym_DOT_DOT2] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(753), - [aux_sym__immediate_decimal_token5] = ACTIONS(799), - [sym_filesize_unit] = ACTIONS(751), - [sym_duration_unit] = ACTIONS(753), - [anon_sym_err_GT] = ACTIONS(751), - [anon_sym_out_GT] = ACTIONS(751), - [anon_sym_e_GT] = ACTIONS(751), - [anon_sym_o_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT] = ACTIONS(751), - [anon_sym_err_GT_GT] = ACTIONS(751), - [anon_sym_out_GT_GT] = ACTIONS(751), - [anon_sym_e_GT_GT] = ACTIONS(751), - [anon_sym_o_GT_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(751), + [anon_sym_in] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_mod] = ACTIONS(803), + [anon_sym_SLASH_SLASH] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(803), + [anon_sym_bit_DASHshl] = ACTIONS(803), + [anon_sym_bit_DASHshr] = ACTIONS(803), + [anon_sym_EQ_TILDE] = ACTIONS(803), + [anon_sym_BANG_TILDE] = ACTIONS(803), + [anon_sym_like] = ACTIONS(803), + [anon_sym_not_DASHlike] = ACTIONS(803), + [anon_sym_bit_DASHand] = ACTIONS(803), + [anon_sym_bit_DASHxor] = ACTIONS(803), + [anon_sym_bit_DASHor] = ACTIONS(803), + [anon_sym_and] = ACTIONS(803), + [anon_sym_xor] = ACTIONS(803), + [anon_sym_or] = ACTIONS(803), + [anon_sym_in2] = ACTIONS(803), + [anon_sym_not_DASHin] = ACTIONS(803), + [anon_sym_has] = ACTIONS(803), + [anon_sym_not_DASHhas] = ACTIONS(803), + [anon_sym_starts_DASHwith] = ACTIONS(803), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(803), + [anon_sym_ends_DASHwith] = ACTIONS(803), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(803), + [anon_sym_EQ_EQ] = ACTIONS(803), + [anon_sym_BANG_EQ] = ACTIONS(803), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(803), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(803), + [aux_sym_cmd_identifier_token6] = ACTIONS(801), + [sym__newline] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_err_GT_PIPE] = ACTIONS(801), + [anon_sym_out_GT_PIPE] = ACTIONS(801), + [anon_sym_e_GT_PIPE] = ACTIONS(801), + [anon_sym_o_GT_PIPE] = ACTIONS(801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(801), + [anon_sym_GT2] = ACTIONS(801), + [anon_sym_DASH2] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_STAR2] = ACTIONS(801), + [anon_sym_and2] = ACTIONS(801), + [anon_sym_xor2] = ACTIONS(801), + [anon_sym_or2] = ACTIONS(801), + [anon_sym_not_DASHin2] = ACTIONS(801), + [anon_sym_has2] = ACTIONS(801), + [anon_sym_not_DASHhas2] = ACTIONS(801), + [anon_sym_starts_DASHwith2] = ACTIONS(801), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(801), + [anon_sym_ends_DASHwith2] = ACTIONS(801), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(801), + [anon_sym_EQ_EQ2] = ACTIONS(801), + [anon_sym_BANG_EQ2] = ACTIONS(801), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ2] = ACTIONS(801), + [anon_sym_GT_EQ2] = ACTIONS(801), + [anon_sym_EQ_TILDE2] = ACTIONS(801), + [anon_sym_BANG_TILDE2] = ACTIONS(801), + [anon_sym_like2] = ACTIONS(801), + [anon_sym_not_DASHlike2] = ACTIONS(801), + [anon_sym_STAR_STAR2] = ACTIONS(801), + [anon_sym_PLUS_PLUS2] = ACTIONS(801), + [anon_sym_SLASH2] = ACTIONS(801), + [anon_sym_mod2] = ACTIONS(801), + [anon_sym_SLASH_SLASH2] = ACTIONS(801), + [anon_sym_PLUS2] = ACTIONS(801), + [anon_sym_bit_DASHshl2] = ACTIONS(801), + [anon_sym_bit_DASHshr2] = ACTIONS(801), + [anon_sym_bit_DASHand2] = ACTIONS(801), + [anon_sym_bit_DASHxor2] = ACTIONS(801), + [anon_sym_bit_DASHor2] = ACTIONS(801), + [anon_sym_DOT_DOT2] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), + [anon_sym_DOT_DOT_LT2] = ACTIONS(803), + [sym_filesize_unit] = ACTIONS(801), + [sym_duration_unit] = ACTIONS(803), + [anon_sym_COLON2] = ACTIONS(801), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [anon_sym_err_GT_GT] = ACTIONS(801), + [anon_sym_out_GT_GT] = ACTIONS(801), + [anon_sym_e_GT_GT] = ACTIONS(801), + [anon_sym_o_GT_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(801), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(103)] = { + [103] = { [sym_comment] = STATE(103), - [ts_builtin_sym_end] = ACTIONS(793), - [anon_sym_in] = ACTIONS(791), - [anon_sym_STAR_STAR] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_SLASH] = ACTIONS(791), - [anon_sym_mod] = ACTIONS(793), - [anon_sym_SLASH_SLASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_like] = ACTIONS(793), - [anon_sym_not_DASHlike] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_in2] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_has] = ACTIONS(793), - [anon_sym_not_DASHhas] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(793), - [aux_sym_cmd_identifier_token6] = ACTIONS(791), - [sym__newline] = ACTIONS(791), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_GT2] = ACTIONS(791), - [anon_sym_DASH2] = ACTIONS(791), - [anon_sym_STAR2] = ACTIONS(791), - [anon_sym_and2] = ACTIONS(791), - [anon_sym_xor2] = ACTIONS(791), - [anon_sym_or2] = ACTIONS(791), - [anon_sym_not_DASHin2] = ACTIONS(791), - [anon_sym_has2] = ACTIONS(791), - [anon_sym_not_DASHhas2] = ACTIONS(791), - [anon_sym_starts_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), - [anon_sym_ends_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), - [anon_sym_EQ_EQ2] = ACTIONS(791), - [anon_sym_BANG_EQ2] = ACTIONS(791), - [anon_sym_LT2] = ACTIONS(791), - [anon_sym_LT_EQ2] = ACTIONS(791), - [anon_sym_GT_EQ2] = ACTIONS(791), - [anon_sym_EQ_TILDE2] = ACTIONS(791), - [anon_sym_BANG_TILDE2] = ACTIONS(791), - [anon_sym_like2] = ACTIONS(791), - [anon_sym_not_DASHlike2] = ACTIONS(791), - [anon_sym_STAR_STAR2] = ACTIONS(791), - [anon_sym_PLUS_PLUS2] = ACTIONS(791), - [anon_sym_SLASH2] = ACTIONS(791), - [anon_sym_mod2] = ACTIONS(791), - [anon_sym_SLASH_SLASH2] = ACTIONS(791), - [anon_sym_PLUS2] = ACTIONS(791), - [anon_sym_bit_DASHshl2] = ACTIONS(791), - [anon_sym_bit_DASHshr2] = ACTIONS(791), - [anon_sym_bit_DASHand2] = ACTIONS(791), - [anon_sym_bit_DASHxor2] = ACTIONS(791), - [anon_sym_bit_DASHor2] = ACTIONS(791), - [anon_sym_DOT_DOT2] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(793), - [aux_sym__immediate_decimal_token5] = ACTIONS(801), - [sym_filesize_unit] = ACTIONS(791), - [sym_duration_unit] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(791), - [anon_sym_out_GT] = ACTIONS(791), - [anon_sym_e_GT] = ACTIONS(791), - [anon_sym_o_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT] = ACTIONS(791), - [anon_sym_err_GT_GT] = ACTIONS(791), - [anon_sym_out_GT_GT] = ACTIONS(791), - [anon_sym_e_GT_GT] = ACTIONS(791), - [anon_sym_o_GT_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_COLON2] = ACTIONS(755), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(104)] = { + [104] = { [sym_comment] = STATE(104), - [anon_sym_in] = ACTIONS(751), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_like] = ACTIONS(753), - [anon_sym_not_DASHlike] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_in2] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_has] = ACTIONS(753), - [anon_sym_not_DASHhas] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_EQ] = ACTIONS(753), - [aux_sym_cmd_identifier_token6] = ACTIONS(751), - [sym__newline] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_err_GT_PIPE] = ACTIONS(751), - [anon_sym_out_GT_PIPE] = ACTIONS(751), - [anon_sym_e_GT_PIPE] = ACTIONS(751), - [anon_sym_o_GT_PIPE] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), - [anon_sym_GT2] = ACTIONS(751), - [anon_sym_DASH2] = ACTIONS(751), - [anon_sym_RBRACE] = ACTIONS(751), - [anon_sym_STAR2] = ACTIONS(751), - [anon_sym_and2] = ACTIONS(751), - [anon_sym_xor2] = ACTIONS(751), - [anon_sym_or2] = ACTIONS(751), - [anon_sym_not_DASHin2] = ACTIONS(751), - [anon_sym_has2] = ACTIONS(751), - [anon_sym_not_DASHhas2] = ACTIONS(751), - [anon_sym_starts_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), - [anon_sym_ends_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), - [anon_sym_EQ_EQ2] = ACTIONS(751), - [anon_sym_BANG_EQ2] = ACTIONS(751), - [anon_sym_LT2] = ACTIONS(751), - [anon_sym_LT_EQ2] = ACTIONS(751), - [anon_sym_GT_EQ2] = ACTIONS(751), - [anon_sym_EQ_TILDE2] = ACTIONS(751), - [anon_sym_BANG_TILDE2] = ACTIONS(751), - [anon_sym_like2] = ACTIONS(751), - [anon_sym_not_DASHlike2] = ACTIONS(751), - [anon_sym_STAR_STAR2] = ACTIONS(751), - [anon_sym_PLUS_PLUS2] = ACTIONS(751), - [anon_sym_SLASH2] = ACTIONS(751), - [anon_sym_mod2] = ACTIONS(751), - [anon_sym_SLASH_SLASH2] = ACTIONS(751), - [anon_sym_PLUS2] = ACTIONS(751), - [anon_sym_bit_DASHshl2] = ACTIONS(751), - [anon_sym_bit_DASHshr2] = ACTIONS(751), - [anon_sym_bit_DASHand2] = ACTIONS(751), - [anon_sym_bit_DASHxor2] = ACTIONS(751), - [anon_sym_bit_DASHor2] = ACTIONS(751), - [anon_sym_DOT_DOT2] = ACTIONS(751), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(753), - [aux_sym__immediate_decimal_token5] = ACTIONS(769), - [sym_filesize_unit] = ACTIONS(751), - [sym_duration_unit] = ACTIONS(753), - [anon_sym_err_GT] = ACTIONS(751), - [anon_sym_out_GT] = ACTIONS(751), - [anon_sym_e_GT] = ACTIONS(751), - [anon_sym_o_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT] = ACTIONS(751), - [anon_sym_err_GT_GT] = ACTIONS(751), - [anon_sym_out_GT_GT] = ACTIONS(751), - [anon_sym_e_GT_GT] = ACTIONS(751), - [anon_sym_o_GT_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(751), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_RPAREN] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(799), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(763), + [anon_sym_out_GT_GT] = ACTIONS(763), + [anon_sym_e_GT_GT] = ACTIONS(763), + [anon_sym_o_GT_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(105)] = { + [105] = { [sym_comment] = STATE(105), - [anon_sym_in] = ACTIONS(803), - [anon_sym_STAR_STAR] = ACTIONS(805), - [anon_sym_PLUS_PLUS] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(803), - [anon_sym_mod] = ACTIONS(805), - [anon_sym_SLASH_SLASH] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(803), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_bit_DASHshl] = ACTIONS(805), - [anon_sym_bit_DASHshr] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(805), - [anon_sym_BANG_TILDE] = ACTIONS(805), - [anon_sym_like] = ACTIONS(805), - [anon_sym_not_DASHlike] = ACTIONS(805), - [anon_sym_bit_DASHand] = ACTIONS(805), - [anon_sym_bit_DASHxor] = ACTIONS(805), - [anon_sym_bit_DASHor] = ACTIONS(805), - [anon_sym_and] = ACTIONS(805), - [anon_sym_xor] = ACTIONS(805), - [anon_sym_or] = ACTIONS(805), - [anon_sym_in2] = ACTIONS(805), - [anon_sym_not_DASHin] = ACTIONS(805), - [anon_sym_has] = ACTIONS(805), - [anon_sym_not_DASHhas] = ACTIONS(805), - [anon_sym_starts_DASHwith] = ACTIONS(805), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(805), - [anon_sym_ends_DASHwith] = ACTIONS(805), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(805), - [anon_sym_EQ_EQ] = ACTIONS(805), - [anon_sym_BANG_EQ] = ACTIONS(805), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_LT_EQ] = ACTIONS(805), - [anon_sym_GT] = ACTIONS(803), - [anon_sym_GT_EQ] = ACTIONS(805), - [aux_sym_cmd_identifier_token6] = ACTIONS(803), - [sym__newline] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_PIPE] = ACTIONS(803), - [anon_sym_err_GT_PIPE] = ACTIONS(803), - [anon_sym_out_GT_PIPE] = ACTIONS(803), - [anon_sym_e_GT_PIPE] = ACTIONS(803), - [anon_sym_o_GT_PIPE] = ACTIONS(803), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(803), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(803), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(803), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(803), - [anon_sym_GT2] = ACTIONS(803), - [anon_sym_DASH2] = ACTIONS(803), - [anon_sym_RBRACE] = ACTIONS(803), - [anon_sym_STAR2] = ACTIONS(803), - [anon_sym_and2] = ACTIONS(803), - [anon_sym_xor2] = ACTIONS(803), - [anon_sym_or2] = ACTIONS(803), - [anon_sym_not_DASHin2] = ACTIONS(803), - [anon_sym_has2] = ACTIONS(803), - [anon_sym_not_DASHhas2] = ACTIONS(803), - [anon_sym_starts_DASHwith2] = ACTIONS(803), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(803), - [anon_sym_ends_DASHwith2] = ACTIONS(803), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(803), - [anon_sym_EQ_EQ2] = ACTIONS(803), - [anon_sym_BANG_EQ2] = ACTIONS(803), - [anon_sym_LT2] = ACTIONS(803), - [anon_sym_LT_EQ2] = ACTIONS(803), - [anon_sym_GT_EQ2] = ACTIONS(803), - [anon_sym_EQ_TILDE2] = ACTIONS(803), - [anon_sym_BANG_TILDE2] = ACTIONS(803), - [anon_sym_like2] = ACTIONS(803), - [anon_sym_not_DASHlike2] = ACTIONS(803), - [anon_sym_STAR_STAR2] = ACTIONS(803), - [anon_sym_PLUS_PLUS2] = ACTIONS(803), - [anon_sym_SLASH2] = ACTIONS(803), - [anon_sym_mod2] = ACTIONS(803), - [anon_sym_SLASH_SLASH2] = ACTIONS(803), - [anon_sym_PLUS2] = ACTIONS(803), - [anon_sym_bit_DASHshl2] = ACTIONS(803), - [anon_sym_bit_DASHshr2] = ACTIONS(803), - [anon_sym_bit_DASHand2] = ACTIONS(803), - [anon_sym_bit_DASHxor2] = ACTIONS(803), - [anon_sym_bit_DASHor2] = ACTIONS(803), - [anon_sym_DOT_DOT2] = ACTIONS(803), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(805), - [anon_sym_DOT_DOT_LT2] = ACTIONS(805), - [sym_filesize_unit] = ACTIONS(803), - [sym_duration_unit] = ACTIONS(805), - [anon_sym_COLON2] = ACTIONS(803), - [anon_sym_err_GT] = ACTIONS(803), - [anon_sym_out_GT] = ACTIONS(803), - [anon_sym_e_GT] = ACTIONS(803), - [anon_sym_o_GT] = ACTIONS(803), - [anon_sym_err_PLUSout_GT] = ACTIONS(803), - [anon_sym_out_PLUSerr_GT] = ACTIONS(803), - [anon_sym_o_PLUSe_GT] = ACTIONS(803), - [anon_sym_e_PLUSo_GT] = ACTIONS(803), - [anon_sym_err_GT_GT] = ACTIONS(803), - [anon_sym_out_GT_GT] = ACTIONS(803), - [anon_sym_e_GT_GT] = ACTIONS(803), - [anon_sym_o_GT_GT] = ACTIONS(803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(803), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT] = ACTIONS(805), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(807), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(763), + [anon_sym_out_GT_GT] = ACTIONS(763), + [anon_sym_e_GT_GT] = ACTIONS(763), + [anon_sym_o_GT_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(106)] = { + [106] = { [sym_comment] = STATE(106), - [ts_builtin_sym_end] = ACTIONS(753), - [anon_sym_in] = ACTIONS(751), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_like] = ACTIONS(753), - [anon_sym_not_DASHlike] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_in2] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_has] = ACTIONS(753), - [anon_sym_not_DASHhas] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_EQ] = ACTIONS(753), - [aux_sym_cmd_identifier_token6] = ACTIONS(751), - [sym__newline] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_err_GT_PIPE] = ACTIONS(751), - [anon_sym_out_GT_PIPE] = ACTIONS(751), - [anon_sym_e_GT_PIPE] = ACTIONS(751), - [anon_sym_o_GT_PIPE] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), - [anon_sym_GT2] = ACTIONS(751), - [anon_sym_DASH2] = ACTIONS(751), - [anon_sym_STAR2] = ACTIONS(751), - [anon_sym_and2] = ACTIONS(751), - [anon_sym_xor2] = ACTIONS(751), - [anon_sym_or2] = ACTIONS(751), - [anon_sym_not_DASHin2] = ACTIONS(751), - [anon_sym_has2] = ACTIONS(751), - [anon_sym_not_DASHhas2] = ACTIONS(751), - [anon_sym_starts_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), - [anon_sym_ends_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), - [anon_sym_EQ_EQ2] = ACTIONS(751), - [anon_sym_BANG_EQ2] = ACTIONS(751), - [anon_sym_LT2] = ACTIONS(751), - [anon_sym_LT_EQ2] = ACTIONS(751), - [anon_sym_GT_EQ2] = ACTIONS(751), - [anon_sym_EQ_TILDE2] = ACTIONS(751), - [anon_sym_BANG_TILDE2] = ACTIONS(751), - [anon_sym_like2] = ACTIONS(751), - [anon_sym_not_DASHlike2] = ACTIONS(751), - [anon_sym_STAR_STAR2] = ACTIONS(751), - [anon_sym_PLUS_PLUS2] = ACTIONS(751), - [anon_sym_SLASH2] = ACTIONS(751), - [anon_sym_mod2] = ACTIONS(751), - [anon_sym_SLASH_SLASH2] = ACTIONS(751), - [anon_sym_PLUS2] = ACTIONS(751), - [anon_sym_bit_DASHshl2] = ACTIONS(751), - [anon_sym_bit_DASHshr2] = ACTIONS(751), - [anon_sym_bit_DASHand2] = ACTIONS(751), - [anon_sym_bit_DASHxor2] = ACTIONS(751), - [anon_sym_bit_DASHor2] = ACTIONS(751), - [anon_sym_DOT_DOT2] = ACTIONS(751), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(753), - [aux_sym__immediate_decimal_token5] = ACTIONS(777), - [sym_filesize_unit] = ACTIONS(751), - [sym_duration_unit] = ACTIONS(753), - [anon_sym_err_GT] = ACTIONS(751), - [anon_sym_out_GT] = ACTIONS(751), - [anon_sym_e_GT] = ACTIONS(751), - [anon_sym_o_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT] = ACTIONS(751), - [anon_sym_err_GT_GT] = ACTIONS(751), - [anon_sym_out_GT_GT] = ACTIONS(751), - [anon_sym_e_GT_GT] = ACTIONS(751), - [anon_sym_o_GT_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(751), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(107)] = { - [sym_comment] = STATE(107), - [anon_sym_in] = ACTIONS(759), - [anon_sym_STAR_STAR] = ACTIONS(761), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_mod] = ACTIONS(761), - [anon_sym_SLASH_SLASH] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_bit_DASHshl] = ACTIONS(761), - [anon_sym_bit_DASHshr] = ACTIONS(761), - [anon_sym_EQ_TILDE] = ACTIONS(761), - [anon_sym_BANG_TILDE] = ACTIONS(761), - [anon_sym_like] = ACTIONS(761), - [anon_sym_not_DASHlike] = ACTIONS(761), - [anon_sym_bit_DASHand] = ACTIONS(761), - [anon_sym_bit_DASHxor] = ACTIONS(761), - [anon_sym_bit_DASHor] = ACTIONS(761), - [anon_sym_and] = ACTIONS(761), - [anon_sym_xor] = ACTIONS(761), - [anon_sym_or] = ACTIONS(761), - [anon_sym_in2] = ACTIONS(761), - [anon_sym_not_DASHin] = ACTIONS(761), - [anon_sym_has] = ACTIONS(761), - [anon_sym_not_DASHhas] = ACTIONS(761), - [anon_sym_starts_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), - [anon_sym_ends_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), - [anon_sym_EQ_EQ] = ACTIONS(761), - [anon_sym_BANG_EQ] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_LT_EQ] = ACTIONS(761), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_GT_EQ] = ACTIONS(761), - [aux_sym_cmd_identifier_token6] = ACTIONS(759), - [sym__newline] = ACTIONS(759), - [anon_sym_SEMI] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_err_GT_PIPE] = ACTIONS(759), - [anon_sym_out_GT_PIPE] = ACTIONS(759), - [anon_sym_e_GT_PIPE] = ACTIONS(759), - [anon_sym_o_GT_PIPE] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), - [anon_sym_GT2] = ACTIONS(759), - [anon_sym_DASH2] = ACTIONS(759), - [anon_sym_STAR2] = ACTIONS(759), - [anon_sym_and2] = ACTIONS(759), - [anon_sym_xor2] = ACTIONS(759), - [anon_sym_or2] = ACTIONS(759), - [anon_sym_not_DASHin2] = ACTIONS(759), - [anon_sym_has2] = ACTIONS(759), - [anon_sym_not_DASHhas2] = ACTIONS(759), - [anon_sym_starts_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), - [anon_sym_ends_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), - [anon_sym_EQ_EQ2] = ACTIONS(759), - [anon_sym_BANG_EQ2] = ACTIONS(759), - [anon_sym_LT2] = ACTIONS(759), - [anon_sym_LT_EQ2] = ACTIONS(759), - [anon_sym_GT_EQ2] = ACTIONS(759), - [anon_sym_EQ_TILDE2] = ACTIONS(759), - [anon_sym_BANG_TILDE2] = ACTIONS(759), - [anon_sym_like2] = ACTIONS(759), - [anon_sym_not_DASHlike2] = ACTIONS(759), - [anon_sym_STAR_STAR2] = ACTIONS(759), - [anon_sym_PLUS_PLUS2] = ACTIONS(759), - [anon_sym_SLASH2] = ACTIONS(759), - [anon_sym_mod2] = ACTIONS(759), - [anon_sym_SLASH_SLASH2] = ACTIONS(759), - [anon_sym_PLUS2] = ACTIONS(759), - [anon_sym_bit_DASHshl2] = ACTIONS(759), - [anon_sym_bit_DASHshr2] = ACTIONS(759), - [anon_sym_bit_DASHand2] = ACTIONS(759), - [anon_sym_bit_DASHxor2] = ACTIONS(759), - [anon_sym_bit_DASHor2] = ACTIONS(759), - [anon_sym_DOT_DOT2] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(761), - [aux_sym__immediate_decimal_token1] = ACTIONS(807), + [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(809), - [sym_filesize_unit] = ACTIONS(759), - [sym_duration_unit] = ACTIONS(761), - [anon_sym_err_GT] = ACTIONS(759), - [anon_sym_out_GT] = ACTIONS(759), - [anon_sym_e_GT] = ACTIONS(759), - [anon_sym_o_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT] = ACTIONS(759), - [anon_sym_err_GT_GT] = ACTIONS(759), - [anon_sym_out_GT_GT] = ACTIONS(759), - [anon_sym_e_GT_GT] = ACTIONS(759), - [anon_sym_o_GT_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), + [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(105), }, - [STATE(108)] = { - [sym_comment] = STATE(108), + [107] = { + [sym_comment] = STATE(107), [anon_sym_in] = ACTIONS(811), [anon_sym_STAR_STAR] = ACTIONS(813), [anon_sym_PLUS_PLUS] = ACTIONS(813), @@ -53389,1111 +53230,900 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(811), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(109)] = { + [108] = { + [sym_comment] = STATE(108), + [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(827), + [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(105), + }, + [109] = { + [sym_expr_parenthesized] = STATE(2713), + [sym__spread_parenthesized] = STATE(3207), + [sym_val_range] = STATE(3210), + [sym__val_range] = STATE(4890), + [sym__value] = STATE(3210), + [sym_val_nothing] = STATE(3096), + [sym_val_bool] = STATE(2760), + [sym__spread_variable] = STATE(3211), + [sym_val_variable] = STATE(2716), + [sym_val_cellpath] = STATE(3096), + [sym_val_number] = STATE(3096), + [sym__val_number_decimal] = STATE(2420), + [sym__val_number] = STATE(3095), + [sym_val_duration] = STATE(3096), + [sym_val_filesize] = STATE(3096), + [sym_val_binary] = STATE(3096), + [sym_val_string] = STATE(3096), + [sym__raw_str] = STATE(2515), + [sym__str_double_quotes] = STATE(2515), + [sym__str_single_quotes] = STATE(2515), + [sym__str_back_ticks] = STATE(2515), + [sym_val_interpolated] = STATE(3096), + [sym__inter_single_quotes] = STATE(3090), + [sym__inter_double_quotes] = STATE(3091), + [sym_val_list] = STATE(3096), + [sym__spread_list] = STATE(3207), + [sym_val_record] = STATE(3096), + [sym_val_table] = STATE(3096), + [sym_val_closure] = STATE(3096), + [sym__cmd_arg] = STATE(3214), + [sym_redirection] = STATE(3215), + [sym__flag] = STATE(3216), + [sym_short_flag] = STATE(3217), + [sym_long_flag] = STATE(3217), + [sym_unquoted] = STATE(2839), + [sym__unquoted_with_expr] = STATE(3218), + [sym__unquoted_anonymous_prefix] = STATE(4890), [sym_comment] = STATE(109), - [anon_sym_in] = ACTIONS(751), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_like] = ACTIONS(753), - [anon_sym_not_DASHlike] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_in2] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_has] = ACTIONS(753), - [anon_sym_not_DASHhas] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_EQ] = ACTIONS(753), - [aux_sym_cmd_identifier_token6] = ACTIONS(751), - [sym__newline] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_err_GT_PIPE] = ACTIONS(751), - [anon_sym_out_GT_PIPE] = ACTIONS(751), - [anon_sym_e_GT_PIPE] = ACTIONS(751), - [anon_sym_o_GT_PIPE] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_GT2] = ACTIONS(751), - [anon_sym_DASH2] = ACTIONS(751), - [anon_sym_STAR2] = ACTIONS(751), - [anon_sym_and2] = ACTIONS(751), - [anon_sym_xor2] = ACTIONS(751), - [anon_sym_or2] = ACTIONS(751), - [anon_sym_not_DASHin2] = ACTIONS(751), - [anon_sym_has2] = ACTIONS(751), - [anon_sym_not_DASHhas2] = ACTIONS(751), - [anon_sym_starts_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), - [anon_sym_ends_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), - [anon_sym_EQ_EQ2] = ACTIONS(751), - [anon_sym_BANG_EQ2] = ACTIONS(751), - [anon_sym_LT2] = ACTIONS(751), - [anon_sym_LT_EQ2] = ACTIONS(751), - [anon_sym_GT_EQ2] = ACTIONS(751), - [anon_sym_EQ_TILDE2] = ACTIONS(751), - [anon_sym_BANG_TILDE2] = ACTIONS(751), - [anon_sym_like2] = ACTIONS(751), - [anon_sym_not_DASHlike2] = ACTIONS(751), - [anon_sym_STAR_STAR2] = ACTIONS(751), - [anon_sym_PLUS_PLUS2] = ACTIONS(751), - [anon_sym_SLASH2] = ACTIONS(751), - [anon_sym_mod2] = ACTIONS(751), - [anon_sym_SLASH_SLASH2] = ACTIONS(751), - [anon_sym_PLUS2] = ACTIONS(751), - [anon_sym_bit_DASHshl2] = ACTIONS(751), - [anon_sym_bit_DASHshr2] = ACTIONS(751), - [anon_sym_bit_DASHand2] = ACTIONS(751), - [anon_sym_bit_DASHxor2] = ACTIONS(751), - [anon_sym_bit_DASHor2] = ACTIONS(751), - [anon_sym_DOT_DOT2] = ACTIONS(751), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(753), - [aux_sym__immediate_decimal_token5] = ACTIONS(789), - [sym_filesize_unit] = ACTIONS(751), - [sym_duration_unit] = ACTIONS(753), - [anon_sym_err_GT] = ACTIONS(751), - [anon_sym_out_GT] = ACTIONS(751), - [anon_sym_e_GT] = ACTIONS(751), - [anon_sym_o_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT] = ACTIONS(751), - [anon_sym_err_GT_GT] = ACTIONS(751), - [anon_sym_out_GT_GT] = ACTIONS(751), - [anon_sym_e_GT_GT] = ACTIONS(751), - [anon_sym_o_GT_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(751), + [anon_sym_true] = ACTIONS(829), + [anon_sym_false] = ACTIONS(829), + [anon_sym_null] = ACTIONS(831), + [aux_sym_cmd_identifier_token3] = ACTIONS(833), + [aux_sym_cmd_identifier_token4] = ACTIONS(833), + [aux_sym_cmd_identifier_token5] = ACTIONS(833), + [sym__newline] = ACTIONS(835), + [sym__space] = ACTIONS(837), + [anon_sym_SEMI] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_err_GT_PIPE] = ACTIONS(835), + [anon_sym_out_GT_PIPE] = ACTIONS(835), + [anon_sym_e_GT_PIPE] = ACTIONS(835), + [anon_sym_o_GT_PIPE] = ACTIONS(835), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(835), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(835), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(835), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(839), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_RPAREN] = ACTIONS(835), + [anon_sym_DOLLAR] = ACTIONS(843), + [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_DASH2] = ACTIONS(847), + [anon_sym_LBRACE] = ACTIONS(849), + [anon_sym_RBRACE] = ACTIONS(835), + [anon_sym_DOT_DOT] = ACTIONS(851), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(855), + [anon_sym_DOT_DOT_LT] = ACTIONS(855), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(857), + [aux_sym__val_number_decimal_token1] = ACTIONS(859), + [aux_sym__val_number_decimal_token2] = ACTIONS(859), + [aux_sym__val_number_decimal_token3] = ACTIONS(861), + [aux_sym__val_number_decimal_token4] = ACTIONS(861), + [aux_sym__val_number_token1] = ACTIONS(863), + [aux_sym__val_number_token2] = ACTIONS(863), + [aux_sym__val_number_token3] = ACTIONS(863), + [anon_sym_0b] = ACTIONS(865), + [anon_sym_0o] = ACTIONS(867), + [anon_sym_0x] = ACTIONS(867), + [sym_val_date] = ACTIONS(869), + [anon_sym_DQUOTE] = ACTIONS(871), + [anon_sym_SQUOTE] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(879), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(881), + [anon_sym_err_GT] = ACTIONS(883), + [anon_sym_out_GT] = ACTIONS(883), + [anon_sym_e_GT] = ACTIONS(883), + [anon_sym_o_GT] = ACTIONS(883), + [anon_sym_err_PLUSout_GT] = ACTIONS(883), + [anon_sym_out_PLUSerr_GT] = ACTIONS(883), + [anon_sym_o_PLUSe_GT] = ACTIONS(883), + [anon_sym_e_PLUSo_GT] = ACTIONS(883), + [anon_sym_err_GT_GT] = ACTIONS(883), + [anon_sym_out_GT_GT] = ACTIONS(883), + [anon_sym_e_GT_GT] = ACTIONS(883), + [anon_sym_o_GT_GT] = ACTIONS(883), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(883), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(883), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(883), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(883), + [aux_sym_unquoted_token1] = ACTIONS(885), [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(887), }, - [STATE(110)] = { - [sym_expr_parenthesized] = STATE(2709), - [sym__spread_parenthesized] = STATE(3240), - [sym_val_range] = STATE(3250), - [sym__val_range] = STATE(4751), - [sym__value] = STATE(3250), - [sym_val_nothing] = STATE(3138), - [sym_val_bool] = STATE(2899), - [sym__spread_variable] = STATE(3259), - [sym_val_variable] = STATE(2712), - [sym_val_cellpath] = STATE(3138), - [sym_val_number] = STATE(3138), - [sym__val_number_decimal] = STATE(2418), - [sym__val_number] = STATE(3139), - [sym_val_duration] = STATE(3138), - [sym_val_filesize] = STATE(3138), - [sym_val_binary] = STATE(3138), - [sym_val_string] = STATE(3138), - [sym__raw_str] = STATE(2503), - [sym__str_double_quotes] = STATE(2503), - [sym__str_single_quotes] = STATE(2503), - [sym__str_back_ticks] = STATE(2503), - [sym_val_interpolated] = STATE(3138), - [sym__inter_single_quotes] = STATE(3179), - [sym__inter_double_quotes] = STATE(3180), - [sym_val_list] = STATE(3138), - [sym__spread_list] = STATE(3240), - [sym_val_record] = STATE(3138), - [sym_val_table] = STATE(3138), - [sym_val_closure] = STATE(3138), - [sym__cmd_arg] = STATE(3260), - [sym_redirection] = STATE(3222), - [sym__flag] = STATE(3262), - [sym_short_flag] = STATE(3082), - [sym_long_flag] = STATE(3082), - [sym_unquoted] = STATE(2734), - [sym__unquoted_with_expr] = STATE(3102), - [sym__unquoted_anonymous_prefix] = STATE(4751), + [110] = { [sym_comment] = STATE(110), - [anon_sym_true] = ACTIONS(827), - [anon_sym_false] = ACTIONS(827), - [anon_sym_null] = ACTIONS(829), - [aux_sym_cmd_identifier_token3] = ACTIONS(831), - [aux_sym_cmd_identifier_token4] = ACTIONS(831), - [aux_sym_cmd_identifier_token5] = ACTIONS(831), - [sym__newline] = ACTIONS(833), - [sym__space] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(833), - [anon_sym_PIPE] = ACTIONS(833), - [anon_sym_err_GT_PIPE] = ACTIONS(833), - [anon_sym_out_GT_PIPE] = ACTIONS(833), - [anon_sym_e_GT_PIPE] = ACTIONS(833), - [anon_sym_o_GT_PIPE] = ACTIONS(833), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(833), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(833), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(833), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(837), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(841), - [anon_sym_DASH_DASH] = ACTIONS(843), - [anon_sym_DASH2] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_RBRACE] = ACTIONS(833), - [anon_sym_DOT_DOT] = ACTIONS(849), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(851), - [anon_sym_DOT_DOT_EQ] = ACTIONS(853), - [anon_sym_DOT_DOT_LT] = ACTIONS(853), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(855), - [aux_sym__val_number_decimal_token1] = ACTIONS(857), - [aux_sym__val_number_decimal_token2] = ACTIONS(857), - [aux_sym__val_number_decimal_token3] = ACTIONS(859), - [aux_sym__val_number_decimal_token4] = ACTIONS(859), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(863), - [anon_sym_0o] = ACTIONS(865), - [anon_sym_0x] = ACTIONS(865), - [sym_val_date] = ACTIONS(867), - [anon_sym_DQUOTE] = ACTIONS(869), - [anon_sym_SQUOTE] = ACTIONS(871), - [anon_sym_BQUOTE] = ACTIONS(873), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(879), - [anon_sym_err_GT] = ACTIONS(881), - [anon_sym_out_GT] = ACTIONS(881), - [anon_sym_e_GT] = ACTIONS(881), - [anon_sym_o_GT] = ACTIONS(881), - [anon_sym_err_PLUSout_GT] = ACTIONS(881), - [anon_sym_out_PLUSerr_GT] = ACTIONS(881), - [anon_sym_o_PLUSe_GT] = ACTIONS(881), - [anon_sym_e_PLUSo_GT] = ACTIONS(881), - [anon_sym_err_GT_GT] = ACTIONS(881), - [anon_sym_out_GT_GT] = ACTIONS(881), - [anon_sym_e_GT_GT] = ACTIONS(881), - [anon_sym_o_GT_GT] = ACTIONS(881), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(881), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(881), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(881), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(881), - [aux_sym_unquoted_token1] = ACTIONS(883), + [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(105), - [sym_raw_string_begin] = ACTIONS(885), - }, - [STATE(111)] = { - [sym_expr_parenthesized] = STATE(2709), - [sym__spread_parenthesized] = STATE(3240), - [sym_val_range] = STATE(3250), - [sym__val_range] = STATE(4751), - [sym__value] = STATE(3250), - [sym_val_nothing] = STATE(3138), - [sym_val_bool] = STATE(2899), - [sym__spread_variable] = STATE(3259), - [sym_val_variable] = STATE(2712), - [sym_val_cellpath] = STATE(3138), - [sym_val_number] = STATE(3138), - [sym__val_number_decimal] = STATE(2418), - [sym__val_number] = STATE(3139), - [sym_val_duration] = STATE(3138), - [sym_val_filesize] = STATE(3138), - [sym_val_binary] = STATE(3138), - [sym_val_string] = STATE(3138), - [sym__raw_str] = STATE(2503), - [sym__str_double_quotes] = STATE(2503), - [sym__str_single_quotes] = STATE(2503), - [sym__str_back_ticks] = STATE(2503), - [sym_val_interpolated] = STATE(3138), - [sym__inter_single_quotes] = STATE(3179), - [sym__inter_double_quotes] = STATE(3180), - [sym_val_list] = STATE(3138), - [sym__spread_list] = STATE(3240), - [sym_val_record] = STATE(3138), - [sym_val_table] = STATE(3138), - [sym_val_closure] = STATE(3138), - [sym__cmd_arg] = STATE(3260), - [sym_redirection] = STATE(3222), - [sym__flag] = STATE(3262), - [sym_short_flag] = STATE(3082), - [sym_long_flag] = STATE(3082), - [sym_unquoted] = STATE(2734), - [sym__unquoted_with_expr] = STATE(3102), - [sym__unquoted_anonymous_prefix] = STATE(4751), + }, + [111] = { [sym_comment] = STATE(111), - [anon_sym_true] = ACTIONS(827), - [anon_sym_false] = ACTIONS(827), - [anon_sym_null] = ACTIONS(829), - [aux_sym_cmd_identifier_token3] = ACTIONS(831), - [aux_sym_cmd_identifier_token4] = ACTIONS(831), - [aux_sym_cmd_identifier_token5] = ACTIONS(831), - [sym__newline] = ACTIONS(887), - [sym__space] = ACTIONS(887), - [anon_sym_SEMI] = ACTIONS(833), - [anon_sym_PIPE] = ACTIONS(833), - [anon_sym_err_GT_PIPE] = ACTIONS(833), - [anon_sym_out_GT_PIPE] = ACTIONS(833), - [anon_sym_e_GT_PIPE] = ACTIONS(833), - [anon_sym_o_GT_PIPE] = ACTIONS(833), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(833), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(833), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(833), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(837), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(841), - [anon_sym_DASH_DASH] = ACTIONS(843), - [anon_sym_DASH2] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_RBRACE] = ACTIONS(833), - [anon_sym_DOT_DOT] = ACTIONS(849), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(851), - [anon_sym_DOT_DOT_EQ] = ACTIONS(853), - [anon_sym_DOT_DOT_LT] = ACTIONS(853), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(855), - [aux_sym__val_number_decimal_token1] = ACTIONS(857), - [aux_sym__val_number_decimal_token2] = ACTIONS(857), - [aux_sym__val_number_decimal_token3] = ACTIONS(859), - [aux_sym__val_number_decimal_token4] = ACTIONS(859), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(863), - [anon_sym_0o] = ACTIONS(865), - [anon_sym_0x] = ACTIONS(865), - [sym_val_date] = ACTIONS(867), - [anon_sym_DQUOTE] = ACTIONS(869), - [anon_sym_SQUOTE] = ACTIONS(871), - [anon_sym_BQUOTE] = ACTIONS(873), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(879), - [anon_sym_COLON2] = ACTIONS(890), - [anon_sym_err_GT] = ACTIONS(881), - [anon_sym_out_GT] = ACTIONS(881), - [anon_sym_e_GT] = ACTIONS(881), - [anon_sym_o_GT] = ACTIONS(881), - [anon_sym_err_PLUSout_GT] = ACTIONS(881), - [anon_sym_out_PLUSerr_GT] = ACTIONS(881), - [anon_sym_o_PLUSe_GT] = ACTIONS(881), - [anon_sym_e_PLUSo_GT] = ACTIONS(881), - [anon_sym_err_GT_GT] = ACTIONS(881), - [anon_sym_out_GT_GT] = ACTIONS(881), - [anon_sym_e_GT_GT] = ACTIONS(881), - [anon_sym_o_GT_GT] = ACTIONS(881), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(881), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(881), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(881), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(881), - [aux_sym_unquoted_token1] = ACTIONS(883), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token1] = ACTIONS(889), + [aux_sym__immediate_decimal_token5] = ACTIONS(891), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), [anon_sym_POUND] = ACTIONS(105), - [sym_raw_string_begin] = ACTIONS(885), }, - [STATE(112)] = { + [112] = { [sym_comment] = STATE(112), - [anon_sym_in] = ACTIONS(791), - [anon_sym_STAR_STAR] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_SLASH] = ACTIONS(791), - [anon_sym_mod] = ACTIONS(793), - [anon_sym_SLASH_SLASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_like] = ACTIONS(793), - [anon_sym_not_DASHlike] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_in2] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_has] = ACTIONS(793), - [anon_sym_not_DASHhas] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(793), - [aux_sym_cmd_identifier_token6] = ACTIONS(791), - [sym__newline] = ACTIONS(791), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_RPAREN] = ACTIONS(791), - [anon_sym_GT2] = ACTIONS(791), - [anon_sym_DASH2] = ACTIONS(791), - [anon_sym_STAR2] = ACTIONS(791), - [anon_sym_and2] = ACTIONS(791), - [anon_sym_xor2] = ACTIONS(791), - [anon_sym_or2] = ACTIONS(791), - [anon_sym_not_DASHin2] = ACTIONS(791), - [anon_sym_has2] = ACTIONS(791), - [anon_sym_not_DASHhas2] = ACTIONS(791), - [anon_sym_starts_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), - [anon_sym_ends_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), - [anon_sym_EQ_EQ2] = ACTIONS(791), - [anon_sym_BANG_EQ2] = ACTIONS(791), - [anon_sym_LT2] = ACTIONS(791), - [anon_sym_LT_EQ2] = ACTIONS(791), - [anon_sym_GT_EQ2] = ACTIONS(791), - [anon_sym_EQ_TILDE2] = ACTIONS(791), - [anon_sym_BANG_TILDE2] = ACTIONS(791), - [anon_sym_like2] = ACTIONS(791), - [anon_sym_not_DASHlike2] = ACTIONS(791), - [anon_sym_STAR_STAR2] = ACTIONS(791), - [anon_sym_PLUS_PLUS2] = ACTIONS(791), - [anon_sym_SLASH2] = ACTIONS(791), - [anon_sym_mod2] = ACTIONS(791), - [anon_sym_SLASH_SLASH2] = ACTIONS(791), - [anon_sym_PLUS2] = ACTIONS(791), - [anon_sym_bit_DASHshl2] = ACTIONS(791), - [anon_sym_bit_DASHshr2] = ACTIONS(791), - [anon_sym_bit_DASHand2] = ACTIONS(791), - [anon_sym_bit_DASHxor2] = ACTIONS(791), - [anon_sym_bit_DASHor2] = ACTIONS(791), - [anon_sym_DOT_DOT2] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(793), - [aux_sym__immediate_decimal_token5] = ACTIONS(892), - [sym_filesize_unit] = ACTIONS(791), - [sym_duration_unit] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(791), - [anon_sym_out_GT] = ACTIONS(791), - [anon_sym_e_GT] = ACTIONS(791), - [anon_sym_o_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT] = ACTIONS(791), - [anon_sym_err_GT_GT] = ACTIONS(791), - [anon_sym_out_GT_GT] = ACTIONS(791), - [anon_sym_e_GT_GT] = ACTIONS(791), - [anon_sym_o_GT_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), + [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(893), + [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(105), }, - [STATE(113)] = { + [113] = { [sym_comment] = STATE(113), - [anon_sym_in] = ACTIONS(791), - [anon_sym_STAR_STAR] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_SLASH] = ACTIONS(791), - [anon_sym_mod] = ACTIONS(793), - [anon_sym_SLASH_SLASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_like] = ACTIONS(793), - [anon_sym_not_DASHlike] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_in2] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_has] = ACTIONS(793), - [anon_sym_not_DASHhas] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(793), - [aux_sym_cmd_identifier_token6] = ACTIONS(791), - [sym__newline] = ACTIONS(791), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_GT2] = ACTIONS(791), - [anon_sym_DASH2] = ACTIONS(791), - [anon_sym_RBRACE] = ACTIONS(791), - [anon_sym_STAR2] = ACTIONS(791), - [anon_sym_and2] = ACTIONS(791), - [anon_sym_xor2] = ACTIONS(791), - [anon_sym_or2] = ACTIONS(791), - [anon_sym_not_DASHin2] = ACTIONS(791), - [anon_sym_has2] = ACTIONS(791), - [anon_sym_not_DASHhas2] = ACTIONS(791), - [anon_sym_starts_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), - [anon_sym_ends_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), - [anon_sym_EQ_EQ2] = ACTIONS(791), - [anon_sym_BANG_EQ2] = ACTIONS(791), - [anon_sym_LT2] = ACTIONS(791), - [anon_sym_LT_EQ2] = ACTIONS(791), - [anon_sym_GT_EQ2] = ACTIONS(791), - [anon_sym_EQ_TILDE2] = ACTIONS(791), - [anon_sym_BANG_TILDE2] = ACTIONS(791), - [anon_sym_like2] = ACTIONS(791), - [anon_sym_not_DASHlike2] = ACTIONS(791), - [anon_sym_STAR_STAR2] = ACTIONS(791), - [anon_sym_PLUS_PLUS2] = ACTIONS(791), - [anon_sym_SLASH2] = ACTIONS(791), - [anon_sym_mod2] = ACTIONS(791), - [anon_sym_SLASH_SLASH2] = ACTIONS(791), - [anon_sym_PLUS2] = ACTIONS(791), - [anon_sym_bit_DASHshl2] = ACTIONS(791), - [anon_sym_bit_DASHshr2] = ACTIONS(791), - [anon_sym_bit_DASHand2] = ACTIONS(791), - [anon_sym_bit_DASHxor2] = ACTIONS(791), - [anon_sym_bit_DASHor2] = ACTIONS(791), - [anon_sym_DOT_DOT2] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(793), - [sym_filesize_unit] = ACTIONS(791), - [sym_duration_unit] = ACTIONS(793), - [anon_sym_COLON2] = ACTIONS(791), - [anon_sym_err_GT] = ACTIONS(791), - [anon_sym_out_GT] = ACTIONS(791), - [anon_sym_e_GT] = ACTIONS(791), - [anon_sym_o_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT] = ACTIONS(791), - [anon_sym_err_GT_GT] = ACTIONS(791), - [anon_sym_out_GT_GT] = ACTIONS(791), - [anon_sym_e_GT_GT] = ACTIONS(791), - [anon_sym_o_GT_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), + [ts_builtin_sym_end] = ACTIONS(765), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(763), + [anon_sym_out_GT_GT] = ACTIONS(763), + [anon_sym_e_GT_GT] = ACTIONS(763), + [anon_sym_o_GT_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(114)] = { + [114] = { + [sym_expr_parenthesized] = STATE(2713), + [sym__spread_parenthesized] = STATE(3207), + [sym_val_range] = STATE(3210), + [sym__val_range] = STATE(4890), + [sym__value] = STATE(3210), + [sym_val_nothing] = STATE(3096), + [sym_val_bool] = STATE(2760), + [sym__spread_variable] = STATE(3211), + [sym_val_variable] = STATE(2716), + [sym_val_cellpath] = STATE(3096), + [sym_val_number] = STATE(3096), + [sym__val_number_decimal] = STATE(2420), + [sym__val_number] = STATE(3095), + [sym_val_duration] = STATE(3096), + [sym_val_filesize] = STATE(3096), + [sym_val_binary] = STATE(3096), + [sym_val_string] = STATE(3096), + [sym__raw_str] = STATE(2515), + [sym__str_double_quotes] = STATE(2515), + [sym__str_single_quotes] = STATE(2515), + [sym__str_back_ticks] = STATE(2515), + [sym_val_interpolated] = STATE(3096), + [sym__inter_single_quotes] = STATE(3090), + [sym__inter_double_quotes] = STATE(3091), + [sym_val_list] = STATE(3096), + [sym__spread_list] = STATE(3207), + [sym_val_record] = STATE(3096), + [sym_val_table] = STATE(3096), + [sym_val_closure] = STATE(3096), + [sym__cmd_arg] = STATE(3214), + [sym_redirection] = STATE(3215), + [sym__flag] = STATE(3216), + [sym_short_flag] = STATE(3217), + [sym_long_flag] = STATE(3217), + [sym_unquoted] = STATE(2839), + [sym__unquoted_with_expr] = STATE(3218), + [sym__unquoted_anonymous_prefix] = STATE(4890), [sym_comment] = STATE(114), - [anon_sym_in] = ACTIONS(791), - [anon_sym_STAR_STAR] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_SLASH] = ACTIONS(791), - [anon_sym_mod] = ACTIONS(793), - [anon_sym_SLASH_SLASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_like] = ACTIONS(793), - [anon_sym_not_DASHlike] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_in2] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_has] = ACTIONS(793), - [anon_sym_not_DASHhas] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(793), - [aux_sym_cmd_identifier_token6] = ACTIONS(791), - [sym__newline] = ACTIONS(791), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_GT2] = ACTIONS(791), - [anon_sym_DASH2] = ACTIONS(791), - [anon_sym_RBRACE] = ACTIONS(791), - [anon_sym_STAR2] = ACTIONS(791), - [anon_sym_and2] = ACTIONS(791), - [anon_sym_xor2] = ACTIONS(791), - [anon_sym_or2] = ACTIONS(791), - [anon_sym_not_DASHin2] = ACTIONS(791), - [anon_sym_has2] = ACTIONS(791), - [anon_sym_not_DASHhas2] = ACTIONS(791), - [anon_sym_starts_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), - [anon_sym_ends_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), - [anon_sym_EQ_EQ2] = ACTIONS(791), - [anon_sym_BANG_EQ2] = ACTIONS(791), - [anon_sym_LT2] = ACTIONS(791), - [anon_sym_LT_EQ2] = ACTIONS(791), - [anon_sym_GT_EQ2] = ACTIONS(791), - [anon_sym_EQ_TILDE2] = ACTIONS(791), - [anon_sym_BANG_TILDE2] = ACTIONS(791), - [anon_sym_like2] = ACTIONS(791), - [anon_sym_not_DASHlike2] = ACTIONS(791), - [anon_sym_STAR_STAR2] = ACTIONS(791), - [anon_sym_PLUS_PLUS2] = ACTIONS(791), - [anon_sym_SLASH2] = ACTIONS(791), - [anon_sym_mod2] = ACTIONS(791), - [anon_sym_SLASH_SLASH2] = ACTIONS(791), - [anon_sym_PLUS2] = ACTIONS(791), - [anon_sym_bit_DASHshl2] = ACTIONS(791), - [anon_sym_bit_DASHshr2] = ACTIONS(791), - [anon_sym_bit_DASHand2] = ACTIONS(791), - [anon_sym_bit_DASHxor2] = ACTIONS(791), - [anon_sym_bit_DASHor2] = ACTIONS(791), - [anon_sym_DOT_DOT2] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(793), - [aux_sym__immediate_decimal_token5] = ACTIONS(894), - [sym_filesize_unit] = ACTIONS(791), - [sym_duration_unit] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(791), - [anon_sym_out_GT] = ACTIONS(791), - [anon_sym_e_GT] = ACTIONS(791), - [anon_sym_o_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT] = ACTIONS(791), - [anon_sym_err_GT_GT] = ACTIONS(791), - [anon_sym_out_GT_GT] = ACTIONS(791), - [anon_sym_e_GT_GT] = ACTIONS(791), - [anon_sym_o_GT_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), + [anon_sym_true] = ACTIONS(829), + [anon_sym_false] = ACTIONS(829), + [anon_sym_null] = ACTIONS(831), + [aux_sym_cmd_identifier_token3] = ACTIONS(833), + [aux_sym_cmd_identifier_token4] = ACTIONS(833), + [aux_sym_cmd_identifier_token5] = ACTIONS(833), + [sym__newline] = ACTIONS(895), + [sym__space] = ACTIONS(895), + [anon_sym_SEMI] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_err_GT_PIPE] = ACTIONS(835), + [anon_sym_out_GT_PIPE] = ACTIONS(835), + [anon_sym_e_GT_PIPE] = ACTIONS(835), + [anon_sym_o_GT_PIPE] = ACTIONS(835), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(835), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(835), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(835), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(839), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_DOLLAR] = ACTIONS(843), + [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_DASH2] = ACTIONS(847), + [anon_sym_LBRACE] = ACTIONS(849), + [anon_sym_RBRACE] = ACTIONS(835), + [anon_sym_DOT_DOT] = ACTIONS(851), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(855), + [anon_sym_DOT_DOT_LT] = ACTIONS(855), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(857), + [aux_sym__val_number_decimal_token1] = ACTIONS(859), + [aux_sym__val_number_decimal_token2] = ACTIONS(859), + [aux_sym__val_number_decimal_token3] = ACTIONS(861), + [aux_sym__val_number_decimal_token4] = ACTIONS(861), + [aux_sym__val_number_token1] = ACTIONS(863), + [aux_sym__val_number_token2] = ACTIONS(863), + [aux_sym__val_number_token3] = ACTIONS(863), + [anon_sym_0b] = ACTIONS(865), + [anon_sym_0o] = ACTIONS(867), + [anon_sym_0x] = ACTIONS(867), + [sym_val_date] = ACTIONS(869), + [anon_sym_DQUOTE] = ACTIONS(871), + [anon_sym_SQUOTE] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(879), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(881), + [anon_sym_COLON2] = ACTIONS(898), + [anon_sym_err_GT] = ACTIONS(883), + [anon_sym_out_GT] = ACTIONS(883), + [anon_sym_e_GT] = ACTIONS(883), + [anon_sym_o_GT] = ACTIONS(883), + [anon_sym_err_PLUSout_GT] = ACTIONS(883), + [anon_sym_out_PLUSerr_GT] = ACTIONS(883), + [anon_sym_o_PLUSe_GT] = ACTIONS(883), + [anon_sym_e_PLUSo_GT] = ACTIONS(883), + [anon_sym_err_GT_GT] = ACTIONS(883), + [anon_sym_out_GT_GT] = ACTIONS(883), + [anon_sym_e_GT_GT] = ACTIONS(883), + [anon_sym_o_GT_GT] = ACTIONS(883), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(883), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(883), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(883), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(883), + [aux_sym_unquoted_token1] = ACTIONS(885), [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(887), }, - [STATE(115)] = { + [115] = { [sym_comment] = STATE(115), - [anon_sym_in] = ACTIONS(759), - [anon_sym_STAR_STAR] = ACTIONS(761), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_mod] = ACTIONS(761), - [anon_sym_SLASH_SLASH] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_bit_DASHshl] = ACTIONS(761), - [anon_sym_bit_DASHshr] = ACTIONS(761), - [anon_sym_EQ_TILDE] = ACTIONS(761), - [anon_sym_BANG_TILDE] = ACTIONS(761), - [anon_sym_like] = ACTIONS(761), - [anon_sym_not_DASHlike] = ACTIONS(761), - [anon_sym_bit_DASHand] = ACTIONS(761), - [anon_sym_bit_DASHxor] = ACTIONS(761), - [anon_sym_bit_DASHor] = ACTIONS(761), - [anon_sym_and] = ACTIONS(761), - [anon_sym_xor] = ACTIONS(761), - [anon_sym_or] = ACTIONS(761), - [anon_sym_in2] = ACTIONS(761), - [anon_sym_not_DASHin] = ACTIONS(761), - [anon_sym_has] = ACTIONS(761), - [anon_sym_not_DASHhas] = ACTIONS(761), - [anon_sym_starts_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), - [anon_sym_ends_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), - [anon_sym_EQ_EQ] = ACTIONS(761), - [anon_sym_BANG_EQ] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_LT_EQ] = ACTIONS(761), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_GT_EQ] = ACTIONS(761), - [aux_sym_cmd_identifier_token6] = ACTIONS(759), - [sym__newline] = ACTIONS(759), - [anon_sym_SEMI] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_err_GT_PIPE] = ACTIONS(759), - [anon_sym_out_GT_PIPE] = ACTIONS(759), - [anon_sym_e_GT_PIPE] = ACTIONS(759), - [anon_sym_o_GT_PIPE] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), - [anon_sym_GT2] = ACTIONS(759), - [anon_sym_DASH2] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(759), - [anon_sym_STAR2] = ACTIONS(759), - [anon_sym_and2] = ACTIONS(759), - [anon_sym_xor2] = ACTIONS(759), - [anon_sym_or2] = ACTIONS(759), - [anon_sym_not_DASHin2] = ACTIONS(759), - [anon_sym_has2] = ACTIONS(759), - [anon_sym_not_DASHhas2] = ACTIONS(759), - [anon_sym_starts_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), - [anon_sym_ends_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), - [anon_sym_EQ_EQ2] = ACTIONS(759), - [anon_sym_BANG_EQ2] = ACTIONS(759), - [anon_sym_LT2] = ACTIONS(759), - [anon_sym_LT_EQ2] = ACTIONS(759), - [anon_sym_GT_EQ2] = ACTIONS(759), - [anon_sym_EQ_TILDE2] = ACTIONS(759), - [anon_sym_BANG_TILDE2] = ACTIONS(759), - [anon_sym_like2] = ACTIONS(759), - [anon_sym_not_DASHlike2] = ACTIONS(759), - [anon_sym_STAR_STAR2] = ACTIONS(759), - [anon_sym_PLUS_PLUS2] = ACTIONS(759), - [anon_sym_SLASH2] = ACTIONS(759), - [anon_sym_mod2] = ACTIONS(759), - [anon_sym_SLASH_SLASH2] = ACTIONS(759), - [anon_sym_PLUS2] = ACTIONS(759), - [anon_sym_bit_DASHshl2] = ACTIONS(759), - [anon_sym_bit_DASHshr2] = ACTIONS(759), - [anon_sym_bit_DASHand2] = ACTIONS(759), - [anon_sym_bit_DASHxor2] = ACTIONS(759), - [anon_sym_bit_DASHor2] = ACTIONS(759), - [anon_sym_DOT_DOT2] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(761), - [sym_filesize_unit] = ACTIONS(759), - [sym_duration_unit] = ACTIONS(761), - [anon_sym_COLON2] = ACTIONS(759), - [anon_sym_err_GT] = ACTIONS(759), - [anon_sym_out_GT] = ACTIONS(759), - [anon_sym_e_GT] = ACTIONS(759), - [anon_sym_o_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT] = ACTIONS(759), - [anon_sym_err_GT_GT] = ACTIONS(759), - [anon_sym_out_GT_GT] = ACTIONS(759), - [anon_sym_e_GT_GT] = ACTIONS(759), - [anon_sym_o_GT_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_RBRACE] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(787), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(763), + [anon_sym_out_GT_GT] = ACTIONS(763), + [anon_sym_e_GT_GT] = ACTIONS(763), + [anon_sym_o_GT_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(116)] = { + [116] = { [sym_comment] = STATE(116), - [anon_sym_in] = ACTIONS(751), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_like] = ACTIONS(753), - [anon_sym_not_DASHlike] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_in2] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_has] = ACTIONS(753), - [anon_sym_not_DASHhas] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_EQ] = ACTIONS(753), - [aux_sym_cmd_identifier_token6] = ACTIONS(751), - [sym__newline] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_err_GT_PIPE] = ACTIONS(751), - [anon_sym_out_GT_PIPE] = ACTIONS(751), - [anon_sym_e_GT_PIPE] = ACTIONS(751), - [anon_sym_o_GT_PIPE] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), - [anon_sym_GT2] = ACTIONS(751), - [anon_sym_DASH2] = ACTIONS(751), - [anon_sym_STAR2] = ACTIONS(751), - [anon_sym_and2] = ACTIONS(751), - [anon_sym_xor2] = ACTIONS(751), - [anon_sym_or2] = ACTIONS(751), - [anon_sym_not_DASHin2] = ACTIONS(751), - [anon_sym_has2] = ACTIONS(751), - [anon_sym_not_DASHhas2] = ACTIONS(751), - [anon_sym_starts_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), - [anon_sym_ends_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), - [anon_sym_EQ_EQ2] = ACTIONS(751), - [anon_sym_BANG_EQ2] = ACTIONS(751), - [anon_sym_LT2] = ACTIONS(751), - [anon_sym_LT_EQ2] = ACTIONS(751), - [anon_sym_GT_EQ2] = ACTIONS(751), - [anon_sym_EQ_TILDE2] = ACTIONS(751), - [anon_sym_BANG_TILDE2] = ACTIONS(751), - [anon_sym_like2] = ACTIONS(751), - [anon_sym_not_DASHlike2] = ACTIONS(751), - [anon_sym_STAR_STAR2] = ACTIONS(751), - [anon_sym_PLUS_PLUS2] = ACTIONS(751), - [anon_sym_SLASH2] = ACTIONS(751), - [anon_sym_mod2] = ACTIONS(751), - [anon_sym_SLASH_SLASH2] = ACTIONS(751), - [anon_sym_PLUS2] = ACTIONS(751), - [anon_sym_bit_DASHshl2] = ACTIONS(751), - [anon_sym_bit_DASHshr2] = ACTIONS(751), - [anon_sym_bit_DASHand2] = ACTIONS(751), - [anon_sym_bit_DASHxor2] = ACTIONS(751), - [anon_sym_bit_DASHor2] = ACTIONS(751), - [anon_sym_DOT_DOT2] = ACTIONS(751), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(753), - [aux_sym__immediate_decimal_token5] = ACTIONS(799), - [sym_filesize_unit] = ACTIONS(751), - [sym_duration_unit] = ACTIONS(753), - [anon_sym_err_GT] = ACTIONS(751), - [anon_sym_out_GT] = ACTIONS(751), - [anon_sym_e_GT] = ACTIONS(751), - [anon_sym_o_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT] = ACTIONS(751), - [anon_sym_err_GT_GT] = ACTIONS(751), - [anon_sym_out_GT_GT] = ACTIONS(751), - [anon_sym_e_GT_GT] = ACTIONS(751), - [anon_sym_o_GT_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(751), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(117)] = { - [sym_expr_parenthesized] = STATE(2709), - [sym__spread_parenthesized] = STATE(3240), - [sym_val_range] = STATE(3250), - [sym__val_range] = STATE(4751), - [sym__value] = STATE(3250), - [sym_val_nothing] = STATE(3138), - [sym_val_bool] = STATE(2899), - [sym__spread_variable] = STATE(3259), - [sym_val_variable] = STATE(2712), - [sym_val_cellpath] = STATE(3138), - [sym_val_number] = STATE(3138), - [sym__val_number_decimal] = STATE(2418), - [sym__val_number] = STATE(3139), - [sym_val_duration] = STATE(3138), - [sym_val_filesize] = STATE(3138), - [sym_val_binary] = STATE(3138), - [sym_val_string] = STATE(3138), - [sym__raw_str] = STATE(2503), - [sym__str_double_quotes] = STATE(2503), - [sym__str_single_quotes] = STATE(2503), - [sym__str_back_ticks] = STATE(2503), - [sym_val_interpolated] = STATE(3138), - [sym__inter_single_quotes] = STATE(3179), - [sym__inter_double_quotes] = STATE(3180), - [sym_val_list] = STATE(3138), - [sym__spread_list] = STATE(3240), - [sym_val_record] = STATE(3138), - [sym_val_table] = STATE(3138), - [sym_val_closure] = STATE(3138), - [sym__cmd_arg] = STATE(3314), - [sym_redirection] = STATE(3222), - [sym__flag] = STATE(3262), - [sym_short_flag] = STATE(3082), - [sym_long_flag] = STATE(3082), - [sym_unquoted] = STATE(2734), - [sym__unquoted_with_expr] = STATE(3102), - [sym__unquoted_anonymous_prefix] = STATE(4751), - [sym_comment] = STATE(117), - [anon_sym_true] = ACTIONS(827), - [anon_sym_false] = ACTIONS(827), - [anon_sym_null] = ACTIONS(829), - [aux_sym_cmd_identifier_token3] = ACTIONS(831), - [aux_sym_cmd_identifier_token4] = ACTIONS(831), - [aux_sym_cmd_identifier_token5] = ACTIONS(831), - [sym__newline] = ACTIONS(896), - [sym__space] = ACTIONS(898), - [anon_sym_SEMI] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(896), - [anon_sym_err_GT_PIPE] = ACTIONS(896), - [anon_sym_out_GT_PIPE] = ACTIONS(896), - [anon_sym_e_GT_PIPE] = ACTIONS(896), - [anon_sym_o_GT_PIPE] = ACTIONS(896), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(896), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(896), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(896), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(896), - [anon_sym_LBRACK] = ACTIONS(837), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(896), - [anon_sym_DOLLAR] = ACTIONS(841), - [anon_sym_DASH_DASH] = ACTIONS(843), - [anon_sym_DASH2] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_DOT_DOT] = ACTIONS(849), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(851), - [anon_sym_DOT_DOT_EQ] = ACTIONS(853), - [anon_sym_DOT_DOT_LT] = ACTIONS(853), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(855), - [aux_sym__val_number_decimal_token1] = ACTIONS(857), - [aux_sym__val_number_decimal_token2] = ACTIONS(857), - [aux_sym__val_number_decimal_token3] = ACTIONS(859), - [aux_sym__val_number_decimal_token4] = ACTIONS(859), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(863), - [anon_sym_0o] = ACTIONS(865), - [anon_sym_0x] = ACTIONS(865), - [sym_val_date] = ACTIONS(867), - [anon_sym_DQUOTE] = ACTIONS(869), - [anon_sym_SQUOTE] = ACTIONS(871), - [anon_sym_BQUOTE] = ACTIONS(873), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(879), - [anon_sym_err_GT] = ACTIONS(881), - [anon_sym_out_GT] = ACTIONS(881), - [anon_sym_e_GT] = ACTIONS(881), - [anon_sym_o_GT] = ACTIONS(881), - [anon_sym_err_PLUSout_GT] = ACTIONS(881), - [anon_sym_out_PLUSerr_GT] = ACTIONS(881), - [anon_sym_o_PLUSe_GT] = ACTIONS(881), - [anon_sym_e_PLUSo_GT] = ACTIONS(881), - [anon_sym_err_GT_GT] = ACTIONS(881), - [anon_sym_out_GT_GT] = ACTIONS(881), - [anon_sym_e_GT_GT] = ACTIONS(881), - [anon_sym_o_GT_GT] = ACTIONS(881), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(881), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(881), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(881), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(881), - [aux_sym_unquoted_token1] = ACTIONS(883), - [anon_sym_POUND] = ACTIONS(105), - [sym_raw_string_begin] = ACTIONS(885), - }, - [STATE(118)] = { - [sym_comment] = STATE(118), - [anon_sym_in] = ACTIONS(751), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_like] = ACTIONS(753), - [anon_sym_not_DASHlike] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_in2] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_has] = ACTIONS(753), - [anon_sym_not_DASHhas] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_EQ] = ACTIONS(753), - [aux_sym_cmd_identifier_token6] = ACTIONS(751), - [sym__newline] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_err_GT_PIPE] = ACTIONS(751), - [anon_sym_out_GT_PIPE] = ACTIONS(751), - [anon_sym_e_GT_PIPE] = ACTIONS(751), - [anon_sym_o_GT_PIPE] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), - [anon_sym_GT2] = ACTIONS(751), - [anon_sym_DASH2] = ACTIONS(751), - [anon_sym_STAR2] = ACTIONS(751), - [anon_sym_and2] = ACTIONS(751), - [anon_sym_xor2] = ACTIONS(751), - [anon_sym_or2] = ACTIONS(751), - [anon_sym_not_DASHin2] = ACTIONS(751), - [anon_sym_has2] = ACTIONS(751), - [anon_sym_not_DASHhas2] = ACTIONS(751), - [anon_sym_starts_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), - [anon_sym_ends_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), - [anon_sym_EQ_EQ2] = ACTIONS(751), - [anon_sym_BANG_EQ2] = ACTIONS(751), - [anon_sym_LT2] = ACTIONS(751), - [anon_sym_LT_EQ2] = ACTIONS(751), - [anon_sym_GT_EQ2] = ACTIONS(751), - [anon_sym_EQ_TILDE2] = ACTIONS(751), - [anon_sym_BANG_TILDE2] = ACTIONS(751), - [anon_sym_like2] = ACTIONS(751), - [anon_sym_not_DASHlike2] = ACTIONS(751), - [anon_sym_STAR_STAR2] = ACTIONS(751), - [anon_sym_PLUS_PLUS2] = ACTIONS(751), - [anon_sym_SLASH2] = ACTIONS(751), - [anon_sym_mod2] = ACTIONS(751), - [anon_sym_SLASH_SLASH2] = ACTIONS(751), - [anon_sym_PLUS2] = ACTIONS(751), - [anon_sym_bit_DASHshl2] = ACTIONS(751), - [anon_sym_bit_DASHshr2] = ACTIONS(751), - [anon_sym_bit_DASHand2] = ACTIONS(751), - [anon_sym_bit_DASHxor2] = ACTIONS(751), - [anon_sym_bit_DASHor2] = ACTIONS(751), - [anon_sym_DOT_DOT2] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(900), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(753), - [aux_sym__immediate_decimal_token5] = ACTIONS(902), - [sym_filesize_unit] = ACTIONS(751), - [sym_duration_unit] = ACTIONS(753), - [anon_sym_err_GT] = ACTIONS(751), - [anon_sym_out_GT] = ACTIONS(751), - [anon_sym_e_GT] = ACTIONS(751), - [anon_sym_o_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT] = ACTIONS(751), - [anon_sym_err_GT_GT] = ACTIONS(751), - [anon_sym_out_GT_GT] = ACTIONS(751), - [anon_sym_e_GT_GT] = ACTIONS(751), - [anon_sym_o_GT_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(751), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(119)] = { - [sym_comment] = STATE(119), [anon_sym_in] = ACTIONS(811), - [anon_sym_STAR_STAR] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_mod] = ACTIONS(904), - [anon_sym_SLASH_SLASH] = ACTIONS(904), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_bit_DASHshl] = ACTIONS(904), - [anon_sym_bit_DASHshr] = ACTIONS(904), - [anon_sym_EQ_TILDE] = ACTIONS(904), - [anon_sym_BANG_TILDE] = ACTIONS(904), - [anon_sym_like] = ACTIONS(904), - [anon_sym_not_DASHlike] = ACTIONS(904), - [anon_sym_bit_DASHand] = ACTIONS(904), - [anon_sym_bit_DASHxor] = ACTIONS(904), - [anon_sym_bit_DASHor] = ACTIONS(904), - [anon_sym_and] = ACTIONS(904), - [anon_sym_xor] = ACTIONS(904), - [anon_sym_or] = ACTIONS(904), - [anon_sym_in2] = ACTIONS(904), - [anon_sym_not_DASHin] = ACTIONS(904), - [anon_sym_has] = ACTIONS(904), - [anon_sym_not_DASHhas] = ACTIONS(904), - [anon_sym_starts_DASHwith] = ACTIONS(904), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(904), - [anon_sym_ends_DASHwith] = ACTIONS(904), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(904), - [anon_sym_BANG_EQ] = ACTIONS(904), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_LT_EQ] = ACTIONS(904), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(904), - [aux_sym_cmd_identifier_token6] = ACTIONS(908), + [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(811), [anon_sym_SEMI] = ACTIONS(811), [anon_sym_PIPE] = ACTIONS(811), @@ -54505,9 +54135,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(811), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(811), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(811), [anon_sym_GT2] = ACTIONS(811), [anon_sym_DASH2] = ACTIONS(811), + [anon_sym_RBRACE] = ACTIONS(811), [anon_sym_STAR2] = ACTIONS(811), [anon_sym_and2] = ACTIONS(811), [anon_sym_xor2] = ACTIONS(811), @@ -54542,8 +54172,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(819), [anon_sym_DOT_DOT_EQ2] = ACTIONS(821), [anon_sym_DOT_DOT_LT2] = ACTIONS(821), - [sym_filesize_unit] = ACTIONS(910), - [sym_duration_unit] = ACTIONS(912), + [sym_filesize_unit] = ACTIONS(906), + [sym_duration_unit] = ACTIONS(908), [anon_sym_err_GT] = ACTIONS(811), [anon_sym_out_GT] = ACTIONS(811), [anon_sym_e_GT] = ACTIONS(811), @@ -54562,151 +54192,469 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(811), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(120)] = { + [117] = { + [sym_comment] = STATE(117), + [ts_builtin_sym_end] = ACTIONS(757), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(105), + }, + [118] = { + [sym_comment] = STATE(118), + [anon_sym_in] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_mod] = ACTIONS(803), + [anon_sym_SLASH_SLASH] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(803), + [anon_sym_bit_DASHshl] = ACTIONS(803), + [anon_sym_bit_DASHshr] = ACTIONS(803), + [anon_sym_EQ_TILDE] = ACTIONS(803), + [anon_sym_BANG_TILDE] = ACTIONS(803), + [anon_sym_like] = ACTIONS(803), + [anon_sym_not_DASHlike] = ACTIONS(803), + [anon_sym_bit_DASHand] = ACTIONS(803), + [anon_sym_bit_DASHxor] = ACTIONS(803), + [anon_sym_bit_DASHor] = ACTIONS(803), + [anon_sym_and] = ACTIONS(803), + [anon_sym_xor] = ACTIONS(803), + [anon_sym_or] = ACTIONS(803), + [anon_sym_in2] = ACTIONS(803), + [anon_sym_not_DASHin] = ACTIONS(803), + [anon_sym_has] = ACTIONS(803), + [anon_sym_not_DASHhas] = ACTIONS(803), + [anon_sym_starts_DASHwith] = ACTIONS(803), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(803), + [anon_sym_ends_DASHwith] = ACTIONS(803), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(803), + [anon_sym_EQ_EQ] = ACTIONS(803), + [anon_sym_BANG_EQ] = ACTIONS(803), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(803), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(803), + [aux_sym_cmd_identifier_token6] = ACTIONS(801), + [sym__newline] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_err_GT_PIPE] = ACTIONS(801), + [anon_sym_out_GT_PIPE] = ACTIONS(801), + [anon_sym_e_GT_PIPE] = ACTIONS(801), + [anon_sym_o_GT_PIPE] = ACTIONS(801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_GT2] = ACTIONS(801), + [anon_sym_DASH2] = ACTIONS(801), + [anon_sym_STAR2] = ACTIONS(801), + [anon_sym_and2] = ACTIONS(801), + [anon_sym_xor2] = ACTIONS(801), + [anon_sym_or2] = ACTIONS(801), + [anon_sym_not_DASHin2] = ACTIONS(801), + [anon_sym_has2] = ACTIONS(801), + [anon_sym_not_DASHhas2] = ACTIONS(801), + [anon_sym_starts_DASHwith2] = ACTIONS(801), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(801), + [anon_sym_ends_DASHwith2] = ACTIONS(801), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(801), + [anon_sym_EQ_EQ2] = ACTIONS(801), + [anon_sym_BANG_EQ2] = ACTIONS(801), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ2] = ACTIONS(801), + [anon_sym_GT_EQ2] = ACTIONS(801), + [anon_sym_EQ_TILDE2] = ACTIONS(801), + [anon_sym_BANG_TILDE2] = ACTIONS(801), + [anon_sym_like2] = ACTIONS(801), + [anon_sym_not_DASHlike2] = ACTIONS(801), + [anon_sym_STAR_STAR2] = ACTIONS(801), + [anon_sym_PLUS_PLUS2] = ACTIONS(801), + [anon_sym_SLASH2] = ACTIONS(801), + [anon_sym_mod2] = ACTIONS(801), + [anon_sym_SLASH_SLASH2] = ACTIONS(801), + [anon_sym_PLUS2] = ACTIONS(801), + [anon_sym_bit_DASHshl2] = ACTIONS(801), + [anon_sym_bit_DASHshr2] = ACTIONS(801), + [anon_sym_bit_DASHand2] = ACTIONS(801), + [anon_sym_bit_DASHxor2] = ACTIONS(801), + [anon_sym_bit_DASHor2] = ACTIONS(801), + [anon_sym_DOT_DOT2] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), + [anon_sym_DOT_DOT_LT2] = ACTIONS(803), + [sym_filesize_unit] = ACTIONS(801), + [sym_duration_unit] = ACTIONS(803), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [anon_sym_err_GT_GT] = ACTIONS(801), + [anon_sym_out_GT_GT] = ACTIONS(801), + [anon_sym_e_GT_GT] = ACTIONS(801), + [anon_sym_o_GT_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(105), + }, + [119] = { + [sym_comment] = STATE(119), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(105), + }, + [120] = { [sym_comment] = STATE(120), - [ts_builtin_sym_end] = ACTIONS(793), - [anon_sym_in] = ACTIONS(791), - [anon_sym_STAR_STAR] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_SLASH] = ACTIONS(791), - [anon_sym_mod] = ACTIONS(793), - [anon_sym_SLASH_SLASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_like] = ACTIONS(793), - [anon_sym_not_DASHlike] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_in2] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_has] = ACTIONS(793), - [anon_sym_not_DASHhas] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(793), - [aux_sym_cmd_identifier_token6] = ACTIONS(791), - [sym__newline] = ACTIONS(791), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_GT2] = ACTIONS(791), - [anon_sym_DASH2] = ACTIONS(791), - [anon_sym_STAR2] = ACTIONS(791), - [anon_sym_and2] = ACTIONS(791), - [anon_sym_xor2] = ACTIONS(791), - [anon_sym_or2] = ACTIONS(791), - [anon_sym_not_DASHin2] = ACTIONS(791), - [anon_sym_has2] = ACTIONS(791), - [anon_sym_not_DASHhas2] = ACTIONS(791), - [anon_sym_starts_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), - [anon_sym_ends_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), - [anon_sym_EQ_EQ2] = ACTIONS(791), - [anon_sym_BANG_EQ2] = ACTIONS(791), - [anon_sym_LT2] = ACTIONS(791), - [anon_sym_LT_EQ2] = ACTIONS(791), - [anon_sym_GT_EQ2] = ACTIONS(791), - [anon_sym_EQ_TILDE2] = ACTIONS(791), - [anon_sym_BANG_TILDE2] = ACTIONS(791), - [anon_sym_like2] = ACTIONS(791), - [anon_sym_not_DASHlike2] = ACTIONS(791), - [anon_sym_STAR_STAR2] = ACTIONS(791), - [anon_sym_PLUS_PLUS2] = ACTIONS(791), - [anon_sym_SLASH2] = ACTIONS(791), - [anon_sym_mod2] = ACTIONS(791), - [anon_sym_SLASH_SLASH2] = ACTIONS(791), - [anon_sym_PLUS2] = ACTIONS(791), - [anon_sym_bit_DASHshl2] = ACTIONS(791), - [anon_sym_bit_DASHshr2] = ACTIONS(791), - [anon_sym_bit_DASHand2] = ACTIONS(791), - [anon_sym_bit_DASHxor2] = ACTIONS(791), - [anon_sym_bit_DASHor2] = ACTIONS(791), - [anon_sym_DOT_DOT2] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(793), - [sym_filesize_unit] = ACTIONS(791), - [sym_duration_unit] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(791), - [anon_sym_out_GT] = ACTIONS(791), - [anon_sym_e_GT] = ACTIONS(791), - [anon_sym_o_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT] = ACTIONS(791), - [anon_sym_err_GT_GT] = ACTIONS(791), - [anon_sym_out_GT_GT] = ACTIONS(791), - [anon_sym_e_GT_GT] = ACTIONS(791), - [anon_sym_o_GT_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), + [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(105), }, - [STATE(121)] = { + [121] = { [sym_comment] = STATE(121), - [ts_builtin_sym_end] = ACTIONS(914), + [ts_builtin_sym_end] = ACTIONS(910), [anon_sym_in] = ACTIONS(811), - [anon_sym_STAR_STAR] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(916), - [anon_sym_STAR] = ACTIONS(918), - [anon_sym_SLASH] = ACTIONS(918), - [anon_sym_mod] = ACTIONS(916), - [anon_sym_SLASH_SLASH] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(918), - [anon_sym_DASH] = ACTIONS(916), - [anon_sym_bit_DASHshl] = ACTIONS(916), - [anon_sym_bit_DASHshr] = ACTIONS(916), - [anon_sym_EQ_TILDE] = ACTIONS(916), - [anon_sym_BANG_TILDE] = ACTIONS(916), - [anon_sym_like] = ACTIONS(916), - [anon_sym_not_DASHlike] = ACTIONS(916), - [anon_sym_bit_DASHand] = ACTIONS(916), - [anon_sym_bit_DASHxor] = ACTIONS(916), - [anon_sym_bit_DASHor] = ACTIONS(916), - [anon_sym_and] = ACTIONS(916), - [anon_sym_xor] = ACTIONS(916), - [anon_sym_or] = ACTIONS(916), - [anon_sym_in2] = ACTIONS(916), - [anon_sym_not_DASHin] = ACTIONS(916), - [anon_sym_has] = ACTIONS(916), - [anon_sym_not_DASHhas] = ACTIONS(916), - [anon_sym_starts_DASHwith] = ACTIONS(916), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(916), - [anon_sym_ends_DASHwith] = ACTIONS(916), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(916), - [anon_sym_EQ_EQ] = ACTIONS(916), - [anon_sym_BANG_EQ] = ACTIONS(916), - [anon_sym_LT] = ACTIONS(918), - [anon_sym_LT_EQ] = ACTIONS(916), - [anon_sym_GT] = ACTIONS(918), - [anon_sym_GT_EQ] = ACTIONS(916), - [aux_sym_cmd_identifier_token6] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(912), + [anon_sym_STAR] = ACTIONS(914), + [anon_sym_SLASH] = ACTIONS(914), + [anon_sym_mod] = ACTIONS(912), + [anon_sym_SLASH_SLASH] = ACTIONS(912), + [anon_sym_PLUS] = ACTIONS(914), + [anon_sym_DASH] = ACTIONS(912), + [anon_sym_bit_DASHshl] = ACTIONS(912), + [anon_sym_bit_DASHshr] = ACTIONS(912), + [anon_sym_EQ_TILDE] = ACTIONS(912), + [anon_sym_BANG_TILDE] = ACTIONS(912), + [anon_sym_like] = ACTIONS(912), + [anon_sym_not_DASHlike] = ACTIONS(912), + [anon_sym_bit_DASHand] = ACTIONS(912), + [anon_sym_bit_DASHxor] = ACTIONS(912), + [anon_sym_bit_DASHor] = ACTIONS(912), + [anon_sym_and] = ACTIONS(912), + [anon_sym_xor] = ACTIONS(912), + [anon_sym_or] = ACTIONS(912), + [anon_sym_in2] = ACTIONS(912), + [anon_sym_not_DASHin] = ACTIONS(912), + [anon_sym_has] = ACTIONS(912), + [anon_sym_not_DASHhas] = ACTIONS(912), + [anon_sym_starts_DASHwith] = ACTIONS(912), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(912), + [anon_sym_ends_DASHwith] = ACTIONS(912), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(912), + [anon_sym_EQ_EQ] = ACTIONS(912), + [anon_sym_BANG_EQ] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(914), + [anon_sym_LT_EQ] = ACTIONS(912), + [anon_sym_GT] = ACTIONS(914), + [anon_sym_GT_EQ] = ACTIONS(912), + [aux_sym_cmd_identifier_token6] = ACTIONS(916), [sym__newline] = ACTIONS(811), [anon_sym_SEMI] = ACTIONS(811), [anon_sym_PIPE] = ACTIONS(811), @@ -54751,11 +54699,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(811), [anon_sym_bit_DASHxor2] = ACTIONS(811), [anon_sym_bit_DASHor2] = ACTIONS(811), - [anon_sym_DOT_DOT2] = ACTIONS(922), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(924), - [anon_sym_DOT_DOT_LT2] = ACTIONS(924), - [sym_filesize_unit] = ACTIONS(926), - [sym_duration_unit] = ACTIONS(928), + [anon_sym_DOT_DOT2] = ACTIONS(918), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(920), + [anon_sym_DOT_DOT_LT2] = ACTIONS(920), + [sym_filesize_unit] = ACTIONS(922), + [sym_duration_unit] = ACTIONS(924), [anon_sym_err_GT] = ACTIONS(811), [anon_sym_out_GT] = ACTIONS(811), [anon_sym_e_GT] = ACTIONS(811), @@ -54774,362 +54722,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(811), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(122)] = { + [122] = { [sym_comment] = STATE(122), - [ts_builtin_sym_end] = ACTIONS(761), - [anon_sym_in] = ACTIONS(759), - [anon_sym_STAR_STAR] = ACTIONS(761), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_mod] = ACTIONS(761), - [anon_sym_SLASH_SLASH] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_bit_DASHshl] = ACTIONS(761), - [anon_sym_bit_DASHshr] = ACTIONS(761), - [anon_sym_EQ_TILDE] = ACTIONS(761), - [anon_sym_BANG_TILDE] = ACTIONS(761), - [anon_sym_like] = ACTIONS(761), - [anon_sym_not_DASHlike] = ACTIONS(761), - [anon_sym_bit_DASHand] = ACTIONS(761), - [anon_sym_bit_DASHxor] = ACTIONS(761), - [anon_sym_bit_DASHor] = ACTIONS(761), - [anon_sym_and] = ACTIONS(761), - [anon_sym_xor] = ACTIONS(761), - [anon_sym_or] = ACTIONS(761), - [anon_sym_in2] = ACTIONS(761), - [anon_sym_not_DASHin] = ACTIONS(761), - [anon_sym_has] = ACTIONS(761), - [anon_sym_not_DASHhas] = ACTIONS(761), - [anon_sym_starts_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), - [anon_sym_ends_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), - [anon_sym_EQ_EQ] = ACTIONS(761), - [anon_sym_BANG_EQ] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_LT_EQ] = ACTIONS(761), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_GT_EQ] = ACTIONS(761), - [aux_sym_cmd_identifier_token6] = ACTIONS(759), - [sym__newline] = ACTIONS(759), - [anon_sym_SEMI] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_err_GT_PIPE] = ACTIONS(759), - [anon_sym_out_GT_PIPE] = ACTIONS(759), - [anon_sym_e_GT_PIPE] = ACTIONS(759), - [anon_sym_o_GT_PIPE] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), - [anon_sym_GT2] = ACTIONS(759), - [anon_sym_DASH2] = ACTIONS(759), - [anon_sym_STAR2] = ACTIONS(759), - [anon_sym_and2] = ACTIONS(759), - [anon_sym_xor2] = ACTIONS(759), - [anon_sym_or2] = ACTIONS(759), - [anon_sym_not_DASHin2] = ACTIONS(759), - [anon_sym_has2] = ACTIONS(759), - [anon_sym_not_DASHhas2] = ACTIONS(759), - [anon_sym_starts_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), - [anon_sym_ends_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), - [anon_sym_EQ_EQ2] = ACTIONS(759), - [anon_sym_BANG_EQ2] = ACTIONS(759), - [anon_sym_LT2] = ACTIONS(759), - [anon_sym_LT_EQ2] = ACTIONS(759), - [anon_sym_GT_EQ2] = ACTIONS(759), - [anon_sym_EQ_TILDE2] = ACTIONS(759), - [anon_sym_BANG_TILDE2] = ACTIONS(759), - [anon_sym_like2] = ACTIONS(759), - [anon_sym_not_DASHlike2] = ACTIONS(759), - [anon_sym_STAR_STAR2] = ACTIONS(759), - [anon_sym_PLUS_PLUS2] = ACTIONS(759), - [anon_sym_SLASH2] = ACTIONS(759), - [anon_sym_mod2] = ACTIONS(759), - [anon_sym_SLASH_SLASH2] = ACTIONS(759), - [anon_sym_PLUS2] = ACTIONS(759), - [anon_sym_bit_DASHshl2] = ACTIONS(759), - [anon_sym_bit_DASHshr2] = ACTIONS(759), - [anon_sym_bit_DASHand2] = ACTIONS(759), - [anon_sym_bit_DASHxor2] = ACTIONS(759), - [anon_sym_bit_DASHor2] = ACTIONS(759), - [anon_sym_DOT_DOT2] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(761), - [sym_filesize_unit] = ACTIONS(759), - [sym_duration_unit] = ACTIONS(761), - [anon_sym_err_GT] = ACTIONS(759), - [anon_sym_out_GT] = ACTIONS(759), - [anon_sym_e_GT] = ACTIONS(759), - [anon_sym_o_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT] = ACTIONS(759), - [anon_sym_err_GT_GT] = ACTIONS(759), - [anon_sym_out_GT_GT] = ACTIONS(759), - [anon_sym_e_GT_GT] = ACTIONS(759), - [anon_sym_o_GT_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(123)] = { + [123] = { [sym_comment] = STATE(123), - [anon_sym_in] = ACTIONS(759), - [anon_sym_STAR_STAR] = ACTIONS(761), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_mod] = ACTIONS(761), - [anon_sym_SLASH_SLASH] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_bit_DASHshl] = ACTIONS(761), - [anon_sym_bit_DASHshr] = ACTIONS(761), - [anon_sym_EQ_TILDE] = ACTIONS(761), - [anon_sym_BANG_TILDE] = ACTIONS(761), - [anon_sym_like] = ACTIONS(761), - [anon_sym_not_DASHlike] = ACTIONS(761), - [anon_sym_bit_DASHand] = ACTIONS(761), - [anon_sym_bit_DASHxor] = ACTIONS(761), - [anon_sym_bit_DASHor] = ACTIONS(761), - [anon_sym_and] = ACTIONS(761), - [anon_sym_xor] = ACTIONS(761), - [anon_sym_or] = ACTIONS(761), - [anon_sym_in2] = ACTIONS(761), - [anon_sym_not_DASHin] = ACTIONS(761), - [anon_sym_has] = ACTIONS(761), - [anon_sym_not_DASHhas] = ACTIONS(761), - [anon_sym_starts_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), - [anon_sym_ends_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), - [anon_sym_EQ_EQ] = ACTIONS(761), - [anon_sym_BANG_EQ] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_LT_EQ] = ACTIONS(761), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_GT_EQ] = ACTIONS(761), - [aux_sym_cmd_identifier_token6] = ACTIONS(759), - [sym__newline] = ACTIONS(759), - [anon_sym_SEMI] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_err_GT_PIPE] = ACTIONS(759), - [anon_sym_out_GT_PIPE] = ACTIONS(759), - [anon_sym_e_GT_PIPE] = ACTIONS(759), - [anon_sym_o_GT_PIPE] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), - [anon_sym_GT2] = ACTIONS(759), - [anon_sym_DASH2] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(759), - [anon_sym_STAR2] = ACTIONS(759), - [anon_sym_and2] = ACTIONS(759), - [anon_sym_xor2] = ACTIONS(759), - [anon_sym_or2] = ACTIONS(759), - [anon_sym_not_DASHin2] = ACTIONS(759), - [anon_sym_has2] = ACTIONS(759), - [anon_sym_not_DASHhas2] = ACTIONS(759), - [anon_sym_starts_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), - [anon_sym_ends_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), - [anon_sym_EQ_EQ2] = ACTIONS(759), - [anon_sym_BANG_EQ2] = ACTIONS(759), - [anon_sym_LT2] = ACTIONS(759), - [anon_sym_LT_EQ2] = ACTIONS(759), - [anon_sym_GT_EQ2] = ACTIONS(759), - [anon_sym_EQ_TILDE2] = ACTIONS(759), - [anon_sym_BANG_TILDE2] = ACTIONS(759), - [anon_sym_like2] = ACTIONS(759), - [anon_sym_not_DASHlike2] = ACTIONS(759), - [anon_sym_STAR_STAR2] = ACTIONS(759), - [anon_sym_PLUS_PLUS2] = ACTIONS(759), - [anon_sym_SLASH2] = ACTIONS(759), - [anon_sym_mod2] = ACTIONS(759), - [anon_sym_SLASH_SLASH2] = ACTIONS(759), - [anon_sym_PLUS2] = ACTIONS(759), - [anon_sym_bit_DASHshl2] = ACTIONS(759), - [anon_sym_bit_DASHshr2] = ACTIONS(759), - [anon_sym_bit_DASHand2] = ACTIONS(759), - [anon_sym_bit_DASHxor2] = ACTIONS(759), - [anon_sym_bit_DASHor2] = ACTIONS(759), - [anon_sym_DOT_DOT2] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(761), - [sym_filesize_unit] = ACTIONS(759), - [sym_duration_unit] = ACTIONS(761), - [anon_sym_err_GT] = ACTIONS(759), - [anon_sym_out_GT] = ACTIONS(759), - [anon_sym_e_GT] = ACTIONS(759), - [anon_sym_o_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT] = ACTIONS(759), - [anon_sym_err_GT_GT] = ACTIONS(759), - [anon_sym_out_GT_GT] = ACTIONS(759), - [anon_sym_e_GT_GT] = ACTIONS(759), - [anon_sym_o_GT_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), + [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(105), }, - [STATE(124)] = { - [sym_expr_parenthesized] = STATE(2824), - [sym__spread_parenthesized] = STATE(3357), - [sym_val_range] = STATE(3360), - [sym__val_range] = STATE(4740), - [sym__value] = STATE(3360), - [sym_val_nothing] = STATE(3333), - [sym_val_bool] = STATE(3030), - [sym__spread_variable] = STATE(3388), - [sym_val_variable] = STATE(2823), - [sym_val_cellpath] = STATE(3333), - [sym_val_number] = STATE(3333), - [sym__val_number_decimal] = STATE(2466), - [sym__val_number] = STATE(3341), - [sym_val_duration] = STATE(3333), - [sym_val_filesize] = STATE(3333), - [sym_val_binary] = STATE(3333), - [sym_val_string] = STATE(3333), - [sym__raw_str] = STATE(2543), - [sym__str_double_quotes] = STATE(2543), - [sym__str_single_quotes] = STATE(2543), - [sym__str_back_ticks] = STATE(2543), - [sym_val_interpolated] = STATE(3333), - [sym__inter_single_quotes] = STATE(3317), - [sym__inter_double_quotes] = STATE(3318), - [sym_val_list] = STATE(3333), - [sym__spread_list] = STATE(3357), - [sym_val_record] = STATE(3333), - [sym_val_table] = STATE(3333), - [sym_val_closure] = STATE(3333), - [sym__cmd_arg] = STATE(3407), - [sym_redirection] = STATE(3408), - [sym__flag] = STATE(3409), - [sym_short_flag] = STATE(3410), - [sym_long_flag] = STATE(3410), - [sym_unquoted] = STATE(2958), - [sym__unquoted_with_expr] = STATE(3273), - [sym__unquoted_anonymous_prefix] = STATE(4740), + [124] = { [sym_comment] = STATE(124), - [ts_builtin_sym_end] = ACTIONS(835), - [anon_sym_true] = ACTIONS(930), - [anon_sym_false] = ACTIONS(930), - [anon_sym_null] = ACTIONS(932), - [aux_sym_cmd_identifier_token3] = ACTIONS(934), - [aux_sym_cmd_identifier_token4] = ACTIONS(934), - [aux_sym_cmd_identifier_token5] = ACTIONS(934), - [sym__newline] = ACTIONS(833), - [sym__space] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(833), - [anon_sym_PIPE] = ACTIONS(833), - [anon_sym_err_GT_PIPE] = ACTIONS(833), - [anon_sym_out_GT_PIPE] = ACTIONS(833), - [anon_sym_e_GT_PIPE] = ACTIONS(833), - [anon_sym_o_GT_PIPE] = ACTIONS(833), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(833), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(833), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(833), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(940), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DASH2] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(946), - [anon_sym_DOT_DOT] = ACTIONS(948), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(950), - [anon_sym_DOT_DOT_EQ] = ACTIONS(952), - [anon_sym_DOT_DOT_LT] = ACTIONS(952), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(954), - [aux_sym__val_number_decimal_token1] = ACTIONS(956), - [aux_sym__val_number_decimal_token2] = ACTIONS(956), - [aux_sym__val_number_decimal_token3] = ACTIONS(958), - [aux_sym__val_number_decimal_token4] = ACTIONS(958), - [aux_sym__val_number_token1] = ACTIONS(960), - [aux_sym__val_number_token2] = ACTIONS(960), - [aux_sym__val_number_token3] = ACTIONS(960), - [anon_sym_0b] = ACTIONS(962), - [anon_sym_0o] = ACTIONS(964), - [anon_sym_0x] = ACTIONS(964), - [sym_val_date] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(970), - [anon_sym_BQUOTE] = ACTIONS(972), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(974), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(978), - [anon_sym_err_GT] = ACTIONS(980), - [anon_sym_out_GT] = ACTIONS(980), - [anon_sym_e_GT] = ACTIONS(980), - [anon_sym_o_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT] = ACTIONS(980), - [anon_sym_err_GT_GT] = ACTIONS(980), - [anon_sym_out_GT_GT] = ACTIONS(980), - [anon_sym_e_GT_GT] = ACTIONS(980), - [anon_sym_o_GT_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), - [aux_sym_unquoted_token1] = ACTIONS(982), - [anon_sym_POUND] = ACTIONS(105), - [sym_raw_string_begin] = ACTIONS(984), - }, - [STATE(125)] = { - [sym_comment] = STATE(125), [anon_sym_in] = ACTIONS(811), - [anon_sym_STAR_STAR] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_mod] = ACTIONS(904), - [anon_sym_SLASH_SLASH] = ACTIONS(904), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_bit_DASHshl] = ACTIONS(904), - [anon_sym_bit_DASHshr] = ACTIONS(904), - [anon_sym_EQ_TILDE] = ACTIONS(904), - [anon_sym_BANG_TILDE] = ACTIONS(904), - [anon_sym_like] = ACTIONS(904), - [anon_sym_not_DASHlike] = ACTIONS(904), - [anon_sym_bit_DASHand] = ACTIONS(904), - [anon_sym_bit_DASHxor] = ACTIONS(904), - [anon_sym_bit_DASHor] = ACTIONS(904), - [anon_sym_and] = ACTIONS(904), - [anon_sym_xor] = ACTIONS(904), - [anon_sym_or] = ACTIONS(904), - [anon_sym_in2] = ACTIONS(904), - [anon_sym_not_DASHin] = ACTIONS(904), - [anon_sym_has] = ACTIONS(904), - [anon_sym_not_DASHhas] = ACTIONS(904), - [anon_sym_starts_DASHwith] = ACTIONS(904), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(904), - [anon_sym_ends_DASHwith] = ACTIONS(904), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(904), - [anon_sym_BANG_EQ] = ACTIONS(904), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_LT_EQ] = ACTIONS(904), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(904), - [aux_sym_cmd_identifier_token6] = ACTIONS(908), + [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(811), [anon_sym_SEMI] = ACTIONS(811), [anon_sym_PIPE] = ACTIONS(811), @@ -55141,9 +54983,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(811), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(811), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(811), + [anon_sym_RPAREN] = ACTIONS(811), [anon_sym_GT2] = ACTIONS(811), [anon_sym_DASH2] = ACTIONS(811), - [anon_sym_RBRACE] = ACTIONS(811), [anon_sym_STAR2] = ACTIONS(811), [anon_sym_and2] = ACTIONS(811), [anon_sym_xor2] = ACTIONS(811), @@ -55178,8 +55020,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(819), [anon_sym_DOT_DOT_EQ2] = ACTIONS(821), [anon_sym_DOT_DOT_LT2] = ACTIONS(821), - [sym_filesize_unit] = ACTIONS(986), - [sym_duration_unit] = ACTIONS(988), + [sym_filesize_unit] = ACTIONS(926), + [sym_duration_unit] = ACTIONS(928), [anon_sym_err_GT] = ACTIONS(811), [anon_sym_out_GT] = ACTIONS(811), [anon_sym_e_GT] = ACTIONS(811), @@ -55198,904 +55040,1010 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(811), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(126)] = { + [125] = { + [sym_comment] = STATE(125), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token1] = ACTIONS(930), + [aux_sym__immediate_decimal_token5] = ACTIONS(932), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(105), + }, + [126] = { [sym_comment] = STATE(126), - [ts_builtin_sym_end] = ACTIONS(805), - [anon_sym_in] = ACTIONS(803), - [anon_sym_STAR_STAR] = ACTIONS(805), - [anon_sym_PLUS_PLUS] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(803), - [anon_sym_mod] = ACTIONS(805), - [anon_sym_SLASH_SLASH] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(803), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_bit_DASHshl] = ACTIONS(805), - [anon_sym_bit_DASHshr] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(805), - [anon_sym_BANG_TILDE] = ACTIONS(805), - [anon_sym_like] = ACTIONS(805), - [anon_sym_not_DASHlike] = ACTIONS(805), - [anon_sym_bit_DASHand] = ACTIONS(805), - [anon_sym_bit_DASHxor] = ACTIONS(805), - [anon_sym_bit_DASHor] = ACTIONS(805), - [anon_sym_and] = ACTIONS(805), - [anon_sym_xor] = ACTIONS(805), - [anon_sym_or] = ACTIONS(805), - [anon_sym_in2] = ACTIONS(805), - [anon_sym_not_DASHin] = ACTIONS(805), - [anon_sym_has] = ACTIONS(805), - [anon_sym_not_DASHhas] = ACTIONS(805), - [anon_sym_starts_DASHwith] = ACTIONS(805), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(805), - [anon_sym_ends_DASHwith] = ACTIONS(805), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(805), - [anon_sym_EQ_EQ] = ACTIONS(805), - [anon_sym_BANG_EQ] = ACTIONS(805), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_LT_EQ] = ACTIONS(805), - [anon_sym_GT] = ACTIONS(803), - [anon_sym_GT_EQ] = ACTIONS(805), - [aux_sym_cmd_identifier_token6] = ACTIONS(803), - [sym__newline] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_PIPE] = ACTIONS(803), - [anon_sym_err_GT_PIPE] = ACTIONS(803), - [anon_sym_out_GT_PIPE] = ACTIONS(803), - [anon_sym_e_GT_PIPE] = ACTIONS(803), - [anon_sym_o_GT_PIPE] = ACTIONS(803), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(803), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(803), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(803), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(803), - [anon_sym_GT2] = ACTIONS(803), - [anon_sym_DASH2] = ACTIONS(803), - [anon_sym_STAR2] = ACTIONS(803), - [anon_sym_and2] = ACTIONS(803), - [anon_sym_xor2] = ACTIONS(803), - [anon_sym_or2] = ACTIONS(803), - [anon_sym_not_DASHin2] = ACTIONS(803), - [anon_sym_has2] = ACTIONS(803), - [anon_sym_not_DASHhas2] = ACTIONS(803), - [anon_sym_starts_DASHwith2] = ACTIONS(803), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(803), - [anon_sym_ends_DASHwith2] = ACTIONS(803), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(803), - [anon_sym_EQ_EQ2] = ACTIONS(803), - [anon_sym_BANG_EQ2] = ACTIONS(803), - [anon_sym_LT2] = ACTIONS(803), - [anon_sym_LT_EQ2] = ACTIONS(803), - [anon_sym_GT_EQ2] = ACTIONS(803), - [anon_sym_EQ_TILDE2] = ACTIONS(803), - [anon_sym_BANG_TILDE2] = ACTIONS(803), - [anon_sym_like2] = ACTIONS(803), - [anon_sym_not_DASHlike2] = ACTIONS(803), - [anon_sym_STAR_STAR2] = ACTIONS(803), - [anon_sym_PLUS_PLUS2] = ACTIONS(803), - [anon_sym_SLASH2] = ACTIONS(803), - [anon_sym_mod2] = ACTIONS(803), - [anon_sym_SLASH_SLASH2] = ACTIONS(803), - [anon_sym_PLUS2] = ACTIONS(803), - [anon_sym_bit_DASHshl2] = ACTIONS(803), - [anon_sym_bit_DASHshr2] = ACTIONS(803), - [anon_sym_bit_DASHand2] = ACTIONS(803), - [anon_sym_bit_DASHxor2] = ACTIONS(803), - [anon_sym_bit_DASHor2] = ACTIONS(803), - [anon_sym_DOT_DOT2] = ACTIONS(803), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(805), - [anon_sym_DOT_DOT_LT2] = ACTIONS(805), - [sym_filesize_unit] = ACTIONS(803), - [sym_duration_unit] = ACTIONS(805), - [anon_sym_err_GT] = ACTIONS(803), - [anon_sym_out_GT] = ACTIONS(803), - [anon_sym_e_GT] = ACTIONS(803), - [anon_sym_o_GT] = ACTIONS(803), - [anon_sym_err_PLUSout_GT] = ACTIONS(803), - [anon_sym_out_PLUSerr_GT] = ACTIONS(803), - [anon_sym_o_PLUSe_GT] = ACTIONS(803), - [anon_sym_e_PLUSo_GT] = ACTIONS(803), - [anon_sym_err_GT_GT] = ACTIONS(803), - [anon_sym_out_GT_GT] = ACTIONS(803), - [anon_sym_e_GT_GT] = ACTIONS(803), - [anon_sym_o_GT_GT] = ACTIONS(803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(803), + [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(105), }, - [STATE(127)] = { + [127] = { [sym_comment] = STATE(127), - [anon_sym_in] = ACTIONS(759), - [anon_sym_STAR_STAR] = ACTIONS(761), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_mod] = ACTIONS(761), - [anon_sym_SLASH_SLASH] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_bit_DASHshl] = ACTIONS(761), - [anon_sym_bit_DASHshr] = ACTIONS(761), - [anon_sym_EQ_TILDE] = ACTIONS(761), - [anon_sym_BANG_TILDE] = ACTIONS(761), - [anon_sym_like] = ACTIONS(761), - [anon_sym_not_DASHlike] = ACTIONS(761), - [anon_sym_bit_DASHand] = ACTIONS(761), - [anon_sym_bit_DASHxor] = ACTIONS(761), - [anon_sym_bit_DASHor] = ACTIONS(761), - [anon_sym_and] = ACTIONS(761), - [anon_sym_xor] = ACTIONS(761), - [anon_sym_or] = ACTIONS(761), - [anon_sym_in2] = ACTIONS(761), - [anon_sym_not_DASHin] = ACTIONS(761), - [anon_sym_has] = ACTIONS(761), - [anon_sym_not_DASHhas] = ACTIONS(761), - [anon_sym_starts_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), - [anon_sym_ends_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), - [anon_sym_EQ_EQ] = ACTIONS(761), - [anon_sym_BANG_EQ] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_LT_EQ] = ACTIONS(761), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_GT_EQ] = ACTIONS(761), - [aux_sym_cmd_identifier_token6] = ACTIONS(759), - [sym__newline] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_err_GT_PIPE] = ACTIONS(759), - [anon_sym_out_GT_PIPE] = ACTIONS(759), - [anon_sym_e_GT_PIPE] = ACTIONS(759), - [anon_sym_o_GT_PIPE] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), - [anon_sym_GT2] = ACTIONS(759), - [anon_sym_DASH2] = ACTIONS(759), - [anon_sym_STAR2] = ACTIONS(759), - [anon_sym_and2] = ACTIONS(759), - [anon_sym_xor2] = ACTIONS(759), - [anon_sym_or2] = ACTIONS(759), - [anon_sym_not_DASHin2] = ACTIONS(759), - [anon_sym_has2] = ACTIONS(759), - [anon_sym_not_DASHhas2] = ACTIONS(759), - [anon_sym_starts_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), - [anon_sym_ends_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), - [anon_sym_EQ_EQ2] = ACTIONS(759), - [anon_sym_BANG_EQ2] = ACTIONS(759), - [anon_sym_LT2] = ACTIONS(759), - [anon_sym_LT_EQ2] = ACTIONS(759), - [anon_sym_GT_EQ2] = ACTIONS(759), - [anon_sym_EQ_TILDE2] = ACTIONS(759), - [anon_sym_BANG_TILDE2] = ACTIONS(759), - [anon_sym_like2] = ACTIONS(759), - [anon_sym_not_DASHlike2] = ACTIONS(759), - [anon_sym_STAR_STAR2] = ACTIONS(759), - [anon_sym_PLUS_PLUS2] = ACTIONS(759), - [anon_sym_SLASH2] = ACTIONS(759), - [anon_sym_mod2] = ACTIONS(759), - [anon_sym_SLASH_SLASH2] = ACTIONS(759), - [anon_sym_PLUS2] = ACTIONS(759), - [anon_sym_bit_DASHshl2] = ACTIONS(759), - [anon_sym_bit_DASHshr2] = ACTIONS(759), - [anon_sym_bit_DASHand2] = ACTIONS(759), - [anon_sym_bit_DASHxor2] = ACTIONS(759), - [anon_sym_bit_DASHor2] = ACTIONS(759), - [anon_sym_DOT_DOT2] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(761), - [aux_sym__immediate_decimal_token1] = ACTIONS(990), - [aux_sym__immediate_decimal_token5] = ACTIONS(992), - [sym_filesize_unit] = ACTIONS(759), - [sym_duration_unit] = ACTIONS(761), - [anon_sym_err_GT] = ACTIONS(759), - [anon_sym_out_GT] = ACTIONS(759), - [anon_sym_e_GT] = ACTIONS(759), - [anon_sym_o_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT] = ACTIONS(759), - [anon_sym_err_GT_GT] = ACTIONS(759), - [anon_sym_out_GT_GT] = ACTIONS(759), - [anon_sym_e_GT_GT] = ACTIONS(759), - [anon_sym_o_GT_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_in] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_mod] = ACTIONS(803), + [anon_sym_SLASH_SLASH] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(803), + [anon_sym_bit_DASHshl] = ACTIONS(803), + [anon_sym_bit_DASHshr] = ACTIONS(803), + [anon_sym_EQ_TILDE] = ACTIONS(803), + [anon_sym_BANG_TILDE] = ACTIONS(803), + [anon_sym_like] = ACTIONS(803), + [anon_sym_not_DASHlike] = ACTIONS(803), + [anon_sym_bit_DASHand] = ACTIONS(803), + [anon_sym_bit_DASHxor] = ACTIONS(803), + [anon_sym_bit_DASHor] = ACTIONS(803), + [anon_sym_and] = ACTIONS(803), + [anon_sym_xor] = ACTIONS(803), + [anon_sym_or] = ACTIONS(803), + [anon_sym_in2] = ACTIONS(803), + [anon_sym_not_DASHin] = ACTIONS(803), + [anon_sym_has] = ACTIONS(803), + [anon_sym_not_DASHhas] = ACTIONS(803), + [anon_sym_starts_DASHwith] = ACTIONS(803), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(803), + [anon_sym_ends_DASHwith] = ACTIONS(803), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(803), + [anon_sym_EQ_EQ] = ACTIONS(803), + [anon_sym_BANG_EQ] = ACTIONS(803), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(803), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(803), + [aux_sym_cmd_identifier_token6] = ACTIONS(801), + [sym__newline] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_err_GT_PIPE] = ACTIONS(801), + [anon_sym_out_GT_PIPE] = ACTIONS(801), + [anon_sym_e_GT_PIPE] = ACTIONS(801), + [anon_sym_o_GT_PIPE] = ACTIONS(801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(801), + [anon_sym_GT2] = ACTIONS(801), + [anon_sym_DASH2] = ACTIONS(801), + [anon_sym_STAR2] = ACTIONS(801), + [anon_sym_and2] = ACTIONS(801), + [anon_sym_xor2] = ACTIONS(801), + [anon_sym_or2] = ACTIONS(801), + [anon_sym_not_DASHin2] = ACTIONS(801), + [anon_sym_has2] = ACTIONS(801), + [anon_sym_not_DASHhas2] = ACTIONS(801), + [anon_sym_starts_DASHwith2] = ACTIONS(801), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(801), + [anon_sym_ends_DASHwith2] = ACTIONS(801), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(801), + [anon_sym_EQ_EQ2] = ACTIONS(801), + [anon_sym_BANG_EQ2] = ACTIONS(801), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ2] = ACTIONS(801), + [anon_sym_GT_EQ2] = ACTIONS(801), + [anon_sym_EQ_TILDE2] = ACTIONS(801), + [anon_sym_BANG_TILDE2] = ACTIONS(801), + [anon_sym_like2] = ACTIONS(801), + [anon_sym_not_DASHlike2] = ACTIONS(801), + [anon_sym_STAR_STAR2] = ACTIONS(801), + [anon_sym_PLUS_PLUS2] = ACTIONS(801), + [anon_sym_SLASH2] = ACTIONS(801), + [anon_sym_mod2] = ACTIONS(801), + [anon_sym_SLASH_SLASH2] = ACTIONS(801), + [anon_sym_PLUS2] = ACTIONS(801), + [anon_sym_bit_DASHshl2] = ACTIONS(801), + [anon_sym_bit_DASHshr2] = ACTIONS(801), + [anon_sym_bit_DASHand2] = ACTIONS(801), + [anon_sym_bit_DASHxor2] = ACTIONS(801), + [anon_sym_bit_DASHor2] = ACTIONS(801), + [anon_sym_DOT_DOT2] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), + [anon_sym_DOT_DOT_LT2] = ACTIONS(803), + [sym_filesize_unit] = ACTIONS(801), + [sym_duration_unit] = ACTIONS(803), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [anon_sym_err_GT_GT] = ACTIONS(801), + [anon_sym_out_GT_GT] = ACTIONS(801), + [anon_sym_e_GT_GT] = ACTIONS(801), + [anon_sym_o_GT_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(801), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(128)] = { + [128] = { [sym_comment] = STATE(128), - [anon_sym_in] = ACTIONS(759), - [anon_sym_STAR_STAR] = ACTIONS(761), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_mod] = ACTIONS(761), - [anon_sym_SLASH_SLASH] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_bit_DASHshl] = ACTIONS(761), - [anon_sym_bit_DASHshr] = ACTIONS(761), - [anon_sym_EQ_TILDE] = ACTIONS(761), - [anon_sym_BANG_TILDE] = ACTIONS(761), - [anon_sym_like] = ACTIONS(761), - [anon_sym_not_DASHlike] = ACTIONS(761), - [anon_sym_bit_DASHand] = ACTIONS(761), - [anon_sym_bit_DASHxor] = ACTIONS(761), - [anon_sym_bit_DASHor] = ACTIONS(761), - [anon_sym_and] = ACTIONS(761), - [anon_sym_xor] = ACTIONS(761), - [anon_sym_or] = ACTIONS(761), - [anon_sym_in2] = ACTIONS(761), - [anon_sym_not_DASHin] = ACTIONS(761), - [anon_sym_has] = ACTIONS(761), - [anon_sym_not_DASHhas] = ACTIONS(761), - [anon_sym_starts_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), - [anon_sym_ends_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), - [anon_sym_EQ_EQ] = ACTIONS(761), - [anon_sym_BANG_EQ] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_LT_EQ] = ACTIONS(761), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_GT_EQ] = ACTIONS(761), - [aux_sym_cmd_identifier_token6] = ACTIONS(759), - [sym__newline] = ACTIONS(759), - [anon_sym_SEMI] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_err_GT_PIPE] = ACTIONS(759), - [anon_sym_out_GT_PIPE] = ACTIONS(759), - [anon_sym_e_GT_PIPE] = ACTIONS(759), - [anon_sym_o_GT_PIPE] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), - [anon_sym_RPAREN] = ACTIONS(759), - [anon_sym_GT2] = ACTIONS(759), - [anon_sym_DASH2] = ACTIONS(759), - [anon_sym_STAR2] = ACTIONS(759), - [anon_sym_and2] = ACTIONS(759), - [anon_sym_xor2] = ACTIONS(759), - [anon_sym_or2] = ACTIONS(759), - [anon_sym_not_DASHin2] = ACTIONS(759), - [anon_sym_has2] = ACTIONS(759), - [anon_sym_not_DASHhas2] = ACTIONS(759), - [anon_sym_starts_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), - [anon_sym_ends_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), - [anon_sym_EQ_EQ2] = ACTIONS(759), - [anon_sym_BANG_EQ2] = ACTIONS(759), - [anon_sym_LT2] = ACTIONS(759), - [anon_sym_LT_EQ2] = ACTIONS(759), - [anon_sym_GT_EQ2] = ACTIONS(759), - [anon_sym_EQ_TILDE2] = ACTIONS(759), - [anon_sym_BANG_TILDE2] = ACTIONS(759), - [anon_sym_like2] = ACTIONS(759), - [anon_sym_not_DASHlike2] = ACTIONS(759), - [anon_sym_STAR_STAR2] = ACTIONS(759), - [anon_sym_PLUS_PLUS2] = ACTIONS(759), - [anon_sym_SLASH2] = ACTIONS(759), - [anon_sym_mod2] = ACTIONS(759), - [anon_sym_SLASH_SLASH2] = ACTIONS(759), - [anon_sym_PLUS2] = ACTIONS(759), - [anon_sym_bit_DASHshl2] = ACTIONS(759), - [anon_sym_bit_DASHshr2] = ACTIONS(759), - [anon_sym_bit_DASHand2] = ACTIONS(759), - [anon_sym_bit_DASHxor2] = ACTIONS(759), - [anon_sym_bit_DASHor2] = ACTIONS(759), - [anon_sym_DOT_DOT2] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(761), - [sym_filesize_unit] = ACTIONS(759), - [sym_duration_unit] = ACTIONS(761), - [anon_sym_err_GT] = ACTIONS(759), - [anon_sym_out_GT] = ACTIONS(759), - [anon_sym_e_GT] = ACTIONS(759), - [anon_sym_o_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT] = ACTIONS(759), - [anon_sym_err_GT_GT] = ACTIONS(759), - [anon_sym_out_GT_GT] = ACTIONS(759), - [anon_sym_e_GT_GT] = ACTIONS(759), - [anon_sym_o_GT_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), + [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(934), + [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(105), }, - [STATE(129)] = { + [129] = { [sym_comment] = STATE(129), - [anon_sym_in] = ACTIONS(791), - [anon_sym_STAR_STAR] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_SLASH] = ACTIONS(791), - [anon_sym_mod] = ACTIONS(793), - [anon_sym_SLASH_SLASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_like] = ACTIONS(793), - [anon_sym_not_DASHlike] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_in2] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_has] = ACTIONS(793), - [anon_sym_not_DASHhas] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(793), - [aux_sym_cmd_identifier_token6] = ACTIONS(791), - [sym__newline] = ACTIONS(791), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_RPAREN] = ACTIONS(791), - [anon_sym_GT2] = ACTIONS(791), - [anon_sym_DASH2] = ACTIONS(791), - [anon_sym_STAR2] = ACTIONS(791), - [anon_sym_and2] = ACTIONS(791), - [anon_sym_xor2] = ACTIONS(791), - [anon_sym_or2] = ACTIONS(791), - [anon_sym_not_DASHin2] = ACTIONS(791), - [anon_sym_has2] = ACTIONS(791), - [anon_sym_not_DASHhas2] = ACTIONS(791), - [anon_sym_starts_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), - [anon_sym_ends_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), - [anon_sym_EQ_EQ2] = ACTIONS(791), - [anon_sym_BANG_EQ2] = ACTIONS(791), - [anon_sym_LT2] = ACTIONS(791), - [anon_sym_LT_EQ2] = ACTIONS(791), - [anon_sym_GT_EQ2] = ACTIONS(791), - [anon_sym_EQ_TILDE2] = ACTIONS(791), - [anon_sym_BANG_TILDE2] = ACTIONS(791), - [anon_sym_like2] = ACTIONS(791), - [anon_sym_not_DASHlike2] = ACTIONS(791), - [anon_sym_STAR_STAR2] = ACTIONS(791), - [anon_sym_PLUS_PLUS2] = ACTIONS(791), - [anon_sym_SLASH2] = ACTIONS(791), - [anon_sym_mod2] = ACTIONS(791), - [anon_sym_SLASH_SLASH2] = ACTIONS(791), - [anon_sym_PLUS2] = ACTIONS(791), - [anon_sym_bit_DASHshl2] = ACTIONS(791), - [anon_sym_bit_DASHshr2] = ACTIONS(791), - [anon_sym_bit_DASHand2] = ACTIONS(791), - [anon_sym_bit_DASHxor2] = ACTIONS(791), - [anon_sym_bit_DASHor2] = ACTIONS(791), - [anon_sym_DOT_DOT2] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(793), - [sym_filesize_unit] = ACTIONS(791), - [sym_duration_unit] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(791), - [anon_sym_out_GT] = ACTIONS(791), - [anon_sym_e_GT] = ACTIONS(791), - [anon_sym_o_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT] = ACTIONS(791), - [anon_sym_err_GT_GT] = ACTIONS(791), - [anon_sym_out_GT_GT] = ACTIONS(791), - [anon_sym_e_GT_GT] = ACTIONS(791), - [anon_sym_o_GT_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(807), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(763), + [anon_sym_out_GT_GT] = ACTIONS(763), + [anon_sym_e_GT_GT] = ACTIONS(763), + [anon_sym_o_GT_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(130)] = { + [130] = { [sym_comment] = STATE(130), - [anon_sym_in] = ACTIONS(803), - [anon_sym_STAR_STAR] = ACTIONS(805), - [anon_sym_PLUS_PLUS] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(803), - [anon_sym_mod] = ACTIONS(805), - [anon_sym_SLASH_SLASH] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(803), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_bit_DASHshl] = ACTIONS(805), - [anon_sym_bit_DASHshr] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(805), - [anon_sym_BANG_TILDE] = ACTIONS(805), - [anon_sym_like] = ACTIONS(805), - [anon_sym_not_DASHlike] = ACTIONS(805), - [anon_sym_bit_DASHand] = ACTIONS(805), - [anon_sym_bit_DASHxor] = ACTIONS(805), - [anon_sym_bit_DASHor] = ACTIONS(805), - [anon_sym_and] = ACTIONS(805), - [anon_sym_xor] = ACTIONS(805), - [anon_sym_or] = ACTIONS(805), - [anon_sym_in2] = ACTIONS(805), - [anon_sym_not_DASHin] = ACTIONS(805), - [anon_sym_has] = ACTIONS(805), - [anon_sym_not_DASHhas] = ACTIONS(805), - [anon_sym_starts_DASHwith] = ACTIONS(805), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(805), - [anon_sym_ends_DASHwith] = ACTIONS(805), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(805), - [anon_sym_EQ_EQ] = ACTIONS(805), - [anon_sym_BANG_EQ] = ACTIONS(805), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_LT_EQ] = ACTIONS(805), - [anon_sym_GT] = ACTIONS(803), - [anon_sym_GT_EQ] = ACTIONS(805), - [aux_sym_cmd_identifier_token6] = ACTIONS(803), - [sym__newline] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_PIPE] = ACTIONS(803), - [anon_sym_err_GT_PIPE] = ACTIONS(803), - [anon_sym_out_GT_PIPE] = ACTIONS(803), - [anon_sym_e_GT_PIPE] = ACTIONS(803), - [anon_sym_o_GT_PIPE] = ACTIONS(803), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(803), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(803), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(803), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(803), - [anon_sym_GT2] = ACTIONS(803), - [anon_sym_DASH2] = ACTIONS(803), - [anon_sym_RBRACE] = ACTIONS(803), - [anon_sym_STAR2] = ACTIONS(803), - [anon_sym_and2] = ACTIONS(803), - [anon_sym_xor2] = ACTIONS(803), - [anon_sym_or2] = ACTIONS(803), - [anon_sym_not_DASHin2] = ACTIONS(803), - [anon_sym_has2] = ACTIONS(803), - [anon_sym_not_DASHhas2] = ACTIONS(803), - [anon_sym_starts_DASHwith2] = ACTIONS(803), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(803), - [anon_sym_ends_DASHwith2] = ACTIONS(803), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(803), - [anon_sym_EQ_EQ2] = ACTIONS(803), - [anon_sym_BANG_EQ2] = ACTIONS(803), - [anon_sym_LT2] = ACTIONS(803), - [anon_sym_LT_EQ2] = ACTIONS(803), - [anon_sym_GT_EQ2] = ACTIONS(803), - [anon_sym_EQ_TILDE2] = ACTIONS(803), - [anon_sym_BANG_TILDE2] = ACTIONS(803), - [anon_sym_like2] = ACTIONS(803), - [anon_sym_not_DASHlike2] = ACTIONS(803), - [anon_sym_STAR_STAR2] = ACTIONS(803), - [anon_sym_PLUS_PLUS2] = ACTIONS(803), - [anon_sym_SLASH2] = ACTIONS(803), - [anon_sym_mod2] = ACTIONS(803), - [anon_sym_SLASH_SLASH2] = ACTIONS(803), - [anon_sym_PLUS2] = ACTIONS(803), - [anon_sym_bit_DASHshl2] = ACTIONS(803), - [anon_sym_bit_DASHshr2] = ACTIONS(803), - [anon_sym_bit_DASHand2] = ACTIONS(803), - [anon_sym_bit_DASHxor2] = ACTIONS(803), - [anon_sym_bit_DASHor2] = ACTIONS(803), - [anon_sym_DOT_DOT2] = ACTIONS(803), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(805), - [anon_sym_DOT_DOT_LT2] = ACTIONS(805), - [sym_filesize_unit] = ACTIONS(803), - [sym_duration_unit] = ACTIONS(805), - [anon_sym_err_GT] = ACTIONS(803), - [anon_sym_out_GT] = ACTIONS(803), - [anon_sym_e_GT] = ACTIONS(803), - [anon_sym_o_GT] = ACTIONS(803), - [anon_sym_err_PLUSout_GT] = ACTIONS(803), - [anon_sym_out_PLUSerr_GT] = ACTIONS(803), - [anon_sym_o_PLUSe_GT] = ACTIONS(803), - [anon_sym_e_PLUSo_GT] = ACTIONS(803), - [anon_sym_err_GT_GT] = ACTIONS(803), - [anon_sym_out_GT_GT] = ACTIONS(803), - [anon_sym_e_GT_GT] = ACTIONS(803), - [anon_sym_o_GT_GT] = ACTIONS(803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(803), + [anon_sym_in] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_mod] = ACTIONS(803), + [anon_sym_SLASH_SLASH] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(803), + [anon_sym_bit_DASHshl] = ACTIONS(803), + [anon_sym_bit_DASHshr] = ACTIONS(803), + [anon_sym_EQ_TILDE] = ACTIONS(803), + [anon_sym_BANG_TILDE] = ACTIONS(803), + [anon_sym_like] = ACTIONS(803), + [anon_sym_not_DASHlike] = ACTIONS(803), + [anon_sym_bit_DASHand] = ACTIONS(803), + [anon_sym_bit_DASHxor] = ACTIONS(803), + [anon_sym_bit_DASHor] = ACTIONS(803), + [anon_sym_and] = ACTIONS(803), + [anon_sym_xor] = ACTIONS(803), + [anon_sym_or] = ACTIONS(803), + [anon_sym_in2] = ACTIONS(803), + [anon_sym_not_DASHin] = ACTIONS(803), + [anon_sym_has] = ACTIONS(803), + [anon_sym_not_DASHhas] = ACTIONS(803), + [anon_sym_starts_DASHwith] = ACTIONS(803), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(803), + [anon_sym_ends_DASHwith] = ACTIONS(803), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(803), + [anon_sym_EQ_EQ] = ACTIONS(803), + [anon_sym_BANG_EQ] = ACTIONS(803), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(803), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(803), + [aux_sym_cmd_identifier_token6] = ACTIONS(801), + [sym__newline] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_err_GT_PIPE] = ACTIONS(801), + [anon_sym_out_GT_PIPE] = ACTIONS(801), + [anon_sym_e_GT_PIPE] = ACTIONS(801), + [anon_sym_o_GT_PIPE] = ACTIONS(801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(801), + [anon_sym_GT2] = ACTIONS(801), + [anon_sym_DASH2] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_STAR2] = ACTIONS(801), + [anon_sym_and2] = ACTIONS(801), + [anon_sym_xor2] = ACTIONS(801), + [anon_sym_or2] = ACTIONS(801), + [anon_sym_not_DASHin2] = ACTIONS(801), + [anon_sym_has2] = ACTIONS(801), + [anon_sym_not_DASHhas2] = ACTIONS(801), + [anon_sym_starts_DASHwith2] = ACTIONS(801), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(801), + [anon_sym_ends_DASHwith2] = ACTIONS(801), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(801), + [anon_sym_EQ_EQ2] = ACTIONS(801), + [anon_sym_BANG_EQ2] = ACTIONS(801), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ2] = ACTIONS(801), + [anon_sym_GT_EQ2] = ACTIONS(801), + [anon_sym_EQ_TILDE2] = ACTIONS(801), + [anon_sym_BANG_TILDE2] = ACTIONS(801), + [anon_sym_like2] = ACTIONS(801), + [anon_sym_not_DASHlike2] = ACTIONS(801), + [anon_sym_STAR_STAR2] = ACTIONS(801), + [anon_sym_PLUS_PLUS2] = ACTIONS(801), + [anon_sym_SLASH2] = ACTIONS(801), + [anon_sym_mod2] = ACTIONS(801), + [anon_sym_SLASH_SLASH2] = ACTIONS(801), + [anon_sym_PLUS2] = ACTIONS(801), + [anon_sym_bit_DASHshl2] = ACTIONS(801), + [anon_sym_bit_DASHshr2] = ACTIONS(801), + [anon_sym_bit_DASHand2] = ACTIONS(801), + [anon_sym_bit_DASHxor2] = ACTIONS(801), + [anon_sym_bit_DASHor2] = ACTIONS(801), + [anon_sym_DOT_DOT2] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), + [anon_sym_DOT_DOT_LT2] = ACTIONS(803), + [sym_filesize_unit] = ACTIONS(801), + [sym_duration_unit] = ACTIONS(803), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [anon_sym_err_GT_GT] = ACTIONS(801), + [anon_sym_out_GT_GT] = ACTIONS(801), + [anon_sym_e_GT_GT] = ACTIONS(801), + [anon_sym_o_GT_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(801), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(131)] = { + [131] = { + [sym_expr_parenthesized] = STATE(2917), + [sym__spread_parenthesized] = STATE(3308), + [sym_val_range] = STATE(3315), + [sym__val_range] = STATE(4827), + [sym__value] = STATE(3315), + [sym_val_nothing] = STATE(3321), + [sym_val_bool] = STATE(3037), + [sym__spread_variable] = STATE(3317), + [sym_val_variable] = STATE(2829), + [sym_val_cellpath] = STATE(3321), + [sym_val_number] = STATE(3321), + [sym__val_number_decimal] = STATE(2476), + [sym__val_number] = STATE(3325), + [sym_val_duration] = STATE(3321), + [sym_val_filesize] = STATE(3321), + [sym_val_binary] = STATE(3321), + [sym_val_string] = STATE(3321), + [sym__raw_str] = STATE(2553), + [sym__str_double_quotes] = STATE(2553), + [sym__str_single_quotes] = STATE(2553), + [sym__str_back_ticks] = STATE(2553), + [sym_val_interpolated] = STATE(3321), + [sym__inter_single_quotes] = STATE(3375), + [sym__inter_double_quotes] = STATE(3372), + [sym_val_list] = STATE(3321), + [sym__spread_list] = STATE(3308), + [sym_val_record] = STATE(3321), + [sym_val_table] = STATE(3321), + [sym_val_closure] = STATE(3321), + [sym__cmd_arg] = STATE(3326), + [sym_redirection] = STATE(3328), + [sym__flag] = STATE(3332), + [sym_short_flag] = STATE(3333), + [sym_long_flag] = STATE(3333), + [sym_unquoted] = STATE(2928), + [sym__unquoted_with_expr] = STATE(3335), + [sym__unquoted_anonymous_prefix] = STATE(4827), [sym_comment] = STATE(131), - [anon_sym_in] = ACTIONS(803), - [anon_sym_STAR_STAR] = ACTIONS(805), - [anon_sym_PLUS_PLUS] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(803), - [anon_sym_mod] = ACTIONS(805), - [anon_sym_SLASH_SLASH] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(803), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_bit_DASHshl] = ACTIONS(805), - [anon_sym_bit_DASHshr] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(805), - [anon_sym_BANG_TILDE] = ACTIONS(805), - [anon_sym_like] = ACTIONS(805), - [anon_sym_not_DASHlike] = ACTIONS(805), - [anon_sym_bit_DASHand] = ACTIONS(805), - [anon_sym_bit_DASHxor] = ACTIONS(805), - [anon_sym_bit_DASHor] = ACTIONS(805), - [anon_sym_and] = ACTIONS(805), - [anon_sym_xor] = ACTIONS(805), - [anon_sym_or] = ACTIONS(805), - [anon_sym_in2] = ACTIONS(805), - [anon_sym_not_DASHin] = ACTIONS(805), - [anon_sym_has] = ACTIONS(805), - [anon_sym_not_DASHhas] = ACTIONS(805), - [anon_sym_starts_DASHwith] = ACTIONS(805), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(805), - [anon_sym_ends_DASHwith] = ACTIONS(805), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(805), - [anon_sym_EQ_EQ] = ACTIONS(805), - [anon_sym_BANG_EQ] = ACTIONS(805), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_LT_EQ] = ACTIONS(805), - [anon_sym_GT] = ACTIONS(803), - [anon_sym_GT_EQ] = ACTIONS(805), - [aux_sym_cmd_identifier_token6] = ACTIONS(803), - [sym__newline] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_PIPE] = ACTIONS(803), - [anon_sym_err_GT_PIPE] = ACTIONS(803), - [anon_sym_out_GT_PIPE] = ACTIONS(803), - [anon_sym_e_GT_PIPE] = ACTIONS(803), - [anon_sym_o_GT_PIPE] = ACTIONS(803), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(803), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(803), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(803), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(803), - [anon_sym_RPAREN] = ACTIONS(803), - [anon_sym_GT2] = ACTIONS(803), - [anon_sym_DASH2] = ACTIONS(803), - [anon_sym_STAR2] = ACTIONS(803), - [anon_sym_and2] = ACTIONS(803), - [anon_sym_xor2] = ACTIONS(803), - [anon_sym_or2] = ACTIONS(803), - [anon_sym_not_DASHin2] = ACTIONS(803), - [anon_sym_has2] = ACTIONS(803), - [anon_sym_not_DASHhas2] = ACTIONS(803), - [anon_sym_starts_DASHwith2] = ACTIONS(803), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(803), - [anon_sym_ends_DASHwith2] = ACTIONS(803), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(803), - [anon_sym_EQ_EQ2] = ACTIONS(803), - [anon_sym_BANG_EQ2] = ACTIONS(803), - [anon_sym_LT2] = ACTIONS(803), - [anon_sym_LT_EQ2] = ACTIONS(803), - [anon_sym_GT_EQ2] = ACTIONS(803), - [anon_sym_EQ_TILDE2] = ACTIONS(803), - [anon_sym_BANG_TILDE2] = ACTIONS(803), - [anon_sym_like2] = ACTIONS(803), - [anon_sym_not_DASHlike2] = ACTIONS(803), - [anon_sym_STAR_STAR2] = ACTIONS(803), - [anon_sym_PLUS_PLUS2] = ACTIONS(803), - [anon_sym_SLASH2] = ACTIONS(803), - [anon_sym_mod2] = ACTIONS(803), - [anon_sym_SLASH_SLASH2] = ACTIONS(803), - [anon_sym_PLUS2] = ACTIONS(803), - [anon_sym_bit_DASHshl2] = ACTIONS(803), - [anon_sym_bit_DASHshr2] = ACTIONS(803), - [anon_sym_bit_DASHand2] = ACTIONS(803), - [anon_sym_bit_DASHxor2] = ACTIONS(803), - [anon_sym_bit_DASHor2] = ACTIONS(803), - [anon_sym_DOT_DOT2] = ACTIONS(803), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(805), - [anon_sym_DOT_DOT_LT2] = ACTIONS(805), - [sym_filesize_unit] = ACTIONS(803), - [sym_duration_unit] = ACTIONS(805), - [anon_sym_err_GT] = ACTIONS(803), - [anon_sym_out_GT] = ACTIONS(803), - [anon_sym_e_GT] = ACTIONS(803), - [anon_sym_o_GT] = ACTIONS(803), - [anon_sym_err_PLUSout_GT] = ACTIONS(803), - [anon_sym_out_PLUSerr_GT] = ACTIONS(803), - [anon_sym_o_PLUSe_GT] = ACTIONS(803), - [anon_sym_e_PLUSo_GT] = ACTIONS(803), - [anon_sym_err_GT_GT] = ACTIONS(803), - [anon_sym_out_GT_GT] = ACTIONS(803), - [anon_sym_e_GT_GT] = ACTIONS(803), - [anon_sym_o_GT_GT] = ACTIONS(803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(803), + [ts_builtin_sym_end] = ACTIONS(837), + [anon_sym_true] = ACTIONS(936), + [anon_sym_false] = ACTIONS(936), + [anon_sym_null] = ACTIONS(938), + [aux_sym_cmd_identifier_token3] = ACTIONS(940), + [aux_sym_cmd_identifier_token4] = ACTIONS(940), + [aux_sym_cmd_identifier_token5] = ACTIONS(940), + [sym__newline] = ACTIONS(835), + [sym__space] = ACTIONS(837), + [anon_sym_SEMI] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_err_GT_PIPE] = ACTIONS(835), + [anon_sym_out_GT_PIPE] = ACTIONS(835), + [anon_sym_e_GT_PIPE] = ACTIONS(835), + [anon_sym_o_GT_PIPE] = ACTIONS(835), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(835), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(835), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(835), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_DASH_DASH] = ACTIONS(948), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_DOT_DOT] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(956), + [anon_sym_DOT_DOT_EQ] = ACTIONS(958), + [anon_sym_DOT_DOT_LT] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(960), + [aux_sym__val_number_decimal_token1] = ACTIONS(962), + [aux_sym__val_number_decimal_token2] = ACTIONS(962), + [aux_sym__val_number_decimal_token3] = ACTIONS(964), + [aux_sym__val_number_decimal_token4] = ACTIONS(964), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(968), + [anon_sym_0o] = ACTIONS(970), + [anon_sym_0x] = ACTIONS(970), + [sym_val_date] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(976), + [anon_sym_BQUOTE] = ACTIONS(978), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(984), + [anon_sym_err_GT] = ACTIONS(986), + [anon_sym_out_GT] = ACTIONS(986), + [anon_sym_e_GT] = ACTIONS(986), + [anon_sym_o_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT] = ACTIONS(986), + [anon_sym_err_GT_GT] = ACTIONS(986), + [anon_sym_out_GT_GT] = ACTIONS(986), + [anon_sym_e_GT_GT] = ACTIONS(986), + [anon_sym_o_GT_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), + [aux_sym_unquoted_token1] = ACTIONS(988), [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(990), }, - [STATE(132)] = { + [132] = { [sym_comment] = STATE(132), - [anon_sym_in] = ACTIONS(791), - [anon_sym_STAR_STAR] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_SLASH] = ACTIONS(791), - [anon_sym_mod] = ACTIONS(793), - [anon_sym_SLASH_SLASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_like] = ACTIONS(793), - [anon_sym_not_DASHlike] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_in2] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_has] = ACTIONS(793), - [anon_sym_not_DASHhas] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(793), - [aux_sym_cmd_identifier_token6] = ACTIONS(791), - [sym__newline] = ACTIONS(791), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_GT2] = ACTIONS(791), - [anon_sym_DASH2] = ACTIONS(791), - [anon_sym_STAR2] = ACTIONS(791), - [anon_sym_and2] = ACTIONS(791), - [anon_sym_xor2] = ACTIONS(791), - [anon_sym_or2] = ACTIONS(791), - [anon_sym_not_DASHin2] = ACTIONS(791), - [anon_sym_has2] = ACTIONS(791), - [anon_sym_not_DASHhas2] = ACTIONS(791), - [anon_sym_starts_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), - [anon_sym_ends_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), - [anon_sym_EQ_EQ2] = ACTIONS(791), - [anon_sym_BANG_EQ2] = ACTIONS(791), - [anon_sym_LT2] = ACTIONS(791), - [anon_sym_LT_EQ2] = ACTIONS(791), - [anon_sym_GT_EQ2] = ACTIONS(791), - [anon_sym_EQ_TILDE2] = ACTIONS(791), - [anon_sym_BANG_TILDE2] = ACTIONS(791), - [anon_sym_like2] = ACTIONS(791), - [anon_sym_not_DASHlike2] = ACTIONS(791), - [anon_sym_STAR_STAR2] = ACTIONS(791), - [anon_sym_PLUS_PLUS2] = ACTIONS(791), - [anon_sym_SLASH2] = ACTIONS(791), - [anon_sym_mod2] = ACTIONS(791), - [anon_sym_SLASH_SLASH2] = ACTIONS(791), - [anon_sym_PLUS2] = ACTIONS(791), - [anon_sym_bit_DASHshl2] = ACTIONS(791), - [anon_sym_bit_DASHshr2] = ACTIONS(791), - [anon_sym_bit_DASHand2] = ACTIONS(791), - [anon_sym_bit_DASHxor2] = ACTIONS(791), - [anon_sym_bit_DASHor2] = ACTIONS(791), - [anon_sym_DOT_DOT2] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(793), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT] = ACTIONS(992), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), [aux_sym__immediate_decimal_token5] = ACTIONS(994), - [sym_filesize_unit] = ACTIONS(791), - [sym_duration_unit] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(791), - [anon_sym_out_GT] = ACTIONS(791), - [anon_sym_e_GT] = ACTIONS(791), - [anon_sym_o_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT] = ACTIONS(791), - [anon_sym_err_GT_GT] = ACTIONS(791), - [anon_sym_out_GT_GT] = ACTIONS(791), - [anon_sym_e_GT_GT] = ACTIONS(791), - [anon_sym_o_GT_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(763), + [anon_sym_out_GT_GT] = ACTIONS(763), + [anon_sym_e_GT_GT] = ACTIONS(763), + [anon_sym_o_GT_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(133)] = { + [133] = { + [sym_expr_parenthesized] = STATE(2713), + [sym__spread_parenthesized] = STATE(3207), + [sym_val_range] = STATE(3210), + [sym__val_range] = STATE(4890), + [sym__value] = STATE(3210), + [sym_val_nothing] = STATE(3096), + [sym_val_bool] = STATE(2760), + [sym__spread_variable] = STATE(3211), + [sym_val_variable] = STATE(2716), + [sym_val_cellpath] = STATE(3096), + [sym_val_number] = STATE(3096), + [sym__val_number_decimal] = STATE(2420), + [sym__val_number] = STATE(3095), + [sym_val_duration] = STATE(3096), + [sym_val_filesize] = STATE(3096), + [sym_val_binary] = STATE(3096), + [sym_val_string] = STATE(3096), + [sym__raw_str] = STATE(2515), + [sym__str_double_quotes] = STATE(2515), + [sym__str_single_quotes] = STATE(2515), + [sym__str_back_ticks] = STATE(2515), + [sym_val_interpolated] = STATE(3096), + [sym__inter_single_quotes] = STATE(3090), + [sym__inter_double_quotes] = STATE(3091), + [sym_val_list] = STATE(3096), + [sym__spread_list] = STATE(3207), + [sym_val_record] = STATE(3096), + [sym_val_table] = STATE(3096), + [sym_val_closure] = STATE(3096), + [sym__cmd_arg] = STATE(3357), + [sym_redirection] = STATE(3215), + [sym__flag] = STATE(3216), + [sym_short_flag] = STATE(3217), + [sym_long_flag] = STATE(3217), + [sym_unquoted] = STATE(2839), + [sym__unquoted_with_expr] = STATE(3218), + [sym__unquoted_anonymous_prefix] = STATE(4890), [sym_comment] = STATE(133), - [anon_sym_in] = ACTIONS(791), - [anon_sym_STAR_STAR] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_SLASH] = ACTIONS(791), - [anon_sym_mod] = ACTIONS(793), - [anon_sym_SLASH_SLASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_like] = ACTIONS(793), - [anon_sym_not_DASHlike] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_in2] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_has] = ACTIONS(793), - [anon_sym_not_DASHhas] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(793), - [aux_sym_cmd_identifier_token6] = ACTIONS(791), - [sym__newline] = ACTIONS(791), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_GT2] = ACTIONS(791), - [anon_sym_DASH2] = ACTIONS(791), - [anon_sym_RBRACE] = ACTIONS(791), - [anon_sym_STAR2] = ACTIONS(791), - [anon_sym_and2] = ACTIONS(791), - [anon_sym_xor2] = ACTIONS(791), - [anon_sym_or2] = ACTIONS(791), - [anon_sym_not_DASHin2] = ACTIONS(791), - [anon_sym_has2] = ACTIONS(791), - [anon_sym_not_DASHhas2] = ACTIONS(791), - [anon_sym_starts_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), - [anon_sym_ends_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), - [anon_sym_EQ_EQ2] = ACTIONS(791), - [anon_sym_BANG_EQ2] = ACTIONS(791), - [anon_sym_LT2] = ACTIONS(791), - [anon_sym_LT_EQ2] = ACTIONS(791), - [anon_sym_GT_EQ2] = ACTIONS(791), - [anon_sym_EQ_TILDE2] = ACTIONS(791), - [anon_sym_BANG_TILDE2] = ACTIONS(791), - [anon_sym_like2] = ACTIONS(791), - [anon_sym_not_DASHlike2] = ACTIONS(791), - [anon_sym_STAR_STAR2] = ACTIONS(791), - [anon_sym_PLUS_PLUS2] = ACTIONS(791), - [anon_sym_SLASH2] = ACTIONS(791), - [anon_sym_mod2] = ACTIONS(791), - [anon_sym_SLASH_SLASH2] = ACTIONS(791), - [anon_sym_PLUS2] = ACTIONS(791), - [anon_sym_bit_DASHshl2] = ACTIONS(791), - [anon_sym_bit_DASHshr2] = ACTIONS(791), - [anon_sym_bit_DASHand2] = ACTIONS(791), - [anon_sym_bit_DASHxor2] = ACTIONS(791), - [anon_sym_bit_DASHor2] = ACTIONS(791), - [anon_sym_DOT_DOT2] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(793), - [sym_filesize_unit] = ACTIONS(791), - [sym_duration_unit] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(791), - [anon_sym_out_GT] = ACTIONS(791), - [anon_sym_e_GT] = ACTIONS(791), - [anon_sym_o_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT] = ACTIONS(791), - [anon_sym_err_GT_GT] = ACTIONS(791), - [anon_sym_out_GT_GT] = ACTIONS(791), - [anon_sym_e_GT_GT] = ACTIONS(791), - [anon_sym_o_GT_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), + [anon_sym_true] = ACTIONS(829), + [anon_sym_false] = ACTIONS(829), + [anon_sym_null] = ACTIONS(831), + [aux_sym_cmd_identifier_token3] = ACTIONS(833), + [aux_sym_cmd_identifier_token4] = ACTIONS(833), + [aux_sym_cmd_identifier_token5] = ACTIONS(833), + [sym__newline] = ACTIONS(996), + [sym__space] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(839), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_RPAREN] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(843), + [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_DASH2] = ACTIONS(847), + [anon_sym_LBRACE] = ACTIONS(849), + [anon_sym_DOT_DOT] = ACTIONS(851), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(855), + [anon_sym_DOT_DOT_LT] = ACTIONS(855), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(857), + [aux_sym__val_number_decimal_token1] = ACTIONS(859), + [aux_sym__val_number_decimal_token2] = ACTIONS(859), + [aux_sym__val_number_decimal_token3] = ACTIONS(861), + [aux_sym__val_number_decimal_token4] = ACTIONS(861), + [aux_sym__val_number_token1] = ACTIONS(863), + [aux_sym__val_number_token2] = ACTIONS(863), + [aux_sym__val_number_token3] = ACTIONS(863), + [anon_sym_0b] = ACTIONS(865), + [anon_sym_0o] = ACTIONS(867), + [anon_sym_0x] = ACTIONS(867), + [sym_val_date] = ACTIONS(869), + [anon_sym_DQUOTE] = ACTIONS(871), + [anon_sym_SQUOTE] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(879), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(881), + [anon_sym_err_GT] = ACTIONS(883), + [anon_sym_out_GT] = ACTIONS(883), + [anon_sym_e_GT] = ACTIONS(883), + [anon_sym_o_GT] = ACTIONS(883), + [anon_sym_err_PLUSout_GT] = ACTIONS(883), + [anon_sym_out_PLUSerr_GT] = ACTIONS(883), + [anon_sym_o_PLUSe_GT] = ACTIONS(883), + [anon_sym_e_PLUSo_GT] = ACTIONS(883), + [anon_sym_err_GT_GT] = ACTIONS(883), + [anon_sym_out_GT_GT] = ACTIONS(883), + [anon_sym_e_GT_GT] = ACTIONS(883), + [anon_sym_o_GT_GT] = ACTIONS(883), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(883), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(883), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(883), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(883), + [aux_sym_unquoted_token1] = ACTIONS(885), [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(134)] = { - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym_pipeline_parenthesized] = STATE(4891), - [sym_cmd_identifier] = STATE(2982), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), - [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(494), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(152), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), + [sym_raw_string_begin] = ACTIONS(887), + }, + [134] = { + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym_pipeline] = STATE(4507), + [sym_cmd_identifier] = STATE(2877), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(485), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(149), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), [sym_comment] = STATE(134), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(179), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -56107,9 +56055,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(1002), [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(333), + [anon_sym_try] = ACTIONS(277), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(279), @@ -56126,14 +56074,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_where] = ACTIONS(337), + [anon_sym_where] = ACTIONS(173), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -56146,61 +56094,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(135)] = { - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym_pipeline] = STATE(3307), - [sym_cmd_identifier] = STATE(2920), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(2986), - [sym_where_command] = STATE(3411), + [135] = { + [sym_comment] = STATE(135), + [anon_sym_in] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_mod] = ACTIONS(803), + [anon_sym_SLASH_SLASH] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(803), + [anon_sym_bit_DASHshl] = ACTIONS(803), + [anon_sym_bit_DASHshr] = ACTIONS(803), + [anon_sym_EQ_TILDE] = ACTIONS(803), + [anon_sym_BANG_TILDE] = ACTIONS(803), + [anon_sym_like] = ACTIONS(803), + [anon_sym_not_DASHlike] = ACTIONS(803), + [anon_sym_bit_DASHand] = ACTIONS(803), + [anon_sym_bit_DASHxor] = ACTIONS(803), + [anon_sym_bit_DASHor] = ACTIONS(803), + [anon_sym_and] = ACTIONS(803), + [anon_sym_xor] = ACTIONS(803), + [anon_sym_or] = ACTIONS(803), + [anon_sym_in2] = ACTIONS(803), + [anon_sym_not_DASHin] = ACTIONS(803), + [anon_sym_has] = ACTIONS(803), + [anon_sym_not_DASHhas] = ACTIONS(803), + [anon_sym_starts_DASHwith] = ACTIONS(803), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(803), + [anon_sym_ends_DASHwith] = ACTIONS(803), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(803), + [anon_sym_EQ_EQ] = ACTIONS(803), + [anon_sym_BANG_EQ] = ACTIONS(803), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(803), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(803), + [aux_sym_cmd_identifier_token6] = ACTIONS(801), + [sym__newline] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_err_GT_PIPE] = ACTIONS(801), + [anon_sym_out_GT_PIPE] = ACTIONS(801), + [anon_sym_e_GT_PIPE] = ACTIONS(801), + [anon_sym_o_GT_PIPE] = ACTIONS(801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(801), + [anon_sym_GT2] = ACTIONS(801), + [anon_sym_DASH2] = ACTIONS(801), + [anon_sym_STAR2] = ACTIONS(801), + [anon_sym_and2] = ACTIONS(801), + [anon_sym_xor2] = ACTIONS(801), + [anon_sym_or2] = ACTIONS(801), + [anon_sym_not_DASHin2] = ACTIONS(801), + [anon_sym_has2] = ACTIONS(801), + [anon_sym_not_DASHhas2] = ACTIONS(801), + [anon_sym_starts_DASHwith2] = ACTIONS(801), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(801), + [anon_sym_ends_DASHwith2] = ACTIONS(801), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(801), + [anon_sym_EQ_EQ2] = ACTIONS(801), + [anon_sym_BANG_EQ2] = ACTIONS(801), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ2] = ACTIONS(801), + [anon_sym_GT_EQ2] = ACTIONS(801), + [anon_sym_EQ_TILDE2] = ACTIONS(801), + [anon_sym_BANG_TILDE2] = ACTIONS(801), + [anon_sym_like2] = ACTIONS(801), + [anon_sym_not_DASHlike2] = ACTIONS(801), + [anon_sym_STAR_STAR2] = ACTIONS(801), + [anon_sym_PLUS_PLUS2] = ACTIONS(801), + [anon_sym_SLASH2] = ACTIONS(801), + [anon_sym_mod2] = ACTIONS(801), + [anon_sym_SLASH_SLASH2] = ACTIONS(801), + [anon_sym_PLUS2] = ACTIONS(801), + [anon_sym_bit_DASHshl2] = ACTIONS(801), + [anon_sym_bit_DASHshr2] = ACTIONS(801), + [anon_sym_bit_DASHand2] = ACTIONS(801), + [anon_sym_bit_DASHxor2] = ACTIONS(801), + [anon_sym_bit_DASHor2] = ACTIONS(801), + [anon_sym_DOT_DOT2] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), + [anon_sym_DOT_DOT_LT2] = ACTIONS(803), + [sym_filesize_unit] = ACTIONS(801), + [sym_duration_unit] = ACTIONS(803), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [anon_sym_err_GT_GT] = ACTIONS(801), + [anon_sym_out_GT_GT] = ACTIONS(801), + [anon_sym_e_GT_GT] = ACTIONS(801), + [anon_sym_o_GT_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(105), + }, + [136] = { + [sym_comment] = STATE(136), + [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(1010), + [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(105), + }, + [137] = { + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym_pipeline] = STATE(4516), + [sym_cmd_identifier] = STATE(2877), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(135), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(283), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(137), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -56256,56 +56414,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(136)] = { - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym_pipeline_parenthesized] = STATE(4891), - [sym_cmd_identifier] = STATE(2982), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [138] = { + [sym_comment] = STATE(138), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(994), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(763), + [anon_sym_out_GT_GT] = ACTIONS(763), + [anon_sym_e_GT_GT] = ACTIONS(763), + [anon_sym_o_GT_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), + [anon_sym_POUND] = ACTIONS(105), + }, + [139] = { + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym_pipeline_parenthesized] = STATE(4795), + [sym_cmd_identifier] = STATE(3000), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(494), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(149), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(139), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(174), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(286), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -56317,7 +56580,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(331), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(333), [anon_sym_catch] = ACTIONS(275), @@ -56340,10 +56603,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(341), - [aux_sym__val_number_decimal_token2] = ACTIONS(343), - [aux_sym__val_number_decimal_token3] = ACTIONS(345), - [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -56361,56 +56624,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(137)] = { - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym_pipeline_parenthesized] = STATE(4744), - [sym_cmd_identifier] = STATE(2982), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [140] = { + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym_pipeline_parenthesized] = STATE(4795), + [sym_cmd_identifier] = STATE(3000), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(137), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(140), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -56466,56 +56729,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(138)] = { - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym_pipeline] = STATE(4424), - [sym_cmd_identifier] = STATE(2920), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), - [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), + [141] = { + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym_pipeline_parenthesized] = STATE(4825), + [sym_cmd_identifier] = STATE(3000), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(138), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym_pipe_element_repeat2] = STATE(283), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(141), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -56527,9 +56790,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(273), + [anon_sym_if] = ACTIONS(331), [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(277), + [anon_sym_try] = ACTIONS(333), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(279), @@ -56546,14 +56809,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_where] = ACTIONS(173), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(295), - [aux_sym__val_number_decimal_token2] = ACTIONS(297), - [aux_sym__val_number_decimal_token3] = ACTIONS(299), - [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -56566,61 +56829,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(139)] = { - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym_pipeline] = STATE(4425), - [sym_cmd_identifier] = STATE(2920), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), - [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(139), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym_pipe_element_repeat2] = STATE(283), + [142] = { + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym_pipeline_parenthesized] = STATE(4825), + [sym_cmd_identifier] = STATE(3000), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(494), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(149), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(142), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(174), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(286), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -56632,9 +56895,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(277), + [anon_sym_try] = ACTIONS(333), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(279), @@ -56651,14 +56914,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_where] = ACTIONS(173), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(295), - [aux_sym__val_number_decimal_token2] = ACTIONS(297), - [aux_sym__val_number_decimal_token3] = ACTIONS(299), - [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -56671,61 +56934,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(140)] = { - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym_pipeline] = STATE(4362), - [sym_cmd_identifier] = STATE(2920), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [143] = { + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym_pipeline] = STATE(4431), + [sym_cmd_identifier] = STATE(2877), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(140), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym_pipe_element_repeat2] = STATE(283), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(485), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(149), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(143), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -56737,7 +57000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1002), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(277), [anon_sym_catch] = ACTIONS(275), @@ -56760,10 +57023,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(295), - [aux_sym__val_number_decimal_token2] = ACTIONS(297), - [aux_sym__val_number_decimal_token3] = ACTIONS(299), - [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -56781,266 +57044,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(141)] = { - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym_pipeline] = STATE(3307), - [sym_cmd_identifier] = STATE(2920), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(2986), - [sym_where_command] = STATE(3411), - [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(485), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(152), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(141), - [aux_sym_pipeline_repeat1] = STATE(173), - [aux_sym_pipe_element_repeat2] = STATE(285), - [anon_sym_export] = ACTIONS(281), - [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), - [anon_sym_mut] = ACTIONS(275), - [anon_sym_const] = ACTIONS(275), - [aux_sym_cmd_identifier_token1] = ACTIONS(255), - [anon_sym_def] = ACTIONS(275), - [anon_sym_use] = ACTIONS(275), - [anon_sym_export_DASHenv] = ACTIONS(275), - [anon_sym_extern] = ACTIONS(275), - [anon_sym_module] = ACTIONS(275), - [anon_sym_for] = ACTIONS(275), - [anon_sym_loop] = ACTIONS(275), - [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(277), - [anon_sym_catch] = ACTIONS(275), - [anon_sym_finally] = ACTIONS(275), - [anon_sym_match] = ACTIONS(279), - [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(283), - [anon_sym_false] = ACTIONS(283), - [anon_sym_null] = ACTIONS(285), - [aux_sym_cmd_identifier_token3] = ACTIONS(287), - [aux_sym_cmd_identifier_token4] = ACTIONS(287), - [aux_sym_cmd_identifier_token5] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(217), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_where] = ACTIONS(173), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(181), - [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(213), + [144] = { + [sym_assignment] = STATE(3423), + [sym__mutable_assignment_pattern] = STATE(3434), + [sym_pipeline] = STATE(3591), + [sym_cmd_identifier] = STATE(3036), + [sym__ctrl_expression] = STATE(3423), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3468), + [sym_pipe_element] = STATE(3259), + [sym_where_command] = STATE(3423), + [sym__expression] = STATE(2307), + [sym_expr_unary] = STATE(1343), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1343), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(979), + [sym_val_range] = STATE(1343), + [sym__value] = STATE(1343), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1338), + [sym_val_variable] = STATE(472), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3423), + [sym_comment] = STATE(144), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym_pipe_element_repeat2] = STATE(278), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(1014), + [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_PERCENT] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(142)] = { - [sym_comment] = STATE(142), - [anon_sym_in] = ACTIONS(791), - [anon_sym_STAR_STAR] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_SLASH] = ACTIONS(791), - [anon_sym_mod] = ACTIONS(793), - [anon_sym_SLASH_SLASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_like] = ACTIONS(793), - [anon_sym_not_DASHlike] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_in2] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_has] = ACTIONS(793), - [anon_sym_not_DASHhas] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(793), - [aux_sym_cmd_identifier_token6] = ACTIONS(791), - [sym__newline] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_GT2] = ACTIONS(791), - [anon_sym_DASH2] = ACTIONS(791), - [anon_sym_STAR2] = ACTIONS(791), - [anon_sym_and2] = ACTIONS(791), - [anon_sym_xor2] = ACTIONS(791), - [anon_sym_or2] = ACTIONS(791), - [anon_sym_not_DASHin2] = ACTIONS(791), - [anon_sym_has2] = ACTIONS(791), - [anon_sym_not_DASHhas2] = ACTIONS(791), - [anon_sym_starts_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), - [anon_sym_ends_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), - [anon_sym_EQ_EQ2] = ACTIONS(791), - [anon_sym_BANG_EQ2] = ACTIONS(791), - [anon_sym_LT2] = ACTIONS(791), - [anon_sym_LT_EQ2] = ACTIONS(791), - [anon_sym_GT_EQ2] = ACTIONS(791), - [anon_sym_EQ_TILDE2] = ACTIONS(791), - [anon_sym_BANG_TILDE2] = ACTIONS(791), - [anon_sym_like2] = ACTIONS(791), - [anon_sym_not_DASHlike2] = ACTIONS(791), - [anon_sym_STAR_STAR2] = ACTIONS(791), - [anon_sym_PLUS_PLUS2] = ACTIONS(791), - [anon_sym_SLASH2] = ACTIONS(791), - [anon_sym_mod2] = ACTIONS(791), - [anon_sym_SLASH_SLASH2] = ACTIONS(791), - [anon_sym_PLUS2] = ACTIONS(791), - [anon_sym_bit_DASHshl2] = ACTIONS(791), - [anon_sym_bit_DASHshr2] = ACTIONS(791), - [anon_sym_bit_DASHand2] = ACTIONS(791), - [anon_sym_bit_DASHxor2] = ACTIONS(791), - [anon_sym_bit_DASHor2] = ACTIONS(791), - [anon_sym_DOT_DOT2] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(793), - [aux_sym__immediate_decimal_token5] = ACTIONS(1008), - [sym_filesize_unit] = ACTIONS(791), - [sym_duration_unit] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(791), - [anon_sym_out_GT] = ACTIONS(791), - [anon_sym_e_GT] = ACTIONS(791), - [anon_sym_o_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT] = ACTIONS(791), - [anon_sym_err_GT_GT] = ACTIONS(791), - [anon_sym_out_GT_GT] = ACTIONS(791), - [anon_sym_e_GT_GT] = ACTIONS(791), - [anon_sym_o_GT_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), - [anon_sym_POUND] = ACTIONS(105), + [145] = { + [sym_assignment] = STATE(3423), + [sym__mutable_assignment_pattern] = STATE(3434), + [sym_pipeline] = STATE(4883), + [sym_cmd_identifier] = STATE(3036), + [sym__ctrl_expression] = STATE(3423), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3468), + [sym_pipe_element] = STATE(3055), + [sym_where_command] = STATE(3423), + [sym__expression] = STATE(2307), + [sym_expr_unary] = STATE(1343), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1343), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(979), + [sym_val_range] = STATE(1343), + [sym__value] = STATE(1343), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1338), + [sym_val_variable] = STATE(472), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3423), + [sym_comment] = STATE(145), + [aux_sym_pipeline_repeat1] = STATE(172), + [aux_sym_pipe_element_repeat2] = STATE(278), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(1014), + [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_PERCENT] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(143)] = { - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym_pipeline] = STATE(4473), - [sym_cmd_identifier] = STATE(2920), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [146] = { + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym_pipeline] = STATE(4430), + [sym_cmd_identifier] = STATE(2877), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(449), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(143), - [aux_sym_pipeline_repeat1] = STATE(174), - [aux_sym_pipe_element_repeat2] = STATE(280), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(146), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -57052,7 +57315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(463), + [anon_sym_if] = ACTIONS(273), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(277), [anon_sym_catch] = ACTIONS(275), @@ -57075,10 +57338,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(341), - [aux_sym__val_number_decimal_token2] = ACTIONS(343), - [aux_sym__val_number_decimal_token3] = ACTIONS(345), - [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -57096,56 +57359,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(144)] = { - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym_pipeline] = STATE(4473), - [sym_cmd_identifier] = STATE(2920), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), - [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(144), - [aux_sym_pipeline_repeat1] = STATE(180), - [aux_sym_pipe_element_repeat2] = STATE(283), + [147] = { + [sym_comment] = STATE(147), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(105), + }, + [148] = { + [sym_comment] = STATE(148), + [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(105), + }, + [149] = { + [sym_comment] = STATE(149), + [anon_sym_in] = ACTIONS(811), + [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(811), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_err_GT_PIPE] = ACTIONS(811), + [anon_sym_out_GT_PIPE] = ACTIONS(811), + [anon_sym_e_GT_PIPE] = ACTIONS(811), + [anon_sym_o_GT_PIPE] = ACTIONS(811), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(811), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(811), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(811), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(811), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(811), + [anon_sym_xor2] = ACTIONS(811), + [anon_sym_or2] = ACTIONS(811), + [anon_sym_not_DASHin2] = ACTIONS(811), + [anon_sym_has2] = ACTIONS(811), + [anon_sym_not_DASHhas2] = ACTIONS(811), + [anon_sym_starts_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(811), + [anon_sym_ends_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(811), + [anon_sym_EQ_EQ2] = ACTIONS(811), + [anon_sym_BANG_EQ2] = ACTIONS(811), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(811), + [anon_sym_GT_EQ2] = ACTIONS(811), + [anon_sym_EQ_TILDE2] = ACTIONS(811), + [anon_sym_BANG_TILDE2] = ACTIONS(811), + [anon_sym_like2] = ACTIONS(811), + [anon_sym_not_DASHlike2] = ACTIONS(811), + [anon_sym_STAR_STAR2] = ACTIONS(811), + [anon_sym_PLUS_PLUS2] = ACTIONS(811), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(811), + [anon_sym_SLASH_SLASH2] = ACTIONS(811), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(811), + [anon_sym_bit_DASHshr2] = ACTIONS(811), + [anon_sym_bit_DASHand2] = ACTIONS(811), + [anon_sym_bit_DASHxor2] = ACTIONS(811), + [anon_sym_bit_DASHor2] = ACTIONS(811), + [anon_sym_DOT_DOT2] = ACTIONS(819), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(821), + [anon_sym_DOT_DOT_LT2] = ACTIONS(821), + [sym_filesize_unit] = ACTIONS(1016), + [sym_duration_unit] = ACTIONS(1018), + [anon_sym_err_GT] = ACTIONS(811), + [anon_sym_out_GT] = ACTIONS(811), + [anon_sym_e_GT] = ACTIONS(811), + [anon_sym_o_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT] = ACTIONS(811), + [anon_sym_err_GT_GT] = ACTIONS(811), + [anon_sym_out_GT_GT] = ACTIONS(811), + [anon_sym_e_GT_GT] = ACTIONS(811), + [anon_sym_o_GT_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(811), + [anon_sym_POUND] = ACTIONS(105), + }, + [150] = { + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym_pipeline] = STATE(3324), + [sym_cmd_identifier] = STATE(2877), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2983), + [sym_where_command] = STATE(3339), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(150), + [aux_sym_pipeline_repeat1] = STATE(179), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -57201,161 +57779,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(145)] = { - [sym_comment] = STATE(145), - [anon_sym_in] = ACTIONS(803), - [anon_sym_STAR_STAR] = ACTIONS(805), - [anon_sym_PLUS_PLUS] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(803), - [anon_sym_mod] = ACTIONS(805), - [anon_sym_SLASH_SLASH] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(803), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_bit_DASHshl] = ACTIONS(805), - [anon_sym_bit_DASHshr] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(805), - [anon_sym_BANG_TILDE] = ACTIONS(805), - [anon_sym_like] = ACTIONS(805), - [anon_sym_not_DASHlike] = ACTIONS(805), - [anon_sym_bit_DASHand] = ACTIONS(805), - [anon_sym_bit_DASHxor] = ACTIONS(805), - [anon_sym_bit_DASHor] = ACTIONS(805), - [anon_sym_and] = ACTIONS(805), - [anon_sym_xor] = ACTIONS(805), - [anon_sym_or] = ACTIONS(805), - [anon_sym_in2] = ACTIONS(805), - [anon_sym_not_DASHin] = ACTIONS(805), - [anon_sym_has] = ACTIONS(805), - [anon_sym_not_DASHhas] = ACTIONS(805), - [anon_sym_starts_DASHwith] = ACTIONS(805), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(805), - [anon_sym_ends_DASHwith] = ACTIONS(805), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(805), - [anon_sym_EQ_EQ] = ACTIONS(805), - [anon_sym_BANG_EQ] = ACTIONS(805), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_LT_EQ] = ACTIONS(805), - [anon_sym_GT] = ACTIONS(803), - [anon_sym_GT_EQ] = ACTIONS(805), - [aux_sym_cmd_identifier_token6] = ACTIONS(803), - [sym__newline] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_PIPE] = ACTIONS(803), - [anon_sym_err_GT_PIPE] = ACTIONS(803), - [anon_sym_out_GT_PIPE] = ACTIONS(803), - [anon_sym_e_GT_PIPE] = ACTIONS(803), - [anon_sym_o_GT_PIPE] = ACTIONS(803), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(803), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(803), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(803), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(803), - [anon_sym_GT2] = ACTIONS(803), - [anon_sym_DASH2] = ACTIONS(803), - [anon_sym_STAR2] = ACTIONS(803), - [anon_sym_and2] = ACTIONS(803), - [anon_sym_xor2] = ACTIONS(803), - [anon_sym_or2] = ACTIONS(803), - [anon_sym_not_DASHin2] = ACTIONS(803), - [anon_sym_has2] = ACTIONS(803), - [anon_sym_not_DASHhas2] = ACTIONS(803), - [anon_sym_starts_DASHwith2] = ACTIONS(803), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(803), - [anon_sym_ends_DASHwith2] = ACTIONS(803), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(803), - [anon_sym_EQ_EQ2] = ACTIONS(803), - [anon_sym_BANG_EQ2] = ACTIONS(803), - [anon_sym_LT2] = ACTIONS(803), - [anon_sym_LT_EQ2] = ACTIONS(803), - [anon_sym_GT_EQ2] = ACTIONS(803), - [anon_sym_EQ_TILDE2] = ACTIONS(803), - [anon_sym_BANG_TILDE2] = ACTIONS(803), - [anon_sym_like2] = ACTIONS(803), - [anon_sym_not_DASHlike2] = ACTIONS(803), - [anon_sym_STAR_STAR2] = ACTIONS(803), - [anon_sym_PLUS_PLUS2] = ACTIONS(803), - [anon_sym_SLASH2] = ACTIONS(803), - [anon_sym_mod2] = ACTIONS(803), - [anon_sym_SLASH_SLASH2] = ACTIONS(803), - [anon_sym_PLUS2] = ACTIONS(803), - [anon_sym_bit_DASHshl2] = ACTIONS(803), - [anon_sym_bit_DASHshr2] = ACTIONS(803), - [anon_sym_bit_DASHand2] = ACTIONS(803), - [anon_sym_bit_DASHxor2] = ACTIONS(803), - [anon_sym_bit_DASHor2] = ACTIONS(803), - [anon_sym_DOT_DOT2] = ACTIONS(803), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(805), - [anon_sym_DOT_DOT_LT2] = ACTIONS(805), - [sym_filesize_unit] = ACTIONS(803), - [sym_duration_unit] = ACTIONS(805), - [anon_sym_err_GT] = ACTIONS(803), - [anon_sym_out_GT] = ACTIONS(803), - [anon_sym_e_GT] = ACTIONS(803), - [anon_sym_o_GT] = ACTIONS(803), - [anon_sym_err_PLUSout_GT] = ACTIONS(803), - [anon_sym_out_PLUSerr_GT] = ACTIONS(803), - [anon_sym_o_PLUSe_GT] = ACTIONS(803), - [anon_sym_e_PLUSo_GT] = ACTIONS(803), - [anon_sym_err_GT_GT] = ACTIONS(803), - [anon_sym_out_GT_GT] = ACTIONS(803), - [anon_sym_e_GT_GT] = ACTIONS(803), - [anon_sym_o_GT_GT] = ACTIONS(803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(803), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(146)] = { - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(2982), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), - [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(146), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [151] = { + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym_pipeline] = STATE(4507), + [sym_cmd_identifier] = STATE(2877), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(151), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -57367,9 +57840,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(331), + [anon_sym_if] = ACTIONS(273), [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(333), + [anon_sym_try] = ACTIONS(277), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(279), @@ -57386,14 +57859,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_where] = ACTIONS(337), + [anon_sym_where] = ACTIONS(173), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(341), - [aux_sym__val_number_decimal_token2] = ACTIONS(343), - [aux_sym__val_number_decimal_token3] = ACTIONS(345), - [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -57406,61 +57879,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(147)] = { - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym_pipeline_parenthesized] = STATE(3600), - [sym_cmd_identifier] = STATE(2982), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3097), - [sym_where_command_parenthesized] = STATE(3522), + [152] = { + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym_pipeline_parenthesized] = STATE(3536), + [sym_cmd_identifier] = STATE(3000), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3203), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(521), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(176), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(147), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(526), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(188), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(152), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -57472,7 +57945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(333), [anon_sym_catch] = ACTIONS(275), @@ -57495,10 +57968,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1012), - [aux_sym__val_number_decimal_token2] = ACTIONS(1014), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [aux_sym__val_number_decimal_token1] = ACTIONS(1022), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1026), + [aux_sym__val_number_decimal_token4] = ACTIONS(1026), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -57516,56 +57989,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(148)] = { - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym_pipeline_parenthesized] = STATE(3600), - [sym_cmd_identifier] = STATE(2982), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3097), - [sym_where_command_parenthesized] = STATE(3522), + [153] = { + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym_pipeline_parenthesized] = STATE(4738), + [sym_cmd_identifier] = STATE(3000), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(494), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(152), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(148), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(153), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -57577,7 +58050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(331), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(333), [anon_sym_catch] = ACTIONS(275), @@ -57600,10 +58073,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -57621,161 +58094,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(149)] = { - [sym_assignment] = STATE(3457), - [sym__mutable_assignment_pattern] = STATE(3458), - [sym_pipeline] = STATE(3604), - [sym_cmd_identifier] = STATE(2973), - [sym__ctrl_expression] = STATE(3457), - [sym_ctrl_if] = STATE(3465), - [sym_ctrl_match] = STATE(3465), - [sym_ctrl_try] = STATE(3465), - [sym__stmt_let_shortcut] = STATE(3467), - [sym_pipe_element] = STATE(3065), - [sym_where_command] = STATE(3457), - [sym__expression] = STATE(2307), - [sym_expr_unary] = STATE(1303), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1303), - [sym__expr_binary_expression] = STATE(2265), - [sym_expr_parenthesized] = STATE(934), - [sym_val_range] = STATE(1303), - [sym__value] = STATE(1303), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1369), - [sym_val_variable] = STATE(470), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), - [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3457), - [sym_comment] = STATE(149), - [aux_sym_pipeline_repeat1] = STATE(175), - [aux_sym_pipe_element_repeat2] = STATE(287), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(1018), - [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_PERCENT] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(107), - }, - [STATE(150)] = { - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym_pipeline] = STATE(4362), - [sym_cmd_identifier] = STATE(2920), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [154] = { + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym_pipeline] = STATE(4430), + [sym_cmd_identifier] = STATE(2877), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(449), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(150), - [aux_sym_pipeline_repeat1] = STATE(174), - [aux_sym_pipe_element_repeat2] = STATE(280), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(485), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(149), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(154), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -57787,7 +58155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(463), + [anon_sym_if] = ACTIONS(1002), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(277), [anon_sym_catch] = ACTIONS(275), @@ -57810,10 +58178,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(341), - [aux_sym__val_number_decimal_token2] = ACTIONS(343), - [aux_sym__val_number_decimal_token3] = ACTIONS(345), - [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -57831,266 +58199,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(151)] = { - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym_pipeline_parenthesized] = STATE(4744), - [sym_cmd_identifier] = STATE(2982), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), - [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(494), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(152), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(151), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(179), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), - [anon_sym_export] = ACTIONS(281), - [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), - [anon_sym_mut] = ACTIONS(275), - [anon_sym_const] = ACTIONS(275), - [aux_sym_cmd_identifier_token1] = ACTIONS(255), - [anon_sym_def] = ACTIONS(275), - [anon_sym_use] = ACTIONS(275), - [anon_sym_export_DASHenv] = ACTIONS(275), - [anon_sym_extern] = ACTIONS(275), - [anon_sym_module] = ACTIONS(275), - [anon_sym_for] = ACTIONS(275), - [anon_sym_loop] = ACTIONS(275), - [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), - [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(333), - [anon_sym_catch] = ACTIONS(275), - [anon_sym_finally] = ACTIONS(275), - [anon_sym_match] = ACTIONS(279), - [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(283), - [anon_sym_false] = ACTIONS(283), - [anon_sym_null] = ACTIONS(285), - [aux_sym_cmd_identifier_token3] = ACTIONS(287), - [aux_sym_cmd_identifier_token4] = ACTIONS(287), - [aux_sym_cmd_identifier_token5] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(217), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_where] = ACTIONS(337), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(181), - [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(349), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(152)] = { - [sym_comment] = STATE(152), - [anon_sym_in] = ACTIONS(811), - [anon_sym_STAR_STAR] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_mod] = ACTIONS(904), - [anon_sym_SLASH_SLASH] = ACTIONS(904), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_bit_DASHshl] = ACTIONS(904), - [anon_sym_bit_DASHshr] = ACTIONS(904), - [anon_sym_EQ_TILDE] = ACTIONS(904), - [anon_sym_BANG_TILDE] = ACTIONS(904), - [anon_sym_like] = ACTIONS(904), - [anon_sym_not_DASHlike] = ACTIONS(904), - [anon_sym_bit_DASHand] = ACTIONS(904), - [anon_sym_bit_DASHxor] = ACTIONS(904), - [anon_sym_bit_DASHor] = ACTIONS(904), - [anon_sym_and] = ACTIONS(904), - [anon_sym_xor] = ACTIONS(904), - [anon_sym_or] = ACTIONS(904), - [anon_sym_in2] = ACTIONS(904), - [anon_sym_not_DASHin] = ACTIONS(904), - [anon_sym_has] = ACTIONS(904), - [anon_sym_not_DASHhas] = ACTIONS(904), - [anon_sym_starts_DASHwith] = ACTIONS(904), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(904), - [anon_sym_ends_DASHwith] = ACTIONS(904), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(904), - [anon_sym_BANG_EQ] = ACTIONS(904), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_LT_EQ] = ACTIONS(904), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(904), - [aux_sym_cmd_identifier_token6] = ACTIONS(908), - [sym__newline] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_err_GT_PIPE] = ACTIONS(811), - [anon_sym_out_GT_PIPE] = ACTIONS(811), - [anon_sym_e_GT_PIPE] = ACTIONS(811), - [anon_sym_o_GT_PIPE] = ACTIONS(811), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(811), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(811), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(811), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(811), - [anon_sym_GT2] = ACTIONS(811), - [anon_sym_DASH2] = ACTIONS(811), - [anon_sym_STAR2] = ACTIONS(811), - [anon_sym_and2] = ACTIONS(811), - [anon_sym_xor2] = ACTIONS(811), - [anon_sym_or2] = ACTIONS(811), - [anon_sym_not_DASHin2] = ACTIONS(811), - [anon_sym_has2] = ACTIONS(811), - [anon_sym_not_DASHhas2] = ACTIONS(811), - [anon_sym_starts_DASHwith2] = ACTIONS(811), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(811), - [anon_sym_ends_DASHwith2] = ACTIONS(811), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(811), - [anon_sym_EQ_EQ2] = ACTIONS(811), - [anon_sym_BANG_EQ2] = ACTIONS(811), - [anon_sym_LT2] = ACTIONS(811), - [anon_sym_LT_EQ2] = ACTIONS(811), - [anon_sym_GT_EQ2] = ACTIONS(811), - [anon_sym_EQ_TILDE2] = ACTIONS(811), - [anon_sym_BANG_TILDE2] = ACTIONS(811), - [anon_sym_like2] = ACTIONS(811), - [anon_sym_not_DASHlike2] = ACTIONS(811), - [anon_sym_STAR_STAR2] = ACTIONS(811), - [anon_sym_PLUS_PLUS2] = ACTIONS(811), - [anon_sym_SLASH2] = ACTIONS(811), - [anon_sym_mod2] = ACTIONS(811), - [anon_sym_SLASH_SLASH2] = ACTIONS(811), - [anon_sym_PLUS2] = ACTIONS(811), - [anon_sym_bit_DASHshl2] = ACTIONS(811), - [anon_sym_bit_DASHshr2] = ACTIONS(811), - [anon_sym_bit_DASHand2] = ACTIONS(811), - [anon_sym_bit_DASHxor2] = ACTIONS(811), - [anon_sym_bit_DASHor2] = ACTIONS(811), - [anon_sym_DOT_DOT2] = ACTIONS(819), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(821), - [anon_sym_DOT_DOT_LT2] = ACTIONS(821), - [sym_filesize_unit] = ACTIONS(1020), - [sym_duration_unit] = ACTIONS(1022), - [anon_sym_err_GT] = ACTIONS(811), - [anon_sym_out_GT] = ACTIONS(811), - [anon_sym_e_GT] = ACTIONS(811), - [anon_sym_o_GT] = ACTIONS(811), - [anon_sym_err_PLUSout_GT] = ACTIONS(811), - [anon_sym_out_PLUSerr_GT] = ACTIONS(811), - [anon_sym_o_PLUSe_GT] = ACTIONS(811), - [anon_sym_e_PLUSo_GT] = ACTIONS(811), - [anon_sym_err_GT_GT] = ACTIONS(811), - [anon_sym_out_GT_GT] = ACTIONS(811), - [anon_sym_e_GT_GT] = ACTIONS(811), - [anon_sym_o_GT_GT] = ACTIONS(811), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(811), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(811), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(811), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(811), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(153)] = { - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(2982), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), - [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(494), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(152), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(153), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(179), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [155] = { + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym_pipeline] = STATE(3324), + [sym_cmd_identifier] = STATE(2877), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2983), + [sym_where_command] = STATE(3339), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(461), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(155), + [aux_sym_pipeline_repeat1] = STATE(181), + [aux_sym_pipe_element_repeat2] = STATE(277), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -58102,9 +58260,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(467), [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(333), + [anon_sym_try] = ACTIONS(277), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(279), @@ -58121,14 +58279,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_where] = ACTIONS(337), + [anon_sym_where] = ACTIONS(173), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -58141,61 +58299,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(154)] = { - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2982), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), + [156] = { + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym_pipeline_parenthesized] = STATE(3536), + [sym_cmd_identifier] = STATE(3000), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3203), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(154), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(177), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(156), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(175), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -58251,56 +58409,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(155)] = { - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym_pipeline] = STATE(3307), - [sym_cmd_identifier] = STATE(2920), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(2986), - [sym_where_command] = STATE(3411), + [157] = { + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym_pipeline] = STATE(3324), + [sym_cmd_identifier] = STATE(2877), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2983), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(525), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(176), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(155), - [aux_sym_pipeline_repeat1] = STATE(190), - [aux_sym_pipe_element_repeat2] = STATE(282), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(499), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(188), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(157), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(289), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -58312,7 +58470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1028), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(277), [anon_sym_catch] = ACTIONS(275), @@ -58335,10 +58493,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1012), - [aux_sym__val_number_decimal_token2] = ACTIONS(1014), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [aux_sym__val_number_decimal_token1] = ACTIONS(1022), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1026), + [aux_sym__val_number_decimal_token4] = ACTIONS(1026), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -58356,161 +58514,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(156)] = { - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym_pipeline_parenthesized] = STATE(4890), - [sym_cmd_identifier] = STATE(2982), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3106), - [sym_where_command_parenthesized] = STATE(3522), - [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(494), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(152), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(156), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(179), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), - [anon_sym_export] = ACTIONS(281), - [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), - [anon_sym_mut] = ACTIONS(275), - [anon_sym_const] = ACTIONS(275), - [aux_sym_cmd_identifier_token1] = ACTIONS(255), - [anon_sym_def] = ACTIONS(275), - [anon_sym_use] = ACTIONS(275), - [anon_sym_export_DASHenv] = ACTIONS(275), - [anon_sym_extern] = ACTIONS(275), - [anon_sym_module] = ACTIONS(275), - [anon_sym_for] = ACTIONS(275), - [anon_sym_loop] = ACTIONS(275), - [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), - [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(333), - [anon_sym_catch] = ACTIONS(275), - [anon_sym_finally] = ACTIONS(275), - [anon_sym_match] = ACTIONS(279), - [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(283), - [anon_sym_false] = ACTIONS(283), - [anon_sym_null] = ACTIONS(285), - [aux_sym_cmd_identifier_token3] = ACTIONS(287), - [aux_sym_cmd_identifier_token4] = ACTIONS(287), - [aux_sym_cmd_identifier_token5] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(217), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_where] = ACTIONS(337), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(181), - [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(349), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(157)] = { - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym_pipeline] = STATE(4424), - [sym_cmd_identifier] = STATE(2920), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [158] = { + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym_pipeline] = STATE(4430), + [sym_cmd_identifier] = STATE(2877), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(485), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(152), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(157), - [aux_sym_pipeline_repeat1] = STATE(182), - [aux_sym_pipe_element_repeat2] = STATE(285), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(461), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(158), + [aux_sym_pipeline_repeat1] = STATE(177), + [aux_sym_pipe_element_repeat2] = STATE(277), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -58522,7 +58575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(467), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(277), [anon_sym_catch] = ACTIONS(275), @@ -58545,10 +58598,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -58566,56 +58619,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(158)] = { - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym_pipeline] = STATE(4425), - [sym_cmd_identifier] = STATE(2920), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [159] = { + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym_pipeline] = STATE(3324), + [sym_cmd_identifier] = STATE(2877), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2983), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), [sym_val_variable] = STATE(485), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(152), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(158), - [aux_sym_pipeline_repeat1] = STATE(182), - [aux_sym_pipe_element_repeat2] = STATE(285), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(149), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(159), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -58627,7 +58680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1002), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(277), [anon_sym_catch] = ACTIONS(275), @@ -58650,10 +58703,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -58671,56 +58724,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(159)] = { - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym_pipeline] = STATE(4362), - [sym_cmd_identifier] = STATE(2920), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [160] = { + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym_pipeline] = STATE(4431), + [sym_cmd_identifier] = STATE(2877), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(485), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(152), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(159), - [aux_sym_pipeline_repeat1] = STATE(182), - [aux_sym_pipe_element_repeat2] = STATE(285), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(461), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(160), + [aux_sym_pipeline_repeat1] = STATE(177), + [aux_sym_pipe_element_repeat2] = STATE(277), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -58732,7 +58785,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(467), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(277), [anon_sym_catch] = ACTIONS(275), @@ -58755,10 +58808,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -58776,161 +58829,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(160)] = { - [sym_comment] = STATE(160), - [anon_sym_in] = ACTIONS(759), - [anon_sym_STAR_STAR] = ACTIONS(761), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_mod] = ACTIONS(761), - [anon_sym_SLASH_SLASH] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_bit_DASHshl] = ACTIONS(761), - [anon_sym_bit_DASHshr] = ACTIONS(761), - [anon_sym_EQ_TILDE] = ACTIONS(761), - [anon_sym_BANG_TILDE] = ACTIONS(761), - [anon_sym_like] = ACTIONS(761), - [anon_sym_not_DASHlike] = ACTIONS(761), - [anon_sym_bit_DASHand] = ACTIONS(761), - [anon_sym_bit_DASHxor] = ACTIONS(761), - [anon_sym_bit_DASHor] = ACTIONS(761), - [anon_sym_and] = ACTIONS(761), - [anon_sym_xor] = ACTIONS(761), - [anon_sym_or] = ACTIONS(761), - [anon_sym_in2] = ACTIONS(761), - [anon_sym_not_DASHin] = ACTIONS(761), - [anon_sym_has] = ACTIONS(761), - [anon_sym_not_DASHhas] = ACTIONS(761), - [anon_sym_starts_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), - [anon_sym_ends_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), - [anon_sym_EQ_EQ] = ACTIONS(761), - [anon_sym_BANG_EQ] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_LT_EQ] = ACTIONS(761), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_GT_EQ] = ACTIONS(761), - [aux_sym_cmd_identifier_token6] = ACTIONS(759), - [sym__newline] = ACTIONS(759), - [anon_sym_SEMI] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_err_GT_PIPE] = ACTIONS(759), - [anon_sym_out_GT_PIPE] = ACTIONS(759), - [anon_sym_e_GT_PIPE] = ACTIONS(759), - [anon_sym_o_GT_PIPE] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), - [anon_sym_GT2] = ACTIONS(759), - [anon_sym_DASH2] = ACTIONS(759), - [anon_sym_STAR2] = ACTIONS(759), - [anon_sym_and2] = ACTIONS(759), - [anon_sym_xor2] = ACTIONS(759), - [anon_sym_or2] = ACTIONS(759), - [anon_sym_not_DASHin2] = ACTIONS(759), - [anon_sym_has2] = ACTIONS(759), - [anon_sym_not_DASHhas2] = ACTIONS(759), - [anon_sym_starts_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), - [anon_sym_ends_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), - [anon_sym_EQ_EQ2] = ACTIONS(759), - [anon_sym_BANG_EQ2] = ACTIONS(759), - [anon_sym_LT2] = ACTIONS(759), - [anon_sym_LT_EQ2] = ACTIONS(759), - [anon_sym_GT_EQ2] = ACTIONS(759), - [anon_sym_EQ_TILDE2] = ACTIONS(759), - [anon_sym_BANG_TILDE2] = ACTIONS(759), - [anon_sym_like2] = ACTIONS(759), - [anon_sym_not_DASHlike2] = ACTIONS(759), - [anon_sym_STAR_STAR2] = ACTIONS(759), - [anon_sym_PLUS_PLUS2] = ACTIONS(759), - [anon_sym_SLASH2] = ACTIONS(759), - [anon_sym_mod2] = ACTIONS(759), - [anon_sym_SLASH_SLASH2] = ACTIONS(759), - [anon_sym_PLUS2] = ACTIONS(759), - [anon_sym_bit_DASHshl2] = ACTIONS(759), - [anon_sym_bit_DASHshr2] = ACTIONS(759), - [anon_sym_bit_DASHand2] = ACTIONS(759), - [anon_sym_bit_DASHxor2] = ACTIONS(759), - [anon_sym_bit_DASHor2] = ACTIONS(759), - [anon_sym_DOT_DOT2] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(761), - [sym_filesize_unit] = ACTIONS(759), - [sym_duration_unit] = ACTIONS(761), - [anon_sym_err_GT] = ACTIONS(759), - [anon_sym_out_GT] = ACTIONS(759), - [anon_sym_e_GT] = ACTIONS(759), - [anon_sym_o_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT] = ACTIONS(759), - [anon_sym_err_GT_GT] = ACTIONS(759), - [anon_sym_out_GT_GT] = ACTIONS(759), - [anon_sym_e_GT_GT] = ACTIONS(759), - [anon_sym_o_GT_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(161)] = { - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym_pipeline] = STATE(4473), - [sym_cmd_identifier] = STATE(2920), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), - [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(485), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(152), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [161] = { + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym_pipeline_parenthesized] = STATE(3536), + [sym_cmd_identifier] = STATE(3000), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3203), + [sym_where_command_parenthesized] = STATE(3504), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(494), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(149), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), [sym_comment] = STATE(161), - [aux_sym_pipeline_repeat1] = STATE(182), - [aux_sym_pipe_element_repeat2] = STATE(285), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(286), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -58942,9 +58890,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(277), + [anon_sym_try] = ACTIONS(333), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(279), @@ -58961,14 +58909,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_where] = ACTIONS(173), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -58981,61 +58929,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(162)] = { - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym_pipeline] = STATE(3307), - [sym_cmd_identifier] = STATE(2920), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(2986), - [sym_where_command] = STATE(3411), - [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(449), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [162] = { + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym_pipeline_parenthesized] = STATE(4738), + [sym_cmd_identifier] = STATE(3000), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(494), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(149), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), [sym_comment] = STATE(162), - [aux_sym_pipeline_repeat1] = STATE(183), - [aux_sym_pipe_element_repeat2] = STATE(280), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(174), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(286), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -59047,9 +58995,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(463), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(277), + [anon_sym_try] = ACTIONS(333), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(279), @@ -59066,14 +59014,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_where] = ACTIONS(173), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(341), - [aux_sym__val_number_decimal_token2] = ACTIONS(343), - [aux_sym__val_number_decimal_token3] = ACTIONS(345), - [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -59086,61 +59034,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(163)] = { - [sym_assignment] = STATE(3457), - [sym__mutable_assignment_pattern] = STATE(3458), - [sym_pipeline] = STATE(4693), - [sym_cmd_identifier] = STATE(2973), - [sym__ctrl_expression] = STATE(3457), - [sym_ctrl_if] = STATE(3465), - [sym_ctrl_match] = STATE(3465), - [sym_ctrl_try] = STATE(3465), - [sym__stmt_let_shortcut] = STATE(3467), - [sym_pipe_element] = STATE(3140), - [sym_where_command] = STATE(3457), + [163] = { + [sym_assignment] = STATE(3423), + [sym__mutable_assignment_pattern] = STATE(3434), + [sym_pipeline] = STATE(4786), + [sym_cmd_identifier] = STATE(3036), + [sym__ctrl_expression] = STATE(3423), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3468), + [sym_pipe_element] = STATE(3055), + [sym_where_command] = STATE(3423), [sym__expression] = STATE(2307), - [sym_expr_unary] = STATE(1303), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1303), - [sym__expr_binary_expression] = STATE(2265), - [sym_expr_parenthesized] = STATE(934), - [sym_val_range] = STATE(1303), - [sym__value] = STATE(1303), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1369), - [sym_val_variable] = STATE(470), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), + [sym_expr_unary] = STATE(1343), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1343), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(979), + [sym_val_range] = STATE(1343), + [sym__value] = STATE(1343), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1338), + [sym_val_variable] = STATE(472), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3457), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3423), [sym_comment] = STATE(163), - [aux_sym_pipeline_repeat1] = STATE(181), - [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_pipeline_repeat1] = STATE(172), + [aux_sym_pipe_element_repeat2] = STATE(278), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(1018), + [anon_sym_let] = ACTIONS(1014), [anon_sym_mut] = ACTIONS(39), [anon_sym_const] = ACTIONS(39), [aux_sym_cmd_identifier_token1] = ACTIONS(19), @@ -59196,371 +59144,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(164)] = { + [164] = { + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym_pipeline_parenthesized] = STATE(4739), + [sym_cmd_identifier] = STATE(3000), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(494), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(149), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), [sym_comment] = STATE(164), - [anon_sym_in] = ACTIONS(791), - [anon_sym_STAR_STAR] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_SLASH] = ACTIONS(791), - [anon_sym_mod] = ACTIONS(793), - [anon_sym_SLASH_SLASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_like] = ACTIONS(793), - [anon_sym_not_DASHlike] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_in2] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_has] = ACTIONS(793), - [anon_sym_not_DASHhas] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(793), - [aux_sym_cmd_identifier_token6] = ACTIONS(791), - [sym__newline] = ACTIONS(791), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_GT2] = ACTIONS(791), - [anon_sym_DASH2] = ACTIONS(791), - [anon_sym_STAR2] = ACTIONS(791), - [anon_sym_and2] = ACTIONS(791), - [anon_sym_xor2] = ACTIONS(791), - [anon_sym_or2] = ACTIONS(791), - [anon_sym_not_DASHin2] = ACTIONS(791), - [anon_sym_has2] = ACTIONS(791), - [anon_sym_not_DASHhas2] = ACTIONS(791), - [anon_sym_starts_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), - [anon_sym_ends_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), - [anon_sym_EQ_EQ2] = ACTIONS(791), - [anon_sym_BANG_EQ2] = ACTIONS(791), - [anon_sym_LT2] = ACTIONS(791), - [anon_sym_LT_EQ2] = ACTIONS(791), - [anon_sym_GT_EQ2] = ACTIONS(791), - [anon_sym_EQ_TILDE2] = ACTIONS(791), - [anon_sym_BANG_TILDE2] = ACTIONS(791), - [anon_sym_like2] = ACTIONS(791), - [anon_sym_not_DASHlike2] = ACTIONS(791), - [anon_sym_STAR_STAR2] = ACTIONS(791), - [anon_sym_PLUS_PLUS2] = ACTIONS(791), - [anon_sym_SLASH2] = ACTIONS(791), - [anon_sym_mod2] = ACTIONS(791), - [anon_sym_SLASH_SLASH2] = ACTIONS(791), - [anon_sym_PLUS2] = ACTIONS(791), - [anon_sym_bit_DASHshl2] = ACTIONS(791), - [anon_sym_bit_DASHshr2] = ACTIONS(791), - [anon_sym_bit_DASHand2] = ACTIONS(791), - [anon_sym_bit_DASHxor2] = ACTIONS(791), - [anon_sym_bit_DASHor2] = ACTIONS(791), - [anon_sym_DOT_DOT2] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(793), - [sym_filesize_unit] = ACTIONS(791), - [sym_duration_unit] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(791), - [anon_sym_out_GT] = ACTIONS(791), - [anon_sym_e_GT] = ACTIONS(791), - [anon_sym_o_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT] = ACTIONS(791), - [anon_sym_err_GT_GT] = ACTIONS(791), - [anon_sym_out_GT_GT] = ACTIONS(791), - [anon_sym_e_GT_GT] = ACTIONS(791), - [anon_sym_o_GT_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(165)] = { - [sym_assignment] = STATE(3457), - [sym__mutable_assignment_pattern] = STATE(3458), - [sym_pipeline] = STATE(4781), - [sym_cmd_identifier] = STATE(2973), - [sym__ctrl_expression] = STATE(3457), - [sym_ctrl_if] = STATE(3465), - [sym_ctrl_match] = STATE(3465), - [sym_ctrl_try] = STATE(3465), - [sym__stmt_let_shortcut] = STATE(3467), - [sym_pipe_element] = STATE(3140), - [sym_where_command] = STATE(3457), - [sym__expression] = STATE(2307), - [sym_expr_unary] = STATE(1303), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1303), - [sym__expr_binary_expression] = STATE(2265), - [sym_expr_parenthesized] = STATE(934), - [sym_val_range] = STATE(1303), - [sym__value] = STATE(1303), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1369), - [sym_val_variable] = STATE(470), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), - [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3457), - [sym_comment] = STATE(165), - [aux_sym_pipeline_repeat1] = STATE(181), - [aux_sym_pipe_element_repeat2] = STATE(287), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(1018), - [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_PERCENT] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(107), - }, - [STATE(166)] = { - [sym_assignment] = STATE(3457), - [sym__mutable_assignment_pattern] = STATE(3458), - [sym_pipeline] = STATE(4694), - [sym_cmd_identifier] = STATE(2973), - [sym__ctrl_expression] = STATE(3457), - [sym_ctrl_if] = STATE(3465), - [sym_ctrl_match] = STATE(3465), - [sym_ctrl_try] = STATE(3465), - [sym__stmt_let_shortcut] = STATE(3467), - [sym_pipe_element] = STATE(3140), - [sym_where_command] = STATE(3457), - [sym__expression] = STATE(2307), - [sym_expr_unary] = STATE(1303), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1303), - [sym__expr_binary_expression] = STATE(2265), - [sym_expr_parenthesized] = STATE(934), - [sym_val_range] = STATE(1303), - [sym__value] = STATE(1303), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1369), - [sym_val_variable] = STATE(470), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), - [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3457), - [sym_comment] = STATE(166), - [aux_sym_pipeline_repeat1] = STATE(181), - [aux_sym_pipe_element_repeat2] = STATE(287), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(1018), - [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_PERCENT] = ACTIONS(103), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(174), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(286), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(1000), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(107), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(167)] = { - [sym_assignment] = STATE(3457), - [sym__mutable_assignment_pattern] = STATE(3458), - [sym_pipeline] = STATE(4883), - [sym_cmd_identifier] = STATE(2973), - [sym__ctrl_expression] = STATE(3457), - [sym_ctrl_if] = STATE(3465), - [sym_ctrl_match] = STATE(3465), - [sym_ctrl_try] = STATE(3465), - [sym__stmt_let_shortcut] = STATE(3467), - [sym_pipe_element] = STATE(3140), - [sym_where_command] = STATE(3457), + [165] = { + [sym_assignment] = STATE(3423), + [sym__mutable_assignment_pattern] = STATE(3434), + [sym_pipeline] = STATE(4794), + [sym_cmd_identifier] = STATE(3036), + [sym__ctrl_expression] = STATE(3423), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3468), + [sym_pipe_element] = STATE(3055), + [sym_where_command] = STATE(3423), [sym__expression] = STATE(2307), - [sym_expr_unary] = STATE(1303), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1303), - [sym__expr_binary_expression] = STATE(2265), - [sym_expr_parenthesized] = STATE(934), - [sym_val_range] = STATE(1303), - [sym__value] = STATE(1303), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1369), - [sym_val_variable] = STATE(470), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), + [sym_expr_unary] = STATE(1343), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1343), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(979), + [sym_val_range] = STATE(1343), + [sym__value] = STATE(1343), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1338), + [sym_val_variable] = STATE(472), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3457), - [sym_comment] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(181), - [aux_sym_pipe_element_repeat2] = STATE(287), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3423), + [sym_comment] = STATE(165), + [aux_sym_pipeline_repeat1] = STATE(172), + [aux_sym_pipe_element_repeat2] = STATE(278), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(1018), + [anon_sym_let] = ACTIONS(1014), [anon_sym_mut] = ACTIONS(39), [anon_sym_const] = ACTIONS(39), [aux_sym_cmd_identifier_token1] = ACTIONS(19), @@ -59616,56 +59354,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(168)] = { - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym_pipeline] = STATE(4424), - [sym_cmd_identifier] = STATE(2920), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [166] = { + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym_pipeline] = STATE(4516), + [sym_cmd_identifier] = STATE(2877), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(449), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(168), - [aux_sym_pipeline_repeat1] = STATE(174), - [aux_sym_pipe_element_repeat2] = STATE(280), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(485), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(149), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(166), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -59677,7 +59415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(463), + [anon_sym_if] = ACTIONS(1002), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(277), [anon_sym_catch] = ACTIONS(275), @@ -59700,10 +59438,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(341), - [aux_sym__val_number_decimal_token2] = ACTIONS(343), - [aux_sym__val_number_decimal_token3] = ACTIONS(345), - [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -59721,56 +59459,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(169)] = { - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym_pipeline] = STATE(4425), - [sym_cmd_identifier] = STATE(2920), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3049), - [sym_where_command] = STATE(3411), + [167] = { + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym_pipeline] = STATE(4431), + [sym_cmd_identifier] = STATE(2877), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(449), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(169), - [aux_sym_pipeline_repeat1] = STATE(174), - [aux_sym_pipe_element_repeat2] = STATE(280), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(167), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -59782,7 +59520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(463), + [anon_sym_if] = ACTIONS(273), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(277), [anon_sym_catch] = ACTIONS(275), @@ -59805,10 +59543,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(341), - [aux_sym__val_number_decimal_token2] = ACTIONS(343), - [aux_sym__val_number_decimal_token3] = ACTIONS(345), - [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -59826,56 +59564,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(170)] = { - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym_pipeline_parenthesized] = STATE(3600), - [sym_cmd_identifier] = STATE(2982), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3097), - [sym_where_command_parenthesized] = STATE(3522), - [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(170), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(178), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [168] = { + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym_pipeline] = STATE(4507), + [sym_cmd_identifier] = STATE(2877), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(461), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(168), + [aux_sym_pipeline_repeat1] = STATE(177), + [aux_sym_pipe_element_repeat2] = STATE(277), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -59887,9 +59625,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(331), + [anon_sym_if] = ACTIONS(467), [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(333), + [anon_sym_try] = ACTIONS(277), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(279), @@ -59906,7 +59644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_where] = ACTIONS(337), + [anon_sym_where] = ACTIONS(173), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), @@ -59926,269 +59664,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(171)] = { - [sym_comment] = STATE(171), - [anon_sym_in] = ACTIONS(751), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_like] = ACTIONS(753), - [anon_sym_not_DASHlike] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_in2] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_has] = ACTIONS(753), - [anon_sym_not_DASHhas] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_EQ] = ACTIONS(753), - [aux_sym_cmd_identifier_token6] = ACTIONS(751), - [sym__newline] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_err_GT_PIPE] = ACTIONS(751), - [anon_sym_out_GT_PIPE] = ACTIONS(751), - [anon_sym_e_GT_PIPE] = ACTIONS(751), - [anon_sym_o_GT_PIPE] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), - [anon_sym_GT2] = ACTIONS(751), - [anon_sym_DASH2] = ACTIONS(751), - [anon_sym_STAR2] = ACTIONS(751), - [anon_sym_and2] = ACTIONS(751), - [anon_sym_xor2] = ACTIONS(751), - [anon_sym_or2] = ACTIONS(751), - [anon_sym_not_DASHin2] = ACTIONS(751), - [anon_sym_has2] = ACTIONS(751), - [anon_sym_not_DASHhas2] = ACTIONS(751), - [anon_sym_starts_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), - [anon_sym_ends_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), - [anon_sym_EQ_EQ2] = ACTIONS(751), - [anon_sym_BANG_EQ2] = ACTIONS(751), - [anon_sym_LT2] = ACTIONS(751), - [anon_sym_LT_EQ2] = ACTIONS(751), - [anon_sym_GT_EQ2] = ACTIONS(751), - [anon_sym_EQ_TILDE2] = ACTIONS(751), - [anon_sym_BANG_TILDE2] = ACTIONS(751), - [anon_sym_like2] = ACTIONS(751), - [anon_sym_not_DASHlike2] = ACTIONS(751), - [anon_sym_STAR_STAR2] = ACTIONS(751), - [anon_sym_PLUS_PLUS2] = ACTIONS(751), - [anon_sym_SLASH2] = ACTIONS(751), - [anon_sym_mod2] = ACTIONS(751), - [anon_sym_SLASH_SLASH2] = ACTIONS(751), - [anon_sym_PLUS2] = ACTIONS(751), - [anon_sym_bit_DASHshl2] = ACTIONS(751), - [anon_sym_bit_DASHshr2] = ACTIONS(751), - [anon_sym_bit_DASHand2] = ACTIONS(751), - [anon_sym_bit_DASHxor2] = ACTIONS(751), - [anon_sym_bit_DASHor2] = ACTIONS(751), - [anon_sym_DOT_DOT2] = ACTIONS(751), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(753), - [aux_sym__immediate_decimal_token5] = ACTIONS(902), - [sym_filesize_unit] = ACTIONS(751), - [sym_duration_unit] = ACTIONS(753), - [anon_sym_err_GT] = ACTIONS(751), - [anon_sym_out_GT] = ACTIONS(751), - [anon_sym_e_GT] = ACTIONS(751), - [anon_sym_o_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT] = ACTIONS(751), - [anon_sym_err_GT_GT] = ACTIONS(751), - [anon_sym_out_GT_GT] = ACTIONS(751), - [anon_sym_e_GT_GT] = ACTIONS(751), - [anon_sym_o_GT_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(751), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(172)] = { - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym_cmd_identifier] = STATE(2982), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3602), - [sym_where_command_parenthesized] = STATE(3522), - [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(521), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(176), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(172), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(172), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [anon_sym_export] = ACTIONS(1026), - [anon_sym_alias] = ACTIONS(1029), - [anon_sym_let] = ACTIONS(1032), - [anon_sym_mut] = ACTIONS(1029), - [anon_sym_const] = ACTIONS(1029), - [aux_sym_cmd_identifier_token1] = ACTIONS(1035), - [anon_sym_def] = ACTIONS(1029), - [anon_sym_use] = ACTIONS(1029), - [anon_sym_export_DASHenv] = ACTIONS(1029), - [anon_sym_extern] = ACTIONS(1029), - [anon_sym_module] = ACTIONS(1029), - [anon_sym_for] = ACTIONS(1029), - [anon_sym_loop] = ACTIONS(1029), - [anon_sym_while] = ACTIONS(1029), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_else] = ACTIONS(1029), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_catch] = ACTIONS(1029), - [anon_sym_finally] = ACTIONS(1029), - [anon_sym_match] = ACTIONS(1044), - [anon_sym_in] = ACTIONS(1026), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_null] = ACTIONS(1050), - [aux_sym_cmd_identifier_token3] = ACTIONS(1053), - [aux_sym_cmd_identifier_token4] = ACTIONS(1053), - [aux_sym_cmd_identifier_token5] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1056), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1062), - [anon_sym_DASH2] = ACTIONS(1065), - [anon_sym_LBRACE] = ACTIONS(1068), - [anon_sym_DOT_DOT] = ACTIONS(1071), - [anon_sym_where] = ACTIONS(1074), - [aux_sym_expr_unary_token1] = ACTIONS(1077), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), - [anon_sym_DOT_DOT_LT] = ACTIONS(1080), - [aux_sym__val_number_decimal_token1] = ACTIONS(1083), - [aux_sym__val_number_decimal_token2] = ACTIONS(1086), - [aux_sym__val_number_decimal_token3] = ACTIONS(1089), - [aux_sym__val_number_decimal_token4] = ACTIONS(1089), - [aux_sym__val_number_token1] = ACTIONS(1092), - [aux_sym__val_number_token2] = ACTIONS(1092), - [aux_sym__val_number_token3] = ACTIONS(1092), - [anon_sym_0b] = ACTIONS(1095), - [anon_sym_0o] = ACTIONS(1098), - [anon_sym_0x] = ACTIONS(1098), - [sym_val_date] = ACTIONS(1101), - [anon_sym_DQUOTE] = ACTIONS(1104), - [anon_sym_SQUOTE] = ACTIONS(1107), - [anon_sym_BQUOTE] = ACTIONS(1110), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1116), - [anon_sym_CARET] = ACTIONS(1119), - [anon_sym_PERCENT] = ACTIONS(1122), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1125), - }, - [STATE(173)] = { - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym_cmd_identifier] = STATE(2920), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(2995), - [sym_where_command] = STATE(3411), + [169] = { + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym_pipeline] = STATE(4516), + [sym_cmd_identifier] = STATE(2877), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2971), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(485), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(152), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(285), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(461), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(169), + [aux_sym_pipeline_repeat1] = STATE(177), + [aux_sym_pipe_element_repeat2] = STATE(277), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -60200,7 +59730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(467), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(277), [anon_sym_catch] = ACTIONS(275), @@ -60223,10 +59753,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -60244,55 +59774,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(174)] = { - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym_cmd_identifier] = STATE(2920), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(2939), - [sym_where_command] = STATE(3411), - [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(449), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(174), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(280), + [170] = { + [sym_assignment] = STATE(3423), + [sym__mutable_assignment_pattern] = STATE(3434), + [sym_pipeline] = STATE(4880), + [sym_cmd_identifier] = STATE(3036), + [sym__ctrl_expression] = STATE(3423), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3468), + [sym_pipe_element] = STATE(3055), + [sym_where_command] = STATE(3423), + [sym__expression] = STATE(2307), + [sym_expr_unary] = STATE(1343), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1343), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(979), + [sym_val_range] = STATE(1343), + [sym__value] = STATE(1343), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1338), + [sym_val_variable] = STATE(472), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3423), + [sym_comment] = STATE(170), + [aux_sym_pipeline_repeat1] = STATE(172), + [aux_sym_pipe_element_repeat2] = STATE(278), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(1014), + [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_PERCENT] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), + }, + [171] = { + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym_pipeline_parenthesized] = STATE(4739), + [sym_cmd_identifier] = STATE(3000), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3064), + [sym_where_command_parenthesized] = STATE(3504), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(171), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -60304,9 +59940,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(463), + [anon_sym_if] = ACTIONS(331), [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(277), + [anon_sym_try] = ACTIONS(333), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(279), @@ -60323,7 +59959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_where] = ACTIONS(173), + [anon_sym_where] = ACTIONS(337), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), @@ -60343,60 +59979,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(175)] = { - [sym_assignment] = STATE(3457), - [sym__mutable_assignment_pattern] = STATE(3458), - [sym_cmd_identifier] = STATE(2973), - [sym__ctrl_expression] = STATE(3457), - [sym_ctrl_if] = STATE(3465), - [sym_ctrl_match] = STATE(3465), - [sym_ctrl_try] = STATE(3465), - [sym__stmt_let_shortcut] = STATE(3467), - [sym_pipe_element] = STATE(3089), - [sym_where_command] = STATE(3457), + [172] = { + [sym_assignment] = STATE(3423), + [sym__mutable_assignment_pattern] = STATE(3434), + [sym_cmd_identifier] = STATE(3036), + [sym__ctrl_expression] = STATE(3423), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3468), + [sym_pipe_element] = STATE(3073), + [sym_where_command] = STATE(3423), [sym__expression] = STATE(2307), - [sym_expr_unary] = STATE(1303), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1303), - [sym__expr_binary_expression] = STATE(2265), - [sym_expr_parenthesized] = STATE(934), - [sym_val_range] = STATE(1303), - [sym__value] = STATE(1303), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1369), - [sym_val_variable] = STATE(470), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), + [sym_expr_unary] = STATE(1343), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1343), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(979), + [sym_val_range] = STATE(1343), + [sym__value] = STATE(1343), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1338), + [sym_val_variable] = STATE(472), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3457), - [sym_comment] = STATE(175), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(287), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3423), + [sym_comment] = STATE(172), + [aux_sym_pipeline_repeat1] = STATE(180), + [aux_sym_pipe_element_repeat2] = STATE(278), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(1018), + [anon_sym_let] = ACTIONS(1014), [anon_sym_mut] = ACTIONS(39), [anon_sym_const] = ACTIONS(39), [aux_sym_cmd_identifier_token1] = ACTIONS(19), @@ -60452,159 +60088,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(176)] = { - [sym_comment] = STATE(176), - [anon_sym_in] = ACTIONS(811), - [anon_sym_STAR_STAR] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_mod] = ACTIONS(904), - [anon_sym_SLASH_SLASH] = ACTIONS(904), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_bit_DASHshl] = ACTIONS(904), - [anon_sym_bit_DASHshr] = ACTIONS(904), - [anon_sym_EQ_TILDE] = ACTIONS(904), - [anon_sym_BANG_TILDE] = ACTIONS(904), - [anon_sym_like] = ACTIONS(904), - [anon_sym_not_DASHlike] = ACTIONS(904), - [anon_sym_bit_DASHand] = ACTIONS(904), - [anon_sym_bit_DASHxor] = ACTIONS(904), - [anon_sym_bit_DASHor] = ACTIONS(904), - [anon_sym_and] = ACTIONS(904), - [anon_sym_xor] = ACTIONS(904), - [anon_sym_or] = ACTIONS(904), - [anon_sym_in2] = ACTIONS(904), - [anon_sym_not_DASHin] = ACTIONS(904), - [anon_sym_has] = ACTIONS(904), - [anon_sym_not_DASHhas] = ACTIONS(904), - [anon_sym_starts_DASHwith] = ACTIONS(904), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(904), - [anon_sym_ends_DASHwith] = ACTIONS(904), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(904), - [anon_sym_BANG_EQ] = ACTIONS(904), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_LT_EQ] = ACTIONS(904), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(904), - [aux_sym_cmd_identifier_token6] = ACTIONS(908), - [sym__newline] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_err_GT_PIPE] = ACTIONS(811), - [anon_sym_out_GT_PIPE] = ACTIONS(811), - [anon_sym_e_GT_PIPE] = ACTIONS(811), - [anon_sym_o_GT_PIPE] = ACTIONS(811), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(811), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(811), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(811), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(811), - [anon_sym_GT2] = ACTIONS(811), - [anon_sym_DASH2] = ACTIONS(811), - [anon_sym_STAR2] = ACTIONS(811), - [anon_sym_and2] = ACTIONS(811), - [anon_sym_xor2] = ACTIONS(811), - [anon_sym_or2] = ACTIONS(811), - [anon_sym_not_DASHin2] = ACTIONS(811), - [anon_sym_has2] = ACTIONS(811), - [anon_sym_not_DASHhas2] = ACTIONS(811), - [anon_sym_starts_DASHwith2] = ACTIONS(811), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(811), - [anon_sym_ends_DASHwith2] = ACTIONS(811), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(811), - [anon_sym_EQ_EQ2] = ACTIONS(811), - [anon_sym_BANG_EQ2] = ACTIONS(811), - [anon_sym_LT2] = ACTIONS(811), - [anon_sym_LT_EQ2] = ACTIONS(811), - [anon_sym_GT_EQ2] = ACTIONS(811), - [anon_sym_EQ_TILDE2] = ACTIONS(811), - [anon_sym_BANG_TILDE2] = ACTIONS(811), - [anon_sym_like2] = ACTIONS(811), - [anon_sym_not_DASHlike2] = ACTIONS(811), - [anon_sym_STAR_STAR2] = ACTIONS(811), - [anon_sym_PLUS_PLUS2] = ACTIONS(811), - [anon_sym_SLASH2] = ACTIONS(811), - [anon_sym_mod2] = ACTIONS(811), - [anon_sym_SLASH_SLASH2] = ACTIONS(811), - [anon_sym_PLUS2] = ACTIONS(811), - [anon_sym_bit_DASHshl2] = ACTIONS(811), - [anon_sym_bit_DASHshr2] = ACTIONS(811), - [anon_sym_bit_DASHand2] = ACTIONS(811), - [anon_sym_bit_DASHxor2] = ACTIONS(811), - [anon_sym_bit_DASHor2] = ACTIONS(811), - [anon_sym_DOT_DOT2] = ACTIONS(819), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(821), - [anon_sym_DOT_DOT_LT2] = ACTIONS(821), - [sym_filesize_unit] = ACTIONS(1128), - [sym_duration_unit] = ACTIONS(1130), - [anon_sym_err_GT] = ACTIONS(811), - [anon_sym_out_GT] = ACTIONS(811), - [anon_sym_e_GT] = ACTIONS(811), - [anon_sym_o_GT] = ACTIONS(811), - [anon_sym_err_PLUSout_GT] = ACTIONS(811), - [anon_sym_out_PLUSerr_GT] = ACTIONS(811), - [anon_sym_o_PLUSe_GT] = ACTIONS(811), - [anon_sym_e_PLUSo_GT] = ACTIONS(811), - [anon_sym_err_GT_GT] = ACTIONS(811), - [anon_sym_out_GT_GT] = ACTIONS(811), - [anon_sym_e_GT_GT] = ACTIONS(811), - [anon_sym_o_GT_GT] = ACTIONS(811), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(811), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(811), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(811), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(811), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(177)] = { - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym_cmd_identifier] = STATE(2982), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3189), - [sym_where_command_parenthesized] = STATE(3522), + [173] = { + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym_cmd_identifier] = STATE(3000), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3205), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(177), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(172), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(526), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(188), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(173), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -60616,7 +60148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(331), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(333), [anon_sym_catch] = ACTIONS(275), @@ -60639,10 +60171,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(341), - [aux_sym__val_number_decimal_token2] = ACTIONS(343), - [aux_sym__val_number_decimal_token3] = ACTIONS(345), - [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_decimal_token1] = ACTIONS(1022), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1026), + [aux_sym__val_number_decimal_token4] = ACTIONS(1026), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -60660,55 +60192,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(178)] = { - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym_cmd_identifier] = STATE(2982), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3083), - [sym_where_command_parenthesized] = STATE(3522), + [174] = { + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym_cmd_identifier] = STATE(3000), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3079), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(178), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(172), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(494), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(149), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(174), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(286), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -60720,7 +60252,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(331), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(333), [anon_sym_catch] = ACTIONS(275), @@ -60743,10 +60275,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(341), - [aux_sym__val_number_decimal_token2] = ACTIONS(343), - [aux_sym__val_number_decimal_token3] = ACTIONS(345), - [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -60764,55 +60296,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(179)] = { - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym_cmd_identifier] = STATE(2982), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3189), - [sym_where_command_parenthesized] = STATE(3522), + [175] = { + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym_cmd_identifier] = STATE(3000), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3205), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(494), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(152), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(179), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(172), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(175), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -60824,7 +60356,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(331), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(333), [anon_sym_catch] = ACTIONS(275), @@ -60847,10 +60379,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -60868,55 +60400,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(180)] = { - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym_cmd_identifier] = STATE(2920), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(2939), - [sym_where_command] = STATE(3411), + [176] = { + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym_cmd_identifier] = STATE(2877), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2977), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(180), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(283), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(485), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(149), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(176), + [aux_sym_pipeline_repeat1] = STATE(180), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -60928,7 +60460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1002), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(277), [anon_sym_catch] = ACTIONS(275), @@ -60951,10 +60483,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(295), - [aux_sym__val_number_decimal_token2] = ACTIONS(297), - [aux_sym__val_number_decimal_token3] = ACTIONS(299), - [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -60972,159 +60504,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(181)] = { - [sym_assignment] = STATE(3457), - [sym__mutable_assignment_pattern] = STATE(3458), - [sym_cmd_identifier] = STATE(2973), - [sym__ctrl_expression] = STATE(3457), - [sym_ctrl_if] = STATE(3465), - [sym_ctrl_match] = STATE(3465), - [sym_ctrl_try] = STATE(3465), - [sym__stmt_let_shortcut] = STATE(3467), - [sym_pipe_element] = STATE(3094), - [sym_where_command] = STATE(3457), - [sym__expression] = STATE(2307), - [sym_expr_unary] = STATE(1303), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1303), - [sym__expr_binary_expression] = STATE(2265), - [sym_expr_parenthesized] = STATE(934), - [sym_val_range] = STATE(1303), - [sym__value] = STATE(1303), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1369), - [sym_val_variable] = STATE(470), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), - [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3457), - [sym_comment] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(287), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(1018), - [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_PERCENT] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(107), - }, - [STATE(182)] = { - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym_cmd_identifier] = STATE(2920), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(2939), - [sym_where_command] = STATE(3411), + [177] = { + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym_cmd_identifier] = STATE(2877), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2977), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(485), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(152), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(182), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(285), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(461), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(177), + [aux_sym_pipeline_repeat1] = STATE(180), + [aux_sym_pipe_element_repeat2] = STATE(277), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -61136,7 +60564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(467), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(277), [anon_sym_catch] = ACTIONS(275), @@ -61159,10 +60587,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -61180,55 +60608,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(183)] = { - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym_cmd_identifier] = STATE(2920), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(2995), - [sym_where_command] = STATE(3411), + [178] = { + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym_cmd_identifier] = STATE(2877), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2972), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(449), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(183), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(280), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(485), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(149), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(180), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -61240,7 +60668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(463), + [anon_sym_if] = ACTIONS(1002), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(277), [anon_sym_catch] = ACTIONS(275), @@ -61263,10 +60691,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(341), - [aux_sym__val_number_decimal_token2] = ACTIONS(343), - [aux_sym__val_number_decimal_token3] = ACTIONS(345), - [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -61284,55 +60712,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(184)] = { - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym_cmd_identifier] = STATE(2982), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3083), - [sym_where_command_parenthesized] = STATE(3522), - [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(521), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(176), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(184), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(172), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [179] = { + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym_cmd_identifier] = STATE(2877), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2972), + [sym_where_command] = STATE(3339), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(179), + [aux_sym_pipeline_repeat1] = STATE(180), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -61344,9 +60772,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(273), [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(333), + [anon_sym_try] = ACTIONS(277), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(279), @@ -61363,14 +60791,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), - [anon_sym_where] = ACTIONS(337), + [anon_sym_where] = ACTIONS(173), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1012), - [aux_sym__val_number_decimal_token2] = ACTIONS(1014), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -61383,60 +60811,476 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(185)] = { - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym_cmd_identifier] = STATE(2920), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(2995), - [sym_where_command] = STATE(3411), + [180] = { + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym_cmd_identifier] = STATE(2877), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(3588), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(467), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(185), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(283), - [anon_sym_export] = ACTIONS(281), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(499), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(188), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(180), + [aux_sym_pipeline_repeat1] = STATE(180), + [aux_sym_pipe_element_repeat2] = STATE(289), + [anon_sym_export] = ACTIONS(1030), + [anon_sym_alias] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1036), + [anon_sym_mut] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [aux_sym_cmd_identifier_token1] = ACTIONS(1039), + [anon_sym_def] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_export_DASHenv] = ACTIONS(1033), + [anon_sym_extern] = ACTIONS(1033), + [anon_sym_module] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_else] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1045), + [anon_sym_catch] = ACTIONS(1033), + [anon_sym_finally] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1048), + [anon_sym_in] = ACTIONS(1030), + [anon_sym_true] = ACTIONS(1051), + [anon_sym_false] = ACTIONS(1051), + [anon_sym_null] = ACTIONS(1054), + [aux_sym_cmd_identifier_token3] = ACTIONS(1057), + [aux_sym_cmd_identifier_token4] = ACTIONS(1057), + [aux_sym_cmd_identifier_token5] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(1060), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_DOLLAR] = ACTIONS(1066), + [anon_sym_DASH2] = ACTIONS(1069), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_where] = ACTIONS(1078), + [aux_sym_expr_unary_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1084), + [anon_sym_DOT_DOT_LT] = ACTIONS(1084), + [aux_sym__val_number_decimal_token1] = ACTIONS(1087), + [aux_sym__val_number_decimal_token2] = ACTIONS(1090), + [aux_sym__val_number_decimal_token3] = ACTIONS(1093), + [aux_sym__val_number_decimal_token4] = ACTIONS(1093), + [aux_sym__val_number_token1] = ACTIONS(1096), + [aux_sym__val_number_token2] = ACTIONS(1096), + [aux_sym__val_number_token3] = ACTIONS(1096), + [anon_sym_0b] = ACTIONS(1099), + [anon_sym_0o] = ACTIONS(1102), + [anon_sym_0x] = ACTIONS(1102), + [sym_val_date] = ACTIONS(1105), + [anon_sym_DQUOTE] = ACTIONS(1108), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_BQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1120), + [anon_sym_CARET] = ACTIONS(1123), + [anon_sym_PERCENT] = ACTIONS(1126), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1129), + }, + [181] = { + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym_cmd_identifier] = STATE(2877), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2972), + [sym_where_command] = STATE(3339), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(461), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(180), + [aux_sym_pipe_element_repeat2] = STATE(277), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(1000), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(467), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(173), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [182] = { + [sym_comment] = STATE(182), + [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(105), + }, + [183] = { + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym_cmd_identifier] = STATE(3000), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3079), + [sym_where_command_parenthesized] = STATE(3504), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(467), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(183), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(1000), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(279), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(217), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [anon_sym_where] = ACTIONS(337), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [184] = { + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym_cmd_identifier] = STATE(2877), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2977), + [sym_where_command] = STATE(3339), + [sym__expression] = STATE(2301), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(184), + [aux_sym_pipeline_repeat1] = STATE(180), + [aux_sym_pipe_element_repeat2] = STATE(287), + [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -61492,55 +61336,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(186)] = { - [sym_assignment_parenthesized] = STATE(3522), - [sym__mutable_assignment_pattern_parenthesized] = STATE(3569), - [sym_cmd_identifier] = STATE(2982), - [sym__ctrl_expression_parenthesized] = STATE(3522), - [sym_ctrl_if_parenthesized] = STATE(3419), - [sym_ctrl_match] = STATE(3419), - [sym_ctrl_try_parenthesized] = STATE(3419), - [sym__stmt_let_shortcut] = STATE(3456), - [sym_pipe_element_parenthesized] = STATE(3083), - [sym_where_command_parenthesized] = STATE(3522), + [185] = { + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym_cmd_identifier] = STATE(3000), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3205), + [sym_where_command_parenthesized] = STATE(3504), [sym__expression_parenthesized] = STATE(2308), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), [sym_val_variable] = STATE(494), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(152), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3459), - [sym_comment] = STATE(186), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(172), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(149), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(185), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(286), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -61552,7 +61396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(333), [anon_sym_catch] = ACTIONS(275), @@ -61575,10 +61419,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -61596,367 +61440,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(187)] = { - [sym_comment] = STATE(187), - [anon_sym_in] = ACTIONS(803), - [anon_sym_STAR_STAR] = ACTIONS(805), - [anon_sym_PLUS_PLUS] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(803), - [anon_sym_mod] = ACTIONS(805), - [anon_sym_SLASH_SLASH] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(803), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_bit_DASHshl] = ACTIONS(805), - [anon_sym_bit_DASHshr] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(805), - [anon_sym_BANG_TILDE] = ACTIONS(805), - [anon_sym_like] = ACTIONS(805), - [anon_sym_not_DASHlike] = ACTIONS(805), - [anon_sym_bit_DASHand] = ACTIONS(805), - [anon_sym_bit_DASHxor] = ACTIONS(805), - [anon_sym_bit_DASHor] = ACTIONS(805), - [anon_sym_and] = ACTIONS(805), - [anon_sym_xor] = ACTIONS(805), - [anon_sym_or] = ACTIONS(805), - [anon_sym_in2] = ACTIONS(805), - [anon_sym_not_DASHin] = ACTIONS(805), - [anon_sym_has] = ACTIONS(805), - [anon_sym_not_DASHhas] = ACTIONS(805), - [anon_sym_starts_DASHwith] = ACTIONS(805), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(805), - [anon_sym_ends_DASHwith] = ACTIONS(805), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(805), - [anon_sym_EQ_EQ] = ACTIONS(805), - [anon_sym_BANG_EQ] = ACTIONS(805), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_LT_EQ] = ACTIONS(805), - [anon_sym_GT] = ACTIONS(803), - [anon_sym_GT_EQ] = ACTIONS(805), - [aux_sym_cmd_identifier_token6] = ACTIONS(803), - [sym__newline] = ACTIONS(803), - [anon_sym_PIPE] = ACTIONS(803), - [anon_sym_err_GT_PIPE] = ACTIONS(803), - [anon_sym_out_GT_PIPE] = ACTIONS(803), - [anon_sym_e_GT_PIPE] = ACTIONS(803), - [anon_sym_o_GT_PIPE] = ACTIONS(803), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(803), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(803), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(803), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(803), - [anon_sym_GT2] = ACTIONS(803), - [anon_sym_DASH2] = ACTIONS(803), - [anon_sym_STAR2] = ACTIONS(803), - [anon_sym_and2] = ACTIONS(803), - [anon_sym_xor2] = ACTIONS(803), - [anon_sym_or2] = ACTIONS(803), - [anon_sym_not_DASHin2] = ACTIONS(803), - [anon_sym_has2] = ACTIONS(803), - [anon_sym_not_DASHhas2] = ACTIONS(803), - [anon_sym_starts_DASHwith2] = ACTIONS(803), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(803), - [anon_sym_ends_DASHwith2] = ACTIONS(803), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(803), - [anon_sym_EQ_EQ2] = ACTIONS(803), - [anon_sym_BANG_EQ2] = ACTIONS(803), - [anon_sym_LT2] = ACTIONS(803), - [anon_sym_LT_EQ2] = ACTIONS(803), - [anon_sym_GT_EQ2] = ACTIONS(803), - [anon_sym_EQ_TILDE2] = ACTIONS(803), - [anon_sym_BANG_TILDE2] = ACTIONS(803), - [anon_sym_like2] = ACTIONS(803), - [anon_sym_not_DASHlike2] = ACTIONS(803), - [anon_sym_STAR_STAR2] = ACTIONS(803), - [anon_sym_PLUS_PLUS2] = ACTIONS(803), - [anon_sym_SLASH2] = ACTIONS(803), - [anon_sym_mod2] = ACTIONS(803), - [anon_sym_SLASH_SLASH2] = ACTIONS(803), - [anon_sym_PLUS2] = ACTIONS(803), - [anon_sym_bit_DASHshl2] = ACTIONS(803), - [anon_sym_bit_DASHshr2] = ACTIONS(803), - [anon_sym_bit_DASHand2] = ACTIONS(803), - [anon_sym_bit_DASHxor2] = ACTIONS(803), - [anon_sym_bit_DASHor2] = ACTIONS(803), - [anon_sym_DOT_DOT2] = ACTIONS(803), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(805), - [anon_sym_DOT_DOT_LT2] = ACTIONS(805), - [sym_filesize_unit] = ACTIONS(803), - [sym_duration_unit] = ACTIONS(805), - [anon_sym_err_GT] = ACTIONS(803), - [anon_sym_out_GT] = ACTIONS(803), - [anon_sym_e_GT] = ACTIONS(803), - [anon_sym_o_GT] = ACTIONS(803), - [anon_sym_err_PLUSout_GT] = ACTIONS(803), - [anon_sym_out_PLUSerr_GT] = ACTIONS(803), - [anon_sym_o_PLUSe_GT] = ACTIONS(803), - [anon_sym_e_PLUSo_GT] = ACTIONS(803), - [anon_sym_err_GT_GT] = ACTIONS(803), - [anon_sym_out_GT_GT] = ACTIONS(803), - [anon_sym_e_GT_GT] = ACTIONS(803), - [anon_sym_o_GT_GT] = ACTIONS(803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(803), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(188)] = { - [sym_comment] = STATE(188), - [anon_sym_in] = ACTIONS(791), - [anon_sym_STAR_STAR] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_SLASH] = ACTIONS(791), - [anon_sym_mod] = ACTIONS(793), - [anon_sym_SLASH_SLASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_like] = ACTIONS(793), - [anon_sym_not_DASHlike] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_in2] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_has] = ACTIONS(793), - [anon_sym_not_DASHhas] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(793), - [aux_sym_cmd_identifier_token6] = ACTIONS(791), - [sym__newline] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_GT2] = ACTIONS(791), - [anon_sym_DASH2] = ACTIONS(791), - [anon_sym_STAR2] = ACTIONS(791), - [anon_sym_and2] = ACTIONS(791), - [anon_sym_xor2] = ACTIONS(791), - [anon_sym_or2] = ACTIONS(791), - [anon_sym_not_DASHin2] = ACTIONS(791), - [anon_sym_has2] = ACTIONS(791), - [anon_sym_not_DASHhas2] = ACTIONS(791), - [anon_sym_starts_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), - [anon_sym_ends_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), - [anon_sym_EQ_EQ2] = ACTIONS(791), - [anon_sym_BANG_EQ2] = ACTIONS(791), - [anon_sym_LT2] = ACTIONS(791), - [anon_sym_LT_EQ2] = ACTIONS(791), - [anon_sym_GT_EQ2] = ACTIONS(791), - [anon_sym_EQ_TILDE2] = ACTIONS(791), - [anon_sym_BANG_TILDE2] = ACTIONS(791), - [anon_sym_like2] = ACTIONS(791), - [anon_sym_not_DASHlike2] = ACTIONS(791), - [anon_sym_STAR_STAR2] = ACTIONS(791), - [anon_sym_PLUS_PLUS2] = ACTIONS(791), - [anon_sym_SLASH2] = ACTIONS(791), - [anon_sym_mod2] = ACTIONS(791), - [anon_sym_SLASH_SLASH2] = ACTIONS(791), - [anon_sym_PLUS2] = ACTIONS(791), - [anon_sym_bit_DASHshl2] = ACTIONS(791), - [anon_sym_bit_DASHshr2] = ACTIONS(791), - [anon_sym_bit_DASHand2] = ACTIONS(791), - [anon_sym_bit_DASHxor2] = ACTIONS(791), - [anon_sym_bit_DASHor2] = ACTIONS(791), - [anon_sym_DOT_DOT2] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(793), - [sym_filesize_unit] = ACTIONS(791), - [sym_duration_unit] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(791), - [anon_sym_out_GT] = ACTIONS(791), - [anon_sym_e_GT] = ACTIONS(791), - [anon_sym_o_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT] = ACTIONS(791), - [anon_sym_err_GT_GT] = ACTIONS(791), - [anon_sym_out_GT_GT] = ACTIONS(791), - [anon_sym_e_GT_GT] = ACTIONS(791), - [anon_sym_o_GT_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(189)] = { - [sym_comment] = STATE(189), - [anon_sym_in] = ACTIONS(759), - [anon_sym_STAR_STAR] = ACTIONS(761), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_mod] = ACTIONS(761), - [anon_sym_SLASH_SLASH] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_bit_DASHshl] = ACTIONS(761), - [anon_sym_bit_DASHshr] = ACTIONS(761), - [anon_sym_EQ_TILDE] = ACTIONS(761), - [anon_sym_BANG_TILDE] = ACTIONS(761), - [anon_sym_like] = ACTIONS(761), - [anon_sym_not_DASHlike] = ACTIONS(761), - [anon_sym_bit_DASHand] = ACTIONS(761), - [anon_sym_bit_DASHxor] = ACTIONS(761), - [anon_sym_bit_DASHor] = ACTIONS(761), - [anon_sym_and] = ACTIONS(761), - [anon_sym_xor] = ACTIONS(761), - [anon_sym_or] = ACTIONS(761), - [anon_sym_in2] = ACTIONS(761), - [anon_sym_not_DASHin] = ACTIONS(761), - [anon_sym_has] = ACTIONS(761), - [anon_sym_not_DASHhas] = ACTIONS(761), - [anon_sym_starts_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), - [anon_sym_ends_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), - [anon_sym_EQ_EQ] = ACTIONS(761), - [anon_sym_BANG_EQ] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_LT_EQ] = ACTIONS(761), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_GT_EQ] = ACTIONS(761), - [aux_sym_cmd_identifier_token6] = ACTIONS(759), - [sym__newline] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_err_GT_PIPE] = ACTIONS(759), - [anon_sym_out_GT_PIPE] = ACTIONS(759), - [anon_sym_e_GT_PIPE] = ACTIONS(759), - [anon_sym_o_GT_PIPE] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), - [anon_sym_GT2] = ACTIONS(759), - [anon_sym_DASH2] = ACTIONS(759), - [anon_sym_STAR2] = ACTIONS(759), - [anon_sym_and2] = ACTIONS(759), - [anon_sym_xor2] = ACTIONS(759), - [anon_sym_or2] = ACTIONS(759), - [anon_sym_not_DASHin2] = ACTIONS(759), - [anon_sym_has2] = ACTIONS(759), - [anon_sym_not_DASHhas2] = ACTIONS(759), - [anon_sym_starts_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), - [anon_sym_ends_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), - [anon_sym_EQ_EQ2] = ACTIONS(759), - [anon_sym_BANG_EQ2] = ACTIONS(759), - [anon_sym_LT2] = ACTIONS(759), - [anon_sym_LT_EQ2] = ACTIONS(759), - [anon_sym_GT_EQ2] = ACTIONS(759), - [anon_sym_EQ_TILDE2] = ACTIONS(759), - [anon_sym_BANG_TILDE2] = ACTIONS(759), - [anon_sym_like2] = ACTIONS(759), - [anon_sym_not_DASHlike2] = ACTIONS(759), - [anon_sym_STAR_STAR2] = ACTIONS(759), - [anon_sym_PLUS_PLUS2] = ACTIONS(759), - [anon_sym_SLASH2] = ACTIONS(759), - [anon_sym_mod2] = ACTIONS(759), - [anon_sym_SLASH_SLASH2] = ACTIONS(759), - [anon_sym_PLUS2] = ACTIONS(759), - [anon_sym_bit_DASHshl2] = ACTIONS(759), - [anon_sym_bit_DASHshr2] = ACTIONS(759), - [anon_sym_bit_DASHand2] = ACTIONS(759), - [anon_sym_bit_DASHxor2] = ACTIONS(759), - [anon_sym_bit_DASHor2] = ACTIONS(759), - [anon_sym_DOT_DOT2] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(761), - [sym_filesize_unit] = ACTIONS(759), - [sym_duration_unit] = ACTIONS(761), - [anon_sym_err_GT] = ACTIONS(759), - [anon_sym_out_GT] = ACTIONS(759), - [anon_sym_e_GT] = ACTIONS(759), - [anon_sym_o_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT] = ACTIONS(759), - [anon_sym_err_GT_GT] = ACTIONS(759), - [anon_sym_out_GT_GT] = ACTIONS(759), - [anon_sym_e_GT_GT] = ACTIONS(759), - [anon_sym_o_GT_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(759), + [186] = { + [sym_comment] = STATE(186), + [anon_sym_in] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_mod] = ACTIONS(803), + [anon_sym_SLASH_SLASH] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(803), + [anon_sym_bit_DASHshl] = ACTIONS(803), + [anon_sym_bit_DASHshr] = ACTIONS(803), + [anon_sym_EQ_TILDE] = ACTIONS(803), + [anon_sym_BANG_TILDE] = ACTIONS(803), + [anon_sym_like] = ACTIONS(803), + [anon_sym_not_DASHlike] = ACTIONS(803), + [anon_sym_bit_DASHand] = ACTIONS(803), + [anon_sym_bit_DASHxor] = ACTIONS(803), + [anon_sym_bit_DASHor] = ACTIONS(803), + [anon_sym_and] = ACTIONS(803), + [anon_sym_xor] = ACTIONS(803), + [anon_sym_or] = ACTIONS(803), + [anon_sym_in2] = ACTIONS(803), + [anon_sym_not_DASHin] = ACTIONS(803), + [anon_sym_has] = ACTIONS(803), + [anon_sym_not_DASHhas] = ACTIONS(803), + [anon_sym_starts_DASHwith] = ACTIONS(803), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(803), + [anon_sym_ends_DASHwith] = ACTIONS(803), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(803), + [anon_sym_EQ_EQ] = ACTIONS(803), + [anon_sym_BANG_EQ] = ACTIONS(803), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(803), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(803), + [aux_sym_cmd_identifier_token6] = ACTIONS(801), + [sym__newline] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_err_GT_PIPE] = ACTIONS(801), + [anon_sym_out_GT_PIPE] = ACTIONS(801), + [anon_sym_e_GT_PIPE] = ACTIONS(801), + [anon_sym_o_GT_PIPE] = ACTIONS(801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(801), + [anon_sym_GT2] = ACTIONS(801), + [anon_sym_DASH2] = ACTIONS(801), + [anon_sym_STAR2] = ACTIONS(801), + [anon_sym_and2] = ACTIONS(801), + [anon_sym_xor2] = ACTIONS(801), + [anon_sym_or2] = ACTIONS(801), + [anon_sym_not_DASHin2] = ACTIONS(801), + [anon_sym_has2] = ACTIONS(801), + [anon_sym_not_DASHhas2] = ACTIONS(801), + [anon_sym_starts_DASHwith2] = ACTIONS(801), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(801), + [anon_sym_ends_DASHwith2] = ACTIONS(801), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(801), + [anon_sym_EQ_EQ2] = ACTIONS(801), + [anon_sym_BANG_EQ2] = ACTIONS(801), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ2] = ACTIONS(801), + [anon_sym_GT_EQ2] = ACTIONS(801), + [anon_sym_EQ_TILDE2] = ACTIONS(801), + [anon_sym_BANG_TILDE2] = ACTIONS(801), + [anon_sym_like2] = ACTIONS(801), + [anon_sym_not_DASHlike2] = ACTIONS(801), + [anon_sym_STAR_STAR2] = ACTIONS(801), + [anon_sym_PLUS_PLUS2] = ACTIONS(801), + [anon_sym_SLASH2] = ACTIONS(801), + [anon_sym_mod2] = ACTIONS(801), + [anon_sym_SLASH_SLASH2] = ACTIONS(801), + [anon_sym_PLUS2] = ACTIONS(801), + [anon_sym_bit_DASHshl2] = ACTIONS(801), + [anon_sym_bit_DASHshr2] = ACTIONS(801), + [anon_sym_bit_DASHand2] = ACTIONS(801), + [anon_sym_bit_DASHxor2] = ACTIONS(801), + [anon_sym_bit_DASHor2] = ACTIONS(801), + [anon_sym_DOT_DOT2] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), + [anon_sym_DOT_DOT_LT2] = ACTIONS(803), + [sym_filesize_unit] = ACTIONS(801), + [sym_duration_unit] = ACTIONS(803), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [anon_sym_err_GT_GT] = ACTIONS(801), + [anon_sym_out_GT_GT] = ACTIONS(801), + [anon_sym_e_GT_GT] = ACTIONS(801), + [anon_sym_o_GT_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(801), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(190)] = { - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym_cmd_identifier] = STATE(2920), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(2995), - [sym_where_command] = STATE(3411), + [187] = { + [sym_assignment] = STATE(3339), + [sym__mutable_assignment_pattern] = STATE(3350), + [sym_cmd_identifier] = STATE(2877), + [sym__ctrl_expression] = STATE(3339), + [sym_ctrl_if] = STATE(3349), + [sym_ctrl_match] = STATE(3349), + [sym_ctrl_try] = STATE(3349), + [sym__stmt_let_shortcut] = STATE(3348), + [sym_pipe_element] = STATE(2972), + [sym_where_command] = STATE(3339), [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(525), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(176), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), - [sym_comment] = STATE(190), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(282), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(499), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(188), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3339), + [sym_comment] = STATE(187), + [aux_sym_pipeline_repeat1] = STATE(180), + [aux_sym_pipe_element_repeat2] = STATE(289), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(996), + [anon_sym_let] = ACTIONS(1000), [anon_sym_mut] = ACTIONS(275), [anon_sym_const] = ACTIONS(275), [aux_sym_cmd_identifier_token1] = ACTIONS(255), @@ -61968,7 +61604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1028), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(277), [anon_sym_catch] = ACTIONS(275), @@ -61991,10 +61627,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1012), - [aux_sym__val_number_decimal_token2] = ACTIONS(1014), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [aux_sym__val_number_decimal_token1] = ACTIONS(1022), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1026), + [aux_sym__val_number_decimal_token4] = ACTIONS(1026), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -62012,1448 +61648,1760 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(191)] = { - [sym_assignment] = STATE(3411), - [sym__mutable_assignment_pattern] = STATE(3412), - [sym_cmd_identifier] = STATE(2920), - [sym__ctrl_expression] = STATE(3411), - [sym_ctrl_if] = STATE(3414), - [sym_ctrl_match] = STATE(3414), - [sym_ctrl_try] = STATE(3414), - [sym__stmt_let_shortcut] = STATE(3415), - [sym_pipe_element] = STATE(3436), - [sym_where_command] = STATE(3411), - [sym__expression] = STATE(2301), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(525), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(176), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3411), + [188] = { + [sym_comment] = STATE(188), + [anon_sym_in] = ACTIONS(811), + [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(811), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_err_GT_PIPE] = ACTIONS(811), + [anon_sym_out_GT_PIPE] = ACTIONS(811), + [anon_sym_e_GT_PIPE] = ACTIONS(811), + [anon_sym_o_GT_PIPE] = ACTIONS(811), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(811), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(811), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(811), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(811), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(811), + [anon_sym_xor2] = ACTIONS(811), + [anon_sym_or2] = ACTIONS(811), + [anon_sym_not_DASHin2] = ACTIONS(811), + [anon_sym_has2] = ACTIONS(811), + [anon_sym_not_DASHhas2] = ACTIONS(811), + [anon_sym_starts_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(811), + [anon_sym_ends_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(811), + [anon_sym_EQ_EQ2] = ACTIONS(811), + [anon_sym_BANG_EQ2] = ACTIONS(811), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(811), + [anon_sym_GT_EQ2] = ACTIONS(811), + [anon_sym_EQ_TILDE2] = ACTIONS(811), + [anon_sym_BANG_TILDE2] = ACTIONS(811), + [anon_sym_like2] = ACTIONS(811), + [anon_sym_not_DASHlike2] = ACTIONS(811), + [anon_sym_STAR_STAR2] = ACTIONS(811), + [anon_sym_PLUS_PLUS2] = ACTIONS(811), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(811), + [anon_sym_SLASH_SLASH2] = ACTIONS(811), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(811), + [anon_sym_bit_DASHshr2] = ACTIONS(811), + [anon_sym_bit_DASHand2] = ACTIONS(811), + [anon_sym_bit_DASHxor2] = ACTIONS(811), + [anon_sym_bit_DASHor2] = ACTIONS(811), + [anon_sym_DOT_DOT2] = ACTIONS(819), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(821), + [anon_sym_DOT_DOT_LT2] = ACTIONS(821), + [sym_filesize_unit] = ACTIONS(1132), + [sym_duration_unit] = ACTIONS(1134), + [anon_sym_err_GT] = ACTIONS(811), + [anon_sym_out_GT] = ACTIONS(811), + [anon_sym_e_GT] = ACTIONS(811), + [anon_sym_o_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT] = ACTIONS(811), + [anon_sym_err_GT_GT] = ACTIONS(811), + [anon_sym_out_GT_GT] = ACTIONS(811), + [anon_sym_e_GT_GT] = ACTIONS(811), + [anon_sym_o_GT_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(811), + [anon_sym_POUND] = ACTIONS(105), + }, + [189] = { + [sym_assignment] = STATE(3423), + [sym__mutable_assignment_pattern] = STATE(3434), + [sym_cmd_identifier] = STATE(3036), + [sym__ctrl_expression] = STATE(3423), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3468), + [sym_pipe_element] = STATE(3262), + [sym_where_command] = STATE(3423), + [sym__expression] = STATE(2307), + [sym_expr_unary] = STATE(1343), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1343), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(979), + [sym_val_range] = STATE(1343), + [sym__value] = STATE(1343), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1338), + [sym_val_variable] = STATE(472), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3423), + [sym_comment] = STATE(189), + [aux_sym_pipeline_repeat1] = STATE(180), + [aux_sym_pipe_element_repeat2] = STATE(278), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(1014), + [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_PERCENT] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), + }, + [190] = { + [sym_assignment_parenthesized] = STATE(3504), + [sym__mutable_assignment_pattern_parenthesized] = STATE(3507), + [sym_cmd_identifier] = STATE(3000), + [sym__ctrl_expression_parenthesized] = STATE(3504), + [sym_ctrl_if_parenthesized] = STATE(3508), + [sym_ctrl_match] = STATE(3508), + [sym_ctrl_try_parenthesized] = STATE(3508), + [sym__stmt_let_shortcut] = STATE(3509), + [sym_pipe_element_parenthesized] = STATE(3553), + [sym_where_command_parenthesized] = STATE(3504), + [sym__expression_parenthesized] = STATE(2308), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(526), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(188), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3420), + [sym_comment] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [anon_sym_export] = ACTIONS(1136), + [anon_sym_alias] = ACTIONS(1139), + [anon_sym_let] = ACTIONS(1142), + [anon_sym_mut] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [aux_sym_cmd_identifier_token1] = ACTIONS(1145), + [anon_sym_def] = ACTIONS(1139), + [anon_sym_use] = ACTIONS(1139), + [anon_sym_export_DASHenv] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym_module] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_loop] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1148), + [anon_sym_else] = ACTIONS(1139), + [anon_sym_try] = ACTIONS(1151), + [anon_sym_catch] = ACTIONS(1139), + [anon_sym_finally] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1154), + [anon_sym_in] = ACTIONS(1136), + [anon_sym_true] = ACTIONS(1157), + [anon_sym_false] = ACTIONS(1157), + [anon_sym_null] = ACTIONS(1160), + [aux_sym_cmd_identifier_token3] = ACTIONS(1163), + [aux_sym_cmd_identifier_token4] = ACTIONS(1163), + [aux_sym_cmd_identifier_token5] = ACTIONS(1163), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1169), + [anon_sym_DOLLAR] = ACTIONS(1172), + [anon_sym_DASH2] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1178), + [anon_sym_DOT_DOT] = ACTIONS(1181), + [anon_sym_where] = ACTIONS(1184), + [aux_sym_expr_unary_token1] = ACTIONS(1187), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1190), + [anon_sym_DOT_DOT_LT] = ACTIONS(1190), + [aux_sym__val_number_decimal_token1] = ACTIONS(1193), + [aux_sym__val_number_decimal_token2] = ACTIONS(1196), + [aux_sym__val_number_decimal_token3] = ACTIONS(1199), + [aux_sym__val_number_decimal_token4] = ACTIONS(1199), + [aux_sym__val_number_token1] = ACTIONS(1202), + [aux_sym__val_number_token2] = ACTIONS(1202), + [aux_sym__val_number_token3] = ACTIONS(1202), + [anon_sym_0b] = ACTIONS(1205), + [anon_sym_0o] = ACTIONS(1208), + [anon_sym_0x] = ACTIONS(1208), + [sym_val_date] = ACTIONS(1211), + [anon_sym_DQUOTE] = ACTIONS(1214), + [anon_sym_SQUOTE] = ACTIONS(1217), + [anon_sym_BQUOTE] = ACTIONS(1220), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1223), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1226), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_PERCENT] = ACTIONS(1232), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1235), + }, + [191] = { [sym_comment] = STATE(191), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(282), - [anon_sym_export] = ACTIONS(1132), - [anon_sym_alias] = ACTIONS(1135), - [anon_sym_let] = ACTIONS(1138), - [anon_sym_mut] = ACTIONS(1135), - [anon_sym_const] = ACTIONS(1135), - [aux_sym_cmd_identifier_token1] = ACTIONS(1141), - [anon_sym_def] = ACTIONS(1135), - [anon_sym_use] = ACTIONS(1135), - [anon_sym_export_DASHenv] = ACTIONS(1135), - [anon_sym_extern] = ACTIONS(1135), - [anon_sym_module] = ACTIONS(1135), - [anon_sym_for] = ACTIONS(1135), - [anon_sym_loop] = ACTIONS(1135), - [anon_sym_while] = ACTIONS(1135), - [anon_sym_if] = ACTIONS(1144), - [anon_sym_else] = ACTIONS(1135), - [anon_sym_try] = ACTIONS(1147), - [anon_sym_catch] = ACTIONS(1135), - [anon_sym_finally] = ACTIONS(1135), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_in] = ACTIONS(1132), - [anon_sym_true] = ACTIONS(1153), - [anon_sym_false] = ACTIONS(1153), - [anon_sym_null] = ACTIONS(1156), - [aux_sym_cmd_identifier_token3] = ACTIONS(1159), - [aux_sym_cmd_identifier_token4] = ACTIONS(1159), - [aux_sym_cmd_identifier_token5] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_DOLLAR] = ACTIONS(1168), - [anon_sym_DASH2] = ACTIONS(1171), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_DOT_DOT] = ACTIONS(1177), - [anon_sym_where] = ACTIONS(1180), - [aux_sym_expr_unary_token1] = ACTIONS(1183), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1186), - [anon_sym_DOT_DOT_LT] = ACTIONS(1186), - [aux_sym__val_number_decimal_token1] = ACTIONS(1189), - [aux_sym__val_number_decimal_token2] = ACTIONS(1192), - [aux_sym__val_number_decimal_token3] = ACTIONS(1195), - [aux_sym__val_number_decimal_token4] = ACTIONS(1195), - [aux_sym__val_number_token1] = ACTIONS(1198), - [aux_sym__val_number_token2] = ACTIONS(1198), - [aux_sym__val_number_token3] = ACTIONS(1198), - [anon_sym_0b] = ACTIONS(1201), - [anon_sym_0o] = ACTIONS(1204), - [anon_sym_0x] = ACTIONS(1204), - [sym_val_date] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1213), - [anon_sym_BQUOTE] = ACTIONS(1216), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1219), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1222), - [anon_sym_CARET] = ACTIONS(1225), - [anon_sym_PERCENT] = ACTIONS(1228), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1231), - }, - [STATE(192)] = { + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(105), + }, + [192] = { [sym_comment] = STATE(192), - [anon_sym_in] = ACTIONS(1234), - [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(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(1234), - [anon_sym_DASH2] = ACTIONS(1234), - [anon_sym_RBRACE] = ACTIONS(1234), - [anon_sym_STAR2] = ACTIONS(1234), - [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(1234), - [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_STAR_STAR2] = ACTIONS(1234), - [anon_sym_PLUS_PLUS2] = ACTIONS(1234), - [anon_sym_SLASH2] = ACTIONS(1234), - [anon_sym_mod2] = ACTIONS(1234), - [anon_sym_SLASH_SLASH2] = ACTIONS(1234), - [anon_sym_PLUS2] = ACTIONS(1234), - [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(1234), - [anon_sym_out_GT] = ACTIONS(1234), - [anon_sym_e_GT] = ACTIONS(1234), - [anon_sym_o_GT] = ACTIONS(1234), - [anon_sym_err_PLUSout_GT] = ACTIONS(1234), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1234), - [anon_sym_o_PLUSe_GT] = ACTIONS(1234), - [anon_sym_e_PLUSo_GT] = ACTIONS(1234), - [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), + [anon_sym_in] = ACTIONS(1238), + [anon_sym_STAR_STAR] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_SLASH] = ACTIONS(1242), + [anon_sym_mod] = ACTIONS(1240), + [anon_sym_SLASH_SLASH] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_bit_DASHshl] = ACTIONS(1240), + [anon_sym_bit_DASHshr] = ACTIONS(1240), + [anon_sym_EQ_TILDE] = ACTIONS(1240), + [anon_sym_BANG_TILDE] = ACTIONS(1240), + [anon_sym_like] = ACTIONS(1240), + [anon_sym_not_DASHlike] = ACTIONS(1240), + [anon_sym_bit_DASHand] = ACTIONS(1240), + [anon_sym_bit_DASHxor] = ACTIONS(1240), + [anon_sym_bit_DASHor] = ACTIONS(1240), + [anon_sym_and] = ACTIONS(1240), + [anon_sym_xor] = ACTIONS(1240), + [anon_sym_or] = ACTIONS(1240), + [anon_sym_in2] = ACTIONS(1240), + [anon_sym_not_DASHin] = ACTIONS(1240), + [anon_sym_has] = ACTIONS(1240), + [anon_sym_not_DASHhas] = ACTIONS(1240), + [anon_sym_starts_DASHwith] = ACTIONS(1240), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1240), + [anon_sym_ends_DASHwith] = ACTIONS(1240), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1240), + [anon_sym_EQ_EQ] = ACTIONS(1240), + [anon_sym_BANG_EQ] = ACTIONS(1240), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_LT_EQ] = ACTIONS(1240), + [anon_sym_GT] = ACTIONS(1242), + [anon_sym_GT_EQ] = ACTIONS(1240), + [aux_sym_cmd_identifier_token6] = ACTIONS(1244), + [sym__newline] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1238), + [anon_sym_PIPE] = ACTIONS(1238), + [anon_sym_err_GT_PIPE] = ACTIONS(1238), + [anon_sym_out_GT_PIPE] = ACTIONS(1238), + [anon_sym_e_GT_PIPE] = ACTIONS(1238), + [anon_sym_o_GT_PIPE] = ACTIONS(1238), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1238), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1238), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1238), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1238), + [anon_sym_GT2] = ACTIONS(1238), + [anon_sym_DASH2] = ACTIONS(1238), + [anon_sym_RBRACE] = ACTIONS(1238), + [anon_sym_STAR2] = ACTIONS(1238), + [anon_sym_and2] = ACTIONS(1238), + [anon_sym_xor2] = ACTIONS(1238), + [anon_sym_or2] = ACTIONS(1238), + [anon_sym_not_DASHin2] = ACTIONS(1238), + [anon_sym_has2] = ACTIONS(1238), + [anon_sym_not_DASHhas2] = ACTIONS(1238), + [anon_sym_starts_DASHwith2] = ACTIONS(1238), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1238), + [anon_sym_ends_DASHwith2] = ACTIONS(1238), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1238), + [anon_sym_EQ_EQ2] = ACTIONS(1238), + [anon_sym_BANG_EQ2] = ACTIONS(1238), + [anon_sym_LT2] = ACTIONS(1238), + [anon_sym_LT_EQ2] = ACTIONS(1238), + [anon_sym_GT_EQ2] = ACTIONS(1238), + [anon_sym_EQ_TILDE2] = ACTIONS(1238), + [anon_sym_BANG_TILDE2] = ACTIONS(1238), + [anon_sym_like2] = ACTIONS(1238), + [anon_sym_not_DASHlike2] = ACTIONS(1238), + [anon_sym_STAR_STAR2] = ACTIONS(1238), + [anon_sym_PLUS_PLUS2] = ACTIONS(1238), + [anon_sym_SLASH2] = ACTIONS(1238), + [anon_sym_mod2] = ACTIONS(1238), + [anon_sym_SLASH_SLASH2] = ACTIONS(1238), + [anon_sym_PLUS2] = ACTIONS(1238), + [anon_sym_bit_DASHshl2] = ACTIONS(1238), + [anon_sym_bit_DASHshr2] = ACTIONS(1238), + [anon_sym_bit_DASHand2] = ACTIONS(1238), + [anon_sym_bit_DASHxor2] = ACTIONS(1238), + [anon_sym_bit_DASHor2] = ACTIONS(1238), + [anon_sym_err_GT] = ACTIONS(1238), + [anon_sym_out_GT] = ACTIONS(1238), + [anon_sym_e_GT] = ACTIONS(1238), + [anon_sym_o_GT] = ACTIONS(1238), + [anon_sym_err_PLUSout_GT] = ACTIONS(1238), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1238), + [anon_sym_o_PLUSe_GT] = ACTIONS(1238), + [anon_sym_e_PLUSo_GT] = ACTIONS(1238), + [anon_sym_err_GT_GT] = ACTIONS(1238), + [anon_sym_out_GT_GT] = ACTIONS(1238), + [anon_sym_e_GT_GT] = ACTIONS(1238), + [anon_sym_o_GT_GT] = ACTIONS(1238), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1238), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1238), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1238), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1238), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(193)] = { + [193] = { [sym_comment] = STATE(193), - [anon_sym_in] = ACTIONS(1242), - [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(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_err_GT_PIPE] = ACTIONS(1242), - [anon_sym_out_GT_PIPE] = ACTIONS(1242), - [anon_sym_e_GT_PIPE] = ACTIONS(1242), - [anon_sym_o_GT_PIPE] = ACTIONS(1242), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1242), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1242), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1242), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1242), - [anon_sym_GT2] = ACTIONS(1242), - [anon_sym_DASH2] = ACTIONS(1242), - [anon_sym_RBRACE] = ACTIONS(1242), - [anon_sym_STAR2] = ACTIONS(1242), - [anon_sym_and2] = ACTIONS(1242), - [anon_sym_xor2] = ACTIONS(1242), - [anon_sym_or2] = ACTIONS(1242), - [anon_sym_not_DASHin2] = ACTIONS(1242), - [anon_sym_has2] = ACTIONS(1242), - [anon_sym_not_DASHhas2] = ACTIONS(1242), - [anon_sym_starts_DASHwith2] = ACTIONS(1242), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1242), - [anon_sym_ends_DASHwith2] = ACTIONS(1242), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1242), - [anon_sym_EQ_EQ2] = ACTIONS(1242), - [anon_sym_BANG_EQ2] = ACTIONS(1242), - [anon_sym_LT2] = ACTIONS(1242), - [anon_sym_LT_EQ2] = ACTIONS(1242), - [anon_sym_GT_EQ2] = ACTIONS(1242), - [anon_sym_EQ_TILDE2] = ACTIONS(1242), - [anon_sym_BANG_TILDE2] = ACTIONS(1242), - [anon_sym_like2] = ACTIONS(1242), - [anon_sym_not_DASHlike2] = ACTIONS(1242), - [anon_sym_STAR_STAR2] = ACTIONS(1242), - [anon_sym_PLUS_PLUS2] = ACTIONS(1242), - [anon_sym_SLASH2] = ACTIONS(1242), - [anon_sym_mod2] = ACTIONS(1242), - [anon_sym_SLASH_SLASH2] = ACTIONS(1242), - [anon_sym_PLUS2] = ACTIONS(1242), - [anon_sym_bit_DASHshl2] = ACTIONS(1242), - [anon_sym_bit_DASHshr2] = ACTIONS(1242), - [anon_sym_bit_DASHand2] = ACTIONS(1242), - [anon_sym_bit_DASHxor2] = ACTIONS(1242), - [anon_sym_bit_DASHor2] = ACTIONS(1242), - [anon_sym_err_GT] = ACTIONS(1242), - [anon_sym_out_GT] = ACTIONS(1242), - [anon_sym_e_GT] = ACTIONS(1242), - [anon_sym_o_GT] = ACTIONS(1242), - [anon_sym_err_PLUSout_GT] = ACTIONS(1242), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1242), - [anon_sym_o_PLUSe_GT] = ACTIONS(1242), - [anon_sym_e_PLUSo_GT] = ACTIONS(1242), - [anon_sym_err_GT_GT] = ACTIONS(1242), - [anon_sym_out_GT_GT] = ACTIONS(1242), - [anon_sym_e_GT_GT] = ACTIONS(1242), - [anon_sym_o_GT_GT] = ACTIONS(1242), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1242), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1242), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1242), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1242), + [anon_sym_in] = ACTIONS(1246), + [anon_sym_STAR_STAR] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_SLASH] = ACTIONS(1242), + [anon_sym_mod] = ACTIONS(1240), + [anon_sym_SLASH_SLASH] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_bit_DASHshl] = ACTIONS(1240), + [anon_sym_bit_DASHshr] = ACTIONS(1240), + [anon_sym_EQ_TILDE] = ACTIONS(1240), + [anon_sym_BANG_TILDE] = ACTIONS(1240), + [anon_sym_like] = ACTIONS(1240), + [anon_sym_not_DASHlike] = ACTIONS(1240), + [anon_sym_bit_DASHand] = ACTIONS(1240), + [anon_sym_bit_DASHxor] = ACTIONS(1240), + [anon_sym_bit_DASHor] = ACTIONS(1240), + [anon_sym_and] = ACTIONS(1240), + [anon_sym_xor] = ACTIONS(1240), + [anon_sym_or] = ACTIONS(1240), + [anon_sym_in2] = ACTIONS(1240), + [anon_sym_not_DASHin] = ACTIONS(1240), + [anon_sym_has] = ACTIONS(1240), + [anon_sym_not_DASHhas] = ACTIONS(1240), + [anon_sym_starts_DASHwith] = ACTIONS(1240), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1240), + [anon_sym_ends_DASHwith] = ACTIONS(1240), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1240), + [anon_sym_EQ_EQ] = ACTIONS(1240), + [anon_sym_BANG_EQ] = ACTIONS(1240), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_LT_EQ] = ACTIONS(1240), + [anon_sym_GT] = ACTIONS(1242), + [anon_sym_GT_EQ] = ACTIONS(1240), + [aux_sym_cmd_identifier_token6] = ACTIONS(1244), + [sym__newline] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_PIPE] = ACTIONS(1246), + [anon_sym_err_GT_PIPE] = ACTIONS(1246), + [anon_sym_out_GT_PIPE] = ACTIONS(1246), + [anon_sym_e_GT_PIPE] = ACTIONS(1246), + [anon_sym_o_GT_PIPE] = ACTIONS(1246), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1246), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1246), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1246), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1246), + [anon_sym_GT2] = ACTIONS(1246), + [anon_sym_DASH2] = ACTIONS(1246), + [anon_sym_RBRACE] = ACTIONS(1246), + [anon_sym_STAR2] = ACTIONS(1246), + [anon_sym_and2] = ACTIONS(1246), + [anon_sym_xor2] = ACTIONS(1246), + [anon_sym_or2] = ACTIONS(1246), + [anon_sym_not_DASHin2] = ACTIONS(1246), + [anon_sym_has2] = ACTIONS(1246), + [anon_sym_not_DASHhas2] = ACTIONS(1246), + [anon_sym_starts_DASHwith2] = ACTIONS(1246), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1246), + [anon_sym_ends_DASHwith2] = ACTIONS(1246), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1246), + [anon_sym_EQ_EQ2] = ACTIONS(1246), + [anon_sym_BANG_EQ2] = ACTIONS(1246), + [anon_sym_LT2] = ACTIONS(1246), + [anon_sym_LT_EQ2] = ACTIONS(1246), + [anon_sym_GT_EQ2] = ACTIONS(1246), + [anon_sym_EQ_TILDE2] = ACTIONS(1246), + [anon_sym_BANG_TILDE2] = ACTIONS(1246), + [anon_sym_like2] = ACTIONS(1246), + [anon_sym_not_DASHlike2] = ACTIONS(1246), + [anon_sym_STAR_STAR2] = ACTIONS(1246), + [anon_sym_PLUS_PLUS2] = ACTIONS(1246), + [anon_sym_SLASH2] = ACTIONS(1246), + [anon_sym_mod2] = ACTIONS(1246), + [anon_sym_SLASH_SLASH2] = ACTIONS(1246), + [anon_sym_PLUS2] = ACTIONS(1246), + [anon_sym_bit_DASHshl2] = ACTIONS(1246), + [anon_sym_bit_DASHshr2] = ACTIONS(1246), + [anon_sym_bit_DASHand2] = ACTIONS(1246), + [anon_sym_bit_DASHxor2] = ACTIONS(1246), + [anon_sym_bit_DASHor2] = ACTIONS(1246), + [anon_sym_err_GT] = ACTIONS(1246), + [anon_sym_out_GT] = ACTIONS(1246), + [anon_sym_e_GT] = ACTIONS(1246), + [anon_sym_o_GT] = ACTIONS(1246), + [anon_sym_err_PLUSout_GT] = ACTIONS(1246), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1246), + [anon_sym_o_PLUSe_GT] = ACTIONS(1246), + [anon_sym_e_PLUSo_GT] = ACTIONS(1246), + [anon_sym_err_GT_GT] = ACTIONS(1246), + [anon_sym_out_GT_GT] = ACTIONS(1246), + [anon_sym_e_GT_GT] = ACTIONS(1246), + [anon_sym_o_GT_GT] = ACTIONS(1246), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1246), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1246), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1246), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1246), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(194)] = { + [194] = { [sym_comment] = STATE(194), - [anon_sym_in] = ACTIONS(1234), - [anon_sym_STAR_STAR] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_SLASH] = ACTIONS(1246), - [anon_sym_mod] = ACTIONS(1244), - [anon_sym_SLASH_SLASH] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_bit_DASHshl] = ACTIONS(1244), - [anon_sym_bit_DASHshr] = ACTIONS(1244), - [anon_sym_EQ_TILDE] = ACTIONS(1244), - [anon_sym_BANG_TILDE] = ACTIONS(1244), - [anon_sym_like] = ACTIONS(1244), - [anon_sym_not_DASHlike] = ACTIONS(1244), - [anon_sym_bit_DASHand] = ACTIONS(1244), - [anon_sym_bit_DASHxor] = ACTIONS(1244), - [anon_sym_bit_DASHor] = ACTIONS(1244), - [anon_sym_and] = ACTIONS(1244), - [anon_sym_xor] = ACTIONS(1244), - [anon_sym_or] = ACTIONS(1244), - [anon_sym_in2] = ACTIONS(1244), - [anon_sym_not_DASHin] = ACTIONS(1244), - [anon_sym_has] = ACTIONS(1244), - [anon_sym_not_DASHhas] = ACTIONS(1244), - [anon_sym_starts_DASHwith] = ACTIONS(1244), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1244), - [anon_sym_ends_DASHwith] = ACTIONS(1244), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1244), - [anon_sym_EQ_EQ] = ACTIONS(1244), - [anon_sym_BANG_EQ] = ACTIONS(1244), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_LT_EQ] = ACTIONS(1244), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_GT_EQ] = ACTIONS(1244), - [aux_sym_cmd_identifier_token6] = ACTIONS(1248), - [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(1234), - [anon_sym_DASH2] = ACTIONS(1234), - [anon_sym_RBRACE] = ACTIONS(1234), - [anon_sym_STAR2] = ACTIONS(1234), - [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(1234), - [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_STAR_STAR2] = ACTIONS(1234), - [anon_sym_PLUS_PLUS2] = ACTIONS(1234), - [anon_sym_SLASH2] = ACTIONS(1234), - [anon_sym_mod2] = ACTIONS(1234), - [anon_sym_SLASH_SLASH2] = ACTIONS(1234), - [anon_sym_PLUS2] = ACTIONS(1234), - [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(1234), - [anon_sym_out_GT] = ACTIONS(1234), - [anon_sym_e_GT] = ACTIONS(1234), - [anon_sym_o_GT] = ACTIONS(1234), - [anon_sym_err_PLUSout_GT] = ACTIONS(1234), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1234), - [anon_sym_o_PLUSe_GT] = ACTIONS(1234), - [anon_sym_e_PLUSo_GT] = ACTIONS(1234), - [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), + [anon_sym_in] = ACTIONS(1246), + [anon_sym_STAR_STAR] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_SLASH] = ACTIONS(1250), + [anon_sym_mod] = ACTIONS(1248), + [anon_sym_SLASH_SLASH] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_bit_DASHshl] = ACTIONS(1248), + [anon_sym_bit_DASHshr] = ACTIONS(1248), + [anon_sym_EQ_TILDE] = ACTIONS(1248), + [anon_sym_BANG_TILDE] = ACTIONS(1248), + [anon_sym_like] = ACTIONS(1248), + [anon_sym_not_DASHlike] = ACTIONS(1248), + [anon_sym_bit_DASHand] = ACTIONS(1248), + [anon_sym_bit_DASHxor] = ACTIONS(1248), + [anon_sym_bit_DASHor] = ACTIONS(1248), + [anon_sym_and] = ACTIONS(1248), + [anon_sym_xor] = ACTIONS(1248), + [anon_sym_or] = ACTIONS(1248), + [anon_sym_in2] = ACTIONS(1248), + [anon_sym_not_DASHin] = ACTIONS(1248), + [anon_sym_has] = ACTIONS(1248), + [anon_sym_not_DASHhas] = ACTIONS(1248), + [anon_sym_starts_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1248), + [anon_sym_ends_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1248), + [anon_sym_EQ_EQ] = ACTIONS(1248), + [anon_sym_BANG_EQ] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_LT_EQ] = ACTIONS(1248), + [anon_sym_GT] = ACTIONS(1250), + [anon_sym_GT_EQ] = ACTIONS(1248), + [aux_sym_cmd_identifier_token6] = ACTIONS(1252), + [sym__newline] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_PIPE] = ACTIONS(1246), + [anon_sym_err_GT_PIPE] = ACTIONS(1246), + [anon_sym_out_GT_PIPE] = ACTIONS(1246), + [anon_sym_e_GT_PIPE] = ACTIONS(1246), + [anon_sym_o_GT_PIPE] = ACTIONS(1246), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1246), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1246), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1246), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1246), + [anon_sym_GT2] = ACTIONS(1246), + [anon_sym_DASH2] = ACTIONS(1246), + [anon_sym_RBRACE] = ACTIONS(1246), + [anon_sym_STAR2] = ACTIONS(1246), + [anon_sym_and2] = ACTIONS(1246), + [anon_sym_xor2] = ACTIONS(1246), + [anon_sym_or2] = ACTIONS(1246), + [anon_sym_not_DASHin2] = ACTIONS(1246), + [anon_sym_has2] = ACTIONS(1246), + [anon_sym_not_DASHhas2] = ACTIONS(1246), + [anon_sym_starts_DASHwith2] = ACTIONS(1246), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1246), + [anon_sym_ends_DASHwith2] = ACTIONS(1246), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1246), + [anon_sym_EQ_EQ2] = ACTIONS(1246), + [anon_sym_BANG_EQ2] = ACTIONS(1246), + [anon_sym_LT2] = ACTIONS(1246), + [anon_sym_LT_EQ2] = ACTIONS(1246), + [anon_sym_GT_EQ2] = ACTIONS(1246), + [anon_sym_EQ_TILDE2] = ACTIONS(1246), + [anon_sym_BANG_TILDE2] = ACTIONS(1246), + [anon_sym_like2] = ACTIONS(1246), + [anon_sym_not_DASHlike2] = ACTIONS(1246), + [anon_sym_STAR_STAR2] = ACTIONS(1246), + [anon_sym_PLUS_PLUS2] = ACTIONS(1246), + [anon_sym_SLASH2] = ACTIONS(1246), + [anon_sym_mod2] = ACTIONS(1246), + [anon_sym_SLASH_SLASH2] = ACTIONS(1246), + [anon_sym_PLUS2] = ACTIONS(1246), + [anon_sym_bit_DASHshl2] = ACTIONS(1246), + [anon_sym_bit_DASHshr2] = ACTIONS(1246), + [anon_sym_bit_DASHand2] = ACTIONS(1246), + [anon_sym_bit_DASHxor2] = ACTIONS(1246), + [anon_sym_bit_DASHor2] = ACTIONS(1246), + [anon_sym_err_GT] = ACTIONS(1246), + [anon_sym_out_GT] = ACTIONS(1246), + [anon_sym_e_GT] = ACTIONS(1246), + [anon_sym_o_GT] = ACTIONS(1246), + [anon_sym_err_PLUSout_GT] = ACTIONS(1246), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1246), + [anon_sym_o_PLUSe_GT] = ACTIONS(1246), + [anon_sym_e_PLUSo_GT] = ACTIONS(1246), + [anon_sym_err_GT_GT] = ACTIONS(1246), + [anon_sym_out_GT_GT] = ACTIONS(1246), + [anon_sym_e_GT_GT] = ACTIONS(1246), + [anon_sym_o_GT_GT] = ACTIONS(1246), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1246), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1246), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1246), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1246), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(195)] = { + [195] = { [sym_comment] = STATE(195), - [anon_sym_in] = ACTIONS(1242), - [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(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_err_GT_PIPE] = ACTIONS(1242), - [anon_sym_out_GT_PIPE] = ACTIONS(1242), - [anon_sym_e_GT_PIPE] = ACTIONS(1242), - [anon_sym_o_GT_PIPE] = ACTIONS(1242), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1242), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1242), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1242), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1242), - [anon_sym_RPAREN] = ACTIONS(1242), - [anon_sym_GT2] = ACTIONS(1242), - [anon_sym_DASH2] = ACTIONS(1242), - [anon_sym_STAR2] = ACTIONS(1242), - [anon_sym_and2] = ACTIONS(1242), - [anon_sym_xor2] = ACTIONS(1242), - [anon_sym_or2] = ACTIONS(1242), - [anon_sym_not_DASHin2] = ACTIONS(1242), - [anon_sym_has2] = ACTIONS(1242), - [anon_sym_not_DASHhas2] = ACTIONS(1242), - [anon_sym_starts_DASHwith2] = ACTIONS(1242), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1242), - [anon_sym_ends_DASHwith2] = ACTIONS(1242), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1242), - [anon_sym_EQ_EQ2] = ACTIONS(1242), - [anon_sym_BANG_EQ2] = ACTIONS(1242), - [anon_sym_LT2] = ACTIONS(1242), - [anon_sym_LT_EQ2] = ACTIONS(1242), - [anon_sym_GT_EQ2] = ACTIONS(1242), - [anon_sym_EQ_TILDE2] = ACTIONS(1242), - [anon_sym_BANG_TILDE2] = ACTIONS(1242), - [anon_sym_like2] = ACTIONS(1242), - [anon_sym_not_DASHlike2] = ACTIONS(1242), - [anon_sym_STAR_STAR2] = ACTIONS(1242), - [anon_sym_PLUS_PLUS2] = ACTIONS(1242), - [anon_sym_SLASH2] = ACTIONS(1242), - [anon_sym_mod2] = ACTIONS(1242), - [anon_sym_SLASH_SLASH2] = ACTIONS(1242), - [anon_sym_PLUS2] = ACTIONS(1242), - [anon_sym_bit_DASHshl2] = ACTIONS(1242), - [anon_sym_bit_DASHshr2] = ACTIONS(1242), - [anon_sym_bit_DASHand2] = ACTIONS(1242), - [anon_sym_bit_DASHxor2] = ACTIONS(1242), - [anon_sym_bit_DASHor2] = ACTIONS(1242), - [anon_sym_err_GT] = ACTIONS(1242), - [anon_sym_out_GT] = ACTIONS(1242), - [anon_sym_e_GT] = ACTIONS(1242), - [anon_sym_o_GT] = ACTIONS(1242), - [anon_sym_err_PLUSout_GT] = ACTIONS(1242), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1242), - [anon_sym_o_PLUSe_GT] = ACTIONS(1242), - [anon_sym_e_PLUSo_GT] = ACTIONS(1242), - [anon_sym_err_GT_GT] = ACTIONS(1242), - [anon_sym_out_GT_GT] = ACTIONS(1242), - [anon_sym_e_GT_GT] = ACTIONS(1242), - [anon_sym_o_GT_GT] = ACTIONS(1242), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1242), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1242), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1242), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1242), + [ts_builtin_sym_end] = ACTIONS(1254), + [anon_sym_in] = ACTIONS(1238), + [anon_sym_STAR_STAR] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_SLASH] = ACTIONS(1258), + [anon_sym_mod] = ACTIONS(1256), + [anon_sym_SLASH_SLASH] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_bit_DASHshl] = ACTIONS(1256), + [anon_sym_bit_DASHshr] = ACTIONS(1256), + [anon_sym_EQ_TILDE] = ACTIONS(1256), + [anon_sym_BANG_TILDE] = ACTIONS(1256), + [anon_sym_like] = ACTIONS(1256), + [anon_sym_not_DASHlike] = ACTIONS(1256), + [anon_sym_bit_DASHand] = ACTIONS(1256), + [anon_sym_bit_DASHxor] = ACTIONS(1256), + [anon_sym_bit_DASHor] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_in2] = ACTIONS(1256), + [anon_sym_not_DASHin] = ACTIONS(1256), + [anon_sym_has] = ACTIONS(1256), + [anon_sym_not_DASHhas] = ACTIONS(1256), + [anon_sym_starts_DASHwith] = ACTIONS(1256), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1256), + [anon_sym_ends_DASHwith] = ACTIONS(1256), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1256), + [anon_sym_BANG_EQ] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1258), + [anon_sym_LT_EQ] = ACTIONS(1256), + [anon_sym_GT] = ACTIONS(1258), + [anon_sym_GT_EQ] = ACTIONS(1256), + [aux_sym_cmd_identifier_token6] = ACTIONS(1260), + [sym__newline] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1238), + [anon_sym_PIPE] = ACTIONS(1238), + [anon_sym_err_GT_PIPE] = ACTIONS(1238), + [anon_sym_out_GT_PIPE] = ACTIONS(1238), + [anon_sym_e_GT_PIPE] = ACTIONS(1238), + [anon_sym_o_GT_PIPE] = ACTIONS(1238), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1238), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1238), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1238), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1238), + [anon_sym_GT2] = ACTIONS(1238), + [anon_sym_DASH2] = ACTIONS(1238), + [anon_sym_STAR2] = ACTIONS(1238), + [anon_sym_and2] = ACTIONS(1238), + [anon_sym_xor2] = ACTIONS(1238), + [anon_sym_or2] = ACTIONS(1238), + [anon_sym_not_DASHin2] = ACTIONS(1238), + [anon_sym_has2] = ACTIONS(1238), + [anon_sym_not_DASHhas2] = ACTIONS(1238), + [anon_sym_starts_DASHwith2] = ACTIONS(1238), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1238), + [anon_sym_ends_DASHwith2] = ACTIONS(1238), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1238), + [anon_sym_EQ_EQ2] = ACTIONS(1238), + [anon_sym_BANG_EQ2] = ACTIONS(1238), + [anon_sym_LT2] = ACTIONS(1238), + [anon_sym_LT_EQ2] = ACTIONS(1238), + [anon_sym_GT_EQ2] = ACTIONS(1238), + [anon_sym_EQ_TILDE2] = ACTIONS(1238), + [anon_sym_BANG_TILDE2] = ACTIONS(1238), + [anon_sym_like2] = ACTIONS(1238), + [anon_sym_not_DASHlike2] = ACTIONS(1238), + [anon_sym_STAR_STAR2] = ACTIONS(1238), + [anon_sym_PLUS_PLUS2] = ACTIONS(1238), + [anon_sym_SLASH2] = ACTIONS(1238), + [anon_sym_mod2] = ACTIONS(1238), + [anon_sym_SLASH_SLASH2] = ACTIONS(1238), + [anon_sym_PLUS2] = ACTIONS(1238), + [anon_sym_bit_DASHshl2] = ACTIONS(1238), + [anon_sym_bit_DASHshr2] = ACTIONS(1238), + [anon_sym_bit_DASHand2] = ACTIONS(1238), + [anon_sym_bit_DASHxor2] = ACTIONS(1238), + [anon_sym_bit_DASHor2] = ACTIONS(1238), + [anon_sym_err_GT] = ACTIONS(1238), + [anon_sym_out_GT] = ACTIONS(1238), + [anon_sym_e_GT] = ACTIONS(1238), + [anon_sym_o_GT] = ACTIONS(1238), + [anon_sym_err_PLUSout_GT] = ACTIONS(1238), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1238), + [anon_sym_o_PLUSe_GT] = ACTIONS(1238), + [anon_sym_e_PLUSo_GT] = ACTIONS(1238), + [anon_sym_err_GT_GT] = ACTIONS(1238), + [anon_sym_out_GT_GT] = ACTIONS(1238), + [anon_sym_e_GT_GT] = ACTIONS(1238), + [anon_sym_o_GT_GT] = ACTIONS(1238), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1238), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1238), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1238), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1238), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(196)] = { + [196] = { [sym_comment] = STATE(196), - [anon_sym_in] = ACTIONS(1234), - [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(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_RPAREN] = ACTIONS(1234), - [anon_sym_GT2] = ACTIONS(1234), - [anon_sym_DASH2] = ACTIONS(1234), - [anon_sym_STAR2] = ACTIONS(1234), - [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(1234), - [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_STAR_STAR2] = ACTIONS(1234), - [anon_sym_PLUS_PLUS2] = ACTIONS(1234), - [anon_sym_SLASH2] = ACTIONS(1234), - [anon_sym_mod2] = ACTIONS(1234), - [anon_sym_SLASH_SLASH2] = ACTIONS(1234), - [anon_sym_PLUS2] = ACTIONS(1234), - [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(1234), - [anon_sym_out_GT] = ACTIONS(1234), - [anon_sym_e_GT] = ACTIONS(1234), - [anon_sym_o_GT] = ACTIONS(1234), - [anon_sym_err_PLUSout_GT] = ACTIONS(1234), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1234), - [anon_sym_o_PLUSe_GT] = ACTIONS(1234), - [anon_sym_e_PLUSo_GT] = ACTIONS(1234), - [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), + [ts_builtin_sym_end] = ACTIONS(1262), + [anon_sym_in] = ACTIONS(1246), + [anon_sym_STAR_STAR] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_SLASH] = ACTIONS(1258), + [anon_sym_mod] = ACTIONS(1256), + [anon_sym_SLASH_SLASH] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_bit_DASHshl] = ACTIONS(1256), + [anon_sym_bit_DASHshr] = ACTIONS(1256), + [anon_sym_EQ_TILDE] = ACTIONS(1256), + [anon_sym_BANG_TILDE] = ACTIONS(1256), + [anon_sym_like] = ACTIONS(1256), + [anon_sym_not_DASHlike] = ACTIONS(1256), + [anon_sym_bit_DASHand] = ACTIONS(1256), + [anon_sym_bit_DASHxor] = ACTIONS(1256), + [anon_sym_bit_DASHor] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_in2] = ACTIONS(1256), + [anon_sym_not_DASHin] = ACTIONS(1256), + [anon_sym_has] = ACTIONS(1256), + [anon_sym_not_DASHhas] = ACTIONS(1256), + [anon_sym_starts_DASHwith] = ACTIONS(1256), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1256), + [anon_sym_ends_DASHwith] = ACTIONS(1256), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1256), + [anon_sym_BANG_EQ] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1258), + [anon_sym_LT_EQ] = ACTIONS(1256), + [anon_sym_GT] = ACTIONS(1258), + [anon_sym_GT_EQ] = ACTIONS(1256), + [aux_sym_cmd_identifier_token6] = ACTIONS(1260), + [sym__newline] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_PIPE] = ACTIONS(1246), + [anon_sym_err_GT_PIPE] = ACTIONS(1246), + [anon_sym_out_GT_PIPE] = ACTIONS(1246), + [anon_sym_e_GT_PIPE] = ACTIONS(1246), + [anon_sym_o_GT_PIPE] = ACTIONS(1246), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1246), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1246), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1246), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1246), + [anon_sym_GT2] = ACTIONS(1246), + [anon_sym_DASH2] = ACTIONS(1246), + [anon_sym_STAR2] = ACTIONS(1246), + [anon_sym_and2] = ACTIONS(1246), + [anon_sym_xor2] = ACTIONS(1246), + [anon_sym_or2] = ACTIONS(1246), + [anon_sym_not_DASHin2] = ACTIONS(1246), + [anon_sym_has2] = ACTIONS(1246), + [anon_sym_not_DASHhas2] = ACTIONS(1246), + [anon_sym_starts_DASHwith2] = ACTIONS(1246), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1246), + [anon_sym_ends_DASHwith2] = ACTIONS(1246), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1246), + [anon_sym_EQ_EQ2] = ACTIONS(1246), + [anon_sym_BANG_EQ2] = ACTIONS(1246), + [anon_sym_LT2] = ACTIONS(1246), + [anon_sym_LT_EQ2] = ACTIONS(1246), + [anon_sym_GT_EQ2] = ACTIONS(1246), + [anon_sym_EQ_TILDE2] = ACTIONS(1246), + [anon_sym_BANG_TILDE2] = ACTIONS(1246), + [anon_sym_like2] = ACTIONS(1246), + [anon_sym_not_DASHlike2] = ACTIONS(1246), + [anon_sym_STAR_STAR2] = ACTIONS(1246), + [anon_sym_PLUS_PLUS2] = ACTIONS(1246), + [anon_sym_SLASH2] = ACTIONS(1246), + [anon_sym_mod2] = ACTIONS(1246), + [anon_sym_SLASH_SLASH2] = ACTIONS(1246), + [anon_sym_PLUS2] = ACTIONS(1246), + [anon_sym_bit_DASHshl2] = ACTIONS(1246), + [anon_sym_bit_DASHshr2] = ACTIONS(1246), + [anon_sym_bit_DASHand2] = ACTIONS(1246), + [anon_sym_bit_DASHxor2] = ACTIONS(1246), + [anon_sym_bit_DASHor2] = ACTIONS(1246), + [anon_sym_err_GT] = ACTIONS(1246), + [anon_sym_out_GT] = ACTIONS(1246), + [anon_sym_e_GT] = ACTIONS(1246), + [anon_sym_o_GT] = ACTIONS(1246), + [anon_sym_err_PLUSout_GT] = ACTIONS(1246), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1246), + [anon_sym_o_PLUSe_GT] = ACTIONS(1246), + [anon_sym_e_PLUSo_GT] = ACTIONS(1246), + [anon_sym_err_GT_GT] = ACTIONS(1246), + [anon_sym_out_GT_GT] = ACTIONS(1246), + [anon_sym_e_GT_GT] = ACTIONS(1246), + [anon_sym_o_GT_GT] = ACTIONS(1246), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1246), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1246), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1246), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1246), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(197)] = { + [197] = { [sym_comment] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(1250), - [anon_sym_in] = ACTIONS(1234), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_SLASH] = ACTIONS(1254), - [anon_sym_mod] = ACTIONS(1252), - [anon_sym_SLASH_SLASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_bit_DASHshl] = ACTIONS(1252), - [anon_sym_bit_DASHshr] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_BANG_TILDE] = ACTIONS(1252), - [anon_sym_like] = ACTIONS(1252), - [anon_sym_not_DASHlike] = ACTIONS(1252), - [anon_sym_bit_DASHand] = ACTIONS(1252), - [anon_sym_bit_DASHxor] = ACTIONS(1252), - [anon_sym_bit_DASHor] = ACTIONS(1252), - [anon_sym_and] = ACTIONS(1252), - [anon_sym_xor] = ACTIONS(1252), - [anon_sym_or] = ACTIONS(1252), - [anon_sym_in2] = ACTIONS(1252), - [anon_sym_not_DASHin] = ACTIONS(1252), - [anon_sym_has] = ACTIONS(1252), - [anon_sym_not_DASHhas] = ACTIONS(1252), - [anon_sym_starts_DASHwith] = ACTIONS(1252), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1252), - [anon_sym_ends_DASHwith] = ACTIONS(1252), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1254), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1252), - [aux_sym_cmd_identifier_token6] = ACTIONS(1256), - [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(1234), - [anon_sym_DASH2] = ACTIONS(1234), - [anon_sym_STAR2] = ACTIONS(1234), - [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(1234), - [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_STAR_STAR2] = ACTIONS(1234), - [anon_sym_PLUS_PLUS2] = ACTIONS(1234), - [anon_sym_SLASH2] = ACTIONS(1234), - [anon_sym_mod2] = ACTIONS(1234), - [anon_sym_SLASH_SLASH2] = ACTIONS(1234), - [anon_sym_PLUS2] = ACTIONS(1234), - [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(1234), - [anon_sym_out_GT] = ACTIONS(1234), - [anon_sym_e_GT] = ACTIONS(1234), - [anon_sym_o_GT] = ACTIONS(1234), - [anon_sym_err_PLUSout_GT] = ACTIONS(1234), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1234), - [anon_sym_o_PLUSe_GT] = ACTIONS(1234), - [anon_sym_e_PLUSo_GT] = ACTIONS(1234), - [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), + [anon_sym_in] = ACTIONS(1238), + [anon_sym_STAR_STAR] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_SLASH] = ACTIONS(1250), + [anon_sym_mod] = ACTIONS(1248), + [anon_sym_SLASH_SLASH] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_bit_DASHshl] = ACTIONS(1248), + [anon_sym_bit_DASHshr] = ACTIONS(1248), + [anon_sym_EQ_TILDE] = ACTIONS(1248), + [anon_sym_BANG_TILDE] = ACTIONS(1248), + [anon_sym_like] = ACTIONS(1248), + [anon_sym_not_DASHlike] = ACTIONS(1248), + [anon_sym_bit_DASHand] = ACTIONS(1248), + [anon_sym_bit_DASHxor] = ACTIONS(1248), + [anon_sym_bit_DASHor] = ACTIONS(1248), + [anon_sym_and] = ACTIONS(1248), + [anon_sym_xor] = ACTIONS(1248), + [anon_sym_or] = ACTIONS(1248), + [anon_sym_in2] = ACTIONS(1248), + [anon_sym_not_DASHin] = ACTIONS(1248), + [anon_sym_has] = ACTIONS(1248), + [anon_sym_not_DASHhas] = ACTIONS(1248), + [anon_sym_starts_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1248), + [anon_sym_ends_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1248), + [anon_sym_EQ_EQ] = ACTIONS(1248), + [anon_sym_BANG_EQ] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_LT_EQ] = ACTIONS(1248), + [anon_sym_GT] = ACTIONS(1250), + [anon_sym_GT_EQ] = ACTIONS(1248), + [aux_sym_cmd_identifier_token6] = ACTIONS(1252), + [sym__newline] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1238), + [anon_sym_PIPE] = ACTIONS(1238), + [anon_sym_err_GT_PIPE] = ACTIONS(1238), + [anon_sym_out_GT_PIPE] = ACTIONS(1238), + [anon_sym_e_GT_PIPE] = ACTIONS(1238), + [anon_sym_o_GT_PIPE] = ACTIONS(1238), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1238), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1238), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1238), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1238), + [anon_sym_GT2] = ACTIONS(1238), + [anon_sym_DASH2] = ACTIONS(1238), + [anon_sym_RBRACE] = ACTIONS(1238), + [anon_sym_STAR2] = ACTIONS(1238), + [anon_sym_and2] = ACTIONS(1238), + [anon_sym_xor2] = ACTIONS(1238), + [anon_sym_or2] = ACTIONS(1238), + [anon_sym_not_DASHin2] = ACTIONS(1238), + [anon_sym_has2] = ACTIONS(1238), + [anon_sym_not_DASHhas2] = ACTIONS(1238), + [anon_sym_starts_DASHwith2] = ACTIONS(1238), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1238), + [anon_sym_ends_DASHwith2] = ACTIONS(1238), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1238), + [anon_sym_EQ_EQ2] = ACTIONS(1238), + [anon_sym_BANG_EQ2] = ACTIONS(1238), + [anon_sym_LT2] = ACTIONS(1238), + [anon_sym_LT_EQ2] = ACTIONS(1238), + [anon_sym_GT_EQ2] = ACTIONS(1238), + [anon_sym_EQ_TILDE2] = ACTIONS(1238), + [anon_sym_BANG_TILDE2] = ACTIONS(1238), + [anon_sym_like2] = ACTIONS(1238), + [anon_sym_not_DASHlike2] = ACTIONS(1238), + [anon_sym_STAR_STAR2] = ACTIONS(1238), + [anon_sym_PLUS_PLUS2] = ACTIONS(1238), + [anon_sym_SLASH2] = ACTIONS(1238), + [anon_sym_mod2] = ACTIONS(1238), + [anon_sym_SLASH_SLASH2] = ACTIONS(1238), + [anon_sym_PLUS2] = ACTIONS(1238), + [anon_sym_bit_DASHshl2] = ACTIONS(1238), + [anon_sym_bit_DASHshr2] = ACTIONS(1238), + [anon_sym_bit_DASHand2] = ACTIONS(1238), + [anon_sym_bit_DASHxor2] = ACTIONS(1238), + [anon_sym_bit_DASHor2] = ACTIONS(1238), + [anon_sym_err_GT] = ACTIONS(1238), + [anon_sym_out_GT] = ACTIONS(1238), + [anon_sym_e_GT] = ACTIONS(1238), + [anon_sym_o_GT] = ACTIONS(1238), + [anon_sym_err_PLUSout_GT] = ACTIONS(1238), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1238), + [anon_sym_o_PLUSe_GT] = ACTIONS(1238), + [anon_sym_e_PLUSo_GT] = ACTIONS(1238), + [anon_sym_err_GT_GT] = ACTIONS(1238), + [anon_sym_out_GT_GT] = ACTIONS(1238), + [anon_sym_e_GT_GT] = ACTIONS(1238), + [anon_sym_o_GT_GT] = ACTIONS(1238), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1238), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1238), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1238), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1238), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(198)] = { + [198] = { [sym_comment] = STATE(198), - [ts_builtin_sym_end] = ACTIONS(1258), - [anon_sym_in] = ACTIONS(1242), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_SLASH] = ACTIONS(1254), - [anon_sym_mod] = ACTIONS(1252), - [anon_sym_SLASH_SLASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_bit_DASHshl] = ACTIONS(1252), - [anon_sym_bit_DASHshr] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_BANG_TILDE] = ACTIONS(1252), - [anon_sym_like] = ACTIONS(1252), - [anon_sym_not_DASHlike] = ACTIONS(1252), - [anon_sym_bit_DASHand] = ACTIONS(1252), - [anon_sym_bit_DASHxor] = ACTIONS(1252), - [anon_sym_bit_DASHor] = ACTIONS(1252), - [anon_sym_and] = ACTIONS(1252), - [anon_sym_xor] = ACTIONS(1252), - [anon_sym_or] = ACTIONS(1252), - [anon_sym_in2] = ACTIONS(1252), - [anon_sym_not_DASHin] = ACTIONS(1252), - [anon_sym_has] = ACTIONS(1252), - [anon_sym_not_DASHhas] = ACTIONS(1252), - [anon_sym_starts_DASHwith] = ACTIONS(1252), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1252), - [anon_sym_ends_DASHwith] = ACTIONS(1252), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1254), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1252), - [aux_sym_cmd_identifier_token6] = ACTIONS(1256), - [sym__newline] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_err_GT_PIPE] = ACTIONS(1242), - [anon_sym_out_GT_PIPE] = ACTIONS(1242), - [anon_sym_e_GT_PIPE] = ACTIONS(1242), - [anon_sym_o_GT_PIPE] = ACTIONS(1242), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1242), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1242), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1242), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1242), - [anon_sym_GT2] = ACTIONS(1242), - [anon_sym_DASH2] = ACTIONS(1242), - [anon_sym_STAR2] = ACTIONS(1242), - [anon_sym_and2] = ACTIONS(1242), - [anon_sym_xor2] = ACTIONS(1242), - [anon_sym_or2] = ACTIONS(1242), - [anon_sym_not_DASHin2] = ACTIONS(1242), - [anon_sym_has2] = ACTIONS(1242), - [anon_sym_not_DASHhas2] = ACTIONS(1242), - [anon_sym_starts_DASHwith2] = ACTIONS(1242), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1242), - [anon_sym_ends_DASHwith2] = ACTIONS(1242), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1242), - [anon_sym_EQ_EQ2] = ACTIONS(1242), - [anon_sym_BANG_EQ2] = ACTIONS(1242), - [anon_sym_LT2] = ACTIONS(1242), - [anon_sym_LT_EQ2] = ACTIONS(1242), - [anon_sym_GT_EQ2] = ACTIONS(1242), - [anon_sym_EQ_TILDE2] = ACTIONS(1242), - [anon_sym_BANG_TILDE2] = ACTIONS(1242), - [anon_sym_like2] = ACTIONS(1242), - [anon_sym_not_DASHlike2] = ACTIONS(1242), - [anon_sym_STAR_STAR2] = ACTIONS(1242), - [anon_sym_PLUS_PLUS2] = ACTIONS(1242), - [anon_sym_SLASH2] = ACTIONS(1242), - [anon_sym_mod2] = ACTIONS(1242), - [anon_sym_SLASH_SLASH2] = ACTIONS(1242), - [anon_sym_PLUS2] = ACTIONS(1242), - [anon_sym_bit_DASHshl2] = ACTIONS(1242), - [anon_sym_bit_DASHshr2] = ACTIONS(1242), - [anon_sym_bit_DASHand2] = ACTIONS(1242), - [anon_sym_bit_DASHxor2] = ACTIONS(1242), - [anon_sym_bit_DASHor2] = ACTIONS(1242), - [anon_sym_err_GT] = ACTIONS(1242), - [anon_sym_out_GT] = ACTIONS(1242), - [anon_sym_e_GT] = ACTIONS(1242), - [anon_sym_o_GT] = ACTIONS(1242), - [anon_sym_err_PLUSout_GT] = ACTIONS(1242), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1242), - [anon_sym_o_PLUSe_GT] = ACTIONS(1242), - [anon_sym_e_PLUSo_GT] = ACTIONS(1242), - [anon_sym_err_GT_GT] = ACTIONS(1242), - [anon_sym_out_GT_GT] = ACTIONS(1242), - [anon_sym_e_GT_GT] = ACTIONS(1242), - [anon_sym_o_GT_GT] = ACTIONS(1242), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1242), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1242), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1242), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1242), + [anon_sym_in] = ACTIONS(1238), + [anon_sym_STAR_STAR] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_SLASH] = ACTIONS(1250), + [anon_sym_mod] = ACTIONS(1248), + [anon_sym_SLASH_SLASH] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_bit_DASHshl] = ACTIONS(1248), + [anon_sym_bit_DASHshr] = ACTIONS(1248), + [anon_sym_EQ_TILDE] = ACTIONS(1248), + [anon_sym_BANG_TILDE] = ACTIONS(1248), + [anon_sym_like] = ACTIONS(1248), + [anon_sym_not_DASHlike] = ACTIONS(1248), + [anon_sym_bit_DASHand] = ACTIONS(1248), + [anon_sym_bit_DASHxor] = ACTIONS(1248), + [anon_sym_bit_DASHor] = ACTIONS(1248), + [anon_sym_and] = ACTIONS(1248), + [anon_sym_xor] = ACTIONS(1248), + [anon_sym_or] = ACTIONS(1248), + [anon_sym_in2] = ACTIONS(1248), + [anon_sym_not_DASHin] = ACTIONS(1248), + [anon_sym_has] = ACTIONS(1248), + [anon_sym_not_DASHhas] = ACTIONS(1248), + [anon_sym_starts_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1248), + [anon_sym_ends_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1248), + [anon_sym_EQ_EQ] = ACTIONS(1248), + [anon_sym_BANG_EQ] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_LT_EQ] = ACTIONS(1248), + [anon_sym_GT] = ACTIONS(1250), + [anon_sym_GT_EQ] = ACTIONS(1248), + [aux_sym_cmd_identifier_token6] = ACTIONS(1252), + [sym__newline] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1238), + [anon_sym_PIPE] = ACTIONS(1238), + [anon_sym_err_GT_PIPE] = ACTIONS(1238), + [anon_sym_out_GT_PIPE] = ACTIONS(1238), + [anon_sym_e_GT_PIPE] = ACTIONS(1238), + [anon_sym_o_GT_PIPE] = ACTIONS(1238), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1238), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1238), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1238), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1238), + [anon_sym_RPAREN] = ACTIONS(1238), + [anon_sym_GT2] = ACTIONS(1238), + [anon_sym_DASH2] = ACTIONS(1238), + [anon_sym_STAR2] = ACTIONS(1238), + [anon_sym_and2] = ACTIONS(1238), + [anon_sym_xor2] = ACTIONS(1238), + [anon_sym_or2] = ACTIONS(1238), + [anon_sym_not_DASHin2] = ACTIONS(1238), + [anon_sym_has2] = ACTIONS(1238), + [anon_sym_not_DASHhas2] = ACTIONS(1238), + [anon_sym_starts_DASHwith2] = ACTIONS(1238), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1238), + [anon_sym_ends_DASHwith2] = ACTIONS(1238), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1238), + [anon_sym_EQ_EQ2] = ACTIONS(1238), + [anon_sym_BANG_EQ2] = ACTIONS(1238), + [anon_sym_LT2] = ACTIONS(1238), + [anon_sym_LT_EQ2] = ACTIONS(1238), + [anon_sym_GT_EQ2] = ACTIONS(1238), + [anon_sym_EQ_TILDE2] = ACTIONS(1238), + [anon_sym_BANG_TILDE2] = ACTIONS(1238), + [anon_sym_like2] = ACTIONS(1238), + [anon_sym_not_DASHlike2] = ACTIONS(1238), + [anon_sym_STAR_STAR2] = ACTIONS(1238), + [anon_sym_PLUS_PLUS2] = ACTIONS(1238), + [anon_sym_SLASH2] = ACTIONS(1238), + [anon_sym_mod2] = ACTIONS(1238), + [anon_sym_SLASH_SLASH2] = ACTIONS(1238), + [anon_sym_PLUS2] = ACTIONS(1238), + [anon_sym_bit_DASHshl2] = ACTIONS(1238), + [anon_sym_bit_DASHshr2] = ACTIONS(1238), + [anon_sym_bit_DASHand2] = ACTIONS(1238), + [anon_sym_bit_DASHxor2] = ACTIONS(1238), + [anon_sym_bit_DASHor2] = ACTIONS(1238), + [anon_sym_err_GT] = ACTIONS(1238), + [anon_sym_out_GT] = ACTIONS(1238), + [anon_sym_e_GT] = ACTIONS(1238), + [anon_sym_o_GT] = ACTIONS(1238), + [anon_sym_err_PLUSout_GT] = ACTIONS(1238), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1238), + [anon_sym_o_PLUSe_GT] = ACTIONS(1238), + [anon_sym_e_PLUSo_GT] = ACTIONS(1238), + [anon_sym_err_GT_GT] = ACTIONS(1238), + [anon_sym_out_GT_GT] = ACTIONS(1238), + [anon_sym_e_GT_GT] = ACTIONS(1238), + [anon_sym_o_GT_GT] = ACTIONS(1238), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1238), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1238), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1238), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1238), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(199)] = { + [199] = { [sym_comment] = STATE(199), - [anon_sym_in] = ACTIONS(1242), - [anon_sym_STAR_STAR] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_SLASH] = ACTIONS(1246), - [anon_sym_mod] = ACTIONS(1244), - [anon_sym_SLASH_SLASH] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_bit_DASHshl] = ACTIONS(1244), - [anon_sym_bit_DASHshr] = ACTIONS(1244), - [anon_sym_EQ_TILDE] = ACTIONS(1244), - [anon_sym_BANG_TILDE] = ACTIONS(1244), - [anon_sym_like] = ACTIONS(1244), - [anon_sym_not_DASHlike] = ACTIONS(1244), - [anon_sym_bit_DASHand] = ACTIONS(1244), - [anon_sym_bit_DASHxor] = ACTIONS(1244), - [anon_sym_bit_DASHor] = ACTIONS(1244), - [anon_sym_and] = ACTIONS(1244), - [anon_sym_xor] = ACTIONS(1244), - [anon_sym_or] = ACTIONS(1244), - [anon_sym_in2] = ACTIONS(1244), - [anon_sym_not_DASHin] = ACTIONS(1244), - [anon_sym_has] = ACTIONS(1244), - [anon_sym_not_DASHhas] = ACTIONS(1244), - [anon_sym_starts_DASHwith] = ACTIONS(1244), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1244), - [anon_sym_ends_DASHwith] = ACTIONS(1244), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1244), - [anon_sym_EQ_EQ] = ACTIONS(1244), - [anon_sym_BANG_EQ] = ACTIONS(1244), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_LT_EQ] = ACTIONS(1244), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_GT_EQ] = ACTIONS(1244), - [aux_sym_cmd_identifier_token6] = ACTIONS(1248), - [sym__newline] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_err_GT_PIPE] = ACTIONS(1242), - [anon_sym_out_GT_PIPE] = ACTIONS(1242), - [anon_sym_e_GT_PIPE] = ACTIONS(1242), - [anon_sym_o_GT_PIPE] = ACTIONS(1242), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1242), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1242), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1242), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1242), - [anon_sym_GT2] = ACTIONS(1242), - [anon_sym_DASH2] = ACTIONS(1242), - [anon_sym_RBRACE] = ACTIONS(1242), - [anon_sym_STAR2] = ACTIONS(1242), - [anon_sym_and2] = ACTIONS(1242), - [anon_sym_xor2] = ACTIONS(1242), - [anon_sym_or2] = ACTIONS(1242), - [anon_sym_not_DASHin2] = ACTIONS(1242), - [anon_sym_has2] = ACTIONS(1242), - [anon_sym_not_DASHhas2] = ACTIONS(1242), - [anon_sym_starts_DASHwith2] = ACTIONS(1242), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1242), - [anon_sym_ends_DASHwith2] = ACTIONS(1242), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1242), - [anon_sym_EQ_EQ2] = ACTIONS(1242), - [anon_sym_BANG_EQ2] = ACTIONS(1242), - [anon_sym_LT2] = ACTIONS(1242), - [anon_sym_LT_EQ2] = ACTIONS(1242), - [anon_sym_GT_EQ2] = ACTIONS(1242), - [anon_sym_EQ_TILDE2] = ACTIONS(1242), - [anon_sym_BANG_TILDE2] = ACTIONS(1242), - [anon_sym_like2] = ACTIONS(1242), - [anon_sym_not_DASHlike2] = ACTIONS(1242), - [anon_sym_STAR_STAR2] = ACTIONS(1242), - [anon_sym_PLUS_PLUS2] = ACTIONS(1242), - [anon_sym_SLASH2] = ACTIONS(1242), - [anon_sym_mod2] = ACTIONS(1242), - [anon_sym_SLASH_SLASH2] = ACTIONS(1242), - [anon_sym_PLUS2] = ACTIONS(1242), - [anon_sym_bit_DASHshl2] = ACTIONS(1242), - [anon_sym_bit_DASHshr2] = ACTIONS(1242), - [anon_sym_bit_DASHand2] = ACTIONS(1242), - [anon_sym_bit_DASHxor2] = ACTIONS(1242), - [anon_sym_bit_DASHor2] = ACTIONS(1242), - [anon_sym_err_GT] = ACTIONS(1242), - [anon_sym_out_GT] = ACTIONS(1242), - [anon_sym_e_GT] = ACTIONS(1242), - [anon_sym_o_GT] = ACTIONS(1242), - [anon_sym_err_PLUSout_GT] = ACTIONS(1242), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1242), - [anon_sym_o_PLUSe_GT] = ACTIONS(1242), - [anon_sym_e_PLUSo_GT] = ACTIONS(1242), - [anon_sym_err_GT_GT] = ACTIONS(1242), - [anon_sym_out_GT_GT] = ACTIONS(1242), - [anon_sym_e_GT_GT] = ACTIONS(1242), - [anon_sym_o_GT_GT] = ACTIONS(1242), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1242), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1242), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1242), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1242), + [anon_sym_in] = ACTIONS(1246), + [anon_sym_STAR_STAR] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_SLASH] = ACTIONS(1250), + [anon_sym_mod] = ACTIONS(1248), + [anon_sym_SLASH_SLASH] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_bit_DASHshl] = ACTIONS(1248), + [anon_sym_bit_DASHshr] = ACTIONS(1248), + [anon_sym_EQ_TILDE] = ACTIONS(1248), + [anon_sym_BANG_TILDE] = ACTIONS(1248), + [anon_sym_like] = ACTIONS(1248), + [anon_sym_not_DASHlike] = ACTIONS(1248), + [anon_sym_bit_DASHand] = ACTIONS(1248), + [anon_sym_bit_DASHxor] = ACTIONS(1248), + [anon_sym_bit_DASHor] = ACTIONS(1248), + [anon_sym_and] = ACTIONS(1248), + [anon_sym_xor] = ACTIONS(1248), + [anon_sym_or] = ACTIONS(1248), + [anon_sym_in2] = ACTIONS(1248), + [anon_sym_not_DASHin] = ACTIONS(1248), + [anon_sym_has] = ACTIONS(1248), + [anon_sym_not_DASHhas] = ACTIONS(1248), + [anon_sym_starts_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1248), + [anon_sym_ends_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1248), + [anon_sym_EQ_EQ] = ACTIONS(1248), + [anon_sym_BANG_EQ] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_LT_EQ] = ACTIONS(1248), + [anon_sym_GT] = ACTIONS(1250), + [anon_sym_GT_EQ] = ACTIONS(1248), + [aux_sym_cmd_identifier_token6] = ACTIONS(1252), + [sym__newline] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_PIPE] = ACTIONS(1246), + [anon_sym_err_GT_PIPE] = ACTIONS(1246), + [anon_sym_out_GT_PIPE] = ACTIONS(1246), + [anon_sym_e_GT_PIPE] = ACTIONS(1246), + [anon_sym_o_GT_PIPE] = ACTIONS(1246), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1246), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1246), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1246), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1246), + [anon_sym_RPAREN] = ACTIONS(1246), + [anon_sym_GT2] = ACTIONS(1246), + [anon_sym_DASH2] = ACTIONS(1246), + [anon_sym_STAR2] = ACTIONS(1246), + [anon_sym_and2] = ACTIONS(1246), + [anon_sym_xor2] = ACTIONS(1246), + [anon_sym_or2] = ACTIONS(1246), + [anon_sym_not_DASHin2] = ACTIONS(1246), + [anon_sym_has2] = ACTIONS(1246), + [anon_sym_not_DASHhas2] = ACTIONS(1246), + [anon_sym_starts_DASHwith2] = ACTIONS(1246), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1246), + [anon_sym_ends_DASHwith2] = ACTIONS(1246), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1246), + [anon_sym_EQ_EQ2] = ACTIONS(1246), + [anon_sym_BANG_EQ2] = ACTIONS(1246), + [anon_sym_LT2] = ACTIONS(1246), + [anon_sym_LT_EQ2] = ACTIONS(1246), + [anon_sym_GT_EQ2] = ACTIONS(1246), + [anon_sym_EQ_TILDE2] = ACTIONS(1246), + [anon_sym_BANG_TILDE2] = ACTIONS(1246), + [anon_sym_like2] = ACTIONS(1246), + [anon_sym_not_DASHlike2] = ACTIONS(1246), + [anon_sym_STAR_STAR2] = ACTIONS(1246), + [anon_sym_PLUS_PLUS2] = ACTIONS(1246), + [anon_sym_SLASH2] = ACTIONS(1246), + [anon_sym_mod2] = ACTIONS(1246), + [anon_sym_SLASH_SLASH2] = ACTIONS(1246), + [anon_sym_PLUS2] = ACTIONS(1246), + [anon_sym_bit_DASHshl2] = ACTIONS(1246), + [anon_sym_bit_DASHshr2] = ACTIONS(1246), + [anon_sym_bit_DASHand2] = ACTIONS(1246), + [anon_sym_bit_DASHxor2] = ACTIONS(1246), + [anon_sym_bit_DASHor2] = ACTIONS(1246), + [anon_sym_err_GT] = ACTIONS(1246), + [anon_sym_out_GT] = ACTIONS(1246), + [anon_sym_e_GT] = ACTIONS(1246), + [anon_sym_o_GT] = ACTIONS(1246), + [anon_sym_err_PLUSout_GT] = ACTIONS(1246), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1246), + [anon_sym_o_PLUSe_GT] = ACTIONS(1246), + [anon_sym_e_PLUSo_GT] = ACTIONS(1246), + [anon_sym_err_GT_GT] = ACTIONS(1246), + [anon_sym_out_GT_GT] = ACTIONS(1246), + [anon_sym_e_GT_GT] = ACTIONS(1246), + [anon_sym_o_GT_GT] = ACTIONS(1246), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1246), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1246), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1246), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1246), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(200)] = { + [200] = { [sym_comment] = STATE(200), - [anon_sym_in] = ACTIONS(1234), - [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(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(1234), - [anon_sym_DASH2] = ACTIONS(1234), - [anon_sym_STAR2] = ACTIONS(1234), - [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(1234), - [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_STAR_STAR2] = ACTIONS(1234), - [anon_sym_PLUS_PLUS2] = ACTIONS(1234), - [anon_sym_SLASH2] = ACTIONS(1234), - [anon_sym_mod2] = ACTIONS(1234), - [anon_sym_SLASH_SLASH2] = ACTIONS(1234), - [anon_sym_PLUS2] = ACTIONS(1234), - [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(1234), - [anon_sym_out_GT] = ACTIONS(1234), - [anon_sym_e_GT] = ACTIONS(1234), - [anon_sym_o_GT] = ACTIONS(1234), - [anon_sym_err_PLUSout_GT] = ACTIONS(1234), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1234), - [anon_sym_o_PLUSe_GT] = ACTIONS(1234), - [anon_sym_e_PLUSo_GT] = ACTIONS(1234), - [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), + [anon_sym_in] = ACTIONS(1238), + [anon_sym_STAR_STAR] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_SLASH] = ACTIONS(1250), + [anon_sym_mod] = ACTIONS(1248), + [anon_sym_SLASH_SLASH] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_bit_DASHshl] = ACTIONS(1248), + [anon_sym_bit_DASHshr] = ACTIONS(1248), + [anon_sym_EQ_TILDE] = ACTIONS(1248), + [anon_sym_BANG_TILDE] = ACTIONS(1248), + [anon_sym_like] = ACTIONS(1248), + [anon_sym_not_DASHlike] = ACTIONS(1248), + [anon_sym_bit_DASHand] = ACTIONS(1248), + [anon_sym_bit_DASHxor] = ACTIONS(1248), + [anon_sym_bit_DASHor] = ACTIONS(1248), + [anon_sym_and] = ACTIONS(1248), + [anon_sym_xor] = ACTIONS(1248), + [anon_sym_or] = ACTIONS(1248), + [anon_sym_in2] = ACTIONS(1248), + [anon_sym_not_DASHin] = ACTIONS(1248), + [anon_sym_has] = ACTIONS(1248), + [anon_sym_not_DASHhas] = ACTIONS(1248), + [anon_sym_starts_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1248), + [anon_sym_ends_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1248), + [anon_sym_EQ_EQ] = ACTIONS(1248), + [anon_sym_BANG_EQ] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_LT_EQ] = ACTIONS(1248), + [anon_sym_GT] = ACTIONS(1250), + [anon_sym_GT_EQ] = ACTIONS(1248), + [aux_sym_cmd_identifier_token6] = ACTIONS(1252), + [sym__newline] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1238), + [anon_sym_PIPE] = ACTIONS(1238), + [anon_sym_err_GT_PIPE] = ACTIONS(1238), + [anon_sym_out_GT_PIPE] = ACTIONS(1238), + [anon_sym_e_GT_PIPE] = ACTIONS(1238), + [anon_sym_o_GT_PIPE] = ACTIONS(1238), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1238), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1238), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1238), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1238), + [anon_sym_GT2] = ACTIONS(1238), + [anon_sym_DASH2] = ACTIONS(1238), + [anon_sym_STAR2] = ACTIONS(1238), + [anon_sym_and2] = ACTIONS(1238), + [anon_sym_xor2] = ACTIONS(1238), + [anon_sym_or2] = ACTIONS(1238), + [anon_sym_not_DASHin2] = ACTIONS(1238), + [anon_sym_has2] = ACTIONS(1238), + [anon_sym_not_DASHhas2] = ACTIONS(1238), + [anon_sym_starts_DASHwith2] = ACTIONS(1238), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1238), + [anon_sym_ends_DASHwith2] = ACTIONS(1238), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1238), + [anon_sym_EQ_EQ2] = ACTIONS(1238), + [anon_sym_BANG_EQ2] = ACTIONS(1238), + [anon_sym_LT2] = ACTIONS(1238), + [anon_sym_LT_EQ2] = ACTIONS(1238), + [anon_sym_GT_EQ2] = ACTIONS(1238), + [anon_sym_EQ_TILDE2] = ACTIONS(1238), + [anon_sym_BANG_TILDE2] = ACTIONS(1238), + [anon_sym_like2] = ACTIONS(1238), + [anon_sym_not_DASHlike2] = ACTIONS(1238), + [anon_sym_STAR_STAR2] = ACTIONS(1238), + [anon_sym_PLUS_PLUS2] = ACTIONS(1238), + [anon_sym_SLASH2] = ACTIONS(1238), + [anon_sym_mod2] = ACTIONS(1238), + [anon_sym_SLASH_SLASH2] = ACTIONS(1238), + [anon_sym_PLUS2] = ACTIONS(1238), + [anon_sym_bit_DASHshl2] = ACTIONS(1238), + [anon_sym_bit_DASHshr2] = ACTIONS(1238), + [anon_sym_bit_DASHand2] = ACTIONS(1238), + [anon_sym_bit_DASHxor2] = ACTIONS(1238), + [anon_sym_bit_DASHor2] = ACTIONS(1238), + [anon_sym_err_GT] = ACTIONS(1238), + [anon_sym_out_GT] = ACTIONS(1238), + [anon_sym_e_GT] = ACTIONS(1238), + [anon_sym_o_GT] = ACTIONS(1238), + [anon_sym_err_PLUSout_GT] = ACTIONS(1238), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1238), + [anon_sym_o_PLUSe_GT] = ACTIONS(1238), + [anon_sym_e_PLUSo_GT] = ACTIONS(1238), + [anon_sym_err_GT_GT] = ACTIONS(1238), + [anon_sym_out_GT_GT] = ACTIONS(1238), + [anon_sym_e_GT_GT] = ACTIONS(1238), + [anon_sym_o_GT_GT] = ACTIONS(1238), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1238), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1238), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1238), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1238), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(201)] = { + [201] = { [sym_comment] = STATE(201), - [anon_sym_in] = ACTIONS(1242), - [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(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_err_GT_PIPE] = ACTIONS(1242), - [anon_sym_out_GT_PIPE] = ACTIONS(1242), - [anon_sym_e_GT_PIPE] = ACTIONS(1242), - [anon_sym_o_GT_PIPE] = ACTIONS(1242), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1242), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1242), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1242), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1242), - [anon_sym_GT2] = ACTIONS(1242), - [anon_sym_DASH2] = ACTIONS(1242), - [anon_sym_STAR2] = ACTIONS(1242), - [anon_sym_and2] = ACTIONS(1242), - [anon_sym_xor2] = ACTIONS(1242), - [anon_sym_or2] = ACTIONS(1242), - [anon_sym_not_DASHin2] = ACTIONS(1242), - [anon_sym_has2] = ACTIONS(1242), - [anon_sym_not_DASHhas2] = ACTIONS(1242), - [anon_sym_starts_DASHwith2] = ACTIONS(1242), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1242), - [anon_sym_ends_DASHwith2] = ACTIONS(1242), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1242), - [anon_sym_EQ_EQ2] = ACTIONS(1242), - [anon_sym_BANG_EQ2] = ACTIONS(1242), - [anon_sym_LT2] = ACTIONS(1242), - [anon_sym_LT_EQ2] = ACTIONS(1242), - [anon_sym_GT_EQ2] = ACTIONS(1242), - [anon_sym_EQ_TILDE2] = ACTIONS(1242), - [anon_sym_BANG_TILDE2] = ACTIONS(1242), - [anon_sym_like2] = ACTIONS(1242), - [anon_sym_not_DASHlike2] = ACTIONS(1242), - [anon_sym_STAR_STAR2] = ACTIONS(1242), - [anon_sym_PLUS_PLUS2] = ACTIONS(1242), - [anon_sym_SLASH2] = ACTIONS(1242), - [anon_sym_mod2] = ACTIONS(1242), - [anon_sym_SLASH_SLASH2] = ACTIONS(1242), - [anon_sym_PLUS2] = ACTIONS(1242), - [anon_sym_bit_DASHshl2] = ACTIONS(1242), - [anon_sym_bit_DASHshr2] = ACTIONS(1242), - [anon_sym_bit_DASHand2] = ACTIONS(1242), - [anon_sym_bit_DASHxor2] = ACTIONS(1242), - [anon_sym_bit_DASHor2] = ACTIONS(1242), - [anon_sym_err_GT] = ACTIONS(1242), - [anon_sym_out_GT] = ACTIONS(1242), - [anon_sym_e_GT] = ACTIONS(1242), - [anon_sym_o_GT] = ACTIONS(1242), - [anon_sym_err_PLUSout_GT] = ACTIONS(1242), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1242), - [anon_sym_o_PLUSe_GT] = ACTIONS(1242), - [anon_sym_e_PLUSo_GT] = ACTIONS(1242), - [anon_sym_err_GT_GT] = ACTIONS(1242), - [anon_sym_out_GT_GT] = ACTIONS(1242), - [anon_sym_e_GT_GT] = ACTIONS(1242), - [anon_sym_o_GT_GT] = ACTIONS(1242), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1242), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1242), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1242), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1242), + [anon_sym_in] = ACTIONS(1246), + [anon_sym_STAR_STAR] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_SLASH] = ACTIONS(1250), + [anon_sym_mod] = ACTIONS(1248), + [anon_sym_SLASH_SLASH] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_bit_DASHshl] = ACTIONS(1248), + [anon_sym_bit_DASHshr] = ACTIONS(1248), + [anon_sym_EQ_TILDE] = ACTIONS(1248), + [anon_sym_BANG_TILDE] = ACTIONS(1248), + [anon_sym_like] = ACTIONS(1248), + [anon_sym_not_DASHlike] = ACTIONS(1248), + [anon_sym_bit_DASHand] = ACTIONS(1248), + [anon_sym_bit_DASHxor] = ACTIONS(1248), + [anon_sym_bit_DASHor] = ACTIONS(1248), + [anon_sym_and] = ACTIONS(1248), + [anon_sym_xor] = ACTIONS(1248), + [anon_sym_or] = ACTIONS(1248), + [anon_sym_in2] = ACTIONS(1248), + [anon_sym_not_DASHin] = ACTIONS(1248), + [anon_sym_has] = ACTIONS(1248), + [anon_sym_not_DASHhas] = ACTIONS(1248), + [anon_sym_starts_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1248), + [anon_sym_ends_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1248), + [anon_sym_EQ_EQ] = ACTIONS(1248), + [anon_sym_BANG_EQ] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_LT_EQ] = ACTIONS(1248), + [anon_sym_GT] = ACTIONS(1250), + [anon_sym_GT_EQ] = ACTIONS(1248), + [aux_sym_cmd_identifier_token6] = ACTIONS(1252), + [sym__newline] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_PIPE] = ACTIONS(1246), + [anon_sym_err_GT_PIPE] = ACTIONS(1246), + [anon_sym_out_GT_PIPE] = ACTIONS(1246), + [anon_sym_e_GT_PIPE] = ACTIONS(1246), + [anon_sym_o_GT_PIPE] = ACTIONS(1246), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1246), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1246), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1246), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1246), + [anon_sym_GT2] = ACTIONS(1246), + [anon_sym_DASH2] = ACTIONS(1246), + [anon_sym_STAR2] = ACTIONS(1246), + [anon_sym_and2] = ACTIONS(1246), + [anon_sym_xor2] = ACTIONS(1246), + [anon_sym_or2] = ACTIONS(1246), + [anon_sym_not_DASHin2] = ACTIONS(1246), + [anon_sym_has2] = ACTIONS(1246), + [anon_sym_not_DASHhas2] = ACTIONS(1246), + [anon_sym_starts_DASHwith2] = ACTIONS(1246), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1246), + [anon_sym_ends_DASHwith2] = ACTIONS(1246), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1246), + [anon_sym_EQ_EQ2] = ACTIONS(1246), + [anon_sym_BANG_EQ2] = ACTIONS(1246), + [anon_sym_LT2] = ACTIONS(1246), + [anon_sym_LT_EQ2] = ACTIONS(1246), + [anon_sym_GT_EQ2] = ACTIONS(1246), + [anon_sym_EQ_TILDE2] = ACTIONS(1246), + [anon_sym_BANG_TILDE2] = ACTIONS(1246), + [anon_sym_like2] = ACTIONS(1246), + [anon_sym_not_DASHlike2] = ACTIONS(1246), + [anon_sym_STAR_STAR2] = ACTIONS(1246), + [anon_sym_PLUS_PLUS2] = ACTIONS(1246), + [anon_sym_SLASH2] = ACTIONS(1246), + [anon_sym_mod2] = ACTIONS(1246), + [anon_sym_SLASH_SLASH2] = ACTIONS(1246), + [anon_sym_PLUS2] = ACTIONS(1246), + [anon_sym_bit_DASHshl2] = ACTIONS(1246), + [anon_sym_bit_DASHshr2] = ACTIONS(1246), + [anon_sym_bit_DASHand2] = ACTIONS(1246), + [anon_sym_bit_DASHxor2] = ACTIONS(1246), + [anon_sym_bit_DASHor2] = ACTIONS(1246), + [anon_sym_err_GT] = ACTIONS(1246), + [anon_sym_out_GT] = ACTIONS(1246), + [anon_sym_e_GT] = ACTIONS(1246), + [anon_sym_o_GT] = ACTIONS(1246), + [anon_sym_err_PLUSout_GT] = ACTIONS(1246), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1246), + [anon_sym_o_PLUSe_GT] = ACTIONS(1246), + [anon_sym_e_PLUSo_GT] = ACTIONS(1246), + [anon_sym_err_GT_GT] = ACTIONS(1246), + [anon_sym_out_GT_GT] = ACTIONS(1246), + [anon_sym_e_GT_GT] = ACTIONS(1246), + [anon_sym_o_GT_GT] = ACTIONS(1246), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1246), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1246), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1246), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1246), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(202)] = { + [202] = { [sym_comment] = STATE(202), - [anon_sym_in] = ACTIONS(1242), - [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(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_err_GT_PIPE] = ACTIONS(1242), - [anon_sym_out_GT_PIPE] = ACTIONS(1242), - [anon_sym_e_GT_PIPE] = ACTIONS(1242), - [anon_sym_o_GT_PIPE] = ACTIONS(1242), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1242), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1242), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1242), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1242), - [anon_sym_GT2] = ACTIONS(1242), - [anon_sym_DASH2] = ACTIONS(1242), - [anon_sym_STAR2] = ACTIONS(1242), - [anon_sym_and2] = ACTIONS(1242), - [anon_sym_xor2] = ACTIONS(1242), - [anon_sym_or2] = ACTIONS(1242), - [anon_sym_not_DASHin2] = ACTIONS(1242), - [anon_sym_has2] = ACTIONS(1242), - [anon_sym_not_DASHhas2] = ACTIONS(1242), - [anon_sym_starts_DASHwith2] = ACTIONS(1242), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1242), - [anon_sym_ends_DASHwith2] = ACTIONS(1242), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1242), - [anon_sym_EQ_EQ2] = ACTIONS(1242), - [anon_sym_BANG_EQ2] = ACTIONS(1242), - [anon_sym_LT2] = ACTIONS(1242), - [anon_sym_LT_EQ2] = ACTIONS(1242), - [anon_sym_GT_EQ2] = ACTIONS(1242), - [anon_sym_EQ_TILDE2] = ACTIONS(1242), - [anon_sym_BANG_TILDE2] = ACTIONS(1242), - [anon_sym_like2] = ACTIONS(1242), - [anon_sym_not_DASHlike2] = ACTIONS(1242), - [anon_sym_STAR_STAR2] = ACTIONS(1242), - [anon_sym_PLUS_PLUS2] = ACTIONS(1242), - [anon_sym_SLASH2] = ACTIONS(1242), - [anon_sym_mod2] = ACTIONS(1242), - [anon_sym_SLASH_SLASH2] = ACTIONS(1242), - [anon_sym_PLUS2] = ACTIONS(1242), - [anon_sym_bit_DASHshl2] = ACTIONS(1242), - [anon_sym_bit_DASHshr2] = ACTIONS(1242), - [anon_sym_bit_DASHand2] = ACTIONS(1242), - [anon_sym_bit_DASHxor2] = ACTIONS(1242), - [anon_sym_bit_DASHor2] = ACTIONS(1242), - [anon_sym_err_GT] = ACTIONS(1242), - [anon_sym_out_GT] = ACTIONS(1242), - [anon_sym_e_GT] = ACTIONS(1242), - [anon_sym_o_GT] = ACTIONS(1242), - [anon_sym_err_PLUSout_GT] = ACTIONS(1242), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1242), - [anon_sym_o_PLUSe_GT] = ACTIONS(1242), - [anon_sym_e_PLUSo_GT] = ACTIONS(1242), - [anon_sym_err_GT_GT] = ACTIONS(1242), - [anon_sym_out_GT_GT] = ACTIONS(1242), - [anon_sym_e_GT_GT] = ACTIONS(1242), - [anon_sym_o_GT_GT] = ACTIONS(1242), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1242), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1242), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1242), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1242), + [anon_sym_in] = ACTIONS(1246), + [anon_sym_STAR_STAR] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_SLASH] = ACTIONS(1250), + [anon_sym_mod] = ACTIONS(1248), + [anon_sym_SLASH_SLASH] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_bit_DASHshl] = ACTIONS(1248), + [anon_sym_bit_DASHshr] = ACTIONS(1248), + [anon_sym_EQ_TILDE] = ACTIONS(1248), + [anon_sym_BANG_TILDE] = ACTIONS(1248), + [anon_sym_like] = ACTIONS(1248), + [anon_sym_not_DASHlike] = ACTIONS(1248), + [anon_sym_bit_DASHand] = ACTIONS(1248), + [anon_sym_bit_DASHxor] = ACTIONS(1248), + [anon_sym_bit_DASHor] = ACTIONS(1248), + [anon_sym_and] = ACTIONS(1248), + [anon_sym_xor] = ACTIONS(1248), + [anon_sym_or] = ACTIONS(1248), + [anon_sym_in2] = ACTIONS(1248), + [anon_sym_not_DASHin] = ACTIONS(1248), + [anon_sym_has] = ACTIONS(1248), + [anon_sym_not_DASHhas] = ACTIONS(1248), + [anon_sym_starts_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1248), + [anon_sym_ends_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1248), + [anon_sym_EQ_EQ] = ACTIONS(1248), + [anon_sym_BANG_EQ] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_LT_EQ] = ACTIONS(1248), + [anon_sym_GT] = ACTIONS(1250), + [anon_sym_GT_EQ] = ACTIONS(1248), + [aux_sym_cmd_identifier_token6] = ACTIONS(1252), + [sym__newline] = ACTIONS(1246), + [anon_sym_PIPE] = ACTIONS(1246), + [anon_sym_err_GT_PIPE] = ACTIONS(1246), + [anon_sym_out_GT_PIPE] = ACTIONS(1246), + [anon_sym_e_GT_PIPE] = ACTIONS(1246), + [anon_sym_o_GT_PIPE] = ACTIONS(1246), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1246), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1246), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1246), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1246), + [anon_sym_GT2] = ACTIONS(1246), + [anon_sym_DASH2] = ACTIONS(1246), + [anon_sym_STAR2] = ACTIONS(1246), + [anon_sym_and2] = ACTIONS(1246), + [anon_sym_xor2] = ACTIONS(1246), + [anon_sym_or2] = ACTIONS(1246), + [anon_sym_not_DASHin2] = ACTIONS(1246), + [anon_sym_has2] = ACTIONS(1246), + [anon_sym_not_DASHhas2] = ACTIONS(1246), + [anon_sym_starts_DASHwith2] = ACTIONS(1246), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1246), + [anon_sym_ends_DASHwith2] = ACTIONS(1246), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1246), + [anon_sym_EQ_EQ2] = ACTIONS(1246), + [anon_sym_BANG_EQ2] = ACTIONS(1246), + [anon_sym_LT2] = ACTIONS(1246), + [anon_sym_LT_EQ2] = ACTIONS(1246), + [anon_sym_GT_EQ2] = ACTIONS(1246), + [anon_sym_EQ_TILDE2] = ACTIONS(1246), + [anon_sym_BANG_TILDE2] = ACTIONS(1246), + [anon_sym_like2] = ACTIONS(1246), + [anon_sym_not_DASHlike2] = ACTIONS(1246), + [anon_sym_STAR_STAR2] = ACTIONS(1246), + [anon_sym_PLUS_PLUS2] = ACTIONS(1246), + [anon_sym_SLASH2] = ACTIONS(1246), + [anon_sym_mod2] = ACTIONS(1246), + [anon_sym_SLASH_SLASH2] = ACTIONS(1246), + [anon_sym_PLUS2] = ACTIONS(1246), + [anon_sym_bit_DASHshl2] = ACTIONS(1246), + [anon_sym_bit_DASHshr2] = ACTIONS(1246), + [anon_sym_bit_DASHand2] = ACTIONS(1246), + [anon_sym_bit_DASHxor2] = ACTIONS(1246), + [anon_sym_bit_DASHor2] = ACTIONS(1246), + [anon_sym_err_GT] = ACTIONS(1246), + [anon_sym_out_GT] = ACTIONS(1246), + [anon_sym_e_GT] = ACTIONS(1246), + [anon_sym_o_GT] = ACTIONS(1246), + [anon_sym_err_PLUSout_GT] = ACTIONS(1246), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1246), + [anon_sym_o_PLUSe_GT] = ACTIONS(1246), + [anon_sym_e_PLUSo_GT] = ACTIONS(1246), + [anon_sym_err_GT_GT] = ACTIONS(1246), + [anon_sym_out_GT_GT] = ACTIONS(1246), + [anon_sym_e_GT_GT] = ACTIONS(1246), + [anon_sym_o_GT_GT] = ACTIONS(1246), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1246), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1246), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1246), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1246), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(203)] = { + [203] = { [sym_comment] = STATE(203), - [anon_sym_in] = ACTIONS(1234), - [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(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(1234), - [anon_sym_DASH2] = ACTIONS(1234), - [anon_sym_STAR2] = ACTIONS(1234), - [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(1234), - [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_STAR_STAR2] = ACTIONS(1234), - [anon_sym_PLUS_PLUS2] = ACTIONS(1234), - [anon_sym_SLASH2] = ACTIONS(1234), - [anon_sym_mod2] = ACTIONS(1234), - [anon_sym_SLASH_SLASH2] = ACTIONS(1234), - [anon_sym_PLUS2] = ACTIONS(1234), - [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(1234), - [anon_sym_out_GT] = ACTIONS(1234), - [anon_sym_e_GT] = ACTIONS(1234), - [anon_sym_o_GT] = ACTIONS(1234), - [anon_sym_err_PLUSout_GT] = ACTIONS(1234), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1234), - [anon_sym_o_PLUSe_GT] = ACTIONS(1234), - [anon_sym_e_PLUSo_GT] = ACTIONS(1234), - [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), + [anon_sym_in] = ACTIONS(1238), + [anon_sym_STAR_STAR] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_SLASH] = ACTIONS(1250), + [anon_sym_mod] = ACTIONS(1248), + [anon_sym_SLASH_SLASH] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_bit_DASHshl] = ACTIONS(1248), + [anon_sym_bit_DASHshr] = ACTIONS(1248), + [anon_sym_EQ_TILDE] = ACTIONS(1248), + [anon_sym_BANG_TILDE] = ACTIONS(1248), + [anon_sym_like] = ACTIONS(1248), + [anon_sym_not_DASHlike] = ACTIONS(1248), + [anon_sym_bit_DASHand] = ACTIONS(1248), + [anon_sym_bit_DASHxor] = ACTIONS(1248), + [anon_sym_bit_DASHor] = ACTIONS(1248), + [anon_sym_and] = ACTIONS(1248), + [anon_sym_xor] = ACTIONS(1248), + [anon_sym_or] = ACTIONS(1248), + [anon_sym_in2] = ACTIONS(1248), + [anon_sym_not_DASHin] = ACTIONS(1248), + [anon_sym_has] = ACTIONS(1248), + [anon_sym_not_DASHhas] = ACTIONS(1248), + [anon_sym_starts_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1248), + [anon_sym_ends_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1248), + [anon_sym_EQ_EQ] = ACTIONS(1248), + [anon_sym_BANG_EQ] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_LT_EQ] = ACTIONS(1248), + [anon_sym_GT] = ACTIONS(1250), + [anon_sym_GT_EQ] = ACTIONS(1248), + [aux_sym_cmd_identifier_token6] = ACTIONS(1252), + [sym__newline] = ACTIONS(1238), + [anon_sym_PIPE] = ACTIONS(1238), + [anon_sym_err_GT_PIPE] = ACTIONS(1238), + [anon_sym_out_GT_PIPE] = ACTIONS(1238), + [anon_sym_e_GT_PIPE] = ACTIONS(1238), + [anon_sym_o_GT_PIPE] = ACTIONS(1238), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1238), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1238), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1238), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1238), + [anon_sym_GT2] = ACTIONS(1238), + [anon_sym_DASH2] = ACTIONS(1238), + [anon_sym_STAR2] = ACTIONS(1238), + [anon_sym_and2] = ACTIONS(1238), + [anon_sym_xor2] = ACTIONS(1238), + [anon_sym_or2] = ACTIONS(1238), + [anon_sym_not_DASHin2] = ACTIONS(1238), + [anon_sym_has2] = ACTIONS(1238), + [anon_sym_not_DASHhas2] = ACTIONS(1238), + [anon_sym_starts_DASHwith2] = ACTIONS(1238), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1238), + [anon_sym_ends_DASHwith2] = ACTIONS(1238), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1238), + [anon_sym_EQ_EQ2] = ACTIONS(1238), + [anon_sym_BANG_EQ2] = ACTIONS(1238), + [anon_sym_LT2] = ACTIONS(1238), + [anon_sym_LT_EQ2] = ACTIONS(1238), + [anon_sym_GT_EQ2] = ACTIONS(1238), + [anon_sym_EQ_TILDE2] = ACTIONS(1238), + [anon_sym_BANG_TILDE2] = ACTIONS(1238), + [anon_sym_like2] = ACTIONS(1238), + [anon_sym_not_DASHlike2] = ACTIONS(1238), + [anon_sym_STAR_STAR2] = ACTIONS(1238), + [anon_sym_PLUS_PLUS2] = ACTIONS(1238), + [anon_sym_SLASH2] = ACTIONS(1238), + [anon_sym_mod2] = ACTIONS(1238), + [anon_sym_SLASH_SLASH2] = ACTIONS(1238), + [anon_sym_PLUS2] = ACTIONS(1238), + [anon_sym_bit_DASHshl2] = ACTIONS(1238), + [anon_sym_bit_DASHshr2] = ACTIONS(1238), + [anon_sym_bit_DASHand2] = ACTIONS(1238), + [anon_sym_bit_DASHxor2] = ACTIONS(1238), + [anon_sym_bit_DASHor2] = ACTIONS(1238), + [anon_sym_err_GT] = ACTIONS(1238), + [anon_sym_out_GT] = ACTIONS(1238), + [anon_sym_e_GT] = ACTIONS(1238), + [anon_sym_o_GT] = ACTIONS(1238), + [anon_sym_err_PLUSout_GT] = ACTIONS(1238), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1238), + [anon_sym_o_PLUSe_GT] = ACTIONS(1238), + [anon_sym_e_PLUSo_GT] = ACTIONS(1238), + [anon_sym_err_GT_GT] = ACTIONS(1238), + [anon_sym_out_GT_GT] = ACTIONS(1238), + [anon_sym_e_GT_GT] = ACTIONS(1238), + [anon_sym_o_GT_GT] = ACTIONS(1238), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1238), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1238), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1238), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1238), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(204)] = { - [sym_expr_parenthesized] = STATE(4063), - [sym__spread_parenthesized] = STATE(3240), - [sym_val_range] = STATE(3250), - [sym__val_range] = STATE(4751), - [sym__value] = STATE(3250), - [sym_val_nothing] = STATE(3138), - [sym_val_bool] = STATE(4311), - [sym__spread_variable] = STATE(3259), - [sym_val_variable] = STATE(4045), - [sym_val_cellpath] = STATE(3138), - [sym_val_number] = STATE(3138), - [sym__val_number_decimal] = STATE(3611), - [sym__val_number] = STATE(3139), - [sym_val_duration] = STATE(3138), - [sym_val_filesize] = STATE(3138), - [sym_val_binary] = STATE(3138), - [sym_val_string] = STATE(3138), - [sym__raw_str] = STATE(2503), - [sym__str_double_quotes] = STATE(2503), - [sym__str_single_quotes] = STATE(2503), - [sym__str_back_ticks] = STATE(2503), - [sym_val_interpolated] = STATE(3138), - [sym__inter_single_quotes] = STATE(3179), - [sym__inter_double_quotes] = STATE(3180), - [sym_val_list] = STATE(3138), - [sym__spread_list] = STATE(3240), - [sym_val_record] = STATE(3138), - [sym_val_table] = STATE(3138), - [sym_val_closure] = STATE(3138), - [sym__cmd_arg] = STATE(3260), - [sym_redirection] = STATE(3222), - [sym__flag] = STATE(3262), - [sym_short_flag] = STATE(3082), - [sym_long_flag] = STATE(3082), - [sym_unquoted] = STATE(2734), - [sym__unquoted_with_expr] = STATE(3102), - [sym__unquoted_anonymous_prefix] = STATE(4751), + [204] = { + [sym_expr_parenthesized] = STATE(4031), + [sym__spread_parenthesized] = STATE(3207), + [sym_val_range] = STATE(3210), + [sym__val_range] = STATE(4890), + [sym__value] = STATE(3210), + [sym_val_nothing] = STATE(3096), + [sym_val_bool] = STATE(4294), + [sym__spread_variable] = STATE(3211), + [sym_val_variable] = STATE(4005), + [sym_val_cellpath] = STATE(3096), + [sym_val_number] = STATE(3096), + [sym__val_number_decimal] = STATE(3642), + [sym__val_number] = STATE(3095), + [sym_val_duration] = STATE(3096), + [sym_val_filesize] = STATE(3096), + [sym_val_binary] = STATE(3096), + [sym_val_string] = STATE(3096), + [sym__raw_str] = STATE(2515), + [sym__str_double_quotes] = STATE(2515), + [sym__str_single_quotes] = STATE(2515), + [sym__str_back_ticks] = STATE(2515), + [sym_val_interpolated] = STATE(3096), + [sym__inter_single_quotes] = STATE(3090), + [sym__inter_double_quotes] = STATE(3091), + [sym_val_list] = STATE(3096), + [sym__spread_list] = STATE(3207), + [sym_val_record] = STATE(3096), + [sym_val_table] = STATE(3096), + [sym_val_closure] = STATE(3096), + [sym__cmd_arg] = STATE(3214), + [sym_redirection] = STATE(3215), + [sym__flag] = STATE(3216), + [sym_short_flag] = STATE(3217), + [sym_long_flag] = STATE(3217), + [sym_unquoted] = STATE(2839), + [sym__unquoted_with_expr] = STATE(3218), + [sym__unquoted_anonymous_prefix] = STATE(4890), [sym_comment] = STATE(204), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_null] = ACTIONS(1262), - [aux_sym_cmd_identifier_token3] = ACTIONS(1264), - [aux_sym_cmd_identifier_token4] = ACTIONS(1264), - [aux_sym_cmd_identifier_token5] = ACTIONS(1264), - [sym__newline] = ACTIONS(833), - [sym__space] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(837), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(841), - [anon_sym_DASH_DASH] = ACTIONS(1266), - [anon_sym_DASH2] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_DOT_DOT] = ACTIONS(1270), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(851), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1272), - [anon_sym_DOT_DOT_LT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(855), - [aux_sym__val_number_decimal_token1] = ACTIONS(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1274), - [aux_sym__val_number_decimal_token3] = ACTIONS(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), - [aux_sym__val_number_token1] = ACTIONS(861), - [aux_sym__val_number_token2] = ACTIONS(861), - [aux_sym__val_number_token3] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(863), - [anon_sym_0o] = ACTIONS(865), - [anon_sym_0x] = ACTIONS(865), - [sym_val_date] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(869), - [anon_sym_SQUOTE] = ACTIONS(871), - [anon_sym_BQUOTE] = ACTIONS(873), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(879), - [anon_sym_err_GT] = ACTIONS(881), - [anon_sym_out_GT] = ACTIONS(881), - [anon_sym_e_GT] = ACTIONS(881), - [anon_sym_o_GT] = ACTIONS(881), - [anon_sym_err_PLUSout_GT] = ACTIONS(881), - [anon_sym_out_PLUSerr_GT] = ACTIONS(881), - [anon_sym_o_PLUSe_GT] = ACTIONS(881), - [anon_sym_e_PLUSo_GT] = ACTIONS(881), - [anon_sym_err_GT_GT] = ACTIONS(881), - [anon_sym_out_GT_GT] = ACTIONS(881), - [anon_sym_e_GT_GT] = ACTIONS(881), - [anon_sym_o_GT_GT] = ACTIONS(881), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(881), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(881), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(881), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(881), - [aux_sym_unquoted_token1] = ACTIONS(883), + [anon_sym_true] = ACTIONS(1264), + [anon_sym_false] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1266), + [aux_sym_cmd_identifier_token3] = ACTIONS(1268), + [aux_sym_cmd_identifier_token4] = ACTIONS(1268), + [aux_sym_cmd_identifier_token5] = ACTIONS(1268), + [sym__newline] = ACTIONS(835), + [sym__space] = ACTIONS(837), + [anon_sym_SEMI] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(839), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_DOLLAR] = ACTIONS(843), + [anon_sym_DASH_DASH] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(849), + [anon_sym_DOT_DOT] = ACTIONS(1274), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1276), + [anon_sym_DOT_DOT_LT] = ACTIONS(1276), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(857), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_decimal_token2] = ACTIONS(1278), + [aux_sym__val_number_decimal_token3] = ACTIONS(1280), + [aux_sym__val_number_decimal_token4] = ACTIONS(1280), + [aux_sym__val_number_token1] = ACTIONS(863), + [aux_sym__val_number_token2] = ACTIONS(863), + [aux_sym__val_number_token3] = ACTIONS(863), + [anon_sym_0b] = ACTIONS(865), + [anon_sym_0o] = ACTIONS(867), + [anon_sym_0x] = ACTIONS(867), + [sym_val_date] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(871), + [anon_sym_SQUOTE] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(879), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(881), + [anon_sym_err_GT] = ACTIONS(883), + [anon_sym_out_GT] = ACTIONS(883), + [anon_sym_e_GT] = ACTIONS(883), + [anon_sym_o_GT] = ACTIONS(883), + [anon_sym_err_PLUSout_GT] = ACTIONS(883), + [anon_sym_out_PLUSerr_GT] = ACTIONS(883), + [anon_sym_o_PLUSe_GT] = ACTIONS(883), + [anon_sym_e_PLUSo_GT] = ACTIONS(883), + [anon_sym_err_GT_GT] = ACTIONS(883), + [anon_sym_out_GT_GT] = ACTIONS(883), + [anon_sym_e_GT_GT] = ACTIONS(883), + [anon_sym_o_GT_GT] = ACTIONS(883), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(883), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(883), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(883), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(883), + [aux_sym_unquoted_token1] = ACTIONS(885), [anon_sym_POUND] = ACTIONS(105), - [sym_raw_string_begin] = ACTIONS(885), - }, - [STATE(205)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(254), - [sym_ctrl_if_parenthesized] = STATE(3469), - [sym_block] = STATE(3470), - [sym__expression_parenthesized] = STATE(3470), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), + [sym_raw_string_begin] = ACTIONS(887), + }, + [205] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3429), + [sym_block] = STATE(3428), + [sym__expression_parenthesized] = STATE(3428), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), [sym__val_number_decimal] = STATE(320), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3470), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3428), [sym_comment] = STATE(205), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -63469,33 +63417,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1300), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -63513,42 +63461,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(206)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(237), - [sym_ctrl_if_parenthesized] = STATE(3478), - [sym_block] = STATE(3479), - [sym__expression_parenthesized] = STATE(3479), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3479), + [206] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3429), + [sym_block] = STATE(3428), + [sym__expression_parenthesized] = STATE(3428), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(318), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3428), [sym_comment] = STATE(206), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -63571,26 +63519,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_decimal_token1] = ACTIONS(1302), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -63608,42 +63556,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(207)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3510), - [sym_block] = STATE(3511), - [sym__expression_parenthesized] = STATE(3511), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3511), + [207] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(233), + [sym_ctrl_if_parenthesized] = STATE(3433), + [sym_block] = STATE(3432), + [sym__expression_parenthesized] = STATE(3432), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3432), [sym_comment] = STATE(207), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -63659,33 +63607,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(331), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [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(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -63703,42 +63651,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(208)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(238), - [sym_ctrl_if_parenthesized] = STATE(3510), - [sym_block] = STATE(3511), - [sym__expression_parenthesized] = STATE(3511), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3511), + [208] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3431), + [sym_block] = STATE(3430), + [sym__expression_parenthesized] = STATE(3430), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3430), [sym_comment] = STATE(208), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -63754,33 +63702,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(331), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [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(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -63798,42 +63746,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(209)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3512), - [sym_block] = STATE(3513), - [sym__expression_parenthesized] = STATE(3513), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3513), + [209] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(237), + [sym_ctrl_if_parenthesized] = STATE(3431), + [sym_block] = STATE(3430), + [sym__expression_parenthesized] = STATE(3430), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3430), [sym_comment] = STATE(209), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -63849,33 +63797,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(331), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [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(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -63893,42 +63841,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(210)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(213), - [sym_ctrl_if_parenthesized] = STATE(3508), - [sym_block] = STATE(3509), - [sym__expression_parenthesized] = STATE(3509), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(328), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3509), + [210] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3429), + [sym_block] = STATE(3428), + [sym__expression_parenthesized] = STATE(3428), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3428), [sym_comment] = STATE(210), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -63944,33 +63892,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_decimal_token1] = ACTIONS(1308), + [aux_sym__val_number_decimal_token2] = ACTIONS(1310), + [aux_sym__val_number_decimal_token3] = ACTIONS(1312), + [aux_sym__val_number_decimal_token4] = ACTIONS(1312), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -63988,42 +63936,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(211)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(216), - [sym_ctrl_if_parenthesized] = STATE(3575), - [sym_block] = STATE(3579), - [sym__expression_parenthesized] = STATE(3579), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(328), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3579), + [211] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(268), + [sym_ctrl_if_parenthesized] = STATE(3488), + [sym_block] = STATE(3487), + [sym__expression_parenthesized] = STATE(3487), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3487), [sym_comment] = STATE(211), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -64039,33 +63987,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1300), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -64083,42 +64031,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(212)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(218), - [sym_ctrl_if_parenthesized] = STATE(3583), - [sym_block] = STATE(3586), - [sym__expression_parenthesized] = STATE(3586), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(328), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3586), + [212] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3512), + [sym_block] = STATE(3519), + [sym__expression_parenthesized] = STATE(3519), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(318), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3519), [sym_comment] = STATE(212), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -64134,33 +64082,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(331), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_decimal_token1] = ACTIONS(1302), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -64178,42 +64126,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(213)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3588), - [sym_block] = STATE(3589), - [sym__expression_parenthesized] = STATE(3589), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(328), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3589), + [213] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(253), + [sym_ctrl_if_parenthesized] = STATE(3488), + [sym_block] = STATE(3487), + [sym__expression_parenthesized] = STATE(3487), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3487), [sym_comment] = STATE(213), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -64229,33 +64177,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_decimal_token1] = ACTIONS(1308), + [aux_sym__val_number_decimal_token2] = ACTIONS(1310), + [aux_sym__val_number_decimal_token3] = ACTIONS(1312), + [aux_sym__val_number_decimal_token4] = ACTIONS(1312), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -64273,42 +64221,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(214)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(220), - [sym_ctrl_if_parenthesized] = STATE(3588), - [sym_block] = STATE(3589), - [sym__expression_parenthesized] = STATE(3589), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(328), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3589), + [214] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(230), + [sym_ctrl_if_parenthesized] = STATE(3431), + [sym_block] = STATE(3430), + [sym__expression_parenthesized] = STATE(3430), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3430), [sym_comment] = STATE(214), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -64324,33 +64272,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1300), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -64368,42 +64316,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(215)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(222), - [sym_ctrl_if_parenthesized] = STATE(3469), - [sym_block] = STATE(3470), - [sym__expression_parenthesized] = STATE(3470), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(328), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3470), + [215] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3431), + [sym_block] = STATE(3430), + [sym__expression_parenthesized] = STATE(3430), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3430), [sym_comment] = STATE(215), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -64419,33 +64367,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1300), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -64463,42 +64411,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(216)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3471), - [sym_block] = STATE(3472), - [sym__expression_parenthesized] = STATE(3472), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(328), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3472), + [216] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(261), + [sym_ctrl_if_parenthesized] = STATE(3436), + [sym_block] = STATE(3435), + [sym__expression_parenthesized] = STATE(3435), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(318), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3435), [sym_comment] = STATE(216), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -64514,33 +64462,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(331), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_decimal_token1] = ACTIONS(1302), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -64558,42 +64506,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(217)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(224), - [sym_ctrl_if_parenthesized] = STATE(3471), - [sym_block] = STATE(3472), - [sym__expression_parenthesized] = STATE(3472), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(328), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3472), + [217] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3433), + [sym_block] = STATE(3432), + [sym__expression_parenthesized] = STATE(3432), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(318), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3432), [sym_comment] = STATE(217), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -64609,33 +64557,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(331), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_decimal_token1] = ACTIONS(1302), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -64653,42 +64601,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(218)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3476), - [sym_block] = STATE(3477), - [sym__expression_parenthesized] = STATE(3477), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(328), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3477), + [218] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(232), + [sym_ctrl_if_parenthesized] = STATE(3433), + [sym_block] = STATE(3432), + [sym__expression_parenthesized] = STATE(3432), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3432), [sym_comment] = STATE(218), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -64704,33 +64652,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1300), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -64748,42 +64696,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(219)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(226), - [sym_ctrl_if_parenthesized] = STATE(3476), - [sym_block] = STATE(3477), - [sym__expression_parenthesized] = STATE(3477), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(328), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3477), + [219] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3512), + [sym_block] = STATE(3519), + [sym__expression_parenthesized] = STATE(3519), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3519), [sym_comment] = STATE(219), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -64799,33 +64747,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1300), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -64843,42 +64791,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(220)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3478), - [sym_block] = STATE(3479), - [sym__expression_parenthesized] = STATE(3479), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(328), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3479), + [220] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3491), + [sym_block] = STATE(3492), + [sym__expression_parenthesized] = STATE(3492), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3492), [sym_comment] = STATE(220), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -64894,33 +64842,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1300), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -64938,42 +64886,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(221)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(228), - [sym_ctrl_if_parenthesized] = STATE(3478), - [sym_block] = STATE(3479), - [sym__expression_parenthesized] = STATE(3479), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(328), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3479), + [221] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3475), + [sym_block] = STATE(3490), + [sym__expression_parenthesized] = STATE(3490), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3490), [sym_comment] = STATE(221), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -64989,33 +64937,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1300), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -65033,42 +64981,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(222)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3510), - [sym_block] = STATE(3511), - [sym__expression_parenthesized] = STATE(3511), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(328), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3511), + [222] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3541), + [sym_block] = STATE(3458), + [sym__expression_parenthesized] = STATE(3458), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3458), [sym_comment] = STATE(222), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -65084,33 +65032,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_decimal_token1] = ACTIONS(1308), + [aux_sym__val_number_decimal_token2] = ACTIONS(1310), + [aux_sym__val_number_decimal_token3] = ACTIONS(1312), + [aux_sym__val_number_decimal_token4] = ACTIONS(1312), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -65128,42 +65076,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(223)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(229), - [sym_ctrl_if_parenthesized] = STATE(3510), - [sym_block] = STATE(3511), - [sym__expression_parenthesized] = STATE(3511), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(328), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3511), + [223] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(219), + [sym_ctrl_if_parenthesized] = STATE(3479), + [sym_block] = STATE(3486), + [sym__expression_parenthesized] = STATE(3486), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3486), [sym_comment] = STATE(223), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -65179,33 +65127,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1300), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -65223,42 +65171,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(224)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3512), - [sym_block] = STATE(3513), - [sym__expression_parenthesized] = STATE(3513), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(328), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3513), + [224] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(249), + [sym_ctrl_if_parenthesized] = STATE(3541), + [sym_block] = STATE(3458), + [sym__expression_parenthesized] = STATE(3458), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3458), [sym_comment] = STATE(224), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -65274,33 +65222,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_decimal_token1] = ACTIONS(1308), + [aux_sym__val_number_decimal_token2] = ACTIONS(1310), + [aux_sym__val_number_decimal_token3] = ACTIONS(1312), + [aux_sym__val_number_decimal_token4] = ACTIONS(1312), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -65318,42 +65266,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(225)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(231), - [sym_ctrl_if_parenthesized] = STATE(3512), - [sym_block] = STATE(3513), - [sym__expression_parenthesized] = STATE(3513), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(328), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3513), + [225] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3479), + [sym_block] = STATE(3486), + [sym__expression_parenthesized] = STATE(3486), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3486), [sym_comment] = STATE(225), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -65369,33 +65317,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1300), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -65413,42 +65361,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(226)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3516), - [sym_block] = STATE(3517), - [sym__expression_parenthesized] = STATE(3517), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(328), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3517), + [226] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(274), + [sym_ctrl_if_parenthesized] = STATE(3433), + [sym_block] = STATE(3432), + [sym__expression_parenthesized] = STATE(3432), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(318), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3432), [sym_comment] = STATE(226), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -65464,33 +65412,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(331), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_decimal_token1] = ACTIONS(1302), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -65508,42 +65456,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(227)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(232), - [sym_ctrl_if_parenthesized] = STATE(3516), - [sym_block] = STATE(3517), - [sym__expression_parenthesized] = STATE(3517), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(328), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3517), + [227] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3431), + [sym_block] = STATE(3430), + [sym__expression_parenthesized] = STATE(3430), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(318), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3430), [sym_comment] = STATE(227), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -65559,33 +65507,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(331), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_decimal_token1] = ACTIONS(1302), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -65603,42 +65551,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(228)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3519), - [sym_block] = STATE(3520), - [sym__expression_parenthesized] = STATE(3520), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(328), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3520), + [228] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3447), + [sym_block] = STATE(3445), + [sym__expression_parenthesized] = STATE(3445), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3445), [sym_comment] = STATE(228), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -65654,33 +65602,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1300), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -65698,42 +65646,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(229)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3531), - [sym_block] = STATE(3533), - [sym__expression_parenthesized] = STATE(3533), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(328), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3533), + [229] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(220), + [sym_ctrl_if_parenthesized] = STATE(3451), + [sym_block] = STATE(3449), + [sym__expression_parenthesized] = STATE(3449), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3449), [sym_comment] = STATE(229), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -65749,33 +65697,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1300), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -65793,42 +65741,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(230)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(233), - [sym_ctrl_if_parenthesized] = STATE(3531), - [sym_block] = STATE(3533), - [sym__expression_parenthesized] = STATE(3533), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(328), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3533), + [230] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3451), + [sym_block] = STATE(3449), + [sym__expression_parenthesized] = STATE(3449), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3449), [sym_comment] = STATE(230), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -65844,33 +65792,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1300), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -65888,42 +65836,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(231)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3535), - [sym_block] = STATE(3536), - [sym__expression_parenthesized] = STATE(3536), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(328), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3536), + [231] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(221), + [sym_ctrl_if_parenthesized] = STATE(3455), + [sym_block] = STATE(3452), + [sym__expression_parenthesized] = STATE(3452), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3452), [sym_comment] = STATE(231), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -65939,33 +65887,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1300), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -65983,42 +65931,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(232)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3537), - [sym_block] = STATE(3538), - [sym__expression_parenthesized] = STATE(3538), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(328), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3538), + [232] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3455), + [sym_block] = STATE(3452), + [sym__expression_parenthesized] = STATE(3452), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3452), [sym_comment] = STATE(232), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -66034,33 +65982,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1300), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -66078,42 +66026,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(233)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3554), - [sym_block] = STATE(3570), - [sym__expression_parenthesized] = STATE(3570), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(328), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3570), + [233] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3455), + [sym_block] = STATE(3452), + [sym__expression_parenthesized] = STATE(3452), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3452), [sym_comment] = STATE(233), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -66129,33 +66077,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_decimal_token1] = ACTIONS(1308), + [aux_sym__val_number_decimal_token2] = ACTIONS(1310), + [aux_sym__val_number_decimal_token3] = ACTIONS(1312), + [aux_sym__val_number_decimal_token4] = ACTIONS(1312), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -66173,42 +66121,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(234)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(240), - [sym_ctrl_if_parenthesized] = STATE(3512), - [sym_block] = STATE(3513), - [sym__expression_parenthesized] = STATE(3513), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3513), + [234] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(256), + [sym_ctrl_if_parenthesized] = STATE(3455), + [sym_block] = STATE(3452), + [sym__expression_parenthesized] = STATE(3452), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3452), [sym_comment] = STATE(234), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -66224,33 +66172,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(331), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [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(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -66268,42 +66216,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(235)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3516), - [sym_block] = STATE(3517), - [sym__expression_parenthesized] = STATE(3517), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3517), + [235] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(225), + [sym_ctrl_if_parenthesized] = STATE(3541), + [sym_block] = STATE(3458), + [sym__expression_parenthesized] = STATE(3458), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3458), [sym_comment] = STATE(235), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -66319,33 +66267,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(331), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1300), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -66363,42 +66311,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(236)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(276), - [sym_ctrl_if_parenthesized] = STATE(3516), - [sym_block] = STATE(3517), - [sym__expression_parenthesized] = STATE(3517), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3517), + [236] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3541), + [sym_block] = STATE(3458), + [sym__expression_parenthesized] = STATE(3458), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3458), [sym_comment] = STATE(236), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -66414,33 +66362,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(331), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1300), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -66458,42 +66406,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(237)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3519), - [sym_block] = STATE(3520), - [sym__expression_parenthesized] = STATE(3520), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3520), + [237] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3451), + [sym_block] = STATE(3449), + [sym__expression_parenthesized] = STATE(3449), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3449), [sym_comment] = STATE(237), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -66509,33 +66457,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(331), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [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(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -66553,42 +66501,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(238)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3531), - [sym_block] = STATE(3533), - [sym__expression_parenthesized] = STATE(3533), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3533), + [238] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(258), + [sym_ctrl_if_parenthesized] = STATE(3451), + [sym_block] = STATE(3449), + [sym__expression_parenthesized] = STATE(3449), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3449), [sym_comment] = STATE(238), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -66604,33 +66552,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(331), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [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(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -66648,42 +66596,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(239)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(242), - [sym_ctrl_if_parenthesized] = STATE(3531), - [sym_block] = STATE(3533), - [sym__expression_parenthesized] = STATE(3533), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3533), + [239] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3447), + [sym_block] = STATE(3445), + [sym__expression_parenthesized] = STATE(3445), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3445), [sym_comment] = STATE(239), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -66699,33 +66647,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(331), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [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(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -66743,42 +66691,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(240)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3535), - [sym_block] = STATE(3536), - [sym__expression_parenthesized] = STATE(3536), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3536), + [240] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(272), + [sym_ctrl_if_parenthesized] = STATE(3431), + [sym_block] = STATE(3430), + [sym__expression_parenthesized] = STATE(3430), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(318), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3430), [sym_comment] = STATE(240), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -66801,26 +66749,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_decimal_token1] = ACTIONS(1302), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -66838,42 +66786,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(241)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3478), - [sym_block] = STATE(3479), - [sym__expression_parenthesized] = STATE(3479), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3479), + [241] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3433), + [sym_block] = STATE(3432), + [sym__expression_parenthesized] = STATE(3432), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3432), [sym_comment] = STATE(241), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -66889,33 +66837,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(331), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1300), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -66933,42 +66881,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(242)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3554), - [sym_block] = STATE(3570), - [sym__expression_parenthesized] = STATE(3570), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3570), + [242] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(227), + [sym_ctrl_if_parenthesized] = STATE(3457), + [sym_block] = STATE(3456), + [sym__expression_parenthesized] = STATE(3456), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(318), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3456), [sym_comment] = STATE(242), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -66991,26 +66939,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_decimal_token1] = ACTIONS(1302), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -67028,42 +66976,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(243)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(246), - [sym_ctrl_if_parenthesized] = STATE(3508), - [sym_block] = STATE(3509), - [sym__expression_parenthesized] = STATE(3509), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(320), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3509), + [243] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3491), + [sym_block] = STATE(3492), + [sym__expression_parenthesized] = STATE(3492), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(318), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3492), [sym_comment] = STATE(243), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -67079,33 +67027,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(331), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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_decimal_token1] = ACTIONS(1302), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -67123,42 +67071,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(244)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(248), - [sym_ctrl_if_parenthesized] = STATE(3575), - [sym_block] = STATE(3579), - [sym__expression_parenthesized] = STATE(3579), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), + [244] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(228), + [sym_ctrl_if_parenthesized] = STATE(3429), + [sym_block] = STATE(3428), + [sym__expression_parenthesized] = STATE(3428), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), [sym__val_number_decimal] = STATE(320), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3579), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3428), [sym_comment] = STATE(244), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -67174,33 +67122,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1300), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -67218,42 +67166,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(245)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(250), - [sym_ctrl_if_parenthesized] = STATE(3583), - [sym_block] = STATE(3586), - [sym__expression_parenthesized] = STATE(3586), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(320), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3586), + [245] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3475), + [sym_block] = STATE(3490), + [sym__expression_parenthesized] = STATE(3490), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(318), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3490), [sym_comment] = STATE(245), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -67269,33 +67217,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(331), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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_decimal_token1] = ACTIONS(1302), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -67313,42 +67261,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(246)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3588), - [sym_block] = STATE(3589), - [sym__expression_parenthesized] = STATE(3589), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(320), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3589), + [246] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(212), + [sym_ctrl_if_parenthesized] = STATE(3479), + [sym_block] = STATE(3486), + [sym__expression_parenthesized] = STATE(3486), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(318), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3486), [sym_comment] = STATE(246), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -67364,33 +67312,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(331), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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_decimal_token1] = ACTIONS(1302), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -67408,42 +67356,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(247)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(252), - [sym_ctrl_if_parenthesized] = STATE(3588), - [sym_block] = STATE(3589), - [sym__expression_parenthesized] = STATE(3589), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(320), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3589), + [247] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3479), + [sym_block] = STATE(3486), + [sym__expression_parenthesized] = STATE(3486), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(318), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3486), [sym_comment] = STATE(247), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -67459,33 +67407,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(331), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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_decimal_token1] = ACTIONS(1302), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -67503,42 +67451,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(248)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3471), - [sym_block] = STATE(3472), - [sym__expression_parenthesized] = STATE(3472), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(320), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3472), + [248] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(217), + [sym_ctrl_if_parenthesized] = STATE(3460), + [sym_block] = STATE(3459), + [sym__expression_parenthesized] = STATE(3459), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(318), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3459), [sym_comment] = STATE(248), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -67554,33 +67502,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(331), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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_decimal_token1] = ACTIONS(1302), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -67598,42 +67546,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(249)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(256), - [sym_ctrl_if_parenthesized] = STATE(3471), - [sym_block] = STATE(3472), - [sym__expression_parenthesized] = STATE(3472), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(320), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3472), + [249] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3479), + [sym_block] = STATE(3486), + [sym__expression_parenthesized] = STATE(3486), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3486), [sym_comment] = STATE(249), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -67649,33 +67597,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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_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(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -67693,42 +67641,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(250)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3476), - [sym_block] = STATE(3477), - [sym__expression_parenthesized] = STATE(3477), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(320), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3477), + [250] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(264), + [sym_ctrl_if_parenthesized] = STATE(3429), + [sym_block] = STATE(3428), + [sym__expression_parenthesized] = STATE(3428), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(318), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3428), [sym_comment] = STATE(250), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -67744,33 +67692,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(331), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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_decimal_token1] = ACTIONS(1302), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -67788,42 +67736,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(251)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(258), - [sym_ctrl_if_parenthesized] = STATE(3476), - [sym_block] = STATE(3477), - [sym__expression_parenthesized] = STATE(3477), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(320), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3477), + [251] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(259), + [sym_ctrl_if_parenthesized] = STATE(3479), + [sym_block] = STATE(3486), + [sym__expression_parenthesized] = STATE(3486), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3486), [sym_comment] = STATE(251), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -67839,33 +67787,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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_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(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -67883,42 +67831,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(252)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3478), - [sym_block] = STATE(3479), - [sym__expression_parenthesized] = STATE(3479), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(320), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3479), + [252] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(210), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_block] = STATE(3453), + [sym__expression_parenthesized] = STATE(3453), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3453), [sym_comment] = STATE(252), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -67934,33 +67882,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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_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(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -67978,42 +67926,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(253)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(260), - [sym_ctrl_if_parenthesized] = STATE(3478), - [sym_block] = STATE(3479), - [sym__expression_parenthesized] = STATE(3479), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(320), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3479), + [253] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_block] = STATE(3453), + [sym__expression_parenthesized] = STATE(3453), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3453), [sym_comment] = STATE(253), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -68029,33 +67977,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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_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(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -68073,42 +68021,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(254)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3510), - [sym_block] = STATE(3511), - [sym__expression_parenthesized] = STATE(3511), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(320), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3511), + [254] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(208), + [sym_ctrl_if_parenthesized] = STATE(3457), + [sym_block] = STATE(3456), + [sym__expression_parenthesized] = STATE(3456), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3456), [sym_comment] = STATE(254), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -68124,33 +68072,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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_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(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -68168,42 +68116,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(255)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(261), - [sym_ctrl_if_parenthesized] = STATE(3510), - [sym_block] = STATE(3511), - [sym__expression_parenthesized] = STATE(3511), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(320), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3511), + [255] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(265), + [sym_ctrl_if_parenthesized] = STATE(3460), + [sym_block] = STATE(3459), + [sym__expression_parenthesized] = STATE(3459), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3459), [sym_comment] = STATE(255), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -68219,33 +68167,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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_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(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -68263,42 +68211,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(256)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3512), - [sym_block] = STATE(3513), - [sym__expression_parenthesized] = STATE(3513), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(320), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3513), + [256] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3475), + [sym_block] = STATE(3490), + [sym__expression_parenthesized] = STATE(3490), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3490), [sym_comment] = STATE(256), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -68314,33 +68262,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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_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(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -68358,42 +68306,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(257)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(263), - [sym_ctrl_if_parenthesized] = STATE(3512), - [sym_block] = STATE(3513), - [sym__expression_parenthesized] = STATE(3513), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), + [257] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(236), + [sym_ctrl_if_parenthesized] = STATE(3436), + [sym_block] = STATE(3435), + [sym__expression_parenthesized] = STATE(3435), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), [sym__val_number_decimal] = STATE(320), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3513), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3435), [sym_comment] = STATE(257), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -68409,33 +68357,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1300), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -68453,42 +68401,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(258)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3516), - [sym_block] = STATE(3517), - [sym__expression_parenthesized] = STATE(3517), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(320), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3517), + [258] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3491), + [sym_block] = STATE(3492), + [sym__expression_parenthesized] = STATE(3492), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3492), [sym_comment] = STATE(258), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -68504,33 +68452,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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_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(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -68548,42 +68496,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(259)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(264), - [sym_ctrl_if_parenthesized] = STATE(3516), - [sym_block] = STATE(3517), - [sym__expression_parenthesized] = STATE(3517), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(320), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3517), + [259] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3512), + [sym_block] = STATE(3519), + [sym__expression_parenthesized] = STATE(3519), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3519), [sym_comment] = STATE(259), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -68599,33 +68547,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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_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(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -68643,42 +68591,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(260)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3519), - [sym_block] = STATE(3520), - [sym__expression_parenthesized] = STATE(3520), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(320), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3520), + [260] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(239), + [sym_ctrl_if_parenthesized] = STATE(3429), + [sym_block] = STATE(3428), + [sym__expression_parenthesized] = STATE(3428), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3428), [sym_comment] = STATE(260), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), @@ -68694,33 +68642,413 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [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(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [261] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3541), + [sym_block] = STATE(3458), + [sym__expression_parenthesized] = STATE(3458), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(318), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3458), + [sym_comment] = STATE(261), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1302), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [262] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(247), + [sym_ctrl_if_parenthesized] = STATE(3541), + [sym_block] = STATE(3458), + [sym__expression_parenthesized] = STATE(3458), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(318), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3458), + [sym_comment] = STATE(262), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1302), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [263] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_block] = STATE(3453), + [sym__expression_parenthesized] = STATE(3453), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(318), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3453), + [sym_comment] = STATE(263), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), + [anon_sym_else] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_catch] = ACTIONS(275), + [anon_sym_finally] = ACTIONS(275), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(281), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1302), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [264] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3447), + [sym_block] = STATE(3445), + [sym__expression_parenthesized] = STATE(3445), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(318), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3445), + [sym_comment] = STATE(264), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(275), + [anon_sym_let] = ACTIONS(275), + [anon_sym_mut] = ACTIONS(275), + [anon_sym_const] = ACTIONS(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(255), + [anon_sym_def] = ACTIONS(275), + [anon_sym_use] = ACTIONS(275), + [anon_sym_export_DASHenv] = ACTIONS(275), + [anon_sym_extern] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_loop] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_if] = ACTIONS(331), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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_decimal_token1] = ACTIONS(1302), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -68738,43 +69066,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(261)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3531), - [sym_block] = STATE(3533), - [sym__expression_parenthesized] = STATE(3533), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(320), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3533), - [sym_comment] = STATE(261), + [265] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3433), + [sym_block] = STATE(3432), + [sym__expression_parenthesized] = STATE(3432), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3432), + [sym_comment] = STATE(265), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), [anon_sym_let] = ACTIONS(275), @@ -68789,33 +69117,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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_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(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -68833,43 +69161,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(262)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(265), - [sym_ctrl_if_parenthesized] = STATE(3531), - [sym_block] = STATE(3533), - [sym__expression_parenthesized] = STATE(3533), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), + [266] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(241), + [sym_ctrl_if_parenthesized] = STATE(3460), + [sym_block] = STATE(3459), + [sym__expression_parenthesized] = STATE(3459), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), [sym__val_number_decimal] = STATE(320), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3533), - [sym_comment] = STATE(262), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3459), + [sym_comment] = STATE(266), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), [anon_sym_let] = ACTIONS(275), @@ -68884,33 +69212,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1300), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -68928,43 +69256,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(263)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3535), - [sym_block] = STATE(3536), - [sym__expression_parenthesized] = STATE(3536), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), + [267] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(215), + [sym_ctrl_if_parenthesized] = STATE(3457), + [sym_block] = STATE(3456), + [sym__expression_parenthesized] = STATE(3456), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), [sym__val_number_decimal] = STATE(320), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3536), - [sym_comment] = STATE(263), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3456), + [sym_comment] = STATE(267), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), [anon_sym_let] = ACTIONS(275), @@ -68979,33 +69307,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1300), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -69023,43 +69351,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(264)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3537), - [sym_block] = STATE(3538), - [sym__expression_parenthesized] = STATE(3538), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), + [268] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_block] = STATE(3453), + [sym__expression_parenthesized] = STATE(3453), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), [sym__val_number_decimal] = STATE(320), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3538), - [sym_comment] = STATE(264), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3453), + [sym_comment] = STATE(268), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), [anon_sym_let] = ACTIONS(275), @@ -69074,33 +69402,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1300), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -69118,233 +69446,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(265)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3554), - [sym_block] = STATE(3570), - [sym__expression_parenthesized] = STATE(3570), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), + [269] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(205), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_block] = STATE(3453), + [sym__expression_parenthesized] = STATE(3453), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), [sym__val_number_decimal] = STATE(320), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3570), - [sym_comment] = STATE(265), - [anon_sym_export] = ACTIONS(281), - [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(275), - [anon_sym_mut] = ACTIONS(275), - [anon_sym_const] = ACTIONS(275), - [aux_sym_cmd_identifier_token1] = ACTIONS(255), - [anon_sym_def] = ACTIONS(275), - [anon_sym_use] = ACTIONS(275), - [anon_sym_export_DASHenv] = ACTIONS(275), - [anon_sym_extern] = ACTIONS(275), - [anon_sym_module] = ACTIONS(275), - [anon_sym_for] = ACTIONS(275), - [anon_sym_loop] = ACTIONS(275), - [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(998), - [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(275), - [anon_sym_catch] = ACTIONS(275), - [anon_sym_finally] = ACTIONS(275), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_DOT_DOT] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(181), - [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(213), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(266)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(270), - [sym_ctrl_if_parenthesized] = STATE(3508), - [sym_block] = STATE(3509), - [sym__expression_parenthesized] = STATE(3509), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3509), - [sym_comment] = STATE(266), - [anon_sym_export] = ACTIONS(281), - [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(275), - [anon_sym_mut] = ACTIONS(275), - [anon_sym_const] = ACTIONS(275), - [aux_sym_cmd_identifier_token1] = ACTIONS(255), - [anon_sym_def] = ACTIONS(275), - [anon_sym_use] = ACTIONS(275), - [anon_sym_export_DASHenv] = ACTIONS(275), - [anon_sym_extern] = ACTIONS(275), - [anon_sym_module] = ACTIONS(275), - [anon_sym_for] = ACTIONS(275), - [anon_sym_loop] = ACTIONS(275), - [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(331), - [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(275), - [anon_sym_catch] = ACTIONS(275), - [anon_sym_finally] = ACTIONS(275), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_DOT_DOT] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(181), - [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(213), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(267)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(273), - [sym_ctrl_if_parenthesized] = STATE(3575), - [sym_block] = STATE(3579), - [sym__expression_parenthesized] = STATE(3579), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3579), - [sym_comment] = STATE(267), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3453), + [sym_comment] = STATE(269), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), [anon_sym_let] = ACTIONS(275), @@ -69359,33 +69497,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(331), + [anon_sym_if] = ACTIONS(1012), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1300), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -69403,43 +69541,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(268)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(269), - [sym_ctrl_if_parenthesized] = STATE(3583), - [sym_block] = STATE(3586), - [sym__expression_parenthesized] = STATE(3586), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3586), - [sym_comment] = STATE(268), + [270] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(263), + [sym_ctrl_if_parenthesized] = STATE(3488), + [sym_block] = STATE(3487), + [sym__expression_parenthesized] = STATE(3487), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(318), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3487), + [sym_comment] = STATE(270), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), [anon_sym_let] = ACTIONS(275), @@ -69461,26 +69599,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_decimal_token1] = ACTIONS(1302), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -69498,43 +69636,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(269)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3476), - [sym_block] = STATE(3477), - [sym__expression_parenthesized] = STATE(3477), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3477), - [sym_comment] = STATE(269), + [271] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(243), + [sym_ctrl_if_parenthesized] = STATE(3451), + [sym_block] = STATE(3449), + [sym__expression_parenthesized] = STATE(3449), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(318), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3449), + [sym_comment] = STATE(271), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), [anon_sym_let] = ACTIONS(275), @@ -69556,26 +69694,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_decimal_token1] = ACTIONS(1302), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -69593,43 +69731,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(270)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3588), - [sym_block] = STATE(3589), - [sym__expression_parenthesized] = STATE(3589), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3589), - [sym_comment] = STATE(270), + [272] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3451), + [sym_block] = STATE(3449), + [sym__expression_parenthesized] = STATE(3449), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(318), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3449), + [sym_comment] = STATE(272), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), [anon_sym_let] = ACTIONS(275), @@ -69651,26 +69789,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_decimal_token1] = ACTIONS(1302), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -69688,43 +69826,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(271)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(241), - [sym_ctrl_if_parenthesized] = STATE(3588), - [sym_block] = STATE(3589), - [sym__expression_parenthesized] = STATE(3589), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3589), - [sym_comment] = STATE(271), + [273] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(245), + [sym_ctrl_if_parenthesized] = STATE(3455), + [sym_block] = STATE(3452), + [sym__expression_parenthesized] = STATE(3452), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(318), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3452), + [sym_comment] = STATE(273), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), [anon_sym_let] = ACTIONS(275), @@ -69746,26 +69884,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_decimal_token1] = ACTIONS(1302), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -69783,43 +69921,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(272)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(207), - [sym_ctrl_if_parenthesized] = STATE(3469), - [sym_block] = STATE(3470), - [sym__expression_parenthesized] = STATE(3470), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3470), - [sym_comment] = STATE(272), + [274] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(1417), + [sym_ctrl_if_parenthesized] = STATE(3455), + [sym_block] = STATE(3452), + [sym__expression_parenthesized] = STATE(3452), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(318), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3452), + [sym_comment] = STATE(274), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), [anon_sym_let] = ACTIONS(275), @@ -69841,26 +69979,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_decimal_token1] = ACTIONS(1302), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -69878,43 +70016,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(273)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3471), - [sym_block] = STATE(3472), - [sym__expression_parenthesized] = STATE(3472), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3472), - [sym_comment] = STATE(273), + [275] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(222), + [sym_ctrl_if_parenthesized] = STATE(3436), + [sym_block] = STATE(3435), + [sym__expression_parenthesized] = STATE(3435), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3435), + [sym_comment] = STATE(275), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), [anon_sym_let] = ACTIONS(275), @@ -69929,33 +70067,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(331), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [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(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -69973,43 +70111,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(274)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(209), - [sym_ctrl_if_parenthesized] = STATE(3471), - [sym_block] = STATE(3472), - [sym__expression_parenthesized] = STATE(3472), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3472), - [sym_comment] = STATE(274), + [276] = { + [sym_cmd_identifier] = STATE(3044), + [aux_sym__repeat_newline] = STATE(206), + [sym_ctrl_if_parenthesized] = STATE(3454), + [sym_block] = STATE(3453), + [sym__expression_parenthesized] = STATE(3453), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(318), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3453), + [sym_comment] = STATE(276), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), [anon_sym_let] = ACTIONS(275), @@ -70031,26 +70169,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_decimal_token1] = ACTIONS(1302), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -70068,43 +70206,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(275)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(235), - [sym_ctrl_if_parenthesized] = STATE(3476), - [sym_block] = STATE(3477), - [sym__expression_parenthesized] = STATE(3477), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3477), - [sym_comment] = STATE(275), + [277] = { + [sym_cmd_identifier] = STATE(2877), + [sym__expression] = STATE(2302), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3341), + [sym_comment] = STATE(277), + [aux_sym_pipe_element_repeat2] = STATE(1408), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), [anon_sym_let] = ACTIONS(275), @@ -70119,33 +70256,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(331), + [anon_sym_if] = ACTIONS(275), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -70163,137 +70299,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(276)] = { - [sym_cmd_identifier] = STATE(2990), - [aux_sym__repeat_newline] = STATE(1416), - [sym_ctrl_if_parenthesized] = STATE(3537), - [sym_block] = STATE(3538), - [sym__expression_parenthesized] = STATE(3538), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2215), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3538), - [sym_comment] = STATE(276), - [anon_sym_export] = ACTIONS(281), - [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(275), - [anon_sym_mut] = ACTIONS(275), - [anon_sym_const] = ACTIONS(275), - [aux_sym_cmd_identifier_token1] = ACTIONS(255), - [anon_sym_def] = ACTIONS(275), - [anon_sym_use] = ACTIONS(275), - [anon_sym_export_DASHenv] = ACTIONS(275), - [anon_sym_extern] = ACTIONS(275), - [anon_sym_module] = ACTIONS(275), - [anon_sym_for] = ACTIONS(275), - [anon_sym_loop] = ACTIONS(275), - [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(331), - [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(275), - [anon_sym_catch] = ACTIONS(275), - [anon_sym_finally] = ACTIONS(275), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [sym__newline] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_DOT_DOT] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(181), - [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(213), + [278] = { + [sym_cmd_identifier] = STATE(3036), + [sym__expression] = STATE(2306), + [sym_expr_unary] = STATE(1343), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1343), + [sym__expr_binary_expression] = STATE(2262), + [sym_expr_parenthesized] = STATE(979), + [sym_val_range] = STATE(1343), + [sym__value] = STATE(1343), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1338), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3555), + [sym_comment] = STATE(278), + [aux_sym_pipe_element_repeat2] = STATE(1408), + [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(1314), + [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_PERCENT] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(277)] = { - [sym_cmd_identifier] = STATE(2990), - [sym_ctrl_if] = STATE(3401), - [sym_block] = STATE(3404), - [sym__expression] = STATE(3404), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2264), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(307), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3404), - [sym_comment] = STATE(277), + [279] = { + [sym_cmd_identifier] = STATE(3044), + [sym_ctrl_if] = STATE(3297), + [sym_block] = STATE(3296), + [sym__expression] = STATE(3296), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2263), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(320), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3296), + [sym_comment] = STATE(279), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), [anon_sym_let] = ACTIONS(275), @@ -70308,32 +70442,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(273), + [anon_sym_if] = ACTIONS(1002), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1300), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -70351,42 +70485,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(278)] = { - [sym_cmd_identifier] = STATE(3114), - [sym_ctrl_if] = STATE(3426), - [sym_block] = STATE(3427), - [sym__expression] = STATE(3427), - [sym_expr_unary] = STATE(1303), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1303), - [sym__expr_binary_expression] = STATE(2262), - [sym_expr_parenthesized] = STATE(934), - [sym_val_range] = STATE(1303), - [sym__value] = STATE(1303), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1369), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(308), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), + [280] = { + [sym_cmd_identifier] = STATE(3131), + [sym_ctrl_if] = STATE(3528), + [sym_block] = STATE(3527), + [sym__expression] = STATE(3527), + [sym_expr_unary] = STATE(1343), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1343), + [sym__expr_binary_expression] = STATE(2261), + [sym_expr_parenthesized] = STATE(979), + [sym_val_range] = STATE(1343), + [sym__value] = STATE(1343), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1338), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_command] = STATE(3427), - [sym_comment] = STATE(278), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_command] = STATE(3527), + [sym_comment] = STATE(280), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), [anon_sym_let] = ACTIONS(39), @@ -70416,17 +70550,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1320), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1314), [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1322), [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(1326), - [aux_sym__val_number_decimal_token2] = ACTIONS(1328), - [aux_sym__val_number_decimal_token3] = ACTIONS(1330), - [aux_sym__val_number_decimal_token4] = ACTIONS(1330), + [aux_sym__val_number_decimal_token1] = ACTIONS(1324), + [aux_sym__val_number_decimal_token2] = ACTIONS(1326), + [aux_sym__val_number_decimal_token3] = ACTIONS(1328), + [aux_sym__val_number_decimal_token4] = ACTIONS(1328), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), @@ -70444,42 +70578,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(279)] = { - [sym_cmd_identifier] = STATE(2982), - [sym__expression_parenthesized] = STATE(2304), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(152), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3601), - [sym_comment] = STATE(279), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1401), + [281] = { + [sym_cmd_identifier] = STATE(2877), + [sym__expression] = STATE(2302), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(149), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3341), + [sym_comment] = STATE(281), + [aux_sym_pipe_element_repeat2] = STATE(1408), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), [anon_sym_let] = ACTIONS(275), @@ -70509,17 +70643,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(287), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -70532,47 +70666,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(280)] = { - [sym_cmd_identifier] = STATE(2920), - [sym__expression] = STATE(2302), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3405), - [sym_comment] = STATE(280), - [aux_sym_pipe_element_repeat2] = STATE(1402), + [282] = { + [sym_cmd_identifier] = STATE(3000), + [sym__expression_parenthesized] = STATE(2304), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(188), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3600), + [sym_comment] = STATE(282), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1404), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), [anon_sym_let] = ACTIONS(275), @@ -70602,110 +70736,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(287), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(341), - [aux_sym__val_number_decimal_token2] = ACTIONS(343), - [aux_sym__val_number_decimal_token3] = ACTIONS(345), - [aux_sym__val_number_decimal_token4] = ACTIONS(345), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(213), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(281)] = { - [sym_cmd_identifier] = STATE(2990), - [sym_ctrl_if] = STATE(3401), - [sym_block] = STATE(3404), - [sym__expression] = STATE(3404), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2264), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(320), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3404), - [sym_comment] = STATE(281), - [anon_sym_export] = ACTIONS(281), - [anon_sym_alias] = ACTIONS(275), - [anon_sym_let] = ACTIONS(275), - [anon_sym_mut] = ACTIONS(275), - [anon_sym_const] = ACTIONS(275), - [aux_sym_cmd_identifier_token1] = ACTIONS(255), - [anon_sym_def] = ACTIONS(275), - [anon_sym_use] = ACTIONS(275), - [anon_sym_export_DASHenv] = ACTIONS(275), - [anon_sym_extern] = ACTIONS(275), - [anon_sym_module] = ACTIONS(275), - [anon_sym_for] = ACTIONS(275), - [anon_sym_loop] = ACTIONS(275), - [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(275), - [anon_sym_try] = ACTIONS(275), - [anon_sym_catch] = ACTIONS(275), - [anon_sym_finally] = ACTIONS(275), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_DOT_DOT] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(181), - [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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_decimal_token1] = ACTIONS(1022), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1026), + [aux_sym__val_number_decimal_token4] = ACTIONS(1026), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -70718,47 +70759,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(282)] = { - [sym_cmd_identifier] = STATE(2920), - [sym__expression] = STATE(2302), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(176), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3405), - [sym_comment] = STATE(282), - [aux_sym_pipe_element_repeat2] = STATE(1402), + [283] = { + [sym_cmd_identifier] = STATE(3000), + [sym__expression_parenthesized] = STATE(2304), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3600), + [sym_comment] = STATE(283), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1404), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), [anon_sym_let] = ACTIONS(275), @@ -70788,17 +70829,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(287), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1012), - [aux_sym__val_number_decimal_token2] = ACTIONS(1014), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [aux_sym__val_number_decimal_token1] = ACTIONS(341), + [aux_sym__val_number_decimal_token2] = ACTIONS(343), + [aux_sym__val_number_decimal_token3] = ACTIONS(345), + [aux_sym__val_number_decimal_token4] = ACTIONS(345), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -70811,47 +70852,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(283)] = { - [sym_cmd_identifier] = STATE(2920), - [sym__expression] = STATE(2302), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(125), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3405), - [sym_comment] = STATE(283), - [aux_sym_pipe_element_repeat2] = STATE(1402), + [284] = { + [sym_cmd_identifier] = STATE(3044), + [sym_ctrl_if] = STATE(3297), + [sym_block] = STATE(3296), + [sym__expression] = STATE(3296), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2263), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3296), + [sym_comment] = STATE(284), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), [anon_sym_let] = ACTIONS(275), @@ -70866,32 +70907,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(275), + [anon_sym_if] = ACTIONS(1028), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(283), - [anon_sym_false] = ACTIONS(283), - [anon_sym_null] = ACTIONS(285), - [aux_sym_cmd_identifier_token3] = ACTIONS(287), - [aux_sym_cmd_identifier_token4] = ACTIONS(287), - [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(295), - [aux_sym__val_number_decimal_token2] = ACTIONS(297), - [aux_sym__val_number_decimal_token3] = ACTIONS(299), - [aux_sym__val_number_decimal_token4] = ACTIONS(299), + [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(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -70909,42 +70950,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(284)] = { - [sym_cmd_identifier] = STATE(2990), - [sym_ctrl_if] = STATE(3401), - [sym_block] = STATE(3404), - [sym__expression] = STATE(3404), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2264), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(328), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3404), - [sym_comment] = STATE(284), + [285] = { + [sym_cmd_identifier] = STATE(3044), + [sym_ctrl_if] = STATE(3297), + [sym_block] = STATE(3296), + [sym__expression] = STATE(3296), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2263), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(318), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3296), + [sym_comment] = STATE(285), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), [anon_sym_let] = ACTIONS(275), @@ -70959,32 +71000,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(467), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1308), - [aux_sym__val_number_decimal_token4] = ACTIONS(1308), + [aux_sym__val_number_decimal_token1] = ACTIONS(1302), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -71002,42 +71043,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(285)] = { - [sym_cmd_identifier] = STATE(2920), - [sym__expression] = STATE(2302), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2258), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(152), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3405), - [sym_comment] = STATE(285), - [aux_sym_pipe_element_repeat2] = STATE(1402), + [286] = { + [sym_cmd_identifier] = STATE(3000), + [sym__expression_parenthesized] = STATE(2304), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(149), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(4915), + [sym__command_parenthesized] = STATE(3600), + [sym_comment] = STATE(286), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1404), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), [anon_sym_let] = ACTIONS(275), @@ -71067,17 +71108,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(287), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [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(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -71090,47 +71131,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(349), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(286)] = { - [sym_cmd_identifier] = STATE(2990), - [sym_ctrl_if] = STATE(3401), - [sym_block] = STATE(3404), - [sym__expression] = STATE(3404), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2264), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_command] = STATE(3404), - [sym_comment] = STATE(286), + [287] = { + [sym_cmd_identifier] = STATE(2877), + [sym__expression] = STATE(2302), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3341), + [sym_comment] = STATE(287), + [aux_sym_pipe_element_repeat2] = STATE(1408), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), [anon_sym_let] = ACTIONS(275), @@ -71145,32 +71186,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(463), + [anon_sym_if] = ACTIONS(275), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1284), - [aux_sym_cmd_identifier_token4] = ACTIONS(1284), - [aux_sym_cmd_identifier_token5] = ACTIONS(1284), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_null] = ACTIONS(285), + [aux_sym_cmd_identifier_token3] = ACTIONS(287), + [aux_sym_cmd_identifier_token4] = ACTIONS(287), + [aux_sym_cmd_identifier_token5] = ACTIONS(287), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1298), - [aux_sym__val_number_decimal_token2] = ACTIONS(1300), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_decimal_token1] = ACTIONS(295), + [aux_sym__val_number_decimal_token2] = ACTIONS(297), + [aux_sym__val_number_decimal_token3] = ACTIONS(299), + [aux_sym__val_number_decimal_token4] = ACTIONS(299), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -71188,135 +71229,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(287)] = { - [sym_cmd_identifier] = STATE(2973), - [sym__expression] = STATE(2306), - [sym_expr_unary] = STATE(1303), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1303), - [sym__expr_binary_expression] = STATE(2265), - [sym_expr_parenthesized] = STATE(934), - [sym_val_range] = STATE(1303), - [sym__value] = STATE(1303), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1369), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), - [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_env_var] = STATE(4949), - [sym_command] = STATE(3464), - [sym_comment] = STATE(287), - [aux_sym_pipe_element_repeat2] = STATE(1402), - [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(1322), - [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_PERCENT] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(107), - }, - [STATE(288)] = { - [sym_cmd_identifier] = STATE(2982), - [sym__expression_parenthesized] = STATE(2304), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(119), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3601), + [288] = { + [sym_cmd_identifier] = STATE(3044), + [sym_ctrl_if] = STATE(3297), + [sym_block] = STATE(3296), + [sym__expression] = STATE(3296), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2263), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(309), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_command] = STATE(3296), [sym_comment] = STATE(288), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1401), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), [anon_sym_let] = ACTIONS(275), @@ -71331,32 +71279,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(275), [anon_sym_loop] = ACTIONS(275), [anon_sym_while] = ACTIONS(275), - [anon_sym_if] = ACTIONS(275), + [anon_sym_if] = ACTIONS(273), [anon_sym_else] = ACTIONS(275), [anon_sym_try] = ACTIONS(275), [anon_sym_catch] = ACTIONS(275), [anon_sym_finally] = ACTIONS(275), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(281), - [anon_sym_true] = ACTIONS(283), - [anon_sym_false] = ACTIONS(283), - [anon_sym_null] = ACTIONS(285), - [aux_sym_cmd_identifier_token3] = ACTIONS(287), - [aux_sym_cmd_identifier_token4] = ACTIONS(287), - [aux_sym_cmd_identifier_token5] = ACTIONS(287), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_LBRACE] = ACTIONS(1294), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(341), - [aux_sym__val_number_decimal_token2] = ACTIONS(343), - [aux_sym__val_number_decimal_token3] = ACTIONS(345), - [aux_sym__val_number_decimal_token4] = ACTIONS(345), + [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(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -71369,47 +71317,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(289)] = { - [sym_cmd_identifier] = STATE(2982), - [sym__expression_parenthesized] = STATE(2304), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(176), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_env_var] = STATE(4695), - [sym__command_parenthesized] = STATE(3601), + [289] = { + [sym_cmd_identifier] = STATE(2877), + [sym__expression] = STATE(2302), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2258), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(188), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_env_var] = STATE(5025), + [sym_command] = STATE(3341), [sym_comment] = STATE(289), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1401), + [aux_sym_pipe_element_repeat2] = STATE(1408), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(275), [anon_sym_let] = ACTIONS(275), @@ -71439,17 +71387,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(287), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1012), - [aux_sym__val_number_decimal_token2] = ACTIONS(1014), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [aux_sym__val_number_decimal_token1] = ACTIONS(1022), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1026), + [aux_sym__val_number_decimal_token4] = ACTIONS(1026), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -71462,1599 +71410,1779 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_CARET] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(213), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(290)] = { + [290] = { [sym_comment] = STATE(290), - [anon_sym_in] = ACTIONS(759), - [anon_sym_STAR_STAR] = ACTIONS(761), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_mod] = ACTIONS(761), - [anon_sym_SLASH_SLASH] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_bit_DASHshl] = ACTIONS(761), - [anon_sym_bit_DASHshr] = ACTIONS(761), - [anon_sym_EQ_TILDE] = ACTIONS(761), - [anon_sym_BANG_TILDE] = ACTIONS(761), - [anon_sym_like] = ACTIONS(761), - [anon_sym_not_DASHlike] = ACTIONS(761), - [anon_sym_bit_DASHand] = ACTIONS(761), - [anon_sym_bit_DASHxor] = ACTIONS(761), - [anon_sym_bit_DASHor] = ACTIONS(761), - [anon_sym_and] = ACTIONS(761), - [anon_sym_xor] = ACTIONS(761), - [anon_sym_or] = ACTIONS(761), - [anon_sym_in2] = ACTIONS(761), - [anon_sym_not_DASHin] = ACTIONS(761), - [anon_sym_has] = ACTIONS(761), - [anon_sym_not_DASHhas] = ACTIONS(761), - [anon_sym_starts_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), - [anon_sym_ends_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), - [anon_sym_EQ_EQ] = ACTIONS(761), - [anon_sym_BANG_EQ] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_LT_EQ] = ACTIONS(761), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_GT_EQ] = ACTIONS(761), - [aux_sym_cmd_identifier_token6] = ACTIONS(759), - [sym__newline] = ACTIONS(759), - [anon_sym_SEMI] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_err_GT_PIPE] = ACTIONS(759), - [anon_sym_out_GT_PIPE] = ACTIONS(759), - [anon_sym_e_GT_PIPE] = ACTIONS(759), - [anon_sym_o_GT_PIPE] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), - [anon_sym_RPAREN] = ACTIONS(759), - [anon_sym_GT2] = ACTIONS(759), - [anon_sym_DASH2] = ACTIONS(759), - [anon_sym_STAR2] = ACTIONS(759), - [anon_sym_and2] = ACTIONS(759), - [anon_sym_xor2] = ACTIONS(759), - [anon_sym_or2] = ACTIONS(759), - [anon_sym_not_DASHin2] = ACTIONS(759), - [anon_sym_has2] = ACTIONS(759), - [anon_sym_not_DASHhas2] = ACTIONS(759), - [anon_sym_starts_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), - [anon_sym_ends_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), - [anon_sym_EQ_EQ2] = ACTIONS(759), - [anon_sym_BANG_EQ2] = ACTIONS(759), - [anon_sym_LT2] = ACTIONS(759), - [anon_sym_LT_EQ2] = ACTIONS(759), - [anon_sym_GT_EQ2] = ACTIONS(759), - [anon_sym_EQ_TILDE2] = ACTIONS(759), - [anon_sym_BANG_TILDE2] = ACTIONS(759), - [anon_sym_like2] = ACTIONS(759), - [anon_sym_not_DASHlike2] = ACTIONS(759), - [anon_sym_STAR_STAR2] = ACTIONS(759), - [anon_sym_PLUS_PLUS2] = ACTIONS(759), - [anon_sym_SLASH2] = ACTIONS(759), - [anon_sym_mod2] = ACTIONS(759), - [anon_sym_SLASH_SLASH2] = ACTIONS(759), - [anon_sym_PLUS2] = ACTIONS(759), - [anon_sym_bit_DASHshl2] = ACTIONS(759), - [anon_sym_bit_DASHshr2] = ACTIONS(759), - [anon_sym_bit_DASHand2] = ACTIONS(759), - [anon_sym_bit_DASHxor2] = ACTIONS(759), - [anon_sym_bit_DASHor2] = ACTIONS(759), - [anon_sym_DOT_DOT2] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(761), - [aux_sym__immediate_decimal_token1] = ACTIONS(1332), - [aux_sym__immediate_decimal_token5] = ACTIONS(1334), - [sym_filesize_unit] = ACTIONS(759), - [sym_duration_unit] = ACTIONS(761), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(291)] = { - [sym_comment] = STATE(291), - [anon_sym_in] = ACTIONS(759), - [anon_sym_STAR_STAR] = ACTIONS(761), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_mod] = ACTIONS(761), - [anon_sym_SLASH_SLASH] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_bit_DASHshl] = ACTIONS(761), - [anon_sym_bit_DASHshr] = ACTIONS(761), - [anon_sym_EQ_TILDE] = ACTIONS(761), - [anon_sym_BANG_TILDE] = ACTIONS(761), - [anon_sym_like] = ACTIONS(761), - [anon_sym_not_DASHlike] = ACTIONS(761), - [anon_sym_bit_DASHand] = ACTIONS(761), - [anon_sym_bit_DASHxor] = ACTIONS(761), - [anon_sym_bit_DASHor] = ACTIONS(761), - [anon_sym_and] = ACTIONS(761), - [anon_sym_xor] = ACTIONS(761), - [anon_sym_or] = ACTIONS(761), - [anon_sym_in2] = ACTIONS(761), - [anon_sym_not_DASHin] = ACTIONS(761), - [anon_sym_has] = ACTIONS(761), - [anon_sym_not_DASHhas] = ACTIONS(761), - [anon_sym_starts_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), - [anon_sym_ends_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), - [anon_sym_EQ_EQ] = ACTIONS(761), - [anon_sym_BANG_EQ] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_LT_EQ] = ACTIONS(761), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_GT_EQ] = ACTIONS(761), - [aux_sym_cmd_identifier_token6] = ACTIONS(759), - [sym__newline] = ACTIONS(759), - [anon_sym_SEMI] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_err_GT_PIPE] = ACTIONS(759), - [anon_sym_out_GT_PIPE] = ACTIONS(759), - [anon_sym_e_GT_PIPE] = ACTIONS(759), - [anon_sym_o_GT_PIPE] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), - [anon_sym_GT2] = ACTIONS(759), - [anon_sym_DASH2] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(759), - [anon_sym_STAR2] = ACTIONS(759), - [anon_sym_and2] = ACTIONS(759), - [anon_sym_xor2] = ACTIONS(759), - [anon_sym_or2] = ACTIONS(759), - [anon_sym_not_DASHin2] = ACTIONS(759), - [anon_sym_has2] = ACTIONS(759), - [anon_sym_not_DASHhas2] = ACTIONS(759), - [anon_sym_starts_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), - [anon_sym_ends_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), - [anon_sym_EQ_EQ2] = ACTIONS(759), - [anon_sym_BANG_EQ2] = ACTIONS(759), - [anon_sym_LT2] = ACTIONS(759), - [anon_sym_LT_EQ2] = ACTIONS(759), - [anon_sym_GT_EQ2] = ACTIONS(759), - [anon_sym_EQ_TILDE2] = ACTIONS(759), - [anon_sym_BANG_TILDE2] = ACTIONS(759), - [anon_sym_like2] = ACTIONS(759), - [anon_sym_not_DASHlike2] = ACTIONS(759), - [anon_sym_STAR_STAR2] = ACTIONS(759), - [anon_sym_PLUS_PLUS2] = ACTIONS(759), - [anon_sym_SLASH2] = ACTIONS(759), - [anon_sym_mod2] = ACTIONS(759), - [anon_sym_SLASH_SLASH2] = ACTIONS(759), - [anon_sym_PLUS2] = ACTIONS(759), - [anon_sym_bit_DASHshl2] = ACTIONS(759), - [anon_sym_bit_DASHshr2] = ACTIONS(759), - [anon_sym_bit_DASHand2] = ACTIONS(759), - [anon_sym_bit_DASHxor2] = ACTIONS(759), - [anon_sym_bit_DASHor2] = ACTIONS(759), - [anon_sym_DOT_DOT2] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(761), - [aux_sym__immediate_decimal_token1] = ACTIONS(1336), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_RPAREN] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), [aux_sym__immediate_decimal_token5] = ACTIONS(1338), - [sym_filesize_unit] = ACTIONS(759), - [sym_duration_unit] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(292)] = { - [sym_comment] = STATE(292), - [anon_sym_in] = ACTIONS(751), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_like] = ACTIONS(753), - [anon_sym_not_DASHlike] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_in2] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_has] = ACTIONS(753), - [anon_sym_not_DASHhas] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_EQ] = ACTIONS(753), - [aux_sym_cmd_identifier_token6] = ACTIONS(751), - [sym__newline] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_err_GT_PIPE] = ACTIONS(751), - [anon_sym_out_GT_PIPE] = ACTIONS(751), - [anon_sym_e_GT_PIPE] = ACTIONS(751), - [anon_sym_o_GT_PIPE] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), - [anon_sym_GT2] = ACTIONS(751), - [anon_sym_DASH2] = ACTIONS(751), - [anon_sym_RBRACE] = ACTIONS(751), - [anon_sym_STAR2] = ACTIONS(751), - [anon_sym_and2] = ACTIONS(751), - [anon_sym_xor2] = ACTIONS(751), - [anon_sym_or2] = ACTIONS(751), - [anon_sym_not_DASHin2] = ACTIONS(751), - [anon_sym_has2] = ACTIONS(751), - [anon_sym_not_DASHhas2] = ACTIONS(751), - [anon_sym_starts_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), - [anon_sym_ends_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), - [anon_sym_EQ_EQ2] = ACTIONS(751), - [anon_sym_BANG_EQ2] = ACTIONS(751), - [anon_sym_LT2] = ACTIONS(751), - [anon_sym_LT_EQ2] = ACTIONS(751), - [anon_sym_GT_EQ2] = ACTIONS(751), - [anon_sym_EQ_TILDE2] = ACTIONS(751), - [anon_sym_BANG_TILDE2] = ACTIONS(751), - [anon_sym_like2] = ACTIONS(751), - [anon_sym_not_DASHlike2] = ACTIONS(751), - [anon_sym_STAR_STAR2] = ACTIONS(751), - [anon_sym_PLUS_PLUS2] = ACTIONS(751), - [anon_sym_SLASH2] = ACTIONS(751), - [anon_sym_mod2] = ACTIONS(751), - [anon_sym_SLASH_SLASH2] = ACTIONS(751), - [anon_sym_PLUS2] = ACTIONS(751), - [anon_sym_bit_DASHshl2] = ACTIONS(751), - [anon_sym_bit_DASHshr2] = ACTIONS(751), - [anon_sym_bit_DASHand2] = ACTIONS(751), - [anon_sym_bit_DASHxor2] = ACTIONS(751), - [anon_sym_bit_DASHor2] = ACTIONS(751), - [anon_sym_DOT_DOT2] = ACTIONS(751), + [291] = { + [sym_comment] = STATE(291), + [ts_builtin_sym_end] = ACTIONS(765), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), [anon_sym_DOT] = ACTIONS(1340), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), [aux_sym__immediate_decimal_token5] = ACTIONS(1342), - [sym_filesize_unit] = ACTIONS(751), - [sym_duration_unit] = ACTIONS(753), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(293)] = { - [sym_comment] = STATE(293), - [ts_builtin_sym_end] = ACTIONS(753), - [anon_sym_in] = ACTIONS(751), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_like] = ACTIONS(753), - [anon_sym_not_DASHlike] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_in2] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_has] = ACTIONS(753), - [anon_sym_not_DASHhas] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_EQ] = ACTIONS(753), - [aux_sym_cmd_identifier_token6] = ACTIONS(751), - [sym__newline] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_err_GT_PIPE] = ACTIONS(751), - [anon_sym_out_GT_PIPE] = ACTIONS(751), - [anon_sym_e_GT_PIPE] = ACTIONS(751), - [anon_sym_o_GT_PIPE] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), - [anon_sym_GT2] = ACTIONS(751), - [anon_sym_DASH2] = ACTIONS(751), - [anon_sym_STAR2] = ACTIONS(751), - [anon_sym_and2] = ACTIONS(751), - [anon_sym_xor2] = ACTIONS(751), - [anon_sym_or2] = ACTIONS(751), - [anon_sym_not_DASHin2] = ACTIONS(751), - [anon_sym_has2] = ACTIONS(751), - [anon_sym_not_DASHhas2] = ACTIONS(751), - [anon_sym_starts_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), - [anon_sym_ends_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), - [anon_sym_EQ_EQ2] = ACTIONS(751), - [anon_sym_BANG_EQ2] = ACTIONS(751), - [anon_sym_LT2] = ACTIONS(751), - [anon_sym_LT_EQ2] = ACTIONS(751), - [anon_sym_GT_EQ2] = ACTIONS(751), - [anon_sym_EQ_TILDE2] = ACTIONS(751), - [anon_sym_BANG_TILDE2] = ACTIONS(751), - [anon_sym_like2] = ACTIONS(751), - [anon_sym_not_DASHlike2] = ACTIONS(751), - [anon_sym_STAR_STAR2] = ACTIONS(751), - [anon_sym_PLUS_PLUS2] = ACTIONS(751), - [anon_sym_SLASH2] = ACTIONS(751), - [anon_sym_mod2] = ACTIONS(751), - [anon_sym_SLASH_SLASH2] = ACTIONS(751), - [anon_sym_PLUS2] = ACTIONS(751), - [anon_sym_bit_DASHshl2] = ACTIONS(751), - [anon_sym_bit_DASHshr2] = ACTIONS(751), - [anon_sym_bit_DASHand2] = ACTIONS(751), - [anon_sym_bit_DASHxor2] = ACTIONS(751), - [anon_sym_bit_DASHor2] = ACTIONS(751), - [anon_sym_DOT_DOT2] = ACTIONS(751), + [292] = { + [sym_comment] = STATE(292), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_RBRACE] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), [anon_sym_DOT] = ACTIONS(1344), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), [aux_sym__immediate_decimal_token5] = ACTIONS(1346), - [sym_filesize_unit] = ACTIONS(751), - [sym_duration_unit] = ACTIONS(753), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(294)] = { - [sym_comment] = STATE(294), - [ts_builtin_sym_end] = ACTIONS(761), - [anon_sym_in] = ACTIONS(759), - [anon_sym_STAR_STAR] = ACTIONS(761), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_mod] = ACTIONS(761), - [anon_sym_SLASH_SLASH] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_bit_DASHshl] = ACTIONS(761), - [anon_sym_bit_DASHshr] = ACTIONS(761), - [anon_sym_EQ_TILDE] = ACTIONS(761), - [anon_sym_BANG_TILDE] = ACTIONS(761), - [anon_sym_like] = ACTIONS(761), - [anon_sym_not_DASHlike] = ACTIONS(761), - [anon_sym_bit_DASHand] = ACTIONS(761), - [anon_sym_bit_DASHxor] = ACTIONS(761), - [anon_sym_bit_DASHor] = ACTIONS(761), - [anon_sym_and] = ACTIONS(761), - [anon_sym_xor] = ACTIONS(761), - [anon_sym_or] = ACTIONS(761), - [anon_sym_in2] = ACTIONS(761), - [anon_sym_not_DASHin] = ACTIONS(761), - [anon_sym_has] = ACTIONS(761), - [anon_sym_not_DASHhas] = ACTIONS(761), - [anon_sym_starts_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), - [anon_sym_ends_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), - [anon_sym_EQ_EQ] = ACTIONS(761), - [anon_sym_BANG_EQ] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_LT_EQ] = ACTIONS(761), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_GT_EQ] = ACTIONS(761), - [aux_sym_cmd_identifier_token6] = ACTIONS(759), - [sym__newline] = ACTIONS(759), - [anon_sym_SEMI] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_err_GT_PIPE] = ACTIONS(759), - [anon_sym_out_GT_PIPE] = ACTIONS(759), - [anon_sym_e_GT_PIPE] = ACTIONS(759), - [anon_sym_o_GT_PIPE] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), - [anon_sym_GT2] = ACTIONS(759), - [anon_sym_DASH2] = ACTIONS(759), - [anon_sym_STAR2] = ACTIONS(759), - [anon_sym_and2] = ACTIONS(759), - [anon_sym_xor2] = ACTIONS(759), - [anon_sym_or2] = ACTIONS(759), - [anon_sym_not_DASHin2] = ACTIONS(759), - [anon_sym_has2] = ACTIONS(759), - [anon_sym_not_DASHhas2] = ACTIONS(759), - [anon_sym_starts_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), - [anon_sym_ends_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), - [anon_sym_EQ_EQ2] = ACTIONS(759), - [anon_sym_BANG_EQ2] = ACTIONS(759), - [anon_sym_LT2] = ACTIONS(759), - [anon_sym_LT_EQ2] = ACTIONS(759), - [anon_sym_GT_EQ2] = ACTIONS(759), - [anon_sym_EQ_TILDE2] = ACTIONS(759), - [anon_sym_BANG_TILDE2] = ACTIONS(759), - [anon_sym_like2] = ACTIONS(759), - [anon_sym_not_DASHlike2] = ACTIONS(759), - [anon_sym_STAR_STAR2] = ACTIONS(759), - [anon_sym_PLUS_PLUS2] = ACTIONS(759), - [anon_sym_SLASH2] = ACTIONS(759), - [anon_sym_mod2] = ACTIONS(759), - [anon_sym_SLASH_SLASH2] = ACTIONS(759), - [anon_sym_PLUS2] = ACTIONS(759), - [anon_sym_bit_DASHshl2] = ACTIONS(759), - [anon_sym_bit_DASHshr2] = ACTIONS(759), - [anon_sym_bit_DASHand2] = ACTIONS(759), - [anon_sym_bit_DASHxor2] = ACTIONS(759), - [anon_sym_bit_DASHor2] = ACTIONS(759), - [anon_sym_DOT_DOT2] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(761), + [293] = { + [sym_comment] = STATE(293), + [ts_builtin_sym_end] = ACTIONS(757), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), [aux_sym__immediate_decimal_token1] = ACTIONS(1348), [aux_sym__immediate_decimal_token5] = ACTIONS(1350), - [sym_filesize_unit] = ACTIONS(759), - [sym_duration_unit] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(295)] = { - [sym_comment] = STATE(295), - [anon_sym_in] = ACTIONS(751), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_like] = ACTIONS(753), - [anon_sym_not_DASHlike] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_in2] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_has] = ACTIONS(753), - [anon_sym_not_DASHhas] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_EQ] = ACTIONS(753), - [aux_sym_cmd_identifier_token6] = ACTIONS(751), - [sym__newline] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_err_GT_PIPE] = ACTIONS(751), - [anon_sym_out_GT_PIPE] = ACTIONS(751), - [anon_sym_e_GT_PIPE] = ACTIONS(751), - [anon_sym_o_GT_PIPE] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_GT2] = ACTIONS(751), - [anon_sym_DASH2] = ACTIONS(751), - [anon_sym_STAR2] = ACTIONS(751), - [anon_sym_and2] = ACTIONS(751), - [anon_sym_xor2] = ACTIONS(751), - [anon_sym_or2] = ACTIONS(751), - [anon_sym_not_DASHin2] = ACTIONS(751), - [anon_sym_has2] = ACTIONS(751), - [anon_sym_not_DASHhas2] = ACTIONS(751), - [anon_sym_starts_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), - [anon_sym_ends_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), - [anon_sym_EQ_EQ2] = ACTIONS(751), - [anon_sym_BANG_EQ2] = ACTIONS(751), - [anon_sym_LT2] = ACTIONS(751), - [anon_sym_LT_EQ2] = ACTIONS(751), - [anon_sym_GT_EQ2] = ACTIONS(751), - [anon_sym_EQ_TILDE2] = ACTIONS(751), - [anon_sym_BANG_TILDE2] = ACTIONS(751), - [anon_sym_like2] = ACTIONS(751), - [anon_sym_not_DASHlike2] = ACTIONS(751), - [anon_sym_STAR_STAR2] = ACTIONS(751), - [anon_sym_PLUS_PLUS2] = ACTIONS(751), - [anon_sym_SLASH2] = ACTIONS(751), - [anon_sym_mod2] = ACTIONS(751), - [anon_sym_SLASH_SLASH2] = ACTIONS(751), - [anon_sym_PLUS2] = ACTIONS(751), - [anon_sym_bit_DASHshl2] = ACTIONS(751), - [anon_sym_bit_DASHshr2] = ACTIONS(751), - [anon_sym_bit_DASHand2] = ACTIONS(751), - [anon_sym_bit_DASHxor2] = ACTIONS(751), - [anon_sym_bit_DASHor2] = ACTIONS(751), - [anon_sym_DOT_DOT2] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(753), + [294] = { + [sym_comment] = STATE(294), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token1] = ACTIONS(1352), [aux_sym__immediate_decimal_token5] = ACTIONS(1354), - [sym_filesize_unit] = ACTIONS(751), - [sym_duration_unit] = ACTIONS(753), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(296)] = { + [295] = { + [sym_comment] = STATE(295), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token1] = ACTIONS(1356), + [aux_sym__immediate_decimal_token5] = ACTIONS(1358), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_POUND] = ACTIONS(105), + }, + [296] = { [sym_comment] = STATE(296), - [ts_builtin_sym_end] = ACTIONS(753), - [anon_sym_in] = ACTIONS(751), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_like] = ACTIONS(753), - [anon_sym_not_DASHlike] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_in2] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_has] = ACTIONS(753), - [anon_sym_not_DASHhas] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_EQ] = ACTIONS(753), - [aux_sym_cmd_identifier_token6] = ACTIONS(751), - [sym__newline] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_err_GT_PIPE] = ACTIONS(751), - [anon_sym_out_GT_PIPE] = ACTIONS(751), - [anon_sym_e_GT_PIPE] = ACTIONS(751), - [anon_sym_o_GT_PIPE] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), - [anon_sym_GT2] = ACTIONS(751), - [anon_sym_DASH2] = ACTIONS(751), - [anon_sym_STAR2] = ACTIONS(751), - [anon_sym_and2] = ACTIONS(751), - [anon_sym_xor2] = ACTIONS(751), - [anon_sym_or2] = ACTIONS(751), - [anon_sym_not_DASHin2] = ACTIONS(751), - [anon_sym_has2] = ACTIONS(751), - [anon_sym_not_DASHhas2] = ACTIONS(751), - [anon_sym_starts_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), - [anon_sym_ends_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), - [anon_sym_EQ_EQ2] = ACTIONS(751), - [anon_sym_BANG_EQ2] = ACTIONS(751), - [anon_sym_LT2] = ACTIONS(751), - [anon_sym_LT_EQ2] = ACTIONS(751), - [anon_sym_GT_EQ2] = ACTIONS(751), - [anon_sym_EQ_TILDE2] = ACTIONS(751), - [anon_sym_BANG_TILDE2] = ACTIONS(751), - [anon_sym_like2] = ACTIONS(751), - [anon_sym_not_DASHlike2] = ACTIONS(751), - [anon_sym_STAR_STAR2] = ACTIONS(751), - [anon_sym_PLUS_PLUS2] = ACTIONS(751), - [anon_sym_SLASH2] = ACTIONS(751), - [anon_sym_mod2] = ACTIONS(751), - [anon_sym_SLASH_SLASH2] = ACTIONS(751), - [anon_sym_PLUS2] = ACTIONS(751), - [anon_sym_bit_DASHshl2] = ACTIONS(751), - [anon_sym_bit_DASHshr2] = ACTIONS(751), - [anon_sym_bit_DASHand2] = ACTIONS(751), - [anon_sym_bit_DASHxor2] = ACTIONS(751), - [anon_sym_bit_DASHor2] = ACTIONS(751), - [anon_sym_DOT_DOT2] = ACTIONS(751), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(753), - [aux_sym__immediate_decimal_token5] = ACTIONS(1346), - [sym_filesize_unit] = ACTIONS(751), - [sym_duration_unit] = ACTIONS(753), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_RPAREN] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(1338), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(297)] = { + [297] = { [sym_comment] = STATE(297), - [anon_sym_in] = ACTIONS(791), - [anon_sym_STAR_STAR] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_SLASH] = ACTIONS(791), - [anon_sym_mod] = ACTIONS(793), - [anon_sym_SLASH_SLASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_like] = ACTIONS(793), - [anon_sym_not_DASHlike] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_in2] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_has] = ACTIONS(793), - [anon_sym_not_DASHhas] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(793), - [aux_sym_cmd_identifier_token6] = ACTIONS(791), - [sym__newline] = ACTIONS(791), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_RPAREN] = ACTIONS(791), - [anon_sym_GT2] = ACTIONS(791), - [anon_sym_DASH2] = ACTIONS(791), - [anon_sym_STAR2] = ACTIONS(791), - [anon_sym_and2] = ACTIONS(791), - [anon_sym_xor2] = ACTIONS(791), - [anon_sym_or2] = ACTIONS(791), - [anon_sym_not_DASHin2] = ACTIONS(791), - [anon_sym_has2] = ACTIONS(791), - [anon_sym_not_DASHhas2] = ACTIONS(791), - [anon_sym_starts_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), - [anon_sym_ends_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), - [anon_sym_EQ_EQ2] = ACTIONS(791), - [anon_sym_BANG_EQ2] = ACTIONS(791), - [anon_sym_LT2] = ACTIONS(791), - [anon_sym_LT_EQ2] = ACTIONS(791), - [anon_sym_GT_EQ2] = ACTIONS(791), - [anon_sym_EQ_TILDE2] = ACTIONS(791), - [anon_sym_BANG_TILDE2] = ACTIONS(791), - [anon_sym_like2] = ACTIONS(791), - [anon_sym_not_DASHlike2] = ACTIONS(791), - [anon_sym_STAR_STAR2] = ACTIONS(791), - [anon_sym_PLUS_PLUS2] = ACTIONS(791), - [anon_sym_SLASH2] = ACTIONS(791), - [anon_sym_mod2] = ACTIONS(791), - [anon_sym_SLASH_SLASH2] = ACTIONS(791), - [anon_sym_PLUS2] = ACTIONS(791), - [anon_sym_bit_DASHshl2] = ACTIONS(791), - [anon_sym_bit_DASHshr2] = ACTIONS(791), - [anon_sym_bit_DASHand2] = ACTIONS(791), - [anon_sym_bit_DASHxor2] = ACTIONS(791), - [anon_sym_bit_DASHor2] = ACTIONS(791), - [anon_sym_DOT_DOT2] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(793), - [aux_sym__immediate_decimal_token5] = ACTIONS(1356), - [sym_filesize_unit] = ACTIONS(791), - [sym_duration_unit] = ACTIONS(793), + [ts_builtin_sym_end] = ACTIONS(765), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(1342), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(298)] = { + [298] = { [sym_comment] = STATE(298), - [anon_sym_in] = ACTIONS(759), - [anon_sym_STAR_STAR] = ACTIONS(761), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_mod] = ACTIONS(761), - [anon_sym_SLASH_SLASH] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_bit_DASHshl] = ACTIONS(761), - [anon_sym_bit_DASHshr] = ACTIONS(761), - [anon_sym_EQ_TILDE] = ACTIONS(761), - [anon_sym_BANG_TILDE] = ACTIONS(761), - [anon_sym_like] = ACTIONS(761), - [anon_sym_not_DASHlike] = ACTIONS(761), - [anon_sym_bit_DASHand] = ACTIONS(761), - [anon_sym_bit_DASHxor] = ACTIONS(761), - [anon_sym_bit_DASHor] = ACTIONS(761), - [anon_sym_and] = ACTIONS(761), - [anon_sym_xor] = ACTIONS(761), - [anon_sym_or] = ACTIONS(761), - [anon_sym_in2] = ACTIONS(761), - [anon_sym_not_DASHin] = ACTIONS(761), - [anon_sym_has] = ACTIONS(761), - [anon_sym_not_DASHhas] = ACTIONS(761), - [anon_sym_starts_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), - [anon_sym_ends_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), - [anon_sym_EQ_EQ] = ACTIONS(761), - [anon_sym_BANG_EQ] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_LT_EQ] = ACTIONS(761), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_GT_EQ] = ACTIONS(761), - [aux_sym_cmd_identifier_token6] = ACTIONS(759), - [sym__newline] = ACTIONS(759), - [anon_sym_SEMI] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_err_GT_PIPE] = ACTIONS(759), - [anon_sym_out_GT_PIPE] = ACTIONS(759), - [anon_sym_e_GT_PIPE] = ACTIONS(759), - [anon_sym_o_GT_PIPE] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), - [anon_sym_GT2] = ACTIONS(759), - [anon_sym_DASH2] = ACTIONS(759), - [anon_sym_STAR2] = ACTIONS(759), - [anon_sym_and2] = ACTIONS(759), - [anon_sym_xor2] = ACTIONS(759), - [anon_sym_or2] = ACTIONS(759), - [anon_sym_not_DASHin2] = ACTIONS(759), - [anon_sym_has2] = ACTIONS(759), - [anon_sym_not_DASHhas2] = ACTIONS(759), - [anon_sym_starts_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), - [anon_sym_ends_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), - [anon_sym_EQ_EQ2] = ACTIONS(759), - [anon_sym_BANG_EQ2] = ACTIONS(759), - [anon_sym_LT2] = ACTIONS(759), - [anon_sym_LT_EQ2] = ACTIONS(759), - [anon_sym_GT_EQ2] = ACTIONS(759), - [anon_sym_EQ_TILDE2] = ACTIONS(759), - [anon_sym_BANG_TILDE2] = ACTIONS(759), - [anon_sym_like2] = ACTIONS(759), - [anon_sym_not_DASHlike2] = ACTIONS(759), - [anon_sym_STAR_STAR2] = ACTIONS(759), - [anon_sym_PLUS_PLUS2] = ACTIONS(759), - [anon_sym_SLASH2] = ACTIONS(759), - [anon_sym_mod2] = ACTIONS(759), - [anon_sym_SLASH_SLASH2] = ACTIONS(759), - [anon_sym_PLUS2] = ACTIONS(759), - [anon_sym_bit_DASHshl2] = ACTIONS(759), - [anon_sym_bit_DASHshr2] = ACTIONS(759), - [anon_sym_bit_DASHand2] = ACTIONS(759), - [anon_sym_bit_DASHxor2] = ACTIONS(759), - [anon_sym_bit_DASHor2] = ACTIONS(759), - [anon_sym_DOT_DOT2] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(761), - [aux_sym__immediate_decimal_token1] = ACTIONS(1358), + [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(1360), - [sym_filesize_unit] = ACTIONS(759), - [sym_duration_unit] = ACTIONS(761), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(299)] = { + [299] = { [sym_comment] = STATE(299), - [anon_sym_in] = ACTIONS(791), - [anon_sym_STAR_STAR] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_SLASH] = ACTIONS(791), - [anon_sym_mod] = ACTIONS(793), - [anon_sym_SLASH_SLASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_like] = ACTIONS(793), - [anon_sym_not_DASHlike] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_in2] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_has] = ACTIONS(793), - [anon_sym_not_DASHhas] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(793), - [aux_sym_cmd_identifier_token6] = ACTIONS(791), - [sym__newline] = ACTIONS(791), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_GT2] = ACTIONS(791), - [anon_sym_DASH2] = ACTIONS(791), - [anon_sym_RBRACE] = ACTIONS(791), - [anon_sym_STAR2] = ACTIONS(791), - [anon_sym_and2] = ACTIONS(791), - [anon_sym_xor2] = ACTIONS(791), - [anon_sym_or2] = ACTIONS(791), - [anon_sym_not_DASHin2] = ACTIONS(791), - [anon_sym_has2] = ACTIONS(791), - [anon_sym_not_DASHhas2] = ACTIONS(791), - [anon_sym_starts_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), - [anon_sym_ends_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), - [anon_sym_EQ_EQ2] = ACTIONS(791), - [anon_sym_BANG_EQ2] = ACTIONS(791), - [anon_sym_LT2] = ACTIONS(791), - [anon_sym_LT_EQ2] = ACTIONS(791), - [anon_sym_GT_EQ2] = ACTIONS(791), - [anon_sym_EQ_TILDE2] = ACTIONS(791), - [anon_sym_BANG_TILDE2] = ACTIONS(791), - [anon_sym_like2] = ACTIONS(791), - [anon_sym_not_DASHlike2] = ACTIONS(791), - [anon_sym_STAR_STAR2] = ACTIONS(791), - [anon_sym_PLUS_PLUS2] = ACTIONS(791), - [anon_sym_SLASH2] = ACTIONS(791), - [anon_sym_mod2] = ACTIONS(791), - [anon_sym_SLASH_SLASH2] = ACTIONS(791), - [anon_sym_PLUS2] = ACTIONS(791), - [anon_sym_bit_DASHshl2] = ACTIONS(791), - [anon_sym_bit_DASHshr2] = ACTIONS(791), - [anon_sym_bit_DASHand2] = ACTIONS(791), - [anon_sym_bit_DASHxor2] = ACTIONS(791), - [anon_sym_bit_DASHor2] = ACTIONS(791), - [anon_sym_DOT_DOT2] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(793), - [aux_sym__immediate_decimal_token5] = ACTIONS(1362), - [sym_filesize_unit] = ACTIONS(791), - [sym_duration_unit] = ACTIONS(793), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_RBRACE] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(1346), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(300)] = { + [300] = { [sym_comment] = STATE(300), - [anon_sym_in] = ACTIONS(751), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_like] = ACTIONS(753), - [anon_sym_not_DASHlike] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_in2] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_has] = ACTIONS(753), - [anon_sym_not_DASHhas] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_EQ] = ACTIONS(753), - [aux_sym_cmd_identifier_token6] = ACTIONS(751), - [sym__newline] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_err_GT_PIPE] = ACTIONS(751), - [anon_sym_out_GT_PIPE] = ACTIONS(751), - [anon_sym_e_GT_PIPE] = ACTIONS(751), - [anon_sym_o_GT_PIPE] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), - [anon_sym_GT2] = ACTIONS(751), - [anon_sym_DASH2] = ACTIONS(751), - [anon_sym_RBRACE] = ACTIONS(751), - [anon_sym_STAR2] = ACTIONS(751), - [anon_sym_and2] = ACTIONS(751), - [anon_sym_xor2] = ACTIONS(751), - [anon_sym_or2] = ACTIONS(751), - [anon_sym_not_DASHin2] = ACTIONS(751), - [anon_sym_has2] = ACTIONS(751), - [anon_sym_not_DASHhas2] = ACTIONS(751), - [anon_sym_starts_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), - [anon_sym_ends_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), - [anon_sym_EQ_EQ2] = ACTIONS(751), - [anon_sym_BANG_EQ2] = ACTIONS(751), - [anon_sym_LT2] = ACTIONS(751), - [anon_sym_LT_EQ2] = ACTIONS(751), - [anon_sym_GT_EQ2] = ACTIONS(751), - [anon_sym_EQ_TILDE2] = ACTIONS(751), - [anon_sym_BANG_TILDE2] = ACTIONS(751), - [anon_sym_like2] = ACTIONS(751), - [anon_sym_not_DASHlike2] = ACTIONS(751), - [anon_sym_STAR_STAR2] = ACTIONS(751), - [anon_sym_PLUS_PLUS2] = ACTIONS(751), - [anon_sym_SLASH2] = ACTIONS(751), - [anon_sym_mod2] = ACTIONS(751), - [anon_sym_SLASH_SLASH2] = ACTIONS(751), - [anon_sym_PLUS2] = ACTIONS(751), - [anon_sym_bit_DASHshl2] = ACTIONS(751), - [anon_sym_bit_DASHshr2] = ACTIONS(751), - [anon_sym_bit_DASHand2] = ACTIONS(751), - [anon_sym_bit_DASHxor2] = ACTIONS(751), - [anon_sym_bit_DASHor2] = ACTIONS(751), - [anon_sym_DOT_DOT2] = ACTIONS(751), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(753), - [aux_sym__immediate_decimal_token5] = ACTIONS(1342), - [sym_filesize_unit] = ACTIONS(751), - [sym_duration_unit] = ACTIONS(753), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token1] = ACTIONS(1362), + [aux_sym__immediate_decimal_token5] = ACTIONS(1364), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(301)] = { + [301] = { [sym_comment] = STATE(301), - [ts_builtin_sym_end] = ACTIONS(793), - [anon_sym_in] = ACTIONS(791), - [anon_sym_STAR_STAR] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_SLASH] = ACTIONS(791), - [anon_sym_mod] = ACTIONS(793), - [anon_sym_SLASH_SLASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_like] = ACTIONS(793), - [anon_sym_not_DASHlike] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_in2] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_has] = ACTIONS(793), - [anon_sym_not_DASHhas] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(793), - [aux_sym_cmd_identifier_token6] = ACTIONS(791), - [sym__newline] = ACTIONS(791), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_GT2] = ACTIONS(791), - [anon_sym_DASH2] = ACTIONS(791), - [anon_sym_STAR2] = ACTIONS(791), - [anon_sym_and2] = ACTIONS(791), - [anon_sym_xor2] = ACTIONS(791), - [anon_sym_or2] = ACTIONS(791), - [anon_sym_not_DASHin2] = ACTIONS(791), - [anon_sym_has2] = ACTIONS(791), - [anon_sym_not_DASHhas2] = ACTIONS(791), - [anon_sym_starts_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), - [anon_sym_ends_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), - [anon_sym_EQ_EQ2] = ACTIONS(791), - [anon_sym_BANG_EQ2] = ACTIONS(791), - [anon_sym_LT2] = ACTIONS(791), - [anon_sym_LT_EQ2] = ACTIONS(791), - [anon_sym_GT_EQ2] = ACTIONS(791), - [anon_sym_EQ_TILDE2] = ACTIONS(791), - [anon_sym_BANG_TILDE2] = ACTIONS(791), - [anon_sym_like2] = ACTIONS(791), - [anon_sym_not_DASHlike2] = ACTIONS(791), - [anon_sym_STAR_STAR2] = ACTIONS(791), - [anon_sym_PLUS_PLUS2] = ACTIONS(791), - [anon_sym_SLASH2] = ACTIONS(791), - [anon_sym_mod2] = ACTIONS(791), - [anon_sym_SLASH_SLASH2] = ACTIONS(791), - [anon_sym_PLUS2] = ACTIONS(791), - [anon_sym_bit_DASHshl2] = ACTIONS(791), - [anon_sym_bit_DASHshr2] = ACTIONS(791), - [anon_sym_bit_DASHand2] = ACTIONS(791), - [anon_sym_bit_DASHxor2] = ACTIONS(791), - [anon_sym_bit_DASHor2] = ACTIONS(791), - [anon_sym_DOT_DOT2] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(793), - [aux_sym__immediate_decimal_token5] = ACTIONS(1364), - [sym_filesize_unit] = ACTIONS(791), - [sym_duration_unit] = ACTIONS(793), + [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(1366), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(302)] = { + [302] = { [sym_comment] = STATE(302), - [anon_sym_in] = ACTIONS(751), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_like] = ACTIONS(753), - [anon_sym_not_DASHlike] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_in2] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_has] = ACTIONS(753), - [anon_sym_not_DASHhas] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_EQ] = ACTIONS(753), - [aux_sym_cmd_identifier_token6] = ACTIONS(751), - [sym__newline] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_err_GT_PIPE] = ACTIONS(751), - [anon_sym_out_GT_PIPE] = ACTIONS(751), - [anon_sym_e_GT_PIPE] = ACTIONS(751), - [anon_sym_o_GT_PIPE] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), - [anon_sym_GT2] = ACTIONS(751), - [anon_sym_DASH2] = ACTIONS(751), - [anon_sym_STAR2] = ACTIONS(751), - [anon_sym_and2] = ACTIONS(751), - [anon_sym_xor2] = ACTIONS(751), - [anon_sym_or2] = ACTIONS(751), - [anon_sym_not_DASHin2] = ACTIONS(751), - [anon_sym_has2] = ACTIONS(751), - [anon_sym_not_DASHhas2] = ACTIONS(751), - [anon_sym_starts_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), - [anon_sym_ends_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), - [anon_sym_EQ_EQ2] = ACTIONS(751), - [anon_sym_BANG_EQ2] = ACTIONS(751), - [anon_sym_LT2] = ACTIONS(751), - [anon_sym_LT_EQ2] = ACTIONS(751), - [anon_sym_GT_EQ2] = ACTIONS(751), - [anon_sym_EQ_TILDE2] = ACTIONS(751), - [anon_sym_BANG_TILDE2] = ACTIONS(751), - [anon_sym_like2] = ACTIONS(751), - [anon_sym_not_DASHlike2] = ACTIONS(751), - [anon_sym_STAR_STAR2] = ACTIONS(751), - [anon_sym_PLUS_PLUS2] = ACTIONS(751), - [anon_sym_SLASH2] = ACTIONS(751), - [anon_sym_mod2] = ACTIONS(751), - [anon_sym_SLASH_SLASH2] = ACTIONS(751), - [anon_sym_PLUS2] = ACTIONS(751), - [anon_sym_bit_DASHshl2] = ACTIONS(751), - [anon_sym_bit_DASHshr2] = ACTIONS(751), - [anon_sym_bit_DASHand2] = ACTIONS(751), - [anon_sym_bit_DASHxor2] = ACTIONS(751), - [anon_sym_bit_DASHor2] = ACTIONS(751), - [anon_sym_DOT_DOT2] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(1366), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(753), - [aux_sym__immediate_decimal_token5] = ACTIONS(1368), - [sym_filesize_unit] = ACTIONS(751), - [sym_duration_unit] = ACTIONS(753), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(1370), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(303)] = { + [303] = { [sym_comment] = STATE(303), - [anon_sym_in] = ACTIONS(751), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_like] = ACTIONS(753), - [anon_sym_not_DASHlike] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_in2] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_has] = ACTIONS(753), - [anon_sym_not_DASHhas] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_EQ] = ACTIONS(753), - [aux_sym_cmd_identifier_token6] = ACTIONS(751), - [sym__newline] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_err_GT_PIPE] = ACTIONS(751), - [anon_sym_out_GT_PIPE] = ACTIONS(751), - [anon_sym_e_GT_PIPE] = ACTIONS(751), - [anon_sym_o_GT_PIPE] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_GT2] = ACTIONS(751), - [anon_sym_DASH2] = ACTIONS(751), - [anon_sym_STAR2] = ACTIONS(751), - [anon_sym_and2] = ACTIONS(751), - [anon_sym_xor2] = ACTIONS(751), - [anon_sym_or2] = ACTIONS(751), - [anon_sym_not_DASHin2] = ACTIONS(751), - [anon_sym_has2] = ACTIONS(751), - [anon_sym_not_DASHhas2] = ACTIONS(751), - [anon_sym_starts_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), - [anon_sym_ends_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), - [anon_sym_EQ_EQ2] = ACTIONS(751), - [anon_sym_BANG_EQ2] = ACTIONS(751), - [anon_sym_LT2] = ACTIONS(751), - [anon_sym_LT_EQ2] = ACTIONS(751), - [anon_sym_GT_EQ2] = ACTIONS(751), - [anon_sym_EQ_TILDE2] = ACTIONS(751), - [anon_sym_BANG_TILDE2] = ACTIONS(751), - [anon_sym_like2] = ACTIONS(751), - [anon_sym_not_DASHlike2] = ACTIONS(751), - [anon_sym_STAR_STAR2] = ACTIONS(751), - [anon_sym_PLUS_PLUS2] = ACTIONS(751), - [anon_sym_SLASH2] = ACTIONS(751), - [anon_sym_mod2] = ACTIONS(751), - [anon_sym_SLASH_SLASH2] = ACTIONS(751), - [anon_sym_PLUS2] = ACTIONS(751), - [anon_sym_bit_DASHshl2] = ACTIONS(751), - [anon_sym_bit_DASHshr2] = ACTIONS(751), - [anon_sym_bit_DASHand2] = ACTIONS(751), - [anon_sym_bit_DASHxor2] = ACTIONS(751), - [anon_sym_bit_DASHor2] = ACTIONS(751), - [anon_sym_DOT_DOT2] = ACTIONS(751), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(753), - [aux_sym__immediate_decimal_token5] = ACTIONS(1354), - [sym_filesize_unit] = ACTIONS(751), - [sym_duration_unit] = ACTIONS(753), + [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(1372), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(304)] = { + [304] = { [sym_comment] = STATE(304), - [ts_builtin_sym_end] = ACTIONS(805), - [anon_sym_in] = ACTIONS(803), - [anon_sym_STAR_STAR] = ACTIONS(805), - [anon_sym_PLUS_PLUS] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(803), - [anon_sym_mod] = ACTIONS(805), - [anon_sym_SLASH_SLASH] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(803), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_bit_DASHshl] = ACTIONS(805), - [anon_sym_bit_DASHshr] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(805), - [anon_sym_BANG_TILDE] = ACTIONS(805), - [anon_sym_like] = ACTIONS(805), - [anon_sym_not_DASHlike] = ACTIONS(805), - [anon_sym_bit_DASHand] = ACTIONS(805), - [anon_sym_bit_DASHxor] = ACTIONS(805), - [anon_sym_bit_DASHor] = ACTIONS(805), - [anon_sym_and] = ACTIONS(805), - [anon_sym_xor] = ACTIONS(805), - [anon_sym_or] = ACTIONS(805), - [anon_sym_in2] = ACTIONS(805), - [anon_sym_not_DASHin] = ACTIONS(805), - [anon_sym_has] = ACTIONS(805), - [anon_sym_not_DASHhas] = ACTIONS(805), - [anon_sym_starts_DASHwith] = ACTIONS(805), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(805), - [anon_sym_ends_DASHwith] = ACTIONS(805), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(805), - [anon_sym_EQ_EQ] = ACTIONS(805), - [anon_sym_BANG_EQ] = ACTIONS(805), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_LT_EQ] = ACTIONS(805), - [anon_sym_GT] = ACTIONS(803), - [anon_sym_GT_EQ] = ACTIONS(805), - [aux_sym_cmd_identifier_token6] = ACTIONS(803), - [sym__newline] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_PIPE] = ACTIONS(803), - [anon_sym_err_GT_PIPE] = ACTIONS(803), - [anon_sym_out_GT_PIPE] = ACTIONS(803), - [anon_sym_e_GT_PIPE] = ACTIONS(803), - [anon_sym_o_GT_PIPE] = ACTIONS(803), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(803), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(803), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(803), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(803), - [anon_sym_GT2] = ACTIONS(803), - [anon_sym_DASH2] = ACTIONS(803), - [anon_sym_STAR2] = ACTIONS(803), - [anon_sym_and2] = ACTIONS(803), - [anon_sym_xor2] = ACTIONS(803), - [anon_sym_or2] = ACTIONS(803), - [anon_sym_not_DASHin2] = ACTIONS(803), - [anon_sym_has2] = ACTIONS(803), - [anon_sym_not_DASHhas2] = ACTIONS(803), - [anon_sym_starts_DASHwith2] = ACTIONS(803), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(803), - [anon_sym_ends_DASHwith2] = ACTIONS(803), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(803), - [anon_sym_EQ_EQ2] = ACTIONS(803), - [anon_sym_BANG_EQ2] = ACTIONS(803), - [anon_sym_LT2] = ACTIONS(803), - [anon_sym_LT_EQ2] = ACTIONS(803), - [anon_sym_GT_EQ2] = ACTIONS(803), - [anon_sym_EQ_TILDE2] = ACTIONS(803), - [anon_sym_BANG_TILDE2] = ACTIONS(803), - [anon_sym_like2] = ACTIONS(803), - [anon_sym_not_DASHlike2] = ACTIONS(803), - [anon_sym_STAR_STAR2] = ACTIONS(803), - [anon_sym_PLUS_PLUS2] = ACTIONS(803), - [anon_sym_SLASH2] = ACTIONS(803), - [anon_sym_mod2] = ACTIONS(803), - [anon_sym_SLASH_SLASH2] = ACTIONS(803), - [anon_sym_PLUS2] = ACTIONS(803), - [anon_sym_bit_DASHshl2] = ACTIONS(803), - [anon_sym_bit_DASHshr2] = ACTIONS(803), - [anon_sym_bit_DASHand2] = ACTIONS(803), - [anon_sym_bit_DASHxor2] = ACTIONS(803), - [anon_sym_bit_DASHor2] = ACTIONS(803), - [anon_sym_DOT_DOT2] = ACTIONS(803), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(805), - [anon_sym_DOT_DOT_LT2] = ACTIONS(805), - [sym_filesize_unit] = ACTIONS(803), - [sym_duration_unit] = ACTIONS(805), + [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(1374), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(305)] = { + [305] = { [sym_comment] = STATE(305), - [anon_sym_in] = ACTIONS(803), - [anon_sym_STAR_STAR] = ACTIONS(805), - [anon_sym_PLUS_PLUS] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(803), - [anon_sym_mod] = ACTIONS(805), - [anon_sym_SLASH_SLASH] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(803), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_bit_DASHshl] = ACTIONS(805), - [anon_sym_bit_DASHshr] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(805), - [anon_sym_BANG_TILDE] = ACTIONS(805), - [anon_sym_like] = ACTIONS(805), - [anon_sym_not_DASHlike] = ACTIONS(805), - [anon_sym_bit_DASHand] = ACTIONS(805), - [anon_sym_bit_DASHxor] = ACTIONS(805), - [anon_sym_bit_DASHor] = ACTIONS(805), - [anon_sym_and] = ACTIONS(805), - [anon_sym_xor] = ACTIONS(805), - [anon_sym_or] = ACTIONS(805), - [anon_sym_in2] = ACTIONS(805), - [anon_sym_not_DASHin] = ACTIONS(805), - [anon_sym_has] = ACTIONS(805), - [anon_sym_not_DASHhas] = ACTIONS(805), - [anon_sym_starts_DASHwith] = ACTIONS(805), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(805), - [anon_sym_ends_DASHwith] = ACTIONS(805), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(805), - [anon_sym_EQ_EQ] = ACTIONS(805), - [anon_sym_BANG_EQ] = ACTIONS(805), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_LT_EQ] = ACTIONS(805), - [anon_sym_GT] = ACTIONS(803), - [anon_sym_GT_EQ] = ACTIONS(805), - [aux_sym_cmd_identifier_token6] = ACTIONS(803), - [sym__newline] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_PIPE] = ACTIONS(803), - [anon_sym_err_GT_PIPE] = ACTIONS(803), - [anon_sym_out_GT_PIPE] = ACTIONS(803), - [anon_sym_e_GT_PIPE] = ACTIONS(803), - [anon_sym_o_GT_PIPE] = ACTIONS(803), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(803), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(803), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(803), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(803), - [anon_sym_RPAREN] = ACTIONS(803), - [anon_sym_GT2] = ACTIONS(803), - [anon_sym_DASH2] = ACTIONS(803), - [anon_sym_STAR2] = ACTIONS(803), - [anon_sym_and2] = ACTIONS(803), - [anon_sym_xor2] = ACTIONS(803), - [anon_sym_or2] = ACTIONS(803), - [anon_sym_not_DASHin2] = ACTIONS(803), - [anon_sym_has2] = ACTIONS(803), - [anon_sym_not_DASHhas2] = ACTIONS(803), - [anon_sym_starts_DASHwith2] = ACTIONS(803), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(803), - [anon_sym_ends_DASHwith2] = ACTIONS(803), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(803), - [anon_sym_EQ_EQ2] = ACTIONS(803), - [anon_sym_BANG_EQ2] = ACTIONS(803), - [anon_sym_LT2] = ACTIONS(803), - [anon_sym_LT_EQ2] = ACTIONS(803), - [anon_sym_GT_EQ2] = ACTIONS(803), - [anon_sym_EQ_TILDE2] = ACTIONS(803), - [anon_sym_BANG_TILDE2] = ACTIONS(803), - [anon_sym_like2] = ACTIONS(803), - [anon_sym_not_DASHlike2] = ACTIONS(803), - [anon_sym_STAR_STAR2] = ACTIONS(803), - [anon_sym_PLUS_PLUS2] = ACTIONS(803), - [anon_sym_SLASH2] = ACTIONS(803), - [anon_sym_mod2] = ACTIONS(803), - [anon_sym_SLASH_SLASH2] = ACTIONS(803), - [anon_sym_PLUS2] = ACTIONS(803), - [anon_sym_bit_DASHshl2] = ACTIONS(803), - [anon_sym_bit_DASHshr2] = ACTIONS(803), - [anon_sym_bit_DASHand2] = ACTIONS(803), - [anon_sym_bit_DASHxor2] = ACTIONS(803), - [anon_sym_bit_DASHor2] = ACTIONS(803), - [anon_sym_DOT_DOT2] = ACTIONS(803), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(805), - [anon_sym_DOT_DOT_LT2] = ACTIONS(805), - [sym_filesize_unit] = ACTIONS(803), - [sym_duration_unit] = ACTIONS(805), + [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(105), }, - [STATE(306)] = { + [306] = { [sym_comment] = STATE(306), - [anon_sym_in] = ACTIONS(759), - [anon_sym_STAR_STAR] = ACTIONS(761), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_mod] = ACTIONS(761), - [anon_sym_SLASH_SLASH] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_bit_DASHshl] = ACTIONS(761), - [anon_sym_bit_DASHshr] = ACTIONS(761), - [anon_sym_EQ_TILDE] = ACTIONS(761), - [anon_sym_BANG_TILDE] = ACTIONS(761), - [anon_sym_like] = ACTIONS(761), - [anon_sym_not_DASHlike] = ACTIONS(761), - [anon_sym_bit_DASHand] = ACTIONS(761), - [anon_sym_bit_DASHxor] = ACTIONS(761), - [anon_sym_bit_DASHor] = ACTIONS(761), - [anon_sym_and] = ACTIONS(761), - [anon_sym_xor] = ACTIONS(761), - [anon_sym_or] = ACTIONS(761), - [anon_sym_in2] = ACTIONS(761), - [anon_sym_not_DASHin] = ACTIONS(761), - [anon_sym_has] = ACTIONS(761), - [anon_sym_not_DASHhas] = ACTIONS(761), - [anon_sym_starts_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), - [anon_sym_ends_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), - [anon_sym_EQ_EQ] = ACTIONS(761), - [anon_sym_BANG_EQ] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_LT_EQ] = ACTIONS(761), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_GT_EQ] = ACTIONS(761), - [aux_sym_cmd_identifier_token6] = ACTIONS(759), - [sym__newline] = ACTIONS(759), - [anon_sym_SEMI] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_err_GT_PIPE] = ACTIONS(759), - [anon_sym_out_GT_PIPE] = ACTIONS(759), - [anon_sym_e_GT_PIPE] = ACTIONS(759), - [anon_sym_o_GT_PIPE] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), - [anon_sym_GT2] = ACTIONS(759), - [anon_sym_DASH2] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(759), - [anon_sym_STAR2] = ACTIONS(759), - [anon_sym_and2] = ACTIONS(759), - [anon_sym_xor2] = ACTIONS(759), - [anon_sym_or2] = ACTIONS(759), - [anon_sym_not_DASHin2] = ACTIONS(759), - [anon_sym_has2] = ACTIONS(759), - [anon_sym_not_DASHhas2] = ACTIONS(759), - [anon_sym_starts_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), - [anon_sym_ends_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), - [anon_sym_EQ_EQ2] = ACTIONS(759), - [anon_sym_BANG_EQ2] = ACTIONS(759), - [anon_sym_LT2] = ACTIONS(759), - [anon_sym_LT_EQ2] = ACTIONS(759), - [anon_sym_GT_EQ2] = ACTIONS(759), - [anon_sym_EQ_TILDE2] = ACTIONS(759), - [anon_sym_BANG_TILDE2] = ACTIONS(759), - [anon_sym_like2] = ACTIONS(759), - [anon_sym_not_DASHlike2] = ACTIONS(759), - [anon_sym_STAR_STAR2] = ACTIONS(759), - [anon_sym_PLUS_PLUS2] = ACTIONS(759), - [anon_sym_SLASH2] = ACTIONS(759), - [anon_sym_mod2] = ACTIONS(759), - [anon_sym_SLASH_SLASH2] = ACTIONS(759), - [anon_sym_PLUS2] = ACTIONS(759), - [anon_sym_bit_DASHshl2] = ACTIONS(759), - [anon_sym_bit_DASHshr2] = ACTIONS(759), - [anon_sym_bit_DASHand2] = ACTIONS(759), - [anon_sym_bit_DASHxor2] = ACTIONS(759), - [anon_sym_bit_DASHor2] = ACTIONS(759), - [anon_sym_DOT_DOT2] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(761), - [sym_filesize_unit] = ACTIONS(759), - [sym_duration_unit] = ACTIONS(761), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(1370), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(307)] = { + [307] = { [sym_comment] = STATE(307), + [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(105), + }, + [308] = { + [sym_comment] = STATE(308), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT] = ACTIONS(1376), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(1378), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(105), + }, + [309] = { + [sym_comment] = STATE(309), [anon_sym_in] = ACTIONS(811), - [anon_sym_STAR_STAR] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_mod] = ACTIONS(904), - [anon_sym_SLASH_SLASH] = ACTIONS(904), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_bit_DASHshl] = ACTIONS(904), - [anon_sym_bit_DASHshr] = ACTIONS(904), - [anon_sym_EQ_TILDE] = ACTIONS(904), - [anon_sym_BANG_TILDE] = ACTIONS(904), - [anon_sym_like] = ACTIONS(904), - [anon_sym_not_DASHlike] = ACTIONS(904), - [anon_sym_bit_DASHand] = ACTIONS(904), - [anon_sym_bit_DASHxor] = ACTIONS(904), - [anon_sym_bit_DASHor] = ACTIONS(904), - [anon_sym_and] = ACTIONS(904), - [anon_sym_xor] = ACTIONS(904), - [anon_sym_or] = ACTIONS(904), - [anon_sym_in2] = ACTIONS(904), - [anon_sym_not_DASHin] = ACTIONS(904), - [anon_sym_has] = ACTIONS(904), - [anon_sym_not_DASHhas] = ACTIONS(904), - [anon_sym_starts_DASHwith] = ACTIONS(904), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(904), - [anon_sym_ends_DASHwith] = ACTIONS(904), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(904), - [anon_sym_BANG_EQ] = ACTIONS(904), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_LT_EQ] = ACTIONS(904), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(904), - [aux_sym_cmd_identifier_token6] = ACTIONS(908), + [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(811), [anon_sym_SEMI] = ACTIONS(811), [anon_sym_PIPE] = ACTIONS(811), @@ -73103,49 +73231,499 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(819), [anon_sym_DOT_DOT_EQ2] = ACTIONS(821), [anon_sym_DOT_DOT_LT2] = ACTIONS(821), - [sym_filesize_unit] = ACTIONS(1370), - [sym_duration_unit] = ACTIONS(1372), + [sym_filesize_unit] = ACTIONS(1380), + [sym_duration_unit] = ACTIONS(1382), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(308)] = { - [sym_comment] = STATE(308), - [ts_builtin_sym_end] = ACTIONS(914), + [310] = { + [sym_comment] = STATE(310), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_in] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_mod] = ACTIONS(803), + [anon_sym_SLASH_SLASH] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(803), + [anon_sym_bit_DASHshl] = ACTIONS(803), + [anon_sym_bit_DASHshr] = ACTIONS(803), + [anon_sym_EQ_TILDE] = ACTIONS(803), + [anon_sym_BANG_TILDE] = ACTIONS(803), + [anon_sym_like] = ACTIONS(803), + [anon_sym_not_DASHlike] = ACTIONS(803), + [anon_sym_bit_DASHand] = ACTIONS(803), + [anon_sym_bit_DASHxor] = ACTIONS(803), + [anon_sym_bit_DASHor] = ACTIONS(803), + [anon_sym_and] = ACTIONS(803), + [anon_sym_xor] = ACTIONS(803), + [anon_sym_or] = ACTIONS(803), + [anon_sym_in2] = ACTIONS(803), + [anon_sym_not_DASHin] = ACTIONS(803), + [anon_sym_has] = ACTIONS(803), + [anon_sym_not_DASHhas] = ACTIONS(803), + [anon_sym_starts_DASHwith] = ACTIONS(803), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(803), + [anon_sym_ends_DASHwith] = ACTIONS(803), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(803), + [anon_sym_EQ_EQ] = ACTIONS(803), + [anon_sym_BANG_EQ] = ACTIONS(803), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(803), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(803), + [aux_sym_cmd_identifier_token6] = ACTIONS(801), + [sym__newline] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_err_GT_PIPE] = ACTIONS(801), + [anon_sym_out_GT_PIPE] = ACTIONS(801), + [anon_sym_e_GT_PIPE] = ACTIONS(801), + [anon_sym_o_GT_PIPE] = ACTIONS(801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(801), + [anon_sym_GT2] = ACTIONS(801), + [anon_sym_DASH2] = ACTIONS(801), + [anon_sym_STAR2] = ACTIONS(801), + [anon_sym_and2] = ACTIONS(801), + [anon_sym_xor2] = ACTIONS(801), + [anon_sym_or2] = ACTIONS(801), + [anon_sym_not_DASHin2] = ACTIONS(801), + [anon_sym_has2] = ACTIONS(801), + [anon_sym_not_DASHhas2] = ACTIONS(801), + [anon_sym_starts_DASHwith2] = ACTIONS(801), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(801), + [anon_sym_ends_DASHwith2] = ACTIONS(801), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(801), + [anon_sym_EQ_EQ2] = ACTIONS(801), + [anon_sym_BANG_EQ2] = ACTIONS(801), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ2] = ACTIONS(801), + [anon_sym_GT_EQ2] = ACTIONS(801), + [anon_sym_EQ_TILDE2] = ACTIONS(801), + [anon_sym_BANG_TILDE2] = ACTIONS(801), + [anon_sym_like2] = ACTIONS(801), + [anon_sym_not_DASHlike2] = ACTIONS(801), + [anon_sym_STAR_STAR2] = ACTIONS(801), + [anon_sym_PLUS_PLUS2] = ACTIONS(801), + [anon_sym_SLASH2] = ACTIONS(801), + [anon_sym_mod2] = ACTIONS(801), + [anon_sym_SLASH_SLASH2] = ACTIONS(801), + [anon_sym_PLUS2] = ACTIONS(801), + [anon_sym_bit_DASHshl2] = ACTIONS(801), + [anon_sym_bit_DASHshr2] = ACTIONS(801), + [anon_sym_bit_DASHand2] = ACTIONS(801), + [anon_sym_bit_DASHxor2] = ACTIONS(801), + [anon_sym_bit_DASHor2] = ACTIONS(801), + [anon_sym_DOT_DOT2] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), + [anon_sym_DOT_DOT_LT2] = ACTIONS(803), + [sym_filesize_unit] = ACTIONS(801), + [sym_duration_unit] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(105), + }, + [311] = { + [sym_comment] = STATE(311), + [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(105), + }, + [312] = { + [sym_comment] = STATE(312), + [ts_builtin_sym_end] = ACTIONS(757), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_POUND] = ACTIONS(105), + }, + [313] = { + [sym_comment] = STATE(313), + [anon_sym_in] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_mod] = ACTIONS(803), + [anon_sym_SLASH_SLASH] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(803), + [anon_sym_bit_DASHshl] = ACTIONS(803), + [anon_sym_bit_DASHshr] = ACTIONS(803), + [anon_sym_EQ_TILDE] = ACTIONS(803), + [anon_sym_BANG_TILDE] = ACTIONS(803), + [anon_sym_like] = ACTIONS(803), + [anon_sym_not_DASHlike] = ACTIONS(803), + [anon_sym_bit_DASHand] = ACTIONS(803), + [anon_sym_bit_DASHxor] = ACTIONS(803), + [anon_sym_bit_DASHor] = ACTIONS(803), + [anon_sym_and] = ACTIONS(803), + [anon_sym_xor] = ACTIONS(803), + [anon_sym_or] = ACTIONS(803), + [anon_sym_in2] = ACTIONS(803), + [anon_sym_not_DASHin] = ACTIONS(803), + [anon_sym_has] = ACTIONS(803), + [anon_sym_not_DASHhas] = ACTIONS(803), + [anon_sym_starts_DASHwith] = ACTIONS(803), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(803), + [anon_sym_ends_DASHwith] = ACTIONS(803), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(803), + [anon_sym_EQ_EQ] = ACTIONS(803), + [anon_sym_BANG_EQ] = ACTIONS(803), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(803), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(803), + [aux_sym_cmd_identifier_token6] = ACTIONS(801), + [sym__newline] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_err_GT_PIPE] = ACTIONS(801), + [anon_sym_out_GT_PIPE] = ACTIONS(801), + [anon_sym_e_GT_PIPE] = ACTIONS(801), + [anon_sym_o_GT_PIPE] = ACTIONS(801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_GT2] = ACTIONS(801), + [anon_sym_DASH2] = ACTIONS(801), + [anon_sym_STAR2] = ACTIONS(801), + [anon_sym_and2] = ACTIONS(801), + [anon_sym_xor2] = ACTIONS(801), + [anon_sym_or2] = ACTIONS(801), + [anon_sym_not_DASHin2] = ACTIONS(801), + [anon_sym_has2] = ACTIONS(801), + [anon_sym_not_DASHhas2] = ACTIONS(801), + [anon_sym_starts_DASHwith2] = ACTIONS(801), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(801), + [anon_sym_ends_DASHwith2] = ACTIONS(801), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(801), + [anon_sym_EQ_EQ2] = ACTIONS(801), + [anon_sym_BANG_EQ2] = ACTIONS(801), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ2] = ACTIONS(801), + [anon_sym_GT_EQ2] = ACTIONS(801), + [anon_sym_EQ_TILDE2] = ACTIONS(801), + [anon_sym_BANG_TILDE2] = ACTIONS(801), + [anon_sym_like2] = ACTIONS(801), + [anon_sym_not_DASHlike2] = ACTIONS(801), + [anon_sym_STAR_STAR2] = ACTIONS(801), + [anon_sym_PLUS_PLUS2] = ACTIONS(801), + [anon_sym_SLASH2] = ACTIONS(801), + [anon_sym_mod2] = ACTIONS(801), + [anon_sym_SLASH_SLASH2] = ACTIONS(801), + [anon_sym_PLUS2] = ACTIONS(801), + [anon_sym_bit_DASHshl2] = ACTIONS(801), + [anon_sym_bit_DASHshr2] = ACTIONS(801), + [anon_sym_bit_DASHand2] = ACTIONS(801), + [anon_sym_bit_DASHxor2] = ACTIONS(801), + [anon_sym_bit_DASHor2] = ACTIONS(801), + [anon_sym_DOT_DOT2] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), + [anon_sym_DOT_DOT_LT2] = ACTIONS(803), + [sym_filesize_unit] = ACTIONS(801), + [sym_duration_unit] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(105), + }, + [314] = { + [sym_comment] = STATE(314), + [anon_sym_in] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_mod] = ACTIONS(803), + [anon_sym_SLASH_SLASH] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(803), + [anon_sym_bit_DASHshl] = ACTIONS(803), + [anon_sym_bit_DASHshr] = ACTIONS(803), + [anon_sym_EQ_TILDE] = ACTIONS(803), + [anon_sym_BANG_TILDE] = ACTIONS(803), + [anon_sym_like] = ACTIONS(803), + [anon_sym_not_DASHlike] = ACTIONS(803), + [anon_sym_bit_DASHand] = ACTIONS(803), + [anon_sym_bit_DASHxor] = ACTIONS(803), + [anon_sym_bit_DASHor] = ACTIONS(803), + [anon_sym_and] = ACTIONS(803), + [anon_sym_xor] = ACTIONS(803), + [anon_sym_or] = ACTIONS(803), + [anon_sym_in2] = ACTIONS(803), + [anon_sym_not_DASHin] = ACTIONS(803), + [anon_sym_has] = ACTIONS(803), + [anon_sym_not_DASHhas] = ACTIONS(803), + [anon_sym_starts_DASHwith] = ACTIONS(803), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(803), + [anon_sym_ends_DASHwith] = ACTIONS(803), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(803), + [anon_sym_EQ_EQ] = ACTIONS(803), + [anon_sym_BANG_EQ] = ACTIONS(803), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(803), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(803), + [aux_sym_cmd_identifier_token6] = ACTIONS(801), + [sym__newline] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_err_GT_PIPE] = ACTIONS(801), + [anon_sym_out_GT_PIPE] = ACTIONS(801), + [anon_sym_e_GT_PIPE] = ACTIONS(801), + [anon_sym_o_GT_PIPE] = ACTIONS(801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(801), + [anon_sym_GT2] = ACTIONS(801), + [anon_sym_DASH2] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_STAR2] = ACTIONS(801), + [anon_sym_and2] = ACTIONS(801), + [anon_sym_xor2] = ACTIONS(801), + [anon_sym_or2] = ACTIONS(801), + [anon_sym_not_DASHin2] = ACTIONS(801), + [anon_sym_has2] = ACTIONS(801), + [anon_sym_not_DASHhas2] = ACTIONS(801), + [anon_sym_starts_DASHwith2] = ACTIONS(801), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(801), + [anon_sym_ends_DASHwith2] = ACTIONS(801), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(801), + [anon_sym_EQ_EQ2] = ACTIONS(801), + [anon_sym_BANG_EQ2] = ACTIONS(801), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ2] = ACTIONS(801), + [anon_sym_GT_EQ2] = ACTIONS(801), + [anon_sym_EQ_TILDE2] = ACTIONS(801), + [anon_sym_BANG_TILDE2] = ACTIONS(801), + [anon_sym_like2] = ACTIONS(801), + [anon_sym_not_DASHlike2] = ACTIONS(801), + [anon_sym_STAR_STAR2] = ACTIONS(801), + [anon_sym_PLUS_PLUS2] = ACTIONS(801), + [anon_sym_SLASH2] = ACTIONS(801), + [anon_sym_mod2] = ACTIONS(801), + [anon_sym_SLASH_SLASH2] = ACTIONS(801), + [anon_sym_PLUS2] = ACTIONS(801), + [anon_sym_bit_DASHshl2] = ACTIONS(801), + [anon_sym_bit_DASHshr2] = ACTIONS(801), + [anon_sym_bit_DASHand2] = ACTIONS(801), + [anon_sym_bit_DASHxor2] = ACTIONS(801), + [anon_sym_bit_DASHor2] = ACTIONS(801), + [anon_sym_DOT_DOT2] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), + [anon_sym_DOT_DOT_LT2] = ACTIONS(803), + [sym_filesize_unit] = ACTIONS(801), + [sym_duration_unit] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(105), + }, + [315] = { + [sym_comment] = STATE(315), + [ts_builtin_sym_end] = ACTIONS(910), [anon_sym_in] = ACTIONS(811), - [anon_sym_STAR_STAR] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(916), - [anon_sym_STAR] = ACTIONS(918), - [anon_sym_SLASH] = ACTIONS(918), - [anon_sym_mod] = ACTIONS(916), - [anon_sym_SLASH_SLASH] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(918), - [anon_sym_DASH] = ACTIONS(916), - [anon_sym_bit_DASHshl] = ACTIONS(916), - [anon_sym_bit_DASHshr] = ACTIONS(916), - [anon_sym_EQ_TILDE] = ACTIONS(916), - [anon_sym_BANG_TILDE] = ACTIONS(916), - [anon_sym_like] = ACTIONS(916), - [anon_sym_not_DASHlike] = ACTIONS(916), - [anon_sym_bit_DASHand] = ACTIONS(916), - [anon_sym_bit_DASHxor] = ACTIONS(916), - [anon_sym_bit_DASHor] = ACTIONS(916), - [anon_sym_and] = ACTIONS(916), - [anon_sym_xor] = ACTIONS(916), - [anon_sym_or] = ACTIONS(916), - [anon_sym_in2] = ACTIONS(916), - [anon_sym_not_DASHin] = ACTIONS(916), - [anon_sym_has] = ACTIONS(916), - [anon_sym_not_DASHhas] = ACTIONS(916), - [anon_sym_starts_DASHwith] = ACTIONS(916), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(916), - [anon_sym_ends_DASHwith] = ACTIONS(916), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(916), - [anon_sym_EQ_EQ] = ACTIONS(916), - [anon_sym_BANG_EQ] = ACTIONS(916), - [anon_sym_LT] = ACTIONS(918), - [anon_sym_LT_EQ] = ACTIONS(916), - [anon_sym_GT] = ACTIONS(918), - [anon_sym_GT_EQ] = ACTIONS(916), - [aux_sym_cmd_identifier_token6] = ACTIONS(920), + [anon_sym_STAR_STAR] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(912), + [anon_sym_STAR] = ACTIONS(914), + [anon_sym_SLASH] = ACTIONS(914), + [anon_sym_mod] = ACTIONS(912), + [anon_sym_SLASH_SLASH] = ACTIONS(912), + [anon_sym_PLUS] = ACTIONS(914), + [anon_sym_DASH] = ACTIONS(912), + [anon_sym_bit_DASHshl] = ACTIONS(912), + [anon_sym_bit_DASHshr] = ACTIONS(912), + [anon_sym_EQ_TILDE] = ACTIONS(912), + [anon_sym_BANG_TILDE] = ACTIONS(912), + [anon_sym_like] = ACTIONS(912), + [anon_sym_not_DASHlike] = ACTIONS(912), + [anon_sym_bit_DASHand] = ACTIONS(912), + [anon_sym_bit_DASHxor] = ACTIONS(912), + [anon_sym_bit_DASHor] = ACTIONS(912), + [anon_sym_and] = ACTIONS(912), + [anon_sym_xor] = ACTIONS(912), + [anon_sym_or] = ACTIONS(912), + [anon_sym_in2] = ACTIONS(912), + [anon_sym_not_DASHin] = ACTIONS(912), + [anon_sym_has] = ACTIONS(912), + [anon_sym_not_DASHhas] = ACTIONS(912), + [anon_sym_starts_DASHwith] = ACTIONS(912), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(912), + [anon_sym_ends_DASHwith] = ACTIONS(912), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(912), + [anon_sym_EQ_EQ] = ACTIONS(912), + [anon_sym_BANG_EQ] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(914), + [anon_sym_LT_EQ] = ACTIONS(912), + [anon_sym_GT] = ACTIONS(914), + [anon_sym_GT_EQ] = ACTIONS(912), + [aux_sym_cmd_identifier_token6] = ACTIONS(916), [sym__newline] = ACTIONS(811), [anon_sym_SEMI] = ACTIONS(811), [anon_sym_PIPE] = ACTIONS(811), @@ -73190,951 +73768,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(811), [anon_sym_bit_DASHxor2] = ACTIONS(811), [anon_sym_bit_DASHor2] = ACTIONS(811), - [anon_sym_DOT_DOT2] = ACTIONS(922), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(924), - [anon_sym_DOT_DOT_LT2] = ACTIONS(924), - [sym_filesize_unit] = ACTIONS(1374), - [sym_duration_unit] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(309)] = { - [sym_comment] = STATE(309), - [anon_sym_in] = ACTIONS(791), - [anon_sym_STAR_STAR] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_SLASH] = ACTIONS(791), - [anon_sym_mod] = ACTIONS(793), - [anon_sym_SLASH_SLASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_like] = ACTIONS(793), - [anon_sym_not_DASHlike] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_in2] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_has] = ACTIONS(793), - [anon_sym_not_DASHhas] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(793), - [aux_sym_cmd_identifier_token6] = ACTIONS(791), - [sym__newline] = ACTIONS(791), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_GT2] = ACTIONS(791), - [anon_sym_DASH2] = ACTIONS(791), - [anon_sym_RBRACE] = ACTIONS(791), - [anon_sym_STAR2] = ACTIONS(791), - [anon_sym_and2] = ACTIONS(791), - [anon_sym_xor2] = ACTIONS(791), - [anon_sym_or2] = ACTIONS(791), - [anon_sym_not_DASHin2] = ACTIONS(791), - [anon_sym_has2] = ACTIONS(791), - [anon_sym_not_DASHhas2] = ACTIONS(791), - [anon_sym_starts_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), - [anon_sym_ends_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), - [anon_sym_EQ_EQ2] = ACTIONS(791), - [anon_sym_BANG_EQ2] = ACTIONS(791), - [anon_sym_LT2] = ACTIONS(791), - [anon_sym_LT_EQ2] = ACTIONS(791), - [anon_sym_GT_EQ2] = ACTIONS(791), - [anon_sym_EQ_TILDE2] = ACTIONS(791), - [anon_sym_BANG_TILDE2] = ACTIONS(791), - [anon_sym_like2] = ACTIONS(791), - [anon_sym_not_DASHlike2] = ACTIONS(791), - [anon_sym_STAR_STAR2] = ACTIONS(791), - [anon_sym_PLUS_PLUS2] = ACTIONS(791), - [anon_sym_SLASH2] = ACTIONS(791), - [anon_sym_mod2] = ACTIONS(791), - [anon_sym_SLASH_SLASH2] = ACTIONS(791), - [anon_sym_PLUS2] = ACTIONS(791), - [anon_sym_bit_DASHshl2] = ACTIONS(791), - [anon_sym_bit_DASHshr2] = ACTIONS(791), - [anon_sym_bit_DASHand2] = ACTIONS(791), - [anon_sym_bit_DASHxor2] = ACTIONS(791), - [anon_sym_bit_DASHor2] = ACTIONS(791), - [anon_sym_DOT_DOT2] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(793), - [sym_filesize_unit] = ACTIONS(791), - [sym_duration_unit] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(310)] = { - [sym_comment] = STATE(310), - [anon_sym_in] = ACTIONS(803), - [anon_sym_STAR_STAR] = ACTIONS(805), - [anon_sym_PLUS_PLUS] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(803), - [anon_sym_mod] = ACTIONS(805), - [anon_sym_SLASH_SLASH] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(803), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_bit_DASHshl] = ACTIONS(805), - [anon_sym_bit_DASHshr] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(805), - [anon_sym_BANG_TILDE] = ACTIONS(805), - [anon_sym_like] = ACTIONS(805), - [anon_sym_not_DASHlike] = ACTIONS(805), - [anon_sym_bit_DASHand] = ACTIONS(805), - [anon_sym_bit_DASHxor] = ACTIONS(805), - [anon_sym_bit_DASHor] = ACTIONS(805), - [anon_sym_and] = ACTIONS(805), - [anon_sym_xor] = ACTIONS(805), - [anon_sym_or] = ACTIONS(805), - [anon_sym_in2] = ACTIONS(805), - [anon_sym_not_DASHin] = ACTIONS(805), - [anon_sym_has] = ACTIONS(805), - [anon_sym_not_DASHhas] = ACTIONS(805), - [anon_sym_starts_DASHwith] = ACTIONS(805), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(805), - [anon_sym_ends_DASHwith] = ACTIONS(805), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(805), - [anon_sym_EQ_EQ] = ACTIONS(805), - [anon_sym_BANG_EQ] = ACTIONS(805), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_LT_EQ] = ACTIONS(805), - [anon_sym_GT] = ACTIONS(803), - [anon_sym_GT_EQ] = ACTIONS(805), - [aux_sym_cmd_identifier_token6] = ACTIONS(803), - [sym__newline] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_PIPE] = ACTIONS(803), - [anon_sym_err_GT_PIPE] = ACTIONS(803), - [anon_sym_out_GT_PIPE] = ACTIONS(803), - [anon_sym_e_GT_PIPE] = ACTIONS(803), - [anon_sym_o_GT_PIPE] = ACTIONS(803), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(803), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(803), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(803), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(803), - [anon_sym_GT2] = ACTIONS(803), - [anon_sym_DASH2] = ACTIONS(803), - [anon_sym_RBRACE] = ACTIONS(803), - [anon_sym_STAR2] = ACTIONS(803), - [anon_sym_and2] = ACTIONS(803), - [anon_sym_xor2] = ACTIONS(803), - [anon_sym_or2] = ACTIONS(803), - [anon_sym_not_DASHin2] = ACTIONS(803), - [anon_sym_has2] = ACTIONS(803), - [anon_sym_not_DASHhas2] = ACTIONS(803), - [anon_sym_starts_DASHwith2] = ACTIONS(803), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(803), - [anon_sym_ends_DASHwith2] = ACTIONS(803), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(803), - [anon_sym_EQ_EQ2] = ACTIONS(803), - [anon_sym_BANG_EQ2] = ACTIONS(803), - [anon_sym_LT2] = ACTIONS(803), - [anon_sym_LT_EQ2] = ACTIONS(803), - [anon_sym_GT_EQ2] = ACTIONS(803), - [anon_sym_EQ_TILDE2] = ACTIONS(803), - [anon_sym_BANG_TILDE2] = ACTIONS(803), - [anon_sym_like2] = ACTIONS(803), - [anon_sym_not_DASHlike2] = ACTIONS(803), - [anon_sym_STAR_STAR2] = ACTIONS(803), - [anon_sym_PLUS_PLUS2] = ACTIONS(803), - [anon_sym_SLASH2] = ACTIONS(803), - [anon_sym_mod2] = ACTIONS(803), - [anon_sym_SLASH_SLASH2] = ACTIONS(803), - [anon_sym_PLUS2] = ACTIONS(803), - [anon_sym_bit_DASHshl2] = ACTIONS(803), - [anon_sym_bit_DASHshr2] = ACTIONS(803), - [anon_sym_bit_DASHand2] = ACTIONS(803), - [anon_sym_bit_DASHxor2] = ACTIONS(803), - [anon_sym_bit_DASHor2] = ACTIONS(803), - [anon_sym_DOT_DOT2] = ACTIONS(803), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(805), - [anon_sym_DOT_DOT_LT2] = ACTIONS(805), - [sym_filesize_unit] = ACTIONS(803), - [sym_duration_unit] = ACTIONS(805), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(311)] = { - [sym_comment] = STATE(311), - [anon_sym_in] = ACTIONS(791), - [anon_sym_STAR_STAR] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_SLASH] = ACTIONS(791), - [anon_sym_mod] = ACTIONS(793), - [anon_sym_SLASH_SLASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_like] = ACTIONS(793), - [anon_sym_not_DASHlike] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_in2] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_has] = ACTIONS(793), - [anon_sym_not_DASHhas] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(793), - [aux_sym_cmd_identifier_token6] = ACTIONS(791), - [sym__newline] = ACTIONS(791), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_RPAREN] = ACTIONS(791), - [anon_sym_GT2] = ACTIONS(791), - [anon_sym_DASH2] = ACTIONS(791), - [anon_sym_STAR2] = ACTIONS(791), - [anon_sym_and2] = ACTIONS(791), - [anon_sym_xor2] = ACTIONS(791), - [anon_sym_or2] = ACTIONS(791), - [anon_sym_not_DASHin2] = ACTIONS(791), - [anon_sym_has2] = ACTIONS(791), - [anon_sym_not_DASHhas2] = ACTIONS(791), - [anon_sym_starts_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), - [anon_sym_ends_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), - [anon_sym_EQ_EQ2] = ACTIONS(791), - [anon_sym_BANG_EQ2] = ACTIONS(791), - [anon_sym_LT2] = ACTIONS(791), - [anon_sym_LT_EQ2] = ACTIONS(791), - [anon_sym_GT_EQ2] = ACTIONS(791), - [anon_sym_EQ_TILDE2] = ACTIONS(791), - [anon_sym_BANG_TILDE2] = ACTIONS(791), - [anon_sym_like2] = ACTIONS(791), - [anon_sym_not_DASHlike2] = ACTIONS(791), - [anon_sym_STAR_STAR2] = ACTIONS(791), - [anon_sym_PLUS_PLUS2] = ACTIONS(791), - [anon_sym_SLASH2] = ACTIONS(791), - [anon_sym_mod2] = ACTIONS(791), - [anon_sym_SLASH_SLASH2] = ACTIONS(791), - [anon_sym_PLUS2] = ACTIONS(791), - [anon_sym_bit_DASHshl2] = ACTIONS(791), - [anon_sym_bit_DASHshr2] = ACTIONS(791), - [anon_sym_bit_DASHand2] = ACTIONS(791), - [anon_sym_bit_DASHxor2] = ACTIONS(791), - [anon_sym_bit_DASHor2] = ACTIONS(791), - [anon_sym_DOT_DOT2] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(793), - [sym_filesize_unit] = ACTIONS(791), - [sym_duration_unit] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(312)] = { - [sym_comment] = STATE(312), - [anon_sym_in] = ACTIONS(751), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_like] = ACTIONS(753), - [anon_sym_not_DASHlike] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_in2] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_has] = ACTIONS(753), - [anon_sym_not_DASHhas] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_EQ] = ACTIONS(753), - [aux_sym_cmd_identifier_token6] = ACTIONS(751), - [sym__newline] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_err_GT_PIPE] = ACTIONS(751), - [anon_sym_out_GT_PIPE] = ACTIONS(751), - [anon_sym_e_GT_PIPE] = ACTIONS(751), - [anon_sym_o_GT_PIPE] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), - [anon_sym_GT2] = ACTIONS(751), - [anon_sym_DASH2] = ACTIONS(751), - [anon_sym_STAR2] = ACTIONS(751), - [anon_sym_and2] = ACTIONS(751), - [anon_sym_xor2] = ACTIONS(751), - [anon_sym_or2] = ACTIONS(751), - [anon_sym_not_DASHin2] = ACTIONS(751), - [anon_sym_has2] = ACTIONS(751), - [anon_sym_not_DASHhas2] = ACTIONS(751), - [anon_sym_starts_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), - [anon_sym_ends_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), - [anon_sym_EQ_EQ2] = ACTIONS(751), - [anon_sym_BANG_EQ2] = ACTIONS(751), - [anon_sym_LT2] = ACTIONS(751), - [anon_sym_LT_EQ2] = ACTIONS(751), - [anon_sym_GT_EQ2] = ACTIONS(751), - [anon_sym_EQ_TILDE2] = ACTIONS(751), - [anon_sym_BANG_TILDE2] = ACTIONS(751), - [anon_sym_like2] = ACTIONS(751), - [anon_sym_not_DASHlike2] = ACTIONS(751), - [anon_sym_STAR_STAR2] = ACTIONS(751), - [anon_sym_PLUS_PLUS2] = ACTIONS(751), - [anon_sym_SLASH2] = ACTIONS(751), - [anon_sym_mod2] = ACTIONS(751), - [anon_sym_SLASH_SLASH2] = ACTIONS(751), - [anon_sym_PLUS2] = ACTIONS(751), - [anon_sym_bit_DASHshl2] = ACTIONS(751), - [anon_sym_bit_DASHshr2] = ACTIONS(751), - [anon_sym_bit_DASHand2] = ACTIONS(751), - [anon_sym_bit_DASHxor2] = ACTIONS(751), - [anon_sym_bit_DASHor2] = ACTIONS(751), - [anon_sym_DOT_DOT2] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(753), - [aux_sym__immediate_decimal_token5] = ACTIONS(1380), - [sym_filesize_unit] = ACTIONS(751), - [sym_duration_unit] = ACTIONS(753), + [anon_sym_DOT_DOT2] = ACTIONS(918), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(920), + [anon_sym_DOT_DOT_LT2] = ACTIONS(920), + [sym_filesize_unit] = ACTIONS(1384), + [sym_duration_unit] = ACTIONS(1386), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(313)] = { - [sym_comment] = STATE(313), - [anon_sym_in] = ACTIONS(791), - [anon_sym_STAR_STAR] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_SLASH] = ACTIONS(791), - [anon_sym_mod] = ACTIONS(793), - [anon_sym_SLASH_SLASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_like] = ACTIONS(793), - [anon_sym_not_DASHlike] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_in2] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_has] = ACTIONS(793), - [anon_sym_not_DASHhas] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(793), - [aux_sym_cmd_identifier_token6] = ACTIONS(791), - [sym__newline] = ACTIONS(791), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_GT2] = ACTIONS(791), - [anon_sym_DASH2] = ACTIONS(791), - [anon_sym_STAR2] = ACTIONS(791), - [anon_sym_and2] = ACTIONS(791), - [anon_sym_xor2] = ACTIONS(791), - [anon_sym_or2] = ACTIONS(791), - [anon_sym_not_DASHin2] = ACTIONS(791), - [anon_sym_has2] = ACTIONS(791), - [anon_sym_not_DASHhas2] = ACTIONS(791), - [anon_sym_starts_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), - [anon_sym_ends_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), - [anon_sym_EQ_EQ2] = ACTIONS(791), - [anon_sym_BANG_EQ2] = ACTIONS(791), - [anon_sym_LT2] = ACTIONS(791), - [anon_sym_LT_EQ2] = ACTIONS(791), - [anon_sym_GT_EQ2] = ACTIONS(791), - [anon_sym_EQ_TILDE2] = ACTIONS(791), - [anon_sym_BANG_TILDE2] = ACTIONS(791), - [anon_sym_like2] = ACTIONS(791), - [anon_sym_not_DASHlike2] = ACTIONS(791), - [anon_sym_STAR_STAR2] = ACTIONS(791), - [anon_sym_PLUS_PLUS2] = ACTIONS(791), - [anon_sym_SLASH2] = ACTIONS(791), - [anon_sym_mod2] = ACTIONS(791), - [anon_sym_SLASH_SLASH2] = ACTIONS(791), - [anon_sym_PLUS2] = ACTIONS(791), - [anon_sym_bit_DASHshl2] = ACTIONS(791), - [anon_sym_bit_DASHshr2] = ACTIONS(791), - [anon_sym_bit_DASHand2] = ACTIONS(791), - [anon_sym_bit_DASHxor2] = ACTIONS(791), - [anon_sym_bit_DASHor2] = ACTIONS(791), - [anon_sym_DOT_DOT2] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(793), - [aux_sym__immediate_decimal_token5] = ACTIONS(1382), - [sym_filesize_unit] = ACTIONS(791), - [sym_duration_unit] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(314)] = { - [sym_comment] = STATE(314), - [anon_sym_in] = ACTIONS(759), - [anon_sym_STAR_STAR] = ACTIONS(761), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_mod] = ACTIONS(761), - [anon_sym_SLASH_SLASH] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_bit_DASHshl] = ACTIONS(761), - [anon_sym_bit_DASHshr] = ACTIONS(761), - [anon_sym_EQ_TILDE] = ACTIONS(761), - [anon_sym_BANG_TILDE] = ACTIONS(761), - [anon_sym_like] = ACTIONS(761), - [anon_sym_not_DASHlike] = ACTIONS(761), - [anon_sym_bit_DASHand] = ACTIONS(761), - [anon_sym_bit_DASHxor] = ACTIONS(761), - [anon_sym_bit_DASHor] = ACTIONS(761), - [anon_sym_and] = ACTIONS(761), - [anon_sym_xor] = ACTIONS(761), - [anon_sym_or] = ACTIONS(761), - [anon_sym_in2] = ACTIONS(761), - [anon_sym_not_DASHin] = ACTIONS(761), - [anon_sym_has] = ACTIONS(761), - [anon_sym_not_DASHhas] = ACTIONS(761), - [anon_sym_starts_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), - [anon_sym_ends_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), - [anon_sym_EQ_EQ] = ACTIONS(761), - [anon_sym_BANG_EQ] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_LT_EQ] = ACTIONS(761), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_GT_EQ] = ACTIONS(761), - [aux_sym_cmd_identifier_token6] = ACTIONS(759), - [sym__newline] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_err_GT_PIPE] = ACTIONS(759), - [anon_sym_out_GT_PIPE] = ACTIONS(759), - [anon_sym_e_GT_PIPE] = ACTIONS(759), - [anon_sym_o_GT_PIPE] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), - [anon_sym_GT2] = ACTIONS(759), - [anon_sym_DASH2] = ACTIONS(759), - [anon_sym_STAR2] = ACTIONS(759), - [anon_sym_and2] = ACTIONS(759), - [anon_sym_xor2] = ACTIONS(759), - [anon_sym_or2] = ACTIONS(759), - [anon_sym_not_DASHin2] = ACTIONS(759), - [anon_sym_has2] = ACTIONS(759), - [anon_sym_not_DASHhas2] = ACTIONS(759), - [anon_sym_starts_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), - [anon_sym_ends_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), - [anon_sym_EQ_EQ2] = ACTIONS(759), - [anon_sym_BANG_EQ2] = ACTIONS(759), - [anon_sym_LT2] = ACTIONS(759), - [anon_sym_LT_EQ2] = ACTIONS(759), - [anon_sym_GT_EQ2] = ACTIONS(759), - [anon_sym_EQ_TILDE2] = ACTIONS(759), - [anon_sym_BANG_TILDE2] = ACTIONS(759), - [anon_sym_like2] = ACTIONS(759), - [anon_sym_not_DASHlike2] = ACTIONS(759), - [anon_sym_STAR_STAR2] = ACTIONS(759), - [anon_sym_PLUS_PLUS2] = ACTIONS(759), - [anon_sym_SLASH2] = ACTIONS(759), - [anon_sym_mod2] = ACTIONS(759), - [anon_sym_SLASH_SLASH2] = ACTIONS(759), - [anon_sym_PLUS2] = ACTIONS(759), - [anon_sym_bit_DASHshl2] = ACTIONS(759), - [anon_sym_bit_DASHshr2] = ACTIONS(759), - [anon_sym_bit_DASHand2] = ACTIONS(759), - [anon_sym_bit_DASHxor2] = ACTIONS(759), - [anon_sym_bit_DASHor2] = ACTIONS(759), - [anon_sym_DOT_DOT2] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(761), - [aux_sym__immediate_decimal_token1] = ACTIONS(1384), - [aux_sym__immediate_decimal_token5] = ACTIONS(1386), - [sym_filesize_unit] = ACTIONS(759), - [sym_duration_unit] = ACTIONS(761), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(315)] = { - [sym_comment] = STATE(315), - [anon_sym_in] = ACTIONS(751), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_like] = ACTIONS(753), - [anon_sym_not_DASHlike] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_in2] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_has] = ACTIONS(753), - [anon_sym_not_DASHhas] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_EQ] = ACTIONS(753), - [aux_sym_cmd_identifier_token6] = ACTIONS(751), - [sym__newline] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_err_GT_PIPE] = ACTIONS(751), - [anon_sym_out_GT_PIPE] = ACTIONS(751), - [anon_sym_e_GT_PIPE] = ACTIONS(751), - [anon_sym_o_GT_PIPE] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), - [anon_sym_GT2] = ACTIONS(751), - [anon_sym_DASH2] = ACTIONS(751), - [anon_sym_STAR2] = ACTIONS(751), - [anon_sym_and2] = ACTIONS(751), - [anon_sym_xor2] = ACTIONS(751), - [anon_sym_or2] = ACTIONS(751), - [anon_sym_not_DASHin2] = ACTIONS(751), - [anon_sym_has2] = ACTIONS(751), - [anon_sym_not_DASHhas2] = ACTIONS(751), - [anon_sym_starts_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), - [anon_sym_ends_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), - [anon_sym_EQ_EQ2] = ACTIONS(751), - [anon_sym_BANG_EQ2] = ACTIONS(751), - [anon_sym_LT2] = ACTIONS(751), - [anon_sym_LT_EQ2] = ACTIONS(751), - [anon_sym_GT_EQ2] = ACTIONS(751), - [anon_sym_EQ_TILDE2] = ACTIONS(751), - [anon_sym_BANG_TILDE2] = ACTIONS(751), - [anon_sym_like2] = ACTIONS(751), - [anon_sym_not_DASHlike2] = ACTIONS(751), - [anon_sym_STAR_STAR2] = ACTIONS(751), - [anon_sym_PLUS_PLUS2] = ACTIONS(751), - [anon_sym_SLASH2] = ACTIONS(751), - [anon_sym_mod2] = ACTIONS(751), - [anon_sym_SLASH_SLASH2] = ACTIONS(751), - [anon_sym_PLUS2] = ACTIONS(751), - [anon_sym_bit_DASHshl2] = ACTIONS(751), - [anon_sym_bit_DASHshr2] = ACTIONS(751), - [anon_sym_bit_DASHand2] = ACTIONS(751), - [anon_sym_bit_DASHxor2] = ACTIONS(751), - [anon_sym_bit_DASHor2] = ACTIONS(751), - [anon_sym_DOT_DOT2] = ACTIONS(751), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(753), - [aux_sym__immediate_decimal_token5] = ACTIONS(1368), - [sym_filesize_unit] = ACTIONS(751), - [sym_duration_unit] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(316)] = { + [316] = { [sym_comment] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(761), - [anon_sym_in] = ACTIONS(759), - [anon_sym_STAR_STAR] = ACTIONS(761), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_mod] = ACTIONS(761), - [anon_sym_SLASH_SLASH] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_bit_DASHshl] = ACTIONS(761), - [anon_sym_bit_DASHshr] = ACTIONS(761), - [anon_sym_EQ_TILDE] = ACTIONS(761), - [anon_sym_BANG_TILDE] = ACTIONS(761), - [anon_sym_like] = ACTIONS(761), - [anon_sym_not_DASHlike] = ACTIONS(761), - [anon_sym_bit_DASHand] = ACTIONS(761), - [anon_sym_bit_DASHxor] = ACTIONS(761), - [anon_sym_bit_DASHor] = ACTIONS(761), - [anon_sym_and] = ACTIONS(761), - [anon_sym_xor] = ACTIONS(761), - [anon_sym_or] = ACTIONS(761), - [anon_sym_in2] = ACTIONS(761), - [anon_sym_not_DASHin] = ACTIONS(761), - [anon_sym_has] = ACTIONS(761), - [anon_sym_not_DASHhas] = ACTIONS(761), - [anon_sym_starts_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), - [anon_sym_ends_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), - [anon_sym_EQ_EQ] = ACTIONS(761), - [anon_sym_BANG_EQ] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_LT_EQ] = ACTIONS(761), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_GT_EQ] = ACTIONS(761), - [aux_sym_cmd_identifier_token6] = ACTIONS(759), - [sym__newline] = ACTIONS(759), - [anon_sym_SEMI] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_err_GT_PIPE] = ACTIONS(759), - [anon_sym_out_GT_PIPE] = ACTIONS(759), - [anon_sym_e_GT_PIPE] = ACTIONS(759), - [anon_sym_o_GT_PIPE] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), - [anon_sym_GT2] = ACTIONS(759), - [anon_sym_DASH2] = ACTIONS(759), - [anon_sym_STAR2] = ACTIONS(759), - [anon_sym_and2] = ACTIONS(759), - [anon_sym_xor2] = ACTIONS(759), - [anon_sym_or2] = ACTIONS(759), - [anon_sym_not_DASHin2] = ACTIONS(759), - [anon_sym_has2] = ACTIONS(759), - [anon_sym_not_DASHhas2] = ACTIONS(759), - [anon_sym_starts_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), - [anon_sym_ends_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), - [anon_sym_EQ_EQ2] = ACTIONS(759), - [anon_sym_BANG_EQ2] = ACTIONS(759), - [anon_sym_LT2] = ACTIONS(759), - [anon_sym_LT_EQ2] = ACTIONS(759), - [anon_sym_GT_EQ2] = ACTIONS(759), - [anon_sym_EQ_TILDE2] = ACTIONS(759), - [anon_sym_BANG_TILDE2] = ACTIONS(759), - [anon_sym_like2] = ACTIONS(759), - [anon_sym_not_DASHlike2] = ACTIONS(759), - [anon_sym_STAR_STAR2] = ACTIONS(759), - [anon_sym_PLUS_PLUS2] = ACTIONS(759), - [anon_sym_SLASH2] = ACTIONS(759), - [anon_sym_mod2] = ACTIONS(759), - [anon_sym_SLASH_SLASH2] = ACTIONS(759), - [anon_sym_PLUS2] = ACTIONS(759), - [anon_sym_bit_DASHshl2] = ACTIONS(759), - [anon_sym_bit_DASHshr2] = ACTIONS(759), - [anon_sym_bit_DASHand2] = ACTIONS(759), - [anon_sym_bit_DASHxor2] = ACTIONS(759), - [anon_sym_bit_DASHor2] = ACTIONS(759), - [anon_sym_DOT_DOT2] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(761), - [sym_filesize_unit] = ACTIONS(759), - [sym_duration_unit] = ACTIONS(761), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(317)] = { + [317] = { [sym_comment] = STATE(317), - [anon_sym_in] = ACTIONS(759), - [anon_sym_STAR_STAR] = ACTIONS(761), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_mod] = ACTIONS(761), - [anon_sym_SLASH_SLASH] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_bit_DASHshl] = ACTIONS(761), - [anon_sym_bit_DASHshr] = ACTIONS(761), - [anon_sym_EQ_TILDE] = ACTIONS(761), - [anon_sym_BANG_TILDE] = ACTIONS(761), - [anon_sym_like] = ACTIONS(761), - [anon_sym_not_DASHlike] = ACTIONS(761), - [anon_sym_bit_DASHand] = ACTIONS(761), - [anon_sym_bit_DASHxor] = ACTIONS(761), - [anon_sym_bit_DASHor] = ACTIONS(761), - [anon_sym_and] = ACTIONS(761), - [anon_sym_xor] = ACTIONS(761), - [anon_sym_or] = ACTIONS(761), - [anon_sym_in2] = ACTIONS(761), - [anon_sym_not_DASHin] = ACTIONS(761), - [anon_sym_has] = ACTIONS(761), - [anon_sym_not_DASHhas] = ACTIONS(761), - [anon_sym_starts_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), - [anon_sym_ends_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), - [anon_sym_EQ_EQ] = ACTIONS(761), - [anon_sym_BANG_EQ] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_LT_EQ] = ACTIONS(761), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_GT_EQ] = ACTIONS(761), - [aux_sym_cmd_identifier_token6] = ACTIONS(759), - [sym__newline] = ACTIONS(759), - [anon_sym_SEMI] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_err_GT_PIPE] = ACTIONS(759), - [anon_sym_out_GT_PIPE] = ACTIONS(759), - [anon_sym_e_GT_PIPE] = ACTIONS(759), - [anon_sym_o_GT_PIPE] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), - [anon_sym_RPAREN] = ACTIONS(759), - [anon_sym_GT2] = ACTIONS(759), - [anon_sym_DASH2] = ACTIONS(759), - [anon_sym_STAR2] = ACTIONS(759), - [anon_sym_and2] = ACTIONS(759), - [anon_sym_xor2] = ACTIONS(759), - [anon_sym_or2] = ACTIONS(759), - [anon_sym_not_DASHin2] = ACTIONS(759), - [anon_sym_has2] = ACTIONS(759), - [anon_sym_not_DASHhas2] = ACTIONS(759), - [anon_sym_starts_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), - [anon_sym_ends_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), - [anon_sym_EQ_EQ2] = ACTIONS(759), - [anon_sym_BANG_EQ2] = ACTIONS(759), - [anon_sym_LT2] = ACTIONS(759), - [anon_sym_LT_EQ2] = ACTIONS(759), - [anon_sym_GT_EQ2] = ACTIONS(759), - [anon_sym_EQ_TILDE2] = ACTIONS(759), - [anon_sym_BANG_TILDE2] = ACTIONS(759), - [anon_sym_like2] = ACTIONS(759), - [anon_sym_not_DASHlike2] = ACTIONS(759), - [anon_sym_STAR_STAR2] = ACTIONS(759), - [anon_sym_PLUS_PLUS2] = ACTIONS(759), - [anon_sym_SLASH2] = ACTIONS(759), - [anon_sym_mod2] = ACTIONS(759), - [anon_sym_SLASH_SLASH2] = ACTIONS(759), - [anon_sym_PLUS2] = ACTIONS(759), - [anon_sym_bit_DASHshl2] = ACTIONS(759), - [anon_sym_bit_DASHshr2] = ACTIONS(759), - [anon_sym_bit_DASHand2] = ACTIONS(759), - [anon_sym_bit_DASHxor2] = ACTIONS(759), - [anon_sym_bit_DASHor2] = ACTIONS(759), - [anon_sym_DOT_DOT2] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(761), - [sym_filesize_unit] = ACTIONS(759), - [sym_duration_unit] = ACTIONS(761), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token1] = ACTIONS(1388), + [aux_sym__immediate_decimal_token5] = ACTIONS(1390), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(318)] = { + [318] = { [sym_comment] = STATE(318), - [ts_builtin_sym_end] = ACTIONS(793), - [anon_sym_in] = ACTIONS(791), - [anon_sym_STAR_STAR] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_SLASH] = ACTIONS(791), - [anon_sym_mod] = ACTIONS(793), - [anon_sym_SLASH_SLASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_like] = ACTIONS(793), - [anon_sym_not_DASHlike] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_in2] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_has] = ACTIONS(793), - [anon_sym_not_DASHhas] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(793), - [aux_sym_cmd_identifier_token6] = ACTIONS(791), - [sym__newline] = ACTIONS(791), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_GT2] = ACTIONS(791), - [anon_sym_DASH2] = ACTIONS(791), - [anon_sym_STAR2] = ACTIONS(791), - [anon_sym_and2] = ACTIONS(791), - [anon_sym_xor2] = ACTIONS(791), - [anon_sym_or2] = ACTIONS(791), - [anon_sym_not_DASHin2] = ACTIONS(791), - [anon_sym_has2] = ACTIONS(791), - [anon_sym_not_DASHhas2] = ACTIONS(791), - [anon_sym_starts_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), - [anon_sym_ends_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), - [anon_sym_EQ_EQ2] = ACTIONS(791), - [anon_sym_BANG_EQ2] = ACTIONS(791), - [anon_sym_LT2] = ACTIONS(791), - [anon_sym_LT_EQ2] = ACTIONS(791), - [anon_sym_GT_EQ2] = ACTIONS(791), - [anon_sym_EQ_TILDE2] = ACTIONS(791), - [anon_sym_BANG_TILDE2] = ACTIONS(791), - [anon_sym_like2] = ACTIONS(791), - [anon_sym_not_DASHlike2] = ACTIONS(791), - [anon_sym_STAR_STAR2] = ACTIONS(791), - [anon_sym_PLUS_PLUS2] = ACTIONS(791), - [anon_sym_SLASH2] = ACTIONS(791), - [anon_sym_mod2] = ACTIONS(791), - [anon_sym_SLASH_SLASH2] = ACTIONS(791), - [anon_sym_PLUS2] = ACTIONS(791), - [anon_sym_bit_DASHshl2] = ACTIONS(791), - [anon_sym_bit_DASHshr2] = ACTIONS(791), - [anon_sym_bit_DASHand2] = ACTIONS(791), - [anon_sym_bit_DASHxor2] = ACTIONS(791), - [anon_sym_bit_DASHor2] = ACTIONS(791), - [anon_sym_DOT_DOT2] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(793), - [sym_filesize_unit] = ACTIONS(791), - [sym_duration_unit] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(319)] = { - [sym_comment] = STATE(319), [anon_sym_in] = ACTIONS(811), - [anon_sym_STAR_STAR] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_mod] = ACTIONS(904), - [anon_sym_SLASH_SLASH] = ACTIONS(904), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_bit_DASHshl] = ACTIONS(904), - [anon_sym_bit_DASHshr] = ACTIONS(904), - [anon_sym_EQ_TILDE] = ACTIONS(904), - [anon_sym_BANG_TILDE] = ACTIONS(904), - [anon_sym_like] = ACTIONS(904), - [anon_sym_not_DASHlike] = ACTIONS(904), - [anon_sym_bit_DASHand] = ACTIONS(904), - [anon_sym_bit_DASHxor] = ACTIONS(904), - [anon_sym_bit_DASHor] = ACTIONS(904), - [anon_sym_and] = ACTIONS(904), - [anon_sym_xor] = ACTIONS(904), - [anon_sym_or] = ACTIONS(904), - [anon_sym_in2] = ACTIONS(904), - [anon_sym_not_DASHin] = ACTIONS(904), - [anon_sym_has] = ACTIONS(904), - [anon_sym_not_DASHhas] = ACTIONS(904), - [anon_sym_starts_DASHwith] = ACTIONS(904), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(904), - [anon_sym_ends_DASHwith] = ACTIONS(904), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(904), - [anon_sym_BANG_EQ] = ACTIONS(904), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_LT_EQ] = ACTIONS(904), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(904), - [aux_sym_cmd_identifier_token6] = ACTIONS(908), + [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(811), [anon_sym_SEMI] = ACTIONS(811), [anon_sym_PIPE] = ACTIONS(811), @@ -74183,48 +74041,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(819), [anon_sym_DOT_DOT_EQ2] = ACTIONS(821), [anon_sym_DOT_DOT_LT2] = ACTIONS(821), - [sym_filesize_unit] = ACTIONS(1388), - [sym_duration_unit] = ACTIONS(1390), + [sym_filesize_unit] = ACTIONS(1392), + [sym_duration_unit] = ACTIONS(1394), + [anon_sym_POUND] = ACTIONS(105), + }, + [319] = { + [sym_comment] = STATE(319), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(320)] = { + [320] = { [sym_comment] = STATE(320), [anon_sym_in] = ACTIONS(811), - [anon_sym_STAR_STAR] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_mod] = ACTIONS(904), - [anon_sym_SLASH_SLASH] = ACTIONS(904), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_bit_DASHshl] = ACTIONS(904), - [anon_sym_bit_DASHshr] = ACTIONS(904), - [anon_sym_EQ_TILDE] = ACTIONS(904), - [anon_sym_BANG_TILDE] = ACTIONS(904), - [anon_sym_like] = ACTIONS(904), - [anon_sym_not_DASHlike] = ACTIONS(904), - [anon_sym_bit_DASHand] = ACTIONS(904), - [anon_sym_bit_DASHxor] = ACTIONS(904), - [anon_sym_bit_DASHor] = ACTIONS(904), - [anon_sym_and] = ACTIONS(904), - [anon_sym_xor] = ACTIONS(904), - [anon_sym_or] = ACTIONS(904), - [anon_sym_in2] = ACTIONS(904), - [anon_sym_not_DASHin] = ACTIONS(904), - [anon_sym_has] = ACTIONS(904), - [anon_sym_not_DASHhas] = ACTIONS(904), - [anon_sym_starts_DASHwith] = ACTIONS(904), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(904), - [anon_sym_ends_DASHwith] = ACTIONS(904), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(904), - [anon_sym_BANG_EQ] = ACTIONS(904), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_LT_EQ] = ACTIONS(904), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(904), - [aux_sym_cmd_identifier_token6] = ACTIONS(908), + [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(811), [anon_sym_SEMI] = ACTIONS(811), [anon_sym_PIPE] = ACTIONS(811), @@ -74272,669 +74220,493 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(819), [anon_sym_DOT_DOT_EQ2] = ACTIONS(821), [anon_sym_DOT_DOT_LT2] = ACTIONS(821), - [sym_filesize_unit] = ACTIONS(1392), - [sym_duration_unit] = ACTIONS(1394), + [sym_filesize_unit] = ACTIONS(1396), + [sym_duration_unit] = ACTIONS(1398), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(321)] = { + [321] = { [sym_comment] = STATE(321), - [anon_sym_in] = ACTIONS(759), - [anon_sym_STAR_STAR] = ACTIONS(761), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_mod] = ACTIONS(761), - [anon_sym_SLASH_SLASH] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_bit_DASHshl] = ACTIONS(761), - [anon_sym_bit_DASHshr] = ACTIONS(761), - [anon_sym_EQ_TILDE] = ACTIONS(761), - [anon_sym_BANG_TILDE] = ACTIONS(761), - [anon_sym_like] = ACTIONS(761), - [anon_sym_not_DASHlike] = ACTIONS(761), - [anon_sym_bit_DASHand] = ACTIONS(761), - [anon_sym_bit_DASHxor] = ACTIONS(761), - [anon_sym_bit_DASHor] = ACTIONS(761), - [anon_sym_and] = ACTIONS(761), - [anon_sym_xor] = ACTIONS(761), - [anon_sym_or] = ACTIONS(761), - [anon_sym_in2] = ACTIONS(761), - [anon_sym_not_DASHin] = ACTIONS(761), - [anon_sym_has] = ACTIONS(761), - [anon_sym_not_DASHhas] = ACTIONS(761), - [anon_sym_starts_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), - [anon_sym_ends_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), - [anon_sym_EQ_EQ] = ACTIONS(761), - [anon_sym_BANG_EQ] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_LT_EQ] = ACTIONS(761), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_GT_EQ] = ACTIONS(761), - [aux_sym_cmd_identifier_token6] = ACTIONS(759), - [sym__newline] = ACTIONS(759), - [anon_sym_SEMI] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_err_GT_PIPE] = ACTIONS(759), - [anon_sym_out_GT_PIPE] = ACTIONS(759), - [anon_sym_e_GT_PIPE] = ACTIONS(759), - [anon_sym_o_GT_PIPE] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), - [anon_sym_GT2] = ACTIONS(759), - [anon_sym_DASH2] = ACTIONS(759), - [anon_sym_STAR2] = ACTIONS(759), - [anon_sym_and2] = ACTIONS(759), - [anon_sym_xor2] = ACTIONS(759), - [anon_sym_or2] = ACTIONS(759), - [anon_sym_not_DASHin2] = ACTIONS(759), - [anon_sym_has2] = ACTIONS(759), - [anon_sym_not_DASHhas2] = ACTIONS(759), - [anon_sym_starts_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), - [anon_sym_ends_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), - [anon_sym_EQ_EQ2] = ACTIONS(759), - [anon_sym_BANG_EQ2] = ACTIONS(759), - [anon_sym_LT2] = ACTIONS(759), - [anon_sym_LT_EQ2] = ACTIONS(759), - [anon_sym_GT_EQ2] = ACTIONS(759), - [anon_sym_EQ_TILDE2] = ACTIONS(759), - [anon_sym_BANG_TILDE2] = ACTIONS(759), - [anon_sym_like2] = ACTIONS(759), - [anon_sym_not_DASHlike2] = ACTIONS(759), - [anon_sym_STAR_STAR2] = ACTIONS(759), - [anon_sym_PLUS_PLUS2] = ACTIONS(759), - [anon_sym_SLASH2] = ACTIONS(759), - [anon_sym_mod2] = ACTIONS(759), - [anon_sym_SLASH_SLASH2] = ACTIONS(759), - [anon_sym_PLUS2] = ACTIONS(759), - [anon_sym_bit_DASHshl2] = ACTIONS(759), - [anon_sym_bit_DASHshr2] = ACTIONS(759), - [anon_sym_bit_DASHand2] = ACTIONS(759), - [anon_sym_bit_DASHxor2] = ACTIONS(759), - [anon_sym_bit_DASHor2] = ACTIONS(759), - [anon_sym_DOT_DOT2] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(761), - [sym_filesize_unit] = ACTIONS(759), - [sym_duration_unit] = ACTIONS(761), + [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(1400), + [sym_filesize_unit] = ACTIONS(775), + [sym_duration_unit] = ACTIONS(777), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(322)] = { + [322] = { [sym_comment] = STATE(322), - [anon_sym_in] = ACTIONS(791), - [anon_sym_STAR_STAR] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_SLASH] = ACTIONS(791), - [anon_sym_mod] = ACTIONS(793), - [anon_sym_SLASH_SLASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_like] = ACTIONS(793), - [anon_sym_not_DASHlike] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_in2] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_has] = ACTIONS(793), - [anon_sym_not_DASHhas] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(793), - [aux_sym_cmd_identifier_token6] = ACTIONS(791), - [sym__newline] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_GT2] = ACTIONS(791), - [anon_sym_DASH2] = ACTIONS(791), - [anon_sym_STAR2] = ACTIONS(791), - [anon_sym_and2] = ACTIONS(791), - [anon_sym_xor2] = ACTIONS(791), - [anon_sym_or2] = ACTIONS(791), - [anon_sym_not_DASHin2] = ACTIONS(791), - [anon_sym_has2] = ACTIONS(791), - [anon_sym_not_DASHhas2] = ACTIONS(791), - [anon_sym_starts_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), - [anon_sym_ends_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), - [anon_sym_EQ_EQ2] = ACTIONS(791), - [anon_sym_BANG_EQ2] = ACTIONS(791), - [anon_sym_LT2] = ACTIONS(791), - [anon_sym_LT_EQ2] = ACTIONS(791), - [anon_sym_GT_EQ2] = ACTIONS(791), - [anon_sym_EQ_TILDE2] = ACTIONS(791), - [anon_sym_BANG_TILDE2] = ACTIONS(791), - [anon_sym_like2] = ACTIONS(791), - [anon_sym_not_DASHlike2] = ACTIONS(791), - [anon_sym_STAR_STAR2] = ACTIONS(791), - [anon_sym_PLUS_PLUS2] = ACTIONS(791), - [anon_sym_SLASH2] = ACTIONS(791), - [anon_sym_mod2] = ACTIONS(791), - [anon_sym_SLASH_SLASH2] = ACTIONS(791), - [anon_sym_PLUS2] = ACTIONS(791), - [anon_sym_bit_DASHshl2] = ACTIONS(791), - [anon_sym_bit_DASHshr2] = ACTIONS(791), - [anon_sym_bit_DASHand2] = ACTIONS(791), - [anon_sym_bit_DASHxor2] = ACTIONS(791), - [anon_sym_bit_DASHor2] = ACTIONS(791), - [anon_sym_DOT_DOT2] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(793), - [aux_sym__immediate_decimal_token5] = ACTIONS(1396), - [sym_filesize_unit] = ACTIONS(791), - [sym_duration_unit] = ACTIONS(793), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(323)] = { + [323] = { [sym_comment] = STATE(323), - [anon_sym_in] = ACTIONS(803), - [anon_sym_STAR_STAR] = ACTIONS(805), - [anon_sym_PLUS_PLUS] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(803), - [anon_sym_mod] = ACTIONS(805), - [anon_sym_SLASH_SLASH] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(803), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_bit_DASHshl] = ACTIONS(805), - [anon_sym_bit_DASHshr] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(805), - [anon_sym_BANG_TILDE] = ACTIONS(805), - [anon_sym_like] = ACTIONS(805), - [anon_sym_not_DASHlike] = ACTIONS(805), - [anon_sym_bit_DASHand] = ACTIONS(805), - [anon_sym_bit_DASHxor] = ACTIONS(805), - [anon_sym_bit_DASHor] = ACTIONS(805), - [anon_sym_and] = ACTIONS(805), - [anon_sym_xor] = ACTIONS(805), - [anon_sym_or] = ACTIONS(805), - [anon_sym_in2] = ACTIONS(805), - [anon_sym_not_DASHin] = ACTIONS(805), - [anon_sym_has] = ACTIONS(805), - [anon_sym_not_DASHhas] = ACTIONS(805), - [anon_sym_starts_DASHwith] = ACTIONS(805), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(805), - [anon_sym_ends_DASHwith] = ACTIONS(805), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(805), - [anon_sym_EQ_EQ] = ACTIONS(805), - [anon_sym_BANG_EQ] = ACTIONS(805), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_LT_EQ] = ACTIONS(805), - [anon_sym_GT] = ACTIONS(803), - [anon_sym_GT_EQ] = ACTIONS(805), - [aux_sym_cmd_identifier_token6] = ACTIONS(803), - [sym__newline] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_PIPE] = ACTIONS(803), - [anon_sym_err_GT_PIPE] = ACTIONS(803), - [anon_sym_out_GT_PIPE] = ACTIONS(803), - [anon_sym_e_GT_PIPE] = ACTIONS(803), - [anon_sym_o_GT_PIPE] = ACTIONS(803), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(803), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(803), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(803), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(803), - [anon_sym_GT2] = ACTIONS(803), - [anon_sym_DASH2] = ACTIONS(803), - [anon_sym_STAR2] = ACTIONS(803), - [anon_sym_and2] = ACTIONS(803), - [anon_sym_xor2] = ACTIONS(803), - [anon_sym_or2] = ACTIONS(803), - [anon_sym_not_DASHin2] = ACTIONS(803), - [anon_sym_has2] = ACTIONS(803), - [anon_sym_not_DASHhas2] = ACTIONS(803), - [anon_sym_starts_DASHwith2] = ACTIONS(803), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(803), - [anon_sym_ends_DASHwith2] = ACTIONS(803), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(803), - [anon_sym_EQ_EQ2] = ACTIONS(803), - [anon_sym_BANG_EQ2] = ACTIONS(803), - [anon_sym_LT2] = ACTIONS(803), - [anon_sym_LT_EQ2] = ACTIONS(803), - [anon_sym_GT_EQ2] = ACTIONS(803), - [anon_sym_EQ_TILDE2] = ACTIONS(803), - [anon_sym_BANG_TILDE2] = ACTIONS(803), - [anon_sym_like2] = ACTIONS(803), - [anon_sym_not_DASHlike2] = ACTIONS(803), - [anon_sym_STAR_STAR2] = ACTIONS(803), - [anon_sym_PLUS_PLUS2] = ACTIONS(803), - [anon_sym_SLASH2] = ACTIONS(803), - [anon_sym_mod2] = ACTIONS(803), - [anon_sym_SLASH_SLASH2] = ACTIONS(803), - [anon_sym_PLUS2] = ACTIONS(803), - [anon_sym_bit_DASHshl2] = ACTIONS(803), - [anon_sym_bit_DASHshr2] = ACTIONS(803), - [anon_sym_bit_DASHand2] = ACTIONS(803), - [anon_sym_bit_DASHxor2] = ACTIONS(803), - [anon_sym_bit_DASHor2] = ACTIONS(803), - [anon_sym_DOT_DOT2] = ACTIONS(803), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(805), - [anon_sym_DOT_DOT_LT2] = ACTIONS(805), - [sym_filesize_unit] = ACTIONS(803), - [sym_duration_unit] = ACTIONS(805), + [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(105), }, - [STATE(324)] = { + [324] = { [sym_comment] = STATE(324), - [anon_sym_in] = ACTIONS(751), - [anon_sym_STAR_STAR] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_bit_DASHshl] = ACTIONS(753), - [anon_sym_bit_DASHshr] = ACTIONS(753), - [anon_sym_EQ_TILDE] = ACTIONS(753), - [anon_sym_BANG_TILDE] = ACTIONS(753), - [anon_sym_like] = ACTIONS(753), - [anon_sym_not_DASHlike] = ACTIONS(753), - [anon_sym_bit_DASHand] = ACTIONS(753), - [anon_sym_bit_DASHxor] = ACTIONS(753), - [anon_sym_bit_DASHor] = ACTIONS(753), - [anon_sym_and] = ACTIONS(753), - [anon_sym_xor] = ACTIONS(753), - [anon_sym_or] = ACTIONS(753), - [anon_sym_in2] = ACTIONS(753), - [anon_sym_not_DASHin] = ACTIONS(753), - [anon_sym_has] = ACTIONS(753), - [anon_sym_not_DASHhas] = ACTIONS(753), - [anon_sym_starts_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(753), - [anon_sym_ends_DASHwith] = ACTIONS(753), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(753), - [anon_sym_BANG_EQ] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_EQ] = ACTIONS(753), - [aux_sym_cmd_identifier_token6] = ACTIONS(751), - [sym__newline] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_err_GT_PIPE] = ACTIONS(751), - [anon_sym_out_GT_PIPE] = ACTIONS(751), - [anon_sym_e_GT_PIPE] = ACTIONS(751), - [anon_sym_o_GT_PIPE] = ACTIONS(751), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(751), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(751), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(751), - [anon_sym_GT2] = ACTIONS(751), - [anon_sym_DASH2] = ACTIONS(751), - [anon_sym_STAR2] = ACTIONS(751), - [anon_sym_and2] = ACTIONS(751), - [anon_sym_xor2] = ACTIONS(751), - [anon_sym_or2] = ACTIONS(751), - [anon_sym_not_DASHin2] = ACTIONS(751), - [anon_sym_has2] = ACTIONS(751), - [anon_sym_not_DASHhas2] = ACTIONS(751), - [anon_sym_starts_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(751), - [anon_sym_ends_DASHwith2] = ACTIONS(751), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(751), - [anon_sym_EQ_EQ2] = ACTIONS(751), - [anon_sym_BANG_EQ2] = ACTIONS(751), - [anon_sym_LT2] = ACTIONS(751), - [anon_sym_LT_EQ2] = ACTIONS(751), - [anon_sym_GT_EQ2] = ACTIONS(751), - [anon_sym_EQ_TILDE2] = ACTIONS(751), - [anon_sym_BANG_TILDE2] = ACTIONS(751), - [anon_sym_like2] = ACTIONS(751), - [anon_sym_not_DASHlike2] = ACTIONS(751), - [anon_sym_STAR_STAR2] = ACTIONS(751), - [anon_sym_PLUS_PLUS2] = ACTIONS(751), - [anon_sym_SLASH2] = ACTIONS(751), - [anon_sym_mod2] = ACTIONS(751), - [anon_sym_SLASH_SLASH2] = ACTIONS(751), - [anon_sym_PLUS2] = ACTIONS(751), - [anon_sym_bit_DASHshl2] = ACTIONS(751), - [anon_sym_bit_DASHshr2] = ACTIONS(751), - [anon_sym_bit_DASHand2] = ACTIONS(751), - [anon_sym_bit_DASHxor2] = ACTIONS(751), - [anon_sym_bit_DASHor2] = ACTIONS(751), - [anon_sym_DOT_DOT2] = ACTIONS(751), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(753), - [aux_sym__immediate_decimal_token5] = ACTIONS(1380), - [sym_filesize_unit] = ACTIONS(751), - [sym_duration_unit] = ACTIONS(753), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(1378), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(325)] = { + [325] = { [sym_comment] = STATE(325), - [anon_sym_in] = ACTIONS(791), - [anon_sym_STAR_STAR] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_SLASH] = ACTIONS(791), - [anon_sym_mod] = ACTIONS(793), - [anon_sym_SLASH_SLASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_like] = ACTIONS(793), - [anon_sym_not_DASHlike] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_in2] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_has] = ACTIONS(793), - [anon_sym_not_DASHhas] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(793), - [aux_sym_cmd_identifier_token6] = ACTIONS(791), - [sym__newline] = ACTIONS(791), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_GT2] = ACTIONS(791), - [anon_sym_DASH2] = ACTIONS(791), - [anon_sym_STAR2] = ACTIONS(791), - [anon_sym_and2] = ACTIONS(791), - [anon_sym_xor2] = ACTIONS(791), - [anon_sym_or2] = ACTIONS(791), - [anon_sym_not_DASHin2] = ACTIONS(791), - [anon_sym_has2] = ACTIONS(791), - [anon_sym_not_DASHhas2] = ACTIONS(791), - [anon_sym_starts_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), - [anon_sym_ends_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), - [anon_sym_EQ_EQ2] = ACTIONS(791), - [anon_sym_BANG_EQ2] = ACTIONS(791), - [anon_sym_LT2] = ACTIONS(791), - [anon_sym_LT_EQ2] = ACTIONS(791), - [anon_sym_GT_EQ2] = ACTIONS(791), - [anon_sym_EQ_TILDE2] = ACTIONS(791), - [anon_sym_BANG_TILDE2] = ACTIONS(791), - [anon_sym_like2] = ACTIONS(791), - [anon_sym_not_DASHlike2] = ACTIONS(791), - [anon_sym_STAR_STAR2] = ACTIONS(791), - [anon_sym_PLUS_PLUS2] = ACTIONS(791), - [anon_sym_SLASH2] = ACTIONS(791), - [anon_sym_mod2] = ACTIONS(791), - [anon_sym_SLASH_SLASH2] = ACTIONS(791), - [anon_sym_PLUS2] = ACTIONS(791), - [anon_sym_bit_DASHshl2] = ACTIONS(791), - [anon_sym_bit_DASHshr2] = ACTIONS(791), - [anon_sym_bit_DASHand2] = ACTIONS(791), - [anon_sym_bit_DASHxor2] = ACTIONS(791), - [anon_sym_bit_DASHor2] = ACTIONS(791), - [anon_sym_DOT_DOT2] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(793), - [sym_filesize_unit] = ACTIONS(791), - [sym_duration_unit] = ACTIONS(793), + [anon_sym_in] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_mod] = ACTIONS(803), + [anon_sym_SLASH_SLASH] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(803), + [anon_sym_bit_DASHshl] = ACTIONS(803), + [anon_sym_bit_DASHshr] = ACTIONS(803), + [anon_sym_EQ_TILDE] = ACTIONS(803), + [anon_sym_BANG_TILDE] = ACTIONS(803), + [anon_sym_like] = ACTIONS(803), + [anon_sym_not_DASHlike] = ACTIONS(803), + [anon_sym_bit_DASHand] = ACTIONS(803), + [anon_sym_bit_DASHxor] = ACTIONS(803), + [anon_sym_bit_DASHor] = ACTIONS(803), + [anon_sym_and] = ACTIONS(803), + [anon_sym_xor] = ACTIONS(803), + [anon_sym_or] = ACTIONS(803), + [anon_sym_in2] = ACTIONS(803), + [anon_sym_not_DASHin] = ACTIONS(803), + [anon_sym_has] = ACTIONS(803), + [anon_sym_not_DASHhas] = ACTIONS(803), + [anon_sym_starts_DASHwith] = ACTIONS(803), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(803), + [anon_sym_ends_DASHwith] = ACTIONS(803), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(803), + [anon_sym_EQ_EQ] = ACTIONS(803), + [anon_sym_BANG_EQ] = ACTIONS(803), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(803), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(803), + [aux_sym_cmd_identifier_token6] = ACTIONS(801), + [sym__newline] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_err_GT_PIPE] = ACTIONS(801), + [anon_sym_out_GT_PIPE] = ACTIONS(801), + [anon_sym_e_GT_PIPE] = ACTIONS(801), + [anon_sym_o_GT_PIPE] = ACTIONS(801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(801), + [anon_sym_GT2] = ACTIONS(801), + [anon_sym_DASH2] = ACTIONS(801), + [anon_sym_STAR2] = ACTIONS(801), + [anon_sym_and2] = ACTIONS(801), + [anon_sym_xor2] = ACTIONS(801), + [anon_sym_or2] = ACTIONS(801), + [anon_sym_not_DASHin2] = ACTIONS(801), + [anon_sym_has2] = ACTIONS(801), + [anon_sym_not_DASHhas2] = ACTIONS(801), + [anon_sym_starts_DASHwith2] = ACTIONS(801), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(801), + [anon_sym_ends_DASHwith2] = ACTIONS(801), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(801), + [anon_sym_EQ_EQ2] = ACTIONS(801), + [anon_sym_BANG_EQ2] = ACTIONS(801), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ2] = ACTIONS(801), + [anon_sym_GT_EQ2] = ACTIONS(801), + [anon_sym_EQ_TILDE2] = ACTIONS(801), + [anon_sym_BANG_TILDE2] = ACTIONS(801), + [anon_sym_like2] = ACTIONS(801), + [anon_sym_not_DASHlike2] = ACTIONS(801), + [anon_sym_STAR_STAR2] = ACTIONS(801), + [anon_sym_PLUS_PLUS2] = ACTIONS(801), + [anon_sym_SLASH2] = ACTIONS(801), + [anon_sym_mod2] = ACTIONS(801), + [anon_sym_SLASH_SLASH2] = ACTIONS(801), + [anon_sym_PLUS2] = ACTIONS(801), + [anon_sym_bit_DASHshl2] = ACTIONS(801), + [anon_sym_bit_DASHshr2] = ACTIONS(801), + [anon_sym_bit_DASHand2] = ACTIONS(801), + [anon_sym_bit_DASHxor2] = ACTIONS(801), + [anon_sym_bit_DASHor2] = ACTIONS(801), + [anon_sym_DOT_DOT2] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), + [anon_sym_DOT_DOT_LT2] = ACTIONS(803), + [sym_filesize_unit] = ACTIONS(801), + [sym_duration_unit] = ACTIONS(803), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(326)] = { + [326] = { [sym_comment] = STATE(326), - [anon_sym_in] = ACTIONS(759), - [anon_sym_STAR_STAR] = ACTIONS(761), - [anon_sym_PLUS_PLUS] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_mod] = ACTIONS(761), - [anon_sym_SLASH_SLASH] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_bit_DASHshl] = ACTIONS(761), - [anon_sym_bit_DASHshr] = ACTIONS(761), - [anon_sym_EQ_TILDE] = ACTIONS(761), - [anon_sym_BANG_TILDE] = ACTIONS(761), - [anon_sym_like] = ACTIONS(761), - [anon_sym_not_DASHlike] = ACTIONS(761), - [anon_sym_bit_DASHand] = ACTIONS(761), - [anon_sym_bit_DASHxor] = ACTIONS(761), - [anon_sym_bit_DASHor] = ACTIONS(761), - [anon_sym_and] = ACTIONS(761), - [anon_sym_xor] = ACTIONS(761), - [anon_sym_or] = ACTIONS(761), - [anon_sym_in2] = ACTIONS(761), - [anon_sym_not_DASHin] = ACTIONS(761), - [anon_sym_has] = ACTIONS(761), - [anon_sym_not_DASHhas] = ACTIONS(761), - [anon_sym_starts_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(761), - [anon_sym_ends_DASHwith] = ACTIONS(761), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(761), - [anon_sym_EQ_EQ] = ACTIONS(761), - [anon_sym_BANG_EQ] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_LT_EQ] = ACTIONS(761), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_GT_EQ] = ACTIONS(761), - [aux_sym_cmd_identifier_token6] = ACTIONS(759), - [sym__newline] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_err_GT_PIPE] = ACTIONS(759), - [anon_sym_out_GT_PIPE] = ACTIONS(759), - [anon_sym_e_GT_PIPE] = ACTIONS(759), - [anon_sym_o_GT_PIPE] = ACTIONS(759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(759), - [anon_sym_GT2] = ACTIONS(759), - [anon_sym_DASH2] = ACTIONS(759), - [anon_sym_STAR2] = ACTIONS(759), - [anon_sym_and2] = ACTIONS(759), - [anon_sym_xor2] = ACTIONS(759), - [anon_sym_or2] = ACTIONS(759), - [anon_sym_not_DASHin2] = ACTIONS(759), - [anon_sym_has2] = ACTIONS(759), - [anon_sym_not_DASHhas2] = ACTIONS(759), - [anon_sym_starts_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(759), - [anon_sym_ends_DASHwith2] = ACTIONS(759), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(759), - [anon_sym_EQ_EQ2] = ACTIONS(759), - [anon_sym_BANG_EQ2] = ACTIONS(759), - [anon_sym_LT2] = ACTIONS(759), - [anon_sym_LT_EQ2] = ACTIONS(759), - [anon_sym_GT_EQ2] = ACTIONS(759), - [anon_sym_EQ_TILDE2] = ACTIONS(759), - [anon_sym_BANG_TILDE2] = ACTIONS(759), - [anon_sym_like2] = ACTIONS(759), - [anon_sym_not_DASHlike2] = ACTIONS(759), - [anon_sym_STAR_STAR2] = ACTIONS(759), - [anon_sym_PLUS_PLUS2] = ACTIONS(759), - [anon_sym_SLASH2] = ACTIONS(759), - [anon_sym_mod2] = ACTIONS(759), - [anon_sym_SLASH_SLASH2] = ACTIONS(759), - [anon_sym_PLUS2] = ACTIONS(759), - [anon_sym_bit_DASHshl2] = ACTIONS(759), - [anon_sym_bit_DASHshr2] = ACTIONS(759), - [anon_sym_bit_DASHand2] = ACTIONS(759), - [anon_sym_bit_DASHxor2] = ACTIONS(759), - [anon_sym_bit_DASHor2] = ACTIONS(759), - [anon_sym_DOT_DOT2] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(761), - [sym_filesize_unit] = ACTIONS(759), - [sym_duration_unit] = ACTIONS(761), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(327)] = { - [sym_comment] = STATE(327), - [anon_sym_in] = ACTIONS(791), - [anon_sym_STAR_STAR] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_SLASH] = ACTIONS(791), - [anon_sym_mod] = ACTIONS(793), - [anon_sym_SLASH_SLASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_like] = ACTIONS(793), - [anon_sym_not_DASHlike] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_in2] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_has] = ACTIONS(793), - [anon_sym_not_DASHhas] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(793), - [aux_sym_cmd_identifier_token6] = ACTIONS(791), - [sym__newline] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_GT2] = ACTIONS(791), - [anon_sym_DASH2] = ACTIONS(791), - [anon_sym_STAR2] = ACTIONS(791), - [anon_sym_and2] = ACTIONS(791), - [anon_sym_xor2] = ACTIONS(791), - [anon_sym_or2] = ACTIONS(791), - [anon_sym_not_DASHin2] = ACTIONS(791), - [anon_sym_has2] = ACTIONS(791), - [anon_sym_not_DASHhas2] = ACTIONS(791), - [anon_sym_starts_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), - [anon_sym_ends_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), - [anon_sym_EQ_EQ2] = ACTIONS(791), - [anon_sym_BANG_EQ2] = ACTIONS(791), - [anon_sym_LT2] = ACTIONS(791), - [anon_sym_LT_EQ2] = ACTIONS(791), - [anon_sym_GT_EQ2] = ACTIONS(791), - [anon_sym_EQ_TILDE2] = ACTIONS(791), - [anon_sym_BANG_TILDE2] = ACTIONS(791), - [anon_sym_like2] = ACTIONS(791), - [anon_sym_not_DASHlike2] = ACTIONS(791), - [anon_sym_STAR_STAR2] = ACTIONS(791), - [anon_sym_PLUS_PLUS2] = ACTIONS(791), - [anon_sym_SLASH2] = ACTIONS(791), - [anon_sym_mod2] = ACTIONS(791), - [anon_sym_SLASH_SLASH2] = ACTIONS(791), - [anon_sym_PLUS2] = ACTIONS(791), - [anon_sym_bit_DASHshl2] = ACTIONS(791), - [anon_sym_bit_DASHshr2] = ACTIONS(791), - [anon_sym_bit_DASHand2] = ACTIONS(791), - [anon_sym_bit_DASHxor2] = ACTIONS(791), - [anon_sym_bit_DASHor2] = ACTIONS(791), - [anon_sym_DOT_DOT2] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(793), - [sym_filesize_unit] = ACTIONS(791), - [sym_duration_unit] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(328)] = { - [sym_comment] = STATE(328), [anon_sym_in] = ACTIONS(811), - [anon_sym_STAR_STAR] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_mod] = ACTIONS(904), - [anon_sym_SLASH_SLASH] = ACTIONS(904), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_bit_DASHshl] = ACTIONS(904), - [anon_sym_bit_DASHshr] = ACTIONS(904), - [anon_sym_EQ_TILDE] = ACTIONS(904), - [anon_sym_BANG_TILDE] = ACTIONS(904), - [anon_sym_like] = ACTIONS(904), - [anon_sym_not_DASHlike] = ACTIONS(904), - [anon_sym_bit_DASHand] = ACTIONS(904), - [anon_sym_bit_DASHxor] = ACTIONS(904), - [anon_sym_bit_DASHor] = ACTIONS(904), - [anon_sym_and] = ACTIONS(904), - [anon_sym_xor] = ACTIONS(904), - [anon_sym_or] = ACTIONS(904), - [anon_sym_in2] = ACTIONS(904), - [anon_sym_not_DASHin] = ACTIONS(904), - [anon_sym_has] = ACTIONS(904), - [anon_sym_not_DASHhas] = ACTIONS(904), - [anon_sym_starts_DASHwith] = ACTIONS(904), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(904), - [anon_sym_ends_DASHwith] = ACTIONS(904), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(904), - [anon_sym_BANG_EQ] = ACTIONS(904), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_LT_EQ] = ACTIONS(904), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(904), - [aux_sym_cmd_identifier_token6] = ACTIONS(908), + [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(811), [anon_sym_PIPE] = ACTIONS(811), [anon_sym_err_GT_PIPE] = ACTIONS(811), @@ -74981,1531 +74753,1464 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(819), [anon_sym_DOT_DOT_EQ2] = ACTIONS(821), [anon_sym_DOT_DOT_LT2] = ACTIONS(821), - [sym_filesize_unit] = ACTIONS(1398), - [sym_duration_unit] = ACTIONS(1400), + [sym_filesize_unit] = ACTIONS(1402), + [sym_duration_unit] = ACTIONS(1404), + [anon_sym_POUND] = ACTIONS(105), + }, + [327] = { + [sym_comment] = STATE(327), + [anon_sym_in] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(803), + [anon_sym_PLUS_PLUS] = ACTIONS(803), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_mod] = ACTIONS(803), + [anon_sym_SLASH_SLASH] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(803), + [anon_sym_bit_DASHshl] = ACTIONS(803), + [anon_sym_bit_DASHshr] = ACTIONS(803), + [anon_sym_EQ_TILDE] = ACTIONS(803), + [anon_sym_BANG_TILDE] = ACTIONS(803), + [anon_sym_like] = ACTIONS(803), + [anon_sym_not_DASHlike] = ACTIONS(803), + [anon_sym_bit_DASHand] = ACTIONS(803), + [anon_sym_bit_DASHxor] = ACTIONS(803), + [anon_sym_bit_DASHor] = ACTIONS(803), + [anon_sym_and] = ACTIONS(803), + [anon_sym_xor] = ACTIONS(803), + [anon_sym_or] = ACTIONS(803), + [anon_sym_in2] = ACTIONS(803), + [anon_sym_not_DASHin] = ACTIONS(803), + [anon_sym_has] = ACTIONS(803), + [anon_sym_not_DASHhas] = ACTIONS(803), + [anon_sym_starts_DASHwith] = ACTIONS(803), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(803), + [anon_sym_ends_DASHwith] = ACTIONS(803), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(803), + [anon_sym_EQ_EQ] = ACTIONS(803), + [anon_sym_BANG_EQ] = ACTIONS(803), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(803), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(803), + [aux_sym_cmd_identifier_token6] = ACTIONS(801), + [sym__newline] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_err_GT_PIPE] = ACTIONS(801), + [anon_sym_out_GT_PIPE] = ACTIONS(801), + [anon_sym_e_GT_PIPE] = ACTIONS(801), + [anon_sym_o_GT_PIPE] = ACTIONS(801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(801), + [anon_sym_GT2] = ACTIONS(801), + [anon_sym_DASH2] = ACTIONS(801), + [anon_sym_STAR2] = ACTIONS(801), + [anon_sym_and2] = ACTIONS(801), + [anon_sym_xor2] = ACTIONS(801), + [anon_sym_or2] = ACTIONS(801), + [anon_sym_not_DASHin2] = ACTIONS(801), + [anon_sym_has2] = ACTIONS(801), + [anon_sym_not_DASHhas2] = ACTIONS(801), + [anon_sym_starts_DASHwith2] = ACTIONS(801), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(801), + [anon_sym_ends_DASHwith2] = ACTIONS(801), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(801), + [anon_sym_EQ_EQ2] = ACTIONS(801), + [anon_sym_BANG_EQ2] = ACTIONS(801), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ2] = ACTIONS(801), + [anon_sym_GT_EQ2] = ACTIONS(801), + [anon_sym_EQ_TILDE2] = ACTIONS(801), + [anon_sym_BANG_TILDE2] = ACTIONS(801), + [anon_sym_like2] = ACTIONS(801), + [anon_sym_not_DASHlike2] = ACTIONS(801), + [anon_sym_STAR_STAR2] = ACTIONS(801), + [anon_sym_PLUS_PLUS2] = ACTIONS(801), + [anon_sym_SLASH2] = ACTIONS(801), + [anon_sym_mod2] = ACTIONS(801), + [anon_sym_SLASH_SLASH2] = ACTIONS(801), + [anon_sym_PLUS2] = ACTIONS(801), + [anon_sym_bit_DASHshl2] = ACTIONS(801), + [anon_sym_bit_DASHshr2] = ACTIONS(801), + [anon_sym_bit_DASHand2] = ACTIONS(801), + [anon_sym_bit_DASHxor2] = ACTIONS(801), + [anon_sym_bit_DASHor2] = ACTIONS(801), + [anon_sym_DOT_DOT2] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), + [anon_sym_DOT_DOT_LT2] = ACTIONS(803), + [sym_filesize_unit] = ACTIONS(801), + [sym_duration_unit] = ACTIONS(803), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(329)] = { + [328] = { + [sym_comment] = STATE(328), + [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(105), + }, + [329] = { [sym_comment] = STATE(329), - [anon_sym_in] = ACTIONS(803), - [anon_sym_STAR_STAR] = ACTIONS(805), - [anon_sym_PLUS_PLUS] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(803), - [anon_sym_mod] = ACTIONS(805), - [anon_sym_SLASH_SLASH] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(803), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_bit_DASHshl] = ACTIONS(805), - [anon_sym_bit_DASHshr] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(805), - [anon_sym_BANG_TILDE] = ACTIONS(805), - [anon_sym_like] = ACTIONS(805), - [anon_sym_not_DASHlike] = ACTIONS(805), - [anon_sym_bit_DASHand] = ACTIONS(805), - [anon_sym_bit_DASHxor] = ACTIONS(805), - [anon_sym_bit_DASHor] = ACTIONS(805), - [anon_sym_and] = ACTIONS(805), - [anon_sym_xor] = ACTIONS(805), - [anon_sym_or] = ACTIONS(805), - [anon_sym_in2] = ACTIONS(805), - [anon_sym_not_DASHin] = ACTIONS(805), - [anon_sym_has] = ACTIONS(805), - [anon_sym_not_DASHhas] = ACTIONS(805), - [anon_sym_starts_DASHwith] = ACTIONS(805), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(805), - [anon_sym_ends_DASHwith] = ACTIONS(805), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(805), - [anon_sym_EQ_EQ] = ACTIONS(805), - [anon_sym_BANG_EQ] = ACTIONS(805), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_LT_EQ] = ACTIONS(805), - [anon_sym_GT] = ACTIONS(803), - [anon_sym_GT_EQ] = ACTIONS(805), - [aux_sym_cmd_identifier_token6] = ACTIONS(803), - [sym__newline] = ACTIONS(803), - [anon_sym_PIPE] = ACTIONS(803), - [anon_sym_err_GT_PIPE] = ACTIONS(803), - [anon_sym_out_GT_PIPE] = ACTIONS(803), - [anon_sym_e_GT_PIPE] = ACTIONS(803), - [anon_sym_o_GT_PIPE] = ACTIONS(803), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(803), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(803), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(803), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(803), - [anon_sym_GT2] = ACTIONS(803), - [anon_sym_DASH2] = ACTIONS(803), - [anon_sym_STAR2] = ACTIONS(803), - [anon_sym_and2] = ACTIONS(803), - [anon_sym_xor2] = ACTIONS(803), - [anon_sym_or2] = ACTIONS(803), - [anon_sym_not_DASHin2] = ACTIONS(803), - [anon_sym_has2] = ACTIONS(803), - [anon_sym_not_DASHhas2] = ACTIONS(803), - [anon_sym_starts_DASHwith2] = ACTIONS(803), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(803), - [anon_sym_ends_DASHwith2] = ACTIONS(803), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(803), - [anon_sym_EQ_EQ2] = ACTIONS(803), - [anon_sym_BANG_EQ2] = ACTIONS(803), - [anon_sym_LT2] = ACTIONS(803), - [anon_sym_LT_EQ2] = ACTIONS(803), - [anon_sym_GT_EQ2] = ACTIONS(803), - [anon_sym_EQ_TILDE2] = ACTIONS(803), - [anon_sym_BANG_TILDE2] = ACTIONS(803), - [anon_sym_like2] = ACTIONS(803), - [anon_sym_not_DASHlike2] = ACTIONS(803), - [anon_sym_STAR_STAR2] = ACTIONS(803), - [anon_sym_PLUS_PLUS2] = ACTIONS(803), - [anon_sym_SLASH2] = ACTIONS(803), - [anon_sym_mod2] = ACTIONS(803), - [anon_sym_SLASH_SLASH2] = ACTIONS(803), - [anon_sym_PLUS2] = ACTIONS(803), - [anon_sym_bit_DASHshl2] = ACTIONS(803), - [anon_sym_bit_DASHshr2] = ACTIONS(803), - [anon_sym_bit_DASHand2] = ACTIONS(803), - [anon_sym_bit_DASHxor2] = ACTIONS(803), - [anon_sym_bit_DASHor2] = ACTIONS(803), - [anon_sym_DOT_DOT2] = ACTIONS(803), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(805), - [anon_sym_DOT_DOT_LT2] = ACTIONS(805), - [sym_filesize_unit] = ACTIONS(803), - [sym_duration_unit] = ACTIONS(805), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(330)] = { - [aux_sym__repeat_newline] = STATE(4464), - [sym__match_pattern_expression] = STATE(4534), - [sym__match_pattern_value] = STATE(4712), - [sym__match_pattern_list_body] = STATE(4677), - [sym__match_pattern_list] = STATE(4713), - [sym__match_pattern_rest] = STATE(5185), - [sym__match_pattern_record] = STATE(4714), - [sym_expr_parenthesized] = STATE(4134), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4818), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4820), - [sym_val_bool] = STATE(4323), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4148), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4820), - [sym__val_number_decimal] = STATE(3625), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4820), - [sym_val_filesize] = STATE(4820), - [sym_val_binary] = STATE(4820), - [sym_val_string] = STATE(4820), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4723), - [sym__spread_list] = STATE(5037), - [sym_list_body] = STATE(5137), - [sym_val_entry] = STATE(4735), - [sym_val_record] = STATE(4854), - [sym__table_head] = STATE(3893), - [sym_val_table] = STATE(4820), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4017), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), + [330] = { + [aux_sym__repeat_newline] = STATE(4441), + [sym__match_pattern_expression] = STATE(4653), + [sym__match_pattern_value] = STATE(4894), + [sym__match_pattern_list_body] = STATE(4914), + [sym__match_pattern_list] = STATE(4906), + [sym__match_pattern_rest] = STATE(5325), + [sym__match_pattern_record] = STATE(4932), + [sym_expr_parenthesized] = STATE(4182), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4679), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4892), + [sym_val_bool] = STATE(4219), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(4180), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4892), + [sym__val_number_decimal] = STATE(3655), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4892), + [sym_val_filesize] = STATE(4892), + [sym_val_binary] = STATE(4892), + [sym_val_string] = STATE(4892), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4898), + [sym__spread_list] = STATE(4958), + [sym_list_body] = STATE(5163), + [sym_val_entry] = STATE(4903), + [sym_val_record] = STATE(4868), + [sym__table_head] = STATE(3964), + [sym_val_table] = STATE(4892), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4179), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), [sym_comment] = STATE(330), - [aux_sym__types_body_repeat1] = STATE(379), - [aux_sym_parameter_repeat2] = STATE(4331), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1440), - [aux_sym_list_body_repeat1] = STATE(533), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [anon_sym_null] = ACTIONS(1404), - [aux_sym_cmd_identifier_token3] = ACTIONS(1406), - [aux_sym_cmd_identifier_token4] = ACTIONS(1406), - [aux_sym_cmd_identifier_token5] = ACTIONS(1406), - [sym__newline] = ACTIONS(1408), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_RBRACK] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1416), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_DOT_DOT] = ACTIONS(1422), + [aux_sym__types_body_repeat1] = STATE(384), + [aux_sym_parameter_repeat2] = STATE(4223), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1443), + [aux_sym_list_body_repeat1] = STATE(690), + [anon_sym_true] = ACTIONS(1406), + [anon_sym_false] = ACTIONS(1406), + [anon_sym_null] = ACTIONS(1408), + [aux_sym_cmd_identifier_token3] = ACTIONS(1410), + [aux_sym_cmd_identifier_token4] = ACTIONS(1410), + [aux_sym_cmd_identifier_token5] = ACTIONS(1410), + [sym__newline] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_RBRACK] = ACTIONS(1416), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1420), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DOT_DOT] = ACTIONS(1426), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1424), - [anon_sym_DOT_DOT_LT] = ACTIONS(1424), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1428), + [anon_sym_DOT_DOT_LT] = ACTIONS(1428), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1426), - [aux_sym__val_number_decimal_token2] = ACTIONS(1428), - [aux_sym__val_number_decimal_token3] = ACTIONS(1430), - [aux_sym__val_number_decimal_token4] = ACTIONS(1430), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(331)] = { - [aux_sym__repeat_newline] = STATE(4464), - [sym__match_pattern_expression] = STATE(4534), - [sym__match_pattern_value] = STATE(4712), - [sym__match_pattern_list_body] = STATE(4677), - [sym__match_pattern_list] = STATE(4713), - [sym__match_pattern_rest] = STATE(5185), - [sym__match_pattern_record] = STATE(4714), - [sym_expr_parenthesized] = STATE(4134), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4818), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4820), - [sym_val_bool] = STATE(4323), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4148), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4820), - [sym__val_number_decimal] = STATE(3625), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4820), - [sym_val_filesize] = STATE(4820), - [sym_val_binary] = STATE(4820), - [sym_val_string] = STATE(4820), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4723), - [sym__spread_list] = STATE(5037), - [sym_list_body] = STATE(5282), - [sym_val_entry] = STATE(4735), - [sym_val_record] = STATE(4854), - [sym__table_head] = STATE(3893), - [sym_val_table] = STATE(4820), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4017), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), + [aux_sym__val_number_decimal_token1] = ACTIONS(1430), + [aux_sym__val_number_decimal_token2] = ACTIONS(1432), + [aux_sym__val_number_decimal_token3] = ACTIONS(1434), + [aux_sym__val_number_decimal_token4] = ACTIONS(1434), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [331] = { + [aux_sym__repeat_newline] = STATE(4441), + [sym__match_pattern_expression] = STATE(4653), + [sym__match_pattern_value] = STATE(4894), + [sym__match_pattern_list_body] = STATE(4914), + [sym__match_pattern_list] = STATE(4906), + [sym__match_pattern_rest] = STATE(5325), + [sym__match_pattern_record] = STATE(4932), + [sym_expr_parenthesized] = STATE(4182), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4679), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4892), + [sym_val_bool] = STATE(4219), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(4180), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4892), + [sym__val_number_decimal] = STATE(3655), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4892), + [sym_val_filesize] = STATE(4892), + [sym_val_binary] = STATE(4892), + [sym_val_string] = STATE(4892), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4898), + [sym__spread_list] = STATE(4958), + [sym_list_body] = STATE(5333), + [sym_val_entry] = STATE(4903), + [sym_val_record] = STATE(4868), + [sym__table_head] = STATE(3964), + [sym_val_table] = STATE(4892), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4179), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), [sym_comment] = STATE(331), - [aux_sym__types_body_repeat1] = STATE(379), - [aux_sym_parameter_repeat2] = STATE(4331), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1440), - [aux_sym_list_body_repeat1] = STATE(533), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [anon_sym_null] = ACTIONS(1404), - [aux_sym_cmd_identifier_token3] = ACTIONS(1406), - [aux_sym_cmd_identifier_token4] = ACTIONS(1406), - [aux_sym_cmd_identifier_token5] = ACTIONS(1406), - [sym__newline] = ACTIONS(1408), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_RBRACK] = ACTIONS(1456), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1416), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_DOT_DOT] = ACTIONS(1422), + [aux_sym__types_body_repeat1] = STATE(384), + [aux_sym_parameter_repeat2] = STATE(4223), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1443), + [aux_sym_list_body_repeat1] = STATE(690), + [anon_sym_true] = ACTIONS(1406), + [anon_sym_false] = ACTIONS(1406), + [anon_sym_null] = ACTIONS(1408), + [aux_sym_cmd_identifier_token3] = ACTIONS(1410), + [aux_sym_cmd_identifier_token4] = ACTIONS(1410), + [aux_sym_cmd_identifier_token5] = ACTIONS(1410), + [sym__newline] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_RBRACK] = ACTIONS(1460), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1420), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DOT_DOT] = ACTIONS(1426), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1424), - [anon_sym_DOT_DOT_LT] = ACTIONS(1424), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1428), + [anon_sym_DOT_DOT_LT] = ACTIONS(1428), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1426), - [aux_sym__val_number_decimal_token2] = ACTIONS(1428), - [aux_sym__val_number_decimal_token3] = ACTIONS(1430), - [aux_sym__val_number_decimal_token4] = ACTIONS(1430), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(332)] = { - [aux_sym__repeat_newline] = STATE(4464), - [sym__match_pattern_expression] = STATE(4534), - [sym__match_pattern_value] = STATE(4712), - [sym__match_pattern_list_body] = STATE(4677), - [sym__match_pattern_list] = STATE(4713), - [sym__match_pattern_rest] = STATE(5185), - [sym__match_pattern_record] = STATE(4714), - [sym_expr_parenthesized] = STATE(4134), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4818), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4820), - [sym_val_bool] = STATE(4323), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4148), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4820), - [sym__val_number_decimal] = STATE(3625), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4820), - [sym_val_filesize] = STATE(4820), - [sym_val_binary] = STATE(4820), - [sym_val_string] = STATE(4820), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4723), - [sym__spread_list] = STATE(5037), - [sym_list_body] = STATE(5163), - [sym_val_entry] = STATE(4735), - [sym_val_record] = STATE(4854), - [sym__table_head] = STATE(3893), - [sym_val_table] = STATE(4820), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4017), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), + [aux_sym__val_number_decimal_token1] = ACTIONS(1430), + [aux_sym__val_number_decimal_token2] = ACTIONS(1432), + [aux_sym__val_number_decimal_token3] = ACTIONS(1434), + [aux_sym__val_number_decimal_token4] = ACTIONS(1434), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [332] = { + [aux_sym__repeat_newline] = STATE(4441), + [sym__match_pattern_expression] = STATE(4653), + [sym__match_pattern_value] = STATE(4894), + [sym__match_pattern_list_body] = STATE(4914), + [sym__match_pattern_list] = STATE(4906), + [sym__match_pattern_rest] = STATE(5325), + [sym__match_pattern_record] = STATE(4932), + [sym_expr_parenthesized] = STATE(4182), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4679), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4892), + [sym_val_bool] = STATE(4219), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(4180), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4892), + [sym__val_number_decimal] = STATE(3655), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4892), + [sym_val_filesize] = STATE(4892), + [sym_val_binary] = STATE(4892), + [sym_val_string] = STATE(4892), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4898), + [sym__spread_list] = STATE(4958), + [sym_list_body] = STATE(5393), + [sym_val_entry] = STATE(4903), + [sym_val_record] = STATE(4868), + [sym__table_head] = STATE(3964), + [sym_val_table] = STATE(4892), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4179), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), [sym_comment] = STATE(332), - [aux_sym__types_body_repeat1] = STATE(379), - [aux_sym_parameter_repeat2] = STATE(4331), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1440), - [aux_sym_list_body_repeat1] = STATE(533), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [anon_sym_null] = ACTIONS(1404), - [aux_sym_cmd_identifier_token3] = ACTIONS(1406), - [aux_sym_cmd_identifier_token4] = ACTIONS(1406), - [aux_sym_cmd_identifier_token5] = ACTIONS(1406), - [sym__newline] = ACTIONS(1408), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_RBRACK] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1416), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_DOT_DOT] = ACTIONS(1422), + [aux_sym__types_body_repeat1] = STATE(384), + [aux_sym_parameter_repeat2] = STATE(4223), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1443), + [aux_sym_list_body_repeat1] = STATE(690), + [anon_sym_true] = ACTIONS(1406), + [anon_sym_false] = ACTIONS(1406), + [anon_sym_null] = ACTIONS(1408), + [aux_sym_cmd_identifier_token3] = ACTIONS(1410), + [aux_sym_cmd_identifier_token4] = ACTIONS(1410), + [aux_sym_cmd_identifier_token5] = ACTIONS(1410), + [sym__newline] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_RBRACK] = ACTIONS(1462), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1420), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DOT_DOT] = ACTIONS(1426), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1424), - [anon_sym_DOT_DOT_LT] = ACTIONS(1424), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1428), + [anon_sym_DOT_DOT_LT] = ACTIONS(1428), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1426), - [aux_sym__val_number_decimal_token2] = ACTIONS(1428), - [aux_sym__val_number_decimal_token3] = ACTIONS(1430), - [aux_sym__val_number_decimal_token4] = ACTIONS(1430), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(333)] = { + [aux_sym__val_number_decimal_token1] = ACTIONS(1430), + [aux_sym__val_number_decimal_token2] = ACTIONS(1432), + [aux_sym__val_number_decimal_token3] = ACTIONS(1434), + [aux_sym__val_number_decimal_token4] = ACTIONS(1434), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [333] = { [sym_comment] = STATE(333), - [anon_sym_in] = ACTIONS(1234), - [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(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(1234), - [anon_sym_DASH2] = ACTIONS(1234), - [anon_sym_RBRACE] = ACTIONS(1234), - [anon_sym_STAR2] = ACTIONS(1234), - [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(1234), - [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_STAR_STAR2] = ACTIONS(1234), - [anon_sym_PLUS_PLUS2] = ACTIONS(1234), - [anon_sym_SLASH2] = ACTIONS(1234), - [anon_sym_mod2] = ACTIONS(1234), - [anon_sym_SLASH_SLASH2] = ACTIONS(1234), - [anon_sym_PLUS2] = ACTIONS(1234), - [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), + [ts_builtin_sym_end] = ACTIONS(1262), + [anon_sym_in] = ACTIONS(1246), + [anon_sym_STAR_STAR] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_SLASH] = ACTIONS(1258), + [anon_sym_mod] = ACTIONS(1256), + [anon_sym_SLASH_SLASH] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_bit_DASHshl] = ACTIONS(1256), + [anon_sym_bit_DASHshr] = ACTIONS(1256), + [anon_sym_EQ_TILDE] = ACTIONS(1256), + [anon_sym_BANG_TILDE] = ACTIONS(1256), + [anon_sym_like] = ACTIONS(1256), + [anon_sym_not_DASHlike] = ACTIONS(1256), + [anon_sym_bit_DASHand] = ACTIONS(1256), + [anon_sym_bit_DASHxor] = ACTIONS(1256), + [anon_sym_bit_DASHor] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_in2] = ACTIONS(1256), + [anon_sym_not_DASHin] = ACTIONS(1256), + [anon_sym_has] = ACTIONS(1256), + [anon_sym_not_DASHhas] = ACTIONS(1256), + [anon_sym_starts_DASHwith] = ACTIONS(1256), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1256), + [anon_sym_ends_DASHwith] = ACTIONS(1256), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1256), + [anon_sym_BANG_EQ] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1258), + [anon_sym_LT_EQ] = ACTIONS(1256), + [anon_sym_GT] = ACTIONS(1258), + [anon_sym_GT_EQ] = ACTIONS(1256), + [aux_sym_cmd_identifier_token6] = ACTIONS(1260), + [sym__newline] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_PIPE] = ACTIONS(1246), + [anon_sym_err_GT_PIPE] = ACTIONS(1246), + [anon_sym_out_GT_PIPE] = ACTIONS(1246), + [anon_sym_e_GT_PIPE] = ACTIONS(1246), + [anon_sym_o_GT_PIPE] = ACTIONS(1246), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1246), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1246), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1246), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1246), + [anon_sym_GT2] = ACTIONS(1246), + [anon_sym_DASH2] = ACTIONS(1246), + [anon_sym_STAR2] = ACTIONS(1246), + [anon_sym_and2] = ACTIONS(1246), + [anon_sym_xor2] = ACTIONS(1246), + [anon_sym_or2] = ACTIONS(1246), + [anon_sym_not_DASHin2] = ACTIONS(1246), + [anon_sym_has2] = ACTIONS(1246), + [anon_sym_not_DASHhas2] = ACTIONS(1246), + [anon_sym_starts_DASHwith2] = ACTIONS(1246), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1246), + [anon_sym_ends_DASHwith2] = ACTIONS(1246), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1246), + [anon_sym_EQ_EQ2] = ACTIONS(1246), + [anon_sym_BANG_EQ2] = ACTIONS(1246), + [anon_sym_LT2] = ACTIONS(1246), + [anon_sym_LT_EQ2] = ACTIONS(1246), + [anon_sym_GT_EQ2] = ACTIONS(1246), + [anon_sym_EQ_TILDE2] = ACTIONS(1246), + [anon_sym_BANG_TILDE2] = ACTIONS(1246), + [anon_sym_like2] = ACTIONS(1246), + [anon_sym_not_DASHlike2] = ACTIONS(1246), + [anon_sym_STAR_STAR2] = ACTIONS(1246), + [anon_sym_PLUS_PLUS2] = ACTIONS(1246), + [anon_sym_SLASH2] = ACTIONS(1246), + [anon_sym_mod2] = ACTIONS(1246), + [anon_sym_SLASH_SLASH2] = ACTIONS(1246), + [anon_sym_PLUS2] = ACTIONS(1246), + [anon_sym_bit_DASHshl2] = ACTIONS(1246), + [anon_sym_bit_DASHshr2] = ACTIONS(1246), + [anon_sym_bit_DASHand2] = ACTIONS(1246), + [anon_sym_bit_DASHxor2] = ACTIONS(1246), + [anon_sym_bit_DASHor2] = ACTIONS(1246), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(334)] = { + [334] = { [sym_comment] = STATE(334), - [anon_sym_in] = ACTIONS(1242), - [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(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_err_GT_PIPE] = ACTIONS(1242), - [anon_sym_out_GT_PIPE] = ACTIONS(1242), - [anon_sym_e_GT_PIPE] = ACTIONS(1242), - [anon_sym_o_GT_PIPE] = ACTIONS(1242), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1242), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1242), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1242), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1242), - [anon_sym_RPAREN] = ACTIONS(1242), - [anon_sym_GT2] = ACTIONS(1242), - [anon_sym_DASH2] = ACTIONS(1242), - [anon_sym_STAR2] = ACTIONS(1242), - [anon_sym_and2] = ACTIONS(1242), - [anon_sym_xor2] = ACTIONS(1242), - [anon_sym_or2] = ACTIONS(1242), - [anon_sym_not_DASHin2] = ACTIONS(1242), - [anon_sym_has2] = ACTIONS(1242), - [anon_sym_not_DASHhas2] = ACTIONS(1242), - [anon_sym_starts_DASHwith2] = ACTIONS(1242), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1242), - [anon_sym_ends_DASHwith2] = ACTIONS(1242), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1242), - [anon_sym_EQ_EQ2] = ACTIONS(1242), - [anon_sym_BANG_EQ2] = ACTIONS(1242), - [anon_sym_LT2] = ACTIONS(1242), - [anon_sym_LT_EQ2] = ACTIONS(1242), - [anon_sym_GT_EQ2] = ACTIONS(1242), - [anon_sym_EQ_TILDE2] = ACTIONS(1242), - [anon_sym_BANG_TILDE2] = ACTIONS(1242), - [anon_sym_like2] = ACTIONS(1242), - [anon_sym_not_DASHlike2] = ACTIONS(1242), - [anon_sym_STAR_STAR2] = ACTIONS(1242), - [anon_sym_PLUS_PLUS2] = ACTIONS(1242), - [anon_sym_SLASH2] = ACTIONS(1242), - [anon_sym_mod2] = ACTIONS(1242), - [anon_sym_SLASH_SLASH2] = ACTIONS(1242), - [anon_sym_PLUS2] = ACTIONS(1242), - [anon_sym_bit_DASHshl2] = ACTIONS(1242), - [anon_sym_bit_DASHshr2] = ACTIONS(1242), - [anon_sym_bit_DASHand2] = ACTIONS(1242), - [anon_sym_bit_DASHxor2] = ACTIONS(1242), - [anon_sym_bit_DASHor2] = ACTIONS(1242), + [anon_sym_in] = ACTIONS(1246), + [anon_sym_STAR_STAR] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_SLASH] = ACTIONS(1250), + [anon_sym_mod] = ACTIONS(1248), + [anon_sym_SLASH_SLASH] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_bit_DASHshl] = ACTIONS(1248), + [anon_sym_bit_DASHshr] = ACTIONS(1248), + [anon_sym_EQ_TILDE] = ACTIONS(1248), + [anon_sym_BANG_TILDE] = ACTIONS(1248), + [anon_sym_like] = ACTIONS(1248), + [anon_sym_not_DASHlike] = ACTIONS(1248), + [anon_sym_bit_DASHand] = ACTIONS(1248), + [anon_sym_bit_DASHxor] = ACTIONS(1248), + [anon_sym_bit_DASHor] = ACTIONS(1248), + [anon_sym_and] = ACTIONS(1248), + [anon_sym_xor] = ACTIONS(1248), + [anon_sym_or] = ACTIONS(1248), + [anon_sym_in2] = ACTIONS(1248), + [anon_sym_not_DASHin] = ACTIONS(1248), + [anon_sym_has] = ACTIONS(1248), + [anon_sym_not_DASHhas] = ACTIONS(1248), + [anon_sym_starts_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1248), + [anon_sym_ends_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1248), + [anon_sym_EQ_EQ] = ACTIONS(1248), + [anon_sym_BANG_EQ] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_LT_EQ] = ACTIONS(1248), + [anon_sym_GT] = ACTIONS(1250), + [anon_sym_GT_EQ] = ACTIONS(1248), + [aux_sym_cmd_identifier_token6] = ACTIONS(1252), + [sym__newline] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_PIPE] = ACTIONS(1246), + [anon_sym_err_GT_PIPE] = ACTIONS(1246), + [anon_sym_out_GT_PIPE] = ACTIONS(1246), + [anon_sym_e_GT_PIPE] = ACTIONS(1246), + [anon_sym_o_GT_PIPE] = ACTIONS(1246), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1246), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1246), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1246), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1246), + [anon_sym_GT2] = ACTIONS(1246), + [anon_sym_DASH2] = ACTIONS(1246), + [anon_sym_RBRACE] = ACTIONS(1246), + [anon_sym_STAR2] = ACTIONS(1246), + [anon_sym_and2] = ACTIONS(1246), + [anon_sym_xor2] = ACTIONS(1246), + [anon_sym_or2] = ACTIONS(1246), + [anon_sym_not_DASHin2] = ACTIONS(1246), + [anon_sym_has2] = ACTIONS(1246), + [anon_sym_not_DASHhas2] = ACTIONS(1246), + [anon_sym_starts_DASHwith2] = ACTIONS(1246), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1246), + [anon_sym_ends_DASHwith2] = ACTIONS(1246), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1246), + [anon_sym_EQ_EQ2] = ACTIONS(1246), + [anon_sym_BANG_EQ2] = ACTIONS(1246), + [anon_sym_LT2] = ACTIONS(1246), + [anon_sym_LT_EQ2] = ACTIONS(1246), + [anon_sym_GT_EQ2] = ACTIONS(1246), + [anon_sym_EQ_TILDE2] = ACTIONS(1246), + [anon_sym_BANG_TILDE2] = ACTIONS(1246), + [anon_sym_like2] = ACTIONS(1246), + [anon_sym_not_DASHlike2] = ACTIONS(1246), + [anon_sym_STAR_STAR2] = ACTIONS(1246), + [anon_sym_PLUS_PLUS2] = ACTIONS(1246), + [anon_sym_SLASH2] = ACTIONS(1246), + [anon_sym_mod2] = ACTIONS(1246), + [anon_sym_SLASH_SLASH2] = ACTIONS(1246), + [anon_sym_PLUS2] = ACTIONS(1246), + [anon_sym_bit_DASHshl2] = ACTIONS(1246), + [anon_sym_bit_DASHshr2] = ACTIONS(1246), + [anon_sym_bit_DASHand2] = ACTIONS(1246), + [anon_sym_bit_DASHxor2] = ACTIONS(1246), + [anon_sym_bit_DASHor2] = ACTIONS(1246), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(335)] = { + [335] = { [sym_comment] = STATE(335), - [anon_sym_in] = ACTIONS(1242), - [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(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_err_GT_PIPE] = ACTIONS(1242), - [anon_sym_out_GT_PIPE] = ACTIONS(1242), - [anon_sym_e_GT_PIPE] = ACTIONS(1242), - [anon_sym_o_GT_PIPE] = ACTIONS(1242), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1242), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1242), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1242), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1242), - [anon_sym_GT2] = ACTIONS(1242), - [anon_sym_DASH2] = ACTIONS(1242), - [anon_sym_RBRACE] = ACTIONS(1242), - [anon_sym_STAR2] = ACTIONS(1242), - [anon_sym_and2] = ACTIONS(1242), - [anon_sym_xor2] = ACTIONS(1242), - [anon_sym_or2] = ACTIONS(1242), - [anon_sym_not_DASHin2] = ACTIONS(1242), - [anon_sym_has2] = ACTIONS(1242), - [anon_sym_not_DASHhas2] = ACTIONS(1242), - [anon_sym_starts_DASHwith2] = ACTIONS(1242), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1242), - [anon_sym_ends_DASHwith2] = ACTIONS(1242), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1242), - [anon_sym_EQ_EQ2] = ACTIONS(1242), - [anon_sym_BANG_EQ2] = ACTIONS(1242), - [anon_sym_LT2] = ACTIONS(1242), - [anon_sym_LT_EQ2] = ACTIONS(1242), - [anon_sym_GT_EQ2] = ACTIONS(1242), - [anon_sym_EQ_TILDE2] = ACTIONS(1242), - [anon_sym_BANG_TILDE2] = ACTIONS(1242), - [anon_sym_like2] = ACTIONS(1242), - [anon_sym_not_DASHlike2] = ACTIONS(1242), - [anon_sym_STAR_STAR2] = ACTIONS(1242), - [anon_sym_PLUS_PLUS2] = ACTIONS(1242), - [anon_sym_SLASH2] = ACTIONS(1242), - [anon_sym_mod2] = ACTIONS(1242), - [anon_sym_SLASH_SLASH2] = ACTIONS(1242), - [anon_sym_PLUS2] = ACTIONS(1242), - [anon_sym_bit_DASHshl2] = ACTIONS(1242), - [anon_sym_bit_DASHshr2] = ACTIONS(1242), - [anon_sym_bit_DASHand2] = ACTIONS(1242), - [anon_sym_bit_DASHxor2] = ACTIONS(1242), - [anon_sym_bit_DASHor2] = ACTIONS(1242), + [ts_builtin_sym_end] = ACTIONS(1254), + [anon_sym_in] = ACTIONS(1238), + [anon_sym_STAR_STAR] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_SLASH] = ACTIONS(1258), + [anon_sym_mod] = ACTIONS(1256), + [anon_sym_SLASH_SLASH] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_bit_DASHshl] = ACTIONS(1256), + [anon_sym_bit_DASHshr] = ACTIONS(1256), + [anon_sym_EQ_TILDE] = ACTIONS(1256), + [anon_sym_BANG_TILDE] = ACTIONS(1256), + [anon_sym_like] = ACTIONS(1256), + [anon_sym_not_DASHlike] = ACTIONS(1256), + [anon_sym_bit_DASHand] = ACTIONS(1256), + [anon_sym_bit_DASHxor] = ACTIONS(1256), + [anon_sym_bit_DASHor] = ACTIONS(1256), + [anon_sym_and] = ACTIONS(1256), + [anon_sym_xor] = ACTIONS(1256), + [anon_sym_or] = ACTIONS(1256), + [anon_sym_in2] = ACTIONS(1256), + [anon_sym_not_DASHin] = ACTIONS(1256), + [anon_sym_has] = ACTIONS(1256), + [anon_sym_not_DASHhas] = ACTIONS(1256), + [anon_sym_starts_DASHwith] = ACTIONS(1256), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1256), + [anon_sym_ends_DASHwith] = ACTIONS(1256), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1256), + [anon_sym_BANG_EQ] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1258), + [anon_sym_LT_EQ] = ACTIONS(1256), + [anon_sym_GT] = ACTIONS(1258), + [anon_sym_GT_EQ] = ACTIONS(1256), + [aux_sym_cmd_identifier_token6] = ACTIONS(1260), + [sym__newline] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1238), + [anon_sym_PIPE] = ACTIONS(1238), + [anon_sym_err_GT_PIPE] = ACTIONS(1238), + [anon_sym_out_GT_PIPE] = ACTIONS(1238), + [anon_sym_e_GT_PIPE] = ACTIONS(1238), + [anon_sym_o_GT_PIPE] = ACTIONS(1238), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1238), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1238), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1238), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1238), + [anon_sym_GT2] = ACTIONS(1238), + [anon_sym_DASH2] = ACTIONS(1238), + [anon_sym_STAR2] = ACTIONS(1238), + [anon_sym_and2] = ACTIONS(1238), + [anon_sym_xor2] = ACTIONS(1238), + [anon_sym_or2] = ACTIONS(1238), + [anon_sym_not_DASHin2] = ACTIONS(1238), + [anon_sym_has2] = ACTIONS(1238), + [anon_sym_not_DASHhas2] = ACTIONS(1238), + [anon_sym_starts_DASHwith2] = ACTIONS(1238), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1238), + [anon_sym_ends_DASHwith2] = ACTIONS(1238), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1238), + [anon_sym_EQ_EQ2] = ACTIONS(1238), + [anon_sym_BANG_EQ2] = ACTIONS(1238), + [anon_sym_LT2] = ACTIONS(1238), + [anon_sym_LT_EQ2] = ACTIONS(1238), + [anon_sym_GT_EQ2] = ACTIONS(1238), + [anon_sym_EQ_TILDE2] = ACTIONS(1238), + [anon_sym_BANG_TILDE2] = ACTIONS(1238), + [anon_sym_like2] = ACTIONS(1238), + [anon_sym_not_DASHlike2] = ACTIONS(1238), + [anon_sym_STAR_STAR2] = ACTIONS(1238), + [anon_sym_PLUS_PLUS2] = ACTIONS(1238), + [anon_sym_SLASH2] = ACTIONS(1238), + [anon_sym_mod2] = ACTIONS(1238), + [anon_sym_SLASH_SLASH2] = ACTIONS(1238), + [anon_sym_PLUS2] = ACTIONS(1238), + [anon_sym_bit_DASHshl2] = ACTIONS(1238), + [anon_sym_bit_DASHshr2] = ACTIONS(1238), + [anon_sym_bit_DASHand2] = ACTIONS(1238), + [anon_sym_bit_DASHxor2] = ACTIONS(1238), + [anon_sym_bit_DASHor2] = ACTIONS(1238), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(336)] = { + [336] = { [sym_comment] = STATE(336), - [ts_builtin_sym_end] = ACTIONS(1250), - [anon_sym_in] = ACTIONS(1234), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_SLASH] = ACTIONS(1254), - [anon_sym_mod] = ACTIONS(1252), - [anon_sym_SLASH_SLASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_bit_DASHshl] = ACTIONS(1252), - [anon_sym_bit_DASHshr] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_BANG_TILDE] = ACTIONS(1252), - [anon_sym_like] = ACTIONS(1252), - [anon_sym_not_DASHlike] = ACTIONS(1252), - [anon_sym_bit_DASHand] = ACTIONS(1252), - [anon_sym_bit_DASHxor] = ACTIONS(1252), - [anon_sym_bit_DASHor] = ACTIONS(1252), - [anon_sym_and] = ACTIONS(1252), - [anon_sym_xor] = ACTIONS(1252), - [anon_sym_or] = ACTIONS(1252), - [anon_sym_in2] = ACTIONS(1252), - [anon_sym_not_DASHin] = ACTIONS(1252), - [anon_sym_has] = ACTIONS(1252), - [anon_sym_not_DASHhas] = ACTIONS(1252), - [anon_sym_starts_DASHwith] = ACTIONS(1252), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1252), - [anon_sym_ends_DASHwith] = ACTIONS(1252), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1254), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1252), - [aux_sym_cmd_identifier_token6] = ACTIONS(1256), - [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(1234), - [anon_sym_DASH2] = ACTIONS(1234), - [anon_sym_STAR2] = ACTIONS(1234), - [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(1234), - [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_STAR_STAR2] = ACTIONS(1234), - [anon_sym_PLUS_PLUS2] = ACTIONS(1234), - [anon_sym_SLASH2] = ACTIONS(1234), - [anon_sym_mod2] = ACTIONS(1234), - [anon_sym_SLASH_SLASH2] = ACTIONS(1234), - [anon_sym_PLUS2] = ACTIONS(1234), - [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_in] = ACTIONS(1238), + [anon_sym_STAR_STAR] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_SLASH] = ACTIONS(1250), + [anon_sym_mod] = ACTIONS(1248), + [anon_sym_SLASH_SLASH] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_bit_DASHshl] = ACTIONS(1248), + [anon_sym_bit_DASHshr] = ACTIONS(1248), + [anon_sym_EQ_TILDE] = ACTIONS(1248), + [anon_sym_BANG_TILDE] = ACTIONS(1248), + [anon_sym_like] = ACTIONS(1248), + [anon_sym_not_DASHlike] = ACTIONS(1248), + [anon_sym_bit_DASHand] = ACTIONS(1248), + [anon_sym_bit_DASHxor] = ACTIONS(1248), + [anon_sym_bit_DASHor] = ACTIONS(1248), + [anon_sym_and] = ACTIONS(1248), + [anon_sym_xor] = ACTIONS(1248), + [anon_sym_or] = ACTIONS(1248), + [anon_sym_in2] = ACTIONS(1248), + [anon_sym_not_DASHin] = ACTIONS(1248), + [anon_sym_has] = ACTIONS(1248), + [anon_sym_not_DASHhas] = ACTIONS(1248), + [anon_sym_starts_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1248), + [anon_sym_ends_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1248), + [anon_sym_EQ_EQ] = ACTIONS(1248), + [anon_sym_BANG_EQ] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_LT_EQ] = ACTIONS(1248), + [anon_sym_GT] = ACTIONS(1250), + [anon_sym_GT_EQ] = ACTIONS(1248), + [aux_sym_cmd_identifier_token6] = ACTIONS(1252), + [sym__newline] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1238), + [anon_sym_PIPE] = ACTIONS(1238), + [anon_sym_err_GT_PIPE] = ACTIONS(1238), + [anon_sym_out_GT_PIPE] = ACTIONS(1238), + [anon_sym_e_GT_PIPE] = ACTIONS(1238), + [anon_sym_o_GT_PIPE] = ACTIONS(1238), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1238), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1238), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1238), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1238), + [anon_sym_RPAREN] = ACTIONS(1238), + [anon_sym_GT2] = ACTIONS(1238), + [anon_sym_DASH2] = ACTIONS(1238), + [anon_sym_STAR2] = ACTIONS(1238), + [anon_sym_and2] = ACTIONS(1238), + [anon_sym_xor2] = ACTIONS(1238), + [anon_sym_or2] = ACTIONS(1238), + [anon_sym_not_DASHin2] = ACTIONS(1238), + [anon_sym_has2] = ACTIONS(1238), + [anon_sym_not_DASHhas2] = ACTIONS(1238), + [anon_sym_starts_DASHwith2] = ACTIONS(1238), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1238), + [anon_sym_ends_DASHwith2] = ACTIONS(1238), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1238), + [anon_sym_EQ_EQ2] = ACTIONS(1238), + [anon_sym_BANG_EQ2] = ACTIONS(1238), + [anon_sym_LT2] = ACTIONS(1238), + [anon_sym_LT_EQ2] = ACTIONS(1238), + [anon_sym_GT_EQ2] = ACTIONS(1238), + [anon_sym_EQ_TILDE2] = ACTIONS(1238), + [anon_sym_BANG_TILDE2] = ACTIONS(1238), + [anon_sym_like2] = ACTIONS(1238), + [anon_sym_not_DASHlike2] = ACTIONS(1238), + [anon_sym_STAR_STAR2] = ACTIONS(1238), + [anon_sym_PLUS_PLUS2] = ACTIONS(1238), + [anon_sym_SLASH2] = ACTIONS(1238), + [anon_sym_mod2] = ACTIONS(1238), + [anon_sym_SLASH_SLASH2] = ACTIONS(1238), + [anon_sym_PLUS2] = ACTIONS(1238), + [anon_sym_bit_DASHshl2] = ACTIONS(1238), + [anon_sym_bit_DASHshr2] = ACTIONS(1238), + [anon_sym_bit_DASHand2] = ACTIONS(1238), + [anon_sym_bit_DASHxor2] = ACTIONS(1238), + [anon_sym_bit_DASHor2] = ACTIONS(1238), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(337)] = { + [337] = { [sym_comment] = STATE(337), - [anon_sym_in] = ACTIONS(1234), - [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(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_RPAREN] = ACTIONS(1234), - [anon_sym_GT2] = ACTIONS(1234), - [anon_sym_DASH2] = ACTIONS(1234), - [anon_sym_STAR2] = ACTIONS(1234), - [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(1234), - [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_STAR_STAR2] = ACTIONS(1234), - [anon_sym_PLUS_PLUS2] = ACTIONS(1234), - [anon_sym_SLASH2] = ACTIONS(1234), - [anon_sym_mod2] = ACTIONS(1234), - [anon_sym_SLASH_SLASH2] = ACTIONS(1234), - [anon_sym_PLUS2] = ACTIONS(1234), - [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_in] = ACTIONS(1238), + [anon_sym_STAR_STAR] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_SLASH] = ACTIONS(1250), + [anon_sym_mod] = ACTIONS(1248), + [anon_sym_SLASH_SLASH] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_bit_DASHshl] = ACTIONS(1248), + [anon_sym_bit_DASHshr] = ACTIONS(1248), + [anon_sym_EQ_TILDE] = ACTIONS(1248), + [anon_sym_BANG_TILDE] = ACTIONS(1248), + [anon_sym_like] = ACTIONS(1248), + [anon_sym_not_DASHlike] = ACTIONS(1248), + [anon_sym_bit_DASHand] = ACTIONS(1248), + [anon_sym_bit_DASHxor] = ACTIONS(1248), + [anon_sym_bit_DASHor] = ACTIONS(1248), + [anon_sym_and] = ACTIONS(1248), + [anon_sym_xor] = ACTIONS(1248), + [anon_sym_or] = ACTIONS(1248), + [anon_sym_in2] = ACTIONS(1248), + [anon_sym_not_DASHin] = ACTIONS(1248), + [anon_sym_has] = ACTIONS(1248), + [anon_sym_not_DASHhas] = ACTIONS(1248), + [anon_sym_starts_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1248), + [anon_sym_ends_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1248), + [anon_sym_EQ_EQ] = ACTIONS(1248), + [anon_sym_BANG_EQ] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_LT_EQ] = ACTIONS(1248), + [anon_sym_GT] = ACTIONS(1250), + [anon_sym_GT_EQ] = ACTIONS(1248), + [aux_sym_cmd_identifier_token6] = ACTIONS(1252), + [sym__newline] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1238), + [anon_sym_PIPE] = ACTIONS(1238), + [anon_sym_err_GT_PIPE] = ACTIONS(1238), + [anon_sym_out_GT_PIPE] = ACTIONS(1238), + [anon_sym_e_GT_PIPE] = ACTIONS(1238), + [anon_sym_o_GT_PIPE] = ACTIONS(1238), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1238), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1238), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1238), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1238), + [anon_sym_GT2] = ACTIONS(1238), + [anon_sym_DASH2] = ACTIONS(1238), + [anon_sym_RBRACE] = ACTIONS(1238), + [anon_sym_STAR2] = ACTIONS(1238), + [anon_sym_and2] = ACTIONS(1238), + [anon_sym_xor2] = ACTIONS(1238), + [anon_sym_or2] = ACTIONS(1238), + [anon_sym_not_DASHin2] = ACTIONS(1238), + [anon_sym_has2] = ACTIONS(1238), + [anon_sym_not_DASHhas2] = ACTIONS(1238), + [anon_sym_starts_DASHwith2] = ACTIONS(1238), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1238), + [anon_sym_ends_DASHwith2] = ACTIONS(1238), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1238), + [anon_sym_EQ_EQ2] = ACTIONS(1238), + [anon_sym_BANG_EQ2] = ACTIONS(1238), + [anon_sym_LT2] = ACTIONS(1238), + [anon_sym_LT_EQ2] = ACTIONS(1238), + [anon_sym_GT_EQ2] = ACTIONS(1238), + [anon_sym_EQ_TILDE2] = ACTIONS(1238), + [anon_sym_BANG_TILDE2] = ACTIONS(1238), + [anon_sym_like2] = ACTIONS(1238), + [anon_sym_not_DASHlike2] = ACTIONS(1238), + [anon_sym_STAR_STAR2] = ACTIONS(1238), + [anon_sym_PLUS_PLUS2] = ACTIONS(1238), + [anon_sym_SLASH2] = ACTIONS(1238), + [anon_sym_mod2] = ACTIONS(1238), + [anon_sym_SLASH_SLASH2] = ACTIONS(1238), + [anon_sym_PLUS2] = ACTIONS(1238), + [anon_sym_bit_DASHshl2] = ACTIONS(1238), + [anon_sym_bit_DASHshr2] = ACTIONS(1238), + [anon_sym_bit_DASHand2] = ACTIONS(1238), + [anon_sym_bit_DASHxor2] = ACTIONS(1238), + [anon_sym_bit_DASHor2] = ACTIONS(1238), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(338)] = { + [338] = { [sym_comment] = STATE(338), - [ts_builtin_sym_end] = ACTIONS(1258), - [anon_sym_in] = ACTIONS(1242), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_SLASH] = ACTIONS(1254), - [anon_sym_mod] = ACTIONS(1252), - [anon_sym_SLASH_SLASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_bit_DASHshl] = ACTIONS(1252), - [anon_sym_bit_DASHshr] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_BANG_TILDE] = ACTIONS(1252), - [anon_sym_like] = ACTIONS(1252), - [anon_sym_not_DASHlike] = ACTIONS(1252), - [anon_sym_bit_DASHand] = ACTIONS(1252), - [anon_sym_bit_DASHxor] = ACTIONS(1252), - [anon_sym_bit_DASHor] = ACTIONS(1252), - [anon_sym_and] = ACTIONS(1252), - [anon_sym_xor] = ACTIONS(1252), - [anon_sym_or] = ACTIONS(1252), - [anon_sym_in2] = ACTIONS(1252), - [anon_sym_not_DASHin] = ACTIONS(1252), - [anon_sym_has] = ACTIONS(1252), - [anon_sym_not_DASHhas] = ACTIONS(1252), - [anon_sym_starts_DASHwith] = ACTIONS(1252), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1252), - [anon_sym_ends_DASHwith] = ACTIONS(1252), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1254), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1252), - [aux_sym_cmd_identifier_token6] = ACTIONS(1256), - [sym__newline] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_err_GT_PIPE] = ACTIONS(1242), - [anon_sym_out_GT_PIPE] = ACTIONS(1242), - [anon_sym_e_GT_PIPE] = ACTIONS(1242), - [anon_sym_o_GT_PIPE] = ACTIONS(1242), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1242), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1242), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1242), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1242), - [anon_sym_GT2] = ACTIONS(1242), - [anon_sym_DASH2] = ACTIONS(1242), - [anon_sym_STAR2] = ACTIONS(1242), - [anon_sym_and2] = ACTIONS(1242), - [anon_sym_xor2] = ACTIONS(1242), - [anon_sym_or2] = ACTIONS(1242), - [anon_sym_not_DASHin2] = ACTIONS(1242), - [anon_sym_has2] = ACTIONS(1242), - [anon_sym_not_DASHhas2] = ACTIONS(1242), - [anon_sym_starts_DASHwith2] = ACTIONS(1242), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1242), - [anon_sym_ends_DASHwith2] = ACTIONS(1242), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1242), - [anon_sym_EQ_EQ2] = ACTIONS(1242), - [anon_sym_BANG_EQ2] = ACTIONS(1242), - [anon_sym_LT2] = ACTIONS(1242), - [anon_sym_LT_EQ2] = ACTIONS(1242), - [anon_sym_GT_EQ2] = ACTIONS(1242), - [anon_sym_EQ_TILDE2] = ACTIONS(1242), - [anon_sym_BANG_TILDE2] = ACTIONS(1242), - [anon_sym_like2] = ACTIONS(1242), - [anon_sym_not_DASHlike2] = ACTIONS(1242), - [anon_sym_STAR_STAR2] = ACTIONS(1242), - [anon_sym_PLUS_PLUS2] = ACTIONS(1242), - [anon_sym_SLASH2] = ACTIONS(1242), - [anon_sym_mod2] = ACTIONS(1242), - [anon_sym_SLASH_SLASH2] = ACTIONS(1242), - [anon_sym_PLUS2] = ACTIONS(1242), - [anon_sym_bit_DASHshl2] = ACTIONS(1242), - [anon_sym_bit_DASHshr2] = ACTIONS(1242), - [anon_sym_bit_DASHand2] = ACTIONS(1242), - [anon_sym_bit_DASHxor2] = ACTIONS(1242), - [anon_sym_bit_DASHor2] = ACTIONS(1242), + [anon_sym_in] = ACTIONS(1246), + [anon_sym_STAR_STAR] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_SLASH] = ACTIONS(1250), + [anon_sym_mod] = ACTIONS(1248), + [anon_sym_SLASH_SLASH] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_bit_DASHshl] = ACTIONS(1248), + [anon_sym_bit_DASHshr] = ACTIONS(1248), + [anon_sym_EQ_TILDE] = ACTIONS(1248), + [anon_sym_BANG_TILDE] = ACTIONS(1248), + [anon_sym_like] = ACTIONS(1248), + [anon_sym_not_DASHlike] = ACTIONS(1248), + [anon_sym_bit_DASHand] = ACTIONS(1248), + [anon_sym_bit_DASHxor] = ACTIONS(1248), + [anon_sym_bit_DASHor] = ACTIONS(1248), + [anon_sym_and] = ACTIONS(1248), + [anon_sym_xor] = ACTIONS(1248), + [anon_sym_or] = ACTIONS(1248), + [anon_sym_in2] = ACTIONS(1248), + [anon_sym_not_DASHin] = ACTIONS(1248), + [anon_sym_has] = ACTIONS(1248), + [anon_sym_not_DASHhas] = ACTIONS(1248), + [anon_sym_starts_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1248), + [anon_sym_ends_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1248), + [anon_sym_EQ_EQ] = ACTIONS(1248), + [anon_sym_BANG_EQ] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_LT_EQ] = ACTIONS(1248), + [anon_sym_GT] = ACTIONS(1250), + [anon_sym_GT_EQ] = ACTIONS(1248), + [aux_sym_cmd_identifier_token6] = ACTIONS(1252), + [sym__newline] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_PIPE] = ACTIONS(1246), + [anon_sym_err_GT_PIPE] = ACTIONS(1246), + [anon_sym_out_GT_PIPE] = ACTIONS(1246), + [anon_sym_e_GT_PIPE] = ACTIONS(1246), + [anon_sym_o_GT_PIPE] = ACTIONS(1246), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1246), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1246), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1246), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1246), + [anon_sym_RPAREN] = ACTIONS(1246), + [anon_sym_GT2] = ACTIONS(1246), + [anon_sym_DASH2] = ACTIONS(1246), + [anon_sym_STAR2] = ACTIONS(1246), + [anon_sym_and2] = ACTIONS(1246), + [anon_sym_xor2] = ACTIONS(1246), + [anon_sym_or2] = ACTIONS(1246), + [anon_sym_not_DASHin2] = ACTIONS(1246), + [anon_sym_has2] = ACTIONS(1246), + [anon_sym_not_DASHhas2] = ACTIONS(1246), + [anon_sym_starts_DASHwith2] = ACTIONS(1246), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1246), + [anon_sym_ends_DASHwith2] = ACTIONS(1246), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1246), + [anon_sym_EQ_EQ2] = ACTIONS(1246), + [anon_sym_BANG_EQ2] = ACTIONS(1246), + [anon_sym_LT2] = ACTIONS(1246), + [anon_sym_LT_EQ2] = ACTIONS(1246), + [anon_sym_GT_EQ2] = ACTIONS(1246), + [anon_sym_EQ_TILDE2] = ACTIONS(1246), + [anon_sym_BANG_TILDE2] = ACTIONS(1246), + [anon_sym_like2] = ACTIONS(1246), + [anon_sym_not_DASHlike2] = ACTIONS(1246), + [anon_sym_STAR_STAR2] = ACTIONS(1246), + [anon_sym_PLUS_PLUS2] = ACTIONS(1246), + [anon_sym_SLASH2] = ACTIONS(1246), + [anon_sym_mod2] = ACTIONS(1246), + [anon_sym_SLASH_SLASH2] = ACTIONS(1246), + [anon_sym_PLUS2] = ACTIONS(1246), + [anon_sym_bit_DASHshl2] = ACTIONS(1246), + [anon_sym_bit_DASHshr2] = ACTIONS(1246), + [anon_sym_bit_DASHand2] = ACTIONS(1246), + [anon_sym_bit_DASHxor2] = ACTIONS(1246), + [anon_sym_bit_DASHor2] = ACTIONS(1246), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(339)] = { + [339] = { [sym_comment] = STATE(339), - [anon_sym_in] = ACTIONS(1242), - [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(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_err_GT_PIPE] = ACTIONS(1242), - [anon_sym_out_GT_PIPE] = ACTIONS(1242), - [anon_sym_e_GT_PIPE] = ACTIONS(1242), - [anon_sym_o_GT_PIPE] = ACTIONS(1242), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1242), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1242), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1242), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1242), - [anon_sym_GT2] = ACTIONS(1242), - [anon_sym_DASH2] = ACTIONS(1242), - [anon_sym_STAR2] = ACTIONS(1242), - [anon_sym_and2] = ACTIONS(1242), - [anon_sym_xor2] = ACTIONS(1242), - [anon_sym_or2] = ACTIONS(1242), - [anon_sym_not_DASHin2] = ACTIONS(1242), - [anon_sym_has2] = ACTIONS(1242), - [anon_sym_not_DASHhas2] = ACTIONS(1242), - [anon_sym_starts_DASHwith2] = ACTIONS(1242), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1242), - [anon_sym_ends_DASHwith2] = ACTIONS(1242), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1242), - [anon_sym_EQ_EQ2] = ACTIONS(1242), - [anon_sym_BANG_EQ2] = ACTIONS(1242), - [anon_sym_LT2] = ACTIONS(1242), - [anon_sym_LT_EQ2] = ACTIONS(1242), - [anon_sym_GT_EQ2] = ACTIONS(1242), - [anon_sym_EQ_TILDE2] = ACTIONS(1242), - [anon_sym_BANG_TILDE2] = ACTIONS(1242), - [anon_sym_like2] = ACTIONS(1242), - [anon_sym_not_DASHlike2] = ACTIONS(1242), - [anon_sym_STAR_STAR2] = ACTIONS(1242), - [anon_sym_PLUS_PLUS2] = ACTIONS(1242), - [anon_sym_SLASH2] = ACTIONS(1242), - [anon_sym_mod2] = ACTIONS(1242), - [anon_sym_SLASH_SLASH2] = ACTIONS(1242), - [anon_sym_PLUS2] = ACTIONS(1242), - [anon_sym_bit_DASHshl2] = ACTIONS(1242), - [anon_sym_bit_DASHshr2] = ACTIONS(1242), - [anon_sym_bit_DASHand2] = ACTIONS(1242), - [anon_sym_bit_DASHxor2] = ACTIONS(1242), - [anon_sym_bit_DASHor2] = ACTIONS(1242), + [anon_sym_in] = ACTIONS(1246), + [anon_sym_STAR_STAR] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_SLASH] = ACTIONS(1250), + [anon_sym_mod] = ACTIONS(1248), + [anon_sym_SLASH_SLASH] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_bit_DASHshl] = ACTIONS(1248), + [anon_sym_bit_DASHshr] = ACTIONS(1248), + [anon_sym_EQ_TILDE] = ACTIONS(1248), + [anon_sym_BANG_TILDE] = ACTIONS(1248), + [anon_sym_like] = ACTIONS(1248), + [anon_sym_not_DASHlike] = ACTIONS(1248), + [anon_sym_bit_DASHand] = ACTIONS(1248), + [anon_sym_bit_DASHxor] = ACTIONS(1248), + [anon_sym_bit_DASHor] = ACTIONS(1248), + [anon_sym_and] = ACTIONS(1248), + [anon_sym_xor] = ACTIONS(1248), + [anon_sym_or] = ACTIONS(1248), + [anon_sym_in2] = ACTIONS(1248), + [anon_sym_not_DASHin] = ACTIONS(1248), + [anon_sym_has] = ACTIONS(1248), + [anon_sym_not_DASHhas] = ACTIONS(1248), + [anon_sym_starts_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1248), + [anon_sym_ends_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1248), + [anon_sym_EQ_EQ] = ACTIONS(1248), + [anon_sym_BANG_EQ] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_LT_EQ] = ACTIONS(1248), + [anon_sym_GT] = ACTIONS(1250), + [anon_sym_GT_EQ] = ACTIONS(1248), + [aux_sym_cmd_identifier_token6] = ACTIONS(1252), + [sym__newline] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_PIPE] = ACTIONS(1246), + [anon_sym_err_GT_PIPE] = ACTIONS(1246), + [anon_sym_out_GT_PIPE] = ACTIONS(1246), + [anon_sym_e_GT_PIPE] = ACTIONS(1246), + [anon_sym_o_GT_PIPE] = ACTIONS(1246), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1246), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1246), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1246), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1246), + [anon_sym_GT2] = ACTIONS(1246), + [anon_sym_DASH2] = ACTIONS(1246), + [anon_sym_STAR2] = ACTIONS(1246), + [anon_sym_and2] = ACTIONS(1246), + [anon_sym_xor2] = ACTIONS(1246), + [anon_sym_or2] = ACTIONS(1246), + [anon_sym_not_DASHin2] = ACTIONS(1246), + [anon_sym_has2] = ACTIONS(1246), + [anon_sym_not_DASHhas2] = ACTIONS(1246), + [anon_sym_starts_DASHwith2] = ACTIONS(1246), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1246), + [anon_sym_ends_DASHwith2] = ACTIONS(1246), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1246), + [anon_sym_EQ_EQ2] = ACTIONS(1246), + [anon_sym_BANG_EQ2] = ACTIONS(1246), + [anon_sym_LT2] = ACTIONS(1246), + [anon_sym_LT_EQ2] = ACTIONS(1246), + [anon_sym_GT_EQ2] = ACTIONS(1246), + [anon_sym_EQ_TILDE2] = ACTIONS(1246), + [anon_sym_BANG_TILDE2] = ACTIONS(1246), + [anon_sym_like2] = ACTIONS(1246), + [anon_sym_not_DASHlike2] = ACTIONS(1246), + [anon_sym_STAR_STAR2] = ACTIONS(1246), + [anon_sym_PLUS_PLUS2] = ACTIONS(1246), + [anon_sym_SLASH2] = ACTIONS(1246), + [anon_sym_mod2] = ACTIONS(1246), + [anon_sym_SLASH_SLASH2] = ACTIONS(1246), + [anon_sym_PLUS2] = ACTIONS(1246), + [anon_sym_bit_DASHshl2] = ACTIONS(1246), + [anon_sym_bit_DASHshr2] = ACTIONS(1246), + [anon_sym_bit_DASHand2] = ACTIONS(1246), + [anon_sym_bit_DASHxor2] = ACTIONS(1246), + [anon_sym_bit_DASHor2] = ACTIONS(1246), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(340)] = { + [340] = { [sym_comment] = STATE(340), - [anon_sym_in] = ACTIONS(1234), - [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(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(1234), - [anon_sym_DASH2] = ACTIONS(1234), - [anon_sym_STAR2] = ACTIONS(1234), - [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(1234), - [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_STAR_STAR2] = ACTIONS(1234), - [anon_sym_PLUS_PLUS2] = ACTIONS(1234), - [anon_sym_SLASH2] = ACTIONS(1234), - [anon_sym_mod2] = ACTIONS(1234), - [anon_sym_SLASH_SLASH2] = ACTIONS(1234), - [anon_sym_PLUS2] = ACTIONS(1234), - [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_in] = ACTIONS(1238), + [anon_sym_STAR_STAR] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_SLASH] = ACTIONS(1250), + [anon_sym_mod] = ACTIONS(1248), + [anon_sym_SLASH_SLASH] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_bit_DASHshl] = ACTIONS(1248), + [anon_sym_bit_DASHshr] = ACTIONS(1248), + [anon_sym_EQ_TILDE] = ACTIONS(1248), + [anon_sym_BANG_TILDE] = ACTIONS(1248), + [anon_sym_like] = ACTIONS(1248), + [anon_sym_not_DASHlike] = ACTIONS(1248), + [anon_sym_bit_DASHand] = ACTIONS(1248), + [anon_sym_bit_DASHxor] = ACTIONS(1248), + [anon_sym_bit_DASHor] = ACTIONS(1248), + [anon_sym_and] = ACTIONS(1248), + [anon_sym_xor] = ACTIONS(1248), + [anon_sym_or] = ACTIONS(1248), + [anon_sym_in2] = ACTIONS(1248), + [anon_sym_not_DASHin] = ACTIONS(1248), + [anon_sym_has] = ACTIONS(1248), + [anon_sym_not_DASHhas] = ACTIONS(1248), + [anon_sym_starts_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1248), + [anon_sym_ends_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1248), + [anon_sym_EQ_EQ] = ACTIONS(1248), + [anon_sym_BANG_EQ] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_LT_EQ] = ACTIONS(1248), + [anon_sym_GT] = ACTIONS(1250), + [anon_sym_GT_EQ] = ACTIONS(1248), + [aux_sym_cmd_identifier_token6] = ACTIONS(1252), + [sym__newline] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1238), + [anon_sym_PIPE] = ACTIONS(1238), + [anon_sym_err_GT_PIPE] = ACTIONS(1238), + [anon_sym_out_GT_PIPE] = ACTIONS(1238), + [anon_sym_e_GT_PIPE] = ACTIONS(1238), + [anon_sym_o_GT_PIPE] = ACTIONS(1238), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1238), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1238), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1238), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1238), + [anon_sym_GT2] = ACTIONS(1238), + [anon_sym_DASH2] = ACTIONS(1238), + [anon_sym_STAR2] = ACTIONS(1238), + [anon_sym_and2] = ACTIONS(1238), + [anon_sym_xor2] = ACTIONS(1238), + [anon_sym_or2] = ACTIONS(1238), + [anon_sym_not_DASHin2] = ACTIONS(1238), + [anon_sym_has2] = ACTIONS(1238), + [anon_sym_not_DASHhas2] = ACTIONS(1238), + [anon_sym_starts_DASHwith2] = ACTIONS(1238), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1238), + [anon_sym_ends_DASHwith2] = ACTIONS(1238), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1238), + [anon_sym_EQ_EQ2] = ACTIONS(1238), + [anon_sym_BANG_EQ2] = ACTIONS(1238), + [anon_sym_LT2] = ACTIONS(1238), + [anon_sym_LT_EQ2] = ACTIONS(1238), + [anon_sym_GT_EQ2] = ACTIONS(1238), + [anon_sym_EQ_TILDE2] = ACTIONS(1238), + [anon_sym_BANG_TILDE2] = ACTIONS(1238), + [anon_sym_like2] = ACTIONS(1238), + [anon_sym_not_DASHlike2] = ACTIONS(1238), + [anon_sym_STAR_STAR2] = ACTIONS(1238), + [anon_sym_PLUS_PLUS2] = ACTIONS(1238), + [anon_sym_SLASH2] = ACTIONS(1238), + [anon_sym_mod2] = ACTIONS(1238), + [anon_sym_SLASH_SLASH2] = ACTIONS(1238), + [anon_sym_PLUS2] = ACTIONS(1238), + [anon_sym_bit_DASHshl2] = ACTIONS(1238), + [anon_sym_bit_DASHshr2] = ACTIONS(1238), + [anon_sym_bit_DASHand2] = ACTIONS(1238), + [anon_sym_bit_DASHxor2] = ACTIONS(1238), + [anon_sym_bit_DASHor2] = ACTIONS(1238), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(341)] = { + [341] = { [sym_comment] = STATE(341), - [anon_sym_in] = ACTIONS(1234), - [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(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(1234), - [anon_sym_DASH2] = ACTIONS(1234), - [anon_sym_STAR2] = ACTIONS(1234), - [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(1234), - [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_STAR_STAR2] = ACTIONS(1234), - [anon_sym_PLUS_PLUS2] = ACTIONS(1234), - [anon_sym_SLASH2] = ACTIONS(1234), - [anon_sym_mod2] = ACTIONS(1234), - [anon_sym_SLASH_SLASH2] = ACTIONS(1234), - [anon_sym_PLUS2] = ACTIONS(1234), - [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_in] = ACTIONS(1246), + [anon_sym_STAR_STAR] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_SLASH] = ACTIONS(1250), + [anon_sym_mod] = ACTIONS(1248), + [anon_sym_SLASH_SLASH] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_bit_DASHshl] = ACTIONS(1248), + [anon_sym_bit_DASHshr] = ACTIONS(1248), + [anon_sym_EQ_TILDE] = ACTIONS(1248), + [anon_sym_BANG_TILDE] = ACTIONS(1248), + [anon_sym_like] = ACTIONS(1248), + [anon_sym_not_DASHlike] = ACTIONS(1248), + [anon_sym_bit_DASHand] = ACTIONS(1248), + [anon_sym_bit_DASHxor] = ACTIONS(1248), + [anon_sym_bit_DASHor] = ACTIONS(1248), + [anon_sym_and] = ACTIONS(1248), + [anon_sym_xor] = ACTIONS(1248), + [anon_sym_or] = ACTIONS(1248), + [anon_sym_in2] = ACTIONS(1248), + [anon_sym_not_DASHin] = ACTIONS(1248), + [anon_sym_has] = ACTIONS(1248), + [anon_sym_not_DASHhas] = ACTIONS(1248), + [anon_sym_starts_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1248), + [anon_sym_ends_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1248), + [anon_sym_EQ_EQ] = ACTIONS(1248), + [anon_sym_BANG_EQ] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_LT_EQ] = ACTIONS(1248), + [anon_sym_GT] = ACTIONS(1250), + [anon_sym_GT_EQ] = ACTIONS(1248), + [aux_sym_cmd_identifier_token6] = ACTIONS(1252), + [sym__newline] = ACTIONS(1246), + [anon_sym_PIPE] = ACTIONS(1246), + [anon_sym_err_GT_PIPE] = ACTIONS(1246), + [anon_sym_out_GT_PIPE] = ACTIONS(1246), + [anon_sym_e_GT_PIPE] = ACTIONS(1246), + [anon_sym_o_GT_PIPE] = ACTIONS(1246), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1246), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1246), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1246), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1246), + [anon_sym_GT2] = ACTIONS(1246), + [anon_sym_DASH2] = ACTIONS(1246), + [anon_sym_STAR2] = ACTIONS(1246), + [anon_sym_and2] = ACTIONS(1246), + [anon_sym_xor2] = ACTIONS(1246), + [anon_sym_or2] = ACTIONS(1246), + [anon_sym_not_DASHin2] = ACTIONS(1246), + [anon_sym_has2] = ACTIONS(1246), + [anon_sym_not_DASHhas2] = ACTIONS(1246), + [anon_sym_starts_DASHwith2] = ACTIONS(1246), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1246), + [anon_sym_ends_DASHwith2] = ACTIONS(1246), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1246), + [anon_sym_EQ_EQ2] = ACTIONS(1246), + [anon_sym_BANG_EQ2] = ACTIONS(1246), + [anon_sym_LT2] = ACTIONS(1246), + [anon_sym_LT_EQ2] = ACTIONS(1246), + [anon_sym_GT_EQ2] = ACTIONS(1246), + [anon_sym_EQ_TILDE2] = ACTIONS(1246), + [anon_sym_BANG_TILDE2] = ACTIONS(1246), + [anon_sym_like2] = ACTIONS(1246), + [anon_sym_not_DASHlike2] = ACTIONS(1246), + [anon_sym_STAR_STAR2] = ACTIONS(1246), + [anon_sym_PLUS_PLUS2] = ACTIONS(1246), + [anon_sym_SLASH2] = ACTIONS(1246), + [anon_sym_mod2] = ACTIONS(1246), + [anon_sym_SLASH_SLASH2] = ACTIONS(1246), + [anon_sym_PLUS2] = ACTIONS(1246), + [anon_sym_bit_DASHshl2] = ACTIONS(1246), + [anon_sym_bit_DASHshr2] = ACTIONS(1246), + [anon_sym_bit_DASHand2] = ACTIONS(1246), + [anon_sym_bit_DASHxor2] = ACTIONS(1246), + [anon_sym_bit_DASHor2] = ACTIONS(1246), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(342)] = { + [342] = { [sym_comment] = STATE(342), - [anon_sym_in] = ACTIONS(1242), - [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(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_err_GT_PIPE] = ACTIONS(1242), - [anon_sym_out_GT_PIPE] = ACTIONS(1242), - [anon_sym_e_GT_PIPE] = ACTIONS(1242), - [anon_sym_o_GT_PIPE] = ACTIONS(1242), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1242), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1242), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1242), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1242), - [anon_sym_GT2] = ACTIONS(1242), - [anon_sym_DASH2] = ACTIONS(1242), - [anon_sym_STAR2] = ACTIONS(1242), - [anon_sym_and2] = ACTIONS(1242), - [anon_sym_xor2] = ACTIONS(1242), - [anon_sym_or2] = ACTIONS(1242), - [anon_sym_not_DASHin2] = ACTIONS(1242), - [anon_sym_has2] = ACTIONS(1242), - [anon_sym_not_DASHhas2] = ACTIONS(1242), - [anon_sym_starts_DASHwith2] = ACTIONS(1242), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1242), - [anon_sym_ends_DASHwith2] = ACTIONS(1242), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1242), - [anon_sym_EQ_EQ2] = ACTIONS(1242), - [anon_sym_BANG_EQ2] = ACTIONS(1242), - [anon_sym_LT2] = ACTIONS(1242), - [anon_sym_LT_EQ2] = ACTIONS(1242), - [anon_sym_GT_EQ2] = ACTIONS(1242), - [anon_sym_EQ_TILDE2] = ACTIONS(1242), - [anon_sym_BANG_TILDE2] = ACTIONS(1242), - [anon_sym_like2] = ACTIONS(1242), - [anon_sym_not_DASHlike2] = ACTIONS(1242), - [anon_sym_STAR_STAR2] = ACTIONS(1242), - [anon_sym_PLUS_PLUS2] = ACTIONS(1242), - [anon_sym_SLASH2] = ACTIONS(1242), - [anon_sym_mod2] = ACTIONS(1242), - [anon_sym_SLASH_SLASH2] = ACTIONS(1242), - [anon_sym_PLUS2] = ACTIONS(1242), - [anon_sym_bit_DASHshl2] = ACTIONS(1242), - [anon_sym_bit_DASHshr2] = ACTIONS(1242), - [anon_sym_bit_DASHand2] = ACTIONS(1242), - [anon_sym_bit_DASHxor2] = ACTIONS(1242), - [anon_sym_bit_DASHor2] = ACTIONS(1242), + [anon_sym_in] = ACTIONS(1238), + [anon_sym_STAR_STAR] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_SLASH] = ACTIONS(1250), + [anon_sym_mod] = ACTIONS(1248), + [anon_sym_SLASH_SLASH] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_bit_DASHshl] = ACTIONS(1248), + [anon_sym_bit_DASHshr] = ACTIONS(1248), + [anon_sym_EQ_TILDE] = ACTIONS(1248), + [anon_sym_BANG_TILDE] = ACTIONS(1248), + [anon_sym_like] = ACTIONS(1248), + [anon_sym_not_DASHlike] = ACTIONS(1248), + [anon_sym_bit_DASHand] = ACTIONS(1248), + [anon_sym_bit_DASHxor] = ACTIONS(1248), + [anon_sym_bit_DASHor] = ACTIONS(1248), + [anon_sym_and] = ACTIONS(1248), + [anon_sym_xor] = ACTIONS(1248), + [anon_sym_or] = ACTIONS(1248), + [anon_sym_in2] = ACTIONS(1248), + [anon_sym_not_DASHin] = ACTIONS(1248), + [anon_sym_has] = ACTIONS(1248), + [anon_sym_not_DASHhas] = ACTIONS(1248), + [anon_sym_starts_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1248), + [anon_sym_ends_DASHwith] = ACTIONS(1248), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1248), + [anon_sym_EQ_EQ] = ACTIONS(1248), + [anon_sym_BANG_EQ] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_LT_EQ] = ACTIONS(1248), + [anon_sym_GT] = ACTIONS(1250), + [anon_sym_GT_EQ] = ACTIONS(1248), + [aux_sym_cmd_identifier_token6] = ACTIONS(1252), + [sym__newline] = ACTIONS(1238), + [anon_sym_PIPE] = ACTIONS(1238), + [anon_sym_err_GT_PIPE] = ACTIONS(1238), + [anon_sym_out_GT_PIPE] = ACTIONS(1238), + [anon_sym_e_GT_PIPE] = ACTIONS(1238), + [anon_sym_o_GT_PIPE] = ACTIONS(1238), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1238), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1238), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1238), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1238), + [anon_sym_GT2] = ACTIONS(1238), + [anon_sym_DASH2] = ACTIONS(1238), + [anon_sym_STAR2] = ACTIONS(1238), + [anon_sym_and2] = ACTIONS(1238), + [anon_sym_xor2] = ACTIONS(1238), + [anon_sym_or2] = ACTIONS(1238), + [anon_sym_not_DASHin2] = ACTIONS(1238), + [anon_sym_has2] = ACTIONS(1238), + [anon_sym_not_DASHhas2] = ACTIONS(1238), + [anon_sym_starts_DASHwith2] = ACTIONS(1238), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1238), + [anon_sym_ends_DASHwith2] = ACTIONS(1238), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1238), + [anon_sym_EQ_EQ2] = ACTIONS(1238), + [anon_sym_BANG_EQ2] = ACTIONS(1238), + [anon_sym_LT2] = ACTIONS(1238), + [anon_sym_LT_EQ2] = ACTIONS(1238), + [anon_sym_GT_EQ2] = ACTIONS(1238), + [anon_sym_EQ_TILDE2] = ACTIONS(1238), + [anon_sym_BANG_TILDE2] = ACTIONS(1238), + [anon_sym_like2] = ACTIONS(1238), + [anon_sym_not_DASHlike2] = ACTIONS(1238), + [anon_sym_STAR_STAR2] = ACTIONS(1238), + [anon_sym_PLUS_PLUS2] = ACTIONS(1238), + [anon_sym_SLASH2] = ACTIONS(1238), + [anon_sym_mod2] = ACTIONS(1238), + [anon_sym_SLASH_SLASH2] = ACTIONS(1238), + [anon_sym_PLUS2] = ACTIONS(1238), + [anon_sym_bit_DASHshl2] = ACTIONS(1238), + [anon_sym_bit_DASHshr2] = ACTIONS(1238), + [anon_sym_bit_DASHand2] = ACTIONS(1238), + [anon_sym_bit_DASHxor2] = ACTIONS(1238), + [anon_sym_bit_DASHor2] = ACTIONS(1238), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(343)] = { + [343] = { [sym_comment] = STATE(343), - [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), + [anon_sym_EQ] = ACTIONS(1464), + [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_RBRACK] = ACTIONS(1464), + [anon_sym_GT2] = ACTIONS(1464), + [anon_sym_DASH2] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1464), + [anon_sym_DOT_DOT] = ACTIONS(1464), + [anon_sym_STAR2] = ACTIONS(1464), + [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(1464), + [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(1464), + [anon_sym_mod2] = ACTIONS(1464), + [anon_sym_SLASH_SLASH2] = ACTIONS(1464), + [anon_sym_PLUS2] = ACTIONS(1464), + [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(1464), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1466), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1466), + [sym__entry_separator] = ACTIONS(1466), + [anon_sym_COLON2] = ACTIONS(1464), + [anon_sym_QMARK2] = ACTIONS(1468), + [anon_sym_DOT2] = ACTIONS(1464), + [anon_sym_err_GT] = ACTIONS(1464), + [anon_sym_out_GT] = ACTIONS(1464), + [anon_sym_e_GT] = ACTIONS(1464), + [anon_sym_o_GT] = ACTIONS(1464), + [anon_sym_err_PLUSout_GT] = ACTIONS(1464), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1464), + [anon_sym_o_PLUSe_GT] = ACTIONS(1464), + [anon_sym_e_PLUSo_GT] = ACTIONS(1464), + [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(105), }, - [STATE(344)] = { - [sym_cell_path] = STATE(415), - [sym_path] = STATE(385), + [344] = { + [sym__path_suffix] = STATE(388), [sym_comment] = STATE(344), - [aux_sym__where_predicate_lhs_repeat1] = STATE(374), - [anon_sym_EQ] = ACTIONS(1466), - [anon_sym_PLUS_EQ] = ACTIONS(1468), - [anon_sym_DASH_EQ] = ACTIONS(1468), - [anon_sym_STAR_EQ] = ACTIONS(1468), - [anon_sym_SLASH_EQ] = ACTIONS(1468), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1468), - [anon_sym_in] = ACTIONS(1468), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_like2] = ACTIONS(1468), - [anon_sym_not_DASHlike2] = ACTIONS(1468), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1466), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [anon_sym_COLON2] = ACTIONS(1468), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(345)] = { - [sym__path_suffix] = STATE(387), - [sym_comment] = STATE(345), - [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(1476), - [anon_sym_BANG] = ACTIONS(1478), - [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(346)] = { - [sym_cell_path] = STATE(383), - [sym_path] = STATE(366), - [sym_comment] = STATE(346), - [aux_sym__where_predicate_lhs_repeat1] = STATE(375), - [anon_sym_EQ] = ACTIONS(1466), - [anon_sym_PLUS_EQ] = ACTIONS(1466), - [anon_sym_DASH_EQ] = ACTIONS(1466), - [anon_sym_STAR_EQ] = ACTIONS(1466), - [anon_sym_SLASH_EQ] = ACTIONS(1466), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1466), - [anon_sym_in] = ACTIONS(1466), - [sym__newline] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym_PIPE] = ACTIONS(1466), - [anon_sym_err_GT_PIPE] = ACTIONS(1466), - [anon_sym_out_GT_PIPE] = ACTIONS(1466), - [anon_sym_e_GT_PIPE] = ACTIONS(1466), - [anon_sym_o_GT_PIPE] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1466), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1466), - [anon_sym_xor2] = ACTIONS(1466), - [anon_sym_or2] = ACTIONS(1466), - [anon_sym_not_DASHin2] = ACTIONS(1466), - [anon_sym_has2] = ACTIONS(1466), - [anon_sym_not_DASHhas2] = ACTIONS(1466), - [anon_sym_starts_DASHwith2] = ACTIONS(1466), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1466), - [anon_sym_ends_DASHwith2] = ACTIONS(1466), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1466), - [anon_sym_EQ_EQ2] = ACTIONS(1466), - [anon_sym_BANG_EQ2] = ACTIONS(1466), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1466), - [anon_sym_GT_EQ2] = ACTIONS(1466), - [anon_sym_EQ_TILDE2] = ACTIONS(1466), - [anon_sym_BANG_TILDE2] = ACTIONS(1466), - [anon_sym_like2] = ACTIONS(1466), - [anon_sym_not_DASHlike2] = ACTIONS(1466), - [anon_sym_STAR_STAR2] = ACTIONS(1466), - [anon_sym_PLUS_PLUS2] = ACTIONS(1466), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1466), - [anon_sym_SLASH_SLASH2] = ACTIONS(1466), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1466), - [anon_sym_bit_DASHshr2] = ACTIONS(1466), - [anon_sym_bit_DASHand2] = ACTIONS(1466), - [anon_sym_bit_DASHxor2] = ACTIONS(1466), - [anon_sym_bit_DASHor2] = ACTIONS(1466), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [sym__entry_separator] = ACTIONS(1468), - [anon_sym_COLON2] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1480), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1466), - [anon_sym_out_GT_GT] = ACTIONS(1466), - [anon_sym_e_GT_GT] = ACTIONS(1466), - [anon_sym_o_GT_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1466), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(347)] = { - [sym__path_suffix] = STATE(368), - [sym_comment] = STATE(347), - [anon_sym_EQ] = ACTIONS(1472), + [anon_sym_EQ] = ACTIONS(1470), [anon_sym_PLUS_EQ] = ACTIONS(1472), [anon_sym_DASH_EQ] = ACTIONS(1472), [anon_sym_STAR_EQ] = ACTIONS(1472), @@ -76523,10 +76228,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_RPAREN] = ACTIONS(1472), + [anon_sym_GT2] = ACTIONS(1470), + [anon_sym_DASH2] = ACTIONS(1470), [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_STAR2] = ACTIONS(1472), + [anon_sym_STAR2] = ACTIONS(1470), [anon_sym_and2] = ACTIONS(1472), [anon_sym_xor2] = ACTIONS(1472), [anon_sym_or2] = ACTIONS(1472), @@ -76539,7 +76245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LT2] = ACTIONS(1470), [anon_sym_LT_EQ2] = ACTIONS(1472), [anon_sym_GT_EQ2] = ACTIONS(1472), [anon_sym_EQ_TILDE2] = ACTIONS(1472), @@ -76547,32 +76253,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_PLUS_PLUS2] = ACTIONS(1470), + [anon_sym_SLASH2] = ACTIONS(1470), [anon_sym_mod2] = ACTIONS(1472), [anon_sym_SLASH_SLASH2] = ACTIONS(1472), - [anon_sym_PLUS2] = ACTIONS(1472), + [anon_sym_PLUS2] = ACTIONS(1470), [anon_sym_bit_DASHshl2] = ACTIONS(1472), [anon_sym_bit_DASHshr2] = ACTIONS(1472), [anon_sym_bit_DASHand2] = ACTIONS(1472), [anon_sym_bit_DASHxor2] = ACTIONS(1472), [anon_sym_bit_DASHor2] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1472), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1474), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1474), - [sym__entry_separator] = ACTIONS(1474), + [anon_sym_DOT_DOT2] = ACTIONS(1470), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), [anon_sym_COLON2] = ACTIONS(1472), - [anon_sym_QMARK2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1484), - [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_QMARK2] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_DOT2] = ACTIONS(1470), + [anon_sym_err_GT] = ACTIONS(1470), + [anon_sym_out_GT] = ACTIONS(1470), + [anon_sym_e_GT] = ACTIONS(1470), + [anon_sym_o_GT] = ACTIONS(1470), + [anon_sym_err_PLUSout_GT] = ACTIONS(1470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), + [anon_sym_o_PLUSe_GT] = ACTIONS(1470), + [anon_sym_e_PLUSo_GT] = ACTIONS(1470), [anon_sym_err_GT_GT] = ACTIONS(1472), [anon_sym_out_GT_GT] = ACTIONS(1472), [anon_sym_e_GT_GT] = ACTIONS(1472), @@ -76581,92 +76286,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), + [anon_sym_POUND] = ACTIONS(3), + }, + [345] = { + [sym_cell_path] = STATE(421), + [sym_path] = STATE(393), + [sym_comment] = STATE(345), + [aux_sym__where_predicate_lhs_repeat1] = STATE(369), + [anon_sym_EQ] = ACTIONS(1478), + [anon_sym_PLUS_EQ] = ACTIONS(1480), + [anon_sym_DASH_EQ] = ACTIONS(1480), + [anon_sym_STAR_EQ] = ACTIONS(1480), + [anon_sym_SLASH_EQ] = ACTIONS(1480), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1480), + [anon_sym_in] = ACTIONS(1480), + [sym__newline] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_err_GT_PIPE] = ACTIONS(1480), + [anon_sym_out_GT_PIPE] = ACTIONS(1480), + [anon_sym_e_GT_PIPE] = ACTIONS(1480), + [anon_sym_o_GT_PIPE] = ACTIONS(1480), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), + [anon_sym_RPAREN] = ACTIONS(1480), + [anon_sym_GT2] = ACTIONS(1478), + [anon_sym_DASH2] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_STAR2] = ACTIONS(1478), + [anon_sym_and2] = ACTIONS(1480), + [anon_sym_xor2] = ACTIONS(1480), + [anon_sym_or2] = ACTIONS(1480), + [anon_sym_not_DASHin2] = ACTIONS(1480), + [anon_sym_has2] = ACTIONS(1480), + [anon_sym_not_DASHhas2] = ACTIONS(1480), + [anon_sym_starts_DASHwith2] = ACTIONS(1480), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1480), + [anon_sym_ends_DASHwith2] = ACTIONS(1480), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1480), + [anon_sym_EQ_EQ2] = ACTIONS(1480), + [anon_sym_BANG_EQ2] = ACTIONS(1480), + [anon_sym_LT2] = ACTIONS(1478), + [anon_sym_LT_EQ2] = ACTIONS(1480), + [anon_sym_GT_EQ2] = ACTIONS(1480), + [anon_sym_EQ_TILDE2] = ACTIONS(1480), + [anon_sym_BANG_TILDE2] = ACTIONS(1480), + [anon_sym_like2] = ACTIONS(1480), + [anon_sym_not_DASHlike2] = ACTIONS(1480), + [anon_sym_STAR_STAR2] = ACTIONS(1480), + [anon_sym_PLUS_PLUS2] = ACTIONS(1478), + [anon_sym_SLASH2] = ACTIONS(1478), + [anon_sym_mod2] = ACTIONS(1480), + [anon_sym_SLASH_SLASH2] = ACTIONS(1480), + [anon_sym_PLUS2] = ACTIONS(1478), + [anon_sym_bit_DASHshl2] = ACTIONS(1480), + [anon_sym_bit_DASHshr2] = ACTIONS(1480), + [anon_sym_bit_DASHand2] = ACTIONS(1480), + [anon_sym_bit_DASHxor2] = ACTIONS(1480), + [anon_sym_bit_DASHor2] = ACTIONS(1480), + [anon_sym_DOT_DOT2] = ACTIONS(1478), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), + [anon_sym_COLON2] = ACTIONS(1480), + [anon_sym_DOT2] = ACTIONS(1482), + [anon_sym_err_GT] = ACTIONS(1478), + [anon_sym_out_GT] = ACTIONS(1478), + [anon_sym_e_GT] = ACTIONS(1478), + [anon_sym_o_GT] = ACTIONS(1478), + [anon_sym_err_PLUSout_GT] = ACTIONS(1478), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), + [anon_sym_o_PLUSe_GT] = ACTIONS(1478), + [anon_sym_e_PLUSo_GT] = ACTIONS(1478), + [anon_sym_err_GT_GT] = ACTIONS(1480), + [anon_sym_out_GT_GT] = ACTIONS(1480), + [anon_sym_e_GT_GT] = ACTIONS(1480), + [anon_sym_o_GT_GT] = ACTIONS(1480), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), + [anon_sym_POUND] = ACTIONS(3), + }, + [346] = { + [sym_cell_path] = STATE(382), + [sym_path] = STATE(375), + [sym_comment] = STATE(346), + [aux_sym__where_predicate_lhs_repeat1] = STATE(368), + [anon_sym_EQ] = ACTIONS(1478), + [anon_sym_PLUS_EQ] = ACTIONS(1478), + [anon_sym_DASH_EQ] = ACTIONS(1478), + [anon_sym_STAR_EQ] = ACTIONS(1478), + [anon_sym_SLASH_EQ] = ACTIONS(1478), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1478), + [anon_sym_in] = ACTIONS(1478), + [sym__newline] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_err_GT_PIPE] = ACTIONS(1478), + [anon_sym_out_GT_PIPE] = ACTIONS(1478), + [anon_sym_e_GT_PIPE] = ACTIONS(1478), + [anon_sym_o_GT_PIPE] = ACTIONS(1478), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1478), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1478), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1478), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1478), + [anon_sym_GT2] = ACTIONS(1478), + [anon_sym_DASH2] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_STAR2] = ACTIONS(1478), + [anon_sym_and2] = ACTIONS(1478), + [anon_sym_xor2] = ACTIONS(1478), + [anon_sym_or2] = ACTIONS(1478), + [anon_sym_not_DASHin2] = ACTIONS(1478), + [anon_sym_has2] = ACTIONS(1478), + [anon_sym_not_DASHhas2] = ACTIONS(1478), + [anon_sym_starts_DASHwith2] = ACTIONS(1478), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1478), + [anon_sym_ends_DASHwith2] = ACTIONS(1478), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1478), + [anon_sym_EQ_EQ2] = ACTIONS(1478), + [anon_sym_BANG_EQ2] = ACTIONS(1478), + [anon_sym_LT2] = ACTIONS(1478), + [anon_sym_LT_EQ2] = ACTIONS(1478), + [anon_sym_GT_EQ2] = ACTIONS(1478), + [anon_sym_EQ_TILDE2] = ACTIONS(1478), + [anon_sym_BANG_TILDE2] = ACTIONS(1478), + [anon_sym_like2] = ACTIONS(1478), + [anon_sym_not_DASHlike2] = ACTIONS(1478), + [anon_sym_STAR_STAR2] = ACTIONS(1478), + [anon_sym_PLUS_PLUS2] = ACTIONS(1478), + [anon_sym_SLASH2] = ACTIONS(1478), + [anon_sym_mod2] = ACTIONS(1478), + [anon_sym_SLASH_SLASH2] = ACTIONS(1478), + [anon_sym_PLUS2] = ACTIONS(1478), + [anon_sym_bit_DASHshl2] = ACTIONS(1478), + [anon_sym_bit_DASHshr2] = ACTIONS(1478), + [anon_sym_bit_DASHand2] = ACTIONS(1478), + [anon_sym_bit_DASHxor2] = ACTIONS(1478), + [anon_sym_bit_DASHor2] = ACTIONS(1478), + [anon_sym_DOT_DOT2] = ACTIONS(1478), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), + [sym__entry_separator] = ACTIONS(1480), + [anon_sym_COLON2] = ACTIONS(1478), + [anon_sym_DOT2] = ACTIONS(1484), + [anon_sym_err_GT] = ACTIONS(1478), + [anon_sym_out_GT] = ACTIONS(1478), + [anon_sym_e_GT] = ACTIONS(1478), + [anon_sym_o_GT] = ACTIONS(1478), + [anon_sym_err_PLUSout_GT] = ACTIONS(1478), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), + [anon_sym_o_PLUSe_GT] = ACTIONS(1478), + [anon_sym_e_PLUSo_GT] = ACTIONS(1478), + [anon_sym_err_GT_GT] = ACTIONS(1478), + [anon_sym_out_GT_GT] = ACTIONS(1478), + [anon_sym_e_GT_GT] = ACTIONS(1478), + [anon_sym_o_GT_GT] = ACTIONS(1478), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1478), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1478), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1478), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1478), + [anon_sym_POUND] = ACTIONS(105), + }, + [347] = { + [sym__path_suffix] = STATE(356), + [sym_comment] = STATE(347), + [anon_sym_EQ] = ACTIONS(1470), + [anon_sym_PLUS_EQ] = ACTIONS(1470), + [anon_sym_DASH_EQ] = ACTIONS(1470), + [anon_sym_STAR_EQ] = ACTIONS(1470), + [anon_sym_SLASH_EQ] = ACTIONS(1470), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1470), + [anon_sym_in] = ACTIONS(1470), + [sym__newline] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_err_GT_PIPE] = ACTIONS(1470), + [anon_sym_out_GT_PIPE] = ACTIONS(1470), + [anon_sym_e_GT_PIPE] = ACTIONS(1470), + [anon_sym_o_GT_PIPE] = ACTIONS(1470), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1470), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1470), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1470), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1470), + [anon_sym_GT2] = ACTIONS(1470), + [anon_sym_DASH2] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_STAR2] = ACTIONS(1470), + [anon_sym_and2] = ACTIONS(1470), + [anon_sym_xor2] = ACTIONS(1470), + [anon_sym_or2] = ACTIONS(1470), + [anon_sym_not_DASHin2] = ACTIONS(1470), + [anon_sym_has2] = ACTIONS(1470), + [anon_sym_not_DASHhas2] = ACTIONS(1470), + [anon_sym_starts_DASHwith2] = ACTIONS(1470), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1470), + [anon_sym_ends_DASHwith2] = ACTIONS(1470), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1470), + [anon_sym_EQ_EQ2] = ACTIONS(1470), + [anon_sym_BANG_EQ2] = ACTIONS(1470), + [anon_sym_LT2] = ACTIONS(1470), + [anon_sym_LT_EQ2] = ACTIONS(1470), + [anon_sym_GT_EQ2] = ACTIONS(1470), + [anon_sym_EQ_TILDE2] = ACTIONS(1470), + [anon_sym_BANG_TILDE2] = ACTIONS(1470), + [anon_sym_like2] = ACTIONS(1470), + [anon_sym_not_DASHlike2] = ACTIONS(1470), + [anon_sym_STAR_STAR2] = ACTIONS(1470), + [anon_sym_PLUS_PLUS2] = ACTIONS(1470), + [anon_sym_SLASH2] = ACTIONS(1470), + [anon_sym_mod2] = ACTIONS(1470), + [anon_sym_SLASH_SLASH2] = ACTIONS(1470), + [anon_sym_PLUS2] = ACTIONS(1470), + [anon_sym_bit_DASHshl2] = ACTIONS(1470), + [anon_sym_bit_DASHshr2] = ACTIONS(1470), + [anon_sym_bit_DASHand2] = ACTIONS(1470), + [anon_sym_bit_DASHxor2] = ACTIONS(1470), + [anon_sym_bit_DASHor2] = ACTIONS(1470), + [anon_sym_DOT_DOT2] = ACTIONS(1470), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), + [sym__entry_separator] = ACTIONS(1472), + [anon_sym_COLON2] = ACTIONS(1470), + [anon_sym_QMARK2] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_DOT2] = ACTIONS(1470), + [anon_sym_err_GT] = ACTIONS(1470), + [anon_sym_out_GT] = ACTIONS(1470), + [anon_sym_e_GT] = ACTIONS(1470), + [anon_sym_o_GT] = ACTIONS(1470), + [anon_sym_err_PLUSout_GT] = ACTIONS(1470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), + [anon_sym_o_PLUSe_GT] = ACTIONS(1470), + [anon_sym_e_PLUSo_GT] = ACTIONS(1470), + [anon_sym_err_GT_GT] = ACTIONS(1470), + [anon_sym_out_GT_GT] = ACTIONS(1470), + [anon_sym_e_GT_GT] = ACTIONS(1470), + [anon_sym_o_GT_GT] = ACTIONS(1470), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1470), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1470), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1470), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1470), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(348)] = { + [348] = { [sym_comment] = STATE(348), - [anon_sym_EQ] = ACTIONS(1486), - [anon_sym_PLUS_EQ] = ACTIONS(1488), - [anon_sym_DASH_EQ] = ACTIONS(1488), - [anon_sym_STAR_EQ] = ACTIONS(1488), - [anon_sym_SLASH_EQ] = ACTIONS(1488), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1488), - [anon_sym_in] = ACTIONS(1488), - [sym__newline] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1488), - [anon_sym_PIPE] = ACTIONS(1488), - [anon_sym_err_GT_PIPE] = ACTIONS(1488), - [anon_sym_out_GT_PIPE] = ACTIONS(1488), - [anon_sym_e_GT_PIPE] = ACTIONS(1488), - [anon_sym_o_GT_PIPE] = ACTIONS(1488), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1488), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1488), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1488), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1488), - [anon_sym_RPAREN] = ACTIONS(1488), - [anon_sym_GT2] = ACTIONS(1486), - [anon_sym_DASH2] = ACTIONS(1486), - [anon_sym_RBRACE] = ACTIONS(1488), - [anon_sym_STAR2] = ACTIONS(1486), - [anon_sym_and2] = ACTIONS(1488), - [anon_sym_xor2] = ACTIONS(1488), - [anon_sym_or2] = ACTIONS(1488), - [anon_sym_not_DASHin2] = ACTIONS(1488), - [anon_sym_has2] = ACTIONS(1488), - [anon_sym_not_DASHhas2] = ACTIONS(1488), - [anon_sym_starts_DASHwith2] = ACTIONS(1488), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1488), - [anon_sym_ends_DASHwith2] = ACTIONS(1488), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1488), - [anon_sym_EQ_EQ2] = ACTIONS(1488), - [anon_sym_BANG_EQ2] = ACTIONS(1488), - [anon_sym_LT2] = ACTIONS(1486), - [anon_sym_LT_EQ2] = ACTIONS(1488), - [anon_sym_GT_EQ2] = ACTIONS(1488), - [anon_sym_EQ_TILDE2] = ACTIONS(1488), - [anon_sym_BANG_TILDE2] = ACTIONS(1488), - [anon_sym_like2] = ACTIONS(1488), - [anon_sym_not_DASHlike2] = ACTIONS(1488), - [anon_sym_STAR_STAR2] = ACTIONS(1488), - [anon_sym_PLUS_PLUS2] = ACTIONS(1486), - [anon_sym_SLASH2] = ACTIONS(1486), - [anon_sym_mod2] = ACTIONS(1488), - [anon_sym_SLASH_SLASH2] = ACTIONS(1488), - [anon_sym_PLUS2] = ACTIONS(1486), - [anon_sym_bit_DASHshl2] = ACTIONS(1488), - [anon_sym_bit_DASHshr2] = ACTIONS(1488), - [anon_sym_bit_DASHand2] = ACTIONS(1488), - [anon_sym_bit_DASHxor2] = ACTIONS(1488), - [anon_sym_bit_DASHor2] = ACTIONS(1488), - [anon_sym_DOT_DOT2] = ACTIONS(1486), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1488), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1488), - [anon_sym_COLON2] = ACTIONS(1488), - [anon_sym_QMARK2] = ACTIONS(1488), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_DOT2] = ACTIONS(1486), - [anon_sym_err_GT] = ACTIONS(1486), - [anon_sym_out_GT] = ACTIONS(1486), - [anon_sym_e_GT] = ACTIONS(1486), - [anon_sym_o_GT] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT] = ACTIONS(1486), - [anon_sym_err_GT_GT] = ACTIONS(1488), - [anon_sym_out_GT_GT] = ACTIONS(1488), - [anon_sym_e_GT_GT] = ACTIONS(1488), - [anon_sym_o_GT_GT] = ACTIONS(1488), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1488), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1488), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1488), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1488), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(349)] = { - [sym_path] = STATE(385), - [sym_comment] = STATE(349), - [aux_sym__where_predicate_lhs_repeat1] = STATE(349), [anon_sym_EQ] = ACTIONS(1490), [anon_sym_PLUS_EQ] = ACTIONS(1492), [anon_sym_DASH_EQ] = ACTIONS(1492), @@ -76724,7 +76590,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), [anon_sym_COLON2] = ACTIONS(1492), - [anon_sym_DOT2] = ACTIONS(1494), + [anon_sym_QMARK2] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_DOT2] = ACTIONS(1490), [anon_sym_err_GT] = ACTIONS(1490), [anon_sym_out_GT] = ACTIONS(1490), [anon_sym_e_GT] = ACTIONS(1490), @@ -76743,2090 +76611,1128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(350)] = { - [aux_sym__repeat_newline] = STATE(4464), - [sym_expr_parenthesized] = STATE(4216), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4990), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4854), - [sym_val_bool] = STATE(4482), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4196), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4854), - [sym__val_number_decimal] = STATE(3713), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4854), - [sym_val_filesize] = STATE(4854), - [sym_val_binary] = STATE(4854), - [sym_val_string] = STATE(4854), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4723), - [sym__spread_list] = STATE(5037), - [sym_list_body] = STATE(5320), - [sym_val_entry] = STATE(4735), - [sym_val_record] = STATE(4854), - [sym__table_head] = STATE(3955), - [sym_val_table] = STATE(4854), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4529), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), - [sym_comment] = STATE(350), - [aux_sym__types_body_repeat1] = STATE(484), - [aux_sym_parameter_repeat2] = STATE(4533), - [aux_sym_list_body_repeat1] = STATE(533), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [sym__newline] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_RBRACK] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1513), + [349] = { + [aux_sym__repeat_newline] = STATE(4441), + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4957), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4868), + [sym_val_bool] = STATE(4386), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(3992), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4868), + [sym__val_number_decimal] = STATE(3716), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4868), + [sym_val_filesize] = STATE(4868), + [sym_val_binary] = STATE(4868), + [sym_val_string] = STATE(4868), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4898), + [sym__spread_list] = STATE(4958), + [sym_list_body] = STATE(5163), + [sym_val_entry] = STATE(4903), + [sym_val_record] = STATE(4868), + [sym__table_head] = STATE(3895), + [sym_val_table] = STATE(4868), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), + [sym_comment] = STATE(349), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4458), + [aux_sym_list_body_repeat1] = STATE(690), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [sym__newline] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_RBRACK] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1510), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(351)] = { - [aux_sym__repeat_newline] = STATE(4464), - [sym_expr_parenthesized] = STATE(4216), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4990), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4854), - [sym_val_bool] = STATE(4482), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4196), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4854), - [sym__val_number_decimal] = STATE(3713), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4854), - [sym_val_filesize] = STATE(4854), - [sym_val_binary] = STATE(4854), - [sym_val_string] = STATE(4854), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4723), - [sym__spread_list] = STATE(5037), - [sym_list_body] = STATE(5282), - [sym_val_entry] = STATE(4735), - [sym_val_record] = STATE(4854), - [sym__table_head] = STATE(3891), - [sym_val_table] = STATE(4854), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4529), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [350] = { + [sym_comment] = STATE(350), + [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(105), + }, + [351] = { + [aux_sym__repeat_newline] = STATE(4441), + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4957), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4868), + [sym_val_bool] = STATE(4386), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(3992), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4868), + [sym__val_number_decimal] = STATE(3716), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4868), + [sym_val_filesize] = STATE(4868), + [sym_val_binary] = STATE(4868), + [sym_val_string] = STATE(4868), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4898), + [sym__spread_list] = STATE(4958), + [sym_list_body] = STATE(5237), + [sym_val_entry] = STATE(4903), + [sym_val_record] = STATE(4868), + [sym__table_head] = STATE(3983), + [sym_val_table] = STATE(4868), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), [sym_comment] = STATE(351), - [aux_sym__types_body_repeat1] = STATE(484), - [aux_sym_parameter_repeat2] = STATE(4533), - [aux_sym_list_body_repeat1] = STATE(533), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [sym__newline] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_RBRACK] = ACTIONS(1525), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1513), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4458), + [aux_sym_list_body_repeat1] = STATE(690), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [sym__newline] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_RBRACK] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1510), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(352)] = { + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [352] = { + [aux_sym__repeat_newline] = STATE(4441), + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4957), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4868), + [sym_val_bool] = STATE(4386), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(3992), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4868), + [sym__val_number_decimal] = STATE(3716), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4868), + [sym_val_filesize] = STATE(4868), + [sym_val_binary] = STATE(4868), + [sym_val_string] = STATE(4868), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4898), + [sym__spread_list] = STATE(4958), + [sym_list_body] = STATE(5355), + [sym_val_entry] = STATE(4903), + [sym_val_record] = STATE(4868), + [sym__table_head] = STATE(3932), + [sym_val_table] = STATE(4868), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), [sym_comment] = STATE(352), - [anon_sym_EQ] = ACTIONS(1527), - [anon_sym_PLUS_EQ] = ACTIONS(1529), - [anon_sym_DASH_EQ] = ACTIONS(1529), - [anon_sym_STAR_EQ] = ACTIONS(1529), - [anon_sym_SLASH_EQ] = ACTIONS(1529), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1529), - [anon_sym_in] = ACTIONS(1529), - [sym__newline] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1529), - [anon_sym_PIPE] = ACTIONS(1529), - [anon_sym_err_GT_PIPE] = ACTIONS(1529), - [anon_sym_out_GT_PIPE] = ACTIONS(1529), - [anon_sym_e_GT_PIPE] = ACTIONS(1529), - [anon_sym_o_GT_PIPE] = ACTIONS(1529), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1529), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1529), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1529), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1529), - [anon_sym_RPAREN] = ACTIONS(1529), - [anon_sym_GT2] = ACTIONS(1527), - [anon_sym_DASH2] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(1529), - [anon_sym_STAR2] = ACTIONS(1527), - [anon_sym_and2] = ACTIONS(1529), - [anon_sym_xor2] = ACTIONS(1529), - [anon_sym_or2] = ACTIONS(1529), - [anon_sym_not_DASHin2] = ACTIONS(1529), - [anon_sym_has2] = ACTIONS(1529), - [anon_sym_not_DASHhas2] = ACTIONS(1529), - [anon_sym_starts_DASHwith2] = ACTIONS(1529), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1529), - [anon_sym_ends_DASHwith2] = ACTIONS(1529), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1529), - [anon_sym_EQ_EQ2] = ACTIONS(1529), - [anon_sym_BANG_EQ2] = ACTIONS(1529), - [anon_sym_LT2] = ACTIONS(1527), - [anon_sym_LT_EQ2] = ACTIONS(1529), - [anon_sym_GT_EQ2] = ACTIONS(1529), - [anon_sym_EQ_TILDE2] = ACTIONS(1529), - [anon_sym_BANG_TILDE2] = ACTIONS(1529), - [anon_sym_like2] = ACTIONS(1529), - [anon_sym_not_DASHlike2] = ACTIONS(1529), - [anon_sym_STAR_STAR2] = ACTIONS(1529), - [anon_sym_PLUS_PLUS2] = ACTIONS(1527), - [anon_sym_SLASH2] = ACTIONS(1527), - [anon_sym_mod2] = ACTIONS(1529), - [anon_sym_SLASH_SLASH2] = ACTIONS(1529), - [anon_sym_PLUS2] = ACTIONS(1527), - [anon_sym_bit_DASHshl2] = ACTIONS(1529), - [anon_sym_bit_DASHshr2] = ACTIONS(1529), - [anon_sym_bit_DASHand2] = ACTIONS(1529), - [anon_sym_bit_DASHxor2] = ACTIONS(1529), - [anon_sym_bit_DASHor2] = ACTIONS(1529), - [anon_sym_DOT_DOT2] = ACTIONS(1527), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1529), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1529), - [anon_sym_COLON2] = ACTIONS(1529), - [anon_sym_QMARK2] = ACTIONS(1529), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_DOT2] = ACTIONS(1527), - [anon_sym_err_GT] = ACTIONS(1527), - [anon_sym_out_GT] = ACTIONS(1527), - [anon_sym_e_GT] = ACTIONS(1527), - [anon_sym_o_GT] = ACTIONS(1527), - [anon_sym_err_PLUSout_GT] = ACTIONS(1527), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1527), - [anon_sym_o_PLUSe_GT] = ACTIONS(1527), - [anon_sym_e_PLUSo_GT] = ACTIONS(1527), - [anon_sym_err_GT_GT] = ACTIONS(1529), - [anon_sym_out_GT_GT] = ACTIONS(1529), - [anon_sym_e_GT_GT] = ACTIONS(1529), - [anon_sym_o_GT_GT] = ACTIONS(1529), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1529), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1529), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1529), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1529), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(353)] = { + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4458), + [aux_sym_list_body_repeat1] = STATE(690), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [sym__newline] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_RBRACK] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [353] = { + [aux_sym__repeat_newline] = STATE(4441), + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4957), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4868), + [sym_val_bool] = STATE(4386), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(3992), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4868), + [sym__val_number_decimal] = STATE(3716), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4868), + [sym_val_filesize] = STATE(4868), + [sym_val_binary] = STATE(4868), + [sym_val_string] = STATE(4868), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4898), + [sym__spread_list] = STATE(4958), + [sym_list_body] = STATE(5116), + [sym_val_entry] = STATE(4903), + [sym_val_record] = STATE(4868), + [sym__table_head] = STATE(3955), + [sym_val_table] = STATE(4868), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), [sym_comment] = STATE(353), - [anon_sym_EQ] = ACTIONS(1531), - [anon_sym_PLUS_EQ] = ACTIONS(1533), - [anon_sym_DASH_EQ] = ACTIONS(1533), - [anon_sym_STAR_EQ] = ACTIONS(1533), - [anon_sym_SLASH_EQ] = ACTIONS(1533), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1533), - [anon_sym_in] = ACTIONS(1533), - [sym__newline] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1533), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_err_GT_PIPE] = ACTIONS(1533), - [anon_sym_out_GT_PIPE] = ACTIONS(1533), - [anon_sym_e_GT_PIPE] = ACTIONS(1533), - [anon_sym_o_GT_PIPE] = ACTIONS(1533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1533), - [anon_sym_RPAREN] = ACTIONS(1533), - [anon_sym_GT2] = ACTIONS(1531), - [anon_sym_DASH2] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1533), - [anon_sym_STAR2] = ACTIONS(1531), - [anon_sym_and2] = ACTIONS(1533), - [anon_sym_xor2] = ACTIONS(1533), - [anon_sym_or2] = ACTIONS(1533), - [anon_sym_not_DASHin2] = ACTIONS(1533), - [anon_sym_has2] = ACTIONS(1533), - [anon_sym_not_DASHhas2] = ACTIONS(1533), - [anon_sym_starts_DASHwith2] = ACTIONS(1533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1533), - [anon_sym_ends_DASHwith2] = ACTIONS(1533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1533), - [anon_sym_EQ_EQ2] = ACTIONS(1533), - [anon_sym_BANG_EQ2] = ACTIONS(1533), - [anon_sym_LT2] = ACTIONS(1531), - [anon_sym_LT_EQ2] = ACTIONS(1533), - [anon_sym_GT_EQ2] = ACTIONS(1533), - [anon_sym_EQ_TILDE2] = ACTIONS(1533), - [anon_sym_BANG_TILDE2] = ACTIONS(1533), - [anon_sym_like2] = ACTIONS(1533), - [anon_sym_not_DASHlike2] = ACTIONS(1533), - [anon_sym_STAR_STAR2] = ACTIONS(1533), - [anon_sym_PLUS_PLUS2] = ACTIONS(1531), - [anon_sym_SLASH2] = ACTIONS(1531), - [anon_sym_mod2] = ACTIONS(1533), - [anon_sym_SLASH_SLASH2] = ACTIONS(1533), - [anon_sym_PLUS2] = ACTIONS(1531), - [anon_sym_bit_DASHshl2] = ACTIONS(1533), - [anon_sym_bit_DASHshr2] = ACTIONS(1533), - [anon_sym_bit_DASHand2] = ACTIONS(1533), - [anon_sym_bit_DASHxor2] = ACTIONS(1533), - [anon_sym_bit_DASHor2] = ACTIONS(1533), - [anon_sym_DOT_DOT2] = ACTIONS(1531), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1533), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1533), - [anon_sym_COLON2] = ACTIONS(1533), - [anon_sym_QMARK2] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_DOT2] = ACTIONS(1531), - [anon_sym_err_GT] = ACTIONS(1531), - [anon_sym_out_GT] = ACTIONS(1531), - [anon_sym_e_GT] = ACTIONS(1531), - [anon_sym_o_GT] = ACTIONS(1531), - [anon_sym_err_PLUSout_GT] = ACTIONS(1531), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1531), - [anon_sym_o_PLUSe_GT] = ACTIONS(1531), - [anon_sym_e_PLUSo_GT] = ACTIONS(1531), - [anon_sym_err_GT_GT] = ACTIONS(1533), - [anon_sym_out_GT_GT] = ACTIONS(1533), - [anon_sym_e_GT_GT] = ACTIONS(1533), - [anon_sym_o_GT_GT] = ACTIONS(1533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1533), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(354)] = { - [sym_comment] = STATE(354), - [anon_sym_EQ] = ACTIONS(1535), - [anon_sym_PLUS_EQ] = ACTIONS(1537), - [anon_sym_DASH_EQ] = ACTIONS(1537), - [anon_sym_STAR_EQ] = ACTIONS(1537), - [anon_sym_SLASH_EQ] = ACTIONS(1537), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1537), - [anon_sym_in] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_RPAREN] = ACTIONS(1537), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1537), - [anon_sym_xor2] = ACTIONS(1537), - [anon_sym_or2] = ACTIONS(1537), - [anon_sym_not_DASHin2] = ACTIONS(1537), - [anon_sym_has2] = ACTIONS(1537), - [anon_sym_not_DASHhas2] = ACTIONS(1537), - [anon_sym_starts_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), - [anon_sym_ends_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), - [anon_sym_EQ_EQ2] = ACTIONS(1537), - [anon_sym_BANG_EQ2] = ACTIONS(1537), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1537), - [anon_sym_GT_EQ2] = ACTIONS(1537), - [anon_sym_EQ_TILDE2] = ACTIONS(1537), - [anon_sym_BANG_TILDE2] = ACTIONS(1537), - [anon_sym_like2] = ACTIONS(1537), - [anon_sym_not_DASHlike2] = ACTIONS(1537), - [anon_sym_STAR_STAR2] = ACTIONS(1537), - [anon_sym_PLUS_PLUS2] = ACTIONS(1535), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1537), - [anon_sym_SLASH_SLASH2] = ACTIONS(1537), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1537), - [anon_sym_bit_DASHshr2] = ACTIONS(1537), - [anon_sym_bit_DASHand2] = ACTIONS(1537), - [anon_sym_bit_DASHxor2] = ACTIONS(1537), - [anon_sym_bit_DASHor2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_COLON2] = ACTIONS(1537), - [anon_sym_QMARK2] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(355)] = { - [aux_sym__repeat_newline] = STATE(4464), - [sym_expr_parenthesized] = STATE(4216), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4990), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4854), - [sym_val_bool] = STATE(4482), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4196), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4854), - [sym__val_number_decimal] = STATE(3713), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4854), - [sym_val_filesize] = STATE(4854), - [sym_val_binary] = STATE(4854), - [sym_val_string] = STATE(4854), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4723), - [sym__spread_list] = STATE(5037), - [sym_list_body] = STATE(5489), - [sym_val_entry] = STATE(4735), - [sym_val_record] = STATE(4854), - [sym__table_head] = STATE(3878), - [sym_val_table] = STATE(4854), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4529), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), - [sym_comment] = STATE(355), - [aux_sym__types_body_repeat1] = STATE(484), - [aux_sym_parameter_repeat2] = STATE(4533), - [aux_sym_list_body_repeat1] = STATE(533), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [sym__newline] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_RBRACK] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1513), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4458), + [aux_sym_list_body_repeat1] = STATE(690), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [sym__newline] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_RBRACK] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1510), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(356)] = { - [sym_comment] = STATE(356), - [anon_sym_EQ] = ACTIONS(1541), - [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_RPAREN] = ACTIONS(1543), - [anon_sym_GT2] = ACTIONS(1541), - [anon_sym_DASH2] = ACTIONS(1541), - [anon_sym_RBRACE] = ACTIONS(1543), - [anon_sym_STAR2] = ACTIONS(1541), - [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(1541), - [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(1541), - [anon_sym_SLASH2] = ACTIONS(1541), - [anon_sym_mod2] = ACTIONS(1543), - [anon_sym_SLASH_SLASH2] = ACTIONS(1543), - [anon_sym_PLUS2] = ACTIONS(1541), - [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(1541), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1543), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1543), - [anon_sym_COLON2] = ACTIONS(1543), - [anon_sym_QMARK2] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_DOT2] = ACTIONS(1541), - [anon_sym_err_GT] = ACTIONS(1541), - [anon_sym_out_GT] = ACTIONS(1541), - [anon_sym_e_GT] = ACTIONS(1541), - [anon_sym_o_GT] = ACTIONS(1541), - [anon_sym_err_PLUSout_GT] = ACTIONS(1541), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1541), - [anon_sym_o_PLUSe_GT] = ACTIONS(1541), - [anon_sym_e_PLUSo_GT] = ACTIONS(1541), - [anon_sym_err_GT_GT] = ACTIONS(1543), - [anon_sym_out_GT_GT] = ACTIONS(1543), - [anon_sym_e_GT_GT] = ACTIONS(1543), - [anon_sym_o_GT_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1543), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(357)] = { - [sym_comment] = STATE(357), - [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_QMARK2] = ACTIONS(1547), - [anon_sym_BANG] = 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(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(358)] = { - [sym_comment] = STATE(358), - [anon_sym_EQ] = ACTIONS(1527), - [anon_sym_PLUS_EQ] = ACTIONS(1527), - [anon_sym_DASH_EQ] = ACTIONS(1527), - [anon_sym_STAR_EQ] = ACTIONS(1527), - [anon_sym_SLASH_EQ] = ACTIONS(1527), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1527), - [anon_sym_in] = ACTIONS(1527), - [sym__newline] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1527), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_err_GT_PIPE] = ACTIONS(1527), - [anon_sym_out_GT_PIPE] = ACTIONS(1527), - [anon_sym_e_GT_PIPE] = ACTIONS(1527), - [anon_sym_o_GT_PIPE] = ACTIONS(1527), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1527), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1527), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1527), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1527), - [anon_sym_GT2] = ACTIONS(1527), - [anon_sym_DASH2] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(1527), - [anon_sym_STAR2] = ACTIONS(1527), - [anon_sym_and2] = ACTIONS(1527), - [anon_sym_xor2] = ACTIONS(1527), - [anon_sym_or2] = ACTIONS(1527), - [anon_sym_not_DASHin2] = ACTIONS(1527), - [anon_sym_has2] = ACTIONS(1527), - [anon_sym_not_DASHhas2] = ACTIONS(1527), - [anon_sym_starts_DASHwith2] = ACTIONS(1527), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1527), - [anon_sym_ends_DASHwith2] = ACTIONS(1527), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1527), - [anon_sym_EQ_EQ2] = ACTIONS(1527), - [anon_sym_BANG_EQ2] = ACTIONS(1527), - [anon_sym_LT2] = ACTIONS(1527), - [anon_sym_LT_EQ2] = ACTIONS(1527), - [anon_sym_GT_EQ2] = ACTIONS(1527), - [anon_sym_EQ_TILDE2] = ACTIONS(1527), - [anon_sym_BANG_TILDE2] = ACTIONS(1527), - [anon_sym_like2] = ACTIONS(1527), - [anon_sym_not_DASHlike2] = ACTIONS(1527), - [anon_sym_STAR_STAR2] = ACTIONS(1527), - [anon_sym_PLUS_PLUS2] = ACTIONS(1527), - [anon_sym_SLASH2] = ACTIONS(1527), - [anon_sym_mod2] = ACTIONS(1527), - [anon_sym_SLASH_SLASH2] = ACTIONS(1527), - [anon_sym_PLUS2] = ACTIONS(1527), - [anon_sym_bit_DASHshl2] = ACTIONS(1527), - [anon_sym_bit_DASHshr2] = ACTIONS(1527), - [anon_sym_bit_DASHand2] = ACTIONS(1527), - [anon_sym_bit_DASHxor2] = ACTIONS(1527), - [anon_sym_bit_DASHor2] = ACTIONS(1527), - [anon_sym_DOT_DOT2] = ACTIONS(1527), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1529), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1529), - [sym__entry_separator] = ACTIONS(1529), - [anon_sym_COLON2] = ACTIONS(1527), - [anon_sym_QMARK2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_DOT2] = ACTIONS(1527), - [anon_sym_err_GT] = ACTIONS(1527), - [anon_sym_out_GT] = ACTIONS(1527), - [anon_sym_e_GT] = ACTIONS(1527), - [anon_sym_o_GT] = ACTIONS(1527), - [anon_sym_err_PLUSout_GT] = ACTIONS(1527), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1527), - [anon_sym_o_PLUSe_GT] = ACTIONS(1527), - [anon_sym_e_PLUSo_GT] = ACTIONS(1527), - [anon_sym_err_GT_GT] = ACTIONS(1527), - [anon_sym_out_GT_GT] = ACTIONS(1527), - [anon_sym_e_GT_GT] = ACTIONS(1527), - [anon_sym_o_GT_GT] = ACTIONS(1527), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1527), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1527), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1527), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1527), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [354] = { + [sym_comment] = STATE(354), + [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_RBRACK] = ACTIONS(1532), + [anon_sym_GT2] = ACTIONS(1532), + [anon_sym_DASH2] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_DOT_DOT] = 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(1532), + [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(105), }, - [STATE(359)] = { - [sym_comment] = STATE(359), - [anon_sym_EQ] = ACTIONS(1531), - [anon_sym_PLUS_EQ] = ACTIONS(1531), - [anon_sym_DASH_EQ] = ACTIONS(1531), - [anon_sym_STAR_EQ] = ACTIONS(1531), - [anon_sym_SLASH_EQ] = ACTIONS(1531), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1531), - [anon_sym_in] = ACTIONS(1531), - [sym__newline] = ACTIONS(1531), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_PIPE] = ACTIONS(1531), - [anon_sym_err_GT_PIPE] = ACTIONS(1531), - [anon_sym_out_GT_PIPE] = ACTIONS(1531), - [anon_sym_e_GT_PIPE] = ACTIONS(1531), - [anon_sym_o_GT_PIPE] = ACTIONS(1531), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1531), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1531), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1531), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1531), - [anon_sym_GT2] = ACTIONS(1531), - [anon_sym_DASH2] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1531), - [anon_sym_STAR2] = ACTIONS(1531), - [anon_sym_and2] = ACTIONS(1531), - [anon_sym_xor2] = ACTIONS(1531), - [anon_sym_or2] = ACTIONS(1531), - [anon_sym_not_DASHin2] = ACTIONS(1531), - [anon_sym_has2] = ACTIONS(1531), - [anon_sym_not_DASHhas2] = ACTIONS(1531), - [anon_sym_starts_DASHwith2] = ACTIONS(1531), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1531), - [anon_sym_ends_DASHwith2] = ACTIONS(1531), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1531), - [anon_sym_EQ_EQ2] = ACTIONS(1531), - [anon_sym_BANG_EQ2] = ACTIONS(1531), - [anon_sym_LT2] = ACTIONS(1531), - [anon_sym_LT_EQ2] = ACTIONS(1531), - [anon_sym_GT_EQ2] = ACTIONS(1531), - [anon_sym_EQ_TILDE2] = ACTIONS(1531), - [anon_sym_BANG_TILDE2] = ACTIONS(1531), - [anon_sym_like2] = ACTIONS(1531), - [anon_sym_not_DASHlike2] = ACTIONS(1531), - [anon_sym_STAR_STAR2] = ACTIONS(1531), - [anon_sym_PLUS_PLUS2] = ACTIONS(1531), - [anon_sym_SLASH2] = ACTIONS(1531), - [anon_sym_mod2] = ACTIONS(1531), - [anon_sym_SLASH_SLASH2] = ACTIONS(1531), - [anon_sym_PLUS2] = ACTIONS(1531), - [anon_sym_bit_DASHshl2] = ACTIONS(1531), - [anon_sym_bit_DASHshr2] = ACTIONS(1531), - [anon_sym_bit_DASHand2] = ACTIONS(1531), - [anon_sym_bit_DASHxor2] = ACTIONS(1531), - [anon_sym_bit_DASHor2] = ACTIONS(1531), - [anon_sym_DOT_DOT2] = ACTIONS(1531), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1533), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1533), - [sym__entry_separator] = ACTIONS(1533), - [anon_sym_COLON2] = ACTIONS(1531), - [anon_sym_QMARK2] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_DOT2] = ACTIONS(1531), - [anon_sym_err_GT] = ACTIONS(1531), - [anon_sym_out_GT] = ACTIONS(1531), - [anon_sym_e_GT] = ACTIONS(1531), - [anon_sym_o_GT] = ACTIONS(1531), - [anon_sym_err_PLUSout_GT] = ACTIONS(1531), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1531), - [anon_sym_o_PLUSe_GT] = ACTIONS(1531), - [anon_sym_e_PLUSo_GT] = ACTIONS(1531), - [anon_sym_err_GT_GT] = ACTIONS(1531), - [anon_sym_out_GT_GT] = ACTIONS(1531), - [anon_sym_e_GT_GT] = ACTIONS(1531), - [anon_sym_o_GT_GT] = ACTIONS(1531), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1531), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1531), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1531), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1531), + [355] = { + [sym_comment] = STATE(355), + [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), + }, + [356] = { + [sym_comment] = STATE(356), + [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_RBRACK] = ACTIONS(1536), + [anon_sym_GT2] = ACTIONS(1536), + [anon_sym_DASH2] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_DOT_DOT] = 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(1536), + [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(105), }, - [STATE(360)] = { - [aux_sym__repeat_newline] = STATE(4464), - [sym_expr_parenthesized] = STATE(4216), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4990), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4854), - [sym_val_bool] = STATE(4482), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4196), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4854), - [sym__val_number_decimal] = STATE(3713), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4854), - [sym_val_filesize] = STATE(4854), - [sym_val_binary] = STATE(4854), - [sym_val_string] = STATE(4854), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4723), - [sym__spread_list] = STATE(5037), - [sym_list_body] = STATE(5233), - [sym_val_entry] = STATE(4735), - [sym_val_record] = STATE(4854), - [sym__table_head] = STATE(3919), - [sym_val_table] = STATE(4854), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4529), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), - [sym_comment] = STATE(360), - [aux_sym__types_body_repeat1] = STATE(484), - [aux_sym_parameter_repeat2] = STATE(4533), - [aux_sym_list_body_repeat1] = STATE(533), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [sym__newline] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_RBRACK] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1513), + [357] = { + [sym_comment] = STATE(357), + [anon_sym_EQ] = ACTIONS(1540), + [anon_sym_PLUS_EQ] = ACTIONS(1542), + [anon_sym_DASH_EQ] = ACTIONS(1542), + [anon_sym_STAR_EQ] = ACTIONS(1542), + [anon_sym_SLASH_EQ] = ACTIONS(1542), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1542), + [anon_sym_in] = ACTIONS(1542), + [sym__newline] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_err_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_GT_PIPE] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1542), + [anon_sym_GT2] = ACTIONS(1540), + [anon_sym_DASH2] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_STAR2] = ACTIONS(1540), + [anon_sym_and2] = ACTIONS(1542), + [anon_sym_xor2] = ACTIONS(1542), + [anon_sym_or2] = ACTIONS(1542), + [anon_sym_not_DASHin2] = ACTIONS(1542), + [anon_sym_has2] = ACTIONS(1542), + [anon_sym_not_DASHhas2] = ACTIONS(1542), + [anon_sym_starts_DASHwith2] = ACTIONS(1542), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1542), + [anon_sym_ends_DASHwith2] = ACTIONS(1542), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1542), + [anon_sym_EQ_EQ2] = ACTIONS(1542), + [anon_sym_BANG_EQ2] = ACTIONS(1542), + [anon_sym_LT2] = ACTIONS(1540), + [anon_sym_LT_EQ2] = ACTIONS(1542), + [anon_sym_GT_EQ2] = ACTIONS(1542), + [anon_sym_EQ_TILDE2] = ACTIONS(1542), + [anon_sym_BANG_TILDE2] = ACTIONS(1542), + [anon_sym_like2] = ACTIONS(1542), + [anon_sym_not_DASHlike2] = ACTIONS(1542), + [anon_sym_STAR_STAR2] = ACTIONS(1542), + [anon_sym_PLUS_PLUS2] = ACTIONS(1540), + [anon_sym_SLASH2] = ACTIONS(1540), + [anon_sym_mod2] = ACTIONS(1542), + [anon_sym_SLASH_SLASH2] = ACTIONS(1542), + [anon_sym_PLUS2] = ACTIONS(1540), + [anon_sym_bit_DASHshl2] = ACTIONS(1542), + [anon_sym_bit_DASHshr2] = ACTIONS(1542), + [anon_sym_bit_DASHand2] = ACTIONS(1542), + [anon_sym_bit_DASHxor2] = ACTIONS(1542), + [anon_sym_bit_DASHor2] = ACTIONS(1542), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [anon_sym_COLON2] = ACTIONS(1542), + [anon_sym_QMARK2] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_DOT2] = ACTIONS(1540), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [anon_sym_err_GT_GT] = ACTIONS(1542), + [anon_sym_out_GT_GT] = ACTIONS(1542), + [anon_sym_e_GT_GT] = ACTIONS(1542), + [anon_sym_o_GT_GT] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), + [anon_sym_POUND] = ACTIONS(3), + }, + [358] = { + [sym_comment] = STATE(358), + [anon_sym_EQ] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(1546), + [anon_sym_DASH_EQ] = ACTIONS(1546), + [anon_sym_STAR_EQ] = ACTIONS(1546), + [anon_sym_SLASH_EQ] = ACTIONS(1546), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1546), + [anon_sym_in] = ACTIONS(1546), + [sym__newline] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_err_GT_PIPE] = ACTIONS(1546), + [anon_sym_out_GT_PIPE] = ACTIONS(1546), + [anon_sym_e_GT_PIPE] = ACTIONS(1546), + [anon_sym_o_GT_PIPE] = ACTIONS(1546), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1546), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1546), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1546), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1546), + [anon_sym_RPAREN] = ACTIONS(1546), + [anon_sym_GT2] = ACTIONS(1544), + [anon_sym_DASH2] = ACTIONS(1544), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_STAR2] = ACTIONS(1544), + [anon_sym_and2] = ACTIONS(1546), + [anon_sym_xor2] = ACTIONS(1546), + [anon_sym_or2] = ACTIONS(1546), + [anon_sym_not_DASHin2] = ACTIONS(1546), + [anon_sym_has2] = ACTIONS(1546), + [anon_sym_not_DASHhas2] = ACTIONS(1546), + [anon_sym_starts_DASHwith2] = ACTIONS(1546), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1546), + [anon_sym_ends_DASHwith2] = ACTIONS(1546), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1546), + [anon_sym_EQ_EQ2] = ACTIONS(1546), + [anon_sym_BANG_EQ2] = ACTIONS(1546), + [anon_sym_LT2] = ACTIONS(1544), + [anon_sym_LT_EQ2] = ACTIONS(1546), + [anon_sym_GT_EQ2] = ACTIONS(1546), + [anon_sym_EQ_TILDE2] = ACTIONS(1546), + [anon_sym_BANG_TILDE2] = ACTIONS(1546), + [anon_sym_like2] = ACTIONS(1546), + [anon_sym_not_DASHlike2] = ACTIONS(1546), + [anon_sym_STAR_STAR2] = ACTIONS(1546), + [anon_sym_PLUS_PLUS2] = ACTIONS(1544), + [anon_sym_SLASH2] = ACTIONS(1544), + [anon_sym_mod2] = ACTIONS(1546), + [anon_sym_SLASH_SLASH2] = ACTIONS(1546), + [anon_sym_PLUS2] = ACTIONS(1544), + [anon_sym_bit_DASHshl2] = ACTIONS(1546), + [anon_sym_bit_DASHshr2] = ACTIONS(1546), + [anon_sym_bit_DASHand2] = ACTIONS(1546), + [anon_sym_bit_DASHxor2] = ACTIONS(1546), + [anon_sym_bit_DASHor2] = ACTIONS(1546), + [anon_sym_DOT_DOT2] = ACTIONS(1544), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1546), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1546), + [anon_sym_COLON2] = ACTIONS(1546), + [anon_sym_QMARK2] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1544), + [anon_sym_DOT2] = ACTIONS(1544), + [anon_sym_err_GT] = ACTIONS(1544), + [anon_sym_out_GT] = ACTIONS(1544), + [anon_sym_e_GT] = ACTIONS(1544), + [anon_sym_o_GT] = ACTIONS(1544), + [anon_sym_err_PLUSout_GT] = ACTIONS(1544), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1544), + [anon_sym_o_PLUSe_GT] = ACTIONS(1544), + [anon_sym_e_PLUSo_GT] = ACTIONS(1544), + [anon_sym_err_GT_GT] = ACTIONS(1546), + [anon_sym_out_GT_GT] = ACTIONS(1546), + [anon_sym_e_GT_GT] = ACTIONS(1546), + [anon_sym_o_GT_GT] = ACTIONS(1546), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1546), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1546), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1546), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(3), + }, + [359] = { + [aux_sym__repeat_newline] = STATE(4441), + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4957), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4868), + [sym_val_bool] = STATE(4386), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(3992), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4868), + [sym__val_number_decimal] = STATE(3716), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4868), + [sym_val_filesize] = STATE(4868), + [sym_val_binary] = STATE(4868), + [sym_val_string] = STATE(4868), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4898), + [sym__spread_list] = STATE(4958), + [sym_list_body] = STATE(5168), + [sym_val_entry] = STATE(4903), + [sym_val_record] = STATE(4868), + [sym__table_head] = STATE(3950), + [sym_val_table] = STATE(4868), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), + [sym_comment] = STATE(359), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4458), + [aux_sym_list_body_repeat1] = STATE(690), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [sym__newline] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_RBRACK] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1510), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(361)] = { - [aux_sym__repeat_newline] = STATE(4464), - [sym_expr_parenthesized] = STATE(4216), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4990), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4854), - [sym_val_bool] = STATE(4482), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4196), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4854), - [sym__val_number_decimal] = STATE(3713), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4854), - [sym_val_filesize] = STATE(4854), - [sym_val_binary] = STATE(4854), - [sym_val_string] = STATE(4854), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4723), - [sym__spread_list] = STATE(5037), - [sym_list_body] = STATE(5273), - [sym_val_entry] = STATE(4735), - [sym_val_record] = STATE(4854), - [sym__table_head] = STATE(3962), - [sym_val_table] = STATE(4854), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4529), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [360] = { + [sym_comment] = STATE(360), + [anon_sym_EQ] = ACTIONS(1550), + [anon_sym_PLUS_EQ] = ACTIONS(1552), + [anon_sym_DASH_EQ] = ACTIONS(1552), + [anon_sym_STAR_EQ] = ACTIONS(1552), + [anon_sym_SLASH_EQ] = ACTIONS(1552), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1552), + [anon_sym_in] = ACTIONS(1552), + [sym__newline] = ACTIONS(1552), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_err_GT_PIPE] = ACTIONS(1552), + [anon_sym_out_GT_PIPE] = ACTIONS(1552), + [anon_sym_e_GT_PIPE] = ACTIONS(1552), + [anon_sym_o_GT_PIPE] = ACTIONS(1552), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), + [anon_sym_RPAREN] = ACTIONS(1552), + [anon_sym_GT2] = ACTIONS(1550), + [anon_sym_DASH2] = ACTIONS(1550), + [anon_sym_RBRACE] = ACTIONS(1552), + [anon_sym_STAR2] = ACTIONS(1550), + [anon_sym_and2] = ACTIONS(1552), + [anon_sym_xor2] = ACTIONS(1552), + [anon_sym_or2] = ACTIONS(1552), + [anon_sym_not_DASHin2] = ACTIONS(1552), + [anon_sym_has2] = ACTIONS(1552), + [anon_sym_not_DASHhas2] = ACTIONS(1552), + [anon_sym_starts_DASHwith2] = ACTIONS(1552), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1552), + [anon_sym_ends_DASHwith2] = ACTIONS(1552), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1552), + [anon_sym_EQ_EQ2] = ACTIONS(1552), + [anon_sym_BANG_EQ2] = ACTIONS(1552), + [anon_sym_LT2] = ACTIONS(1550), + [anon_sym_LT_EQ2] = ACTIONS(1552), + [anon_sym_GT_EQ2] = ACTIONS(1552), + [anon_sym_EQ_TILDE2] = ACTIONS(1552), + [anon_sym_BANG_TILDE2] = ACTIONS(1552), + [anon_sym_like2] = ACTIONS(1552), + [anon_sym_not_DASHlike2] = ACTIONS(1552), + [anon_sym_STAR_STAR2] = ACTIONS(1552), + [anon_sym_PLUS_PLUS2] = ACTIONS(1550), + [anon_sym_SLASH2] = ACTIONS(1550), + [anon_sym_mod2] = ACTIONS(1552), + [anon_sym_SLASH_SLASH2] = ACTIONS(1552), + [anon_sym_PLUS2] = ACTIONS(1550), + [anon_sym_bit_DASHshl2] = ACTIONS(1552), + [anon_sym_bit_DASHshr2] = ACTIONS(1552), + [anon_sym_bit_DASHand2] = ACTIONS(1552), + [anon_sym_bit_DASHxor2] = ACTIONS(1552), + [anon_sym_bit_DASHor2] = ACTIONS(1552), + [anon_sym_DOT_DOT2] = ACTIONS(1550), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), + [anon_sym_COLON2] = ACTIONS(1552), + [anon_sym_QMARK2] = ACTIONS(1552), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_DOT2] = ACTIONS(1550), + [anon_sym_err_GT] = ACTIONS(1550), + [anon_sym_out_GT] = ACTIONS(1550), + [anon_sym_e_GT] = ACTIONS(1550), + [anon_sym_o_GT] = ACTIONS(1550), + [anon_sym_err_PLUSout_GT] = ACTIONS(1550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), + [anon_sym_o_PLUSe_GT] = ACTIONS(1550), + [anon_sym_e_PLUSo_GT] = ACTIONS(1550), + [anon_sym_err_GT_GT] = ACTIONS(1552), + [anon_sym_out_GT_GT] = ACTIONS(1552), + [anon_sym_e_GT_GT] = ACTIONS(1552), + [anon_sym_o_GT_GT] = ACTIONS(1552), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), + [anon_sym_POUND] = ACTIONS(3), + }, + [361] = { + [aux_sym__repeat_newline] = STATE(4441), + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4957), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4868), + [sym_val_bool] = STATE(4386), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(3992), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4868), + [sym__val_number_decimal] = STATE(3716), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4868), + [sym_val_filesize] = STATE(4868), + [sym_val_binary] = STATE(4868), + [sym_val_string] = STATE(4868), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4898), + [sym__spread_list] = STATE(4958), + [sym_list_body] = STATE(5285), + [sym_val_entry] = STATE(4903), + [sym_val_record] = STATE(4868), + [sym__table_head] = STATE(3913), + [sym_val_table] = STATE(4868), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), [sym_comment] = STATE(361), - [aux_sym__types_body_repeat1] = STATE(484), - [aux_sym_parameter_repeat2] = STATE(4533), - [aux_sym_list_body_repeat1] = STATE(533), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [sym__newline] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_RBRACK] = ACTIONS(1551), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1513), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4458), + [aux_sym_list_body_repeat1] = STATE(690), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [sym__newline] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_RBRACK] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1510), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(362)] = { + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [362] = { [sym_comment] = STATE(362), - [anon_sym_EQ] = ACTIONS(1486), - [anon_sym_PLUS_EQ] = ACTIONS(1486), - [anon_sym_DASH_EQ] = ACTIONS(1486), - [anon_sym_STAR_EQ] = ACTIONS(1486), - [anon_sym_SLASH_EQ] = ACTIONS(1486), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1486), - [sym__newline] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1486), - [anon_sym_err_GT_PIPE] = ACTIONS(1486), - [anon_sym_out_GT_PIPE] = ACTIONS(1486), - [anon_sym_e_GT_PIPE] = ACTIONS(1486), - [anon_sym_o_GT_PIPE] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1486), - [anon_sym_GT2] = ACTIONS(1486), - [anon_sym_DASH2] = ACTIONS(1486), - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_STAR2] = ACTIONS(1486), - [anon_sym_and2] = ACTIONS(1486), - [anon_sym_xor2] = ACTIONS(1486), - [anon_sym_or2] = ACTIONS(1486), - [anon_sym_not_DASHin2] = ACTIONS(1486), - [anon_sym_has2] = ACTIONS(1486), - [anon_sym_not_DASHhas2] = ACTIONS(1486), - [anon_sym_starts_DASHwith2] = ACTIONS(1486), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1486), - [anon_sym_ends_DASHwith2] = ACTIONS(1486), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1486), - [anon_sym_EQ_EQ2] = ACTIONS(1486), - [anon_sym_BANG_EQ2] = ACTIONS(1486), - [anon_sym_LT2] = ACTIONS(1486), - [anon_sym_LT_EQ2] = ACTIONS(1486), - [anon_sym_GT_EQ2] = ACTIONS(1486), - [anon_sym_EQ_TILDE2] = ACTIONS(1486), - [anon_sym_BANG_TILDE2] = ACTIONS(1486), - [anon_sym_like2] = ACTIONS(1486), - [anon_sym_not_DASHlike2] = ACTIONS(1486), - [anon_sym_STAR_STAR2] = ACTIONS(1486), - [anon_sym_PLUS_PLUS2] = ACTIONS(1486), - [anon_sym_SLASH2] = ACTIONS(1486), - [anon_sym_mod2] = ACTIONS(1486), - [anon_sym_SLASH_SLASH2] = ACTIONS(1486), - [anon_sym_PLUS2] = ACTIONS(1486), - [anon_sym_bit_DASHshl2] = ACTIONS(1486), - [anon_sym_bit_DASHshr2] = ACTIONS(1486), - [anon_sym_bit_DASHand2] = ACTIONS(1486), - [anon_sym_bit_DASHxor2] = ACTIONS(1486), - [anon_sym_bit_DASHor2] = ACTIONS(1486), - [anon_sym_DOT_DOT2] = ACTIONS(1486), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1488), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1488), - [sym__entry_separator] = ACTIONS(1488), - [anon_sym_COLON2] = ACTIONS(1486), - [anon_sym_QMARK2] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_DOT2] = ACTIONS(1486), - [anon_sym_err_GT] = ACTIONS(1486), - [anon_sym_out_GT] = ACTIONS(1486), - [anon_sym_e_GT] = ACTIONS(1486), - [anon_sym_o_GT] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT] = ACTIONS(1486), - [anon_sym_err_GT_GT] = ACTIONS(1486), - [anon_sym_out_GT_GT] = ACTIONS(1486), - [anon_sym_e_GT_GT] = ACTIONS(1486), - [anon_sym_o_GT_GT] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1486), + [anon_sym_EQ] = ACTIONS(1540), + [anon_sym_PLUS_EQ] = ACTIONS(1540), + [anon_sym_DASH_EQ] = ACTIONS(1540), + [anon_sym_STAR_EQ] = ACTIONS(1540), + [anon_sym_SLASH_EQ] = ACTIONS(1540), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(1540), + [sym__newline] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_err_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_GT_PIPE] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), + [anon_sym_GT2] = ACTIONS(1540), + [anon_sym_DASH2] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_STAR2] = ACTIONS(1540), + [anon_sym_and2] = ACTIONS(1540), + [anon_sym_xor2] = ACTIONS(1540), + [anon_sym_or2] = ACTIONS(1540), + [anon_sym_not_DASHin2] = ACTIONS(1540), + [anon_sym_has2] = ACTIONS(1540), + [anon_sym_not_DASHhas2] = ACTIONS(1540), + [anon_sym_starts_DASHwith2] = ACTIONS(1540), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1540), + [anon_sym_ends_DASHwith2] = ACTIONS(1540), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1540), + [anon_sym_EQ_EQ2] = ACTIONS(1540), + [anon_sym_BANG_EQ2] = ACTIONS(1540), + [anon_sym_LT2] = ACTIONS(1540), + [anon_sym_LT_EQ2] = ACTIONS(1540), + [anon_sym_GT_EQ2] = ACTIONS(1540), + [anon_sym_EQ_TILDE2] = ACTIONS(1540), + [anon_sym_BANG_TILDE2] = ACTIONS(1540), + [anon_sym_like2] = ACTIONS(1540), + [anon_sym_not_DASHlike2] = ACTIONS(1540), + [anon_sym_STAR_STAR2] = ACTIONS(1540), + [anon_sym_PLUS_PLUS2] = ACTIONS(1540), + [anon_sym_SLASH2] = ACTIONS(1540), + [anon_sym_mod2] = ACTIONS(1540), + [anon_sym_SLASH_SLASH2] = ACTIONS(1540), + [anon_sym_PLUS2] = ACTIONS(1540), + [anon_sym_bit_DASHshl2] = ACTIONS(1540), + [anon_sym_bit_DASHshr2] = ACTIONS(1540), + [anon_sym_bit_DASHand2] = ACTIONS(1540), + [anon_sym_bit_DASHxor2] = ACTIONS(1540), + [anon_sym_bit_DASHor2] = ACTIONS(1540), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [sym__entry_separator] = ACTIONS(1542), + [anon_sym_COLON2] = ACTIONS(1540), + [anon_sym_QMARK2] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_DOT2] = ACTIONS(1540), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [anon_sym_err_GT_GT] = ACTIONS(1540), + [anon_sym_out_GT_GT] = ACTIONS(1540), + [anon_sym_e_GT_GT] = ACTIONS(1540), + [anon_sym_o_GT_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1540), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(363)] = { + [363] = { [sym_comment] = STATE(363), - [anon_sym_EQ] = ACTIONS(1541), - [anon_sym_PLUS_EQ] = ACTIONS(1541), - [anon_sym_DASH_EQ] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1541), - [anon_sym_SLASH_EQ] = ACTIONS(1541), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1541), - [anon_sym_in] = ACTIONS(1541), - [sym__newline] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1541), - [anon_sym_PIPE] = ACTIONS(1541), - [anon_sym_err_GT_PIPE] = ACTIONS(1541), - [anon_sym_out_GT_PIPE] = ACTIONS(1541), - [anon_sym_e_GT_PIPE] = ACTIONS(1541), - [anon_sym_o_GT_PIPE] = ACTIONS(1541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1541), - [anon_sym_GT2] = ACTIONS(1541), - [anon_sym_DASH2] = ACTIONS(1541), - [anon_sym_RBRACE] = ACTIONS(1541), - [anon_sym_STAR2] = ACTIONS(1541), - [anon_sym_and2] = ACTIONS(1541), - [anon_sym_xor2] = ACTIONS(1541), - [anon_sym_or2] = ACTIONS(1541), - [anon_sym_not_DASHin2] = ACTIONS(1541), - [anon_sym_has2] = ACTIONS(1541), - [anon_sym_not_DASHhas2] = ACTIONS(1541), - [anon_sym_starts_DASHwith2] = ACTIONS(1541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1541), - [anon_sym_ends_DASHwith2] = ACTIONS(1541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1541), - [anon_sym_EQ_EQ2] = ACTIONS(1541), - [anon_sym_BANG_EQ2] = ACTIONS(1541), - [anon_sym_LT2] = ACTIONS(1541), - [anon_sym_LT_EQ2] = ACTIONS(1541), - [anon_sym_GT_EQ2] = ACTIONS(1541), - [anon_sym_EQ_TILDE2] = ACTIONS(1541), - [anon_sym_BANG_TILDE2] = ACTIONS(1541), - [anon_sym_like2] = ACTIONS(1541), - [anon_sym_not_DASHlike2] = ACTIONS(1541), - [anon_sym_STAR_STAR2] = ACTIONS(1541), - [anon_sym_PLUS_PLUS2] = ACTIONS(1541), - [anon_sym_SLASH2] = ACTIONS(1541), - [anon_sym_mod2] = ACTIONS(1541), - [anon_sym_SLASH_SLASH2] = ACTIONS(1541), - [anon_sym_PLUS2] = ACTIONS(1541), - [anon_sym_bit_DASHshl2] = ACTIONS(1541), - [anon_sym_bit_DASHshr2] = ACTIONS(1541), - [anon_sym_bit_DASHand2] = ACTIONS(1541), - [anon_sym_bit_DASHxor2] = ACTIONS(1541), - [anon_sym_bit_DASHor2] = ACTIONS(1541), - [anon_sym_DOT_DOT2] = ACTIONS(1541), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1543), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1543), - [sym__entry_separator] = ACTIONS(1543), - [anon_sym_COLON2] = ACTIONS(1541), - [anon_sym_QMARK2] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_DOT2] = ACTIONS(1541), - [anon_sym_err_GT] = ACTIONS(1541), - [anon_sym_out_GT] = ACTIONS(1541), - [anon_sym_e_GT] = ACTIONS(1541), - [anon_sym_o_GT] = ACTIONS(1541), - [anon_sym_err_PLUSout_GT] = ACTIONS(1541), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1541), - [anon_sym_o_PLUSe_GT] = ACTIONS(1541), - [anon_sym_e_PLUSo_GT] = ACTIONS(1541), - [anon_sym_err_GT_GT] = ACTIONS(1541), - [anon_sym_out_GT_GT] = ACTIONS(1541), - [anon_sym_e_GT_GT] = ACTIONS(1541), - [anon_sym_o_GT_GT] = ACTIONS(1541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1541), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(364)] = { - [sym_comment] = STATE(364), - [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_GT2] = ACTIONS(1545), - [anon_sym_DASH2] = ACTIONS(1545), - [anon_sym_RBRACE] = 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_QMARK2] = ACTIONS(1545), - [anon_sym_BANG] = 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(105), - }, - [STATE(365)] = { - [aux_sym__repeat_newline] = STATE(4464), - [sym_expr_parenthesized] = STATE(4216), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4990), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4854), - [sym_val_bool] = STATE(4482), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4196), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4854), - [sym__val_number_decimal] = STATE(3713), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4854), - [sym_val_filesize] = STATE(4854), - [sym_val_binary] = STATE(4854), - [sym_val_string] = STATE(4854), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4723), - [sym__spread_list] = STATE(5037), - [sym_list_body] = STATE(5345), - [sym_val_entry] = STATE(4735), - [sym_val_record] = STATE(4854), - [sym__table_head] = STATE(3933), - [sym_val_table] = STATE(4854), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4529), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), - [sym_comment] = STATE(365), - [aux_sym__types_body_repeat1] = STATE(484), - [aux_sym_parameter_repeat2] = STATE(4533), - [aux_sym_list_body_repeat1] = STATE(533), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [sym__newline] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_RBRACK] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(366)] = { - [sym_comment] = STATE(366), - [anon_sym_EQ] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(1555), - [anon_sym_DASH_EQ] = ACTIONS(1555), - [anon_sym_STAR_EQ] = ACTIONS(1555), - [anon_sym_SLASH_EQ] = ACTIONS(1555), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1555), - [anon_sym_in] = ACTIONS(1555), - [sym__newline] = ACTIONS(1555), - [anon_sym_SEMI] = ACTIONS(1555), - [anon_sym_PIPE] = ACTIONS(1555), - [anon_sym_err_GT_PIPE] = ACTIONS(1555), - [anon_sym_out_GT_PIPE] = ACTIONS(1555), - [anon_sym_e_GT_PIPE] = ACTIONS(1555), - [anon_sym_o_GT_PIPE] = ACTIONS(1555), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1555), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1555), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1555), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1555), - [anon_sym_RBRACK] = ACTIONS(1555), - [anon_sym_GT2] = ACTIONS(1555), - [anon_sym_DASH2] = ACTIONS(1555), - [anon_sym_RBRACE] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1555), - [anon_sym_STAR2] = ACTIONS(1555), - [anon_sym_and2] = ACTIONS(1555), - [anon_sym_xor2] = ACTIONS(1555), - [anon_sym_or2] = ACTIONS(1555), - [anon_sym_not_DASHin2] = ACTIONS(1555), - [anon_sym_has2] = ACTIONS(1555), - [anon_sym_not_DASHhas2] = ACTIONS(1555), - [anon_sym_starts_DASHwith2] = ACTIONS(1555), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1555), - [anon_sym_ends_DASHwith2] = ACTIONS(1555), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1555), - [anon_sym_EQ_EQ2] = ACTIONS(1555), - [anon_sym_BANG_EQ2] = ACTIONS(1555), - [anon_sym_LT2] = ACTIONS(1555), - [anon_sym_LT_EQ2] = ACTIONS(1555), - [anon_sym_GT_EQ2] = ACTIONS(1555), - [anon_sym_EQ_TILDE2] = ACTIONS(1555), - [anon_sym_BANG_TILDE2] = ACTIONS(1555), - [anon_sym_like2] = ACTIONS(1555), - [anon_sym_not_DASHlike2] = ACTIONS(1555), - [anon_sym_STAR_STAR2] = ACTIONS(1555), - [anon_sym_PLUS_PLUS2] = ACTIONS(1555), - [anon_sym_SLASH2] = ACTIONS(1555), - [anon_sym_mod2] = ACTIONS(1555), - [anon_sym_SLASH_SLASH2] = ACTIONS(1555), - [anon_sym_PLUS2] = ACTIONS(1555), - [anon_sym_bit_DASHshl2] = ACTIONS(1555), - [anon_sym_bit_DASHshr2] = ACTIONS(1555), - [anon_sym_bit_DASHand2] = ACTIONS(1555), - [anon_sym_bit_DASHxor2] = ACTIONS(1555), - [anon_sym_bit_DASHor2] = ACTIONS(1555), - [anon_sym_DOT_DOT2] = ACTIONS(1555), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1557), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1557), - [sym__entry_separator] = ACTIONS(1557), - [anon_sym_COLON2] = ACTIONS(1555), - [anon_sym_DOT2] = ACTIONS(1555), - [anon_sym_err_GT] = ACTIONS(1555), - [anon_sym_out_GT] = ACTIONS(1555), - [anon_sym_e_GT] = ACTIONS(1555), - [anon_sym_o_GT] = ACTIONS(1555), - [anon_sym_err_PLUSout_GT] = ACTIONS(1555), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1555), - [anon_sym_o_PLUSe_GT] = ACTIONS(1555), - [anon_sym_e_PLUSo_GT] = ACTIONS(1555), - [anon_sym_err_GT_GT] = ACTIONS(1555), - [anon_sym_out_GT_GT] = ACTIONS(1555), - [anon_sym_e_GT_GT] = ACTIONS(1555), - [anon_sym_o_GT_GT] = ACTIONS(1555), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1555), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1555), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1555), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1555), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(367)] = { - [aux_sym__repeat_newline] = STATE(4464), - [sym_expr_parenthesized] = STATE(4216), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4990), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4854), - [sym_val_bool] = STATE(4482), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4196), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4854), - [sym__val_number_decimal] = STATE(3713), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4854), - [sym_val_filesize] = STATE(4854), - [sym_val_binary] = STATE(4854), - [sym_val_string] = STATE(4854), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4723), - [sym__spread_list] = STATE(5037), - [sym_list_body] = STATE(5474), - [sym_val_entry] = STATE(4735), - [sym_val_record] = STATE(4854), - [sym__table_head] = STATE(3886), - [sym_val_table] = STATE(4854), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4529), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), - [sym_comment] = STATE(367), - [aux_sym__types_body_repeat1] = STATE(484), - [aux_sym_parameter_repeat2] = STATE(4533), - [aux_sym_list_body_repeat1] = STATE(533), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [sym__newline] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_RBRACK] = ACTIONS(1559), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(368)] = { - [sym_comment] = STATE(368), - [anon_sym_EQ] = ACTIONS(1561), - [anon_sym_PLUS_EQ] = ACTIONS(1561), - [anon_sym_DASH_EQ] = ACTIONS(1561), - [anon_sym_STAR_EQ] = ACTIONS(1561), - [anon_sym_SLASH_EQ] = ACTIONS(1561), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1561), - [anon_sym_in] = ACTIONS(1561), - [sym__newline] = ACTIONS(1561), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_PIPE] = ACTIONS(1561), - [anon_sym_err_GT_PIPE] = ACTIONS(1561), - [anon_sym_out_GT_PIPE] = ACTIONS(1561), - [anon_sym_e_GT_PIPE] = ACTIONS(1561), - [anon_sym_o_GT_PIPE] = ACTIONS(1561), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1561), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1561), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1561), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1561), - [anon_sym_RBRACK] = ACTIONS(1561), - [anon_sym_GT2] = ACTIONS(1561), - [anon_sym_DASH2] = ACTIONS(1561), - [anon_sym_RBRACE] = ACTIONS(1561), - [anon_sym_DOT_DOT] = ACTIONS(1561), - [anon_sym_STAR2] = ACTIONS(1561), - [anon_sym_and2] = ACTIONS(1561), - [anon_sym_xor2] = ACTIONS(1561), - [anon_sym_or2] = ACTIONS(1561), - [anon_sym_not_DASHin2] = ACTIONS(1561), - [anon_sym_has2] = ACTIONS(1561), - [anon_sym_not_DASHhas2] = ACTIONS(1561), - [anon_sym_starts_DASHwith2] = ACTIONS(1561), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1561), - [anon_sym_ends_DASHwith2] = ACTIONS(1561), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1561), - [anon_sym_EQ_EQ2] = ACTIONS(1561), - [anon_sym_BANG_EQ2] = ACTIONS(1561), - [anon_sym_LT2] = ACTIONS(1561), - [anon_sym_LT_EQ2] = ACTIONS(1561), - [anon_sym_GT_EQ2] = ACTIONS(1561), - [anon_sym_EQ_TILDE2] = ACTIONS(1561), - [anon_sym_BANG_TILDE2] = ACTIONS(1561), - [anon_sym_like2] = ACTIONS(1561), - [anon_sym_not_DASHlike2] = ACTIONS(1561), - [anon_sym_STAR_STAR2] = ACTIONS(1561), - [anon_sym_PLUS_PLUS2] = ACTIONS(1561), - [anon_sym_SLASH2] = ACTIONS(1561), - [anon_sym_mod2] = ACTIONS(1561), - [anon_sym_SLASH_SLASH2] = ACTIONS(1561), - [anon_sym_PLUS2] = ACTIONS(1561), - [anon_sym_bit_DASHshl2] = ACTIONS(1561), - [anon_sym_bit_DASHshr2] = ACTIONS(1561), - [anon_sym_bit_DASHand2] = ACTIONS(1561), - [anon_sym_bit_DASHxor2] = ACTIONS(1561), - [anon_sym_bit_DASHor2] = ACTIONS(1561), - [anon_sym_DOT_DOT2] = ACTIONS(1561), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1563), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1563), - [sym__entry_separator] = ACTIONS(1563), - [anon_sym_COLON2] = ACTIONS(1561), - [anon_sym_DOT2] = ACTIONS(1561), - [anon_sym_err_GT] = ACTIONS(1561), - [anon_sym_out_GT] = ACTIONS(1561), - [anon_sym_e_GT] = ACTIONS(1561), - [anon_sym_o_GT] = ACTIONS(1561), - [anon_sym_err_PLUSout_GT] = ACTIONS(1561), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1561), - [anon_sym_o_PLUSe_GT] = ACTIONS(1561), - [anon_sym_e_PLUSo_GT] = ACTIONS(1561), - [anon_sym_err_GT_GT] = ACTIONS(1561), - [anon_sym_out_GT_GT] = ACTIONS(1561), - [anon_sym_e_GT_GT] = ACTIONS(1561), - [anon_sym_o_GT_GT] = ACTIONS(1561), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1561), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1561), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1561), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1561), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(369)] = { - [sym_comment] = STATE(369), - [anon_sym_EQ] = ACTIONS(1565), - [anon_sym_PLUS_EQ] = ACTIONS(1565), - [anon_sym_DASH_EQ] = ACTIONS(1565), - [anon_sym_STAR_EQ] = ACTIONS(1565), - [anon_sym_SLASH_EQ] = ACTIONS(1565), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1565), - [anon_sym_in] = ACTIONS(1565), - [sym__newline] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1565), - [anon_sym_err_GT_PIPE] = ACTIONS(1565), - [anon_sym_out_GT_PIPE] = ACTIONS(1565), - [anon_sym_e_GT_PIPE] = ACTIONS(1565), - [anon_sym_o_GT_PIPE] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1565), - [anon_sym_RBRACK] = ACTIONS(1565), - [anon_sym_GT2] = ACTIONS(1565), - [anon_sym_DASH2] = ACTIONS(1565), - [anon_sym_RBRACE] = ACTIONS(1565), - [anon_sym_DOT_DOT] = ACTIONS(1565), - [anon_sym_STAR2] = ACTIONS(1565), - [anon_sym_and2] = ACTIONS(1565), - [anon_sym_xor2] = ACTIONS(1565), - [anon_sym_or2] = ACTIONS(1565), - [anon_sym_not_DASHin2] = ACTIONS(1565), - [anon_sym_has2] = ACTIONS(1565), - [anon_sym_not_DASHhas2] = ACTIONS(1565), - [anon_sym_starts_DASHwith2] = ACTIONS(1565), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1565), - [anon_sym_ends_DASHwith2] = ACTIONS(1565), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1565), - [anon_sym_EQ_EQ2] = ACTIONS(1565), - [anon_sym_BANG_EQ2] = ACTIONS(1565), - [anon_sym_LT2] = ACTIONS(1565), - [anon_sym_LT_EQ2] = ACTIONS(1565), - [anon_sym_GT_EQ2] = ACTIONS(1565), - [anon_sym_EQ_TILDE2] = ACTIONS(1565), - [anon_sym_BANG_TILDE2] = ACTIONS(1565), - [anon_sym_like2] = ACTIONS(1565), - [anon_sym_not_DASHlike2] = ACTIONS(1565), - [anon_sym_STAR_STAR2] = ACTIONS(1565), - [anon_sym_PLUS_PLUS2] = ACTIONS(1565), - [anon_sym_SLASH2] = ACTIONS(1565), - [anon_sym_mod2] = ACTIONS(1565), - [anon_sym_SLASH_SLASH2] = ACTIONS(1565), - [anon_sym_PLUS2] = ACTIONS(1565), - [anon_sym_bit_DASHshl2] = ACTIONS(1565), - [anon_sym_bit_DASHshr2] = ACTIONS(1565), - [anon_sym_bit_DASHand2] = ACTIONS(1565), - [anon_sym_bit_DASHxor2] = ACTIONS(1565), - [anon_sym_bit_DASHor2] = ACTIONS(1565), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [sym__entry_separator] = ACTIONS(1567), - [anon_sym_COLON2] = ACTIONS(1565), - [anon_sym_DOT2] = ACTIONS(1565), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1565), - [anon_sym_out_GT_GT] = ACTIONS(1565), - [anon_sym_e_GT_GT] = ACTIONS(1565), - [anon_sym_o_GT_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1565), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(370)] = { - [aux_sym__repeat_newline] = STATE(4464), - [sym_expr_parenthesized] = STATE(4216), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4990), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4854), - [sym_val_bool] = STATE(4482), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4196), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4854), - [sym__val_number_decimal] = STATE(3713), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4854), - [sym_val_filesize] = STATE(4854), - [sym_val_binary] = STATE(4854), - [sym_val_string] = STATE(4854), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4723), - [sym__spread_list] = STATE(5037), - [sym_list_body] = STATE(5518), - [sym_val_entry] = STATE(4735), - [sym_val_record] = STATE(4854), - [sym__table_head] = STATE(3890), - [sym_val_table] = STATE(4854), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4529), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), - [sym_comment] = STATE(370), - [aux_sym__types_body_repeat1] = STATE(484), - [aux_sym_parameter_repeat2] = STATE(4533), - [aux_sym_list_body_repeat1] = STATE(533), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [sym__newline] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_RBRACK] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(371)] = { - [aux_sym__repeat_newline] = STATE(4464), - [sym_expr_parenthesized] = STATE(4216), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4990), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4854), - [sym_val_bool] = STATE(4482), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4196), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4854), - [sym__val_number_decimal] = STATE(3713), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4854), - [sym_val_filesize] = STATE(4854), - [sym_val_binary] = STATE(4854), - [sym_val_string] = STATE(4854), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4723), - [sym__spread_list] = STATE(5037), - [sym_list_body] = STATE(5163), - [sym_val_entry] = STATE(4735), - [sym_val_record] = STATE(4854), - [sym__table_head] = STATE(3891), - [sym_val_table] = STATE(4854), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4529), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), - [sym_comment] = STATE(371), - [aux_sym__types_body_repeat1] = STATE(484), - [aux_sym_parameter_repeat2] = STATE(4533), - [aux_sym_list_body_repeat1] = STATE(533), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [sym__newline] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_RBRACK] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(372)] = { - [aux_sym__repeat_newline] = STATE(4464), - [sym_expr_parenthesized] = STATE(4216), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4990), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4854), - [sym_val_bool] = STATE(4482), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4196), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4854), - [sym__val_number_decimal] = STATE(3713), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4854), - [sym_val_filesize] = STATE(4854), - [sym_val_binary] = STATE(4854), - [sym_val_string] = STATE(4854), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4723), - [sym__spread_list] = STATE(5037), - [sym_list_body] = STATE(5112), - [sym_val_entry] = STATE(4735), - [sym_val_record] = STATE(4854), - [sym__table_head] = STATE(3896), - [sym_val_table] = STATE(4854), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4529), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), - [sym_comment] = STATE(372), - [aux_sym__types_body_repeat1] = STATE(484), - [aux_sym_parameter_repeat2] = STATE(4533), - [aux_sym_list_body_repeat1] = STATE(533), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [sym__newline] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_RBRACK] = ACTIONS(1573), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(373)] = { - [aux_sym__repeat_newline] = STATE(4464), - [sym_expr_parenthesized] = STATE(4216), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4990), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4854), - [sym_val_bool] = STATE(4482), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4196), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4854), - [sym__val_number_decimal] = STATE(3713), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4854), - [sym_val_filesize] = STATE(4854), - [sym_val_binary] = STATE(4854), - [sym_val_string] = STATE(4854), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4723), - [sym__spread_list] = STATE(5037), - [sym_list_body] = STATE(5352), - [sym_val_entry] = STATE(4735), - [sym_val_record] = STATE(4854), - [sym__table_head] = STATE(3959), - [sym_val_table] = STATE(4854), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4529), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), - [sym_comment] = STATE(373), - [aux_sym__types_body_repeat1] = STATE(484), - [aux_sym_parameter_repeat2] = STATE(4533), - [aux_sym_list_body_repeat1] = STATE(533), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [sym__newline] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_RBRACK] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(374)] = { - [sym_path] = STATE(385), - [sym_comment] = STATE(374), - [aux_sym__where_predicate_lhs_repeat1] = STATE(349), - [anon_sym_EQ] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(1579), - [anon_sym_DASH_EQ] = ACTIONS(1579), - [anon_sym_STAR_EQ] = ACTIONS(1579), - [anon_sym_SLASH_EQ] = ACTIONS(1579), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1579), - [anon_sym_in] = ACTIONS(1579), - [sym__newline] = ACTIONS(1579), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_err_GT_PIPE] = ACTIONS(1579), - [anon_sym_out_GT_PIPE] = ACTIONS(1579), - [anon_sym_e_GT_PIPE] = ACTIONS(1579), - [anon_sym_o_GT_PIPE] = ACTIONS(1579), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), - [anon_sym_RPAREN] = ACTIONS(1579), - [anon_sym_GT2] = ACTIONS(1577), - [anon_sym_DASH2] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1579), - [anon_sym_STAR2] = ACTIONS(1577), - [anon_sym_and2] = ACTIONS(1579), - [anon_sym_xor2] = ACTIONS(1579), - [anon_sym_or2] = ACTIONS(1579), - [anon_sym_not_DASHin2] = ACTIONS(1579), - [anon_sym_has2] = ACTIONS(1579), - [anon_sym_not_DASHhas2] = ACTIONS(1579), - [anon_sym_starts_DASHwith2] = ACTIONS(1579), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1579), - [anon_sym_ends_DASHwith2] = ACTIONS(1579), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1579), - [anon_sym_EQ_EQ2] = ACTIONS(1579), - [anon_sym_BANG_EQ2] = ACTIONS(1579), - [anon_sym_LT2] = ACTIONS(1577), - [anon_sym_LT_EQ2] = ACTIONS(1579), - [anon_sym_GT_EQ2] = ACTIONS(1579), - [anon_sym_EQ_TILDE2] = ACTIONS(1579), - [anon_sym_BANG_TILDE2] = ACTIONS(1579), - [anon_sym_like2] = ACTIONS(1579), - [anon_sym_not_DASHlike2] = ACTIONS(1579), - [anon_sym_STAR_STAR2] = ACTIONS(1579), - [anon_sym_PLUS_PLUS2] = ACTIONS(1577), - [anon_sym_SLASH2] = ACTIONS(1577), - [anon_sym_mod2] = ACTIONS(1579), - [anon_sym_SLASH_SLASH2] = ACTIONS(1579), - [anon_sym_PLUS2] = ACTIONS(1577), - [anon_sym_bit_DASHshl2] = ACTIONS(1579), - [anon_sym_bit_DASHshr2] = ACTIONS(1579), - [anon_sym_bit_DASHand2] = ACTIONS(1579), - [anon_sym_bit_DASHxor2] = ACTIONS(1579), - [anon_sym_bit_DASHor2] = ACTIONS(1579), - [anon_sym_DOT_DOT2] = ACTIONS(1577), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1579), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1579), - [anon_sym_COLON2] = ACTIONS(1579), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_err_GT] = ACTIONS(1577), - [anon_sym_out_GT] = ACTIONS(1577), - [anon_sym_e_GT] = ACTIONS(1577), - [anon_sym_o_GT] = ACTIONS(1577), - [anon_sym_err_PLUSout_GT] = ACTIONS(1577), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1577), - [anon_sym_o_PLUSe_GT] = ACTIONS(1577), - [anon_sym_e_PLUSo_GT] = ACTIONS(1577), - [anon_sym_err_GT_GT] = ACTIONS(1579), - [anon_sym_out_GT_GT] = ACTIONS(1579), - [anon_sym_e_GT_GT] = ACTIONS(1579), - [anon_sym_o_GT_GT] = ACTIONS(1579), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1579), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1579), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1579), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(375)] = { - [sym_path] = STATE(366), - [sym_comment] = STATE(375), - [aux_sym__where_predicate_lhs_repeat1] = STATE(376), - [anon_sym_EQ] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(1577), - [anon_sym_DASH_EQ] = ACTIONS(1577), - [anon_sym_STAR_EQ] = ACTIONS(1577), - [anon_sym_SLASH_EQ] = ACTIONS(1577), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [sym__newline] = ACTIONS(1577), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_err_GT_PIPE] = ACTIONS(1577), - [anon_sym_out_GT_PIPE] = ACTIONS(1577), - [anon_sym_e_GT_PIPE] = ACTIONS(1577), - [anon_sym_o_GT_PIPE] = ACTIONS(1577), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1577), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1577), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1577), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1577), - [anon_sym_GT2] = ACTIONS(1577), - [anon_sym_DASH2] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), - [anon_sym_STAR2] = ACTIONS(1577), - [anon_sym_and2] = ACTIONS(1577), - [anon_sym_xor2] = ACTIONS(1577), - [anon_sym_or2] = ACTIONS(1577), - [anon_sym_not_DASHin2] = ACTIONS(1577), - [anon_sym_has2] = ACTIONS(1577), - [anon_sym_not_DASHhas2] = ACTIONS(1577), - [anon_sym_starts_DASHwith2] = ACTIONS(1577), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1577), - [anon_sym_ends_DASHwith2] = ACTIONS(1577), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1577), - [anon_sym_EQ_EQ2] = ACTIONS(1577), - [anon_sym_BANG_EQ2] = ACTIONS(1577), - [anon_sym_LT2] = ACTIONS(1577), - [anon_sym_LT_EQ2] = ACTIONS(1577), - [anon_sym_GT_EQ2] = ACTIONS(1577), - [anon_sym_EQ_TILDE2] = ACTIONS(1577), - [anon_sym_BANG_TILDE2] = ACTIONS(1577), - [anon_sym_like2] = ACTIONS(1577), - [anon_sym_not_DASHlike2] = ACTIONS(1577), - [anon_sym_STAR_STAR2] = ACTIONS(1577), - [anon_sym_PLUS_PLUS2] = ACTIONS(1577), - [anon_sym_SLASH2] = ACTIONS(1577), - [anon_sym_mod2] = ACTIONS(1577), - [anon_sym_SLASH_SLASH2] = ACTIONS(1577), - [anon_sym_PLUS2] = ACTIONS(1577), - [anon_sym_bit_DASHshl2] = ACTIONS(1577), - [anon_sym_bit_DASHshr2] = ACTIONS(1577), - [anon_sym_bit_DASHand2] = ACTIONS(1577), - [anon_sym_bit_DASHxor2] = ACTIONS(1577), - [anon_sym_bit_DASHor2] = ACTIONS(1577), - [anon_sym_DOT_DOT2] = ACTIONS(1577), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1579), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1579), - [sym__entry_separator] = ACTIONS(1579), - [anon_sym_COLON2] = ACTIONS(1577), - [anon_sym_DOT2] = ACTIONS(1480), - [anon_sym_err_GT] = ACTIONS(1577), - [anon_sym_out_GT] = ACTIONS(1577), - [anon_sym_e_GT] = ACTIONS(1577), - [anon_sym_o_GT] = ACTIONS(1577), - [anon_sym_err_PLUSout_GT] = ACTIONS(1577), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1577), - [anon_sym_o_PLUSe_GT] = ACTIONS(1577), - [anon_sym_e_PLUSo_GT] = ACTIONS(1577), - [anon_sym_err_GT_GT] = ACTIONS(1577), - [anon_sym_out_GT_GT] = ACTIONS(1577), - [anon_sym_e_GT_GT] = ACTIONS(1577), - [anon_sym_o_GT_GT] = ACTIONS(1577), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1577), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1577), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1577), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1577), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(376)] = { - [sym_path] = STATE(366), - [sym_comment] = STATE(376), - [aux_sym__where_predicate_lhs_repeat1] = STATE(376), [anon_sym_EQ] = ACTIONS(1490), [anon_sym_PLUS_EQ] = ACTIONS(1490), [anon_sym_DASH_EQ] = ACTIONS(1490), @@ -78884,7 +77790,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), [sym__entry_separator] = ACTIONS(1492), [anon_sym_COLON2] = ACTIONS(1490), - [anon_sym_DOT2] = ACTIONS(1581), + [anon_sym_QMARK2] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_DOT2] = ACTIONS(1490), [anon_sym_err_GT] = ACTIONS(1490), [anon_sym_out_GT] = ACTIONS(1490), [anon_sym_e_GT] = ACTIONS(1490), @@ -78903,2437 +77811,2461 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1490), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(377)] = { - [sym_comment] = STATE(377), - [anon_sym_EQ] = ACTIONS(1535), - [anon_sym_PLUS_EQ] = ACTIONS(1535), - [anon_sym_DASH_EQ] = ACTIONS(1535), - [anon_sym_STAR_EQ] = ACTIONS(1535), - [anon_sym_SLASH_EQ] = ACTIONS(1535), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1535), - [anon_sym_in] = ACTIONS(1535), - [sym__newline] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_PIPE] = ACTIONS(1535), - [anon_sym_err_GT_PIPE] = ACTIONS(1535), - [anon_sym_out_GT_PIPE] = ACTIONS(1535), - [anon_sym_e_GT_PIPE] = ACTIONS(1535), - [anon_sym_o_GT_PIPE] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1535), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1535), - [anon_sym_xor2] = ACTIONS(1535), - [anon_sym_or2] = ACTIONS(1535), - [anon_sym_not_DASHin2] = ACTIONS(1535), - [anon_sym_has2] = ACTIONS(1535), - [anon_sym_not_DASHhas2] = ACTIONS(1535), - [anon_sym_starts_DASHwith2] = ACTIONS(1535), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1535), - [anon_sym_ends_DASHwith2] = ACTIONS(1535), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1535), - [anon_sym_EQ_EQ2] = ACTIONS(1535), - [anon_sym_BANG_EQ2] = ACTIONS(1535), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1535), - [anon_sym_GT_EQ2] = ACTIONS(1535), - [anon_sym_EQ_TILDE2] = ACTIONS(1535), - [anon_sym_BANG_TILDE2] = ACTIONS(1535), - [anon_sym_like2] = ACTIONS(1535), - [anon_sym_not_DASHlike2] = ACTIONS(1535), - [anon_sym_STAR_STAR2] = ACTIONS(1535), - [anon_sym_PLUS_PLUS2] = ACTIONS(1535), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1535), - [anon_sym_SLASH_SLASH2] = ACTIONS(1535), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1535), - [anon_sym_bit_DASHshr2] = ACTIONS(1535), - [anon_sym_bit_DASHand2] = ACTIONS(1535), - [anon_sym_bit_DASHxor2] = ACTIONS(1535), - [anon_sym_bit_DASHor2] = ACTIONS(1535), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [sym__entry_separator] = ACTIONS(1537), - [anon_sym_COLON2] = ACTIONS(1535), - [anon_sym_QMARK2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1535), - [anon_sym_out_GT_GT] = ACTIONS(1535), - [anon_sym_e_GT_GT] = ACTIONS(1535), - [anon_sym_o_GT_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1535), + [364] = { + [sym_comment] = STATE(364), + [anon_sym_EQ] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(1544), + [anon_sym_DASH_EQ] = ACTIONS(1544), + [anon_sym_STAR_EQ] = ACTIONS(1544), + [anon_sym_SLASH_EQ] = ACTIONS(1544), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1544), + [anon_sym_in] = ACTIONS(1544), + [sym__newline] = ACTIONS(1544), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_err_GT_PIPE] = ACTIONS(1544), + [anon_sym_out_GT_PIPE] = ACTIONS(1544), + [anon_sym_e_GT_PIPE] = ACTIONS(1544), + [anon_sym_o_GT_PIPE] = ACTIONS(1544), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1544), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1544), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1544), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1544), + [anon_sym_GT2] = ACTIONS(1544), + [anon_sym_DASH2] = ACTIONS(1544), + [anon_sym_RBRACE] = ACTIONS(1544), + [anon_sym_STAR2] = ACTIONS(1544), + [anon_sym_and2] = ACTIONS(1544), + [anon_sym_xor2] = ACTIONS(1544), + [anon_sym_or2] = ACTIONS(1544), + [anon_sym_not_DASHin2] = ACTIONS(1544), + [anon_sym_has2] = ACTIONS(1544), + [anon_sym_not_DASHhas2] = ACTIONS(1544), + [anon_sym_starts_DASHwith2] = ACTIONS(1544), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1544), + [anon_sym_ends_DASHwith2] = ACTIONS(1544), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1544), + [anon_sym_EQ_EQ2] = ACTIONS(1544), + [anon_sym_BANG_EQ2] = ACTIONS(1544), + [anon_sym_LT2] = ACTIONS(1544), + [anon_sym_LT_EQ2] = ACTIONS(1544), + [anon_sym_GT_EQ2] = ACTIONS(1544), + [anon_sym_EQ_TILDE2] = ACTIONS(1544), + [anon_sym_BANG_TILDE2] = ACTIONS(1544), + [anon_sym_like2] = ACTIONS(1544), + [anon_sym_not_DASHlike2] = ACTIONS(1544), + [anon_sym_STAR_STAR2] = ACTIONS(1544), + [anon_sym_PLUS_PLUS2] = ACTIONS(1544), + [anon_sym_SLASH2] = ACTIONS(1544), + [anon_sym_mod2] = ACTIONS(1544), + [anon_sym_SLASH_SLASH2] = ACTIONS(1544), + [anon_sym_PLUS2] = ACTIONS(1544), + [anon_sym_bit_DASHshl2] = ACTIONS(1544), + [anon_sym_bit_DASHshr2] = ACTIONS(1544), + [anon_sym_bit_DASHand2] = ACTIONS(1544), + [anon_sym_bit_DASHxor2] = ACTIONS(1544), + [anon_sym_bit_DASHor2] = ACTIONS(1544), + [anon_sym_DOT_DOT2] = ACTIONS(1544), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1546), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1546), + [sym__entry_separator] = ACTIONS(1546), + [anon_sym_COLON2] = ACTIONS(1544), + [anon_sym_QMARK2] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1544), + [anon_sym_DOT2] = ACTIONS(1544), + [anon_sym_err_GT] = ACTIONS(1544), + [anon_sym_out_GT] = ACTIONS(1544), + [anon_sym_e_GT] = ACTIONS(1544), + [anon_sym_o_GT] = ACTIONS(1544), + [anon_sym_err_PLUSout_GT] = ACTIONS(1544), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1544), + [anon_sym_o_PLUSe_GT] = ACTIONS(1544), + [anon_sym_e_PLUSo_GT] = ACTIONS(1544), + [anon_sym_err_GT_GT] = ACTIONS(1544), + [anon_sym_out_GT_GT] = ACTIONS(1544), + [anon_sym_e_GT_GT] = ACTIONS(1544), + [anon_sym_o_GT_GT] = ACTIONS(1544), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1544), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1544), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1544), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1544), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(378)] = { - [sym_comment] = STATE(378), - [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_BANG] = ACTIONS(1584), - [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(379)] = { - [sym__match_pattern_expression] = STATE(4615), - [sym__match_pattern_value] = STATE(4712), - [sym__match_pattern_list] = STATE(4713), - [sym__match_pattern_record] = STATE(4714), - [sym_expr_parenthesized] = STATE(4134), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4818), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4820), - [sym_val_bool] = STATE(4323), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4148), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4820), - [sym__val_number_decimal] = STATE(3625), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4820), - [sym_val_filesize] = STATE(4820), - [sym_val_binary] = STATE(4820), - [sym_val_string] = STATE(4820), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4854), - [sym__spread_list] = STATE(5037), - [sym_val_entry] = STATE(4867), - [sym_val_record] = STATE(4854), - [sym_val_table] = STATE(4820), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4003), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), - [sym_comment] = STATE(379), - [aux_sym__types_body_repeat1] = STATE(2185), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1443), - [aux_sym_list_body_repeat1] = STATE(535), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [anon_sym_null] = ACTIONS(1404), - [aux_sym_cmd_identifier_token3] = ACTIONS(1406), - [aux_sym_cmd_identifier_token4] = ACTIONS(1406), - [aux_sym_cmd_identifier_token5] = ACTIONS(1406), - [sym__newline] = ACTIONS(1586), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_DOT_DOT] = ACTIONS(1590), + [365] = { + [aux_sym__repeat_newline] = STATE(4441), + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4957), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4868), + [sym_val_bool] = STATE(4386), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(3992), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4868), + [sym__val_number_decimal] = STATE(3716), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4868), + [sym_val_filesize] = STATE(4868), + [sym_val_binary] = STATE(4868), + [sym_val_string] = STATE(4868), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4898), + [sym__spread_list] = STATE(4958), + [sym_list_body] = STATE(5193), + [sym_val_entry] = STATE(4903), + [sym_val_record] = STATE(4868), + [sym__table_head] = STATE(3957), + [sym_val_table] = STATE(4868), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), + [sym_comment] = STATE(365), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4458), + [aux_sym_list_body_repeat1] = STATE(690), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [sym__newline] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_RBRACK] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1510), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1424), - [anon_sym_DOT_DOT_LT] = ACTIONS(1424), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1426), - [aux_sym__val_number_decimal_token2] = ACTIONS(1428), - [aux_sym__val_number_decimal_token3] = ACTIONS(1430), - [aux_sym__val_number_decimal_token4] = ACTIONS(1430), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(380)] = { - [sym_cell_path] = STATE(431), - [sym_path] = STATE(442), - [sym_comment] = STATE(380), - [aux_sym__where_predicate_lhs_repeat1] = STATE(404), - [ts_builtin_sym_end] = ACTIONS(1468), - [anon_sym_EQ] = ACTIONS(1466), - [anon_sym_PLUS_EQ] = ACTIONS(1468), - [anon_sym_DASH_EQ] = ACTIONS(1468), - [anon_sym_STAR_EQ] = ACTIONS(1468), - [anon_sym_SLASH_EQ] = ACTIONS(1468), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1468), - [anon_sym_in] = ACTIONS(1468), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1466), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_like2] = ACTIONS(1468), - [anon_sym_not_DASHlike2] = ACTIONS(1468), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1466), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [366] = { + [sym_path] = STATE(375), + [sym_comment] = STATE(366), + [aux_sym__where_predicate_lhs_repeat1] = STATE(366), + [anon_sym_EQ] = ACTIONS(1558), + [anon_sym_PLUS_EQ] = ACTIONS(1558), + [anon_sym_DASH_EQ] = ACTIONS(1558), + [anon_sym_STAR_EQ] = ACTIONS(1558), + [anon_sym_SLASH_EQ] = ACTIONS(1558), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1558), + [sym__newline] = ACTIONS(1558), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_err_GT_PIPE] = ACTIONS(1558), + [anon_sym_out_GT_PIPE] = ACTIONS(1558), + [anon_sym_e_GT_PIPE] = ACTIONS(1558), + [anon_sym_o_GT_PIPE] = ACTIONS(1558), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), + [anon_sym_GT2] = ACTIONS(1558), + [anon_sym_DASH2] = ACTIONS(1558), + [anon_sym_RBRACE] = ACTIONS(1558), + [anon_sym_STAR2] = ACTIONS(1558), + [anon_sym_and2] = ACTIONS(1558), + [anon_sym_xor2] = ACTIONS(1558), + [anon_sym_or2] = ACTIONS(1558), + [anon_sym_not_DASHin2] = ACTIONS(1558), + [anon_sym_has2] = ACTIONS(1558), + [anon_sym_not_DASHhas2] = ACTIONS(1558), + [anon_sym_starts_DASHwith2] = ACTIONS(1558), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1558), + [anon_sym_ends_DASHwith2] = ACTIONS(1558), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1558), + [anon_sym_EQ_EQ2] = ACTIONS(1558), + [anon_sym_BANG_EQ2] = ACTIONS(1558), + [anon_sym_LT2] = ACTIONS(1558), + [anon_sym_LT_EQ2] = ACTIONS(1558), + [anon_sym_GT_EQ2] = ACTIONS(1558), + [anon_sym_EQ_TILDE2] = ACTIONS(1558), + [anon_sym_BANG_TILDE2] = ACTIONS(1558), + [anon_sym_like2] = ACTIONS(1558), + [anon_sym_not_DASHlike2] = ACTIONS(1558), + [anon_sym_STAR_STAR2] = ACTIONS(1558), + [anon_sym_PLUS_PLUS2] = ACTIONS(1558), + [anon_sym_SLASH2] = ACTIONS(1558), + [anon_sym_mod2] = ACTIONS(1558), + [anon_sym_SLASH_SLASH2] = ACTIONS(1558), + [anon_sym_PLUS2] = ACTIONS(1558), + [anon_sym_bit_DASHshl2] = ACTIONS(1558), + [anon_sym_bit_DASHshr2] = ACTIONS(1558), + [anon_sym_bit_DASHand2] = ACTIONS(1558), + [anon_sym_bit_DASHxor2] = ACTIONS(1558), + [anon_sym_bit_DASHor2] = ACTIONS(1558), + [anon_sym_DOT_DOT2] = ACTIONS(1558), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1560), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1560), + [sym__entry_separator] = ACTIONS(1560), + [anon_sym_COLON2] = ACTIONS(1558), + [anon_sym_DOT2] = ACTIONS(1562), + [anon_sym_err_GT] = ACTIONS(1558), + [anon_sym_out_GT] = ACTIONS(1558), + [anon_sym_e_GT] = ACTIONS(1558), + [anon_sym_o_GT] = ACTIONS(1558), + [anon_sym_err_PLUSout_GT] = ACTIONS(1558), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1558), + [anon_sym_o_PLUSe_GT] = ACTIONS(1558), + [anon_sym_e_PLUSo_GT] = ACTIONS(1558), + [anon_sym_err_GT_GT] = ACTIONS(1558), + [anon_sym_out_GT_GT] = ACTIONS(1558), + [anon_sym_e_GT_GT] = ACTIONS(1558), + [anon_sym_o_GT_GT] = ACTIONS(1558), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(105), + }, + [367] = { + [aux_sym__repeat_newline] = STATE(4441), + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4957), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4868), + [sym_val_bool] = STATE(4386), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(3992), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4868), + [sym__val_number_decimal] = STATE(3716), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4868), + [sym_val_filesize] = STATE(4868), + [sym_val_binary] = STATE(4868), + [sym_val_string] = STATE(4868), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4898), + [sym__spread_list] = STATE(4958), + [sym_list_body] = STATE(5233), + [sym_val_entry] = STATE(4903), + [sym_val_record] = STATE(4868), + [sym__table_head] = STATE(3929), + [sym_val_table] = STATE(4868), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), + [sym_comment] = STATE(367), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4458), + [aux_sym_list_body_repeat1] = STATE(690), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [sym__newline] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_RBRACK] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [368] = { + [sym_path] = STATE(375), + [sym_comment] = STATE(368), + [aux_sym__where_predicate_lhs_repeat1] = STATE(366), + [anon_sym_EQ] = ACTIONS(1567), + [anon_sym_PLUS_EQ] = ACTIONS(1567), + [anon_sym_DASH_EQ] = ACTIONS(1567), + [anon_sym_STAR_EQ] = ACTIONS(1567), + [anon_sym_SLASH_EQ] = ACTIONS(1567), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1567), + [anon_sym_in] = ACTIONS(1567), + [sym__newline] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_err_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_GT_PIPE] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), + [anon_sym_GT2] = ACTIONS(1567), + [anon_sym_DASH2] = ACTIONS(1567), + [anon_sym_RBRACE] = ACTIONS(1567), + [anon_sym_STAR2] = ACTIONS(1567), + [anon_sym_and2] = ACTIONS(1567), + [anon_sym_xor2] = ACTIONS(1567), + [anon_sym_or2] = ACTIONS(1567), + [anon_sym_not_DASHin2] = ACTIONS(1567), + [anon_sym_has2] = ACTIONS(1567), + [anon_sym_not_DASHhas2] = ACTIONS(1567), + [anon_sym_starts_DASHwith2] = ACTIONS(1567), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1567), + [anon_sym_ends_DASHwith2] = ACTIONS(1567), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1567), + [anon_sym_EQ_EQ2] = ACTIONS(1567), + [anon_sym_BANG_EQ2] = ACTIONS(1567), + [anon_sym_LT2] = ACTIONS(1567), + [anon_sym_LT_EQ2] = ACTIONS(1567), + [anon_sym_GT_EQ2] = ACTIONS(1567), + [anon_sym_EQ_TILDE2] = ACTIONS(1567), + [anon_sym_BANG_TILDE2] = ACTIONS(1567), + [anon_sym_like2] = ACTIONS(1567), + [anon_sym_not_DASHlike2] = ACTIONS(1567), + [anon_sym_STAR_STAR2] = ACTIONS(1567), + [anon_sym_PLUS_PLUS2] = ACTIONS(1567), + [anon_sym_SLASH2] = ACTIONS(1567), + [anon_sym_mod2] = ACTIONS(1567), + [anon_sym_SLASH_SLASH2] = ACTIONS(1567), + [anon_sym_PLUS2] = ACTIONS(1567), + [anon_sym_bit_DASHshl2] = ACTIONS(1567), + [anon_sym_bit_DASHshr2] = ACTIONS(1567), + [anon_sym_bit_DASHand2] = ACTIONS(1567), + [anon_sym_bit_DASHxor2] = ACTIONS(1567), + [anon_sym_bit_DASHor2] = ACTIONS(1567), + [anon_sym_DOT_DOT2] = ACTIONS(1567), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1569), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1569), + [sym__entry_separator] = ACTIONS(1569), + [anon_sym_COLON2] = ACTIONS(1567), + [anon_sym_DOT2] = ACTIONS(1484), + [anon_sym_err_GT] = ACTIONS(1567), + [anon_sym_out_GT] = ACTIONS(1567), + [anon_sym_e_GT] = ACTIONS(1567), + [anon_sym_o_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT] = ACTIONS(1567), + [anon_sym_err_GT_GT] = ACTIONS(1567), + [anon_sym_out_GT_GT] = ACTIONS(1567), + [anon_sym_e_GT_GT] = ACTIONS(1567), + [anon_sym_o_GT_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), + [anon_sym_POUND] = ACTIONS(105), + }, + [369] = { + [sym_path] = STATE(393), + [sym_comment] = STATE(369), + [aux_sym__where_predicate_lhs_repeat1] = STATE(370), + [anon_sym_EQ] = ACTIONS(1567), + [anon_sym_PLUS_EQ] = ACTIONS(1569), + [anon_sym_DASH_EQ] = ACTIONS(1569), + [anon_sym_STAR_EQ] = ACTIONS(1569), + [anon_sym_SLASH_EQ] = ACTIONS(1569), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1569), + [anon_sym_in] = ACTIONS(1569), + [sym__newline] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_err_GT_PIPE] = ACTIONS(1569), + [anon_sym_out_GT_PIPE] = ACTIONS(1569), + [anon_sym_e_GT_PIPE] = ACTIONS(1569), + [anon_sym_o_GT_PIPE] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1569), + [anon_sym_RPAREN] = ACTIONS(1569), + [anon_sym_GT2] = ACTIONS(1567), + [anon_sym_DASH2] = ACTIONS(1567), + [anon_sym_RBRACE] = ACTIONS(1569), + [anon_sym_STAR2] = ACTIONS(1567), + [anon_sym_and2] = ACTIONS(1569), + [anon_sym_xor2] = ACTIONS(1569), + [anon_sym_or2] = ACTIONS(1569), + [anon_sym_not_DASHin2] = ACTIONS(1569), + [anon_sym_has2] = ACTIONS(1569), + [anon_sym_not_DASHhas2] = ACTIONS(1569), + [anon_sym_starts_DASHwith2] = ACTIONS(1569), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1569), + [anon_sym_ends_DASHwith2] = ACTIONS(1569), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1569), + [anon_sym_EQ_EQ2] = ACTIONS(1569), + [anon_sym_BANG_EQ2] = ACTIONS(1569), + [anon_sym_LT2] = ACTIONS(1567), + [anon_sym_LT_EQ2] = ACTIONS(1569), + [anon_sym_GT_EQ2] = ACTIONS(1569), + [anon_sym_EQ_TILDE2] = ACTIONS(1569), + [anon_sym_BANG_TILDE2] = ACTIONS(1569), + [anon_sym_like2] = ACTIONS(1569), + [anon_sym_not_DASHlike2] = ACTIONS(1569), + [anon_sym_STAR_STAR2] = ACTIONS(1569), + [anon_sym_PLUS_PLUS2] = ACTIONS(1567), + [anon_sym_SLASH2] = ACTIONS(1567), + [anon_sym_mod2] = ACTIONS(1569), + [anon_sym_SLASH_SLASH2] = ACTIONS(1569), + [anon_sym_PLUS2] = ACTIONS(1567), + [anon_sym_bit_DASHshl2] = ACTIONS(1569), + [anon_sym_bit_DASHshr2] = ACTIONS(1569), + [anon_sym_bit_DASHand2] = ACTIONS(1569), + [anon_sym_bit_DASHxor2] = ACTIONS(1569), + [anon_sym_bit_DASHor2] = ACTIONS(1569), + [anon_sym_DOT_DOT2] = ACTIONS(1567), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1569), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1569), + [anon_sym_COLON2] = ACTIONS(1569), + [anon_sym_DOT2] = ACTIONS(1482), + [anon_sym_err_GT] = ACTIONS(1567), + [anon_sym_out_GT] = ACTIONS(1567), + [anon_sym_e_GT] = ACTIONS(1567), + [anon_sym_o_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT] = ACTIONS(1567), + [anon_sym_err_GT_GT] = ACTIONS(1569), + [anon_sym_out_GT_GT] = ACTIONS(1569), + [anon_sym_e_GT_GT] = ACTIONS(1569), + [anon_sym_o_GT_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(3), + }, + [370] = { + [sym_path] = STATE(393), + [sym_comment] = STATE(370), + [aux_sym__where_predicate_lhs_repeat1] = STATE(370), + [anon_sym_EQ] = ACTIONS(1558), + [anon_sym_PLUS_EQ] = ACTIONS(1560), + [anon_sym_DASH_EQ] = ACTIONS(1560), + [anon_sym_STAR_EQ] = ACTIONS(1560), + [anon_sym_SLASH_EQ] = ACTIONS(1560), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1560), + [anon_sym_in] = ACTIONS(1560), + [sym__newline] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_err_GT_PIPE] = ACTIONS(1560), + [anon_sym_out_GT_PIPE] = ACTIONS(1560), + [anon_sym_e_GT_PIPE] = ACTIONS(1560), + [anon_sym_o_GT_PIPE] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(1560), + [anon_sym_GT2] = ACTIONS(1558), + [anon_sym_DASH2] = ACTIONS(1558), + [anon_sym_RBRACE] = ACTIONS(1560), + [anon_sym_STAR2] = ACTIONS(1558), + [anon_sym_and2] = ACTIONS(1560), + [anon_sym_xor2] = ACTIONS(1560), + [anon_sym_or2] = ACTIONS(1560), + [anon_sym_not_DASHin2] = ACTIONS(1560), + [anon_sym_has2] = ACTIONS(1560), + [anon_sym_not_DASHhas2] = ACTIONS(1560), + [anon_sym_starts_DASHwith2] = ACTIONS(1560), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1560), + [anon_sym_ends_DASHwith2] = ACTIONS(1560), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1560), + [anon_sym_EQ_EQ2] = ACTIONS(1560), + [anon_sym_BANG_EQ2] = ACTIONS(1560), + [anon_sym_LT2] = ACTIONS(1558), + [anon_sym_LT_EQ2] = ACTIONS(1560), + [anon_sym_GT_EQ2] = ACTIONS(1560), + [anon_sym_EQ_TILDE2] = ACTIONS(1560), + [anon_sym_BANG_TILDE2] = ACTIONS(1560), + [anon_sym_like2] = ACTIONS(1560), + [anon_sym_not_DASHlike2] = ACTIONS(1560), + [anon_sym_STAR_STAR2] = ACTIONS(1560), + [anon_sym_PLUS_PLUS2] = ACTIONS(1558), + [anon_sym_SLASH2] = ACTIONS(1558), + [anon_sym_mod2] = ACTIONS(1560), + [anon_sym_SLASH_SLASH2] = ACTIONS(1560), + [anon_sym_PLUS2] = ACTIONS(1558), + [anon_sym_bit_DASHshl2] = ACTIONS(1560), + [anon_sym_bit_DASHshr2] = ACTIONS(1560), + [anon_sym_bit_DASHand2] = ACTIONS(1560), + [anon_sym_bit_DASHxor2] = ACTIONS(1560), + [anon_sym_bit_DASHor2] = ACTIONS(1560), + [anon_sym_DOT_DOT2] = ACTIONS(1558), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1560), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1560), + [anon_sym_COLON2] = ACTIONS(1560), + [anon_sym_DOT2] = ACTIONS(1571), + [anon_sym_err_GT] = ACTIONS(1558), + [anon_sym_out_GT] = ACTIONS(1558), + [anon_sym_e_GT] = ACTIONS(1558), + [anon_sym_o_GT] = ACTIONS(1558), + [anon_sym_err_PLUSout_GT] = ACTIONS(1558), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1558), + [anon_sym_o_PLUSe_GT] = ACTIONS(1558), + [anon_sym_e_PLUSo_GT] = ACTIONS(1558), + [anon_sym_err_GT_GT] = ACTIONS(1560), + [anon_sym_out_GT_GT] = ACTIONS(1560), + [anon_sym_e_GT_GT] = ACTIONS(1560), + [anon_sym_o_GT_GT] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1560), + [anon_sym_POUND] = ACTIONS(3), + }, + [371] = { + [sym_comment] = STATE(371), + [anon_sym_EQ] = ACTIONS(1574), + [anon_sym_PLUS_EQ] = ACTIONS(1574), + [anon_sym_DASH_EQ] = ACTIONS(1574), + [anon_sym_STAR_EQ] = ACTIONS(1574), + [anon_sym_SLASH_EQ] = ACTIONS(1574), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1574), + [anon_sym_in] = ACTIONS(1574), + [sym__newline] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_err_GT_PIPE] = ACTIONS(1574), + [anon_sym_out_GT_PIPE] = ACTIONS(1574), + [anon_sym_e_GT_PIPE] = ACTIONS(1574), + [anon_sym_o_GT_PIPE] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1574), + [anon_sym_GT2] = ACTIONS(1574), + [anon_sym_DASH2] = ACTIONS(1574), + [anon_sym_RBRACE] = ACTIONS(1574), + [anon_sym_STAR2] = ACTIONS(1574), + [anon_sym_and2] = ACTIONS(1574), + [anon_sym_xor2] = ACTIONS(1574), + [anon_sym_or2] = ACTIONS(1574), + [anon_sym_not_DASHin2] = ACTIONS(1574), + [anon_sym_has2] = ACTIONS(1574), + [anon_sym_not_DASHhas2] = ACTIONS(1574), + [anon_sym_starts_DASHwith2] = ACTIONS(1574), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1574), + [anon_sym_ends_DASHwith2] = ACTIONS(1574), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1574), + [anon_sym_EQ_EQ2] = ACTIONS(1574), + [anon_sym_BANG_EQ2] = ACTIONS(1574), + [anon_sym_LT2] = ACTIONS(1574), + [anon_sym_LT_EQ2] = ACTIONS(1574), + [anon_sym_GT_EQ2] = ACTIONS(1574), + [anon_sym_EQ_TILDE2] = ACTIONS(1574), + [anon_sym_BANG_TILDE2] = ACTIONS(1574), + [anon_sym_like2] = ACTIONS(1574), + [anon_sym_not_DASHlike2] = ACTIONS(1574), + [anon_sym_STAR_STAR2] = ACTIONS(1574), + [anon_sym_PLUS_PLUS2] = ACTIONS(1574), + [anon_sym_SLASH2] = ACTIONS(1574), + [anon_sym_mod2] = ACTIONS(1574), + [anon_sym_SLASH_SLASH2] = ACTIONS(1574), + [anon_sym_PLUS2] = ACTIONS(1574), + [anon_sym_bit_DASHshl2] = ACTIONS(1574), + [anon_sym_bit_DASHshr2] = ACTIONS(1574), + [anon_sym_bit_DASHand2] = ACTIONS(1574), + [anon_sym_bit_DASHxor2] = ACTIONS(1574), + [anon_sym_bit_DASHor2] = ACTIONS(1574), + [anon_sym_DOT_DOT2] = ACTIONS(1574), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1576), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1576), + [sym__entry_separator] = ACTIONS(1576), + [anon_sym_COLON2] = ACTIONS(1574), + [anon_sym_QMARK2] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_DOT2] = ACTIONS(1574), + [anon_sym_err_GT] = ACTIONS(1574), + [anon_sym_out_GT] = ACTIONS(1574), + [anon_sym_e_GT] = ACTIONS(1574), + [anon_sym_o_GT] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT] = ACTIONS(1574), + [anon_sym_err_GT_GT] = ACTIONS(1574), + [anon_sym_out_GT_GT] = ACTIONS(1574), + [anon_sym_e_GT_GT] = ACTIONS(1574), + [anon_sym_o_GT_GT] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1574), + [anon_sym_POUND] = ACTIONS(105), + }, + [372] = { + [aux_sym__repeat_newline] = STATE(4441), + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4957), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4868), + [sym_val_bool] = STATE(4386), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(3992), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4868), + [sym__val_number_decimal] = STATE(3716), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4868), + [sym_val_filesize] = STATE(4868), + [sym_val_binary] = STATE(4868), + [sym_val_string] = STATE(4868), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4898), + [sym__spread_list] = STATE(4958), + [sym_list_body] = STATE(5128), + [sym_val_entry] = STATE(4903), + [sym_val_record] = STATE(4868), + [sym__table_head] = STATE(3968), + [sym_val_table] = STATE(4868), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), + [sym_comment] = STATE(372), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4458), + [aux_sym_list_body_repeat1] = STATE(690), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [sym__newline] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_RBRACK] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [373] = { + [aux_sym__repeat_newline] = STATE(4441), + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4957), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4868), + [sym_val_bool] = STATE(4386), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(3992), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4868), + [sym__val_number_decimal] = STATE(3716), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4868), + [sym_val_filesize] = STATE(4868), + [sym_val_binary] = STATE(4868), + [sym_val_string] = STATE(4868), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4898), + [sym__spread_list] = STATE(4958), + [sym_list_body] = STATE(5393), + [sym_val_entry] = STATE(4903), + [sym_val_record] = STATE(4868), + [sym__table_head] = STATE(3895), + [sym_val_table] = STATE(4868), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), + [sym_comment] = STATE(373), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4458), + [aux_sym_list_body_repeat1] = STATE(690), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [sym__newline] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_RBRACK] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [374] = { + [aux_sym__repeat_newline] = STATE(4441), + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4957), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4868), + [sym_val_bool] = STATE(4386), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(3992), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4868), + [sym__val_number_decimal] = STATE(3716), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4868), + [sym_val_filesize] = STATE(4868), + [sym_val_binary] = STATE(4868), + [sym_val_string] = STATE(4868), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4898), + [sym__spread_list] = STATE(4958), + [sym_list_body] = STATE(5350), + [sym_val_entry] = STATE(4903), + [sym_val_record] = STATE(4868), + [sym__table_head] = STATE(3900), + [sym_val_table] = STATE(4868), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), + [sym_comment] = STATE(374), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4458), + [aux_sym_list_body_repeat1] = STATE(690), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [sym__newline] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_RBRACK] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [375] = { + [sym_comment] = STATE(375), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_PLUS_EQ] = ACTIONS(1584), + [anon_sym_DASH_EQ] = ACTIONS(1584), + [anon_sym_STAR_EQ] = ACTIONS(1584), + [anon_sym_SLASH_EQ] = ACTIONS(1584), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1584), + [anon_sym_in] = ACTIONS(1584), + [sym__newline] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_err_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_GT_PIPE] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1584), + [anon_sym_RBRACK] = ACTIONS(1584), + [anon_sym_GT2] = ACTIONS(1584), + [anon_sym_DASH2] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1584), + [anon_sym_STAR2] = ACTIONS(1584), + [anon_sym_and2] = ACTIONS(1584), + [anon_sym_xor2] = ACTIONS(1584), + [anon_sym_or2] = ACTIONS(1584), + [anon_sym_not_DASHin2] = ACTIONS(1584), + [anon_sym_has2] = ACTIONS(1584), + [anon_sym_not_DASHhas2] = ACTIONS(1584), + [anon_sym_starts_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1584), + [anon_sym_ends_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1584), + [anon_sym_EQ_EQ2] = ACTIONS(1584), + [anon_sym_BANG_EQ2] = ACTIONS(1584), + [anon_sym_LT2] = ACTIONS(1584), + [anon_sym_LT_EQ2] = ACTIONS(1584), + [anon_sym_GT_EQ2] = ACTIONS(1584), + [anon_sym_EQ_TILDE2] = ACTIONS(1584), + [anon_sym_BANG_TILDE2] = ACTIONS(1584), + [anon_sym_like2] = ACTIONS(1584), + [anon_sym_not_DASHlike2] = ACTIONS(1584), + [anon_sym_STAR_STAR2] = ACTIONS(1584), + [anon_sym_PLUS_PLUS2] = ACTIONS(1584), + [anon_sym_SLASH2] = ACTIONS(1584), + [anon_sym_mod2] = ACTIONS(1584), + [anon_sym_SLASH_SLASH2] = ACTIONS(1584), + [anon_sym_PLUS2] = ACTIONS(1584), + [anon_sym_bit_DASHshl2] = ACTIONS(1584), + [anon_sym_bit_DASHshr2] = ACTIONS(1584), + [anon_sym_bit_DASHand2] = ACTIONS(1584), + [anon_sym_bit_DASHxor2] = ACTIONS(1584), + [anon_sym_bit_DASHor2] = ACTIONS(1584), + [anon_sym_DOT_DOT2] = ACTIONS(1584), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1586), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1586), + [sym__entry_separator] = ACTIONS(1586), + [anon_sym_COLON2] = ACTIONS(1584), + [anon_sym_DOT2] = ACTIONS(1584), + [anon_sym_err_GT] = ACTIONS(1584), + [anon_sym_out_GT] = ACTIONS(1584), + [anon_sym_e_GT] = ACTIONS(1584), + [anon_sym_o_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT] = ACTIONS(1584), + [anon_sym_err_GT_GT] = ACTIONS(1584), + [anon_sym_out_GT_GT] = ACTIONS(1584), + [anon_sym_e_GT_GT] = ACTIONS(1584), + [anon_sym_o_GT_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1584), + [anon_sym_POUND] = ACTIONS(105), + }, + [376] = { + [sym_comment] = STATE(376), + [anon_sym_EQ] = ACTIONS(1550), + [anon_sym_PLUS_EQ] = ACTIONS(1550), + [anon_sym_DASH_EQ] = ACTIONS(1550), + [anon_sym_STAR_EQ] = ACTIONS(1550), + [anon_sym_SLASH_EQ] = ACTIONS(1550), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1550), + [anon_sym_in] = ACTIONS(1550), + [sym__newline] = ACTIONS(1550), + [anon_sym_SEMI] = ACTIONS(1550), + [anon_sym_PIPE] = ACTIONS(1550), + [anon_sym_err_GT_PIPE] = ACTIONS(1550), + [anon_sym_out_GT_PIPE] = ACTIONS(1550), + [anon_sym_e_GT_PIPE] = ACTIONS(1550), + [anon_sym_o_GT_PIPE] = ACTIONS(1550), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), + [anon_sym_GT2] = ACTIONS(1550), + [anon_sym_DASH2] = ACTIONS(1550), + [anon_sym_RBRACE] = ACTIONS(1550), + [anon_sym_STAR2] = ACTIONS(1550), + [anon_sym_and2] = ACTIONS(1550), + [anon_sym_xor2] = ACTIONS(1550), + [anon_sym_or2] = ACTIONS(1550), + [anon_sym_not_DASHin2] = ACTIONS(1550), + [anon_sym_has2] = ACTIONS(1550), + [anon_sym_not_DASHhas2] = ACTIONS(1550), + [anon_sym_starts_DASHwith2] = ACTIONS(1550), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1550), + [anon_sym_ends_DASHwith2] = ACTIONS(1550), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1550), + [anon_sym_EQ_EQ2] = ACTIONS(1550), + [anon_sym_BANG_EQ2] = ACTIONS(1550), + [anon_sym_LT2] = ACTIONS(1550), + [anon_sym_LT_EQ2] = ACTIONS(1550), + [anon_sym_GT_EQ2] = ACTIONS(1550), + [anon_sym_EQ_TILDE2] = ACTIONS(1550), + [anon_sym_BANG_TILDE2] = ACTIONS(1550), + [anon_sym_like2] = ACTIONS(1550), + [anon_sym_not_DASHlike2] = ACTIONS(1550), + [anon_sym_STAR_STAR2] = ACTIONS(1550), + [anon_sym_PLUS_PLUS2] = ACTIONS(1550), + [anon_sym_SLASH2] = ACTIONS(1550), + [anon_sym_mod2] = ACTIONS(1550), + [anon_sym_SLASH_SLASH2] = ACTIONS(1550), + [anon_sym_PLUS2] = ACTIONS(1550), + [anon_sym_bit_DASHshl2] = ACTIONS(1550), + [anon_sym_bit_DASHshr2] = ACTIONS(1550), + [anon_sym_bit_DASHand2] = ACTIONS(1550), + [anon_sym_bit_DASHxor2] = ACTIONS(1550), + [anon_sym_bit_DASHor2] = ACTIONS(1550), + [anon_sym_DOT_DOT2] = ACTIONS(1550), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), + [sym__entry_separator] = ACTIONS(1552), + [anon_sym_COLON2] = ACTIONS(1550), + [anon_sym_QMARK2] = ACTIONS(1550), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_DOT2] = ACTIONS(1550), + [anon_sym_err_GT] = ACTIONS(1550), + [anon_sym_out_GT] = ACTIONS(1550), + [anon_sym_e_GT] = ACTIONS(1550), + [anon_sym_o_GT] = ACTIONS(1550), + [anon_sym_err_PLUSout_GT] = ACTIONS(1550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), + [anon_sym_o_PLUSe_GT] = ACTIONS(1550), + [anon_sym_e_PLUSo_GT] = ACTIONS(1550), + [anon_sym_err_GT_GT] = ACTIONS(1550), + [anon_sym_out_GT_GT] = ACTIONS(1550), + [anon_sym_e_GT_GT] = ACTIONS(1550), + [anon_sym_o_GT_GT] = ACTIONS(1550), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1550), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1550), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1550), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1550), + [anon_sym_POUND] = ACTIONS(105), + }, + [377] = { + [sym_comment] = STATE(377), + [anon_sym_EQ] = ACTIONS(1574), + [anon_sym_PLUS_EQ] = ACTIONS(1576), + [anon_sym_DASH_EQ] = ACTIONS(1576), + [anon_sym_STAR_EQ] = ACTIONS(1576), + [anon_sym_SLASH_EQ] = ACTIONS(1576), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1576), + [anon_sym_in] = ACTIONS(1576), + [sym__newline] = ACTIONS(1576), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1576), + [anon_sym_err_GT_PIPE] = ACTIONS(1576), + [anon_sym_out_GT_PIPE] = ACTIONS(1576), + [anon_sym_e_GT_PIPE] = ACTIONS(1576), + [anon_sym_o_GT_PIPE] = ACTIONS(1576), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1576), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1576), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1576), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(1576), + [anon_sym_GT2] = ACTIONS(1574), + [anon_sym_DASH2] = ACTIONS(1574), + [anon_sym_RBRACE] = ACTIONS(1576), + [anon_sym_STAR2] = ACTIONS(1574), + [anon_sym_and2] = ACTIONS(1576), + [anon_sym_xor2] = ACTIONS(1576), + [anon_sym_or2] = ACTIONS(1576), + [anon_sym_not_DASHin2] = ACTIONS(1576), + [anon_sym_has2] = ACTIONS(1576), + [anon_sym_not_DASHhas2] = ACTIONS(1576), + [anon_sym_starts_DASHwith2] = ACTIONS(1576), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1576), + [anon_sym_ends_DASHwith2] = ACTIONS(1576), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1576), + [anon_sym_EQ_EQ2] = ACTIONS(1576), + [anon_sym_BANG_EQ2] = ACTIONS(1576), + [anon_sym_LT2] = ACTIONS(1574), + [anon_sym_LT_EQ2] = ACTIONS(1576), + [anon_sym_GT_EQ2] = ACTIONS(1576), + [anon_sym_EQ_TILDE2] = ACTIONS(1576), + [anon_sym_BANG_TILDE2] = ACTIONS(1576), + [anon_sym_like2] = ACTIONS(1576), + [anon_sym_not_DASHlike2] = ACTIONS(1576), + [anon_sym_STAR_STAR2] = ACTIONS(1576), + [anon_sym_PLUS_PLUS2] = ACTIONS(1574), + [anon_sym_SLASH2] = ACTIONS(1574), + [anon_sym_mod2] = ACTIONS(1576), + [anon_sym_SLASH_SLASH2] = ACTIONS(1576), + [anon_sym_PLUS2] = ACTIONS(1574), + [anon_sym_bit_DASHshl2] = ACTIONS(1576), + [anon_sym_bit_DASHshr2] = ACTIONS(1576), + [anon_sym_bit_DASHand2] = ACTIONS(1576), + [anon_sym_bit_DASHxor2] = ACTIONS(1576), + [anon_sym_bit_DASHor2] = ACTIONS(1576), + [anon_sym_DOT_DOT2] = ACTIONS(1574), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1576), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1576), + [anon_sym_COLON2] = ACTIONS(1576), + [anon_sym_QMARK2] = ACTIONS(1576), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_DOT2] = ACTIONS(1574), + [anon_sym_err_GT] = ACTIONS(1574), + [anon_sym_out_GT] = ACTIONS(1574), + [anon_sym_e_GT] = ACTIONS(1574), + [anon_sym_o_GT] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT] = ACTIONS(1574), + [anon_sym_err_GT_GT] = ACTIONS(1576), + [anon_sym_out_GT_GT] = ACTIONS(1576), + [anon_sym_e_GT_GT] = ACTIONS(1576), + [anon_sym_o_GT_GT] = ACTIONS(1576), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1576), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1576), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1576), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1576), + [anon_sym_POUND] = ACTIONS(3), + }, + [378] = { + [sym__path_suffix] = STATE(444), + [sym_comment] = STATE(378), + [ts_builtin_sym_end] = ACTIONS(1472), + [anon_sym_EQ] = ACTIONS(1470), + [anon_sym_PLUS_EQ] = ACTIONS(1472), + [anon_sym_DASH_EQ] = ACTIONS(1472), + [anon_sym_STAR_EQ] = ACTIONS(1472), + [anon_sym_SLASH_EQ] = ACTIONS(1472), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1472), + [anon_sym_in] = ACTIONS(1472), + [sym__newline] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1472), + [anon_sym_err_GT_PIPE] = ACTIONS(1472), + [anon_sym_out_GT_PIPE] = ACTIONS(1472), + [anon_sym_e_GT_PIPE] = ACTIONS(1472), + [anon_sym_o_GT_PIPE] = ACTIONS(1472), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), + [anon_sym_GT2] = ACTIONS(1470), + [anon_sym_DASH2] = ACTIONS(1470), + [anon_sym_STAR2] = ACTIONS(1470), + [anon_sym_and2] = ACTIONS(1472), + [anon_sym_xor2] = ACTIONS(1472), + [anon_sym_or2] = ACTIONS(1472), + [anon_sym_not_DASHin2] = ACTIONS(1472), + [anon_sym_has2] = ACTIONS(1472), + [anon_sym_not_DASHhas2] = ACTIONS(1472), + [anon_sym_starts_DASHwith2] = ACTIONS(1472), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1472), + [anon_sym_ends_DASHwith2] = ACTIONS(1472), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1472), + [anon_sym_EQ_EQ2] = ACTIONS(1472), + [anon_sym_BANG_EQ2] = ACTIONS(1472), + [anon_sym_LT2] = ACTIONS(1470), + [anon_sym_LT_EQ2] = ACTIONS(1472), + [anon_sym_GT_EQ2] = ACTIONS(1472), + [anon_sym_EQ_TILDE2] = ACTIONS(1472), + [anon_sym_BANG_TILDE2] = ACTIONS(1472), + [anon_sym_like2] = ACTIONS(1472), + [anon_sym_not_DASHlike2] = ACTIONS(1472), + [anon_sym_STAR_STAR2] = ACTIONS(1472), + [anon_sym_PLUS_PLUS2] = ACTIONS(1470), + [anon_sym_SLASH2] = ACTIONS(1470), + [anon_sym_mod2] = ACTIONS(1472), + [anon_sym_SLASH_SLASH2] = ACTIONS(1472), + [anon_sym_PLUS2] = ACTIONS(1470), + [anon_sym_bit_DASHshl2] = ACTIONS(1472), + [anon_sym_bit_DASHshr2] = ACTIONS(1472), + [anon_sym_bit_DASHand2] = ACTIONS(1472), + [anon_sym_bit_DASHxor2] = ACTIONS(1472), + [anon_sym_bit_DASHor2] = ACTIONS(1472), + [anon_sym_DOT_DOT2] = ACTIONS(1470), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), + [anon_sym_QMARK2] = ACTIONS(1588), + [anon_sym_BANG] = ACTIONS(1590), + [anon_sym_DOT2] = ACTIONS(1470), + [anon_sym_err_GT] = ACTIONS(1470), + [anon_sym_out_GT] = ACTIONS(1470), + [anon_sym_e_GT] = ACTIONS(1470), + [anon_sym_o_GT] = ACTIONS(1470), + [anon_sym_err_PLUSout_GT] = ACTIONS(1470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), + [anon_sym_o_PLUSe_GT] = ACTIONS(1470), + [anon_sym_e_PLUSo_GT] = ACTIONS(1470), + [anon_sym_err_GT_GT] = ACTIONS(1472), + [anon_sym_out_GT_GT] = ACTIONS(1472), + [anon_sym_e_GT_GT] = ACTIONS(1472), + [anon_sym_o_GT_GT] = ACTIONS(1472), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), + [anon_sym_POUND] = ACTIONS(3), + }, + [379] = { + [sym_cell_path] = STATE(438), + [sym_path] = STATE(435), + [sym_comment] = STATE(379), + [aux_sym__where_predicate_lhs_repeat1] = STATE(398), + [ts_builtin_sym_end] = ACTIONS(1480), + [anon_sym_EQ] = ACTIONS(1478), + [anon_sym_PLUS_EQ] = ACTIONS(1480), + [anon_sym_DASH_EQ] = ACTIONS(1480), + [anon_sym_STAR_EQ] = ACTIONS(1480), + [anon_sym_SLASH_EQ] = ACTIONS(1480), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1480), + [anon_sym_in] = ACTIONS(1480), + [sym__newline] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_err_GT_PIPE] = ACTIONS(1480), + [anon_sym_out_GT_PIPE] = ACTIONS(1480), + [anon_sym_e_GT_PIPE] = ACTIONS(1480), + [anon_sym_o_GT_PIPE] = ACTIONS(1480), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), + [anon_sym_GT2] = ACTIONS(1478), + [anon_sym_DASH2] = ACTIONS(1478), + [anon_sym_STAR2] = ACTIONS(1478), + [anon_sym_and2] = ACTIONS(1480), + [anon_sym_xor2] = ACTIONS(1480), + [anon_sym_or2] = ACTIONS(1480), + [anon_sym_not_DASHin2] = ACTIONS(1480), + [anon_sym_has2] = ACTIONS(1480), + [anon_sym_not_DASHhas2] = ACTIONS(1480), + [anon_sym_starts_DASHwith2] = ACTIONS(1480), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1480), + [anon_sym_ends_DASHwith2] = ACTIONS(1480), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1480), + [anon_sym_EQ_EQ2] = ACTIONS(1480), + [anon_sym_BANG_EQ2] = ACTIONS(1480), + [anon_sym_LT2] = ACTIONS(1478), + [anon_sym_LT_EQ2] = ACTIONS(1480), + [anon_sym_GT_EQ2] = ACTIONS(1480), + [anon_sym_EQ_TILDE2] = ACTIONS(1480), + [anon_sym_BANG_TILDE2] = ACTIONS(1480), + [anon_sym_like2] = ACTIONS(1480), + [anon_sym_not_DASHlike2] = ACTIONS(1480), + [anon_sym_STAR_STAR2] = ACTIONS(1480), + [anon_sym_PLUS_PLUS2] = ACTIONS(1478), + [anon_sym_SLASH2] = ACTIONS(1478), + [anon_sym_mod2] = ACTIONS(1480), + [anon_sym_SLASH_SLASH2] = ACTIONS(1480), + [anon_sym_PLUS2] = ACTIONS(1478), + [anon_sym_bit_DASHshl2] = ACTIONS(1480), + [anon_sym_bit_DASHshr2] = ACTIONS(1480), + [anon_sym_bit_DASHand2] = ACTIONS(1480), + [anon_sym_bit_DASHxor2] = ACTIONS(1480), + [anon_sym_bit_DASHor2] = ACTIONS(1480), + [anon_sym_DOT_DOT2] = ACTIONS(1478), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), [anon_sym_DOT2] = ACTIONS(1592), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(381)] = { + [anon_sym_err_GT] = ACTIONS(1478), + [anon_sym_out_GT] = ACTIONS(1478), + [anon_sym_e_GT] = ACTIONS(1478), + [anon_sym_o_GT] = ACTIONS(1478), + [anon_sym_err_PLUSout_GT] = ACTIONS(1478), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), + [anon_sym_o_PLUSe_GT] = ACTIONS(1478), + [anon_sym_e_PLUSo_GT] = ACTIONS(1478), + [anon_sym_err_GT_GT] = ACTIONS(1480), + [anon_sym_out_GT_GT] = ACTIONS(1480), + [anon_sym_e_GT_GT] = ACTIONS(1480), + [anon_sym_o_GT_GT] = ACTIONS(1480), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), + [anon_sym_POUND] = ACTIONS(3), + }, + [380] = { + [sym_comment] = STATE(380), + [anon_sym_EQ] = ACTIONS(1464), + [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(1464), + [anon_sym_DASH2] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1464), + [anon_sym_STAR2] = ACTIONS(1464), + [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(1464), + [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(1464), + [anon_sym_mod2] = ACTIONS(1464), + [anon_sym_SLASH_SLASH2] = ACTIONS(1464), + [anon_sym_PLUS2] = ACTIONS(1464), + [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(1464), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1466), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1466), + [sym__entry_separator] = ACTIONS(1466), + [anon_sym_COLON2] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_DOT2] = ACTIONS(1464), + [anon_sym_err_GT] = ACTIONS(1464), + [anon_sym_out_GT] = ACTIONS(1464), + [anon_sym_e_GT] = ACTIONS(1464), + [anon_sym_o_GT] = ACTIONS(1464), + [anon_sym_err_PLUSout_GT] = ACTIONS(1464), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1464), + [anon_sym_o_PLUSe_GT] = ACTIONS(1464), + [anon_sym_e_PLUSo_GT] = ACTIONS(1464), + [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(105), + }, + [381] = { [sym_comment] = STATE(381), - [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_EQ] = ACTIONS(1464), + [anon_sym_PLUS_EQ] = ACTIONS(1466), + [anon_sym_DASH_EQ] = ACTIONS(1466), + [anon_sym_STAR_EQ] = ACTIONS(1466), + [anon_sym_SLASH_EQ] = ACTIONS(1466), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1466), + [anon_sym_in] = ACTIONS(1466), + [sym__newline] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_err_GT_PIPE] = ACTIONS(1466), + [anon_sym_out_GT_PIPE] = ACTIONS(1466), + [anon_sym_e_GT_PIPE] = ACTIONS(1466), + [anon_sym_o_GT_PIPE] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1466), + [anon_sym_RPAREN] = ACTIONS(1466), + [anon_sym_GT2] = ACTIONS(1464), + [anon_sym_DASH2] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_STAR2] = ACTIONS(1464), + [anon_sym_and2] = ACTIONS(1466), + [anon_sym_xor2] = ACTIONS(1466), + [anon_sym_or2] = ACTIONS(1466), + [anon_sym_not_DASHin2] = ACTIONS(1466), + [anon_sym_has2] = ACTIONS(1466), + [anon_sym_not_DASHhas2] = ACTIONS(1466), + [anon_sym_starts_DASHwith2] = ACTIONS(1466), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1466), + [anon_sym_ends_DASHwith2] = ACTIONS(1466), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1466), + [anon_sym_EQ_EQ2] = ACTIONS(1466), + [anon_sym_BANG_EQ2] = ACTIONS(1466), + [anon_sym_LT2] = ACTIONS(1464), + [anon_sym_LT_EQ2] = ACTIONS(1466), + [anon_sym_GT_EQ2] = ACTIONS(1466), + [anon_sym_EQ_TILDE2] = ACTIONS(1466), + [anon_sym_BANG_TILDE2] = ACTIONS(1466), + [anon_sym_like2] = ACTIONS(1466), + [anon_sym_not_DASHlike2] = ACTIONS(1466), + [anon_sym_STAR_STAR2] = ACTIONS(1466), + [anon_sym_PLUS_PLUS2] = ACTIONS(1464), + [anon_sym_SLASH2] = ACTIONS(1464), + [anon_sym_mod2] = ACTIONS(1466), + [anon_sym_SLASH_SLASH2] = ACTIONS(1466), + [anon_sym_PLUS2] = ACTIONS(1464), + [anon_sym_bit_DASHshl2] = ACTIONS(1466), + [anon_sym_bit_DASHshr2] = ACTIONS(1466), + [anon_sym_bit_DASHand2] = ACTIONS(1466), + [anon_sym_bit_DASHxor2] = ACTIONS(1466), + [anon_sym_bit_DASHor2] = ACTIONS(1466), + [anon_sym_DOT_DOT2] = ACTIONS(1464), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1466), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1466), + [anon_sym_COLON2] = ACTIONS(1466), [anon_sym_QMARK2] = ACTIONS(1594), - [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(382)] = { - [sym__path_suffix] = STATE(435), + [anon_sym_DOT2] = ACTIONS(1464), + [anon_sym_err_GT] = ACTIONS(1464), + [anon_sym_out_GT] = ACTIONS(1464), + [anon_sym_e_GT] = ACTIONS(1464), + [anon_sym_o_GT] = ACTIONS(1464), + [anon_sym_err_PLUSout_GT] = ACTIONS(1464), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1464), + [anon_sym_o_PLUSe_GT] = ACTIONS(1464), + [anon_sym_e_PLUSo_GT] = ACTIONS(1464), + [anon_sym_err_GT_GT] = ACTIONS(1466), + [anon_sym_out_GT_GT] = ACTIONS(1466), + [anon_sym_e_GT_GT] = ACTIONS(1466), + [anon_sym_o_GT_GT] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1466), + [anon_sym_POUND] = ACTIONS(3), + }, + [382] = { [sym_comment] = STATE(382), - [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(1596), - [anon_sym_BANG] = ACTIONS(1598), - [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(383)] = { - [sym_comment] = STATE(383), - [anon_sym_EQ] = ACTIONS(1600), - [anon_sym_PLUS_EQ] = ACTIONS(1600), - [anon_sym_DASH_EQ] = ACTIONS(1600), - [anon_sym_STAR_EQ] = ACTIONS(1600), - [anon_sym_SLASH_EQ] = ACTIONS(1600), - [anon_sym_PLUS_PLUS_EQ] = 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_RBRACK] = ACTIONS(1600), - [anon_sym_GT2] = ACTIONS(1600), - [anon_sym_DASH2] = ACTIONS(1600), - [anon_sym_RBRACE] = ACTIONS(1600), - [anon_sym_DOT_DOT] = ACTIONS(1600), - [anon_sym_STAR2] = ACTIONS(1600), - [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(1600), - [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_STAR_STAR2] = ACTIONS(1600), - [anon_sym_PLUS_PLUS2] = ACTIONS(1600), - [anon_sym_SLASH2] = ACTIONS(1600), - [anon_sym_mod2] = ACTIONS(1600), - [anon_sym_SLASH_SLASH2] = ACTIONS(1600), - [anon_sym_PLUS2] = ACTIONS(1600), - [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_DOT2] = ACTIONS(1600), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1602), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1602), - [sym__entry_separator] = ACTIONS(1602), - [anon_sym_COLON2] = ACTIONS(1600), - [anon_sym_err_GT] = ACTIONS(1600), - [anon_sym_out_GT] = ACTIONS(1600), - [anon_sym_e_GT] = ACTIONS(1600), - [anon_sym_o_GT] = ACTIONS(1600), - [anon_sym_err_PLUSout_GT] = ACTIONS(1600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1600), - [anon_sym_o_PLUSe_GT] = ACTIONS(1600), - [anon_sym_e_PLUSo_GT] = ACTIONS(1600), - [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_EQ] = ACTIONS(1596), + [anon_sym_PLUS_EQ] = ACTIONS(1596), + [anon_sym_DASH_EQ] = ACTIONS(1596), + [anon_sym_STAR_EQ] = ACTIONS(1596), + [anon_sym_SLASH_EQ] = ACTIONS(1596), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1596), + [anon_sym_in] = ACTIONS(1596), + [sym__newline] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1596), + [anon_sym_err_GT_PIPE] = ACTIONS(1596), + [anon_sym_out_GT_PIPE] = ACTIONS(1596), + [anon_sym_e_GT_PIPE] = ACTIONS(1596), + [anon_sym_o_GT_PIPE] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), + [anon_sym_RBRACK] = ACTIONS(1596), + [anon_sym_GT2] = ACTIONS(1596), + [anon_sym_DASH2] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1596), + [anon_sym_STAR2] = ACTIONS(1596), + [anon_sym_and2] = ACTIONS(1596), + [anon_sym_xor2] = ACTIONS(1596), + [anon_sym_or2] = ACTIONS(1596), + [anon_sym_not_DASHin2] = ACTIONS(1596), + [anon_sym_has2] = ACTIONS(1596), + [anon_sym_not_DASHhas2] = ACTIONS(1596), + [anon_sym_starts_DASHwith2] = ACTIONS(1596), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), + [anon_sym_ends_DASHwith2] = ACTIONS(1596), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), + [anon_sym_EQ_EQ2] = ACTIONS(1596), + [anon_sym_BANG_EQ2] = ACTIONS(1596), + [anon_sym_LT2] = ACTIONS(1596), + [anon_sym_LT_EQ2] = ACTIONS(1596), + [anon_sym_GT_EQ2] = ACTIONS(1596), + [anon_sym_EQ_TILDE2] = ACTIONS(1596), + [anon_sym_BANG_TILDE2] = ACTIONS(1596), + [anon_sym_like2] = ACTIONS(1596), + [anon_sym_not_DASHlike2] = ACTIONS(1596), + [anon_sym_STAR_STAR2] = ACTIONS(1596), + [anon_sym_PLUS_PLUS2] = ACTIONS(1596), + [anon_sym_SLASH2] = ACTIONS(1596), + [anon_sym_mod2] = ACTIONS(1596), + [anon_sym_SLASH_SLASH2] = ACTIONS(1596), + [anon_sym_PLUS2] = ACTIONS(1596), + [anon_sym_bit_DASHshl2] = ACTIONS(1596), + [anon_sym_bit_DASHshr2] = ACTIONS(1596), + [anon_sym_bit_DASHand2] = ACTIONS(1596), + [anon_sym_bit_DASHxor2] = ACTIONS(1596), + [anon_sym_bit_DASHor2] = ACTIONS(1596), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [sym__entry_separator] = ACTIONS(1598), + [anon_sym_COLON2] = ACTIONS(1596), + [anon_sym_err_GT] = ACTIONS(1596), + [anon_sym_out_GT] = ACTIONS(1596), + [anon_sym_e_GT] = ACTIONS(1596), + [anon_sym_o_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT] = ACTIONS(1596), + [anon_sym_err_GT_GT] = ACTIONS(1596), + [anon_sym_out_GT_GT] = ACTIONS(1596), + [anon_sym_e_GT_GT] = ACTIONS(1596), + [anon_sym_o_GT_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(384)] = { + [383] = { + [sym_comment] = STATE(383), + [anon_sym_EQ] = ACTIONS(1464), + [anon_sym_PLUS_EQ] = ACTIONS(1466), + [anon_sym_DASH_EQ] = ACTIONS(1466), + [anon_sym_STAR_EQ] = ACTIONS(1466), + [anon_sym_SLASH_EQ] = ACTIONS(1466), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1466), + [anon_sym_in] = ACTIONS(1466), + [sym__newline] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_err_GT_PIPE] = ACTIONS(1466), + [anon_sym_out_GT_PIPE] = ACTIONS(1466), + [anon_sym_e_GT_PIPE] = ACTIONS(1466), + [anon_sym_o_GT_PIPE] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1466), + [anon_sym_RPAREN] = ACTIONS(1466), + [anon_sym_GT2] = ACTIONS(1464), + [anon_sym_DASH2] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_STAR2] = ACTIONS(1464), + [anon_sym_and2] = ACTIONS(1466), + [anon_sym_xor2] = ACTIONS(1466), + [anon_sym_or2] = ACTIONS(1466), + [anon_sym_not_DASHin2] = ACTIONS(1466), + [anon_sym_has2] = ACTIONS(1466), + [anon_sym_not_DASHhas2] = ACTIONS(1466), + [anon_sym_starts_DASHwith2] = ACTIONS(1466), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1466), + [anon_sym_ends_DASHwith2] = ACTIONS(1466), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1466), + [anon_sym_EQ_EQ2] = ACTIONS(1466), + [anon_sym_BANG_EQ2] = ACTIONS(1466), + [anon_sym_LT2] = ACTIONS(1464), + [anon_sym_LT_EQ2] = ACTIONS(1466), + [anon_sym_GT_EQ2] = ACTIONS(1466), + [anon_sym_EQ_TILDE2] = ACTIONS(1466), + [anon_sym_BANG_TILDE2] = ACTIONS(1466), + [anon_sym_like2] = ACTIONS(1466), + [anon_sym_not_DASHlike2] = ACTIONS(1466), + [anon_sym_STAR_STAR2] = ACTIONS(1466), + [anon_sym_PLUS_PLUS2] = ACTIONS(1464), + [anon_sym_SLASH2] = ACTIONS(1464), + [anon_sym_mod2] = ACTIONS(1466), + [anon_sym_SLASH_SLASH2] = ACTIONS(1466), + [anon_sym_PLUS2] = ACTIONS(1464), + [anon_sym_bit_DASHshl2] = ACTIONS(1466), + [anon_sym_bit_DASHshr2] = ACTIONS(1466), + [anon_sym_bit_DASHand2] = ACTIONS(1466), + [anon_sym_bit_DASHxor2] = ACTIONS(1466), + [anon_sym_bit_DASHor2] = ACTIONS(1466), + [anon_sym_DOT_DOT2] = ACTIONS(1464), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1466), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1466), + [anon_sym_COLON2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1600), + [anon_sym_DOT2] = ACTIONS(1464), + [anon_sym_err_GT] = ACTIONS(1464), + [anon_sym_out_GT] = ACTIONS(1464), + [anon_sym_e_GT] = ACTIONS(1464), + [anon_sym_o_GT] = ACTIONS(1464), + [anon_sym_err_PLUSout_GT] = ACTIONS(1464), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1464), + [anon_sym_o_PLUSe_GT] = ACTIONS(1464), + [anon_sym_e_PLUSo_GT] = ACTIONS(1464), + [anon_sym_err_GT_GT] = ACTIONS(1466), + [anon_sym_out_GT_GT] = ACTIONS(1466), + [anon_sym_e_GT_GT] = ACTIONS(1466), + [anon_sym_o_GT_GT] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1466), + [anon_sym_POUND] = ACTIONS(3), + }, + [384] = { + [sym__match_pattern_expression] = STATE(4649), + [sym__match_pattern_value] = STATE(4894), + [sym__match_pattern_list] = STATE(4906), + [sym__match_pattern_record] = STATE(4932), + [sym_expr_parenthesized] = STATE(4182), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4679), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4892), + [sym_val_bool] = STATE(4219), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(4180), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4892), + [sym__val_number_decimal] = STATE(3655), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4892), + [sym_val_filesize] = STATE(4892), + [sym_val_binary] = STATE(4892), + [sym_val_string] = STATE(4892), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4868), + [sym__spread_list] = STATE(4958), + [sym_val_entry] = STATE(4681), + [sym_val_record] = STATE(4868), + [sym_val_table] = STATE(4892), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4131), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), [sym_comment] = STATE(384), - [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), + [aux_sym__types_body_repeat1] = STATE(2212), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1437), + [aux_sym_list_body_repeat1] = STATE(552), + [anon_sym_true] = ACTIONS(1406), + [anon_sym_false] = ACTIONS(1406), + [anon_sym_null] = ACTIONS(1408), + [aux_sym_cmd_identifier_token3] = ACTIONS(1410), + [aux_sym_cmd_identifier_token4] = ACTIONS(1410), + [aux_sym_cmd_identifier_token5] = ACTIONS(1410), + [sym__newline] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_DOT_DOT] = ACTIONS(1606), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1428), + [anon_sym_DOT_DOT_LT] = ACTIONS(1428), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1430), + [aux_sym__val_number_decimal_token2] = ACTIONS(1432), + [aux_sym__val_number_decimal_token3] = ACTIONS(1434), + [aux_sym__val_number_decimal_token4] = ACTIONS(1434), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [385] = { + [sym_comment] = STATE(385), + [aux_sym__types_body_repeat2] = STATE(1491), + [anon_sym_EQ] = ACTIONS(1608), + [anon_sym_PLUS_EQ] = ACTIONS(1608), + [anon_sym_DASH_EQ] = ACTIONS(1608), + [anon_sym_STAR_EQ] = ACTIONS(1608), + [anon_sym_SLASH_EQ] = ACTIONS(1608), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1608), + [anon_sym_in] = ACTIONS(1610), + [sym__newline] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1610), + [anon_sym_err_GT_PIPE] = ACTIONS(1610), + [anon_sym_out_GT_PIPE] = ACTIONS(1610), + [anon_sym_e_GT_PIPE] = ACTIONS(1610), + [anon_sym_o_GT_PIPE] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1610), + [anon_sym_GT2] = ACTIONS(1610), + [anon_sym_DASH2] = ACTIONS(1610), + [anon_sym_RBRACE] = ACTIONS(1612), + [anon_sym_STAR2] = ACTIONS(1610), + [anon_sym_and2] = ACTIONS(1610), + [anon_sym_xor2] = ACTIONS(1610), + [anon_sym_or2] = ACTIONS(1610), + [anon_sym_not_DASHin2] = ACTIONS(1610), + [anon_sym_has2] = ACTIONS(1610), + [anon_sym_not_DASHhas2] = ACTIONS(1610), + [anon_sym_starts_DASHwith2] = ACTIONS(1610), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1610), + [anon_sym_ends_DASHwith2] = ACTIONS(1610), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1610), + [anon_sym_EQ_EQ2] = ACTIONS(1610), + [anon_sym_BANG_EQ2] = ACTIONS(1610), + [anon_sym_LT2] = ACTIONS(1610), + [anon_sym_LT_EQ2] = ACTIONS(1610), + [anon_sym_GT_EQ2] = ACTIONS(1610), + [anon_sym_EQ_TILDE2] = ACTIONS(1610), + [anon_sym_BANG_TILDE2] = ACTIONS(1610), + [anon_sym_like2] = ACTIONS(1610), + [anon_sym_not_DASHlike2] = ACTIONS(1610), + [anon_sym_STAR_STAR2] = ACTIONS(1610), + [anon_sym_PLUS_PLUS2] = ACTIONS(1610), + [anon_sym_SLASH2] = ACTIONS(1610), + [anon_sym_mod2] = ACTIONS(1610), + [anon_sym_SLASH_SLASH2] = ACTIONS(1610), + [anon_sym_PLUS2] = ACTIONS(1610), + [anon_sym_bit_DASHshl2] = ACTIONS(1610), + [anon_sym_bit_DASHshr2] = ACTIONS(1610), + [anon_sym_bit_DASHand2] = ACTIONS(1610), + [anon_sym_bit_DASHxor2] = ACTIONS(1610), + [anon_sym_bit_DASHor2] = ACTIONS(1610), + [anon_sym_DOT_DOT2] = ACTIONS(1614), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1616), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1616), + [sym__entry_separator] = ACTIONS(1618), + [anon_sym_COLON2] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1610), + [anon_sym_out_GT] = ACTIONS(1610), + [anon_sym_e_GT] = ACTIONS(1610), + [anon_sym_o_GT] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT] = ACTIONS(1610), + [anon_sym_err_GT_GT] = ACTIONS(1610), + [anon_sym_out_GT_GT] = ACTIONS(1610), + [anon_sym_e_GT_GT] = ACTIONS(1610), + [anon_sym_o_GT_GT] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1610), [anon_sym_POUND] = ACTIONS(105), }, - [STATE(385)] = { - [sym_comment] = STATE(385), - [anon_sym_EQ] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(1557), - [anon_sym_DASH_EQ] = ACTIONS(1557), - [anon_sym_STAR_EQ] = ACTIONS(1557), - [anon_sym_SLASH_EQ] = ACTIONS(1557), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1557), - [anon_sym_in] = ACTIONS(1557), - [sym__newline] = ACTIONS(1557), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_PIPE] = ACTIONS(1557), - [anon_sym_err_GT_PIPE] = ACTIONS(1557), - [anon_sym_out_GT_PIPE] = ACTIONS(1557), - [anon_sym_e_GT_PIPE] = ACTIONS(1557), - [anon_sym_o_GT_PIPE] = ACTIONS(1557), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), - [anon_sym_RPAREN] = ACTIONS(1557), - [anon_sym_GT2] = ACTIONS(1555), - [anon_sym_DASH2] = ACTIONS(1555), - [anon_sym_RBRACE] = ACTIONS(1557), - [anon_sym_STAR2] = ACTIONS(1555), - [anon_sym_and2] = ACTIONS(1557), - [anon_sym_xor2] = ACTIONS(1557), - [anon_sym_or2] = ACTIONS(1557), - [anon_sym_not_DASHin2] = ACTIONS(1557), - [anon_sym_has2] = ACTIONS(1557), - [anon_sym_not_DASHhas2] = ACTIONS(1557), - [anon_sym_starts_DASHwith2] = ACTIONS(1557), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1557), - [anon_sym_ends_DASHwith2] = ACTIONS(1557), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1557), - [anon_sym_EQ_EQ2] = ACTIONS(1557), - [anon_sym_BANG_EQ2] = ACTIONS(1557), - [anon_sym_LT2] = ACTIONS(1555), - [anon_sym_LT_EQ2] = ACTIONS(1557), - [anon_sym_GT_EQ2] = ACTIONS(1557), - [anon_sym_EQ_TILDE2] = ACTIONS(1557), - [anon_sym_BANG_TILDE2] = ACTIONS(1557), - [anon_sym_like2] = ACTIONS(1557), - [anon_sym_not_DASHlike2] = ACTIONS(1557), - [anon_sym_STAR_STAR2] = ACTIONS(1557), - [anon_sym_PLUS_PLUS2] = ACTIONS(1555), - [anon_sym_SLASH2] = ACTIONS(1555), - [anon_sym_mod2] = ACTIONS(1557), - [anon_sym_SLASH_SLASH2] = ACTIONS(1557), - [anon_sym_PLUS2] = ACTIONS(1555), - [anon_sym_bit_DASHshl2] = ACTIONS(1557), - [anon_sym_bit_DASHshr2] = ACTIONS(1557), - [anon_sym_bit_DASHand2] = ACTIONS(1557), - [anon_sym_bit_DASHxor2] = ACTIONS(1557), - [anon_sym_bit_DASHor2] = ACTIONS(1557), - [anon_sym_DOT_DOT2] = ACTIONS(1555), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1557), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1557), - [anon_sym_COLON2] = ACTIONS(1557), - [anon_sym_DOT2] = ACTIONS(1555), - [anon_sym_err_GT] = ACTIONS(1555), - [anon_sym_out_GT] = ACTIONS(1555), - [anon_sym_e_GT] = ACTIONS(1555), - [anon_sym_o_GT] = ACTIONS(1555), - [anon_sym_err_PLUSout_GT] = ACTIONS(1555), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1555), - [anon_sym_o_PLUSe_GT] = ACTIONS(1555), - [anon_sym_e_PLUSo_GT] = ACTIONS(1555), - [anon_sym_err_GT_GT] = ACTIONS(1557), - [anon_sym_out_GT_GT] = ACTIONS(1557), - [anon_sym_e_GT_GT] = ACTIONS(1557), - [anon_sym_o_GT_GT] = ACTIONS(1557), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(386)] = { + [386] = { + [sym__expr_parenthesized_immediate] = STATE(725), + [sym__immediate_decimal] = STATE(551), + [sym_val_variable] = STATE(725), [sym_comment] = STATE(386), - [ts_builtin_sym_end] = ACTIONS(1529), - [anon_sym_EQ] = ACTIONS(1527), - [anon_sym_PLUS_EQ] = ACTIONS(1529), - [anon_sym_DASH_EQ] = ACTIONS(1529), - [anon_sym_STAR_EQ] = ACTIONS(1529), - [anon_sym_SLASH_EQ] = ACTIONS(1529), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1529), - [anon_sym_in] = ACTIONS(1529), - [sym__newline] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1529), - [anon_sym_PIPE] = ACTIONS(1529), - [anon_sym_err_GT_PIPE] = ACTIONS(1529), - [anon_sym_out_GT_PIPE] = ACTIONS(1529), - [anon_sym_e_GT_PIPE] = ACTIONS(1529), - [anon_sym_o_GT_PIPE] = ACTIONS(1529), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1529), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1529), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1529), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1529), - [anon_sym_GT2] = ACTIONS(1527), - [anon_sym_DASH2] = ACTIONS(1527), - [anon_sym_STAR2] = ACTIONS(1527), - [anon_sym_and2] = ACTIONS(1529), - [anon_sym_xor2] = ACTIONS(1529), - [anon_sym_or2] = ACTIONS(1529), - [anon_sym_not_DASHin2] = ACTIONS(1529), - [anon_sym_has2] = ACTIONS(1529), - [anon_sym_not_DASHhas2] = ACTIONS(1529), - [anon_sym_starts_DASHwith2] = ACTIONS(1529), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1529), - [anon_sym_ends_DASHwith2] = ACTIONS(1529), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1529), - [anon_sym_EQ_EQ2] = ACTIONS(1529), - [anon_sym_BANG_EQ2] = ACTIONS(1529), - [anon_sym_LT2] = ACTIONS(1527), - [anon_sym_LT_EQ2] = ACTIONS(1529), - [anon_sym_GT_EQ2] = ACTIONS(1529), - [anon_sym_EQ_TILDE2] = ACTIONS(1529), - [anon_sym_BANG_TILDE2] = ACTIONS(1529), - [anon_sym_like2] = ACTIONS(1529), - [anon_sym_not_DASHlike2] = ACTIONS(1529), - [anon_sym_STAR_STAR2] = ACTIONS(1529), - [anon_sym_PLUS_PLUS2] = ACTIONS(1527), - [anon_sym_SLASH2] = ACTIONS(1527), - [anon_sym_mod2] = ACTIONS(1529), - [anon_sym_SLASH_SLASH2] = ACTIONS(1529), - [anon_sym_PLUS2] = ACTIONS(1527), - [anon_sym_bit_DASHshl2] = ACTIONS(1529), - [anon_sym_bit_DASHshr2] = ACTIONS(1529), - [anon_sym_bit_DASHand2] = ACTIONS(1529), - [anon_sym_bit_DASHxor2] = ACTIONS(1529), - [anon_sym_bit_DASHor2] = ACTIONS(1529), - [anon_sym_DOT_DOT2] = ACTIONS(1527), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1529), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1529), - [anon_sym_QMARK2] = ACTIONS(1529), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_DOT2] = ACTIONS(1527), - [anon_sym_err_GT] = ACTIONS(1527), - [anon_sym_out_GT] = ACTIONS(1527), - [anon_sym_e_GT] = ACTIONS(1527), - [anon_sym_o_GT] = ACTIONS(1527), - [anon_sym_err_PLUSout_GT] = ACTIONS(1527), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1527), - [anon_sym_o_PLUSe_GT] = ACTIONS(1527), - [anon_sym_e_PLUSo_GT] = ACTIONS(1527), - [anon_sym_err_GT_GT] = ACTIONS(1529), - [anon_sym_out_GT_GT] = ACTIONS(1529), - [anon_sym_e_GT_GT] = ACTIONS(1529), - [anon_sym_o_GT_GT] = ACTIONS(1529), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1529), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1529), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1529), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1529), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(387)] = { + [anon_sym_in] = ACTIONS(1622), + [sym__newline] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_PIPE] = ACTIONS(1622), + [anon_sym_err_GT_PIPE] = ACTIONS(1622), + [anon_sym_out_GT_PIPE] = ACTIONS(1622), + [anon_sym_e_GT_PIPE] = ACTIONS(1622), + [anon_sym_o_GT_PIPE] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1622), + [anon_sym_RPAREN] = ACTIONS(1622), + [anon_sym_DOLLAR] = ACTIONS(1624), + [anon_sym_GT2] = ACTIONS(1626), + [anon_sym_DASH2] = ACTIONS(1626), + [anon_sym_RBRACE] = ACTIONS(1622), + [anon_sym_STAR2] = ACTIONS(1626), + [anon_sym_and2] = ACTIONS(1622), + [anon_sym_xor2] = ACTIONS(1622), + [anon_sym_or2] = ACTIONS(1622), + [anon_sym_not_DASHin2] = ACTIONS(1622), + [anon_sym_has2] = ACTIONS(1622), + [anon_sym_not_DASHhas2] = ACTIONS(1622), + [anon_sym_starts_DASHwith2] = ACTIONS(1622), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1622), + [anon_sym_ends_DASHwith2] = ACTIONS(1622), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1622), + [anon_sym_EQ_EQ2] = ACTIONS(1622), + [anon_sym_BANG_EQ2] = ACTIONS(1622), + [anon_sym_LT2] = ACTIONS(1626), + [anon_sym_LT_EQ2] = ACTIONS(1622), + [anon_sym_GT_EQ2] = ACTIONS(1622), + [anon_sym_EQ_TILDE2] = ACTIONS(1622), + [anon_sym_BANG_TILDE2] = ACTIONS(1622), + [anon_sym_like2] = ACTIONS(1622), + [anon_sym_not_DASHlike2] = ACTIONS(1622), + [anon_sym_LPAREN2] = ACTIONS(1628), + [anon_sym_STAR_STAR2] = ACTIONS(1622), + [anon_sym_PLUS_PLUS2] = ACTIONS(1622), + [anon_sym_SLASH2] = ACTIONS(1626), + [anon_sym_mod2] = ACTIONS(1622), + [anon_sym_SLASH_SLASH2] = ACTIONS(1622), + [anon_sym_PLUS2] = ACTIONS(1626), + [anon_sym_bit_DASHshl2] = ACTIONS(1622), + [anon_sym_bit_DASHshr2] = ACTIONS(1622), + [anon_sym_bit_DASHand2] = ACTIONS(1622), + [anon_sym_bit_DASHxor2] = ACTIONS(1622), + [anon_sym_bit_DASHor2] = ACTIONS(1622), + [anon_sym_DOT] = ACTIONS(1630), + [aux_sym__immediate_decimal_token1] = ACTIONS(1632), + [aux_sym__immediate_decimal_token2] = ACTIONS(1632), + [aux_sym__immediate_decimal_token3] = ACTIONS(1634), + [aux_sym__immediate_decimal_token4] = ACTIONS(1634), + [anon_sym_err_GT] = ACTIONS(1626), + [anon_sym_out_GT] = ACTIONS(1626), + [anon_sym_e_GT] = ACTIONS(1626), + [anon_sym_o_GT] = ACTIONS(1626), + [anon_sym_err_PLUSout_GT] = ACTIONS(1626), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1626), + [anon_sym_o_PLUSe_GT] = ACTIONS(1626), + [anon_sym_e_PLUSo_GT] = ACTIONS(1626), + [anon_sym_err_GT_GT] = ACTIONS(1622), + [anon_sym_out_GT_GT] = ACTIONS(1622), + [anon_sym_e_GT_GT] = ACTIONS(1622), + [anon_sym_o_GT_GT] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1622), + [sym__unquoted_pattern] = ACTIONS(1636), + [anon_sym_POUND] = ACTIONS(3), + }, + [387] = { + [sym__expr_parenthesized_immediate] = STATE(725), + [sym__immediate_decimal] = STATE(731), + [sym_val_variable] = STATE(725), [sym_comment] = STATE(387), - [anon_sym_EQ] = ACTIONS(1561), - [anon_sym_PLUS_EQ] = ACTIONS(1563), - [anon_sym_DASH_EQ] = ACTIONS(1563), - [anon_sym_STAR_EQ] = ACTIONS(1563), - [anon_sym_SLASH_EQ] = ACTIONS(1563), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1563), - [anon_sym_in] = ACTIONS(1563), - [sym__newline] = ACTIONS(1563), - [anon_sym_SEMI] = ACTIONS(1563), - [anon_sym_PIPE] = ACTIONS(1563), - [anon_sym_err_GT_PIPE] = ACTIONS(1563), - [anon_sym_out_GT_PIPE] = ACTIONS(1563), - [anon_sym_e_GT_PIPE] = ACTIONS(1563), - [anon_sym_o_GT_PIPE] = ACTIONS(1563), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1563), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1563), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1563), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1563), - [anon_sym_RPAREN] = ACTIONS(1563), - [anon_sym_GT2] = ACTIONS(1561), - [anon_sym_DASH2] = ACTIONS(1561), - [anon_sym_RBRACE] = ACTIONS(1563), - [anon_sym_STAR2] = ACTIONS(1561), - [anon_sym_and2] = ACTIONS(1563), - [anon_sym_xor2] = ACTIONS(1563), - [anon_sym_or2] = ACTIONS(1563), - [anon_sym_not_DASHin2] = ACTIONS(1563), - [anon_sym_has2] = ACTIONS(1563), - [anon_sym_not_DASHhas2] = ACTIONS(1563), - [anon_sym_starts_DASHwith2] = ACTIONS(1563), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1563), - [anon_sym_ends_DASHwith2] = ACTIONS(1563), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1563), - [anon_sym_EQ_EQ2] = ACTIONS(1563), - [anon_sym_BANG_EQ2] = ACTIONS(1563), - [anon_sym_LT2] = ACTIONS(1561), - [anon_sym_LT_EQ2] = ACTIONS(1563), - [anon_sym_GT_EQ2] = ACTIONS(1563), - [anon_sym_EQ_TILDE2] = ACTIONS(1563), - [anon_sym_BANG_TILDE2] = ACTIONS(1563), - [anon_sym_like2] = ACTIONS(1563), - [anon_sym_not_DASHlike2] = ACTIONS(1563), - [anon_sym_STAR_STAR2] = ACTIONS(1563), - [anon_sym_PLUS_PLUS2] = ACTIONS(1561), - [anon_sym_SLASH2] = ACTIONS(1561), - [anon_sym_mod2] = ACTIONS(1563), - [anon_sym_SLASH_SLASH2] = ACTIONS(1563), - [anon_sym_PLUS2] = ACTIONS(1561), - [anon_sym_bit_DASHshl2] = ACTIONS(1563), - [anon_sym_bit_DASHshr2] = ACTIONS(1563), - [anon_sym_bit_DASHand2] = ACTIONS(1563), - [anon_sym_bit_DASHxor2] = ACTIONS(1563), - [anon_sym_bit_DASHor2] = ACTIONS(1563), - [anon_sym_DOT_DOT2] = ACTIONS(1561), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1563), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1563), - [anon_sym_COLON2] = ACTIONS(1563), - [anon_sym_DOT2] = ACTIONS(1561), - [anon_sym_err_GT] = ACTIONS(1561), - [anon_sym_out_GT] = ACTIONS(1561), - [anon_sym_e_GT] = ACTIONS(1561), - [anon_sym_o_GT] = ACTIONS(1561), - [anon_sym_err_PLUSout_GT] = ACTIONS(1561), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1561), - [anon_sym_o_PLUSe_GT] = ACTIONS(1561), - [anon_sym_e_PLUSo_GT] = ACTIONS(1561), - [anon_sym_err_GT_GT] = ACTIONS(1563), - [anon_sym_out_GT_GT] = ACTIONS(1563), - [anon_sym_e_GT_GT] = ACTIONS(1563), - [anon_sym_o_GT_GT] = ACTIONS(1563), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1563), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1563), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1563), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1563), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(388)] = { + [anon_sym_in] = ACTIONS(1622), + [sym__newline] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_PIPE] = ACTIONS(1622), + [anon_sym_err_GT_PIPE] = ACTIONS(1622), + [anon_sym_out_GT_PIPE] = ACTIONS(1622), + [anon_sym_e_GT_PIPE] = ACTIONS(1622), + [anon_sym_o_GT_PIPE] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1622), + [anon_sym_RPAREN] = ACTIONS(1622), + [anon_sym_DOLLAR] = ACTIONS(1624), + [anon_sym_GT2] = ACTIONS(1626), + [anon_sym_DASH2] = ACTIONS(1626), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1622), + [anon_sym_STAR2] = ACTIONS(1626), + [anon_sym_and2] = ACTIONS(1622), + [anon_sym_xor2] = ACTIONS(1622), + [anon_sym_or2] = ACTIONS(1622), + [anon_sym_not_DASHin2] = ACTIONS(1622), + [anon_sym_has2] = ACTIONS(1622), + [anon_sym_not_DASHhas2] = ACTIONS(1622), + [anon_sym_starts_DASHwith2] = ACTIONS(1622), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1622), + [anon_sym_ends_DASHwith2] = ACTIONS(1622), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1622), + [anon_sym_EQ_EQ2] = ACTIONS(1622), + [anon_sym_BANG_EQ2] = ACTIONS(1622), + [anon_sym_LT2] = ACTIONS(1626), + [anon_sym_LT_EQ2] = ACTIONS(1622), + [anon_sym_GT_EQ2] = ACTIONS(1622), + [anon_sym_EQ_TILDE2] = ACTIONS(1622), + [anon_sym_BANG_TILDE2] = ACTIONS(1622), + [anon_sym_like2] = ACTIONS(1622), + [anon_sym_not_DASHlike2] = ACTIONS(1622), + [anon_sym_LPAREN2] = ACTIONS(1628), + [anon_sym_STAR_STAR2] = ACTIONS(1622), + [anon_sym_PLUS_PLUS2] = ACTIONS(1622), + [anon_sym_SLASH2] = ACTIONS(1626), + [anon_sym_mod2] = ACTIONS(1622), + [anon_sym_SLASH_SLASH2] = ACTIONS(1622), + [anon_sym_PLUS2] = ACTIONS(1626), + [anon_sym_bit_DASHshl2] = ACTIONS(1622), + [anon_sym_bit_DASHshr2] = ACTIONS(1622), + [anon_sym_bit_DASHand2] = ACTIONS(1622), + [anon_sym_bit_DASHxor2] = ACTIONS(1622), + [anon_sym_bit_DASHor2] = ACTIONS(1622), + [anon_sym_DOT] = ACTIONS(1638), + [aux_sym__immediate_decimal_token1] = ACTIONS(1632), + [aux_sym__immediate_decimal_token2] = ACTIONS(1632), + [aux_sym__immediate_decimal_token3] = ACTIONS(1634), + [aux_sym__immediate_decimal_token4] = ACTIONS(1634), + [anon_sym_err_GT] = ACTIONS(1626), + [anon_sym_out_GT] = ACTIONS(1626), + [anon_sym_e_GT] = ACTIONS(1626), + [anon_sym_o_GT] = ACTIONS(1626), + [anon_sym_err_PLUSout_GT] = ACTIONS(1626), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1626), + [anon_sym_o_PLUSe_GT] = ACTIONS(1626), + [anon_sym_e_PLUSo_GT] = ACTIONS(1626), + [anon_sym_err_GT_GT] = ACTIONS(1622), + [anon_sym_out_GT_GT] = ACTIONS(1622), + [anon_sym_e_GT_GT] = ACTIONS(1622), + [anon_sym_o_GT_GT] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1622), + [anon_sym_POUND] = ACTIONS(3), + }, + [388] = { [sym_comment] = STATE(388), - [ts_builtin_sym_end] = ACTIONS(1533), - [anon_sym_EQ] = ACTIONS(1531), - [anon_sym_PLUS_EQ] = ACTIONS(1533), - [anon_sym_DASH_EQ] = ACTIONS(1533), - [anon_sym_STAR_EQ] = ACTIONS(1533), - [anon_sym_SLASH_EQ] = ACTIONS(1533), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1533), - [anon_sym_in] = ACTIONS(1533), - [sym__newline] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1533), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_err_GT_PIPE] = ACTIONS(1533), - [anon_sym_out_GT_PIPE] = ACTIONS(1533), - [anon_sym_e_GT_PIPE] = ACTIONS(1533), - [anon_sym_o_GT_PIPE] = ACTIONS(1533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1533), - [anon_sym_GT2] = ACTIONS(1531), - [anon_sym_DASH2] = ACTIONS(1531), - [anon_sym_STAR2] = ACTIONS(1531), - [anon_sym_and2] = ACTIONS(1533), - [anon_sym_xor2] = ACTIONS(1533), - [anon_sym_or2] = ACTIONS(1533), - [anon_sym_not_DASHin2] = ACTIONS(1533), - [anon_sym_has2] = ACTIONS(1533), - [anon_sym_not_DASHhas2] = ACTIONS(1533), - [anon_sym_starts_DASHwith2] = ACTIONS(1533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1533), - [anon_sym_ends_DASHwith2] = ACTIONS(1533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1533), - [anon_sym_EQ_EQ2] = ACTIONS(1533), - [anon_sym_BANG_EQ2] = ACTIONS(1533), - [anon_sym_LT2] = ACTIONS(1531), - [anon_sym_LT_EQ2] = ACTIONS(1533), - [anon_sym_GT_EQ2] = ACTIONS(1533), - [anon_sym_EQ_TILDE2] = ACTIONS(1533), - [anon_sym_BANG_TILDE2] = ACTIONS(1533), - [anon_sym_like2] = ACTIONS(1533), - [anon_sym_not_DASHlike2] = ACTIONS(1533), - [anon_sym_STAR_STAR2] = ACTIONS(1533), - [anon_sym_PLUS_PLUS2] = ACTIONS(1531), - [anon_sym_SLASH2] = ACTIONS(1531), - [anon_sym_mod2] = ACTIONS(1533), - [anon_sym_SLASH_SLASH2] = ACTIONS(1533), - [anon_sym_PLUS2] = ACTIONS(1531), - [anon_sym_bit_DASHshl2] = ACTIONS(1533), - [anon_sym_bit_DASHshr2] = ACTIONS(1533), - [anon_sym_bit_DASHand2] = ACTIONS(1533), - [anon_sym_bit_DASHxor2] = ACTIONS(1533), - [anon_sym_bit_DASHor2] = ACTIONS(1533), - [anon_sym_DOT_DOT2] = ACTIONS(1531), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1533), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1533), - [anon_sym_QMARK2] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_DOT2] = ACTIONS(1531), - [anon_sym_err_GT] = ACTIONS(1531), - [anon_sym_out_GT] = ACTIONS(1531), - [anon_sym_e_GT] = ACTIONS(1531), - [anon_sym_o_GT] = ACTIONS(1531), - [anon_sym_err_PLUSout_GT] = ACTIONS(1531), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1531), - [anon_sym_o_PLUSe_GT] = ACTIONS(1531), - [anon_sym_e_PLUSo_GT] = ACTIONS(1531), - [anon_sym_err_GT_GT] = ACTIONS(1533), - [anon_sym_out_GT_GT] = ACTIONS(1533), - [anon_sym_e_GT_GT] = ACTIONS(1533), - [anon_sym_o_GT_GT] = ACTIONS(1533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1533), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(389)] = { - [sym_expr_parenthesized] = STATE(4216), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4990), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4854), - [sym_val_bool] = STATE(4482), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4196), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4854), - [sym__val_number_decimal] = STATE(3713), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4854), - [sym_val_filesize] = STATE(4854), - [sym_val_binary] = STATE(4854), - [sym_val_string] = STATE(4854), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4854), - [sym__spread_list] = STATE(5037), - [sym_list_body] = STATE(5518), - [sym_val_entry] = STATE(4735), - [sym_val_record] = STATE(4854), - [sym_val_table] = STATE(4854), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4529), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), + [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(1536), + [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), + }, + [389] = { + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4957), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4868), + [sym_val_bool] = STATE(4386), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(3992), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4868), + [sym__val_number_decimal] = STATE(3716), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4868), + [sym_val_filesize] = STATE(4868), + [sym_val_binary] = STATE(4868), + [sym_val_string] = STATE(4868), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4868), + [sym__spread_list] = STATE(4958), + [sym_list_body] = STATE(5138), + [sym_val_entry] = STATE(4903), + [sym_val_record] = STATE(4868), + [sym_val_table] = STATE(4868), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), [sym_comment] = STATE(389), - [aux_sym__types_body_repeat1] = STATE(484), - [aux_sym_parameter_repeat2] = STATE(4533), - [aux_sym_list_body_repeat1] = STATE(533), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [sym__newline] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_RBRACK] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1513), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4458), + [aux_sym_list_body_repeat1] = STATE(690), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [sym__newline] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_RBRACK] = ACTIONS(1644), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1510), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(390)] = { + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [390] = { + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4957), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4868), + [sym_val_bool] = STATE(4386), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(3992), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4868), + [sym__val_number_decimal] = STATE(3716), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4868), + [sym_val_filesize] = STATE(4868), + [sym_val_binary] = STATE(4868), + [sym_val_string] = STATE(4868), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4868), + [sym__spread_list] = STATE(4958), + [sym_list_body] = STATE(5157), + [sym_val_entry] = STATE(4903), + [sym_val_record] = STATE(4868), + [sym_val_table] = STATE(4868), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), [sym_comment] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(1537), - [anon_sym_EQ] = ACTIONS(1535), - [anon_sym_PLUS_EQ] = ACTIONS(1537), - [anon_sym_DASH_EQ] = ACTIONS(1537), - [anon_sym_STAR_EQ] = ACTIONS(1537), - [anon_sym_SLASH_EQ] = ACTIONS(1537), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1537), - [anon_sym_in] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1535), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1537), - [anon_sym_xor2] = ACTIONS(1537), - [anon_sym_or2] = ACTIONS(1537), - [anon_sym_not_DASHin2] = ACTIONS(1537), - [anon_sym_has2] = ACTIONS(1537), - [anon_sym_not_DASHhas2] = ACTIONS(1537), - [anon_sym_starts_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), - [anon_sym_ends_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), - [anon_sym_EQ_EQ2] = ACTIONS(1537), - [anon_sym_BANG_EQ2] = ACTIONS(1537), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1537), - [anon_sym_GT_EQ2] = ACTIONS(1537), - [anon_sym_EQ_TILDE2] = ACTIONS(1537), - [anon_sym_BANG_TILDE2] = ACTIONS(1537), - [anon_sym_like2] = ACTIONS(1537), - [anon_sym_not_DASHlike2] = ACTIONS(1537), - [anon_sym_STAR_STAR2] = ACTIONS(1537), - [anon_sym_PLUS_PLUS2] = ACTIONS(1535), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1537), - [anon_sym_SLASH_SLASH2] = ACTIONS(1537), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1537), - [anon_sym_bit_DASHshr2] = ACTIONS(1537), - [anon_sym_bit_DASHand2] = ACTIONS(1537), - [anon_sym_bit_DASHxor2] = ACTIONS(1537), - [anon_sym_bit_DASHor2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_QMARK2] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(391)] = { + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4458), + [aux_sym_list_body_repeat1] = STATE(690), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [sym__newline] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_RBRACK] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [391] = { + [sym__expr_parenthesized_immediate] = STATE(716), + [sym__immediate_decimal] = STATE(697), + [sym_val_variable] = STATE(716), [sym_comment] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(1488), - [anon_sym_EQ] = ACTIONS(1486), - [anon_sym_PLUS_EQ] = ACTIONS(1488), - [anon_sym_DASH_EQ] = ACTIONS(1488), - [anon_sym_STAR_EQ] = ACTIONS(1488), - [anon_sym_SLASH_EQ] = ACTIONS(1488), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1488), - [anon_sym_in] = ACTIONS(1488), - [sym__newline] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1488), - [anon_sym_PIPE] = ACTIONS(1488), - [anon_sym_err_GT_PIPE] = ACTIONS(1488), - [anon_sym_out_GT_PIPE] = ACTIONS(1488), - [anon_sym_e_GT_PIPE] = ACTIONS(1488), - [anon_sym_o_GT_PIPE] = ACTIONS(1488), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1488), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1488), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1488), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1488), - [anon_sym_GT2] = ACTIONS(1486), - [anon_sym_DASH2] = ACTIONS(1486), - [anon_sym_STAR2] = ACTIONS(1486), - [anon_sym_and2] = ACTIONS(1488), - [anon_sym_xor2] = ACTIONS(1488), - [anon_sym_or2] = ACTIONS(1488), - [anon_sym_not_DASHin2] = ACTIONS(1488), - [anon_sym_has2] = ACTIONS(1488), - [anon_sym_not_DASHhas2] = ACTIONS(1488), - [anon_sym_starts_DASHwith2] = ACTIONS(1488), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1488), - [anon_sym_ends_DASHwith2] = ACTIONS(1488), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1488), - [anon_sym_EQ_EQ2] = ACTIONS(1488), - [anon_sym_BANG_EQ2] = ACTIONS(1488), - [anon_sym_LT2] = ACTIONS(1486), - [anon_sym_LT_EQ2] = ACTIONS(1488), - [anon_sym_GT_EQ2] = ACTIONS(1488), - [anon_sym_EQ_TILDE2] = ACTIONS(1488), - [anon_sym_BANG_TILDE2] = ACTIONS(1488), - [anon_sym_like2] = ACTIONS(1488), - [anon_sym_not_DASHlike2] = ACTIONS(1488), - [anon_sym_STAR_STAR2] = ACTIONS(1488), - [anon_sym_PLUS_PLUS2] = ACTIONS(1486), - [anon_sym_SLASH2] = ACTIONS(1486), - [anon_sym_mod2] = ACTIONS(1488), - [anon_sym_SLASH_SLASH2] = ACTIONS(1488), - [anon_sym_PLUS2] = ACTIONS(1486), - [anon_sym_bit_DASHshl2] = ACTIONS(1488), - [anon_sym_bit_DASHshr2] = ACTIONS(1488), - [anon_sym_bit_DASHand2] = ACTIONS(1488), - [anon_sym_bit_DASHxor2] = ACTIONS(1488), - [anon_sym_bit_DASHor2] = ACTIONS(1488), - [anon_sym_DOT_DOT2] = ACTIONS(1486), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1488), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1488), - [anon_sym_QMARK2] = ACTIONS(1488), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_DOT2] = ACTIONS(1486), - [anon_sym_err_GT] = ACTIONS(1486), - [anon_sym_out_GT] = ACTIONS(1486), - [anon_sym_e_GT] = ACTIONS(1486), - [anon_sym_o_GT] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT] = ACTIONS(1486), - [anon_sym_err_GT_GT] = ACTIONS(1488), - [anon_sym_out_GT_GT] = ACTIONS(1488), - [anon_sym_e_GT_GT] = ACTIONS(1488), - [anon_sym_o_GT_GT] = ACTIONS(1488), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1488), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1488), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1488), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1488), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(392)] = { - [sym_expr_parenthesized] = STATE(4216), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4990), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4854), - [sym_val_bool] = STATE(4482), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4196), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4854), - [sym__val_number_decimal] = STATE(3713), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4854), - [sym_val_filesize] = STATE(4854), - [sym_val_binary] = STATE(4854), - [sym_val_string] = STATE(4854), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4854), - [sym__spread_list] = STATE(5037), - [sym_list_body] = STATE(5389), - [sym_val_entry] = STATE(4735), - [sym_val_record] = STATE(4854), - [sym_val_table] = STATE(4854), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4529), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), + [anon_sym_in] = ACTIONS(1648), + [sym__newline] = ACTIONS(1648), + [anon_sym_SEMI] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1648), + [anon_sym_err_GT_PIPE] = ACTIONS(1648), + [anon_sym_out_GT_PIPE] = ACTIONS(1648), + [anon_sym_e_GT_PIPE] = ACTIONS(1648), + [anon_sym_o_GT_PIPE] = ACTIONS(1648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1648), + [anon_sym_RPAREN] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1624), + [anon_sym_GT2] = ACTIONS(1650), + [anon_sym_DASH2] = ACTIONS(1650), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1648), + [anon_sym_STAR2] = ACTIONS(1650), + [anon_sym_and2] = ACTIONS(1648), + [anon_sym_xor2] = ACTIONS(1648), + [anon_sym_or2] = ACTIONS(1648), + [anon_sym_not_DASHin2] = ACTIONS(1648), + [anon_sym_has2] = ACTIONS(1648), + [anon_sym_not_DASHhas2] = ACTIONS(1648), + [anon_sym_starts_DASHwith2] = ACTIONS(1648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1648), + [anon_sym_ends_DASHwith2] = ACTIONS(1648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1648), + [anon_sym_EQ_EQ2] = ACTIONS(1648), + [anon_sym_BANG_EQ2] = ACTIONS(1648), + [anon_sym_LT2] = ACTIONS(1650), + [anon_sym_LT_EQ2] = ACTIONS(1648), + [anon_sym_GT_EQ2] = ACTIONS(1648), + [anon_sym_EQ_TILDE2] = ACTIONS(1648), + [anon_sym_BANG_TILDE2] = ACTIONS(1648), + [anon_sym_like2] = ACTIONS(1648), + [anon_sym_not_DASHlike2] = ACTIONS(1648), + [anon_sym_LPAREN2] = ACTIONS(1628), + [anon_sym_STAR_STAR2] = ACTIONS(1648), + [anon_sym_PLUS_PLUS2] = ACTIONS(1648), + [anon_sym_SLASH2] = ACTIONS(1650), + [anon_sym_mod2] = ACTIONS(1648), + [anon_sym_SLASH_SLASH2] = ACTIONS(1648), + [anon_sym_PLUS2] = ACTIONS(1650), + [anon_sym_bit_DASHshl2] = ACTIONS(1648), + [anon_sym_bit_DASHshr2] = ACTIONS(1648), + [anon_sym_bit_DASHand2] = ACTIONS(1648), + [anon_sym_bit_DASHxor2] = ACTIONS(1648), + [anon_sym_bit_DASHor2] = ACTIONS(1648), + [anon_sym_DOT] = ACTIONS(1652), + [aux_sym__immediate_decimal_token1] = ACTIONS(1632), + [aux_sym__immediate_decimal_token2] = ACTIONS(1632), + [aux_sym__immediate_decimal_token3] = ACTIONS(1634), + [aux_sym__immediate_decimal_token4] = ACTIONS(1634), + [anon_sym_err_GT] = ACTIONS(1650), + [anon_sym_out_GT] = ACTIONS(1650), + [anon_sym_e_GT] = ACTIONS(1650), + [anon_sym_o_GT] = ACTIONS(1650), + [anon_sym_err_PLUSout_GT] = ACTIONS(1650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1650), + [anon_sym_o_PLUSe_GT] = ACTIONS(1650), + [anon_sym_e_PLUSo_GT] = ACTIONS(1650), + [anon_sym_err_GT_GT] = ACTIONS(1648), + [anon_sym_out_GT_GT] = ACTIONS(1648), + [anon_sym_e_GT_GT] = ACTIONS(1648), + [anon_sym_o_GT_GT] = ACTIONS(1648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(3), + }, + [392] = { + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4957), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4868), + [sym_val_bool] = STATE(4386), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(3992), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4868), + [sym__val_number_decimal] = STATE(3716), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4868), + [sym_val_filesize] = STATE(4868), + [sym_val_binary] = STATE(4868), + [sym_val_string] = STATE(4868), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4868), + [sym__spread_list] = STATE(4958), + [sym_list_body] = STATE(5355), + [sym_val_entry] = STATE(4903), + [sym_val_record] = STATE(4868), + [sym_val_table] = STATE(4868), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), [sym_comment] = STATE(392), - [aux_sym__types_body_repeat1] = STATE(484), - [aux_sym_parameter_repeat2] = STATE(4533), - [aux_sym_list_body_repeat1] = STATE(533), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [sym__newline] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_RBRACK] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1513), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4458), + [aux_sym_list_body_repeat1] = STATE(690), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [sym__newline] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_RBRACK] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1510), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(393)] = { + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [393] = { [sym_comment] = STATE(393), - [ts_builtin_sym_end] = ACTIONS(1543), - [anon_sym_EQ] = ACTIONS(1541), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1543), - [anon_sym_in] = ACTIONS(1543), - [sym__newline] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_PIPE] = ACTIONS(1543), - [anon_sym_err_GT_PIPE] = ACTIONS(1543), - [anon_sym_out_GT_PIPE] = ACTIONS(1543), - [anon_sym_e_GT_PIPE] = ACTIONS(1543), - [anon_sym_o_GT_PIPE] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1543), - [anon_sym_GT2] = ACTIONS(1541), - [anon_sym_DASH2] = ACTIONS(1541), - [anon_sym_STAR2] = ACTIONS(1541), - [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(1541), - [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(1541), - [anon_sym_SLASH2] = ACTIONS(1541), - [anon_sym_mod2] = ACTIONS(1543), - [anon_sym_SLASH_SLASH2] = ACTIONS(1543), - [anon_sym_PLUS2] = ACTIONS(1541), - [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(1541), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1543), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1543), - [anon_sym_QMARK2] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_DOT2] = ACTIONS(1541), - [anon_sym_err_GT] = ACTIONS(1541), - [anon_sym_out_GT] = ACTIONS(1541), - [anon_sym_e_GT] = ACTIONS(1541), - [anon_sym_o_GT] = ACTIONS(1541), - [anon_sym_err_PLUSout_GT] = ACTIONS(1541), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1541), - [anon_sym_o_PLUSe_GT] = ACTIONS(1541), - [anon_sym_e_PLUSo_GT] = ACTIONS(1541), - [anon_sym_err_GT_GT] = ACTIONS(1543), - [anon_sym_out_GT_GT] = ACTIONS(1543), - [anon_sym_e_GT_GT] = ACTIONS(1543), - [anon_sym_o_GT_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1543), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(394)] = { + [anon_sym_EQ] = ACTIONS(1584), + [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(1586), + [sym__newline] = ACTIONS(1586), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_PIPE] = ACTIONS(1586), + [anon_sym_err_GT_PIPE] = ACTIONS(1586), + [anon_sym_out_GT_PIPE] = ACTIONS(1586), + [anon_sym_e_GT_PIPE] = ACTIONS(1586), + [anon_sym_o_GT_PIPE] = ACTIONS(1586), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1586), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1586), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1586), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1586), + [anon_sym_RPAREN] = ACTIONS(1586), + [anon_sym_GT2] = ACTIONS(1584), + [anon_sym_DASH2] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_STAR2] = ACTIONS(1584), + [anon_sym_and2] = ACTIONS(1586), + [anon_sym_xor2] = ACTIONS(1586), + [anon_sym_or2] = ACTIONS(1586), + [anon_sym_not_DASHin2] = ACTIONS(1586), + [anon_sym_has2] = ACTIONS(1586), + [anon_sym_not_DASHhas2] = ACTIONS(1586), + [anon_sym_starts_DASHwith2] = ACTIONS(1586), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1586), + [anon_sym_ends_DASHwith2] = ACTIONS(1586), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1586), + [anon_sym_EQ_EQ2] = ACTIONS(1586), + [anon_sym_BANG_EQ2] = ACTIONS(1586), + [anon_sym_LT2] = ACTIONS(1584), + [anon_sym_LT_EQ2] = ACTIONS(1586), + [anon_sym_GT_EQ2] = ACTIONS(1586), + [anon_sym_EQ_TILDE2] = ACTIONS(1586), + [anon_sym_BANG_TILDE2] = ACTIONS(1586), + [anon_sym_like2] = ACTIONS(1586), + [anon_sym_not_DASHlike2] = ACTIONS(1586), + [anon_sym_STAR_STAR2] = ACTIONS(1586), + [anon_sym_PLUS_PLUS2] = ACTIONS(1584), + [anon_sym_SLASH2] = ACTIONS(1584), + [anon_sym_mod2] = ACTIONS(1586), + [anon_sym_SLASH_SLASH2] = ACTIONS(1586), + [anon_sym_PLUS2] = ACTIONS(1584), + [anon_sym_bit_DASHshl2] = ACTIONS(1586), + [anon_sym_bit_DASHshr2] = ACTIONS(1586), + [anon_sym_bit_DASHand2] = ACTIONS(1586), + [anon_sym_bit_DASHxor2] = ACTIONS(1586), + [anon_sym_bit_DASHor2] = ACTIONS(1586), + [anon_sym_DOT_DOT2] = ACTIONS(1584), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1586), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1586), + [anon_sym_COLON2] = ACTIONS(1586), + [anon_sym_DOT2] = ACTIONS(1584), + [anon_sym_err_GT] = ACTIONS(1584), + [anon_sym_out_GT] = ACTIONS(1584), + [anon_sym_e_GT] = ACTIONS(1584), + [anon_sym_o_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT] = ACTIONS(1584), + [anon_sym_err_GT_GT] = ACTIONS(1586), + [anon_sym_out_GT_GT] = ACTIONS(1586), + [anon_sym_e_GT_GT] = ACTIONS(1586), + [anon_sym_o_GT_GT] = ACTIONS(1586), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1586), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1586), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1586), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(3), + }, + [394] = { + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4957), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4868), + [sym_val_bool] = STATE(4386), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(3992), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4868), + [sym__val_number_decimal] = STATE(3716), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4868), + [sym_val_filesize] = STATE(4868), + [sym_val_binary] = STATE(4868), + [sym_val_string] = STATE(4868), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4868), + [sym__spread_list] = STATE(4958), + [sym_list_body] = STATE(5116), + [sym_val_entry] = STATE(4903), + [sym_val_record] = STATE(4868), + [sym_val_table] = STATE(4868), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), [sym_comment] = STATE(394), - [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_QMARK2] = ACTIONS(1547), - [anon_sym_BANG] = 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(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(395)] = { - [sym_expr_parenthesized] = STATE(4216), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4990), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4854), - [sym_val_bool] = STATE(4482), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4196), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4854), - [sym__val_number_decimal] = STATE(3713), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4854), - [sym_val_filesize] = STATE(4854), - [sym_val_binary] = STATE(4854), - [sym_val_string] = STATE(4854), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4854), - [sym__spread_list] = STATE(5037), - [sym_list_body] = STATE(5414), - [sym_val_entry] = STATE(4735), - [sym_val_record] = STATE(4854), - [sym_val_table] = STATE(4854), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4529), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), - [sym_comment] = STATE(395), - [aux_sym__types_body_repeat1] = STATE(484), - [aux_sym_parameter_repeat2] = STATE(4533), - [aux_sym_list_body_repeat1] = STATE(533), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [sym__newline] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_RBRACK] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(396)] = { - [sym_expr_parenthesized] = STATE(4216), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4990), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4854), - [sym_val_bool] = STATE(4482), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4196), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4854), - [sym__val_number_decimal] = STATE(3713), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4854), - [sym_val_filesize] = STATE(4854), - [sym_val_binary] = STATE(4854), - [sym_val_string] = STATE(4854), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4854), - [sym__spread_list] = STATE(5037), - [sym_list_body] = STATE(5142), - [sym_val_entry] = STATE(4735), - [sym_val_record] = STATE(4854), - [sym_val_table] = STATE(4854), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4529), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), - [sym_comment] = STATE(396), - [aux_sym__types_body_repeat1] = STATE(484), - [aux_sym_parameter_repeat2] = STATE(4533), - [aux_sym_list_body_repeat1] = STATE(533), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [sym__newline] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_RBRACK] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(397)] = { - [sym_expr_parenthesized] = STATE(4216), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4990), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4854), - [sym_val_bool] = STATE(4482), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4196), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4854), - [sym__val_number_decimal] = STATE(3713), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4854), - [sym_val_filesize] = STATE(4854), - [sym_val_binary] = STATE(4854), - [sym_val_string] = STATE(4854), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4854), - [sym__spread_list] = STATE(5037), - [sym_list_body] = STATE(5282), - [sym_val_entry] = STATE(4735), - [sym_val_record] = STATE(4854), - [sym_val_table] = STATE(4854), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4529), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), - [sym_comment] = STATE(397), - [aux_sym__types_body_repeat1] = STATE(484), - [aux_sym_parameter_repeat2] = STATE(4533), - [aux_sym_list_body_repeat1] = STATE(533), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [sym__newline] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_RBRACK] = ACTIONS(1525), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(398)] = { - [sym_comment] = STATE(398), - [aux_sym__types_body_repeat2] = STATE(1491), - [anon_sym_EQ] = ACTIONS(1614), - [anon_sym_PLUS_EQ] = ACTIONS(1614), - [anon_sym_DASH_EQ] = ACTIONS(1614), - [anon_sym_STAR_EQ] = ACTIONS(1614), - [anon_sym_SLASH_EQ] = ACTIONS(1614), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1614), - [anon_sym_in] = ACTIONS(1616), - [sym__newline] = ACTIONS(1616), - [anon_sym_SEMI] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1616), - [anon_sym_err_GT_PIPE] = ACTIONS(1616), - [anon_sym_out_GT_PIPE] = ACTIONS(1616), - [anon_sym_e_GT_PIPE] = ACTIONS(1616), - [anon_sym_o_GT_PIPE] = ACTIONS(1616), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1616), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1616), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1616), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1616), - [anon_sym_GT2] = ACTIONS(1616), - [anon_sym_DASH2] = ACTIONS(1616), - [anon_sym_RBRACE] = ACTIONS(1618), - [anon_sym_STAR2] = ACTIONS(1616), - [anon_sym_and2] = ACTIONS(1616), - [anon_sym_xor2] = ACTIONS(1616), - [anon_sym_or2] = ACTIONS(1616), - [anon_sym_not_DASHin2] = ACTIONS(1616), - [anon_sym_has2] = ACTIONS(1616), - [anon_sym_not_DASHhas2] = ACTIONS(1616), - [anon_sym_starts_DASHwith2] = ACTIONS(1616), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1616), - [anon_sym_ends_DASHwith2] = ACTIONS(1616), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1616), - [anon_sym_EQ_EQ2] = ACTIONS(1616), - [anon_sym_BANG_EQ2] = ACTIONS(1616), - [anon_sym_LT2] = ACTIONS(1616), - [anon_sym_LT_EQ2] = ACTIONS(1616), - [anon_sym_GT_EQ2] = ACTIONS(1616), - [anon_sym_EQ_TILDE2] = ACTIONS(1616), - [anon_sym_BANG_TILDE2] = ACTIONS(1616), - [anon_sym_like2] = ACTIONS(1616), - [anon_sym_not_DASHlike2] = ACTIONS(1616), - [anon_sym_STAR_STAR2] = ACTIONS(1616), - [anon_sym_PLUS_PLUS2] = ACTIONS(1616), - [anon_sym_SLASH2] = ACTIONS(1616), - [anon_sym_mod2] = ACTIONS(1616), - [anon_sym_SLASH_SLASH2] = ACTIONS(1616), - [anon_sym_PLUS2] = ACTIONS(1616), - [anon_sym_bit_DASHshl2] = ACTIONS(1616), - [anon_sym_bit_DASHshr2] = ACTIONS(1616), - [anon_sym_bit_DASHand2] = ACTIONS(1616), - [anon_sym_bit_DASHxor2] = ACTIONS(1616), - [anon_sym_bit_DASHor2] = ACTIONS(1616), - [anon_sym_DOT_DOT2] = ACTIONS(1620), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), - [sym__entry_separator] = ACTIONS(1624), - [anon_sym_COLON2] = ACTIONS(1626), - [anon_sym_err_GT] = ACTIONS(1616), - [anon_sym_out_GT] = ACTIONS(1616), - [anon_sym_e_GT] = ACTIONS(1616), - [anon_sym_o_GT] = ACTIONS(1616), - [anon_sym_err_PLUSout_GT] = ACTIONS(1616), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), - [anon_sym_o_PLUSe_GT] = ACTIONS(1616), - [anon_sym_e_PLUSo_GT] = ACTIONS(1616), - [anon_sym_err_GT_GT] = ACTIONS(1616), - [anon_sym_out_GT_GT] = ACTIONS(1616), - [anon_sym_e_GT_GT] = ACTIONS(1616), - [anon_sym_o_GT_GT] = ACTIONS(1616), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1616), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1616), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1616), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1616), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(399)] = { - [sym__expr_parenthesized_immediate] = STATE(715), - [sym__immediate_decimal] = STATE(716), - [sym_val_variable] = STATE(715), - [sym_comment] = STATE(399), - [anon_sym_in] = ACTIONS(1628), - [sym__newline] = ACTIONS(1628), - [anon_sym_SEMI] = ACTIONS(1628), - [anon_sym_PIPE] = ACTIONS(1628), - [anon_sym_err_GT_PIPE] = ACTIONS(1628), - [anon_sym_out_GT_PIPE] = ACTIONS(1628), - [anon_sym_e_GT_PIPE] = ACTIONS(1628), - [anon_sym_o_GT_PIPE] = ACTIONS(1628), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1628), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1628), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1628), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1628), - [anon_sym_RPAREN] = ACTIONS(1628), - [anon_sym_DOLLAR] = ACTIONS(1630), - [anon_sym_GT2] = ACTIONS(1632), - [anon_sym_DASH2] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(1628), - [anon_sym_RBRACE] = ACTIONS(1628), - [anon_sym_STAR2] = ACTIONS(1632), - [anon_sym_and2] = ACTIONS(1628), - [anon_sym_xor2] = ACTIONS(1628), - [anon_sym_or2] = ACTIONS(1628), - [anon_sym_not_DASHin2] = ACTIONS(1628), - [anon_sym_has2] = ACTIONS(1628), - [anon_sym_not_DASHhas2] = ACTIONS(1628), - [anon_sym_starts_DASHwith2] = ACTIONS(1628), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1628), - [anon_sym_ends_DASHwith2] = ACTIONS(1628), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1628), - [anon_sym_EQ_EQ2] = ACTIONS(1628), - [anon_sym_BANG_EQ2] = ACTIONS(1628), - [anon_sym_LT2] = ACTIONS(1632), - [anon_sym_LT_EQ2] = ACTIONS(1628), - [anon_sym_GT_EQ2] = ACTIONS(1628), - [anon_sym_EQ_TILDE2] = ACTIONS(1628), - [anon_sym_BANG_TILDE2] = ACTIONS(1628), - [anon_sym_like2] = ACTIONS(1628), - [anon_sym_not_DASHlike2] = ACTIONS(1628), - [anon_sym_LPAREN2] = ACTIONS(1634), - [anon_sym_STAR_STAR2] = ACTIONS(1628), - [anon_sym_PLUS_PLUS2] = ACTIONS(1628), - [anon_sym_SLASH2] = ACTIONS(1632), - [anon_sym_mod2] = ACTIONS(1628), - [anon_sym_SLASH_SLASH2] = ACTIONS(1628), - [anon_sym_PLUS2] = ACTIONS(1632), - [anon_sym_bit_DASHshl2] = ACTIONS(1628), - [anon_sym_bit_DASHshr2] = ACTIONS(1628), - [anon_sym_bit_DASHand2] = ACTIONS(1628), - [anon_sym_bit_DASHxor2] = ACTIONS(1628), - [anon_sym_bit_DASHor2] = ACTIONS(1628), - [anon_sym_DOT] = ACTIONS(1636), - [aux_sym__immediate_decimal_token1] = ACTIONS(1638), - [aux_sym__immediate_decimal_token2] = ACTIONS(1638), - [aux_sym__immediate_decimal_token3] = ACTIONS(1640), - [aux_sym__immediate_decimal_token4] = ACTIONS(1640), - [anon_sym_err_GT] = ACTIONS(1632), - [anon_sym_out_GT] = ACTIONS(1632), - [anon_sym_e_GT] = ACTIONS(1632), - [anon_sym_o_GT] = ACTIONS(1632), - [anon_sym_err_PLUSout_GT] = ACTIONS(1632), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1632), - [anon_sym_o_PLUSe_GT] = ACTIONS(1632), - [anon_sym_e_PLUSo_GT] = ACTIONS(1632), - [anon_sym_err_GT_GT] = ACTIONS(1628), - [anon_sym_out_GT_GT] = ACTIONS(1628), - [anon_sym_e_GT_GT] = ACTIONS(1628), - [anon_sym_o_GT_GT] = ACTIONS(1628), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1628), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1628), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1628), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1628), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(400)] = { - [sym_expr_parenthesized] = STATE(4216), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4990), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4854), - [sym_val_bool] = STATE(4482), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4196), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4854), - [sym__val_number_decimal] = STATE(3713), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4854), - [sym_val_filesize] = STATE(4854), - [sym_val_binary] = STATE(4854), - [sym_val_string] = STATE(4854), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4854), - [sym__spread_list] = STATE(5037), - [sym_list_body] = STATE(5112), - [sym_val_entry] = STATE(4735), - [sym_val_record] = STATE(4854), - [sym_val_table] = STATE(4854), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4529), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), - [sym_comment] = STATE(400), - [aux_sym__types_body_repeat1] = STATE(484), - [aux_sym_parameter_repeat2] = STATE(4533), - [aux_sym_list_body_repeat1] = STATE(533), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [sym__newline] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_RBRACK] = ACTIONS(1573), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(401)] = { - [sym_expr_parenthesized] = STATE(4216), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4990), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4854), - [sym_val_bool] = STATE(4482), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4196), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4854), - [sym__val_number_decimal] = STATE(3713), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4854), - [sym_val_filesize] = STATE(4854), - [sym_val_binary] = STATE(4854), - [sym_val_string] = STATE(4854), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4854), - [sym__spread_list] = STATE(5037), - [sym_list_body] = STATE(5233), - [sym_val_entry] = STATE(4735), - [sym_val_record] = STATE(4854), - [sym_val_table] = STATE(4854), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4529), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), - [sym_comment] = STATE(401), - [aux_sym__types_body_repeat1] = STATE(484), - [aux_sym_parameter_repeat2] = STATE(4533), - [aux_sym_list_body_repeat1] = STATE(533), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [sym__newline] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_RBRACK] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(402)] = { - [sym__expr_parenthesized_immediate] = STATE(718), - [sym__immediate_decimal] = STATE(719), - [sym_val_variable] = STATE(718), - [sym_comment] = STATE(402), - [anon_sym_in] = ACTIONS(1642), - [sym__newline] = ACTIONS(1642), - [anon_sym_SEMI] = ACTIONS(1642), - [anon_sym_PIPE] = ACTIONS(1642), - [anon_sym_err_GT_PIPE] = ACTIONS(1642), - [anon_sym_out_GT_PIPE] = ACTIONS(1642), - [anon_sym_e_GT_PIPE] = ACTIONS(1642), - [anon_sym_o_GT_PIPE] = ACTIONS(1642), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1642), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1642), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1642), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1642), - [anon_sym_RPAREN] = ACTIONS(1642), - [anon_sym_DOLLAR] = ACTIONS(1630), - [anon_sym_GT2] = ACTIONS(1644), - [anon_sym_DASH2] = ACTIONS(1644), - [anon_sym_LBRACE] = ACTIONS(1642), - [anon_sym_RBRACE] = ACTIONS(1642), - [anon_sym_STAR2] = ACTIONS(1644), - [anon_sym_and2] = ACTIONS(1642), - [anon_sym_xor2] = ACTIONS(1642), - [anon_sym_or2] = ACTIONS(1642), - [anon_sym_not_DASHin2] = ACTIONS(1642), - [anon_sym_has2] = ACTIONS(1642), - [anon_sym_not_DASHhas2] = ACTIONS(1642), - [anon_sym_starts_DASHwith2] = ACTIONS(1642), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1642), - [anon_sym_ends_DASHwith2] = ACTIONS(1642), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1642), - [anon_sym_EQ_EQ2] = ACTIONS(1642), - [anon_sym_BANG_EQ2] = ACTIONS(1642), - [anon_sym_LT2] = ACTIONS(1644), - [anon_sym_LT_EQ2] = ACTIONS(1642), - [anon_sym_GT_EQ2] = ACTIONS(1642), - [anon_sym_EQ_TILDE2] = ACTIONS(1642), - [anon_sym_BANG_TILDE2] = ACTIONS(1642), - [anon_sym_like2] = ACTIONS(1642), - [anon_sym_not_DASHlike2] = ACTIONS(1642), - [anon_sym_LPAREN2] = ACTIONS(1634), - [anon_sym_STAR_STAR2] = ACTIONS(1642), - [anon_sym_PLUS_PLUS2] = ACTIONS(1642), - [anon_sym_SLASH2] = ACTIONS(1644), - [anon_sym_mod2] = ACTIONS(1642), - [anon_sym_SLASH_SLASH2] = ACTIONS(1642), - [anon_sym_PLUS2] = ACTIONS(1644), - [anon_sym_bit_DASHshl2] = ACTIONS(1642), - [anon_sym_bit_DASHshr2] = ACTIONS(1642), - [anon_sym_bit_DASHand2] = ACTIONS(1642), - [anon_sym_bit_DASHxor2] = ACTIONS(1642), - [anon_sym_bit_DASHor2] = ACTIONS(1642), - [anon_sym_DOT] = ACTIONS(1646), - [aux_sym__immediate_decimal_token1] = ACTIONS(1638), - [aux_sym__immediate_decimal_token2] = ACTIONS(1638), - [aux_sym__immediate_decimal_token3] = ACTIONS(1640), - [aux_sym__immediate_decimal_token4] = ACTIONS(1640), - [anon_sym_err_GT] = ACTIONS(1644), - [anon_sym_out_GT] = ACTIONS(1644), - [anon_sym_e_GT] = ACTIONS(1644), - [anon_sym_o_GT] = ACTIONS(1644), - [anon_sym_err_PLUSout_GT] = ACTIONS(1644), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1644), - [anon_sym_o_PLUSe_GT] = ACTIONS(1644), - [anon_sym_e_PLUSo_GT] = ACTIONS(1644), - [anon_sym_err_GT_GT] = ACTIONS(1642), - [anon_sym_out_GT_GT] = ACTIONS(1642), - [anon_sym_e_GT_GT] = ACTIONS(1642), - [anon_sym_o_GT_GT] = ACTIONS(1642), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1642), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1642), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1642), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1642), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(403)] = { - [sym_expr_parenthesized] = STATE(4216), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4990), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4854), - [sym_val_bool] = STATE(4482), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4196), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4854), - [sym__val_number_decimal] = STATE(3713), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4854), - [sym_val_filesize] = STATE(4854), - [sym_val_binary] = STATE(4854), - [sym_val_string] = STATE(4854), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4854), - [sym__spread_list] = STATE(5037), - [sym_list_body] = STATE(5352), - [sym_val_entry] = STATE(4735), - [sym_val_record] = STATE(4854), - [sym_val_table] = STATE(4854), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4529), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), - [sym_comment] = STATE(403), - [aux_sym__types_body_repeat1] = STATE(484), - [aux_sym_parameter_repeat2] = STATE(4533), - [aux_sym_list_body_repeat1] = STATE(533), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [sym__newline] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_RBRACK] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(404)] = { - [sym_path] = STATE(442), - [sym_comment] = STATE(404), - [aux_sym__where_predicate_lhs_repeat1] = STATE(408), - [ts_builtin_sym_end] = ACTIONS(1579), - [anon_sym_EQ] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(1579), - [anon_sym_DASH_EQ] = ACTIONS(1579), - [anon_sym_STAR_EQ] = ACTIONS(1579), - [anon_sym_SLASH_EQ] = ACTIONS(1579), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1579), - [anon_sym_in] = ACTIONS(1579), - [sym__newline] = ACTIONS(1579), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_err_GT_PIPE] = ACTIONS(1579), - [anon_sym_out_GT_PIPE] = ACTIONS(1579), - [anon_sym_e_GT_PIPE] = ACTIONS(1579), - [anon_sym_o_GT_PIPE] = ACTIONS(1579), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), - [anon_sym_GT2] = ACTIONS(1577), - [anon_sym_DASH2] = ACTIONS(1577), - [anon_sym_STAR2] = ACTIONS(1577), - [anon_sym_and2] = ACTIONS(1579), - [anon_sym_xor2] = ACTIONS(1579), - [anon_sym_or2] = ACTIONS(1579), - [anon_sym_not_DASHin2] = ACTIONS(1579), - [anon_sym_has2] = ACTIONS(1579), - [anon_sym_not_DASHhas2] = ACTIONS(1579), - [anon_sym_starts_DASHwith2] = ACTIONS(1579), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1579), - [anon_sym_ends_DASHwith2] = ACTIONS(1579), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1579), - [anon_sym_EQ_EQ2] = ACTIONS(1579), - [anon_sym_BANG_EQ2] = ACTIONS(1579), - [anon_sym_LT2] = ACTIONS(1577), - [anon_sym_LT_EQ2] = ACTIONS(1579), - [anon_sym_GT_EQ2] = ACTIONS(1579), - [anon_sym_EQ_TILDE2] = ACTIONS(1579), - [anon_sym_BANG_TILDE2] = ACTIONS(1579), - [anon_sym_like2] = ACTIONS(1579), - [anon_sym_not_DASHlike2] = ACTIONS(1579), - [anon_sym_STAR_STAR2] = ACTIONS(1579), - [anon_sym_PLUS_PLUS2] = ACTIONS(1577), - [anon_sym_SLASH2] = ACTIONS(1577), - [anon_sym_mod2] = ACTIONS(1579), - [anon_sym_SLASH_SLASH2] = ACTIONS(1579), - [anon_sym_PLUS2] = ACTIONS(1577), - [anon_sym_bit_DASHshl2] = ACTIONS(1579), - [anon_sym_bit_DASHshr2] = ACTIONS(1579), - [anon_sym_bit_DASHand2] = ACTIONS(1579), - [anon_sym_bit_DASHxor2] = ACTIONS(1579), - [anon_sym_bit_DASHor2] = ACTIONS(1579), - [anon_sym_DOT_DOT2] = ACTIONS(1577), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1579), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1579), - [anon_sym_DOT2] = ACTIONS(1592), - [anon_sym_err_GT] = ACTIONS(1577), - [anon_sym_out_GT] = ACTIONS(1577), - [anon_sym_e_GT] = ACTIONS(1577), - [anon_sym_o_GT] = ACTIONS(1577), - [anon_sym_err_PLUSout_GT] = ACTIONS(1577), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1577), - [anon_sym_o_PLUSe_GT] = ACTIONS(1577), - [anon_sym_e_PLUSo_GT] = ACTIONS(1577), - [anon_sym_err_GT_GT] = ACTIONS(1579), - [anon_sym_out_GT_GT] = ACTIONS(1579), - [anon_sym_e_GT_GT] = ACTIONS(1579), - [anon_sym_o_GT_GT] = ACTIONS(1579), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1579), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1579), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1579), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(405)] = { - [sym_expr_parenthesized] = STATE(4216), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4990), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4854), - [sym_val_bool] = STATE(4482), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4196), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4854), - [sym__val_number_decimal] = STATE(3713), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4854), - [sym_val_filesize] = STATE(4854), - [sym_val_binary] = STATE(4854), - [sym_val_string] = STATE(4854), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4854), - [sym__spread_list] = STATE(5037), - [sym_list_body] = STATE(5153), - [sym_val_entry] = STATE(4735), - [sym_val_record] = STATE(4854), - [sym_val_table] = STATE(4854), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4529), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), - [sym_comment] = STATE(405), - [aux_sym__types_body_repeat1] = STATE(484), - [aux_sym_parameter_repeat2] = STATE(4533), - [aux_sym_list_body_repeat1] = STATE(533), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [sym__newline] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_RBRACK] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(406)] = { - [sym_expr_parenthesized] = STATE(4216), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4990), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4854), - [sym_val_bool] = STATE(4482), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4196), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4854), - [sym__val_number_decimal] = STATE(3713), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4854), - [sym_val_filesize] = STATE(4854), - [sym_val_binary] = STATE(4854), - [sym_val_string] = STATE(4854), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4854), - [sym__spread_list] = STATE(5037), - [sym_list_body] = STATE(5235), - [sym_val_entry] = STATE(4735), - [sym_val_record] = STATE(4854), - [sym_val_table] = STATE(4854), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4529), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), - [sym_comment] = STATE(406), - [aux_sym__types_body_repeat1] = STATE(484), - [aux_sym_parameter_repeat2] = STATE(4533), - [aux_sym_list_body_repeat1] = STATE(533), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [sym__newline] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_RBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(407)] = { - [sym_expr_parenthesized] = STATE(4216), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4990), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4854), - [sym_val_bool] = STATE(4482), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4196), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4854), - [sym__val_number_decimal] = STATE(3713), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4854), - [sym_val_filesize] = STATE(4854), - [sym_val_binary] = STATE(4854), - [sym_val_string] = STATE(4854), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4854), - [sym__spread_list] = STATE(5037), - [sym_list_body] = STATE(5137), - [sym_val_entry] = STATE(4735), - [sym_val_record] = STATE(4854), - [sym_val_table] = STATE(4854), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4529), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), - [sym_comment] = STATE(407), - [aux_sym__types_body_repeat1] = STATE(484), - [aux_sym_parameter_repeat2] = STATE(4533), - [aux_sym_list_body_repeat1] = STATE(533), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [sym__newline] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_RBRACK] = ACTIONS(1652), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1513), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4458), + [aux_sym_list_body_repeat1] = STATE(690), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [sym__newline] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_RBRACK] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1510), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(408)] = { - [sym_path] = STATE(442), - [sym_comment] = STATE(408), - [aux_sym__where_predicate_lhs_repeat1] = STATE(408), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [395] = { + [sym_comment] = STATE(395), [ts_builtin_sym_end] = ACTIONS(1492), [anon_sym_EQ] = ACTIONS(1490), [anon_sym_PLUS_EQ] = ACTIONS(1492), @@ -81389,7 +80321,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1490), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), - [anon_sym_DOT2] = ACTIONS(1654), + [anon_sym_QMARK2] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_DOT2] = ACTIONS(1490), [anon_sym_err_GT] = ACTIONS(1490), [anon_sym_out_GT] = ACTIONS(1490), [anon_sym_e_GT] = ACTIONS(1490), @@ -81408,1475 +80342,3095 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(409)] = { - [sym__expr_parenthesized_immediate] = STATE(718), - [sym__immediate_decimal] = STATE(634), - [sym_val_variable] = STATE(718), + [396] = { + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4957), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4868), + [sym_val_bool] = STATE(4386), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(3992), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4868), + [sym__val_number_decimal] = STATE(3716), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4868), + [sym_val_filesize] = STATE(4868), + [sym_val_binary] = STATE(4868), + [sym_val_string] = STATE(4868), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4868), + [sym__spread_list] = STATE(4958), + [sym_list_body] = STATE(5333), + [sym_val_entry] = STATE(4903), + [sym_val_record] = STATE(4868), + [sym_val_table] = STATE(4868), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), + [sym_comment] = STATE(396), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4458), + [aux_sym_list_body_repeat1] = STATE(690), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [sym__newline] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_RBRACK] = ACTIONS(1654), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [397] = { + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4957), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4868), + [sym_val_bool] = STATE(4386), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(3992), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4868), + [sym__val_number_decimal] = STATE(3716), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4868), + [sym_val_filesize] = STATE(4868), + [sym_val_binary] = STATE(4868), + [sym_val_string] = STATE(4868), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4868), + [sym__spread_list] = STATE(4958), + [sym_list_body] = STATE(5146), + [sym_val_entry] = STATE(4903), + [sym_val_record] = STATE(4868), + [sym_val_table] = STATE(4868), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), + [sym_comment] = STATE(397), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4458), + [aux_sym_list_body_repeat1] = STATE(690), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [sym__newline] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_RBRACK] = ACTIONS(1656), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [398] = { + [sym_path] = STATE(435), + [sym_comment] = STATE(398), + [aux_sym__where_predicate_lhs_repeat1] = STATE(400), + [ts_builtin_sym_end] = ACTIONS(1569), + [anon_sym_EQ] = ACTIONS(1567), + [anon_sym_PLUS_EQ] = ACTIONS(1569), + [anon_sym_DASH_EQ] = ACTIONS(1569), + [anon_sym_STAR_EQ] = ACTIONS(1569), + [anon_sym_SLASH_EQ] = ACTIONS(1569), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1569), + [anon_sym_in] = ACTIONS(1569), + [sym__newline] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_err_GT_PIPE] = ACTIONS(1569), + [anon_sym_out_GT_PIPE] = ACTIONS(1569), + [anon_sym_e_GT_PIPE] = ACTIONS(1569), + [anon_sym_o_GT_PIPE] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1569), + [anon_sym_GT2] = ACTIONS(1567), + [anon_sym_DASH2] = ACTIONS(1567), + [anon_sym_STAR2] = ACTIONS(1567), + [anon_sym_and2] = ACTIONS(1569), + [anon_sym_xor2] = ACTIONS(1569), + [anon_sym_or2] = ACTIONS(1569), + [anon_sym_not_DASHin2] = ACTIONS(1569), + [anon_sym_has2] = ACTIONS(1569), + [anon_sym_not_DASHhas2] = ACTIONS(1569), + [anon_sym_starts_DASHwith2] = ACTIONS(1569), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1569), + [anon_sym_ends_DASHwith2] = ACTIONS(1569), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1569), + [anon_sym_EQ_EQ2] = ACTIONS(1569), + [anon_sym_BANG_EQ2] = ACTIONS(1569), + [anon_sym_LT2] = ACTIONS(1567), + [anon_sym_LT_EQ2] = ACTIONS(1569), + [anon_sym_GT_EQ2] = ACTIONS(1569), + [anon_sym_EQ_TILDE2] = ACTIONS(1569), + [anon_sym_BANG_TILDE2] = ACTIONS(1569), + [anon_sym_like2] = ACTIONS(1569), + [anon_sym_not_DASHlike2] = ACTIONS(1569), + [anon_sym_STAR_STAR2] = ACTIONS(1569), + [anon_sym_PLUS_PLUS2] = ACTIONS(1567), + [anon_sym_SLASH2] = ACTIONS(1567), + [anon_sym_mod2] = ACTIONS(1569), + [anon_sym_SLASH_SLASH2] = ACTIONS(1569), + [anon_sym_PLUS2] = ACTIONS(1567), + [anon_sym_bit_DASHshl2] = ACTIONS(1569), + [anon_sym_bit_DASHshr2] = ACTIONS(1569), + [anon_sym_bit_DASHand2] = ACTIONS(1569), + [anon_sym_bit_DASHxor2] = ACTIONS(1569), + [anon_sym_bit_DASHor2] = ACTIONS(1569), + [anon_sym_DOT_DOT2] = ACTIONS(1567), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1569), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1569), + [anon_sym_DOT2] = ACTIONS(1592), + [anon_sym_err_GT] = ACTIONS(1567), + [anon_sym_out_GT] = ACTIONS(1567), + [anon_sym_e_GT] = ACTIONS(1567), + [anon_sym_o_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT] = ACTIONS(1567), + [anon_sym_err_GT_GT] = ACTIONS(1569), + [anon_sym_out_GT_GT] = ACTIONS(1569), + [anon_sym_e_GT_GT] = ACTIONS(1569), + [anon_sym_o_GT_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(3), + }, + [399] = { + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4957), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4868), + [sym_val_bool] = STATE(4386), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(3992), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4868), + [sym__val_number_decimal] = STATE(3716), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4868), + [sym_val_filesize] = STATE(4868), + [sym_val_binary] = STATE(4868), + [sym_val_string] = STATE(4868), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4868), + [sym__spread_list] = STATE(4958), + [sym_list_body] = STATE(5338), + [sym_val_entry] = STATE(4903), + [sym_val_record] = STATE(4868), + [sym_val_table] = STATE(4868), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), + [sym_comment] = STATE(399), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4458), + [aux_sym_list_body_repeat1] = STATE(690), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [sym__newline] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_RBRACK] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [400] = { + [sym_path] = STATE(435), + [sym_comment] = STATE(400), + [aux_sym__where_predicate_lhs_repeat1] = STATE(400), + [ts_builtin_sym_end] = ACTIONS(1560), + [anon_sym_EQ] = ACTIONS(1558), + [anon_sym_PLUS_EQ] = ACTIONS(1560), + [anon_sym_DASH_EQ] = ACTIONS(1560), + [anon_sym_STAR_EQ] = ACTIONS(1560), + [anon_sym_SLASH_EQ] = ACTIONS(1560), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1560), + [anon_sym_in] = ACTIONS(1560), + [sym__newline] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_err_GT_PIPE] = ACTIONS(1560), + [anon_sym_out_GT_PIPE] = ACTIONS(1560), + [anon_sym_e_GT_PIPE] = ACTIONS(1560), + [anon_sym_o_GT_PIPE] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1560), + [anon_sym_GT2] = ACTIONS(1558), + [anon_sym_DASH2] = ACTIONS(1558), + [anon_sym_STAR2] = ACTIONS(1558), + [anon_sym_and2] = ACTIONS(1560), + [anon_sym_xor2] = ACTIONS(1560), + [anon_sym_or2] = ACTIONS(1560), + [anon_sym_not_DASHin2] = ACTIONS(1560), + [anon_sym_has2] = ACTIONS(1560), + [anon_sym_not_DASHhas2] = ACTIONS(1560), + [anon_sym_starts_DASHwith2] = ACTIONS(1560), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1560), + [anon_sym_ends_DASHwith2] = ACTIONS(1560), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1560), + [anon_sym_EQ_EQ2] = ACTIONS(1560), + [anon_sym_BANG_EQ2] = ACTIONS(1560), + [anon_sym_LT2] = ACTIONS(1558), + [anon_sym_LT_EQ2] = ACTIONS(1560), + [anon_sym_GT_EQ2] = ACTIONS(1560), + [anon_sym_EQ_TILDE2] = ACTIONS(1560), + [anon_sym_BANG_TILDE2] = ACTIONS(1560), + [anon_sym_like2] = ACTIONS(1560), + [anon_sym_not_DASHlike2] = ACTIONS(1560), + [anon_sym_STAR_STAR2] = ACTIONS(1560), + [anon_sym_PLUS_PLUS2] = ACTIONS(1558), + [anon_sym_SLASH2] = ACTIONS(1558), + [anon_sym_mod2] = ACTIONS(1560), + [anon_sym_SLASH_SLASH2] = ACTIONS(1560), + [anon_sym_PLUS2] = ACTIONS(1558), + [anon_sym_bit_DASHshl2] = ACTIONS(1560), + [anon_sym_bit_DASHshr2] = ACTIONS(1560), + [anon_sym_bit_DASHand2] = ACTIONS(1560), + [anon_sym_bit_DASHxor2] = ACTIONS(1560), + [anon_sym_bit_DASHor2] = ACTIONS(1560), + [anon_sym_DOT_DOT2] = ACTIONS(1558), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1560), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1560), + [anon_sym_DOT2] = ACTIONS(1660), + [anon_sym_err_GT] = ACTIONS(1558), + [anon_sym_out_GT] = ACTIONS(1558), + [anon_sym_e_GT] = ACTIONS(1558), + [anon_sym_o_GT] = ACTIONS(1558), + [anon_sym_err_PLUSout_GT] = ACTIONS(1558), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1558), + [anon_sym_o_PLUSe_GT] = ACTIONS(1558), + [anon_sym_e_PLUSo_GT] = ACTIONS(1558), + [anon_sym_err_GT_GT] = ACTIONS(1560), + [anon_sym_out_GT_GT] = ACTIONS(1560), + [anon_sym_e_GT_GT] = ACTIONS(1560), + [anon_sym_o_GT_GT] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1560), + [anon_sym_POUND] = ACTIONS(3), + }, + [401] = { + [sym_comment] = STATE(401), + [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(1532), + [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), + }, + [402] = { + [sym_comment] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(1552), + [anon_sym_EQ] = ACTIONS(1550), + [anon_sym_PLUS_EQ] = ACTIONS(1552), + [anon_sym_DASH_EQ] = ACTIONS(1552), + [anon_sym_STAR_EQ] = ACTIONS(1552), + [anon_sym_SLASH_EQ] = ACTIONS(1552), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1552), + [anon_sym_in] = ACTIONS(1552), + [sym__newline] = ACTIONS(1552), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_err_GT_PIPE] = ACTIONS(1552), + [anon_sym_out_GT_PIPE] = ACTIONS(1552), + [anon_sym_e_GT_PIPE] = ACTIONS(1552), + [anon_sym_o_GT_PIPE] = ACTIONS(1552), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), + [anon_sym_GT2] = ACTIONS(1550), + [anon_sym_DASH2] = ACTIONS(1550), + [anon_sym_STAR2] = ACTIONS(1550), + [anon_sym_and2] = ACTIONS(1552), + [anon_sym_xor2] = ACTIONS(1552), + [anon_sym_or2] = ACTIONS(1552), + [anon_sym_not_DASHin2] = ACTIONS(1552), + [anon_sym_has2] = ACTIONS(1552), + [anon_sym_not_DASHhas2] = ACTIONS(1552), + [anon_sym_starts_DASHwith2] = ACTIONS(1552), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1552), + [anon_sym_ends_DASHwith2] = ACTIONS(1552), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1552), + [anon_sym_EQ_EQ2] = ACTIONS(1552), + [anon_sym_BANG_EQ2] = ACTIONS(1552), + [anon_sym_LT2] = ACTIONS(1550), + [anon_sym_LT_EQ2] = ACTIONS(1552), + [anon_sym_GT_EQ2] = ACTIONS(1552), + [anon_sym_EQ_TILDE2] = ACTIONS(1552), + [anon_sym_BANG_TILDE2] = ACTIONS(1552), + [anon_sym_like2] = ACTIONS(1552), + [anon_sym_not_DASHlike2] = ACTIONS(1552), + [anon_sym_STAR_STAR2] = ACTIONS(1552), + [anon_sym_PLUS_PLUS2] = ACTIONS(1550), + [anon_sym_SLASH2] = ACTIONS(1550), + [anon_sym_mod2] = ACTIONS(1552), + [anon_sym_SLASH_SLASH2] = ACTIONS(1552), + [anon_sym_PLUS2] = ACTIONS(1550), + [anon_sym_bit_DASHshl2] = ACTIONS(1552), + [anon_sym_bit_DASHshr2] = ACTIONS(1552), + [anon_sym_bit_DASHand2] = ACTIONS(1552), + [anon_sym_bit_DASHxor2] = ACTIONS(1552), + [anon_sym_bit_DASHor2] = ACTIONS(1552), + [anon_sym_DOT_DOT2] = ACTIONS(1550), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), + [anon_sym_QMARK2] = ACTIONS(1552), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_DOT2] = ACTIONS(1550), + [anon_sym_err_GT] = ACTIONS(1550), + [anon_sym_out_GT] = ACTIONS(1550), + [anon_sym_e_GT] = ACTIONS(1550), + [anon_sym_o_GT] = ACTIONS(1550), + [anon_sym_err_PLUSout_GT] = ACTIONS(1550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), + [anon_sym_o_PLUSe_GT] = ACTIONS(1550), + [anon_sym_e_PLUSo_GT] = ACTIONS(1550), + [anon_sym_err_GT_GT] = ACTIONS(1552), + [anon_sym_out_GT_GT] = ACTIONS(1552), + [anon_sym_e_GT_GT] = ACTIONS(1552), + [anon_sym_o_GT_GT] = ACTIONS(1552), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), + [anon_sym_POUND] = ACTIONS(3), + }, + [403] = { + [sym_comment] = STATE(403), + [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), + }, + [404] = { + [sym_comment] = STATE(404), + [ts_builtin_sym_end] = ACTIONS(1542), + [anon_sym_EQ] = ACTIONS(1540), + [anon_sym_PLUS_EQ] = ACTIONS(1542), + [anon_sym_DASH_EQ] = ACTIONS(1542), + [anon_sym_STAR_EQ] = ACTIONS(1542), + [anon_sym_SLASH_EQ] = ACTIONS(1542), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1542), + [anon_sym_in] = ACTIONS(1542), + [sym__newline] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_err_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_GT_PIPE] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), + [anon_sym_GT2] = ACTIONS(1540), + [anon_sym_DASH2] = ACTIONS(1540), + [anon_sym_STAR2] = ACTIONS(1540), + [anon_sym_and2] = ACTIONS(1542), + [anon_sym_xor2] = ACTIONS(1542), + [anon_sym_or2] = ACTIONS(1542), + [anon_sym_not_DASHin2] = ACTIONS(1542), + [anon_sym_has2] = ACTIONS(1542), + [anon_sym_not_DASHhas2] = ACTIONS(1542), + [anon_sym_starts_DASHwith2] = ACTIONS(1542), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1542), + [anon_sym_ends_DASHwith2] = ACTIONS(1542), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1542), + [anon_sym_EQ_EQ2] = ACTIONS(1542), + [anon_sym_BANG_EQ2] = ACTIONS(1542), + [anon_sym_LT2] = ACTIONS(1540), + [anon_sym_LT_EQ2] = ACTIONS(1542), + [anon_sym_GT_EQ2] = ACTIONS(1542), + [anon_sym_EQ_TILDE2] = ACTIONS(1542), + [anon_sym_BANG_TILDE2] = ACTIONS(1542), + [anon_sym_like2] = ACTIONS(1542), + [anon_sym_not_DASHlike2] = ACTIONS(1542), + [anon_sym_STAR_STAR2] = ACTIONS(1542), + [anon_sym_PLUS_PLUS2] = ACTIONS(1540), + [anon_sym_SLASH2] = ACTIONS(1540), + [anon_sym_mod2] = ACTIONS(1542), + [anon_sym_SLASH_SLASH2] = ACTIONS(1542), + [anon_sym_PLUS2] = ACTIONS(1540), + [anon_sym_bit_DASHshl2] = ACTIONS(1542), + [anon_sym_bit_DASHshr2] = ACTIONS(1542), + [anon_sym_bit_DASHand2] = ACTIONS(1542), + [anon_sym_bit_DASHxor2] = ACTIONS(1542), + [anon_sym_bit_DASHor2] = ACTIONS(1542), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [anon_sym_QMARK2] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_DOT2] = ACTIONS(1540), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [anon_sym_err_GT_GT] = ACTIONS(1542), + [anon_sym_out_GT_GT] = ACTIONS(1542), + [anon_sym_e_GT_GT] = ACTIONS(1542), + [anon_sym_o_GT_GT] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), + [anon_sym_POUND] = ACTIONS(3), + }, + [405] = { + [sym_comment] = STATE(405), + [ts_builtin_sym_end] = ACTIONS(1546), + [anon_sym_EQ] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(1546), + [anon_sym_DASH_EQ] = ACTIONS(1546), + [anon_sym_STAR_EQ] = ACTIONS(1546), + [anon_sym_SLASH_EQ] = ACTIONS(1546), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1546), + [anon_sym_in] = ACTIONS(1546), + [sym__newline] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_err_GT_PIPE] = ACTIONS(1546), + [anon_sym_out_GT_PIPE] = ACTIONS(1546), + [anon_sym_e_GT_PIPE] = ACTIONS(1546), + [anon_sym_o_GT_PIPE] = ACTIONS(1546), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1546), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1546), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1546), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1546), + [anon_sym_GT2] = ACTIONS(1544), + [anon_sym_DASH2] = ACTIONS(1544), + [anon_sym_STAR2] = ACTIONS(1544), + [anon_sym_and2] = ACTIONS(1546), + [anon_sym_xor2] = ACTIONS(1546), + [anon_sym_or2] = ACTIONS(1546), + [anon_sym_not_DASHin2] = ACTIONS(1546), + [anon_sym_has2] = ACTIONS(1546), + [anon_sym_not_DASHhas2] = ACTIONS(1546), + [anon_sym_starts_DASHwith2] = ACTIONS(1546), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1546), + [anon_sym_ends_DASHwith2] = ACTIONS(1546), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1546), + [anon_sym_EQ_EQ2] = ACTIONS(1546), + [anon_sym_BANG_EQ2] = ACTIONS(1546), + [anon_sym_LT2] = ACTIONS(1544), + [anon_sym_LT_EQ2] = ACTIONS(1546), + [anon_sym_GT_EQ2] = ACTIONS(1546), + [anon_sym_EQ_TILDE2] = ACTIONS(1546), + [anon_sym_BANG_TILDE2] = ACTIONS(1546), + [anon_sym_like2] = ACTIONS(1546), + [anon_sym_not_DASHlike2] = ACTIONS(1546), + [anon_sym_STAR_STAR2] = ACTIONS(1546), + [anon_sym_PLUS_PLUS2] = ACTIONS(1544), + [anon_sym_SLASH2] = ACTIONS(1544), + [anon_sym_mod2] = ACTIONS(1546), + [anon_sym_SLASH_SLASH2] = ACTIONS(1546), + [anon_sym_PLUS2] = ACTIONS(1544), + [anon_sym_bit_DASHshl2] = ACTIONS(1546), + [anon_sym_bit_DASHshr2] = ACTIONS(1546), + [anon_sym_bit_DASHand2] = ACTIONS(1546), + [anon_sym_bit_DASHxor2] = ACTIONS(1546), + [anon_sym_bit_DASHor2] = ACTIONS(1546), + [anon_sym_DOT_DOT2] = ACTIONS(1544), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1546), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1546), + [anon_sym_QMARK2] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1544), + [anon_sym_DOT2] = ACTIONS(1544), + [anon_sym_err_GT] = ACTIONS(1544), + [anon_sym_out_GT] = ACTIONS(1544), + [anon_sym_e_GT] = ACTIONS(1544), + [anon_sym_o_GT] = ACTIONS(1544), + [anon_sym_err_PLUSout_GT] = ACTIONS(1544), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1544), + [anon_sym_o_PLUSe_GT] = ACTIONS(1544), + [anon_sym_e_PLUSo_GT] = ACTIONS(1544), + [anon_sym_err_GT_GT] = ACTIONS(1546), + [anon_sym_out_GT_GT] = ACTIONS(1546), + [anon_sym_e_GT_GT] = ACTIONS(1546), + [anon_sym_o_GT_GT] = ACTIONS(1546), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1546), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1546), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1546), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(3), + }, + [406] = { + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4957), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4868), + [sym_val_bool] = STATE(4386), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(3992), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4868), + [sym__val_number_decimal] = STATE(3716), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4868), + [sym_val_filesize] = STATE(4868), + [sym_val_binary] = STATE(4868), + [sym_val_string] = STATE(4868), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4868), + [sym__spread_list] = STATE(4958), + [sym_list_body] = STATE(5393), + [sym_val_entry] = STATE(4903), + [sym_val_record] = STATE(4868), + [sym_val_table] = STATE(4868), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), + [sym_comment] = STATE(406), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4458), + [aux_sym_list_body_repeat1] = STATE(690), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [sym__newline] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_RBRACK] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [407] = { + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4957), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4868), + [sym_val_bool] = STATE(4386), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(3992), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4868), + [sym__val_number_decimal] = STATE(3716), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4868), + [sym_val_filesize] = STATE(4868), + [sym_val_binary] = STATE(4868), + [sym_val_string] = STATE(4868), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4868), + [sym__spread_list] = STATE(4958), + [sym_list_body] = STATE(5237), + [sym_val_entry] = STATE(4903), + [sym_val_record] = STATE(4868), + [sym_val_table] = STATE(4868), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), + [sym_comment] = STATE(407), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4458), + [aux_sym_list_body_repeat1] = STATE(690), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [sym__newline] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_RBRACK] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [408] = { + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4957), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4868), + [sym_val_bool] = STATE(4386), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(3992), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4868), + [sym__val_number_decimal] = STATE(3716), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4868), + [sym_val_filesize] = STATE(4868), + [sym_val_binary] = STATE(4868), + [sym_val_string] = STATE(4868), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4868), + [sym__spread_list] = STATE(4958), + [sym_list_body] = STATE(5343), + [sym_val_entry] = STATE(4903), + [sym_val_record] = STATE(4868), + [sym_val_table] = STATE(4868), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), + [sym_comment] = STATE(408), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4458), + [aux_sym_list_body_repeat1] = STATE(690), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [sym__newline] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_RBRACK] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [409] = { + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4957), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4868), + [sym_val_bool] = STATE(4386), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(3992), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4868), + [sym__val_number_decimal] = STATE(3716), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4868), + [sym_val_filesize] = STATE(4868), + [sym_val_binary] = STATE(4868), + [sym_val_string] = STATE(4868), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4868), + [sym__spread_list] = STATE(4958), + [sym_list_body] = STATE(5128), + [sym_val_entry] = STATE(4903), + [sym_val_record] = STATE(4868), + [sym_val_table] = STATE(4868), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), [sym_comment] = STATE(409), - [anon_sym_in] = ACTIONS(1642), - [sym__newline] = ACTIONS(1642), - [anon_sym_SEMI] = ACTIONS(1642), - [anon_sym_PIPE] = ACTIONS(1642), - [anon_sym_err_GT_PIPE] = ACTIONS(1642), - [anon_sym_out_GT_PIPE] = ACTIONS(1642), - [anon_sym_e_GT_PIPE] = ACTIONS(1642), - [anon_sym_o_GT_PIPE] = ACTIONS(1642), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1642), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1642), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1642), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1642), - [anon_sym_RPAREN] = ACTIONS(1642), - [anon_sym_DOLLAR] = ACTIONS(1630), - [anon_sym_GT2] = ACTIONS(1644), - [anon_sym_DASH2] = ACTIONS(1644), - [anon_sym_RBRACE] = ACTIONS(1642), - [anon_sym_STAR2] = ACTIONS(1644), - [anon_sym_and2] = ACTIONS(1642), - [anon_sym_xor2] = ACTIONS(1642), - [anon_sym_or2] = ACTIONS(1642), - [anon_sym_not_DASHin2] = ACTIONS(1642), - [anon_sym_has2] = ACTIONS(1642), - [anon_sym_not_DASHhas2] = ACTIONS(1642), - [anon_sym_starts_DASHwith2] = ACTIONS(1642), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1642), - [anon_sym_ends_DASHwith2] = ACTIONS(1642), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1642), - [anon_sym_EQ_EQ2] = ACTIONS(1642), - [anon_sym_BANG_EQ2] = ACTIONS(1642), - [anon_sym_LT2] = ACTIONS(1644), - [anon_sym_LT_EQ2] = ACTIONS(1642), - [anon_sym_GT_EQ2] = ACTIONS(1642), - [anon_sym_EQ_TILDE2] = ACTIONS(1642), - [anon_sym_BANG_TILDE2] = ACTIONS(1642), - [anon_sym_like2] = ACTIONS(1642), - [anon_sym_not_DASHlike2] = ACTIONS(1642), - [anon_sym_LPAREN2] = ACTIONS(1634), - [anon_sym_STAR_STAR2] = ACTIONS(1642), - [anon_sym_PLUS_PLUS2] = ACTIONS(1642), - [anon_sym_SLASH2] = ACTIONS(1644), - [anon_sym_mod2] = ACTIONS(1642), - [anon_sym_SLASH_SLASH2] = ACTIONS(1642), - [anon_sym_PLUS2] = ACTIONS(1644), - [anon_sym_bit_DASHshl2] = ACTIONS(1642), - [anon_sym_bit_DASHshr2] = ACTIONS(1642), - [anon_sym_bit_DASHand2] = ACTIONS(1642), - [anon_sym_bit_DASHxor2] = ACTIONS(1642), - [anon_sym_bit_DASHor2] = ACTIONS(1642), - [anon_sym_DOT] = ACTIONS(1657), - [aux_sym__immediate_decimal_token1] = ACTIONS(1638), - [aux_sym__immediate_decimal_token2] = ACTIONS(1638), - [aux_sym__immediate_decimal_token3] = ACTIONS(1640), - [aux_sym__immediate_decimal_token4] = ACTIONS(1640), - [anon_sym_err_GT] = ACTIONS(1644), - [anon_sym_out_GT] = ACTIONS(1644), - [anon_sym_e_GT] = ACTIONS(1644), - [anon_sym_o_GT] = ACTIONS(1644), - [anon_sym_err_PLUSout_GT] = ACTIONS(1644), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1644), - [anon_sym_o_PLUSe_GT] = ACTIONS(1644), - [anon_sym_e_PLUSo_GT] = ACTIONS(1644), - [anon_sym_err_GT_GT] = ACTIONS(1642), - [anon_sym_out_GT_GT] = ACTIONS(1642), - [anon_sym_e_GT_GT] = ACTIONS(1642), - [anon_sym_o_GT_GT] = ACTIONS(1642), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1642), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1642), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1642), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1642), - [sym__unquoted_pattern] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(410)] = { - [sym_expr_parenthesized] = STATE(4216), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4990), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4854), - [sym_val_bool] = STATE(4482), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4196), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4854), - [sym__val_number_decimal] = STATE(3713), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4854), - [sym_val_filesize] = STATE(4854), - [sym_val_binary] = STATE(4854), - [sym_val_string] = STATE(4854), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4854), - [sym__spread_list] = STATE(5037), - [sym_list_body] = STATE(5127), - [sym_val_entry] = STATE(4735), - [sym_val_record] = STATE(4854), - [sym_val_table] = STATE(4854), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4529), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4458), + [aux_sym_list_body_repeat1] = STATE(690), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [sym__newline] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_RBRACK] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [410] = { + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4957), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4868), + [sym_val_bool] = STATE(4386), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(3992), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4868), + [sym__val_number_decimal] = STATE(3716), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4868), + [sym_val_filesize] = STATE(4868), + [sym_val_binary] = STATE(4868), + [sym_val_string] = STATE(4868), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4868), + [sym__spread_list] = STATE(4958), + [sym_list_body] = STATE(5167), + [sym_val_entry] = STATE(4903), + [sym_val_record] = STATE(4868), + [sym_val_table] = STATE(4868), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), [sym_comment] = STATE(410), - [aux_sym__types_body_repeat1] = STATE(484), - [aux_sym_parameter_repeat2] = STATE(4533), - [aux_sym_list_body_repeat1] = STATE(533), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [sym__newline] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_RBRACK] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1513), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4458), + [aux_sym_list_body_repeat1] = STATE(690), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [sym__newline] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_RBRACK] = ACTIONS(1665), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1510), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(411)] = { + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [411] = { [sym_comment] = STATE(411), - [anon_sym_EQ] = ACTIONS(1565), - [anon_sym_PLUS_EQ] = ACTIONS(1567), - [anon_sym_DASH_EQ] = ACTIONS(1567), - [anon_sym_STAR_EQ] = ACTIONS(1567), - [anon_sym_SLASH_EQ] = ACTIONS(1567), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1567), - [anon_sym_in] = ACTIONS(1567), - [sym__newline] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_err_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_GT_PIPE] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), - [anon_sym_RPAREN] = ACTIONS(1567), - [anon_sym_GT2] = ACTIONS(1565), - [anon_sym_DASH2] = ACTIONS(1565), - [anon_sym_RBRACE] = ACTIONS(1567), - [anon_sym_STAR2] = ACTIONS(1565), - [anon_sym_and2] = ACTIONS(1567), - [anon_sym_xor2] = ACTIONS(1567), - [anon_sym_or2] = ACTIONS(1567), - [anon_sym_not_DASHin2] = ACTIONS(1567), - [anon_sym_has2] = ACTIONS(1567), - [anon_sym_not_DASHhas2] = ACTIONS(1567), - [anon_sym_starts_DASHwith2] = ACTIONS(1567), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1567), - [anon_sym_ends_DASHwith2] = ACTIONS(1567), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1567), - [anon_sym_EQ_EQ2] = ACTIONS(1567), - [anon_sym_BANG_EQ2] = ACTIONS(1567), - [anon_sym_LT2] = ACTIONS(1565), - [anon_sym_LT_EQ2] = ACTIONS(1567), - [anon_sym_GT_EQ2] = ACTIONS(1567), - [anon_sym_EQ_TILDE2] = ACTIONS(1567), - [anon_sym_BANG_TILDE2] = ACTIONS(1567), - [anon_sym_like2] = ACTIONS(1567), - [anon_sym_not_DASHlike2] = ACTIONS(1567), - [anon_sym_STAR_STAR2] = ACTIONS(1567), - [anon_sym_PLUS_PLUS2] = ACTIONS(1565), - [anon_sym_SLASH2] = ACTIONS(1565), - [anon_sym_mod2] = ACTIONS(1567), - [anon_sym_SLASH_SLASH2] = ACTIONS(1567), - [anon_sym_PLUS2] = ACTIONS(1565), - [anon_sym_bit_DASHshl2] = ACTIONS(1567), - [anon_sym_bit_DASHshr2] = ACTIONS(1567), - [anon_sym_bit_DASHand2] = ACTIONS(1567), - [anon_sym_bit_DASHxor2] = ACTIONS(1567), - [anon_sym_bit_DASHor2] = ACTIONS(1567), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [anon_sym_COLON2] = ACTIONS(1567), - [anon_sym_DOT2] = ACTIONS(1565), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1567), - [anon_sym_out_GT_GT] = ACTIONS(1567), - [anon_sym_e_GT_GT] = ACTIONS(1567), - [anon_sym_o_GT_GT] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(412)] = { - [sym__expr_parenthesized_immediate] = STATE(922), - [sym__immediate_decimal] = STATE(923), - [sym_val_variable] = STATE(922), + [ts_builtin_sym_end] = ACTIONS(1576), + [anon_sym_EQ] = ACTIONS(1574), + [anon_sym_PLUS_EQ] = ACTIONS(1576), + [anon_sym_DASH_EQ] = ACTIONS(1576), + [anon_sym_STAR_EQ] = ACTIONS(1576), + [anon_sym_SLASH_EQ] = ACTIONS(1576), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1576), + [anon_sym_in] = ACTIONS(1576), + [sym__newline] = ACTIONS(1576), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1576), + [anon_sym_err_GT_PIPE] = ACTIONS(1576), + [anon_sym_out_GT_PIPE] = ACTIONS(1576), + [anon_sym_e_GT_PIPE] = ACTIONS(1576), + [anon_sym_o_GT_PIPE] = ACTIONS(1576), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1576), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1576), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1576), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1576), + [anon_sym_GT2] = ACTIONS(1574), + [anon_sym_DASH2] = ACTIONS(1574), + [anon_sym_STAR2] = ACTIONS(1574), + [anon_sym_and2] = ACTIONS(1576), + [anon_sym_xor2] = ACTIONS(1576), + [anon_sym_or2] = ACTIONS(1576), + [anon_sym_not_DASHin2] = ACTIONS(1576), + [anon_sym_has2] = ACTIONS(1576), + [anon_sym_not_DASHhas2] = ACTIONS(1576), + [anon_sym_starts_DASHwith2] = ACTIONS(1576), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1576), + [anon_sym_ends_DASHwith2] = ACTIONS(1576), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1576), + [anon_sym_EQ_EQ2] = ACTIONS(1576), + [anon_sym_BANG_EQ2] = ACTIONS(1576), + [anon_sym_LT2] = ACTIONS(1574), + [anon_sym_LT_EQ2] = ACTIONS(1576), + [anon_sym_GT_EQ2] = ACTIONS(1576), + [anon_sym_EQ_TILDE2] = ACTIONS(1576), + [anon_sym_BANG_TILDE2] = ACTIONS(1576), + [anon_sym_like2] = ACTIONS(1576), + [anon_sym_not_DASHlike2] = ACTIONS(1576), + [anon_sym_STAR_STAR2] = ACTIONS(1576), + [anon_sym_PLUS_PLUS2] = ACTIONS(1574), + [anon_sym_SLASH2] = ACTIONS(1574), + [anon_sym_mod2] = ACTIONS(1576), + [anon_sym_SLASH_SLASH2] = ACTIONS(1576), + [anon_sym_PLUS2] = ACTIONS(1574), + [anon_sym_bit_DASHshl2] = ACTIONS(1576), + [anon_sym_bit_DASHshr2] = ACTIONS(1576), + [anon_sym_bit_DASHand2] = ACTIONS(1576), + [anon_sym_bit_DASHxor2] = ACTIONS(1576), + [anon_sym_bit_DASHor2] = ACTIONS(1576), + [anon_sym_DOT_DOT2] = ACTIONS(1574), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1576), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1576), + [anon_sym_QMARK2] = ACTIONS(1576), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_DOT2] = ACTIONS(1574), + [anon_sym_err_GT] = ACTIONS(1574), + [anon_sym_out_GT] = ACTIONS(1574), + [anon_sym_e_GT] = ACTIONS(1574), + [anon_sym_o_GT] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT] = ACTIONS(1574), + [anon_sym_err_GT_GT] = ACTIONS(1576), + [anon_sym_out_GT_GT] = ACTIONS(1576), + [anon_sym_e_GT_GT] = ACTIONS(1576), + [anon_sym_o_GT_GT] = ACTIONS(1576), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1576), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1576), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1576), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1576), + [anon_sym_POUND] = ACTIONS(3), + }, + [412] = { + [sym_cell_path] = STATE(484), + [sym_path] = STATE(466), [sym_comment] = STATE(412), - [anon_sym_in] = ACTIONS(1628), - [sym__newline] = ACTIONS(1628), - [anon_sym_SEMI] = ACTIONS(1628), - [anon_sym_PIPE] = ACTIONS(1628), - [anon_sym_err_GT_PIPE] = ACTIONS(1628), - [anon_sym_out_GT_PIPE] = ACTIONS(1628), - [anon_sym_e_GT_PIPE] = ACTIONS(1628), - [anon_sym_o_GT_PIPE] = ACTIONS(1628), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1628), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1628), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1628), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1628), - [anon_sym_RPAREN] = ACTIONS(1628), - [anon_sym_DOLLAR] = ACTIONS(1630), - [anon_sym_GT2] = ACTIONS(1632), - [anon_sym_DASH2] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(1628), - [anon_sym_RBRACE] = ACTIONS(1628), - [anon_sym_STAR2] = ACTIONS(1632), - [anon_sym_and2] = ACTIONS(1628), - [anon_sym_xor2] = ACTIONS(1628), - [anon_sym_or2] = ACTIONS(1628), - [anon_sym_not_DASHin2] = ACTIONS(1628), - [anon_sym_has2] = ACTIONS(1628), - [anon_sym_not_DASHhas2] = ACTIONS(1628), - [anon_sym_starts_DASHwith2] = ACTIONS(1628), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1628), - [anon_sym_ends_DASHwith2] = ACTIONS(1628), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1628), - [anon_sym_EQ_EQ2] = ACTIONS(1628), - [anon_sym_BANG_EQ2] = ACTIONS(1628), - [anon_sym_LT2] = ACTIONS(1632), - [anon_sym_LT_EQ2] = ACTIONS(1628), - [anon_sym_GT_EQ2] = ACTIONS(1628), - [anon_sym_EQ_TILDE2] = ACTIONS(1628), - [anon_sym_BANG_TILDE2] = ACTIONS(1628), - [anon_sym_like2] = ACTIONS(1628), - [anon_sym_not_DASHlike2] = ACTIONS(1628), - [anon_sym_LPAREN2] = ACTIONS(1634), - [anon_sym_STAR_STAR2] = ACTIONS(1628), - [anon_sym_PLUS_PLUS2] = ACTIONS(1628), - [anon_sym_SLASH2] = ACTIONS(1632), - [anon_sym_mod2] = ACTIONS(1628), - [anon_sym_SLASH_SLASH2] = ACTIONS(1628), - [anon_sym_PLUS2] = ACTIONS(1632), - [anon_sym_bit_DASHshl2] = ACTIONS(1628), - [anon_sym_bit_DASHshr2] = ACTIONS(1628), - [anon_sym_bit_DASHand2] = ACTIONS(1628), - [anon_sym_bit_DASHxor2] = ACTIONS(1628), - [anon_sym_bit_DASHor2] = ACTIONS(1628), - [aux_sym__immediate_decimal_token1] = ACTIONS(1663), - [aux_sym__immediate_decimal_token2] = ACTIONS(1663), - [aux_sym__immediate_decimal_token3] = ACTIONS(1640), - [aux_sym__immediate_decimal_token4] = ACTIONS(1640), - [anon_sym_err_GT] = ACTIONS(1632), - [anon_sym_out_GT] = ACTIONS(1632), - [anon_sym_e_GT] = ACTIONS(1632), - [anon_sym_o_GT] = ACTIONS(1632), - [anon_sym_err_PLUSout_GT] = ACTIONS(1632), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1632), - [anon_sym_o_PLUSe_GT] = ACTIONS(1632), - [anon_sym_e_PLUSo_GT] = ACTIONS(1632), - [anon_sym_err_GT_GT] = ACTIONS(1628), - [anon_sym_out_GT_GT] = ACTIONS(1628), - [anon_sym_e_GT_GT] = ACTIONS(1628), - [anon_sym_o_GT_GT] = ACTIONS(1628), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1628), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1628), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1628), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1628), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(413)] = { - [sym__expr_parenthesized_immediate] = STATE(925), - [sym__immediate_decimal] = STATE(961), - [sym_val_variable] = STATE(925), + [aux_sym__where_predicate_lhs_repeat1] = STATE(430), + [anon_sym_in] = ACTIONS(1667), + [sym__newline] = ACTIONS(1667), + [anon_sym_SEMI] = ACTIONS(1667), + [anon_sym_PIPE] = ACTIONS(1667), + [anon_sym_err_GT_PIPE] = ACTIONS(1667), + [anon_sym_out_GT_PIPE] = ACTIONS(1667), + [anon_sym_e_GT_PIPE] = ACTIONS(1667), + [anon_sym_o_GT_PIPE] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1667), + [anon_sym_RPAREN] = ACTIONS(1667), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1667), + [anon_sym_EQ_GT] = ACTIONS(1667), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1667), + [anon_sym_xor2] = ACTIONS(1667), + [anon_sym_or2] = ACTIONS(1667), + [anon_sym_not_DASHin2] = ACTIONS(1667), + [anon_sym_has2] = ACTIONS(1667), + [anon_sym_not_DASHhas2] = ACTIONS(1667), + [anon_sym_starts_DASHwith2] = ACTIONS(1667), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1667), + [anon_sym_ends_DASHwith2] = ACTIONS(1667), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1667), + [anon_sym_EQ_EQ2] = ACTIONS(1667), + [anon_sym_BANG_EQ2] = ACTIONS(1667), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1667), + [anon_sym_GT_EQ2] = ACTIONS(1667), + [anon_sym_EQ_TILDE2] = ACTIONS(1667), + [anon_sym_BANG_TILDE2] = ACTIONS(1667), + [anon_sym_like2] = ACTIONS(1667), + [anon_sym_not_DASHlike2] = ACTIONS(1667), + [anon_sym_STAR_STAR2] = ACTIONS(1667), + [anon_sym_PLUS_PLUS2] = ACTIONS(1667), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1667), + [anon_sym_SLASH_SLASH2] = ACTIONS(1667), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1667), + [anon_sym_bit_DASHshr2] = ACTIONS(1667), + [anon_sym_bit_DASHand2] = ACTIONS(1667), + [anon_sym_bit_DASHxor2] = ACTIONS(1667), + [anon_sym_bit_DASHor2] = ACTIONS(1667), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1667), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1667), + [anon_sym_COLON2] = ACTIONS(1667), + [anon_sym_DOT2] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(1667), + [anon_sym_out_GT_GT] = ACTIONS(1667), + [anon_sym_e_GT_GT] = ACTIONS(1667), + [anon_sym_o_GT_GT] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(3), + }, + [413] = { + [sym__expr_parenthesized_immediate] = STATE(760), + [sym__immediate_decimal] = STATE(759), + [sym_val_variable] = STATE(760), [sym_comment] = STATE(413), - [anon_sym_in] = ACTIONS(1642), - [sym__newline] = ACTIONS(1642), - [anon_sym_SEMI] = ACTIONS(1642), - [anon_sym_PIPE] = ACTIONS(1642), - [anon_sym_err_GT_PIPE] = ACTIONS(1642), - [anon_sym_out_GT_PIPE] = ACTIONS(1642), - [anon_sym_e_GT_PIPE] = ACTIONS(1642), - [anon_sym_o_GT_PIPE] = ACTIONS(1642), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1642), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1642), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1642), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1642), - [anon_sym_RPAREN] = ACTIONS(1642), - [anon_sym_DOLLAR] = ACTIONS(1630), - [anon_sym_GT2] = ACTIONS(1644), - [anon_sym_DASH2] = ACTIONS(1644), - [anon_sym_RBRACE] = ACTIONS(1642), - [anon_sym_STAR2] = ACTIONS(1644), - [anon_sym_and2] = ACTIONS(1642), - [anon_sym_xor2] = ACTIONS(1642), - [anon_sym_or2] = ACTIONS(1642), - [anon_sym_not_DASHin2] = ACTIONS(1642), - [anon_sym_has2] = ACTIONS(1642), - [anon_sym_not_DASHhas2] = ACTIONS(1642), - [anon_sym_starts_DASHwith2] = ACTIONS(1642), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1642), - [anon_sym_ends_DASHwith2] = ACTIONS(1642), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1642), - [anon_sym_EQ_EQ2] = ACTIONS(1642), - [anon_sym_BANG_EQ2] = ACTIONS(1642), - [anon_sym_LT2] = ACTIONS(1644), - [anon_sym_LT_EQ2] = ACTIONS(1642), - [anon_sym_GT_EQ2] = ACTIONS(1642), - [anon_sym_EQ_TILDE2] = ACTIONS(1642), - [anon_sym_BANG_TILDE2] = ACTIONS(1642), - [anon_sym_like2] = ACTIONS(1642), - [anon_sym_not_DASHlike2] = ACTIONS(1642), - [anon_sym_LPAREN2] = ACTIONS(1634), - [anon_sym_STAR_STAR2] = ACTIONS(1642), - [anon_sym_PLUS_PLUS2] = ACTIONS(1642), - [anon_sym_SLASH2] = ACTIONS(1644), - [anon_sym_mod2] = ACTIONS(1642), - [anon_sym_SLASH_SLASH2] = ACTIONS(1642), - [anon_sym_PLUS2] = ACTIONS(1644), - [anon_sym_bit_DASHshl2] = ACTIONS(1642), - [anon_sym_bit_DASHshr2] = ACTIONS(1642), - [anon_sym_bit_DASHand2] = ACTIONS(1642), - [anon_sym_bit_DASHxor2] = ACTIONS(1642), - [anon_sym_bit_DASHor2] = ACTIONS(1642), - [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(1644), - [anon_sym_out_GT] = ACTIONS(1644), - [anon_sym_e_GT] = ACTIONS(1644), - [anon_sym_o_GT] = ACTIONS(1644), - [anon_sym_err_PLUSout_GT] = ACTIONS(1644), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1644), - [anon_sym_o_PLUSe_GT] = ACTIONS(1644), - [anon_sym_e_PLUSo_GT] = ACTIONS(1644), - [anon_sym_err_GT_GT] = ACTIONS(1642), - [anon_sym_out_GT_GT] = ACTIONS(1642), - [anon_sym_e_GT_GT] = ACTIONS(1642), - [anon_sym_o_GT_GT] = ACTIONS(1642), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1642), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1642), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1642), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1642), - [sym__unquoted_pattern] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(414)] = { - [sym_cell_path] = STATE(493), - [sym_path] = STATE(472), + [anon_sym_in] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_RPAREN] = ACTIONS(1673), + [anon_sym_DOLLAR] = ACTIONS(1624), + [anon_sym_GT2] = ACTIONS(1675), + [anon_sym_DASH2] = ACTIONS(1675), + [anon_sym_LBRACE] = ACTIONS(1673), + [anon_sym_RBRACE] = ACTIONS(1673), + [anon_sym_STAR2] = ACTIONS(1675), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_has2] = ACTIONS(1673), + [anon_sym_not_DASHhas2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1675), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_like2] = ACTIONS(1673), + [anon_sym_not_DASHlike2] = ACTIONS(1673), + [anon_sym_LPAREN2] = ACTIONS(1628), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1675), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1675), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [aux_sym__immediate_decimal_token1] = ACTIONS(1677), + [aux_sym__immediate_decimal_token2] = ACTIONS(1677), + [aux_sym__immediate_decimal_token3] = ACTIONS(1634), + [aux_sym__immediate_decimal_token4] = ACTIONS(1634), + [anon_sym_err_GT] = ACTIONS(1675), + [anon_sym_out_GT] = ACTIONS(1675), + [anon_sym_e_GT] = ACTIONS(1675), + [anon_sym_o_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT] = ACTIONS(1675), + [anon_sym_err_GT_GT] = ACTIONS(1673), + [anon_sym_out_GT_GT] = ACTIONS(1673), + [anon_sym_e_GT_GT] = ACTIONS(1673), + [anon_sym_o_GT_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), + [anon_sym_POUND] = ACTIONS(3), + }, + [414] = { + [sym__expr_parenthesized_immediate] = STATE(897), + [sym__immediate_decimal] = STATE(896), + [sym_val_variable] = STATE(897), [sym_comment] = STATE(414), - [aux_sym__where_predicate_lhs_repeat1] = STATE(438), - [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_GT2] = ACTIONS(1671), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_EQ_GT] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1671), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_has2] = ACTIONS(1669), - [anon_sym_not_DASHhas2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1671), - [anon_sym_LT_EQ2] = ACTIONS(1669), - [anon_sym_GT_EQ2] = ACTIONS(1669), - [anon_sym_EQ_TILDE2] = ACTIONS(1669), - [anon_sym_BANG_TILDE2] = ACTIONS(1669), - [anon_sym_like2] = ACTIONS(1669), - [anon_sym_not_DASHlike2] = ACTIONS(1669), - [anon_sym_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1671), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1671), - [anon_sym_bit_DASHshl2] = ACTIONS(1669), - [anon_sym_bit_DASHshr2] = ACTIONS(1669), - [anon_sym_bit_DASHand2] = ACTIONS(1669), - [anon_sym_bit_DASHxor2] = ACTIONS(1669), - [anon_sym_bit_DASHor2] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1671), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [anon_sym_COLON2] = ACTIONS(1669), - [anon_sym_DOT2] = ACTIONS(1673), - [anon_sym_err_GT] = ACTIONS(1671), - [anon_sym_out_GT] = ACTIONS(1671), - [anon_sym_e_GT] = ACTIONS(1671), - [anon_sym_o_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT] = ACTIONS(1671), - [anon_sym_err_GT_GT] = ACTIONS(1669), - [anon_sym_out_GT_GT] = ACTIONS(1669), - [anon_sym_e_GT_GT] = ACTIONS(1669), - [anon_sym_o_GT_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(415)] = { + [anon_sym_in] = ACTIONS(1648), + [sym__newline] = ACTIONS(1648), + [anon_sym_SEMI] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1648), + [anon_sym_err_GT_PIPE] = ACTIONS(1648), + [anon_sym_out_GT_PIPE] = ACTIONS(1648), + [anon_sym_e_GT_PIPE] = ACTIONS(1648), + [anon_sym_o_GT_PIPE] = ACTIONS(1648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1648), + [anon_sym_RPAREN] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1624), + [anon_sym_GT2] = ACTIONS(1650), + [anon_sym_DASH2] = ACTIONS(1650), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1648), + [anon_sym_STAR2] = ACTIONS(1650), + [anon_sym_and2] = ACTIONS(1648), + [anon_sym_xor2] = ACTIONS(1648), + [anon_sym_or2] = ACTIONS(1648), + [anon_sym_not_DASHin2] = ACTIONS(1648), + [anon_sym_has2] = ACTIONS(1648), + [anon_sym_not_DASHhas2] = ACTIONS(1648), + [anon_sym_starts_DASHwith2] = ACTIONS(1648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1648), + [anon_sym_ends_DASHwith2] = ACTIONS(1648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1648), + [anon_sym_EQ_EQ2] = ACTIONS(1648), + [anon_sym_BANG_EQ2] = ACTIONS(1648), + [anon_sym_LT2] = ACTIONS(1650), + [anon_sym_LT_EQ2] = ACTIONS(1648), + [anon_sym_GT_EQ2] = ACTIONS(1648), + [anon_sym_EQ_TILDE2] = ACTIONS(1648), + [anon_sym_BANG_TILDE2] = ACTIONS(1648), + [anon_sym_like2] = ACTIONS(1648), + [anon_sym_not_DASHlike2] = ACTIONS(1648), + [anon_sym_LPAREN2] = ACTIONS(1628), + [anon_sym_STAR_STAR2] = ACTIONS(1648), + [anon_sym_PLUS_PLUS2] = ACTIONS(1648), + [anon_sym_SLASH2] = ACTIONS(1650), + [anon_sym_mod2] = ACTIONS(1648), + [anon_sym_SLASH_SLASH2] = ACTIONS(1648), + [anon_sym_PLUS2] = ACTIONS(1650), + [anon_sym_bit_DASHshl2] = ACTIONS(1648), + [anon_sym_bit_DASHshr2] = ACTIONS(1648), + [anon_sym_bit_DASHand2] = ACTIONS(1648), + [anon_sym_bit_DASHxor2] = ACTIONS(1648), + [anon_sym_bit_DASHor2] = ACTIONS(1648), + [aux_sym__immediate_decimal_token1] = ACTIONS(1677), + [aux_sym__immediate_decimal_token2] = ACTIONS(1677), + [aux_sym__immediate_decimal_token3] = ACTIONS(1634), + [aux_sym__immediate_decimal_token4] = ACTIONS(1634), + [anon_sym_err_GT] = ACTIONS(1650), + [anon_sym_out_GT] = ACTIONS(1650), + [anon_sym_e_GT] = ACTIONS(1650), + [anon_sym_o_GT] = ACTIONS(1650), + [anon_sym_err_PLUSout_GT] = ACTIONS(1650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1650), + [anon_sym_o_PLUSe_GT] = ACTIONS(1650), + [anon_sym_e_PLUSo_GT] = ACTIONS(1650), + [anon_sym_err_GT_GT] = ACTIONS(1648), + [anon_sym_out_GT_GT] = ACTIONS(1648), + [anon_sym_e_GT_GT] = ACTIONS(1648), + [anon_sym_o_GT_GT] = ACTIONS(1648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(3), + }, + [415] = { + [sym__expr_parenthesized_immediate] = STATE(764), + [sym__immediate_decimal] = STATE(763), + [sym_val_variable] = STATE(764), [sym_comment] = STATE(415), - [anon_sym_EQ] = ACTIONS(1600), - [anon_sym_PLUS_EQ] = ACTIONS(1602), - [anon_sym_DASH_EQ] = ACTIONS(1602), - [anon_sym_STAR_EQ] = ACTIONS(1602), - [anon_sym_SLASH_EQ] = ACTIONS(1602), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1602), - [anon_sym_in] = ACTIONS(1602), - [sym__newline] = ACTIONS(1602), - [anon_sym_SEMI] = ACTIONS(1602), - [anon_sym_PIPE] = ACTIONS(1602), - [anon_sym_err_GT_PIPE] = ACTIONS(1602), - [anon_sym_out_GT_PIPE] = ACTIONS(1602), - [anon_sym_e_GT_PIPE] = ACTIONS(1602), - [anon_sym_o_GT_PIPE] = ACTIONS(1602), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1602), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1602), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1602), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(1602), - [anon_sym_GT2] = ACTIONS(1600), - [anon_sym_DASH2] = ACTIONS(1600), - [anon_sym_RBRACE] = ACTIONS(1602), - [anon_sym_STAR2] = ACTIONS(1600), - [anon_sym_and2] = ACTIONS(1602), - [anon_sym_xor2] = ACTIONS(1602), - [anon_sym_or2] = ACTIONS(1602), - [anon_sym_not_DASHin2] = ACTIONS(1602), - [anon_sym_has2] = ACTIONS(1602), - [anon_sym_not_DASHhas2] = ACTIONS(1602), - [anon_sym_starts_DASHwith2] = ACTIONS(1602), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1602), - [anon_sym_ends_DASHwith2] = ACTIONS(1602), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1602), - [anon_sym_EQ_EQ2] = ACTIONS(1602), - [anon_sym_BANG_EQ2] = ACTIONS(1602), - [anon_sym_LT2] = ACTIONS(1600), - [anon_sym_LT_EQ2] = ACTIONS(1602), - [anon_sym_GT_EQ2] = ACTIONS(1602), - [anon_sym_EQ_TILDE2] = ACTIONS(1602), - [anon_sym_BANG_TILDE2] = ACTIONS(1602), - [anon_sym_like2] = ACTIONS(1602), - [anon_sym_not_DASHlike2] = ACTIONS(1602), - [anon_sym_STAR_STAR2] = ACTIONS(1602), - [anon_sym_PLUS_PLUS2] = ACTIONS(1600), - [anon_sym_SLASH2] = ACTIONS(1600), - [anon_sym_mod2] = ACTIONS(1602), - [anon_sym_SLASH_SLASH2] = ACTIONS(1602), - [anon_sym_PLUS2] = ACTIONS(1600), - [anon_sym_bit_DASHshl2] = ACTIONS(1602), - [anon_sym_bit_DASHshr2] = ACTIONS(1602), - [anon_sym_bit_DASHand2] = ACTIONS(1602), - [anon_sym_bit_DASHxor2] = ACTIONS(1602), - [anon_sym_bit_DASHor2] = ACTIONS(1602), - [anon_sym_DOT_DOT2] = ACTIONS(1600), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1602), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1602), - [anon_sym_COLON2] = ACTIONS(1602), - [anon_sym_err_GT] = ACTIONS(1600), - [anon_sym_out_GT] = ACTIONS(1600), - [anon_sym_e_GT] = ACTIONS(1600), - [anon_sym_o_GT] = ACTIONS(1600), - [anon_sym_err_PLUSout_GT] = ACTIONS(1600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1600), - [anon_sym_o_PLUSe_GT] = ACTIONS(1600), - [anon_sym_e_PLUSo_GT] = ACTIONS(1600), - [anon_sym_err_GT_GT] = ACTIONS(1602), - [anon_sym_out_GT_GT] = ACTIONS(1602), - [anon_sym_e_GT_GT] = ACTIONS(1602), - [anon_sym_o_GT_GT] = ACTIONS(1602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1602), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(416)] = { + [anon_sym_in] = ACTIONS(1679), + [sym__newline] = ACTIONS(1679), + [anon_sym_SEMI] = ACTIONS(1679), + [anon_sym_PIPE] = ACTIONS(1679), + [anon_sym_err_GT_PIPE] = ACTIONS(1679), + [anon_sym_out_GT_PIPE] = ACTIONS(1679), + [anon_sym_e_GT_PIPE] = ACTIONS(1679), + [anon_sym_o_GT_PIPE] = ACTIONS(1679), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1679), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1679), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1679), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1679), + [anon_sym_RPAREN] = ACTIONS(1679), + [anon_sym_DOLLAR] = ACTIONS(1624), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1679), + [anon_sym_RBRACE] = ACTIONS(1679), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1679), + [anon_sym_xor2] = ACTIONS(1679), + [anon_sym_or2] = ACTIONS(1679), + [anon_sym_not_DASHin2] = ACTIONS(1679), + [anon_sym_has2] = ACTIONS(1679), + [anon_sym_not_DASHhas2] = ACTIONS(1679), + [anon_sym_starts_DASHwith2] = ACTIONS(1679), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1679), + [anon_sym_ends_DASHwith2] = ACTIONS(1679), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1679), + [anon_sym_EQ_EQ2] = ACTIONS(1679), + [anon_sym_BANG_EQ2] = ACTIONS(1679), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1679), + [anon_sym_GT_EQ2] = ACTIONS(1679), + [anon_sym_EQ_TILDE2] = ACTIONS(1679), + [anon_sym_BANG_TILDE2] = ACTIONS(1679), + [anon_sym_like2] = ACTIONS(1679), + [anon_sym_not_DASHlike2] = ACTIONS(1679), + [anon_sym_LPAREN2] = ACTIONS(1628), + [anon_sym_STAR_STAR2] = ACTIONS(1679), + [anon_sym_PLUS_PLUS2] = ACTIONS(1679), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1679), + [anon_sym_SLASH_SLASH2] = ACTIONS(1679), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1679), + [anon_sym_bit_DASHshr2] = ACTIONS(1679), + [anon_sym_bit_DASHand2] = ACTIONS(1679), + [anon_sym_bit_DASHxor2] = ACTIONS(1679), + [anon_sym_bit_DASHor2] = ACTIONS(1679), + [aux_sym__immediate_decimal_token1] = ACTIONS(1677), + [aux_sym__immediate_decimal_token2] = ACTIONS(1677), + [aux_sym__immediate_decimal_token3] = ACTIONS(1634), + [aux_sym__immediate_decimal_token4] = ACTIONS(1634), + [anon_sym_err_GT] = ACTIONS(1681), + [anon_sym_out_GT] = ACTIONS(1681), + [anon_sym_e_GT] = ACTIONS(1681), + [anon_sym_o_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT] = ACTIONS(1681), + [anon_sym_err_GT_GT] = ACTIONS(1679), + [anon_sym_out_GT_GT] = ACTIONS(1679), + [anon_sym_e_GT_GT] = ACTIONS(1679), + [anon_sym_o_GT_GT] = ACTIONS(1679), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1679), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1679), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1679), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1679), + [anon_sym_POUND] = ACTIONS(3), + }, + [416] = { + [sym_cell_path] = STATE(483), + [sym_path] = STATE(466), [sym_comment] = STATE(416), - [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(1675), - [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(417)] = { - [sym__expr_parenthesized_immediate] = STATE(762), - [sym__immediate_decimal] = STATE(763), - [sym_val_variable] = STATE(762), + [aux_sym__where_predicate_lhs_repeat1] = STATE(430), + [anon_sym_in] = ACTIONS(1683), + [sym__newline] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_err_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_GT_PIPE] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1683), + [anon_sym_RPAREN] = ACTIONS(1683), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1683), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_RBRACE] = ACTIONS(1683), + [anon_sym_EQ_GT] = ACTIONS(1683), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1683), + [anon_sym_xor2] = ACTIONS(1683), + [anon_sym_or2] = ACTIONS(1683), + [anon_sym_not_DASHin2] = ACTIONS(1683), + [anon_sym_has2] = ACTIONS(1683), + [anon_sym_not_DASHhas2] = ACTIONS(1683), + [anon_sym_starts_DASHwith2] = ACTIONS(1683), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1683), + [anon_sym_ends_DASHwith2] = ACTIONS(1683), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1683), + [anon_sym_EQ_EQ2] = ACTIONS(1683), + [anon_sym_BANG_EQ2] = ACTIONS(1683), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1683), + [anon_sym_GT_EQ2] = ACTIONS(1683), + [anon_sym_EQ_TILDE2] = ACTIONS(1683), + [anon_sym_BANG_TILDE2] = ACTIONS(1683), + [anon_sym_like2] = ACTIONS(1683), + [anon_sym_not_DASHlike2] = ACTIONS(1683), + [anon_sym_STAR_STAR2] = ACTIONS(1683), + [anon_sym_PLUS_PLUS2] = ACTIONS(1683), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1683), + [anon_sym_SLASH_SLASH2] = ACTIONS(1683), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1683), + [anon_sym_bit_DASHshr2] = ACTIONS(1683), + [anon_sym_bit_DASHand2] = ACTIONS(1683), + [anon_sym_bit_DASHxor2] = ACTIONS(1683), + [anon_sym_bit_DASHor2] = ACTIONS(1683), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [anon_sym_COLON2] = ACTIONS(1683), + [anon_sym_DOT2] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1683), + [anon_sym_out_GT_GT] = ACTIONS(1683), + [anon_sym_e_GT_GT] = ACTIONS(1683), + [anon_sym_o_GT_GT] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1683), + [anon_sym_POUND] = ACTIONS(3), + }, + [417] = { + [sym__expr_parenthesized_immediate] = STATE(758), + [sym__immediate_decimal] = STATE(981), + [sym_val_variable] = STATE(758), [sym_comment] = STATE(417), - [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(1630), - [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(1634), - [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(1663), - [aux_sym__immediate_decimal_token2] = ACTIONS(1663), - [aux_sym__immediate_decimal_token3] = ACTIONS(1640), - [aux_sym__immediate_decimal_token4] = ACTIONS(1640), - [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(418)] = { - [sym__expr_parenthesized_immediate] = STATE(764), - [sym__immediate_decimal] = STATE(765), - [sym_val_variable] = STATE(764), + [anon_sym_in] = ACTIONS(1687), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_RPAREN] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(1624), + [anon_sym_GT2] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_STAR2] = ACTIONS(1689), + [anon_sym_and2] = ACTIONS(1687), + [anon_sym_xor2] = ACTIONS(1687), + [anon_sym_or2] = ACTIONS(1687), + [anon_sym_not_DASHin2] = ACTIONS(1687), + [anon_sym_has2] = ACTIONS(1687), + [anon_sym_not_DASHhas2] = ACTIONS(1687), + [anon_sym_starts_DASHwith2] = ACTIONS(1687), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1687), + [anon_sym_ends_DASHwith2] = ACTIONS(1687), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1687), + [anon_sym_EQ_EQ2] = ACTIONS(1687), + [anon_sym_BANG_EQ2] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1689), + [anon_sym_LT_EQ2] = ACTIONS(1687), + [anon_sym_GT_EQ2] = ACTIONS(1687), + [anon_sym_EQ_TILDE2] = ACTIONS(1687), + [anon_sym_BANG_TILDE2] = ACTIONS(1687), + [anon_sym_like2] = ACTIONS(1687), + [anon_sym_not_DASHlike2] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(1628), + [anon_sym_STAR_STAR2] = ACTIONS(1687), + [anon_sym_PLUS_PLUS2] = ACTIONS(1687), + [anon_sym_SLASH2] = ACTIONS(1689), + [anon_sym_mod2] = ACTIONS(1687), + [anon_sym_SLASH_SLASH2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1689), + [anon_sym_bit_DASHshl2] = ACTIONS(1687), + [anon_sym_bit_DASHshr2] = ACTIONS(1687), + [anon_sym_bit_DASHand2] = ACTIONS(1687), + [anon_sym_bit_DASHxor2] = ACTIONS(1687), + [anon_sym_bit_DASHor2] = ACTIONS(1687), + [aux_sym__immediate_decimal_token1] = ACTIONS(1677), + [aux_sym__immediate_decimal_token2] = ACTIONS(1677), + [aux_sym__immediate_decimal_token3] = ACTIONS(1634), + [aux_sym__immediate_decimal_token4] = ACTIONS(1634), + [anon_sym_err_GT] = ACTIONS(1689), + [anon_sym_out_GT] = ACTIONS(1689), + [anon_sym_e_GT] = ACTIONS(1689), + [anon_sym_o_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT] = ACTIONS(1689), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), + [anon_sym_POUND] = ACTIONS(3), + }, + [418] = { [sym_comment] = STATE(418), - [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(1630), - [anon_sym_GT2] = ACTIONS(1683), - [anon_sym_DASH2] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1681), - [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(1634), - [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(1663), - [aux_sym__immediate_decimal_token2] = ACTIONS(1663), - [aux_sym__immediate_decimal_token3] = ACTIONS(1640), - [aux_sym__immediate_decimal_token4] = ACTIONS(1640), - [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(419)] = { - [sym__path_suffix] = STATE(479), + [ts_builtin_sym_end] = ACTIONS(1466), + [anon_sym_EQ] = ACTIONS(1464), + [anon_sym_PLUS_EQ] = ACTIONS(1466), + [anon_sym_DASH_EQ] = ACTIONS(1466), + [anon_sym_STAR_EQ] = ACTIONS(1466), + [anon_sym_SLASH_EQ] = ACTIONS(1466), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1466), + [anon_sym_in] = ACTIONS(1466), + [sym__newline] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_err_GT_PIPE] = ACTIONS(1466), + [anon_sym_out_GT_PIPE] = ACTIONS(1466), + [anon_sym_e_GT_PIPE] = ACTIONS(1466), + [anon_sym_o_GT_PIPE] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1466), + [anon_sym_GT2] = ACTIONS(1464), + [anon_sym_DASH2] = ACTIONS(1464), + [anon_sym_STAR2] = ACTIONS(1464), + [anon_sym_and2] = ACTIONS(1466), + [anon_sym_xor2] = ACTIONS(1466), + [anon_sym_or2] = ACTIONS(1466), + [anon_sym_not_DASHin2] = ACTIONS(1466), + [anon_sym_has2] = ACTIONS(1466), + [anon_sym_not_DASHhas2] = ACTIONS(1466), + [anon_sym_starts_DASHwith2] = ACTIONS(1466), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1466), + [anon_sym_ends_DASHwith2] = ACTIONS(1466), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1466), + [anon_sym_EQ_EQ2] = ACTIONS(1466), + [anon_sym_BANG_EQ2] = ACTIONS(1466), + [anon_sym_LT2] = ACTIONS(1464), + [anon_sym_LT_EQ2] = ACTIONS(1466), + [anon_sym_GT_EQ2] = ACTIONS(1466), + [anon_sym_EQ_TILDE2] = ACTIONS(1466), + [anon_sym_BANG_TILDE2] = ACTIONS(1466), + [anon_sym_like2] = ACTIONS(1466), + [anon_sym_not_DASHlike2] = ACTIONS(1466), + [anon_sym_STAR_STAR2] = ACTIONS(1466), + [anon_sym_PLUS_PLUS2] = ACTIONS(1464), + [anon_sym_SLASH2] = ACTIONS(1464), + [anon_sym_mod2] = ACTIONS(1466), + [anon_sym_SLASH_SLASH2] = ACTIONS(1466), + [anon_sym_PLUS2] = ACTIONS(1464), + [anon_sym_bit_DASHshl2] = ACTIONS(1466), + [anon_sym_bit_DASHshr2] = ACTIONS(1466), + [anon_sym_bit_DASHand2] = ACTIONS(1466), + [anon_sym_bit_DASHxor2] = ACTIONS(1466), + [anon_sym_bit_DASHor2] = ACTIONS(1466), + [anon_sym_DOT_DOT2] = ACTIONS(1464), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1466), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1466), + [anon_sym_QMARK2] = ACTIONS(1691), + [anon_sym_DOT2] = ACTIONS(1464), + [anon_sym_err_GT] = ACTIONS(1464), + [anon_sym_out_GT] = ACTIONS(1464), + [anon_sym_e_GT] = ACTIONS(1464), + [anon_sym_o_GT] = ACTIONS(1464), + [anon_sym_err_PLUSout_GT] = ACTIONS(1464), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1464), + [anon_sym_o_PLUSe_GT] = ACTIONS(1464), + [anon_sym_e_PLUSo_GT] = ACTIONS(1464), + [anon_sym_err_GT_GT] = ACTIONS(1466), + [anon_sym_out_GT_GT] = ACTIONS(1466), + [anon_sym_e_GT_GT] = ACTIONS(1466), + [anon_sym_o_GT_GT] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1466), + [anon_sym_POUND] = ACTIONS(3), + }, + [419] = { + [sym__expr_parenthesized_immediate] = STATE(758), + [sym__immediate_decimal] = STATE(985), + [sym_val_variable] = STATE(758), [sym_comment] = STATE(419), - [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(1685), - [anon_sym_BANG] = ACTIONS(1687), - [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(420)] = { - [sym__expr_parenthesized_immediate] = STATE(925), - [sym__immediate_decimal] = STATE(986), - [sym_val_variable] = STATE(925), + [anon_sym_in] = ACTIONS(1687), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_RPAREN] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(1624), + [anon_sym_GT2] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_STAR2] = ACTIONS(1689), + [anon_sym_and2] = ACTIONS(1687), + [anon_sym_xor2] = ACTIONS(1687), + [anon_sym_or2] = ACTIONS(1687), + [anon_sym_not_DASHin2] = ACTIONS(1687), + [anon_sym_has2] = ACTIONS(1687), + [anon_sym_not_DASHhas2] = ACTIONS(1687), + [anon_sym_starts_DASHwith2] = ACTIONS(1687), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1687), + [anon_sym_ends_DASHwith2] = ACTIONS(1687), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1687), + [anon_sym_EQ_EQ2] = ACTIONS(1687), + [anon_sym_BANG_EQ2] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1689), + [anon_sym_LT_EQ2] = ACTIONS(1687), + [anon_sym_GT_EQ2] = ACTIONS(1687), + [anon_sym_EQ_TILDE2] = ACTIONS(1687), + [anon_sym_BANG_TILDE2] = ACTIONS(1687), + [anon_sym_like2] = ACTIONS(1687), + [anon_sym_not_DASHlike2] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(1628), + [anon_sym_STAR_STAR2] = ACTIONS(1687), + [anon_sym_PLUS_PLUS2] = ACTIONS(1687), + [anon_sym_SLASH2] = ACTIONS(1689), + [anon_sym_mod2] = ACTIONS(1687), + [anon_sym_SLASH_SLASH2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1689), + [anon_sym_bit_DASHshl2] = ACTIONS(1687), + [anon_sym_bit_DASHshr2] = ACTIONS(1687), + [anon_sym_bit_DASHand2] = ACTIONS(1687), + [anon_sym_bit_DASHxor2] = ACTIONS(1687), + [anon_sym_bit_DASHor2] = ACTIONS(1687), + [aux_sym__immediate_decimal_token1] = ACTIONS(1693), + [aux_sym__immediate_decimal_token2] = ACTIONS(1693), + [aux_sym__immediate_decimal_token3] = ACTIONS(1695), + [aux_sym__immediate_decimal_token4] = ACTIONS(1695), + [anon_sym_err_GT] = ACTIONS(1689), + [anon_sym_out_GT] = ACTIONS(1689), + [anon_sym_e_GT] = ACTIONS(1689), + [anon_sym_o_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT] = ACTIONS(1689), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), + [sym__unquoted_pattern] = ACTIONS(1697), + [anon_sym_POUND] = ACTIONS(3), + }, + [420] = { + [sym__path_suffix] = STATE(478), [sym_comment] = STATE(420), - [anon_sym_in] = ACTIONS(1642), - [sym__newline] = ACTIONS(1642), - [anon_sym_SEMI] = ACTIONS(1642), - [anon_sym_PIPE] = ACTIONS(1642), - [anon_sym_err_GT_PIPE] = ACTIONS(1642), - [anon_sym_out_GT_PIPE] = ACTIONS(1642), - [anon_sym_e_GT_PIPE] = ACTIONS(1642), - [anon_sym_o_GT_PIPE] = ACTIONS(1642), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1642), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1642), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1642), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1642), - [anon_sym_RPAREN] = ACTIONS(1642), - [anon_sym_DOLLAR] = ACTIONS(1630), - [anon_sym_GT2] = ACTIONS(1644), - [anon_sym_DASH2] = ACTIONS(1644), - [anon_sym_LBRACE] = ACTIONS(1642), - [anon_sym_RBRACE] = ACTIONS(1642), - [anon_sym_STAR2] = ACTIONS(1644), - [anon_sym_and2] = ACTIONS(1642), - [anon_sym_xor2] = ACTIONS(1642), - [anon_sym_or2] = ACTIONS(1642), - [anon_sym_not_DASHin2] = ACTIONS(1642), - [anon_sym_has2] = ACTIONS(1642), - [anon_sym_not_DASHhas2] = ACTIONS(1642), - [anon_sym_starts_DASHwith2] = ACTIONS(1642), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1642), - [anon_sym_ends_DASHwith2] = ACTIONS(1642), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1642), - [anon_sym_EQ_EQ2] = ACTIONS(1642), - [anon_sym_BANG_EQ2] = ACTIONS(1642), - [anon_sym_LT2] = ACTIONS(1644), - [anon_sym_LT_EQ2] = ACTIONS(1642), - [anon_sym_GT_EQ2] = ACTIONS(1642), - [anon_sym_EQ_TILDE2] = ACTIONS(1642), - [anon_sym_BANG_TILDE2] = ACTIONS(1642), - [anon_sym_like2] = ACTIONS(1642), - [anon_sym_not_DASHlike2] = ACTIONS(1642), - [anon_sym_LPAREN2] = ACTIONS(1634), - [anon_sym_STAR_STAR2] = ACTIONS(1642), - [anon_sym_PLUS_PLUS2] = ACTIONS(1642), - [anon_sym_SLASH2] = ACTIONS(1644), - [anon_sym_mod2] = ACTIONS(1642), - [anon_sym_SLASH_SLASH2] = ACTIONS(1642), - [anon_sym_PLUS2] = ACTIONS(1644), - [anon_sym_bit_DASHshl2] = ACTIONS(1642), - [anon_sym_bit_DASHshr2] = ACTIONS(1642), - [anon_sym_bit_DASHand2] = ACTIONS(1642), - [anon_sym_bit_DASHxor2] = ACTIONS(1642), - [anon_sym_bit_DASHor2] = ACTIONS(1642), - [aux_sym__immediate_decimal_token1] = ACTIONS(1663), - [aux_sym__immediate_decimal_token2] = ACTIONS(1663), - [aux_sym__immediate_decimal_token3] = ACTIONS(1640), - [aux_sym__immediate_decimal_token4] = ACTIONS(1640), - [anon_sym_err_GT] = ACTIONS(1644), - [anon_sym_out_GT] = ACTIONS(1644), - [anon_sym_e_GT] = ACTIONS(1644), - [anon_sym_o_GT] = ACTIONS(1644), - [anon_sym_err_PLUSout_GT] = ACTIONS(1644), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1644), - [anon_sym_o_PLUSe_GT] = ACTIONS(1644), - [anon_sym_e_PLUSo_GT] = ACTIONS(1644), - [anon_sym_err_GT_GT] = ACTIONS(1642), - [anon_sym_out_GT_GT] = ACTIONS(1642), - [anon_sym_e_GT_GT] = ACTIONS(1642), - [anon_sym_o_GT_GT] = ACTIONS(1642), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1642), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1642), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1642), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1642), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(421)] = { - [sym__expr_parenthesized_immediate] = STATE(747), - [sym__immediate_decimal] = STATE(953), - [sym_val_variable] = STATE(747), + [anon_sym_in] = ACTIONS(1472), + [sym__newline] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1472), + [anon_sym_err_GT_PIPE] = ACTIONS(1472), + [anon_sym_out_GT_PIPE] = ACTIONS(1472), + [anon_sym_e_GT_PIPE] = ACTIONS(1472), + [anon_sym_o_GT_PIPE] = ACTIONS(1472), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), + [anon_sym_RPAREN] = ACTIONS(1472), + [anon_sym_GT2] = ACTIONS(1470), + [anon_sym_DASH2] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_EQ_GT] = ACTIONS(1472), + [anon_sym_STAR2] = ACTIONS(1470), + [anon_sym_and2] = ACTIONS(1472), + [anon_sym_xor2] = ACTIONS(1472), + [anon_sym_or2] = ACTIONS(1472), + [anon_sym_not_DASHin2] = ACTIONS(1472), + [anon_sym_has2] = ACTIONS(1472), + [anon_sym_not_DASHhas2] = ACTIONS(1472), + [anon_sym_starts_DASHwith2] = ACTIONS(1472), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1472), + [anon_sym_ends_DASHwith2] = ACTIONS(1472), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1472), + [anon_sym_EQ_EQ2] = ACTIONS(1472), + [anon_sym_BANG_EQ2] = ACTIONS(1472), + [anon_sym_LT2] = ACTIONS(1470), + [anon_sym_LT_EQ2] = ACTIONS(1472), + [anon_sym_GT_EQ2] = ACTIONS(1472), + [anon_sym_EQ_TILDE2] = ACTIONS(1472), + [anon_sym_BANG_TILDE2] = ACTIONS(1472), + [anon_sym_like2] = ACTIONS(1472), + [anon_sym_not_DASHlike2] = ACTIONS(1472), + [anon_sym_STAR_STAR2] = ACTIONS(1472), + [anon_sym_PLUS_PLUS2] = ACTIONS(1472), + [anon_sym_SLASH2] = ACTIONS(1470), + [anon_sym_mod2] = ACTIONS(1472), + [anon_sym_SLASH_SLASH2] = ACTIONS(1472), + [anon_sym_PLUS2] = ACTIONS(1470), + [anon_sym_bit_DASHshl2] = ACTIONS(1472), + [anon_sym_bit_DASHshr2] = ACTIONS(1472), + [anon_sym_bit_DASHand2] = ACTIONS(1472), + [anon_sym_bit_DASHxor2] = ACTIONS(1472), + [anon_sym_bit_DASHor2] = ACTIONS(1472), + [anon_sym_DOT_DOT2] = ACTIONS(1470), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), + [anon_sym_COLON2] = ACTIONS(1472), + [anon_sym_QMARK2] = ACTIONS(1699), + [anon_sym_BANG] = ACTIONS(1701), + [anon_sym_DOT2] = ACTIONS(1470), + [anon_sym_err_GT] = ACTIONS(1470), + [anon_sym_out_GT] = ACTIONS(1470), + [anon_sym_e_GT] = ACTIONS(1470), + [anon_sym_o_GT] = ACTIONS(1470), + [anon_sym_err_PLUSout_GT] = ACTIONS(1470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), + [anon_sym_o_PLUSe_GT] = ACTIONS(1470), + [anon_sym_e_PLUSo_GT] = ACTIONS(1470), + [anon_sym_err_GT_GT] = ACTIONS(1472), + [anon_sym_out_GT_GT] = ACTIONS(1472), + [anon_sym_e_GT_GT] = ACTIONS(1472), + [anon_sym_o_GT_GT] = ACTIONS(1472), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), + [anon_sym_POUND] = ACTIONS(3), + }, + [421] = { [sym_comment] = STATE(421), - [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_DOLLAR] = ACTIONS(1630), - [anon_sym_GT2] = ACTIONS(1691), - [anon_sym_DASH2] = ACTIONS(1691), - [anon_sym_LBRACE] = ACTIONS(1689), - [anon_sym_RBRACE] = 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_LPAREN2] = ACTIONS(1634), - [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), - [aux_sym__immediate_decimal_token1] = ACTIONS(1663), - [aux_sym__immediate_decimal_token2] = ACTIONS(1663), - [aux_sym__immediate_decimal_token3] = ACTIONS(1640), - [aux_sym__immediate_decimal_token4] = ACTIONS(1640), - [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(422)] = { - [sym__expr_parenthesized_immediate] = STATE(957), - [sym__immediate_decimal] = STATE(724), - [sym_val_variable] = STATE(957), + [anon_sym_EQ] = ACTIONS(1596), + [anon_sym_PLUS_EQ] = ACTIONS(1598), + [anon_sym_DASH_EQ] = ACTIONS(1598), + [anon_sym_STAR_EQ] = ACTIONS(1598), + [anon_sym_SLASH_EQ] = ACTIONS(1598), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1598), + [anon_sym_in] = ACTIONS(1598), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_GT2] = ACTIONS(1596), + [anon_sym_DASH2] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_STAR2] = ACTIONS(1596), + [anon_sym_and2] = ACTIONS(1598), + [anon_sym_xor2] = ACTIONS(1598), + [anon_sym_or2] = ACTIONS(1598), + [anon_sym_not_DASHin2] = ACTIONS(1598), + [anon_sym_has2] = ACTIONS(1598), + [anon_sym_not_DASHhas2] = ACTIONS(1598), + [anon_sym_starts_DASHwith2] = ACTIONS(1598), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1598), + [anon_sym_ends_DASHwith2] = ACTIONS(1598), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1598), + [anon_sym_EQ_EQ2] = ACTIONS(1598), + [anon_sym_BANG_EQ2] = ACTIONS(1598), + [anon_sym_LT2] = ACTIONS(1596), + [anon_sym_LT_EQ2] = ACTIONS(1598), + [anon_sym_GT_EQ2] = ACTIONS(1598), + [anon_sym_EQ_TILDE2] = ACTIONS(1598), + [anon_sym_BANG_TILDE2] = ACTIONS(1598), + [anon_sym_like2] = ACTIONS(1598), + [anon_sym_not_DASHlike2] = ACTIONS(1598), + [anon_sym_STAR_STAR2] = ACTIONS(1598), + [anon_sym_PLUS_PLUS2] = ACTIONS(1596), + [anon_sym_SLASH2] = ACTIONS(1596), + [anon_sym_mod2] = ACTIONS(1598), + [anon_sym_SLASH_SLASH2] = ACTIONS(1598), + [anon_sym_PLUS2] = ACTIONS(1596), + [anon_sym_bit_DASHshl2] = ACTIONS(1598), + [anon_sym_bit_DASHshr2] = ACTIONS(1598), + [anon_sym_bit_DASHand2] = ACTIONS(1598), + [anon_sym_bit_DASHxor2] = ACTIONS(1598), + [anon_sym_bit_DASHor2] = ACTIONS(1598), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [anon_sym_COLON2] = ACTIONS(1598), + [anon_sym_err_GT] = ACTIONS(1596), + [anon_sym_out_GT] = ACTIONS(1596), + [anon_sym_e_GT] = ACTIONS(1596), + [anon_sym_o_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT] = ACTIONS(1596), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(3), + }, + [422] = { + [sym__expr_parenthesized_immediate] = STATE(851), + [sym__immediate_decimal] = STATE(946), + [sym_val_variable] = STATE(851), [sym_comment] = STATE(422), - [ts_builtin_sym_end] = ACTIONS(1642), - [anon_sym_in] = ACTIONS(1642), - [sym__newline] = ACTIONS(1642), - [anon_sym_SEMI] = ACTIONS(1642), - [anon_sym_PIPE] = ACTIONS(1642), - [anon_sym_err_GT_PIPE] = ACTIONS(1642), - [anon_sym_out_GT_PIPE] = ACTIONS(1642), - [anon_sym_e_GT_PIPE] = ACTIONS(1642), - [anon_sym_o_GT_PIPE] = ACTIONS(1642), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1642), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1642), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1642), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1642), - [anon_sym_DOLLAR] = ACTIONS(1693), - [anon_sym_GT2] = ACTIONS(1644), - [anon_sym_DASH2] = ACTIONS(1644), - [anon_sym_STAR2] = ACTIONS(1644), - [anon_sym_and2] = ACTIONS(1642), - [anon_sym_xor2] = ACTIONS(1642), - [anon_sym_or2] = ACTIONS(1642), - [anon_sym_not_DASHin2] = ACTIONS(1642), - [anon_sym_has2] = ACTIONS(1642), - [anon_sym_not_DASHhas2] = ACTIONS(1642), - [anon_sym_starts_DASHwith2] = ACTIONS(1642), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1642), - [anon_sym_ends_DASHwith2] = ACTIONS(1642), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1642), - [anon_sym_EQ_EQ2] = ACTIONS(1642), - [anon_sym_BANG_EQ2] = ACTIONS(1642), - [anon_sym_LT2] = ACTIONS(1644), - [anon_sym_LT_EQ2] = ACTIONS(1642), - [anon_sym_GT_EQ2] = ACTIONS(1642), - [anon_sym_EQ_TILDE2] = ACTIONS(1642), - [anon_sym_BANG_TILDE2] = ACTIONS(1642), - [anon_sym_like2] = ACTIONS(1642), - [anon_sym_not_DASHlike2] = ACTIONS(1642), - [anon_sym_LPAREN2] = ACTIONS(1695), - [anon_sym_STAR_STAR2] = ACTIONS(1642), - [anon_sym_PLUS_PLUS2] = ACTIONS(1642), - [anon_sym_SLASH2] = ACTIONS(1644), - [anon_sym_mod2] = ACTIONS(1642), - [anon_sym_SLASH_SLASH2] = ACTIONS(1642), - [anon_sym_PLUS2] = ACTIONS(1644), - [anon_sym_bit_DASHshl2] = ACTIONS(1642), - [anon_sym_bit_DASHshr2] = ACTIONS(1642), - [anon_sym_bit_DASHand2] = ACTIONS(1642), - [anon_sym_bit_DASHxor2] = ACTIONS(1642), - [anon_sym_bit_DASHor2] = ACTIONS(1642), - [anon_sym_DOT] = ACTIONS(1697), - [aux_sym__immediate_decimal_token1] = ACTIONS(1699), - [aux_sym__immediate_decimal_token2] = ACTIONS(1699), - [aux_sym__immediate_decimal_token3] = ACTIONS(1701), - [aux_sym__immediate_decimal_token4] = ACTIONS(1701), - [anon_sym_err_GT] = ACTIONS(1644), - [anon_sym_out_GT] = ACTIONS(1644), - [anon_sym_e_GT] = ACTIONS(1644), - [anon_sym_o_GT] = ACTIONS(1644), - [anon_sym_err_PLUSout_GT] = ACTIONS(1644), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1644), - [anon_sym_o_PLUSe_GT] = ACTIONS(1644), - [anon_sym_e_PLUSo_GT] = ACTIONS(1644), - [anon_sym_err_GT_GT] = ACTIONS(1642), - [anon_sym_out_GT_GT] = ACTIONS(1642), - [anon_sym_e_GT_GT] = ACTIONS(1642), - [anon_sym_o_GT_GT] = ACTIONS(1642), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1642), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1642), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1642), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1642), - [sym__unquoted_pattern] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(423)] = { - [sym_cell_path] = STATE(482), - [sym_path] = STATE(472), + [anon_sym_in] = ACTIONS(1622), + [sym__newline] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_PIPE] = ACTIONS(1622), + [anon_sym_err_GT_PIPE] = ACTIONS(1622), + [anon_sym_out_GT_PIPE] = ACTIONS(1622), + [anon_sym_e_GT_PIPE] = ACTIONS(1622), + [anon_sym_o_GT_PIPE] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1622), + [anon_sym_RPAREN] = ACTIONS(1622), + [anon_sym_DOLLAR] = ACTIONS(1624), + [anon_sym_GT2] = ACTIONS(1626), + [anon_sym_DASH2] = ACTIONS(1626), + [anon_sym_RBRACE] = ACTIONS(1622), + [anon_sym_STAR2] = ACTIONS(1626), + [anon_sym_and2] = ACTIONS(1622), + [anon_sym_xor2] = ACTIONS(1622), + [anon_sym_or2] = ACTIONS(1622), + [anon_sym_not_DASHin2] = ACTIONS(1622), + [anon_sym_has2] = ACTIONS(1622), + [anon_sym_not_DASHhas2] = ACTIONS(1622), + [anon_sym_starts_DASHwith2] = ACTIONS(1622), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1622), + [anon_sym_ends_DASHwith2] = ACTIONS(1622), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1622), + [anon_sym_EQ_EQ2] = ACTIONS(1622), + [anon_sym_BANG_EQ2] = ACTIONS(1622), + [anon_sym_LT2] = ACTIONS(1626), + [anon_sym_LT_EQ2] = ACTIONS(1622), + [anon_sym_GT_EQ2] = ACTIONS(1622), + [anon_sym_EQ_TILDE2] = ACTIONS(1622), + [anon_sym_BANG_TILDE2] = ACTIONS(1622), + [anon_sym_like2] = ACTIONS(1622), + [anon_sym_not_DASHlike2] = ACTIONS(1622), + [anon_sym_LPAREN2] = ACTIONS(1628), + [anon_sym_STAR_STAR2] = ACTIONS(1622), + [anon_sym_PLUS_PLUS2] = ACTIONS(1622), + [anon_sym_SLASH2] = ACTIONS(1626), + [anon_sym_mod2] = ACTIONS(1622), + [anon_sym_SLASH_SLASH2] = ACTIONS(1622), + [anon_sym_PLUS2] = ACTIONS(1626), + [anon_sym_bit_DASHshl2] = ACTIONS(1622), + [anon_sym_bit_DASHshr2] = ACTIONS(1622), + [anon_sym_bit_DASHand2] = ACTIONS(1622), + [anon_sym_bit_DASHxor2] = ACTIONS(1622), + [anon_sym_bit_DASHor2] = ACTIONS(1622), + [aux_sym__immediate_decimal_token1] = ACTIONS(1693), + [aux_sym__immediate_decimal_token2] = ACTIONS(1693), + [aux_sym__immediate_decimal_token3] = ACTIONS(1695), + [aux_sym__immediate_decimal_token4] = ACTIONS(1695), + [anon_sym_err_GT] = ACTIONS(1626), + [anon_sym_out_GT] = ACTIONS(1626), + [anon_sym_e_GT] = ACTIONS(1626), + [anon_sym_o_GT] = ACTIONS(1626), + [anon_sym_err_PLUSout_GT] = ACTIONS(1626), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1626), + [anon_sym_o_PLUSe_GT] = ACTIONS(1626), + [anon_sym_e_PLUSo_GT] = ACTIONS(1626), + [anon_sym_err_GT_GT] = ACTIONS(1622), + [anon_sym_out_GT_GT] = ACTIONS(1622), + [anon_sym_e_GT_GT] = ACTIONS(1622), + [anon_sym_o_GT_GT] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1622), + [sym__unquoted_pattern] = ACTIONS(1636), + [anon_sym_POUND] = ACTIONS(3), + }, + [423] = { + [sym__expr_parenthesized_immediate] = STATE(965), + [sym__immediate_decimal] = STATE(734), + [sym_val_variable] = STATE(965), [sym_comment] = STATE(423), - [aux_sym__where_predicate_lhs_repeat1] = STATE(438), - [anon_sym_in] = ACTIONS(1703), - [sym__newline] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_err_GT_PIPE] = ACTIONS(1703), - [anon_sym_out_GT_PIPE] = ACTIONS(1703), - [anon_sym_e_GT_PIPE] = ACTIONS(1703), - [anon_sym_o_GT_PIPE] = ACTIONS(1703), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), - [anon_sym_RPAREN] = ACTIONS(1703), - [anon_sym_GT2] = ACTIONS(1705), - [anon_sym_DASH2] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_EQ_GT] = ACTIONS(1703), - [anon_sym_STAR2] = ACTIONS(1705), - [anon_sym_and2] = ACTIONS(1703), - [anon_sym_xor2] = ACTIONS(1703), - [anon_sym_or2] = ACTIONS(1703), - [anon_sym_not_DASHin2] = ACTIONS(1703), - [anon_sym_has2] = ACTIONS(1703), - [anon_sym_not_DASHhas2] = ACTIONS(1703), - [anon_sym_starts_DASHwith2] = ACTIONS(1703), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1703), - [anon_sym_ends_DASHwith2] = ACTIONS(1703), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1703), - [anon_sym_EQ_EQ2] = ACTIONS(1703), - [anon_sym_BANG_EQ2] = ACTIONS(1703), - [anon_sym_LT2] = ACTIONS(1705), - [anon_sym_LT_EQ2] = ACTIONS(1703), - [anon_sym_GT_EQ2] = ACTIONS(1703), - [anon_sym_EQ_TILDE2] = ACTIONS(1703), - [anon_sym_BANG_TILDE2] = ACTIONS(1703), - [anon_sym_like2] = ACTIONS(1703), - [anon_sym_not_DASHlike2] = ACTIONS(1703), - [anon_sym_STAR_STAR2] = ACTIONS(1703), - [anon_sym_PLUS_PLUS2] = ACTIONS(1703), - [anon_sym_SLASH2] = ACTIONS(1705), - [anon_sym_mod2] = ACTIONS(1703), - [anon_sym_SLASH_SLASH2] = ACTIONS(1703), - [anon_sym_PLUS2] = ACTIONS(1705), - [anon_sym_bit_DASHshl2] = ACTIONS(1703), - [anon_sym_bit_DASHshr2] = ACTIONS(1703), - [anon_sym_bit_DASHand2] = ACTIONS(1703), - [anon_sym_bit_DASHxor2] = ACTIONS(1703), - [anon_sym_bit_DASHor2] = ACTIONS(1703), - [anon_sym_DOT_DOT2] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), - [anon_sym_COLON2] = ACTIONS(1703), - [anon_sym_DOT2] = ACTIONS(1673), - [anon_sym_err_GT] = ACTIONS(1705), - [anon_sym_out_GT] = ACTIONS(1705), - [anon_sym_e_GT] = ACTIONS(1705), - [anon_sym_o_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT] = ACTIONS(1705), - [anon_sym_err_GT_GT] = ACTIONS(1703), - [anon_sym_out_GT_GT] = ACTIONS(1703), - [anon_sym_e_GT_GT] = ACTIONS(1703), - [anon_sym_o_GT_GT] = ACTIONS(1703), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(424)] = { - [sym__expr_parenthesized_immediate] = STATE(760), - [sym__immediate_decimal] = STATE(761), - [sym_val_variable] = STATE(760), + [ts_builtin_sym_end] = ACTIONS(1622), + [anon_sym_in] = ACTIONS(1622), + [sym__newline] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_PIPE] = ACTIONS(1622), + [anon_sym_err_GT_PIPE] = ACTIONS(1622), + [anon_sym_out_GT_PIPE] = ACTIONS(1622), + [anon_sym_e_GT_PIPE] = ACTIONS(1622), + [anon_sym_o_GT_PIPE] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1622), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_GT2] = ACTIONS(1626), + [anon_sym_DASH2] = ACTIONS(1626), + [anon_sym_STAR2] = ACTIONS(1626), + [anon_sym_and2] = ACTIONS(1622), + [anon_sym_xor2] = ACTIONS(1622), + [anon_sym_or2] = ACTIONS(1622), + [anon_sym_not_DASHin2] = ACTIONS(1622), + [anon_sym_has2] = ACTIONS(1622), + [anon_sym_not_DASHhas2] = ACTIONS(1622), + [anon_sym_starts_DASHwith2] = ACTIONS(1622), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1622), + [anon_sym_ends_DASHwith2] = ACTIONS(1622), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1622), + [anon_sym_EQ_EQ2] = ACTIONS(1622), + [anon_sym_BANG_EQ2] = ACTIONS(1622), + [anon_sym_LT2] = ACTIONS(1626), + [anon_sym_LT_EQ2] = ACTIONS(1622), + [anon_sym_GT_EQ2] = ACTIONS(1622), + [anon_sym_EQ_TILDE2] = ACTIONS(1622), + [anon_sym_BANG_TILDE2] = ACTIONS(1622), + [anon_sym_like2] = ACTIONS(1622), + [anon_sym_not_DASHlike2] = ACTIONS(1622), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_STAR_STAR2] = ACTIONS(1622), + [anon_sym_PLUS_PLUS2] = ACTIONS(1622), + [anon_sym_SLASH2] = ACTIONS(1626), + [anon_sym_mod2] = ACTIONS(1622), + [anon_sym_SLASH_SLASH2] = ACTIONS(1622), + [anon_sym_PLUS2] = ACTIONS(1626), + [anon_sym_bit_DASHshl2] = ACTIONS(1622), + [anon_sym_bit_DASHshr2] = ACTIONS(1622), + [anon_sym_bit_DASHand2] = ACTIONS(1622), + [anon_sym_bit_DASHxor2] = ACTIONS(1622), + [anon_sym_bit_DASHor2] = ACTIONS(1622), + [anon_sym_DOT] = ACTIONS(1707), + [aux_sym__immediate_decimal_token1] = ACTIONS(1709), + [aux_sym__immediate_decimal_token2] = ACTIONS(1709), + [aux_sym__immediate_decimal_token3] = ACTIONS(1711), + [aux_sym__immediate_decimal_token4] = ACTIONS(1711), + [anon_sym_err_GT] = ACTIONS(1626), + [anon_sym_out_GT] = ACTIONS(1626), + [anon_sym_e_GT] = ACTIONS(1626), + [anon_sym_o_GT] = ACTIONS(1626), + [anon_sym_err_PLUSout_GT] = ACTIONS(1626), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1626), + [anon_sym_o_PLUSe_GT] = ACTIONS(1626), + [anon_sym_e_PLUSo_GT] = ACTIONS(1626), + [anon_sym_err_GT_GT] = ACTIONS(1622), + [anon_sym_out_GT_GT] = ACTIONS(1622), + [anon_sym_e_GT_GT] = ACTIONS(1622), + [anon_sym_o_GT_GT] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1622), + [sym__unquoted_pattern] = ACTIONS(1636), + [anon_sym_POUND] = ACTIONS(3), + }, + [424] = { [sym_comment] = STATE(424), - [anon_sym_in] = ACTIONS(1707), - [sym__newline] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_RPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1630), - [anon_sym_GT2] = ACTIONS(1709), - [anon_sym_DASH2] = ACTIONS(1709), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_STAR2] = ACTIONS(1709), - [anon_sym_and2] = ACTIONS(1707), - [anon_sym_xor2] = ACTIONS(1707), - [anon_sym_or2] = ACTIONS(1707), - [anon_sym_not_DASHin2] = ACTIONS(1707), - [anon_sym_has2] = ACTIONS(1707), - [anon_sym_not_DASHhas2] = ACTIONS(1707), - [anon_sym_starts_DASHwith2] = ACTIONS(1707), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1707), - [anon_sym_ends_DASHwith2] = ACTIONS(1707), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1707), - [anon_sym_EQ_EQ2] = ACTIONS(1707), - [anon_sym_BANG_EQ2] = ACTIONS(1707), - [anon_sym_LT2] = ACTIONS(1709), - [anon_sym_LT_EQ2] = ACTIONS(1707), - [anon_sym_GT_EQ2] = ACTIONS(1707), - [anon_sym_EQ_TILDE2] = ACTIONS(1707), - [anon_sym_BANG_TILDE2] = ACTIONS(1707), - [anon_sym_like2] = ACTIONS(1707), - [anon_sym_not_DASHlike2] = ACTIONS(1707), - [anon_sym_LPAREN2] = ACTIONS(1634), - [anon_sym_STAR_STAR2] = ACTIONS(1707), - [anon_sym_PLUS_PLUS2] = ACTIONS(1707), - [anon_sym_SLASH2] = ACTIONS(1709), - [anon_sym_mod2] = ACTIONS(1707), - [anon_sym_SLASH_SLASH2] = ACTIONS(1707), - [anon_sym_PLUS2] = ACTIONS(1709), - [anon_sym_bit_DASHshl2] = ACTIONS(1707), - [anon_sym_bit_DASHshr2] = ACTIONS(1707), - [anon_sym_bit_DASHand2] = ACTIONS(1707), - [anon_sym_bit_DASHxor2] = ACTIONS(1707), - [anon_sym_bit_DASHor2] = ACTIONS(1707), - [aux_sym__immediate_decimal_token1] = ACTIONS(1663), - [aux_sym__immediate_decimal_token2] = ACTIONS(1663), - [aux_sym__immediate_decimal_token3] = ACTIONS(1640), - [aux_sym__immediate_decimal_token4] = ACTIONS(1640), - [anon_sym_err_GT] = ACTIONS(1709), - [anon_sym_out_GT] = ACTIONS(1709), - [anon_sym_e_GT] = ACTIONS(1709), - [anon_sym_o_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT] = ACTIONS(1709), - [anon_sym_err_GT_GT] = ACTIONS(1707), - [anon_sym_out_GT_GT] = ACTIONS(1707), - [anon_sym_e_GT_GT] = ACTIONS(1707), - [anon_sym_o_GT_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(425)] = { - [sym__expr_parenthesized_immediate] = STATE(747), - [sym__immediate_decimal] = STATE(956), - [sym_val_variable] = STATE(747), + [ts_builtin_sym_end] = ACTIONS(1466), + [anon_sym_EQ] = ACTIONS(1464), + [anon_sym_PLUS_EQ] = ACTIONS(1466), + [anon_sym_DASH_EQ] = ACTIONS(1466), + [anon_sym_STAR_EQ] = ACTIONS(1466), + [anon_sym_SLASH_EQ] = ACTIONS(1466), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1466), + [anon_sym_in] = ACTIONS(1466), + [sym__newline] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_err_GT_PIPE] = ACTIONS(1466), + [anon_sym_out_GT_PIPE] = ACTIONS(1466), + [anon_sym_e_GT_PIPE] = ACTIONS(1466), + [anon_sym_o_GT_PIPE] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1466), + [anon_sym_GT2] = ACTIONS(1464), + [anon_sym_DASH2] = ACTIONS(1464), + [anon_sym_STAR2] = ACTIONS(1464), + [anon_sym_and2] = ACTIONS(1466), + [anon_sym_xor2] = ACTIONS(1466), + [anon_sym_or2] = ACTIONS(1466), + [anon_sym_not_DASHin2] = ACTIONS(1466), + [anon_sym_has2] = ACTIONS(1466), + [anon_sym_not_DASHhas2] = ACTIONS(1466), + [anon_sym_starts_DASHwith2] = ACTIONS(1466), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1466), + [anon_sym_ends_DASHwith2] = ACTIONS(1466), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1466), + [anon_sym_EQ_EQ2] = ACTIONS(1466), + [anon_sym_BANG_EQ2] = ACTIONS(1466), + [anon_sym_LT2] = ACTIONS(1464), + [anon_sym_LT_EQ2] = ACTIONS(1466), + [anon_sym_GT_EQ2] = ACTIONS(1466), + [anon_sym_EQ_TILDE2] = ACTIONS(1466), + [anon_sym_BANG_TILDE2] = ACTIONS(1466), + [anon_sym_like2] = ACTIONS(1466), + [anon_sym_not_DASHlike2] = ACTIONS(1466), + [anon_sym_STAR_STAR2] = ACTIONS(1466), + [anon_sym_PLUS_PLUS2] = ACTIONS(1464), + [anon_sym_SLASH2] = ACTIONS(1464), + [anon_sym_mod2] = ACTIONS(1466), + [anon_sym_SLASH_SLASH2] = ACTIONS(1466), + [anon_sym_PLUS2] = ACTIONS(1464), + [anon_sym_bit_DASHshl2] = ACTIONS(1466), + [anon_sym_bit_DASHshr2] = ACTIONS(1466), + [anon_sym_bit_DASHand2] = ACTIONS(1466), + [anon_sym_bit_DASHxor2] = ACTIONS(1466), + [anon_sym_bit_DASHor2] = ACTIONS(1466), + [anon_sym_DOT_DOT2] = ACTIONS(1464), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1466), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_DOT2] = ACTIONS(1464), + [anon_sym_err_GT] = ACTIONS(1464), + [anon_sym_out_GT] = ACTIONS(1464), + [anon_sym_e_GT] = ACTIONS(1464), + [anon_sym_o_GT] = ACTIONS(1464), + [anon_sym_err_PLUSout_GT] = ACTIONS(1464), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1464), + [anon_sym_o_PLUSe_GT] = ACTIONS(1464), + [anon_sym_e_PLUSo_GT] = ACTIONS(1464), + [anon_sym_err_GT_GT] = ACTIONS(1466), + [anon_sym_out_GT_GT] = ACTIONS(1466), + [anon_sym_e_GT_GT] = ACTIONS(1466), + [anon_sym_o_GT_GT] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1466), + [anon_sym_POUND] = ACTIONS(3), + }, + [425] = { + [sym__expr_parenthesized_immediate] = STATE(762), + [sym__immediate_decimal] = STATE(761), + [sym_val_variable] = STATE(762), [sym_comment] = STATE(425), - [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_DOLLAR] = ACTIONS(1630), - [anon_sym_GT2] = ACTIONS(1691), - [anon_sym_DASH2] = ACTIONS(1691), - [anon_sym_RBRACE] = 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_LPAREN2] = ACTIONS(1634), - [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), - [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(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), - [sym__unquoted_pattern] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(426)] = { + [anon_sym_in] = ACTIONS(1715), + [sym__newline] = ACTIONS(1715), + [anon_sym_SEMI] = ACTIONS(1715), + [anon_sym_PIPE] = ACTIONS(1715), + [anon_sym_err_GT_PIPE] = ACTIONS(1715), + [anon_sym_out_GT_PIPE] = ACTIONS(1715), + [anon_sym_e_GT_PIPE] = ACTIONS(1715), + [anon_sym_o_GT_PIPE] = ACTIONS(1715), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1715), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1715), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1715), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1715), + [anon_sym_RPAREN] = ACTIONS(1715), + [anon_sym_DOLLAR] = ACTIONS(1624), + [anon_sym_GT2] = ACTIONS(1717), + [anon_sym_DASH2] = ACTIONS(1717), + [anon_sym_LBRACE] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1715), + [anon_sym_STAR2] = ACTIONS(1717), + [anon_sym_and2] = ACTIONS(1715), + [anon_sym_xor2] = ACTIONS(1715), + [anon_sym_or2] = ACTIONS(1715), + [anon_sym_not_DASHin2] = ACTIONS(1715), + [anon_sym_has2] = ACTIONS(1715), + [anon_sym_not_DASHhas2] = ACTIONS(1715), + [anon_sym_starts_DASHwith2] = ACTIONS(1715), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1715), + [anon_sym_ends_DASHwith2] = ACTIONS(1715), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1715), + [anon_sym_EQ_EQ2] = ACTIONS(1715), + [anon_sym_BANG_EQ2] = ACTIONS(1715), + [anon_sym_LT2] = ACTIONS(1717), + [anon_sym_LT_EQ2] = ACTIONS(1715), + [anon_sym_GT_EQ2] = ACTIONS(1715), + [anon_sym_EQ_TILDE2] = ACTIONS(1715), + [anon_sym_BANG_TILDE2] = ACTIONS(1715), + [anon_sym_like2] = ACTIONS(1715), + [anon_sym_not_DASHlike2] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1628), + [anon_sym_STAR_STAR2] = ACTIONS(1715), + [anon_sym_PLUS_PLUS2] = ACTIONS(1715), + [anon_sym_SLASH2] = ACTIONS(1717), + [anon_sym_mod2] = ACTIONS(1715), + [anon_sym_SLASH_SLASH2] = ACTIONS(1715), + [anon_sym_PLUS2] = ACTIONS(1717), + [anon_sym_bit_DASHshl2] = ACTIONS(1715), + [anon_sym_bit_DASHshr2] = ACTIONS(1715), + [anon_sym_bit_DASHand2] = ACTIONS(1715), + [anon_sym_bit_DASHxor2] = ACTIONS(1715), + [anon_sym_bit_DASHor2] = ACTIONS(1715), + [aux_sym__immediate_decimal_token1] = ACTIONS(1677), + [aux_sym__immediate_decimal_token2] = ACTIONS(1677), + [aux_sym__immediate_decimal_token3] = ACTIONS(1634), + [aux_sym__immediate_decimal_token4] = ACTIONS(1634), + [anon_sym_err_GT] = ACTIONS(1717), + [anon_sym_out_GT] = ACTIONS(1717), + [anon_sym_e_GT] = ACTIONS(1717), + [anon_sym_o_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT] = ACTIONS(1717), + [anon_sym_err_GT_GT] = ACTIONS(1715), + [anon_sym_out_GT_GT] = ACTIONS(1715), + [anon_sym_e_GT_GT] = ACTIONS(1715), + [anon_sym_o_GT_GT] = ACTIONS(1715), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1715), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1715), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1715), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(3), + }, + [426] = { + [sym__expr_parenthesized_immediate] = STATE(851), + [sym__immediate_decimal] = STATE(960), + [sym_val_variable] = STATE(851), [sym_comment] = STATE(426), - [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(1713), - [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(427)] = { + [anon_sym_in] = ACTIONS(1622), + [sym__newline] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_PIPE] = ACTIONS(1622), + [anon_sym_err_GT_PIPE] = ACTIONS(1622), + [anon_sym_out_GT_PIPE] = ACTIONS(1622), + [anon_sym_e_GT_PIPE] = ACTIONS(1622), + [anon_sym_o_GT_PIPE] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1622), + [anon_sym_RPAREN] = ACTIONS(1622), + [anon_sym_DOLLAR] = ACTIONS(1624), + [anon_sym_GT2] = ACTIONS(1626), + [anon_sym_DASH2] = ACTIONS(1626), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1622), + [anon_sym_STAR2] = ACTIONS(1626), + [anon_sym_and2] = ACTIONS(1622), + [anon_sym_xor2] = ACTIONS(1622), + [anon_sym_or2] = ACTIONS(1622), + [anon_sym_not_DASHin2] = ACTIONS(1622), + [anon_sym_has2] = ACTIONS(1622), + [anon_sym_not_DASHhas2] = ACTIONS(1622), + [anon_sym_starts_DASHwith2] = ACTIONS(1622), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1622), + [anon_sym_ends_DASHwith2] = ACTIONS(1622), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1622), + [anon_sym_EQ_EQ2] = ACTIONS(1622), + [anon_sym_BANG_EQ2] = ACTIONS(1622), + [anon_sym_LT2] = ACTIONS(1626), + [anon_sym_LT_EQ2] = ACTIONS(1622), + [anon_sym_GT_EQ2] = ACTIONS(1622), + [anon_sym_EQ_TILDE2] = ACTIONS(1622), + [anon_sym_BANG_TILDE2] = ACTIONS(1622), + [anon_sym_like2] = ACTIONS(1622), + [anon_sym_not_DASHlike2] = ACTIONS(1622), + [anon_sym_LPAREN2] = ACTIONS(1628), + [anon_sym_STAR_STAR2] = ACTIONS(1622), + [anon_sym_PLUS_PLUS2] = ACTIONS(1622), + [anon_sym_SLASH2] = ACTIONS(1626), + [anon_sym_mod2] = ACTIONS(1622), + [anon_sym_SLASH_SLASH2] = ACTIONS(1622), + [anon_sym_PLUS2] = ACTIONS(1626), + [anon_sym_bit_DASHshl2] = ACTIONS(1622), + [anon_sym_bit_DASHshr2] = ACTIONS(1622), + [anon_sym_bit_DASHand2] = ACTIONS(1622), + [anon_sym_bit_DASHxor2] = ACTIONS(1622), + [anon_sym_bit_DASHor2] = ACTIONS(1622), + [aux_sym__immediate_decimal_token1] = ACTIONS(1677), + [aux_sym__immediate_decimal_token2] = ACTIONS(1677), + [aux_sym__immediate_decimal_token3] = ACTIONS(1634), + [aux_sym__immediate_decimal_token4] = ACTIONS(1634), + [anon_sym_err_GT] = ACTIONS(1626), + [anon_sym_out_GT] = ACTIONS(1626), + [anon_sym_e_GT] = ACTIONS(1626), + [anon_sym_o_GT] = ACTIONS(1626), + [anon_sym_err_PLUSout_GT] = ACTIONS(1626), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1626), + [anon_sym_o_PLUSe_GT] = ACTIONS(1626), + [anon_sym_e_PLUSo_GT] = ACTIONS(1626), + [anon_sym_err_GT_GT] = ACTIONS(1622), + [anon_sym_out_GT_GT] = ACTIONS(1622), + [anon_sym_e_GT_GT] = ACTIONS(1622), + [anon_sym_o_GT_GT] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1622), + [anon_sym_POUND] = ACTIONS(3), + }, + [427] = { [sym_comment] = STATE(427), - [anon_sym_in] = ACTIONS(1533), - [sym__newline] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1533), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_err_GT_PIPE] = ACTIONS(1533), - [anon_sym_out_GT_PIPE] = ACTIONS(1533), - [anon_sym_e_GT_PIPE] = ACTIONS(1533), - [anon_sym_o_GT_PIPE] = ACTIONS(1533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1533), - [anon_sym_RPAREN] = ACTIONS(1533), - [anon_sym_GT2] = ACTIONS(1531), - [anon_sym_DASH2] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1533), - [anon_sym_RBRACE] = ACTIONS(1533), - [anon_sym_EQ_GT] = ACTIONS(1533), - [anon_sym_STAR2] = ACTIONS(1531), - [anon_sym_and2] = ACTIONS(1533), - [anon_sym_xor2] = ACTIONS(1533), - [anon_sym_or2] = ACTIONS(1533), - [anon_sym_not_DASHin2] = ACTIONS(1533), - [anon_sym_has2] = ACTIONS(1533), - [anon_sym_not_DASHhas2] = ACTIONS(1533), - [anon_sym_starts_DASHwith2] = ACTIONS(1533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1533), - [anon_sym_ends_DASHwith2] = ACTIONS(1533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1533), - [anon_sym_EQ_EQ2] = ACTIONS(1533), - [anon_sym_BANG_EQ2] = ACTIONS(1533), - [anon_sym_LT2] = ACTIONS(1531), - [anon_sym_LT_EQ2] = ACTIONS(1533), - [anon_sym_GT_EQ2] = ACTIONS(1533), - [anon_sym_EQ_TILDE2] = ACTIONS(1533), - [anon_sym_BANG_TILDE2] = ACTIONS(1533), - [anon_sym_like2] = ACTIONS(1533), - [anon_sym_not_DASHlike2] = ACTIONS(1533), - [anon_sym_STAR_STAR2] = ACTIONS(1533), - [anon_sym_PLUS_PLUS2] = ACTIONS(1533), - [anon_sym_SLASH2] = ACTIONS(1531), - [anon_sym_mod2] = ACTIONS(1533), - [anon_sym_SLASH_SLASH2] = ACTIONS(1533), - [anon_sym_PLUS2] = ACTIONS(1531), - [anon_sym_bit_DASHshl2] = ACTIONS(1533), - [anon_sym_bit_DASHshr2] = ACTIONS(1533), - [anon_sym_bit_DASHand2] = ACTIONS(1533), - [anon_sym_bit_DASHxor2] = ACTIONS(1533), - [anon_sym_bit_DASHor2] = ACTIONS(1533), - [anon_sym_DOT_DOT2] = ACTIONS(1531), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1533), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1533), - [anon_sym_COLON2] = ACTIONS(1533), - [anon_sym_QMARK2] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_DOT2] = ACTIONS(1531), - [anon_sym_err_GT] = ACTIONS(1531), - [anon_sym_out_GT] = ACTIONS(1531), - [anon_sym_e_GT] = ACTIONS(1531), - [anon_sym_o_GT] = ACTIONS(1531), - [anon_sym_err_PLUSout_GT] = ACTIONS(1531), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1531), - [anon_sym_o_PLUSe_GT] = ACTIONS(1531), - [anon_sym_e_PLUSo_GT] = ACTIONS(1531), - [anon_sym_err_GT_GT] = ACTIONS(1533), - [anon_sym_out_GT_GT] = ACTIONS(1533), - [anon_sym_e_GT_GT] = ACTIONS(1533), - [anon_sym_o_GT_GT] = ACTIONS(1533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1533), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(428)] = { - [sym_path] = STATE(472), + [anon_sym_in] = ACTIONS(1552), + [sym__newline] = ACTIONS(1552), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_err_GT_PIPE] = ACTIONS(1552), + [anon_sym_out_GT_PIPE] = ACTIONS(1552), + [anon_sym_e_GT_PIPE] = ACTIONS(1552), + [anon_sym_o_GT_PIPE] = ACTIONS(1552), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), + [anon_sym_RPAREN] = ACTIONS(1552), + [anon_sym_GT2] = ACTIONS(1550), + [anon_sym_DASH2] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1552), + [anon_sym_RBRACE] = ACTIONS(1552), + [anon_sym_EQ_GT] = ACTIONS(1552), + [anon_sym_STAR2] = ACTIONS(1550), + [anon_sym_and2] = ACTIONS(1552), + [anon_sym_xor2] = ACTIONS(1552), + [anon_sym_or2] = ACTIONS(1552), + [anon_sym_not_DASHin2] = ACTIONS(1552), + [anon_sym_has2] = ACTIONS(1552), + [anon_sym_not_DASHhas2] = ACTIONS(1552), + [anon_sym_starts_DASHwith2] = ACTIONS(1552), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1552), + [anon_sym_ends_DASHwith2] = ACTIONS(1552), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1552), + [anon_sym_EQ_EQ2] = ACTIONS(1552), + [anon_sym_BANG_EQ2] = ACTIONS(1552), + [anon_sym_LT2] = ACTIONS(1550), + [anon_sym_LT_EQ2] = ACTIONS(1552), + [anon_sym_GT_EQ2] = ACTIONS(1552), + [anon_sym_EQ_TILDE2] = ACTIONS(1552), + [anon_sym_BANG_TILDE2] = ACTIONS(1552), + [anon_sym_like2] = ACTIONS(1552), + [anon_sym_not_DASHlike2] = ACTIONS(1552), + [anon_sym_STAR_STAR2] = ACTIONS(1552), + [anon_sym_PLUS_PLUS2] = ACTIONS(1552), + [anon_sym_SLASH2] = ACTIONS(1550), + [anon_sym_mod2] = ACTIONS(1552), + [anon_sym_SLASH_SLASH2] = ACTIONS(1552), + [anon_sym_PLUS2] = ACTIONS(1550), + [anon_sym_bit_DASHshl2] = ACTIONS(1552), + [anon_sym_bit_DASHshr2] = ACTIONS(1552), + [anon_sym_bit_DASHand2] = ACTIONS(1552), + [anon_sym_bit_DASHxor2] = ACTIONS(1552), + [anon_sym_bit_DASHor2] = ACTIONS(1552), + [anon_sym_DOT_DOT2] = ACTIONS(1550), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), + [anon_sym_COLON2] = ACTIONS(1552), + [anon_sym_QMARK2] = ACTIONS(1552), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_DOT2] = ACTIONS(1550), + [anon_sym_err_GT] = ACTIONS(1550), + [anon_sym_out_GT] = ACTIONS(1550), + [anon_sym_e_GT] = ACTIONS(1550), + [anon_sym_o_GT] = ACTIONS(1550), + [anon_sym_err_PLUSout_GT] = ACTIONS(1550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), + [anon_sym_o_PLUSe_GT] = ACTIONS(1550), + [anon_sym_e_PLUSo_GT] = ACTIONS(1550), + [anon_sym_err_GT_GT] = ACTIONS(1552), + [anon_sym_out_GT_GT] = ACTIONS(1552), + [anon_sym_e_GT_GT] = ACTIONS(1552), + [anon_sym_o_GT_GT] = ACTIONS(1552), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), + [anon_sym_POUND] = ACTIONS(3), + }, + [428] = { [sym_comment] = STATE(428), - [aux_sym__where_predicate_lhs_repeat1] = STATE(428), + [anon_sym_in] = ACTIONS(765), + [sym__newline] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_err_GT_PIPE] = ACTIONS(765), + [anon_sym_out_GT_PIPE] = ACTIONS(765), + [anon_sym_e_GT_PIPE] = ACTIONS(765), + [anon_sym_o_GT_PIPE] = ACTIONS(765), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(765), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(765), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(765), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(765), + [anon_sym_RPAREN] = ACTIONS(765), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(765), + [anon_sym_xor2] = ACTIONS(765), + [anon_sym_or2] = ACTIONS(765), + [anon_sym_not_DASHin2] = ACTIONS(765), + [anon_sym_has2] = ACTIONS(765), + [anon_sym_not_DASHhas2] = ACTIONS(765), + [anon_sym_starts_DASHwith2] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(765), + [anon_sym_ends_DASHwith2] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(765), + [anon_sym_EQ_EQ2] = ACTIONS(765), + [anon_sym_BANG_EQ2] = ACTIONS(765), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(765), + [anon_sym_GT_EQ2] = ACTIONS(765), + [anon_sym_EQ_TILDE2] = ACTIONS(765), + [anon_sym_BANG_TILDE2] = ACTIONS(765), + [anon_sym_like2] = ACTIONS(765), + [anon_sym_not_DASHlike2] = ACTIONS(765), + [anon_sym_LPAREN2] = ACTIONS(765), + [anon_sym_STAR_STAR2] = ACTIONS(765), + [anon_sym_PLUS_PLUS2] = ACTIONS(765), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(765), + [anon_sym_SLASH_SLASH2] = ACTIONS(765), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(765), + [anon_sym_bit_DASHshr2] = ACTIONS(765), + [anon_sym_bit_DASHand2] = ACTIONS(765), + [anon_sym_bit_DASHxor2] = ACTIONS(765), + [anon_sym_bit_DASHor2] = ACTIONS(765), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT] = ACTIONS(1719), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(1721), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(765), + [anon_sym_out_GT_GT] = ACTIONS(765), + [anon_sym_e_GT_GT] = ACTIONS(765), + [anon_sym_o_GT_GT] = ACTIONS(765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(765), + [sym__unquoted_pattern] = ACTIONS(763), + [anon_sym_POUND] = ACTIONS(3), + }, + [429] = { + [sym_path] = STATE(466), + [sym_comment] = STATE(429), + [aux_sym__where_predicate_lhs_repeat1] = STATE(429), + [anon_sym_in] = ACTIONS(1560), + [sym__newline] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_err_GT_PIPE] = ACTIONS(1560), + [anon_sym_out_GT_PIPE] = ACTIONS(1560), + [anon_sym_e_GT_PIPE] = ACTIONS(1560), + [anon_sym_o_GT_PIPE] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(1560), + [anon_sym_GT2] = ACTIONS(1558), + [anon_sym_DASH2] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1560), + [anon_sym_EQ_GT] = ACTIONS(1560), + [anon_sym_STAR2] = ACTIONS(1558), + [anon_sym_and2] = ACTIONS(1560), + [anon_sym_xor2] = ACTIONS(1560), + [anon_sym_or2] = ACTIONS(1560), + [anon_sym_not_DASHin2] = ACTIONS(1560), + [anon_sym_has2] = ACTIONS(1560), + [anon_sym_not_DASHhas2] = ACTIONS(1560), + [anon_sym_starts_DASHwith2] = ACTIONS(1560), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1560), + [anon_sym_ends_DASHwith2] = ACTIONS(1560), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1560), + [anon_sym_EQ_EQ2] = ACTIONS(1560), + [anon_sym_BANG_EQ2] = ACTIONS(1560), + [anon_sym_LT2] = ACTIONS(1558), + [anon_sym_LT_EQ2] = ACTIONS(1560), + [anon_sym_GT_EQ2] = ACTIONS(1560), + [anon_sym_EQ_TILDE2] = ACTIONS(1560), + [anon_sym_BANG_TILDE2] = ACTIONS(1560), + [anon_sym_like2] = ACTIONS(1560), + [anon_sym_not_DASHlike2] = ACTIONS(1560), + [anon_sym_STAR_STAR2] = ACTIONS(1560), + [anon_sym_PLUS_PLUS2] = ACTIONS(1560), + [anon_sym_SLASH2] = ACTIONS(1558), + [anon_sym_mod2] = ACTIONS(1560), + [anon_sym_SLASH_SLASH2] = ACTIONS(1560), + [anon_sym_PLUS2] = ACTIONS(1558), + [anon_sym_bit_DASHshl2] = ACTIONS(1560), + [anon_sym_bit_DASHshr2] = ACTIONS(1560), + [anon_sym_bit_DASHand2] = ACTIONS(1560), + [anon_sym_bit_DASHxor2] = ACTIONS(1560), + [anon_sym_bit_DASHor2] = ACTIONS(1560), + [anon_sym_DOT_DOT2] = ACTIONS(1558), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1560), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1560), + [anon_sym_COLON2] = ACTIONS(1560), + [anon_sym_DOT2] = ACTIONS(1723), + [anon_sym_err_GT] = ACTIONS(1558), + [anon_sym_out_GT] = ACTIONS(1558), + [anon_sym_e_GT] = ACTIONS(1558), + [anon_sym_o_GT] = ACTIONS(1558), + [anon_sym_err_PLUSout_GT] = ACTIONS(1558), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1558), + [anon_sym_o_PLUSe_GT] = ACTIONS(1558), + [anon_sym_e_PLUSo_GT] = ACTIONS(1558), + [anon_sym_err_GT_GT] = ACTIONS(1560), + [anon_sym_out_GT_GT] = ACTIONS(1560), + [anon_sym_e_GT_GT] = ACTIONS(1560), + [anon_sym_o_GT_GT] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1560), + [anon_sym_POUND] = ACTIONS(3), + }, + [430] = { + [sym_path] = STATE(466), + [sym_comment] = STATE(430), + [aux_sym__where_predicate_lhs_repeat1] = STATE(429), + [anon_sym_in] = ACTIONS(1569), + [sym__newline] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_err_GT_PIPE] = ACTIONS(1569), + [anon_sym_out_GT_PIPE] = ACTIONS(1569), + [anon_sym_e_GT_PIPE] = ACTIONS(1569), + [anon_sym_o_GT_PIPE] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1569), + [anon_sym_RPAREN] = ACTIONS(1569), + [anon_sym_GT2] = ACTIONS(1567), + [anon_sym_DASH2] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1569), + [anon_sym_EQ_GT] = ACTIONS(1569), + [anon_sym_STAR2] = ACTIONS(1567), + [anon_sym_and2] = ACTIONS(1569), + [anon_sym_xor2] = ACTIONS(1569), + [anon_sym_or2] = ACTIONS(1569), + [anon_sym_not_DASHin2] = ACTIONS(1569), + [anon_sym_has2] = ACTIONS(1569), + [anon_sym_not_DASHhas2] = ACTIONS(1569), + [anon_sym_starts_DASHwith2] = ACTIONS(1569), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1569), + [anon_sym_ends_DASHwith2] = ACTIONS(1569), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1569), + [anon_sym_EQ_EQ2] = ACTIONS(1569), + [anon_sym_BANG_EQ2] = ACTIONS(1569), + [anon_sym_LT2] = ACTIONS(1567), + [anon_sym_LT_EQ2] = ACTIONS(1569), + [anon_sym_GT_EQ2] = ACTIONS(1569), + [anon_sym_EQ_TILDE2] = ACTIONS(1569), + [anon_sym_BANG_TILDE2] = ACTIONS(1569), + [anon_sym_like2] = ACTIONS(1569), + [anon_sym_not_DASHlike2] = ACTIONS(1569), + [anon_sym_STAR_STAR2] = ACTIONS(1569), + [anon_sym_PLUS_PLUS2] = ACTIONS(1569), + [anon_sym_SLASH2] = ACTIONS(1567), + [anon_sym_mod2] = ACTIONS(1569), + [anon_sym_SLASH_SLASH2] = ACTIONS(1569), + [anon_sym_PLUS2] = ACTIONS(1567), + [anon_sym_bit_DASHshl2] = ACTIONS(1569), + [anon_sym_bit_DASHshr2] = ACTIONS(1569), + [anon_sym_bit_DASHand2] = ACTIONS(1569), + [anon_sym_bit_DASHxor2] = ACTIONS(1569), + [anon_sym_bit_DASHor2] = ACTIONS(1569), + [anon_sym_DOT_DOT2] = ACTIONS(1567), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1569), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1569), + [anon_sym_COLON2] = ACTIONS(1569), + [anon_sym_DOT2] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1567), + [anon_sym_out_GT] = ACTIONS(1567), + [anon_sym_e_GT] = ACTIONS(1567), + [anon_sym_o_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT] = ACTIONS(1567), + [anon_sym_err_GT_GT] = ACTIONS(1569), + [anon_sym_out_GT_GT] = ACTIONS(1569), + [anon_sym_e_GT_GT] = ACTIONS(1569), + [anon_sym_o_GT_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(3), + }, + [431] = { + [sym__expr_parenthesized_immediate] = STATE(1295), + [sym__immediate_decimal] = STATE(1045), + [sym_val_variable] = STATE(1295), + [sym_comment] = STATE(431), + [ts_builtin_sym_end] = ACTIONS(1622), + [anon_sym_in] = ACTIONS(1622), + [sym__newline] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_PIPE] = ACTIONS(1622), + [anon_sym_err_GT_PIPE] = ACTIONS(1622), + [anon_sym_out_GT_PIPE] = ACTIONS(1622), + [anon_sym_e_GT_PIPE] = ACTIONS(1622), + [anon_sym_o_GT_PIPE] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1622), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_GT2] = ACTIONS(1626), + [anon_sym_DASH2] = ACTIONS(1626), + [anon_sym_STAR2] = ACTIONS(1626), + [anon_sym_and2] = ACTIONS(1622), + [anon_sym_xor2] = ACTIONS(1622), + [anon_sym_or2] = ACTIONS(1622), + [anon_sym_not_DASHin2] = ACTIONS(1622), + [anon_sym_has2] = ACTIONS(1622), + [anon_sym_not_DASHhas2] = ACTIONS(1622), + [anon_sym_starts_DASHwith2] = ACTIONS(1622), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1622), + [anon_sym_ends_DASHwith2] = ACTIONS(1622), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1622), + [anon_sym_EQ_EQ2] = ACTIONS(1622), + [anon_sym_BANG_EQ2] = ACTIONS(1622), + [anon_sym_LT2] = ACTIONS(1626), + [anon_sym_LT_EQ2] = ACTIONS(1622), + [anon_sym_GT_EQ2] = ACTIONS(1622), + [anon_sym_EQ_TILDE2] = ACTIONS(1622), + [anon_sym_BANG_TILDE2] = ACTIONS(1622), + [anon_sym_like2] = ACTIONS(1622), + [anon_sym_not_DASHlike2] = ACTIONS(1622), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_STAR_STAR2] = ACTIONS(1622), + [anon_sym_PLUS_PLUS2] = ACTIONS(1622), + [anon_sym_SLASH2] = ACTIONS(1626), + [anon_sym_mod2] = ACTIONS(1622), + [anon_sym_SLASH_SLASH2] = ACTIONS(1622), + [anon_sym_PLUS2] = ACTIONS(1626), + [anon_sym_bit_DASHshl2] = ACTIONS(1622), + [anon_sym_bit_DASHshr2] = ACTIONS(1622), + [anon_sym_bit_DASHand2] = ACTIONS(1622), + [anon_sym_bit_DASHxor2] = ACTIONS(1622), + [anon_sym_bit_DASHor2] = ACTIONS(1622), + [aux_sym__immediate_decimal_token1] = ACTIONS(1726), + [aux_sym__immediate_decimal_token2] = ACTIONS(1726), + [aux_sym__immediate_decimal_token3] = ACTIONS(1728), + [aux_sym__immediate_decimal_token4] = ACTIONS(1728), + [anon_sym_err_GT] = ACTIONS(1626), + [anon_sym_out_GT] = ACTIONS(1626), + [anon_sym_e_GT] = ACTIONS(1626), + [anon_sym_o_GT] = ACTIONS(1626), + [anon_sym_err_PLUSout_GT] = ACTIONS(1626), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1626), + [anon_sym_o_PLUSe_GT] = ACTIONS(1626), + [anon_sym_e_PLUSo_GT] = ACTIONS(1626), + [anon_sym_err_GT_GT] = ACTIONS(1622), + [anon_sym_out_GT_GT] = ACTIONS(1622), + [anon_sym_e_GT_GT] = ACTIONS(1622), + [anon_sym_o_GT_GT] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1622), + [sym__unquoted_pattern] = ACTIONS(1636), + [anon_sym_POUND] = ACTIONS(3), + }, + [432] = { + [sym_comment] = STATE(432), + [anon_sym_in] = ACTIONS(1576), + [sym__newline] = ACTIONS(1576), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1576), + [anon_sym_err_GT_PIPE] = ACTIONS(1576), + [anon_sym_out_GT_PIPE] = ACTIONS(1576), + [anon_sym_e_GT_PIPE] = ACTIONS(1576), + [anon_sym_o_GT_PIPE] = ACTIONS(1576), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1576), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1576), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1576), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(1576), + [anon_sym_GT2] = ACTIONS(1574), + [anon_sym_DASH2] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_RBRACE] = ACTIONS(1576), + [anon_sym_EQ_GT] = ACTIONS(1576), + [anon_sym_STAR2] = ACTIONS(1574), + [anon_sym_and2] = ACTIONS(1576), + [anon_sym_xor2] = ACTIONS(1576), + [anon_sym_or2] = ACTIONS(1576), + [anon_sym_not_DASHin2] = ACTIONS(1576), + [anon_sym_has2] = ACTIONS(1576), + [anon_sym_not_DASHhas2] = ACTIONS(1576), + [anon_sym_starts_DASHwith2] = ACTIONS(1576), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1576), + [anon_sym_ends_DASHwith2] = ACTIONS(1576), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1576), + [anon_sym_EQ_EQ2] = ACTIONS(1576), + [anon_sym_BANG_EQ2] = ACTIONS(1576), + [anon_sym_LT2] = ACTIONS(1574), + [anon_sym_LT_EQ2] = ACTIONS(1576), + [anon_sym_GT_EQ2] = ACTIONS(1576), + [anon_sym_EQ_TILDE2] = ACTIONS(1576), + [anon_sym_BANG_TILDE2] = ACTIONS(1576), + [anon_sym_like2] = ACTIONS(1576), + [anon_sym_not_DASHlike2] = ACTIONS(1576), + [anon_sym_STAR_STAR2] = ACTIONS(1576), + [anon_sym_PLUS_PLUS2] = ACTIONS(1576), + [anon_sym_SLASH2] = ACTIONS(1574), + [anon_sym_mod2] = ACTIONS(1576), + [anon_sym_SLASH_SLASH2] = ACTIONS(1576), + [anon_sym_PLUS2] = ACTIONS(1574), + [anon_sym_bit_DASHshl2] = ACTIONS(1576), + [anon_sym_bit_DASHshr2] = ACTIONS(1576), + [anon_sym_bit_DASHand2] = ACTIONS(1576), + [anon_sym_bit_DASHxor2] = ACTIONS(1576), + [anon_sym_bit_DASHor2] = ACTIONS(1576), + [anon_sym_DOT_DOT2] = ACTIONS(1574), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1576), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1576), + [anon_sym_COLON2] = ACTIONS(1576), + [anon_sym_QMARK2] = ACTIONS(1576), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_DOT2] = ACTIONS(1574), + [anon_sym_err_GT] = ACTIONS(1574), + [anon_sym_out_GT] = ACTIONS(1574), + [anon_sym_e_GT] = ACTIONS(1574), + [anon_sym_o_GT] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT] = ACTIONS(1574), + [anon_sym_err_GT_GT] = ACTIONS(1576), + [anon_sym_out_GT_GT] = ACTIONS(1576), + [anon_sym_e_GT_GT] = ACTIONS(1576), + [anon_sym_o_GT_GT] = ACTIONS(1576), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1576), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1576), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1576), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1576), + [anon_sym_POUND] = ACTIONS(3), + }, + [433] = { + [sym_cell_path] = STATE(520), + [sym_path] = STATE(466), + [sym_comment] = STATE(433), + [aux_sym__where_predicate_lhs_repeat1] = STATE(430), + [anon_sym_in] = ACTIONS(1480), + [sym__newline] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_err_GT_PIPE] = ACTIONS(1480), + [anon_sym_out_GT_PIPE] = ACTIONS(1480), + [anon_sym_e_GT_PIPE] = ACTIONS(1480), + [anon_sym_o_GT_PIPE] = ACTIONS(1480), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), + [anon_sym_RPAREN] = ACTIONS(1480), + [anon_sym_GT2] = ACTIONS(1478), + [anon_sym_DASH2] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_EQ_GT] = ACTIONS(1480), + [anon_sym_STAR2] = ACTIONS(1478), + [anon_sym_and2] = ACTIONS(1480), + [anon_sym_xor2] = ACTIONS(1480), + [anon_sym_or2] = ACTIONS(1480), + [anon_sym_not_DASHin2] = ACTIONS(1480), + [anon_sym_has2] = ACTIONS(1480), + [anon_sym_not_DASHhas2] = ACTIONS(1480), + [anon_sym_starts_DASHwith2] = ACTIONS(1480), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1480), + [anon_sym_ends_DASHwith2] = ACTIONS(1480), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1480), + [anon_sym_EQ_EQ2] = ACTIONS(1480), + [anon_sym_BANG_EQ2] = ACTIONS(1480), + [anon_sym_LT2] = ACTIONS(1478), + [anon_sym_LT_EQ2] = ACTIONS(1480), + [anon_sym_GT_EQ2] = ACTIONS(1480), + [anon_sym_EQ_TILDE2] = ACTIONS(1480), + [anon_sym_BANG_TILDE2] = ACTIONS(1480), + [anon_sym_like2] = ACTIONS(1480), + [anon_sym_not_DASHlike2] = ACTIONS(1480), + [anon_sym_STAR_STAR2] = ACTIONS(1480), + [anon_sym_PLUS_PLUS2] = ACTIONS(1480), + [anon_sym_SLASH2] = ACTIONS(1478), + [anon_sym_mod2] = ACTIONS(1480), + [anon_sym_SLASH_SLASH2] = ACTIONS(1480), + [anon_sym_PLUS2] = ACTIONS(1478), + [anon_sym_bit_DASHshl2] = ACTIONS(1480), + [anon_sym_bit_DASHshr2] = ACTIONS(1480), + [anon_sym_bit_DASHand2] = ACTIONS(1480), + [anon_sym_bit_DASHxor2] = ACTIONS(1480), + [anon_sym_bit_DASHor2] = ACTIONS(1480), + [anon_sym_DOT_DOT2] = ACTIONS(1478), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), + [anon_sym_DOT2] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1478), + [anon_sym_out_GT] = ACTIONS(1478), + [anon_sym_e_GT] = ACTIONS(1478), + [anon_sym_o_GT] = ACTIONS(1478), + [anon_sym_err_PLUSout_GT] = ACTIONS(1478), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), + [anon_sym_o_PLUSe_GT] = ACTIONS(1478), + [anon_sym_e_PLUSo_GT] = ACTIONS(1478), + [anon_sym_err_GT_GT] = ACTIONS(1480), + [anon_sym_out_GT_GT] = ACTIONS(1480), + [anon_sym_e_GT_GT] = ACTIONS(1480), + [anon_sym_o_GT_GT] = ACTIONS(1480), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), + [anon_sym_POUND] = ACTIONS(3), + }, + [434] = { + [sym_comment] = STATE(434), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_in] = ACTIONS(1466), + [sym__newline] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_err_GT_PIPE] = ACTIONS(1466), + [anon_sym_out_GT_PIPE] = ACTIONS(1466), + [anon_sym_e_GT_PIPE] = ACTIONS(1466), + [anon_sym_o_GT_PIPE] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1466), + [anon_sym_RPAREN] = ACTIONS(1466), + [anon_sym_GT2] = ACTIONS(1464), + [anon_sym_DASH2] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_EQ_GT] = ACTIONS(1466), + [anon_sym_STAR2] = ACTIONS(1464), + [anon_sym_and2] = ACTIONS(1466), + [anon_sym_xor2] = ACTIONS(1466), + [anon_sym_or2] = ACTIONS(1466), + [anon_sym_not_DASHin2] = ACTIONS(1466), + [anon_sym_has2] = ACTIONS(1466), + [anon_sym_not_DASHhas2] = ACTIONS(1466), + [anon_sym_starts_DASHwith2] = ACTIONS(1466), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1466), + [anon_sym_ends_DASHwith2] = ACTIONS(1466), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1466), + [anon_sym_EQ_EQ2] = ACTIONS(1466), + [anon_sym_BANG_EQ2] = ACTIONS(1466), + [anon_sym_LT2] = ACTIONS(1464), + [anon_sym_LT_EQ2] = ACTIONS(1466), + [anon_sym_GT_EQ2] = ACTIONS(1466), + [anon_sym_EQ_TILDE2] = ACTIONS(1466), + [anon_sym_BANG_TILDE2] = ACTIONS(1466), + [anon_sym_like2] = ACTIONS(1466), + [anon_sym_not_DASHlike2] = ACTIONS(1466), + [anon_sym_STAR_STAR2] = ACTIONS(1466), + [anon_sym_PLUS_PLUS2] = ACTIONS(1466), + [anon_sym_SLASH2] = ACTIONS(1464), + [anon_sym_mod2] = ACTIONS(1466), + [anon_sym_SLASH_SLASH2] = ACTIONS(1466), + [anon_sym_PLUS2] = ACTIONS(1464), + [anon_sym_bit_DASHshl2] = ACTIONS(1466), + [anon_sym_bit_DASHshr2] = ACTIONS(1466), + [anon_sym_bit_DASHand2] = ACTIONS(1466), + [anon_sym_bit_DASHxor2] = ACTIONS(1466), + [anon_sym_bit_DASHor2] = ACTIONS(1466), + [anon_sym_DOT_DOT2] = ACTIONS(1464), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1466), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1466), + [anon_sym_COLON2] = ACTIONS(1466), + [anon_sym_QMARK2] = ACTIONS(1730), + [anon_sym_DOT2] = ACTIONS(1464), + [anon_sym_err_GT] = ACTIONS(1464), + [anon_sym_out_GT] = ACTIONS(1464), + [anon_sym_e_GT] = ACTIONS(1464), + [anon_sym_o_GT] = ACTIONS(1464), + [anon_sym_err_PLUSout_GT] = ACTIONS(1464), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1464), + [anon_sym_o_PLUSe_GT] = ACTIONS(1464), + [anon_sym_e_PLUSo_GT] = ACTIONS(1464), + [anon_sym_err_GT_GT] = ACTIONS(1466), + [anon_sym_out_GT_GT] = ACTIONS(1466), + [anon_sym_e_GT_GT] = ACTIONS(1466), + [anon_sym_o_GT_GT] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1466), + [anon_sym_POUND] = ACTIONS(3), + }, + [435] = { + [sym_comment] = STATE(435), + [ts_builtin_sym_end] = ACTIONS(1586), + [anon_sym_EQ] = ACTIONS(1584), + [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(1586), + [sym__newline] = ACTIONS(1586), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_PIPE] = ACTIONS(1586), + [anon_sym_err_GT_PIPE] = ACTIONS(1586), + [anon_sym_out_GT_PIPE] = ACTIONS(1586), + [anon_sym_e_GT_PIPE] = ACTIONS(1586), + [anon_sym_o_GT_PIPE] = ACTIONS(1586), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1586), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1586), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1586), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1586), + [anon_sym_GT2] = ACTIONS(1584), + [anon_sym_DASH2] = ACTIONS(1584), + [anon_sym_STAR2] = ACTIONS(1584), + [anon_sym_and2] = ACTIONS(1586), + [anon_sym_xor2] = ACTIONS(1586), + [anon_sym_or2] = ACTIONS(1586), + [anon_sym_not_DASHin2] = ACTIONS(1586), + [anon_sym_has2] = ACTIONS(1586), + [anon_sym_not_DASHhas2] = ACTIONS(1586), + [anon_sym_starts_DASHwith2] = ACTIONS(1586), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1586), + [anon_sym_ends_DASHwith2] = ACTIONS(1586), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1586), + [anon_sym_EQ_EQ2] = ACTIONS(1586), + [anon_sym_BANG_EQ2] = ACTIONS(1586), + [anon_sym_LT2] = ACTIONS(1584), + [anon_sym_LT_EQ2] = ACTIONS(1586), + [anon_sym_GT_EQ2] = ACTIONS(1586), + [anon_sym_EQ_TILDE2] = ACTIONS(1586), + [anon_sym_BANG_TILDE2] = ACTIONS(1586), + [anon_sym_like2] = ACTIONS(1586), + [anon_sym_not_DASHlike2] = ACTIONS(1586), + [anon_sym_STAR_STAR2] = ACTIONS(1586), + [anon_sym_PLUS_PLUS2] = ACTIONS(1584), + [anon_sym_SLASH2] = ACTIONS(1584), + [anon_sym_mod2] = ACTIONS(1586), + [anon_sym_SLASH_SLASH2] = ACTIONS(1586), + [anon_sym_PLUS2] = ACTIONS(1584), + [anon_sym_bit_DASHshl2] = ACTIONS(1586), + [anon_sym_bit_DASHshr2] = ACTIONS(1586), + [anon_sym_bit_DASHand2] = ACTIONS(1586), + [anon_sym_bit_DASHxor2] = ACTIONS(1586), + [anon_sym_bit_DASHor2] = ACTIONS(1586), + [anon_sym_DOT_DOT2] = ACTIONS(1584), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1586), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1586), + [anon_sym_DOT2] = ACTIONS(1584), + [anon_sym_err_GT] = ACTIONS(1584), + [anon_sym_out_GT] = ACTIONS(1584), + [anon_sym_e_GT] = ACTIONS(1584), + [anon_sym_o_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT] = ACTIONS(1584), + [anon_sym_err_GT_GT] = ACTIONS(1586), + [anon_sym_out_GT_GT] = ACTIONS(1586), + [anon_sym_e_GT_GT] = ACTIONS(1586), + [anon_sym_o_GT_GT] = ACTIONS(1586), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1586), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1586), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1586), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(3), + }, + [436] = { + [sym_comment] = STATE(436), [anon_sym_in] = ACTIONS(1492), [sym__newline] = ACTIONS(1492), [anon_sym_SEMI] = ACTIONS(1492), @@ -82930,7 +83484,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), [anon_sym_COLON2] = ACTIONS(1492), - [anon_sym_DOT2] = ACTIONS(1715), + [anon_sym_QMARK2] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_DOT2] = ACTIONS(1490), [anon_sym_err_GT] = ACTIONS(1490), [anon_sym_out_GT] = ACTIONS(1490), [anon_sym_e_GT] = ACTIONS(1490), @@ -82949,1774 +83505,941 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(429)] = { - [sym_comment] = STATE(429), - [anon_sym_in] = ACTIONS(761), - [sym__newline] = ACTIONS(761), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_PIPE] = ACTIONS(761), - [anon_sym_err_GT_PIPE] = ACTIONS(761), - [anon_sym_out_GT_PIPE] = ACTIONS(761), - [anon_sym_e_GT_PIPE] = ACTIONS(761), - [anon_sym_o_GT_PIPE] = ACTIONS(761), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(761), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(761), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(761), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(761), - [anon_sym_RPAREN] = ACTIONS(761), - [anon_sym_GT2] = ACTIONS(759), - [anon_sym_DASH2] = ACTIONS(761), - [anon_sym_RBRACE] = ACTIONS(761), - [anon_sym_STAR2] = ACTIONS(759), - [anon_sym_and2] = ACTIONS(761), - [anon_sym_xor2] = ACTIONS(761), - [anon_sym_or2] = ACTIONS(761), - [anon_sym_not_DASHin2] = ACTIONS(761), - [anon_sym_has2] = ACTIONS(761), - [anon_sym_not_DASHhas2] = ACTIONS(761), - [anon_sym_starts_DASHwith2] = ACTIONS(761), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(761), - [anon_sym_ends_DASHwith2] = ACTIONS(761), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(761), - [anon_sym_EQ_EQ2] = ACTIONS(761), - [anon_sym_BANG_EQ2] = ACTIONS(761), - [anon_sym_LT2] = ACTIONS(759), - [anon_sym_LT_EQ2] = ACTIONS(761), - [anon_sym_GT_EQ2] = ACTIONS(761), - [anon_sym_EQ_TILDE2] = ACTIONS(761), - [anon_sym_BANG_TILDE2] = ACTIONS(761), - [anon_sym_like2] = ACTIONS(761), - [anon_sym_not_DASHlike2] = ACTIONS(761), - [anon_sym_LPAREN2] = ACTIONS(761), - [anon_sym_STAR_STAR2] = ACTIONS(761), - [anon_sym_PLUS_PLUS2] = ACTIONS(761), - [anon_sym_SLASH2] = ACTIONS(759), - [anon_sym_mod2] = ACTIONS(761), - [anon_sym_SLASH_SLASH2] = ACTIONS(761), - [anon_sym_PLUS2] = ACTIONS(759), - [anon_sym_bit_DASHshl2] = ACTIONS(761), - [anon_sym_bit_DASHshr2] = ACTIONS(761), - [anon_sym_bit_DASHand2] = ACTIONS(761), - [anon_sym_bit_DASHxor2] = ACTIONS(761), - [anon_sym_bit_DASHor2] = ACTIONS(761), - [anon_sym_DOT_DOT2] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(761), - [aux_sym__immediate_decimal_token1] = ACTIONS(1718), - [aux_sym__immediate_decimal_token5] = ACTIONS(1720), - [sym_filesize_unit] = ACTIONS(759), - [sym_duration_unit] = ACTIONS(761), - [anon_sym_err_GT] = ACTIONS(759), - [anon_sym_out_GT] = ACTIONS(759), - [anon_sym_e_GT] = ACTIONS(759), - [anon_sym_o_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT] = ACTIONS(759), - [anon_sym_err_GT_GT] = ACTIONS(761), - [anon_sym_out_GT_GT] = ACTIONS(761), - [anon_sym_e_GT_GT] = ACTIONS(761), - [anon_sym_o_GT_GT] = ACTIONS(761), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(761), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(761), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(761), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(761), - [sym__unquoted_pattern] = ACTIONS(759), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(430)] = { - [sym_comment] = STATE(430), - [ts_builtin_sym_end] = ACTIONS(1567), - [anon_sym_EQ] = ACTIONS(1565), - [anon_sym_PLUS_EQ] = ACTIONS(1567), - [anon_sym_DASH_EQ] = ACTIONS(1567), - [anon_sym_STAR_EQ] = ACTIONS(1567), - [anon_sym_SLASH_EQ] = ACTIONS(1567), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1567), - [anon_sym_in] = ACTIONS(1567), - [sym__newline] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_err_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_GT_PIPE] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), - [anon_sym_GT2] = ACTIONS(1565), - [anon_sym_DASH2] = ACTIONS(1565), - [anon_sym_STAR2] = ACTIONS(1565), - [anon_sym_and2] = ACTIONS(1567), - [anon_sym_xor2] = ACTIONS(1567), - [anon_sym_or2] = ACTIONS(1567), - [anon_sym_not_DASHin2] = ACTIONS(1567), - [anon_sym_has2] = ACTIONS(1567), - [anon_sym_not_DASHhas2] = ACTIONS(1567), - [anon_sym_starts_DASHwith2] = ACTIONS(1567), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1567), - [anon_sym_ends_DASHwith2] = ACTIONS(1567), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1567), - [anon_sym_EQ_EQ2] = ACTIONS(1567), - [anon_sym_BANG_EQ2] = ACTIONS(1567), - [anon_sym_LT2] = ACTIONS(1565), - [anon_sym_LT_EQ2] = ACTIONS(1567), - [anon_sym_GT_EQ2] = ACTIONS(1567), - [anon_sym_EQ_TILDE2] = ACTIONS(1567), - [anon_sym_BANG_TILDE2] = ACTIONS(1567), - [anon_sym_like2] = ACTIONS(1567), - [anon_sym_not_DASHlike2] = ACTIONS(1567), - [anon_sym_STAR_STAR2] = ACTIONS(1567), - [anon_sym_PLUS_PLUS2] = ACTIONS(1565), - [anon_sym_SLASH2] = ACTIONS(1565), - [anon_sym_mod2] = ACTIONS(1567), - [anon_sym_SLASH_SLASH2] = ACTIONS(1567), - [anon_sym_PLUS2] = ACTIONS(1565), - [anon_sym_bit_DASHshl2] = ACTIONS(1567), - [anon_sym_bit_DASHshr2] = ACTIONS(1567), - [anon_sym_bit_DASHand2] = ACTIONS(1567), - [anon_sym_bit_DASHxor2] = ACTIONS(1567), - [anon_sym_bit_DASHor2] = ACTIONS(1567), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [anon_sym_DOT2] = ACTIONS(1565), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1567), - [anon_sym_out_GT_GT] = ACTIONS(1567), - [anon_sym_e_GT_GT] = ACTIONS(1567), - [anon_sym_o_GT_GT] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(431)] = { - [sym_comment] = STATE(431), - [ts_builtin_sym_end] = ACTIONS(1602), - [anon_sym_EQ] = ACTIONS(1600), - [anon_sym_PLUS_EQ] = ACTIONS(1602), - [anon_sym_DASH_EQ] = ACTIONS(1602), - [anon_sym_STAR_EQ] = ACTIONS(1602), - [anon_sym_SLASH_EQ] = ACTIONS(1602), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1602), - [anon_sym_in] = ACTIONS(1602), - [sym__newline] = ACTIONS(1602), - [anon_sym_SEMI] = ACTIONS(1602), - [anon_sym_PIPE] = ACTIONS(1602), - [anon_sym_err_GT_PIPE] = ACTIONS(1602), - [anon_sym_out_GT_PIPE] = ACTIONS(1602), - [anon_sym_e_GT_PIPE] = ACTIONS(1602), - [anon_sym_o_GT_PIPE] = ACTIONS(1602), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1602), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1602), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1602), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1602), - [anon_sym_COLON] = ACTIONS(1602), - [anon_sym_GT2] = ACTIONS(1600), - [anon_sym_DASH2] = ACTIONS(1600), - [anon_sym_STAR2] = ACTIONS(1600), - [anon_sym_and2] = ACTIONS(1602), - [anon_sym_xor2] = ACTIONS(1602), - [anon_sym_or2] = ACTIONS(1602), - [anon_sym_not_DASHin2] = ACTIONS(1602), - [anon_sym_has2] = ACTIONS(1602), - [anon_sym_not_DASHhas2] = ACTIONS(1602), - [anon_sym_starts_DASHwith2] = ACTIONS(1602), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1602), - [anon_sym_ends_DASHwith2] = ACTIONS(1602), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1602), - [anon_sym_EQ_EQ2] = ACTIONS(1602), - [anon_sym_BANG_EQ2] = ACTIONS(1602), - [anon_sym_LT2] = ACTIONS(1600), - [anon_sym_LT_EQ2] = ACTIONS(1602), - [anon_sym_GT_EQ2] = ACTIONS(1602), - [anon_sym_EQ_TILDE2] = ACTIONS(1602), - [anon_sym_BANG_TILDE2] = ACTIONS(1602), - [anon_sym_like2] = ACTIONS(1602), - [anon_sym_not_DASHlike2] = ACTIONS(1602), - [anon_sym_STAR_STAR2] = ACTIONS(1602), - [anon_sym_PLUS_PLUS2] = ACTIONS(1600), - [anon_sym_SLASH2] = ACTIONS(1600), - [anon_sym_mod2] = ACTIONS(1602), - [anon_sym_SLASH_SLASH2] = ACTIONS(1602), - [anon_sym_PLUS2] = ACTIONS(1600), - [anon_sym_bit_DASHshl2] = ACTIONS(1602), - [anon_sym_bit_DASHshr2] = ACTIONS(1602), - [anon_sym_bit_DASHand2] = ACTIONS(1602), - [anon_sym_bit_DASHxor2] = ACTIONS(1602), - [anon_sym_bit_DASHor2] = ACTIONS(1602), - [anon_sym_DOT_DOT2] = ACTIONS(1600), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1602), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1602), - [anon_sym_err_GT] = ACTIONS(1600), - [anon_sym_out_GT] = ACTIONS(1600), - [anon_sym_e_GT] = ACTIONS(1600), - [anon_sym_o_GT] = ACTIONS(1600), - [anon_sym_err_PLUSout_GT] = ACTIONS(1600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1600), - [anon_sym_o_PLUSe_GT] = ACTIONS(1600), - [anon_sym_e_PLUSo_GT] = ACTIONS(1600), - [anon_sym_err_GT_GT] = ACTIONS(1602), - [anon_sym_out_GT_GT] = ACTIONS(1602), - [anon_sym_e_GT_GT] = ACTIONS(1602), - [anon_sym_o_GT_GT] = ACTIONS(1602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1602), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(432)] = { - [sym_cell_path] = STATE(497), - [sym_path] = STATE(472), - [sym_comment] = STATE(432), - [aux_sym__where_predicate_lhs_repeat1] = STATE(438), - [anon_sym_in] = ACTIONS(1468), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_EQ_GT] = ACTIONS(1468), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_like2] = ACTIONS(1468), - [anon_sym_not_DASHlike2] = ACTIONS(1468), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1468), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [anon_sym_DOT2] = ACTIONS(1673), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(433)] = { - [sym_comment] = STATE(433), - [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_RPAREN] = ACTIONS(1543), - [anon_sym_GT2] = ACTIONS(1541), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_LBRACE] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1543), - [anon_sym_EQ_GT] = ACTIONS(1543), - [anon_sym_STAR2] = ACTIONS(1541), - [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(1541), - [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(1541), - [anon_sym_mod2] = ACTIONS(1543), - [anon_sym_SLASH_SLASH2] = ACTIONS(1543), - [anon_sym_PLUS2] = ACTIONS(1541), - [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(1541), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1543), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1543), - [anon_sym_COLON2] = ACTIONS(1543), - [anon_sym_QMARK2] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_DOT2] = ACTIONS(1541), - [anon_sym_err_GT] = ACTIONS(1541), - [anon_sym_out_GT] = ACTIONS(1541), - [anon_sym_e_GT] = ACTIONS(1541), - [anon_sym_o_GT] = ACTIONS(1541), - [anon_sym_err_PLUSout_GT] = ACTIONS(1541), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1541), - [anon_sym_o_PLUSe_GT] = ACTIONS(1541), - [anon_sym_e_PLUSo_GT] = ACTIONS(1541), - [anon_sym_err_GT_GT] = ACTIONS(1543), - [anon_sym_out_GT_GT] = ACTIONS(1543), - [anon_sym_e_GT_GT] = ACTIONS(1543), - [anon_sym_o_GT_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1543), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(434)] = { - [sym_comment] = STATE(434), - [anon_sym_in] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_RPAREN] = ACTIONS(1537), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_EQ_GT] = ACTIONS(1537), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1537), - [anon_sym_xor2] = ACTIONS(1537), - [anon_sym_or2] = ACTIONS(1537), - [anon_sym_not_DASHin2] = ACTIONS(1537), - [anon_sym_has2] = ACTIONS(1537), - [anon_sym_not_DASHhas2] = ACTIONS(1537), - [anon_sym_starts_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), - [anon_sym_ends_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), - [anon_sym_EQ_EQ2] = ACTIONS(1537), - [anon_sym_BANG_EQ2] = ACTIONS(1537), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1537), - [anon_sym_GT_EQ2] = ACTIONS(1537), - [anon_sym_EQ_TILDE2] = ACTIONS(1537), - [anon_sym_BANG_TILDE2] = ACTIONS(1537), - [anon_sym_like2] = ACTIONS(1537), - [anon_sym_not_DASHlike2] = ACTIONS(1537), - [anon_sym_STAR_STAR2] = ACTIONS(1537), - [anon_sym_PLUS_PLUS2] = ACTIONS(1537), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1537), - [anon_sym_SLASH_SLASH2] = ACTIONS(1537), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1537), - [anon_sym_bit_DASHshr2] = ACTIONS(1537), - [anon_sym_bit_DASHand2] = ACTIONS(1537), - [anon_sym_bit_DASHxor2] = ACTIONS(1537), - [anon_sym_bit_DASHor2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_COLON2] = ACTIONS(1537), - [anon_sym_QMARK2] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(435)] = { - [sym_comment] = STATE(435), - [ts_builtin_sym_end] = ACTIONS(1563), - [anon_sym_EQ] = ACTIONS(1561), - [anon_sym_PLUS_EQ] = ACTIONS(1563), - [anon_sym_DASH_EQ] = ACTIONS(1563), - [anon_sym_STAR_EQ] = ACTIONS(1563), - [anon_sym_SLASH_EQ] = ACTIONS(1563), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1563), - [anon_sym_in] = ACTIONS(1563), - [sym__newline] = ACTIONS(1563), - [anon_sym_SEMI] = ACTIONS(1563), - [anon_sym_PIPE] = ACTIONS(1563), - [anon_sym_err_GT_PIPE] = ACTIONS(1563), - [anon_sym_out_GT_PIPE] = ACTIONS(1563), - [anon_sym_e_GT_PIPE] = ACTIONS(1563), - [anon_sym_o_GT_PIPE] = ACTIONS(1563), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1563), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1563), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1563), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1563), - [anon_sym_GT2] = ACTIONS(1561), - [anon_sym_DASH2] = ACTIONS(1561), - [anon_sym_STAR2] = ACTIONS(1561), - [anon_sym_and2] = ACTIONS(1563), - [anon_sym_xor2] = ACTIONS(1563), - [anon_sym_or2] = ACTIONS(1563), - [anon_sym_not_DASHin2] = ACTIONS(1563), - [anon_sym_has2] = ACTIONS(1563), - [anon_sym_not_DASHhas2] = ACTIONS(1563), - [anon_sym_starts_DASHwith2] = ACTIONS(1563), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1563), - [anon_sym_ends_DASHwith2] = ACTIONS(1563), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1563), - [anon_sym_EQ_EQ2] = ACTIONS(1563), - [anon_sym_BANG_EQ2] = ACTIONS(1563), - [anon_sym_LT2] = ACTIONS(1561), - [anon_sym_LT_EQ2] = ACTIONS(1563), - [anon_sym_GT_EQ2] = ACTIONS(1563), - [anon_sym_EQ_TILDE2] = ACTIONS(1563), - [anon_sym_BANG_TILDE2] = ACTIONS(1563), - [anon_sym_like2] = ACTIONS(1563), - [anon_sym_not_DASHlike2] = ACTIONS(1563), - [anon_sym_STAR_STAR2] = ACTIONS(1563), - [anon_sym_PLUS_PLUS2] = ACTIONS(1561), - [anon_sym_SLASH2] = ACTIONS(1561), - [anon_sym_mod2] = ACTIONS(1563), - [anon_sym_SLASH_SLASH2] = ACTIONS(1563), - [anon_sym_PLUS2] = ACTIONS(1561), - [anon_sym_bit_DASHshl2] = ACTIONS(1563), - [anon_sym_bit_DASHshr2] = ACTIONS(1563), - [anon_sym_bit_DASHand2] = ACTIONS(1563), - [anon_sym_bit_DASHxor2] = ACTIONS(1563), - [anon_sym_bit_DASHor2] = ACTIONS(1563), - [anon_sym_DOT_DOT2] = ACTIONS(1561), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1563), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1563), - [anon_sym_DOT2] = ACTIONS(1561), - [anon_sym_err_GT] = ACTIONS(1561), - [anon_sym_out_GT] = ACTIONS(1561), - [anon_sym_e_GT] = ACTIONS(1561), - [anon_sym_o_GT] = ACTIONS(1561), - [anon_sym_err_PLUSout_GT] = ACTIONS(1561), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1561), - [anon_sym_o_PLUSe_GT] = ACTIONS(1561), - [anon_sym_e_PLUSo_GT] = ACTIONS(1561), - [anon_sym_err_GT_GT] = ACTIONS(1563), - [anon_sym_out_GT_GT] = ACTIONS(1563), - [anon_sym_e_GT_GT] = ACTIONS(1563), - [anon_sym_o_GT_GT] = ACTIONS(1563), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1563), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1563), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1563), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1563), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(436)] = { - [sym_comment] = STATE(436), - [anon_sym_in] = ACTIONS(1529), - [sym__newline] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1529), - [anon_sym_PIPE] = ACTIONS(1529), - [anon_sym_err_GT_PIPE] = ACTIONS(1529), - [anon_sym_out_GT_PIPE] = ACTIONS(1529), - [anon_sym_e_GT_PIPE] = ACTIONS(1529), - [anon_sym_o_GT_PIPE] = ACTIONS(1529), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1529), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1529), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1529), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1529), - [anon_sym_RPAREN] = ACTIONS(1529), - [anon_sym_GT2] = ACTIONS(1527), - [anon_sym_DASH2] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1529), - [anon_sym_RBRACE] = ACTIONS(1529), - [anon_sym_EQ_GT] = ACTIONS(1529), - [anon_sym_STAR2] = ACTIONS(1527), - [anon_sym_and2] = ACTIONS(1529), - [anon_sym_xor2] = ACTIONS(1529), - [anon_sym_or2] = ACTIONS(1529), - [anon_sym_not_DASHin2] = ACTIONS(1529), - [anon_sym_has2] = ACTIONS(1529), - [anon_sym_not_DASHhas2] = ACTIONS(1529), - [anon_sym_starts_DASHwith2] = ACTIONS(1529), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1529), - [anon_sym_ends_DASHwith2] = ACTIONS(1529), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1529), - [anon_sym_EQ_EQ2] = ACTIONS(1529), - [anon_sym_BANG_EQ2] = ACTIONS(1529), - [anon_sym_LT2] = ACTIONS(1527), - [anon_sym_LT_EQ2] = ACTIONS(1529), - [anon_sym_GT_EQ2] = ACTIONS(1529), - [anon_sym_EQ_TILDE2] = ACTIONS(1529), - [anon_sym_BANG_TILDE2] = ACTIONS(1529), - [anon_sym_like2] = ACTIONS(1529), - [anon_sym_not_DASHlike2] = ACTIONS(1529), - [anon_sym_STAR_STAR2] = ACTIONS(1529), - [anon_sym_PLUS_PLUS2] = ACTIONS(1529), - [anon_sym_SLASH2] = ACTIONS(1527), - [anon_sym_mod2] = ACTIONS(1529), - [anon_sym_SLASH_SLASH2] = ACTIONS(1529), - [anon_sym_PLUS2] = ACTIONS(1527), - [anon_sym_bit_DASHshl2] = ACTIONS(1529), - [anon_sym_bit_DASHshr2] = ACTIONS(1529), - [anon_sym_bit_DASHand2] = ACTIONS(1529), - [anon_sym_bit_DASHxor2] = ACTIONS(1529), - [anon_sym_bit_DASHor2] = ACTIONS(1529), - [anon_sym_DOT_DOT2] = ACTIONS(1527), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1529), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1529), - [anon_sym_COLON2] = ACTIONS(1529), - [anon_sym_QMARK2] = ACTIONS(1529), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_DOT2] = ACTIONS(1527), - [anon_sym_err_GT] = ACTIONS(1527), - [anon_sym_out_GT] = ACTIONS(1527), - [anon_sym_e_GT] = ACTIONS(1527), - [anon_sym_o_GT] = ACTIONS(1527), - [anon_sym_err_PLUSout_GT] = ACTIONS(1527), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1527), - [anon_sym_o_PLUSe_GT] = ACTIONS(1527), - [anon_sym_e_PLUSo_GT] = ACTIONS(1527), - [anon_sym_err_GT_GT] = ACTIONS(1529), - [anon_sym_out_GT_GT] = ACTIONS(1529), - [anon_sym_e_GT_GT] = ACTIONS(1529), - [anon_sym_o_GT_GT] = ACTIONS(1529), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1529), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1529), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1529), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1529), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(437)] = { - [sym__expr_parenthesized_immediate] = STATE(1325), - [sym__immediate_decimal] = STATE(1014), - [sym_val_variable] = STATE(1325), + [437] = { + [sym__expr_parenthesized_immediate] = STATE(1352), + [sym__immediate_decimal] = STATE(1077), + [sym_val_variable] = STATE(1352), [sym_comment] = STATE(437), - [ts_builtin_sym_end] = ACTIONS(1642), - [anon_sym_in] = ACTIONS(1642), - [sym__newline] = ACTIONS(1642), - [anon_sym_SEMI] = ACTIONS(1642), - [anon_sym_PIPE] = ACTIONS(1642), - [anon_sym_err_GT_PIPE] = ACTIONS(1642), - [anon_sym_out_GT_PIPE] = ACTIONS(1642), - [anon_sym_e_GT_PIPE] = ACTIONS(1642), - [anon_sym_o_GT_PIPE] = ACTIONS(1642), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1642), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1642), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1642), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1642), - [anon_sym_DOLLAR] = ACTIONS(1693), - [anon_sym_GT2] = ACTIONS(1644), - [anon_sym_DASH2] = ACTIONS(1644), - [anon_sym_STAR2] = ACTIONS(1644), - [anon_sym_and2] = ACTIONS(1642), - [anon_sym_xor2] = ACTIONS(1642), - [anon_sym_or2] = ACTIONS(1642), - [anon_sym_not_DASHin2] = ACTIONS(1642), - [anon_sym_has2] = ACTIONS(1642), - [anon_sym_not_DASHhas2] = ACTIONS(1642), - [anon_sym_starts_DASHwith2] = ACTIONS(1642), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1642), - [anon_sym_ends_DASHwith2] = ACTIONS(1642), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1642), - [anon_sym_EQ_EQ2] = ACTIONS(1642), - [anon_sym_BANG_EQ2] = ACTIONS(1642), - [anon_sym_LT2] = ACTIONS(1644), - [anon_sym_LT_EQ2] = ACTIONS(1642), - [anon_sym_GT_EQ2] = ACTIONS(1642), - [anon_sym_EQ_TILDE2] = ACTIONS(1642), - [anon_sym_BANG_TILDE2] = ACTIONS(1642), - [anon_sym_like2] = ACTIONS(1642), - [anon_sym_not_DASHlike2] = ACTIONS(1642), - [anon_sym_LPAREN2] = ACTIONS(1695), - [anon_sym_STAR_STAR2] = ACTIONS(1642), - [anon_sym_PLUS_PLUS2] = ACTIONS(1642), - [anon_sym_SLASH2] = ACTIONS(1644), - [anon_sym_mod2] = ACTIONS(1642), - [anon_sym_SLASH_SLASH2] = ACTIONS(1642), - [anon_sym_PLUS2] = ACTIONS(1644), - [anon_sym_bit_DASHshl2] = ACTIONS(1642), - [anon_sym_bit_DASHshr2] = ACTIONS(1642), - [anon_sym_bit_DASHand2] = ACTIONS(1642), - [anon_sym_bit_DASHxor2] = ACTIONS(1642), - [anon_sym_bit_DASHor2] = ACTIONS(1642), - [aux_sym__immediate_decimal_token1] = ACTIONS(1722), - [aux_sym__immediate_decimal_token2] = ACTIONS(1722), - [aux_sym__immediate_decimal_token3] = ACTIONS(1724), - [aux_sym__immediate_decimal_token4] = ACTIONS(1724), - [anon_sym_err_GT] = ACTIONS(1644), - [anon_sym_out_GT] = ACTIONS(1644), - [anon_sym_e_GT] = ACTIONS(1644), - [anon_sym_o_GT] = ACTIONS(1644), - [anon_sym_err_PLUSout_GT] = ACTIONS(1644), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1644), - [anon_sym_o_PLUSe_GT] = ACTIONS(1644), - [anon_sym_e_PLUSo_GT] = ACTIONS(1644), - [anon_sym_err_GT_GT] = ACTIONS(1642), - [anon_sym_out_GT_GT] = ACTIONS(1642), - [anon_sym_e_GT_GT] = ACTIONS(1642), - [anon_sym_o_GT_GT] = ACTIONS(1642), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1642), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1642), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1642), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1642), - [sym__unquoted_pattern] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(438)] = { - [sym_path] = STATE(472), + [ts_builtin_sym_end] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_GT2] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_STAR2] = ACTIONS(1689), + [anon_sym_and2] = ACTIONS(1687), + [anon_sym_xor2] = ACTIONS(1687), + [anon_sym_or2] = ACTIONS(1687), + [anon_sym_not_DASHin2] = ACTIONS(1687), + [anon_sym_has2] = ACTIONS(1687), + [anon_sym_not_DASHhas2] = ACTIONS(1687), + [anon_sym_starts_DASHwith2] = ACTIONS(1687), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1687), + [anon_sym_ends_DASHwith2] = ACTIONS(1687), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1687), + [anon_sym_EQ_EQ2] = ACTIONS(1687), + [anon_sym_BANG_EQ2] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1689), + [anon_sym_LT_EQ2] = ACTIONS(1687), + [anon_sym_GT_EQ2] = ACTIONS(1687), + [anon_sym_EQ_TILDE2] = ACTIONS(1687), + [anon_sym_BANG_TILDE2] = ACTIONS(1687), + [anon_sym_like2] = ACTIONS(1687), + [anon_sym_not_DASHlike2] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_STAR_STAR2] = ACTIONS(1687), + [anon_sym_PLUS_PLUS2] = ACTIONS(1687), + [anon_sym_SLASH2] = ACTIONS(1689), + [anon_sym_mod2] = ACTIONS(1687), + [anon_sym_SLASH_SLASH2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1689), + [anon_sym_bit_DASHshl2] = ACTIONS(1687), + [anon_sym_bit_DASHshr2] = ACTIONS(1687), + [anon_sym_bit_DASHand2] = ACTIONS(1687), + [anon_sym_bit_DASHxor2] = ACTIONS(1687), + [anon_sym_bit_DASHor2] = ACTIONS(1687), + [aux_sym__immediate_decimal_token1] = ACTIONS(1726), + [aux_sym__immediate_decimal_token2] = ACTIONS(1726), + [aux_sym__immediate_decimal_token3] = ACTIONS(1728), + [aux_sym__immediate_decimal_token4] = ACTIONS(1728), + [anon_sym_err_GT] = ACTIONS(1689), + [anon_sym_out_GT] = ACTIONS(1689), + [anon_sym_e_GT] = ACTIONS(1689), + [anon_sym_o_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT] = ACTIONS(1689), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), + [sym__unquoted_pattern] = ACTIONS(1697), + [anon_sym_POUND] = ACTIONS(3), + }, + [438] = { [sym_comment] = STATE(438), - [aux_sym__where_predicate_lhs_repeat1] = STATE(428), - [anon_sym_in] = ACTIONS(1579), - [sym__newline] = ACTIONS(1579), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_err_GT_PIPE] = ACTIONS(1579), - [anon_sym_out_GT_PIPE] = ACTIONS(1579), - [anon_sym_e_GT_PIPE] = ACTIONS(1579), - [anon_sym_o_GT_PIPE] = ACTIONS(1579), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), - [anon_sym_RPAREN] = ACTIONS(1579), - [anon_sym_GT2] = ACTIONS(1577), - [anon_sym_DASH2] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_RBRACE] = ACTIONS(1579), - [anon_sym_EQ_GT] = ACTIONS(1579), - [anon_sym_STAR2] = ACTIONS(1577), - [anon_sym_and2] = ACTIONS(1579), - [anon_sym_xor2] = ACTIONS(1579), - [anon_sym_or2] = ACTIONS(1579), - [anon_sym_not_DASHin2] = ACTIONS(1579), - [anon_sym_has2] = ACTIONS(1579), - [anon_sym_not_DASHhas2] = ACTIONS(1579), - [anon_sym_starts_DASHwith2] = ACTIONS(1579), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1579), - [anon_sym_ends_DASHwith2] = ACTIONS(1579), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1579), - [anon_sym_EQ_EQ2] = ACTIONS(1579), - [anon_sym_BANG_EQ2] = ACTIONS(1579), - [anon_sym_LT2] = ACTIONS(1577), - [anon_sym_LT_EQ2] = ACTIONS(1579), - [anon_sym_GT_EQ2] = ACTIONS(1579), - [anon_sym_EQ_TILDE2] = ACTIONS(1579), - [anon_sym_BANG_TILDE2] = ACTIONS(1579), - [anon_sym_like2] = ACTIONS(1579), - [anon_sym_not_DASHlike2] = ACTIONS(1579), - [anon_sym_STAR_STAR2] = ACTIONS(1579), - [anon_sym_PLUS_PLUS2] = ACTIONS(1579), - [anon_sym_SLASH2] = ACTIONS(1577), - [anon_sym_mod2] = ACTIONS(1579), - [anon_sym_SLASH_SLASH2] = ACTIONS(1579), - [anon_sym_PLUS2] = ACTIONS(1577), - [anon_sym_bit_DASHshl2] = ACTIONS(1579), - [anon_sym_bit_DASHshr2] = ACTIONS(1579), - [anon_sym_bit_DASHand2] = ACTIONS(1579), - [anon_sym_bit_DASHxor2] = ACTIONS(1579), - [anon_sym_bit_DASHor2] = ACTIONS(1579), - [anon_sym_DOT_DOT2] = ACTIONS(1577), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1579), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1579), - [anon_sym_COLON2] = ACTIONS(1579), - [anon_sym_DOT2] = ACTIONS(1673), - [anon_sym_err_GT] = ACTIONS(1577), - [anon_sym_out_GT] = ACTIONS(1577), - [anon_sym_e_GT] = ACTIONS(1577), - [anon_sym_o_GT] = ACTIONS(1577), - [anon_sym_err_PLUSout_GT] = ACTIONS(1577), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1577), - [anon_sym_o_PLUSe_GT] = ACTIONS(1577), - [anon_sym_e_PLUSo_GT] = ACTIONS(1577), - [anon_sym_err_GT_GT] = ACTIONS(1579), - [anon_sym_out_GT_GT] = ACTIONS(1579), - [anon_sym_e_GT_GT] = ACTIONS(1579), - [anon_sym_o_GT_GT] = ACTIONS(1579), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1579), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1579), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1579), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(439)] = { + [ts_builtin_sym_end] = ACTIONS(1598), + [anon_sym_EQ] = ACTIONS(1596), + [anon_sym_PLUS_EQ] = ACTIONS(1598), + [anon_sym_DASH_EQ] = ACTIONS(1598), + [anon_sym_STAR_EQ] = ACTIONS(1598), + [anon_sym_SLASH_EQ] = ACTIONS(1598), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1598), + [anon_sym_in] = ACTIONS(1598), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_COLON] = ACTIONS(1598), + [anon_sym_GT2] = ACTIONS(1596), + [anon_sym_DASH2] = ACTIONS(1596), + [anon_sym_STAR2] = ACTIONS(1596), + [anon_sym_and2] = ACTIONS(1598), + [anon_sym_xor2] = ACTIONS(1598), + [anon_sym_or2] = ACTIONS(1598), + [anon_sym_not_DASHin2] = ACTIONS(1598), + [anon_sym_has2] = ACTIONS(1598), + [anon_sym_not_DASHhas2] = ACTIONS(1598), + [anon_sym_starts_DASHwith2] = ACTIONS(1598), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1598), + [anon_sym_ends_DASHwith2] = ACTIONS(1598), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1598), + [anon_sym_EQ_EQ2] = ACTIONS(1598), + [anon_sym_BANG_EQ2] = ACTIONS(1598), + [anon_sym_LT2] = ACTIONS(1596), + [anon_sym_LT_EQ2] = ACTIONS(1598), + [anon_sym_GT_EQ2] = ACTIONS(1598), + [anon_sym_EQ_TILDE2] = ACTIONS(1598), + [anon_sym_BANG_TILDE2] = ACTIONS(1598), + [anon_sym_like2] = ACTIONS(1598), + [anon_sym_not_DASHlike2] = ACTIONS(1598), + [anon_sym_STAR_STAR2] = ACTIONS(1598), + [anon_sym_PLUS_PLUS2] = ACTIONS(1596), + [anon_sym_SLASH2] = ACTIONS(1596), + [anon_sym_mod2] = ACTIONS(1598), + [anon_sym_SLASH_SLASH2] = ACTIONS(1598), + [anon_sym_PLUS2] = ACTIONS(1596), + [anon_sym_bit_DASHshl2] = ACTIONS(1598), + [anon_sym_bit_DASHshr2] = ACTIONS(1598), + [anon_sym_bit_DASHand2] = ACTIONS(1598), + [anon_sym_bit_DASHxor2] = ACTIONS(1598), + [anon_sym_bit_DASHor2] = ACTIONS(1598), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [anon_sym_err_GT] = ACTIONS(1596), + [anon_sym_out_GT] = ACTIONS(1596), + [anon_sym_e_GT] = ACTIONS(1596), + [anon_sym_o_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT] = ACTIONS(1596), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(3), + }, + [439] = { [sym_comment] = STATE(439), - [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_QMARK2] = ACTIONS(1547), - [anon_sym_BANG] = 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(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(440)] = { + [anon_sym_in] = ACTIONS(1542), + [sym__newline] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_err_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_GT_PIPE] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1542), + [anon_sym_GT2] = ACTIONS(1540), + [anon_sym_DASH2] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_EQ_GT] = ACTIONS(1542), + [anon_sym_STAR2] = ACTIONS(1540), + [anon_sym_and2] = ACTIONS(1542), + [anon_sym_xor2] = ACTIONS(1542), + [anon_sym_or2] = ACTIONS(1542), + [anon_sym_not_DASHin2] = ACTIONS(1542), + [anon_sym_has2] = ACTIONS(1542), + [anon_sym_not_DASHhas2] = ACTIONS(1542), + [anon_sym_starts_DASHwith2] = ACTIONS(1542), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1542), + [anon_sym_ends_DASHwith2] = ACTIONS(1542), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1542), + [anon_sym_EQ_EQ2] = ACTIONS(1542), + [anon_sym_BANG_EQ2] = ACTIONS(1542), + [anon_sym_LT2] = ACTIONS(1540), + [anon_sym_LT_EQ2] = ACTIONS(1542), + [anon_sym_GT_EQ2] = ACTIONS(1542), + [anon_sym_EQ_TILDE2] = ACTIONS(1542), + [anon_sym_BANG_TILDE2] = ACTIONS(1542), + [anon_sym_like2] = ACTIONS(1542), + [anon_sym_not_DASHlike2] = ACTIONS(1542), + [anon_sym_STAR_STAR2] = ACTIONS(1542), + [anon_sym_PLUS_PLUS2] = ACTIONS(1542), + [anon_sym_SLASH2] = ACTIONS(1540), + [anon_sym_mod2] = ACTIONS(1542), + [anon_sym_SLASH_SLASH2] = ACTIONS(1542), + [anon_sym_PLUS2] = ACTIONS(1540), + [anon_sym_bit_DASHshl2] = ACTIONS(1542), + [anon_sym_bit_DASHshr2] = ACTIONS(1542), + [anon_sym_bit_DASHand2] = ACTIONS(1542), + [anon_sym_bit_DASHxor2] = ACTIONS(1542), + [anon_sym_bit_DASHor2] = ACTIONS(1542), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [anon_sym_COLON2] = ACTIONS(1542), + [anon_sym_QMARK2] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_DOT2] = ACTIONS(1540), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [anon_sym_err_GT_GT] = ACTIONS(1542), + [anon_sym_out_GT_GT] = ACTIONS(1542), + [anon_sym_e_GT_GT] = ACTIONS(1542), + [anon_sym_o_GT_GT] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), + [anon_sym_POUND] = ACTIONS(3), + }, + [440] = { [sym_comment] = STATE(440), - [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), - [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_QMARK2] = ACTIONS(1726), - [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(441)] = { + [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), + }, + [441] = { + [sym__expr_parenthesized_immediate] = STATE(965), + [sym__immediate_decimal] = STATE(966), + [sym_val_variable] = STATE(965), [sym_comment] = STATE(441), - [anon_sym_in] = ACTIONS(753), - [sym__newline] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(753), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_err_GT_PIPE] = ACTIONS(753), - [anon_sym_out_GT_PIPE] = ACTIONS(753), - [anon_sym_e_GT_PIPE] = ACTIONS(753), - [anon_sym_o_GT_PIPE] = ACTIONS(753), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(753), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(753), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(753), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(753), - [anon_sym_RPAREN] = ACTIONS(753), - [anon_sym_GT2] = ACTIONS(751), - [anon_sym_DASH2] = ACTIONS(753), - [anon_sym_RBRACE] = ACTIONS(753), - [anon_sym_STAR2] = ACTIONS(751), - [anon_sym_and2] = ACTIONS(753), - [anon_sym_xor2] = ACTIONS(753), - [anon_sym_or2] = ACTIONS(753), - [anon_sym_not_DASHin2] = ACTIONS(753), - [anon_sym_has2] = ACTIONS(753), - [anon_sym_not_DASHhas2] = ACTIONS(753), - [anon_sym_starts_DASHwith2] = ACTIONS(753), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(753), - [anon_sym_ends_DASHwith2] = ACTIONS(753), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(753), - [anon_sym_EQ_EQ2] = ACTIONS(753), - [anon_sym_BANG_EQ2] = ACTIONS(753), - [anon_sym_LT2] = ACTIONS(751), - [anon_sym_LT_EQ2] = ACTIONS(753), - [anon_sym_GT_EQ2] = ACTIONS(753), - [anon_sym_EQ_TILDE2] = ACTIONS(753), - [anon_sym_BANG_TILDE2] = ACTIONS(753), - [anon_sym_like2] = ACTIONS(753), - [anon_sym_not_DASHlike2] = ACTIONS(753), - [anon_sym_LPAREN2] = ACTIONS(753), - [anon_sym_STAR_STAR2] = ACTIONS(753), - [anon_sym_PLUS_PLUS2] = ACTIONS(753), - [anon_sym_SLASH2] = ACTIONS(751), - [anon_sym_mod2] = ACTIONS(753), - [anon_sym_SLASH_SLASH2] = ACTIONS(753), - [anon_sym_PLUS2] = ACTIONS(751), - [anon_sym_bit_DASHshl2] = ACTIONS(753), - [anon_sym_bit_DASHshr2] = ACTIONS(753), - [anon_sym_bit_DASHand2] = ACTIONS(753), - [anon_sym_bit_DASHxor2] = ACTIONS(753), - [anon_sym_bit_DASHor2] = ACTIONS(753), - [anon_sym_DOT_DOT2] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(1728), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(753), - [aux_sym__immediate_decimal_token5] = ACTIONS(1730), - [sym_filesize_unit] = ACTIONS(751), - [sym_duration_unit] = ACTIONS(753), - [anon_sym_err_GT] = ACTIONS(751), - [anon_sym_out_GT] = ACTIONS(751), - [anon_sym_e_GT] = ACTIONS(751), - [anon_sym_o_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT] = ACTIONS(751), - [anon_sym_err_GT_GT] = ACTIONS(753), - [anon_sym_out_GT_GT] = ACTIONS(753), - [anon_sym_e_GT_GT] = ACTIONS(753), - [anon_sym_o_GT_GT] = ACTIONS(753), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(753), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(753), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(753), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(753), - [sym__unquoted_pattern] = ACTIONS(751), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(442)] = { + [ts_builtin_sym_end] = ACTIONS(1622), + [anon_sym_in] = ACTIONS(1622), + [sym__newline] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_PIPE] = ACTIONS(1622), + [anon_sym_err_GT_PIPE] = ACTIONS(1622), + [anon_sym_out_GT_PIPE] = ACTIONS(1622), + [anon_sym_e_GT_PIPE] = ACTIONS(1622), + [anon_sym_o_GT_PIPE] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1622), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_GT2] = ACTIONS(1626), + [anon_sym_DASH2] = ACTIONS(1626), + [anon_sym_STAR2] = ACTIONS(1626), + [anon_sym_and2] = ACTIONS(1622), + [anon_sym_xor2] = ACTIONS(1622), + [anon_sym_or2] = ACTIONS(1622), + [anon_sym_not_DASHin2] = ACTIONS(1622), + [anon_sym_has2] = ACTIONS(1622), + [anon_sym_not_DASHhas2] = ACTIONS(1622), + [anon_sym_starts_DASHwith2] = ACTIONS(1622), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1622), + [anon_sym_ends_DASHwith2] = ACTIONS(1622), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1622), + [anon_sym_EQ_EQ2] = ACTIONS(1622), + [anon_sym_BANG_EQ2] = ACTIONS(1622), + [anon_sym_LT2] = ACTIONS(1626), + [anon_sym_LT_EQ2] = ACTIONS(1622), + [anon_sym_GT_EQ2] = ACTIONS(1622), + [anon_sym_EQ_TILDE2] = ACTIONS(1622), + [anon_sym_BANG_TILDE2] = ACTIONS(1622), + [anon_sym_like2] = ACTIONS(1622), + [anon_sym_not_DASHlike2] = ACTIONS(1622), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_STAR_STAR2] = ACTIONS(1622), + [anon_sym_PLUS_PLUS2] = ACTIONS(1622), + [anon_sym_SLASH2] = ACTIONS(1626), + [anon_sym_mod2] = ACTIONS(1622), + [anon_sym_SLASH_SLASH2] = ACTIONS(1622), + [anon_sym_PLUS2] = ACTIONS(1626), + [anon_sym_bit_DASHshl2] = ACTIONS(1622), + [anon_sym_bit_DASHshr2] = ACTIONS(1622), + [anon_sym_bit_DASHand2] = ACTIONS(1622), + [anon_sym_bit_DASHxor2] = ACTIONS(1622), + [anon_sym_bit_DASHor2] = ACTIONS(1622), + [anon_sym_DOT] = ACTIONS(1732), + [aux_sym__immediate_decimal_token1] = ACTIONS(1709), + [aux_sym__immediate_decimal_token2] = ACTIONS(1709), + [aux_sym__immediate_decimal_token3] = ACTIONS(1711), + [aux_sym__immediate_decimal_token4] = ACTIONS(1711), + [anon_sym_err_GT] = ACTIONS(1626), + [anon_sym_out_GT] = ACTIONS(1626), + [anon_sym_e_GT] = ACTIONS(1626), + [anon_sym_o_GT] = ACTIONS(1626), + [anon_sym_err_PLUSout_GT] = ACTIONS(1626), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1626), + [anon_sym_o_PLUSe_GT] = ACTIONS(1626), + [anon_sym_e_PLUSo_GT] = ACTIONS(1626), + [anon_sym_err_GT_GT] = ACTIONS(1622), + [anon_sym_out_GT_GT] = ACTIONS(1622), + [anon_sym_e_GT_GT] = ACTIONS(1622), + [anon_sym_o_GT_GT] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1622), + [anon_sym_POUND] = ACTIONS(3), + }, + [442] = { [sym_comment] = STATE(442), - [ts_builtin_sym_end] = ACTIONS(1557), - [anon_sym_EQ] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(1557), - [anon_sym_DASH_EQ] = ACTIONS(1557), - [anon_sym_STAR_EQ] = ACTIONS(1557), - [anon_sym_SLASH_EQ] = ACTIONS(1557), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1557), - [anon_sym_in] = ACTIONS(1557), - [sym__newline] = ACTIONS(1557), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_PIPE] = ACTIONS(1557), - [anon_sym_err_GT_PIPE] = ACTIONS(1557), - [anon_sym_out_GT_PIPE] = ACTIONS(1557), - [anon_sym_e_GT_PIPE] = ACTIONS(1557), - [anon_sym_o_GT_PIPE] = ACTIONS(1557), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), - [anon_sym_GT2] = ACTIONS(1555), - [anon_sym_DASH2] = ACTIONS(1555), - [anon_sym_STAR2] = ACTIONS(1555), - [anon_sym_and2] = ACTIONS(1557), - [anon_sym_xor2] = ACTIONS(1557), - [anon_sym_or2] = ACTIONS(1557), - [anon_sym_not_DASHin2] = ACTIONS(1557), - [anon_sym_has2] = ACTIONS(1557), - [anon_sym_not_DASHhas2] = ACTIONS(1557), - [anon_sym_starts_DASHwith2] = ACTIONS(1557), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1557), - [anon_sym_ends_DASHwith2] = ACTIONS(1557), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1557), - [anon_sym_EQ_EQ2] = ACTIONS(1557), - [anon_sym_BANG_EQ2] = ACTIONS(1557), - [anon_sym_LT2] = ACTIONS(1555), - [anon_sym_LT_EQ2] = ACTIONS(1557), - [anon_sym_GT_EQ2] = ACTIONS(1557), - [anon_sym_EQ_TILDE2] = ACTIONS(1557), - [anon_sym_BANG_TILDE2] = ACTIONS(1557), - [anon_sym_like2] = ACTIONS(1557), - [anon_sym_not_DASHlike2] = ACTIONS(1557), - [anon_sym_STAR_STAR2] = ACTIONS(1557), - [anon_sym_PLUS_PLUS2] = ACTIONS(1555), - [anon_sym_SLASH2] = ACTIONS(1555), - [anon_sym_mod2] = ACTIONS(1557), - [anon_sym_SLASH_SLASH2] = ACTIONS(1557), - [anon_sym_PLUS2] = ACTIONS(1555), - [anon_sym_bit_DASHshl2] = ACTIONS(1557), - [anon_sym_bit_DASHshr2] = ACTIONS(1557), - [anon_sym_bit_DASHand2] = ACTIONS(1557), - [anon_sym_bit_DASHxor2] = ACTIONS(1557), - [anon_sym_bit_DASHor2] = ACTIONS(1557), - [anon_sym_DOT_DOT2] = ACTIONS(1555), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1557), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1557), - [anon_sym_DOT2] = ACTIONS(1555), - [anon_sym_err_GT] = ACTIONS(1555), - [anon_sym_out_GT] = ACTIONS(1555), - [anon_sym_e_GT] = ACTIONS(1555), - [anon_sym_o_GT] = ACTIONS(1555), - [anon_sym_err_PLUSout_GT] = ACTIONS(1555), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1555), - [anon_sym_o_PLUSe_GT] = ACTIONS(1555), - [anon_sym_e_PLUSo_GT] = ACTIONS(1555), - [anon_sym_err_GT_GT] = ACTIONS(1557), - [anon_sym_out_GT_GT] = ACTIONS(1557), - [anon_sym_e_GT_GT] = ACTIONS(1557), - [anon_sym_o_GT_GT] = ACTIONS(1557), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(443)] = { - [sym__expr_parenthesized_immediate] = STATE(954), - [sym__immediate_decimal] = STATE(928), - [sym_val_variable] = STATE(954), + [anon_sym_EQ] = ACTIONS(1608), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1736), + [sym__newline] = ACTIONS(1736), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_PIPE] = ACTIONS(1736), + [anon_sym_err_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_GT_PIPE] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), + [anon_sym_GT2] = ACTIONS(1610), + [anon_sym_DASH2] = ACTIONS(1610), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_STAR2] = ACTIONS(1610), + [anon_sym_and2] = ACTIONS(1736), + [anon_sym_xor2] = ACTIONS(1736), + [anon_sym_or2] = ACTIONS(1736), + [anon_sym_not_DASHin2] = ACTIONS(1736), + [anon_sym_has2] = ACTIONS(1736), + [anon_sym_not_DASHhas2] = ACTIONS(1736), + [anon_sym_starts_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), + [anon_sym_ends_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), + [anon_sym_EQ_EQ2] = ACTIONS(1736), + [anon_sym_BANG_EQ2] = ACTIONS(1736), + [anon_sym_LT2] = ACTIONS(1610), + [anon_sym_LT_EQ2] = ACTIONS(1736), + [anon_sym_GT_EQ2] = ACTIONS(1736), + [anon_sym_EQ_TILDE2] = ACTIONS(1736), + [anon_sym_BANG_TILDE2] = ACTIONS(1736), + [anon_sym_like2] = ACTIONS(1736), + [anon_sym_not_DASHlike2] = ACTIONS(1736), + [anon_sym_STAR_STAR2] = ACTIONS(1736), + [anon_sym_PLUS_PLUS2] = ACTIONS(1610), + [anon_sym_SLASH2] = ACTIONS(1610), + [anon_sym_mod2] = ACTIONS(1736), + [anon_sym_SLASH_SLASH2] = ACTIONS(1736), + [anon_sym_PLUS2] = ACTIONS(1610), + [anon_sym_bit_DASHshl2] = ACTIONS(1736), + [anon_sym_bit_DASHshr2] = ACTIONS(1736), + [anon_sym_bit_DASHand2] = ACTIONS(1736), + [anon_sym_bit_DASHxor2] = ACTIONS(1736), + [anon_sym_bit_DASHor2] = ACTIONS(1736), + [anon_sym_DOT_DOT2] = ACTIONS(1614), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1616), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1616), + [anon_sym_COLON2] = ACTIONS(1738), + [anon_sym_err_GT] = ACTIONS(1610), + [anon_sym_out_GT] = ACTIONS(1610), + [anon_sym_e_GT] = ACTIONS(1610), + [anon_sym_o_GT] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT] = ACTIONS(1610), + [anon_sym_err_GT_GT] = ACTIONS(1736), + [anon_sym_out_GT_GT] = ACTIONS(1736), + [anon_sym_e_GT_GT] = ACTIONS(1736), + [anon_sym_o_GT_GT] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), + [anon_sym_POUND] = ACTIONS(3), + }, + [443] = { [sym_comment] = STATE(443), - [ts_builtin_sym_end] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1628), - [sym__newline] = ACTIONS(1628), - [anon_sym_SEMI] = ACTIONS(1628), - [anon_sym_PIPE] = ACTIONS(1628), - [anon_sym_err_GT_PIPE] = ACTIONS(1628), - [anon_sym_out_GT_PIPE] = ACTIONS(1628), - [anon_sym_e_GT_PIPE] = ACTIONS(1628), - [anon_sym_o_GT_PIPE] = ACTIONS(1628), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1628), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1628), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1628), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1628), - [anon_sym_DOLLAR] = ACTIONS(1693), - [anon_sym_GT2] = ACTIONS(1632), - [anon_sym_DASH2] = ACTIONS(1632), - [anon_sym_STAR2] = ACTIONS(1632), - [anon_sym_and2] = ACTIONS(1628), - [anon_sym_xor2] = ACTIONS(1628), - [anon_sym_or2] = ACTIONS(1628), - [anon_sym_not_DASHin2] = ACTIONS(1628), - [anon_sym_has2] = ACTIONS(1628), - [anon_sym_not_DASHhas2] = ACTIONS(1628), - [anon_sym_starts_DASHwith2] = ACTIONS(1628), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1628), - [anon_sym_ends_DASHwith2] = ACTIONS(1628), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1628), - [anon_sym_EQ_EQ2] = ACTIONS(1628), - [anon_sym_BANG_EQ2] = ACTIONS(1628), - [anon_sym_LT2] = ACTIONS(1632), - [anon_sym_LT_EQ2] = ACTIONS(1628), - [anon_sym_GT_EQ2] = ACTIONS(1628), - [anon_sym_EQ_TILDE2] = ACTIONS(1628), - [anon_sym_BANG_TILDE2] = ACTIONS(1628), - [anon_sym_like2] = ACTIONS(1628), - [anon_sym_not_DASHlike2] = ACTIONS(1628), - [anon_sym_LPAREN2] = ACTIONS(1695), - [anon_sym_STAR_STAR2] = ACTIONS(1628), - [anon_sym_PLUS_PLUS2] = ACTIONS(1628), - [anon_sym_SLASH2] = ACTIONS(1632), - [anon_sym_mod2] = ACTIONS(1628), - [anon_sym_SLASH_SLASH2] = ACTIONS(1628), - [anon_sym_PLUS2] = ACTIONS(1632), - [anon_sym_bit_DASHshl2] = ACTIONS(1628), - [anon_sym_bit_DASHshr2] = ACTIONS(1628), - [anon_sym_bit_DASHand2] = ACTIONS(1628), - [anon_sym_bit_DASHxor2] = ACTIONS(1628), - [anon_sym_bit_DASHor2] = ACTIONS(1628), - [anon_sym_DOT] = ACTIONS(1732), - [aux_sym__immediate_decimal_token1] = ACTIONS(1699), - [aux_sym__immediate_decimal_token2] = ACTIONS(1699), - [aux_sym__immediate_decimal_token3] = ACTIONS(1701), - [aux_sym__immediate_decimal_token4] = ACTIONS(1701), - [anon_sym_err_GT] = ACTIONS(1632), - [anon_sym_out_GT] = ACTIONS(1632), - [anon_sym_e_GT] = ACTIONS(1632), - [anon_sym_o_GT] = ACTIONS(1632), - [anon_sym_err_PLUSout_GT] = ACTIONS(1632), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1632), - [anon_sym_o_PLUSe_GT] = ACTIONS(1632), - [anon_sym_e_PLUSo_GT] = ACTIONS(1632), - [anon_sym_err_GT_GT] = ACTIONS(1628), - [anon_sym_out_GT_GT] = ACTIONS(1628), - [anon_sym_e_GT_GT] = ACTIONS(1628), - [anon_sym_o_GT_GT] = ACTIONS(1628), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1628), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1628), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1628), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1628), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(444)] = { - [sym__expr_parenthesized_immediate] = STATE(957), - [sym__immediate_decimal] = STATE(958), - [sym_val_variable] = STATE(957), + [anon_sym_in] = ACTIONS(757), + [sym__newline] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(757), + [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_err_GT_PIPE] = ACTIONS(757), + [anon_sym_out_GT_PIPE] = ACTIONS(757), + [anon_sym_e_GT_PIPE] = ACTIONS(757), + [anon_sym_o_GT_PIPE] = ACTIONS(757), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(757), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(757), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(757), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(757), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(757), + [anon_sym_RBRACE] = ACTIONS(757), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(757), + [anon_sym_xor2] = ACTIONS(757), + [anon_sym_or2] = ACTIONS(757), + [anon_sym_not_DASHin2] = ACTIONS(757), + [anon_sym_has2] = ACTIONS(757), + [anon_sym_not_DASHhas2] = ACTIONS(757), + [anon_sym_starts_DASHwith2] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(757), + [anon_sym_ends_DASHwith2] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(757), + [anon_sym_EQ_EQ2] = ACTIONS(757), + [anon_sym_BANG_EQ2] = ACTIONS(757), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(757), + [anon_sym_GT_EQ2] = ACTIONS(757), + [anon_sym_EQ_TILDE2] = ACTIONS(757), + [anon_sym_BANG_TILDE2] = ACTIONS(757), + [anon_sym_like2] = ACTIONS(757), + [anon_sym_not_DASHlike2] = ACTIONS(757), + [anon_sym_LPAREN2] = ACTIONS(757), + [anon_sym_STAR_STAR2] = ACTIONS(757), + [anon_sym_PLUS_PLUS2] = ACTIONS(757), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(757), + [anon_sym_SLASH_SLASH2] = ACTIONS(757), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(757), + [anon_sym_bit_DASHshr2] = ACTIONS(757), + [anon_sym_bit_DASHand2] = ACTIONS(757), + [anon_sym_bit_DASHxor2] = ACTIONS(757), + [anon_sym_bit_DASHor2] = ACTIONS(757), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token1] = ACTIONS(1740), + [aux_sym__immediate_decimal_token5] = ACTIONS(1742), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(757), + [anon_sym_out_GT_GT] = ACTIONS(757), + [anon_sym_e_GT_GT] = ACTIONS(757), + [anon_sym_o_GT_GT] = ACTIONS(757), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(757), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(757), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(757), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(757), + [sym__unquoted_pattern] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(3), + }, + [444] = { [sym_comment] = STATE(444), - [ts_builtin_sym_end] = ACTIONS(1642), - [anon_sym_in] = ACTIONS(1642), - [sym__newline] = ACTIONS(1642), - [anon_sym_SEMI] = ACTIONS(1642), - [anon_sym_PIPE] = ACTIONS(1642), - [anon_sym_err_GT_PIPE] = ACTIONS(1642), - [anon_sym_out_GT_PIPE] = ACTIONS(1642), - [anon_sym_e_GT_PIPE] = ACTIONS(1642), - [anon_sym_o_GT_PIPE] = ACTIONS(1642), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1642), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1642), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1642), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1642), - [anon_sym_DOLLAR] = ACTIONS(1693), - [anon_sym_GT2] = ACTIONS(1644), - [anon_sym_DASH2] = ACTIONS(1644), - [anon_sym_STAR2] = ACTIONS(1644), - [anon_sym_and2] = ACTIONS(1642), - [anon_sym_xor2] = ACTIONS(1642), - [anon_sym_or2] = ACTIONS(1642), - [anon_sym_not_DASHin2] = ACTIONS(1642), - [anon_sym_has2] = ACTIONS(1642), - [anon_sym_not_DASHhas2] = ACTIONS(1642), - [anon_sym_starts_DASHwith2] = ACTIONS(1642), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1642), - [anon_sym_ends_DASHwith2] = ACTIONS(1642), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1642), - [anon_sym_EQ_EQ2] = ACTIONS(1642), - [anon_sym_BANG_EQ2] = ACTIONS(1642), - [anon_sym_LT2] = ACTIONS(1644), - [anon_sym_LT_EQ2] = ACTIONS(1642), - [anon_sym_GT_EQ2] = ACTIONS(1642), - [anon_sym_EQ_TILDE2] = ACTIONS(1642), - [anon_sym_BANG_TILDE2] = ACTIONS(1642), - [anon_sym_like2] = ACTIONS(1642), - [anon_sym_not_DASHlike2] = ACTIONS(1642), - [anon_sym_LPAREN2] = ACTIONS(1695), - [anon_sym_STAR_STAR2] = ACTIONS(1642), - [anon_sym_PLUS_PLUS2] = ACTIONS(1642), - [anon_sym_SLASH2] = ACTIONS(1644), - [anon_sym_mod2] = ACTIONS(1642), - [anon_sym_SLASH_SLASH2] = ACTIONS(1642), - [anon_sym_PLUS2] = ACTIONS(1644), - [anon_sym_bit_DASHshl2] = ACTIONS(1642), - [anon_sym_bit_DASHshr2] = ACTIONS(1642), - [anon_sym_bit_DASHand2] = ACTIONS(1642), - [anon_sym_bit_DASHxor2] = ACTIONS(1642), - [anon_sym_bit_DASHor2] = ACTIONS(1642), - [anon_sym_DOT] = ACTIONS(1734), - [aux_sym__immediate_decimal_token1] = ACTIONS(1699), - [aux_sym__immediate_decimal_token2] = ACTIONS(1699), - [aux_sym__immediate_decimal_token3] = ACTIONS(1701), - [aux_sym__immediate_decimal_token4] = ACTIONS(1701), - [anon_sym_err_GT] = ACTIONS(1644), - [anon_sym_out_GT] = ACTIONS(1644), - [anon_sym_e_GT] = ACTIONS(1644), - [anon_sym_o_GT] = ACTIONS(1644), - [anon_sym_err_PLUSout_GT] = ACTIONS(1644), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1644), - [anon_sym_o_PLUSe_GT] = ACTIONS(1644), - [anon_sym_e_PLUSo_GT] = ACTIONS(1644), - [anon_sym_err_GT_GT] = ACTIONS(1642), - [anon_sym_out_GT_GT] = ACTIONS(1642), - [anon_sym_e_GT_GT] = ACTIONS(1642), - [anon_sym_o_GT_GT] = ACTIONS(1642), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1642), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1642), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1642), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1642), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(445)] = { + [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(1536), + [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), + }, + [445] = { + [sym__expr_parenthesized_immediate] = STATE(962), + [sym__immediate_decimal] = STATE(963), + [sym_val_variable] = STATE(962), [sym_comment] = STATE(445), - [anon_sym_EQ] = ACTIONS(1614), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1738), - [sym__newline] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_err_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_GT_PIPE] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), - [anon_sym_GT2] = ACTIONS(1616), - [anon_sym_DASH2] = ACTIONS(1616), - [anon_sym_RBRACE] = ACTIONS(1738), - [anon_sym_STAR2] = ACTIONS(1616), - [anon_sym_and2] = ACTIONS(1738), - [anon_sym_xor2] = ACTIONS(1738), - [anon_sym_or2] = ACTIONS(1738), - [anon_sym_not_DASHin2] = ACTIONS(1738), - [anon_sym_has2] = ACTIONS(1738), - [anon_sym_not_DASHhas2] = ACTIONS(1738), - [anon_sym_starts_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), - [anon_sym_ends_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), - [anon_sym_EQ_EQ2] = ACTIONS(1738), - [anon_sym_BANG_EQ2] = ACTIONS(1738), - [anon_sym_LT2] = ACTIONS(1616), - [anon_sym_LT_EQ2] = ACTIONS(1738), - [anon_sym_GT_EQ2] = ACTIONS(1738), - [anon_sym_EQ_TILDE2] = ACTIONS(1738), - [anon_sym_BANG_TILDE2] = ACTIONS(1738), - [anon_sym_like2] = ACTIONS(1738), - [anon_sym_not_DASHlike2] = ACTIONS(1738), - [anon_sym_STAR_STAR2] = ACTIONS(1738), - [anon_sym_PLUS_PLUS2] = ACTIONS(1616), - [anon_sym_SLASH2] = ACTIONS(1616), - [anon_sym_mod2] = ACTIONS(1738), - [anon_sym_SLASH_SLASH2] = ACTIONS(1738), - [anon_sym_PLUS2] = ACTIONS(1616), - [anon_sym_bit_DASHshl2] = ACTIONS(1738), - [anon_sym_bit_DASHshr2] = ACTIONS(1738), - [anon_sym_bit_DASHand2] = ACTIONS(1738), - [anon_sym_bit_DASHxor2] = ACTIONS(1738), - [anon_sym_bit_DASHor2] = ACTIONS(1738), - [anon_sym_DOT_DOT2] = ACTIONS(1620), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), - [anon_sym_COLON2] = ACTIONS(1740), - [anon_sym_err_GT] = ACTIONS(1616), - [anon_sym_out_GT] = ACTIONS(1616), - [anon_sym_e_GT] = ACTIONS(1616), - [anon_sym_o_GT] = ACTIONS(1616), - [anon_sym_err_PLUSout_GT] = ACTIONS(1616), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), - [anon_sym_o_PLUSe_GT] = ACTIONS(1616), - [anon_sym_e_PLUSo_GT] = ACTIONS(1616), - [anon_sym_err_GT_GT] = ACTIONS(1738), - [anon_sym_out_GT_GT] = ACTIONS(1738), - [anon_sym_e_GT_GT] = ACTIONS(1738), - [anon_sym_o_GT_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(446)] = { - [sym__expr_parenthesized_immediate] = STATE(1306), - [sym__immediate_decimal] = STATE(1022), - [sym_val_variable] = STATE(1306), + [ts_builtin_sym_end] = ACTIONS(1648), + [anon_sym_in] = ACTIONS(1648), + [sym__newline] = ACTIONS(1648), + [anon_sym_SEMI] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1648), + [anon_sym_err_GT_PIPE] = ACTIONS(1648), + [anon_sym_out_GT_PIPE] = ACTIONS(1648), + [anon_sym_e_GT_PIPE] = ACTIONS(1648), + [anon_sym_o_GT_PIPE] = ACTIONS(1648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_GT2] = ACTIONS(1650), + [anon_sym_DASH2] = ACTIONS(1650), + [anon_sym_STAR2] = ACTIONS(1650), + [anon_sym_and2] = ACTIONS(1648), + [anon_sym_xor2] = ACTIONS(1648), + [anon_sym_or2] = ACTIONS(1648), + [anon_sym_not_DASHin2] = ACTIONS(1648), + [anon_sym_has2] = ACTIONS(1648), + [anon_sym_not_DASHhas2] = ACTIONS(1648), + [anon_sym_starts_DASHwith2] = ACTIONS(1648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1648), + [anon_sym_ends_DASHwith2] = ACTIONS(1648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1648), + [anon_sym_EQ_EQ2] = ACTIONS(1648), + [anon_sym_BANG_EQ2] = ACTIONS(1648), + [anon_sym_LT2] = ACTIONS(1650), + [anon_sym_LT_EQ2] = ACTIONS(1648), + [anon_sym_GT_EQ2] = ACTIONS(1648), + [anon_sym_EQ_TILDE2] = ACTIONS(1648), + [anon_sym_BANG_TILDE2] = ACTIONS(1648), + [anon_sym_like2] = ACTIONS(1648), + [anon_sym_not_DASHlike2] = ACTIONS(1648), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_STAR_STAR2] = ACTIONS(1648), + [anon_sym_PLUS_PLUS2] = ACTIONS(1648), + [anon_sym_SLASH2] = ACTIONS(1650), + [anon_sym_mod2] = ACTIONS(1648), + [anon_sym_SLASH_SLASH2] = ACTIONS(1648), + [anon_sym_PLUS2] = ACTIONS(1650), + [anon_sym_bit_DASHshl2] = ACTIONS(1648), + [anon_sym_bit_DASHshr2] = ACTIONS(1648), + [anon_sym_bit_DASHand2] = ACTIONS(1648), + [anon_sym_bit_DASHxor2] = ACTIONS(1648), + [anon_sym_bit_DASHor2] = ACTIONS(1648), + [anon_sym_DOT] = ACTIONS(1744), + [aux_sym__immediate_decimal_token1] = ACTIONS(1709), + [aux_sym__immediate_decimal_token2] = ACTIONS(1709), + [aux_sym__immediate_decimal_token3] = ACTIONS(1711), + [aux_sym__immediate_decimal_token4] = ACTIONS(1711), + [anon_sym_err_GT] = ACTIONS(1650), + [anon_sym_out_GT] = ACTIONS(1650), + [anon_sym_e_GT] = ACTIONS(1650), + [anon_sym_o_GT] = ACTIONS(1650), + [anon_sym_err_PLUSout_GT] = ACTIONS(1650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1650), + [anon_sym_o_PLUSe_GT] = ACTIONS(1650), + [anon_sym_e_PLUSo_GT] = ACTIONS(1650), + [anon_sym_err_GT_GT] = ACTIONS(1648), + [anon_sym_out_GT_GT] = ACTIONS(1648), + [anon_sym_e_GT_GT] = ACTIONS(1648), + [anon_sym_o_GT_GT] = ACTIONS(1648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(3), + }, + [446] = { [sym_comment] = STATE(446), - [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_DOLLAR] = ACTIONS(1693), - [anon_sym_GT2] = ACTIONS(1691), - [anon_sym_DASH2] = ACTIONS(1691), - [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_LPAREN2] = ACTIONS(1695), - [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), - [aux_sym__immediate_decimal_token1] = ACTIONS(1722), - [aux_sym__immediate_decimal_token2] = ACTIONS(1722), - [aux_sym__immediate_decimal_token3] = ACTIONS(1724), - [aux_sym__immediate_decimal_token4] = ACTIONS(1724), - [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), - [sym__unquoted_pattern] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(447)] = { + [anon_sym_in] = ACTIONS(1546), + [sym__newline] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_err_GT_PIPE] = ACTIONS(1546), + [anon_sym_out_GT_PIPE] = ACTIONS(1546), + [anon_sym_e_GT_PIPE] = ACTIONS(1546), + [anon_sym_o_GT_PIPE] = ACTIONS(1546), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1546), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1546), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1546), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1546), + [anon_sym_RPAREN] = ACTIONS(1546), + [anon_sym_GT2] = ACTIONS(1544), + [anon_sym_DASH2] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_EQ_GT] = ACTIONS(1546), + [anon_sym_STAR2] = ACTIONS(1544), + [anon_sym_and2] = ACTIONS(1546), + [anon_sym_xor2] = ACTIONS(1546), + [anon_sym_or2] = ACTIONS(1546), + [anon_sym_not_DASHin2] = ACTIONS(1546), + [anon_sym_has2] = ACTIONS(1546), + [anon_sym_not_DASHhas2] = ACTIONS(1546), + [anon_sym_starts_DASHwith2] = ACTIONS(1546), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1546), + [anon_sym_ends_DASHwith2] = ACTIONS(1546), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1546), + [anon_sym_EQ_EQ2] = ACTIONS(1546), + [anon_sym_BANG_EQ2] = ACTIONS(1546), + [anon_sym_LT2] = ACTIONS(1544), + [anon_sym_LT_EQ2] = ACTIONS(1546), + [anon_sym_GT_EQ2] = ACTIONS(1546), + [anon_sym_EQ_TILDE2] = ACTIONS(1546), + [anon_sym_BANG_TILDE2] = ACTIONS(1546), + [anon_sym_like2] = ACTIONS(1546), + [anon_sym_not_DASHlike2] = ACTIONS(1546), + [anon_sym_STAR_STAR2] = ACTIONS(1546), + [anon_sym_PLUS_PLUS2] = ACTIONS(1546), + [anon_sym_SLASH2] = ACTIONS(1544), + [anon_sym_mod2] = ACTIONS(1546), + [anon_sym_SLASH_SLASH2] = ACTIONS(1546), + [anon_sym_PLUS2] = ACTIONS(1544), + [anon_sym_bit_DASHshl2] = ACTIONS(1546), + [anon_sym_bit_DASHshr2] = ACTIONS(1546), + [anon_sym_bit_DASHand2] = ACTIONS(1546), + [anon_sym_bit_DASHxor2] = ACTIONS(1546), + [anon_sym_bit_DASHor2] = ACTIONS(1546), + [anon_sym_DOT_DOT2] = ACTIONS(1544), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1546), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1546), + [anon_sym_COLON2] = ACTIONS(1546), + [anon_sym_QMARK2] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1544), + [anon_sym_DOT2] = ACTIONS(1544), + [anon_sym_err_GT] = ACTIONS(1544), + [anon_sym_out_GT] = ACTIONS(1544), + [anon_sym_e_GT] = ACTIONS(1544), + [anon_sym_o_GT] = ACTIONS(1544), + [anon_sym_err_PLUSout_GT] = ACTIONS(1544), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1544), + [anon_sym_o_PLUSe_GT] = ACTIONS(1544), + [anon_sym_e_PLUSo_GT] = ACTIONS(1544), + [anon_sym_err_GT_GT] = ACTIONS(1546), + [anon_sym_out_GT_GT] = ACTIONS(1546), + [anon_sym_e_GT_GT] = ACTIONS(1546), + [anon_sym_o_GT_GT] = ACTIONS(1546), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1546), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1546), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1546), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(3), + }, + [447] = { [sym_comment] = STATE(447), - [anon_sym_in] = ACTIONS(1488), - [sym__newline] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1488), - [anon_sym_PIPE] = ACTIONS(1488), - [anon_sym_err_GT_PIPE] = ACTIONS(1488), - [anon_sym_out_GT_PIPE] = ACTIONS(1488), - [anon_sym_e_GT_PIPE] = ACTIONS(1488), - [anon_sym_o_GT_PIPE] = ACTIONS(1488), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1488), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1488), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1488), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1488), - [anon_sym_RPAREN] = ACTIONS(1488), - [anon_sym_GT2] = ACTIONS(1486), - [anon_sym_DASH2] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1488), - [anon_sym_EQ_GT] = ACTIONS(1488), - [anon_sym_STAR2] = ACTIONS(1486), - [anon_sym_and2] = ACTIONS(1488), - [anon_sym_xor2] = ACTIONS(1488), - [anon_sym_or2] = ACTIONS(1488), - [anon_sym_not_DASHin2] = ACTIONS(1488), - [anon_sym_has2] = ACTIONS(1488), - [anon_sym_not_DASHhas2] = ACTIONS(1488), - [anon_sym_starts_DASHwith2] = ACTIONS(1488), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1488), - [anon_sym_ends_DASHwith2] = ACTIONS(1488), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1488), - [anon_sym_EQ_EQ2] = ACTIONS(1488), - [anon_sym_BANG_EQ2] = ACTIONS(1488), - [anon_sym_LT2] = ACTIONS(1486), - [anon_sym_LT_EQ2] = ACTIONS(1488), - [anon_sym_GT_EQ2] = ACTIONS(1488), - [anon_sym_EQ_TILDE2] = ACTIONS(1488), - [anon_sym_BANG_TILDE2] = ACTIONS(1488), - [anon_sym_like2] = ACTIONS(1488), - [anon_sym_not_DASHlike2] = ACTIONS(1488), - [anon_sym_STAR_STAR2] = ACTIONS(1488), - [anon_sym_PLUS_PLUS2] = ACTIONS(1488), - [anon_sym_SLASH2] = ACTIONS(1486), - [anon_sym_mod2] = ACTIONS(1488), - [anon_sym_SLASH_SLASH2] = ACTIONS(1488), - [anon_sym_PLUS2] = ACTIONS(1486), - [anon_sym_bit_DASHshl2] = ACTIONS(1488), - [anon_sym_bit_DASHshr2] = ACTIONS(1488), - [anon_sym_bit_DASHand2] = ACTIONS(1488), - [anon_sym_bit_DASHxor2] = ACTIONS(1488), - [anon_sym_bit_DASHor2] = ACTIONS(1488), - [anon_sym_DOT_DOT2] = ACTIONS(1486), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1488), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1488), - [anon_sym_COLON2] = ACTIONS(1488), - [anon_sym_QMARK2] = ACTIONS(1488), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_DOT2] = ACTIONS(1486), - [anon_sym_err_GT] = ACTIONS(1486), - [anon_sym_out_GT] = ACTIONS(1486), - [anon_sym_e_GT] = ACTIONS(1486), - [anon_sym_o_GT] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT] = ACTIONS(1486), - [anon_sym_err_GT_GT] = ACTIONS(1488), - [anon_sym_out_GT_GT] = ACTIONS(1488), - [anon_sym_e_GT_GT] = ACTIONS(1488), - [anon_sym_o_GT_GT] = ACTIONS(1488), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1488), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1488), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1488), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1488), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(448)] = { + [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(1532), + [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), + }, + [448] = { [sym_comment] = STATE(448), - [anon_sym_in] = ACTIONS(753), - [sym__newline] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(753), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_err_GT_PIPE] = ACTIONS(753), - [anon_sym_out_GT_PIPE] = ACTIONS(753), - [anon_sym_e_GT_PIPE] = ACTIONS(753), - [anon_sym_o_GT_PIPE] = ACTIONS(753), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(753), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(753), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(753), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(753), - [anon_sym_RPAREN] = ACTIONS(753), - [anon_sym_GT2] = ACTIONS(751), - [anon_sym_DASH2] = ACTIONS(753), - [anon_sym_RBRACE] = ACTIONS(753), - [anon_sym_STAR2] = ACTIONS(751), - [anon_sym_and2] = ACTIONS(753), - [anon_sym_xor2] = ACTIONS(753), - [anon_sym_or2] = ACTIONS(753), - [anon_sym_not_DASHin2] = ACTIONS(753), - [anon_sym_has2] = ACTIONS(753), - [anon_sym_not_DASHhas2] = ACTIONS(753), - [anon_sym_starts_DASHwith2] = ACTIONS(753), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(753), - [anon_sym_ends_DASHwith2] = ACTIONS(753), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(753), - [anon_sym_EQ_EQ2] = ACTIONS(753), - [anon_sym_BANG_EQ2] = ACTIONS(753), - [anon_sym_LT2] = ACTIONS(751), - [anon_sym_LT_EQ2] = ACTIONS(753), - [anon_sym_GT_EQ2] = ACTIONS(753), - [anon_sym_EQ_TILDE2] = ACTIONS(753), - [anon_sym_BANG_TILDE2] = ACTIONS(753), - [anon_sym_like2] = ACTIONS(753), - [anon_sym_not_DASHlike2] = ACTIONS(753), - [anon_sym_LPAREN2] = ACTIONS(753), - [anon_sym_STAR_STAR2] = ACTIONS(753), - [anon_sym_PLUS_PLUS2] = ACTIONS(753), - [anon_sym_SLASH2] = ACTIONS(751), - [anon_sym_mod2] = ACTIONS(753), - [anon_sym_SLASH_SLASH2] = ACTIONS(753), - [anon_sym_PLUS2] = ACTIONS(751), - [anon_sym_bit_DASHshl2] = ACTIONS(753), - [anon_sym_bit_DASHshr2] = ACTIONS(753), - [anon_sym_bit_DASHand2] = ACTIONS(753), - [anon_sym_bit_DASHxor2] = ACTIONS(753), - [anon_sym_bit_DASHor2] = ACTIONS(753), - [anon_sym_DOT_DOT2] = ACTIONS(751), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(753), - [aux_sym__immediate_decimal_token5] = ACTIONS(1730), - [sym_filesize_unit] = ACTIONS(751), - [sym_duration_unit] = ACTIONS(753), - [anon_sym_err_GT] = ACTIONS(751), - [anon_sym_out_GT] = ACTIONS(751), - [anon_sym_e_GT] = ACTIONS(751), - [anon_sym_o_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT] = ACTIONS(751), - [anon_sym_err_GT_GT] = ACTIONS(753), - [anon_sym_out_GT_GT] = ACTIONS(753), - [anon_sym_e_GT_GT] = ACTIONS(753), - [anon_sym_o_GT_GT] = ACTIONS(753), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(753), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(753), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(753), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(753), - [sym__unquoted_pattern] = ACTIONS(751), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(449)] = { + [anon_sym_if] = 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(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(1532), + [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), + }, + [449] = { + [sym_cmd_identifier] = STATE(4572), + [sym_expr_parenthesized] = STATE(5187), + [sym__spread_parenthesized] = STATE(4951), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(5187), + [sym_val_number] = STATE(5187), + [sym__val_number_decimal] = STATE(2013), + [sym__val_number] = STATE(705), + [sym_val_string] = STATE(5187), + [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(5187), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym__spread_record] = STATE(4951), + [sym_record_body] = STATE(5119), + [sym_record_entry] = STATE(4887), + [sym__record_key] = STATE(5305), [sym_comment] = STATE(449), - [anon_sym_EQ] = ACTIONS(1742), - [anon_sym_PLUS_EQ] = ACTIONS(1744), - [anon_sym_DASH_EQ] = ACTIONS(1744), - [anon_sym_STAR_EQ] = ACTIONS(1744), - [anon_sym_SLASH_EQ] = ACTIONS(1744), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1744), - [anon_sym_in] = ACTIONS(1738), - [sym__newline] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_err_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_GT_PIPE] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), - [anon_sym_RPAREN] = ACTIONS(1738), - [anon_sym_GT2] = ACTIONS(1616), - [anon_sym_DASH2] = ACTIONS(1616), - [anon_sym_STAR2] = ACTIONS(1616), - [anon_sym_and2] = ACTIONS(1738), - [anon_sym_xor2] = ACTIONS(1738), - [anon_sym_or2] = ACTIONS(1738), - [anon_sym_not_DASHin2] = ACTIONS(1738), - [anon_sym_has2] = ACTIONS(1738), - [anon_sym_not_DASHhas2] = ACTIONS(1738), - [anon_sym_starts_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), - [anon_sym_ends_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), - [anon_sym_EQ_EQ2] = ACTIONS(1738), - [anon_sym_BANG_EQ2] = ACTIONS(1738), - [anon_sym_LT2] = ACTIONS(1616), - [anon_sym_LT_EQ2] = ACTIONS(1738), - [anon_sym_GT_EQ2] = ACTIONS(1738), - [anon_sym_EQ_TILDE2] = ACTIONS(1738), - [anon_sym_BANG_TILDE2] = ACTIONS(1738), - [anon_sym_like2] = ACTIONS(1738), - [anon_sym_not_DASHlike2] = ACTIONS(1738), - [anon_sym_STAR_STAR2] = ACTIONS(1738), - [anon_sym_PLUS_PLUS2] = ACTIONS(1616), - [anon_sym_SLASH2] = ACTIONS(1616), - [anon_sym_mod2] = ACTIONS(1738), - [anon_sym_SLASH_SLASH2] = ACTIONS(1738), - [anon_sym_PLUS2] = ACTIONS(1616), - [anon_sym_bit_DASHshl2] = ACTIONS(1738), - [anon_sym_bit_DASHshr2] = ACTIONS(1738), - [anon_sym_bit_DASHand2] = ACTIONS(1738), - [anon_sym_bit_DASHxor2] = ACTIONS(1738), - [anon_sym_bit_DASHor2] = ACTIONS(1738), - [anon_sym_DOT_DOT2] = ACTIONS(1620), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), - [anon_sym_err_GT] = ACTIONS(1616), - [anon_sym_out_GT] = ACTIONS(1616), - [anon_sym_e_GT] = ACTIONS(1616), - [anon_sym_o_GT] = ACTIONS(1616), - [anon_sym_err_PLUSout_GT] = ACTIONS(1616), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), - [anon_sym_o_PLUSe_GT] = ACTIONS(1616), - [anon_sym_e_PLUSo_GT] = ACTIONS(1616), - [anon_sym_err_GT_GT] = ACTIONS(1738), - [anon_sym_out_GT_GT] = ACTIONS(1738), - [anon_sym_e_GT_GT] = ACTIONS(1738), - [anon_sym_o_GT_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(450)] = { - [sym_comment] = STATE(450), - [anon_sym_in] = ACTIONS(793), - [sym__newline] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_err_GT_PIPE] = ACTIONS(793), - [anon_sym_out_GT_PIPE] = ACTIONS(793), - [anon_sym_e_GT_PIPE] = ACTIONS(793), - [anon_sym_o_GT_PIPE] = ACTIONS(793), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_GT2] = ACTIONS(791), - [anon_sym_DASH2] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_STAR2] = ACTIONS(791), - [anon_sym_and2] = ACTIONS(793), - [anon_sym_xor2] = ACTIONS(793), - [anon_sym_or2] = ACTIONS(793), - [anon_sym_not_DASHin2] = ACTIONS(793), - [anon_sym_has2] = ACTIONS(793), - [anon_sym_not_DASHhas2] = ACTIONS(793), - [anon_sym_starts_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), - [anon_sym_ends_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), - [anon_sym_EQ_EQ2] = ACTIONS(793), - [anon_sym_BANG_EQ2] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(791), - [anon_sym_LT_EQ2] = ACTIONS(793), - [anon_sym_GT_EQ2] = ACTIONS(793), - [anon_sym_EQ_TILDE2] = ACTIONS(793), - [anon_sym_BANG_TILDE2] = ACTIONS(793), - [anon_sym_like2] = ACTIONS(793), - [anon_sym_not_DASHlike2] = ACTIONS(793), - [anon_sym_LPAREN2] = ACTIONS(793), - [anon_sym_STAR_STAR2] = ACTIONS(793), - [anon_sym_PLUS_PLUS2] = ACTIONS(793), - [anon_sym_SLASH2] = ACTIONS(791), - [anon_sym_mod2] = ACTIONS(793), - [anon_sym_SLASH_SLASH2] = ACTIONS(793), - [anon_sym_PLUS2] = ACTIONS(791), - [anon_sym_bit_DASHshl2] = ACTIONS(793), - [anon_sym_bit_DASHshr2] = ACTIONS(793), - [anon_sym_bit_DASHand2] = ACTIONS(793), - [anon_sym_bit_DASHxor2] = ACTIONS(793), - [anon_sym_bit_DASHor2] = ACTIONS(793), - [anon_sym_DOT_DOT2] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(793), - [aux_sym__immediate_decimal_token5] = ACTIONS(1746), - [sym_filesize_unit] = ACTIONS(791), - [sym_duration_unit] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(791), - [anon_sym_out_GT] = ACTIONS(791), - [anon_sym_e_GT] = ACTIONS(791), - [anon_sym_o_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT] = ACTIONS(791), - [anon_sym_err_GT_GT] = ACTIONS(793), - [anon_sym_out_GT_GT] = ACTIONS(793), - [anon_sym_e_GT_GT] = ACTIONS(793), - [anon_sym_o_GT_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(793), - [sym__unquoted_pattern] = ACTIONS(791), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(451)] = { - [sym_comment] = STATE(451), - [anon_sym_if] = ACTIONS(1567), - [anon_sym_in] = ACTIONS(1567), - [sym__newline] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_err_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_GT_PIPE] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), - [anon_sym_RPAREN] = ACTIONS(1567), - [anon_sym_GT2] = ACTIONS(1565), - [anon_sym_DASH2] = ACTIONS(1567), - [anon_sym_LBRACE] = ACTIONS(1567), - [anon_sym_RBRACE] = ACTIONS(1567), - [anon_sym_EQ_GT] = ACTIONS(1567), - [anon_sym_STAR2] = ACTIONS(1565), - [anon_sym_and2] = ACTIONS(1567), - [anon_sym_xor2] = ACTIONS(1567), - [anon_sym_or2] = ACTIONS(1567), - [anon_sym_not_DASHin2] = ACTIONS(1567), - [anon_sym_has2] = ACTIONS(1567), - [anon_sym_not_DASHhas2] = ACTIONS(1567), - [anon_sym_starts_DASHwith2] = ACTIONS(1567), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1567), - [anon_sym_ends_DASHwith2] = ACTIONS(1567), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1567), - [anon_sym_EQ_EQ2] = ACTIONS(1567), - [anon_sym_BANG_EQ2] = ACTIONS(1567), - [anon_sym_LT2] = ACTIONS(1565), - [anon_sym_LT_EQ2] = ACTIONS(1567), - [anon_sym_GT_EQ2] = ACTIONS(1567), - [anon_sym_EQ_TILDE2] = ACTIONS(1567), - [anon_sym_BANG_TILDE2] = ACTIONS(1567), - [anon_sym_like2] = ACTIONS(1567), - [anon_sym_not_DASHlike2] = ACTIONS(1567), - [anon_sym_STAR_STAR2] = ACTIONS(1567), - [anon_sym_PLUS_PLUS2] = ACTIONS(1567), - [anon_sym_SLASH2] = ACTIONS(1565), - [anon_sym_mod2] = ACTIONS(1567), - [anon_sym_SLASH_SLASH2] = ACTIONS(1567), - [anon_sym_PLUS2] = ACTIONS(1565), - [anon_sym_bit_DASHshl2] = ACTIONS(1567), - [anon_sym_bit_DASHshr2] = ACTIONS(1567), - [anon_sym_bit_DASHand2] = ACTIONS(1567), - [anon_sym_bit_DASHxor2] = ACTIONS(1567), - [anon_sym_bit_DASHor2] = ACTIONS(1567), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [anon_sym_COLON2] = ACTIONS(1567), - [anon_sym_DOT2] = ACTIONS(1565), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1567), - [anon_sym_out_GT_GT] = ACTIONS(1567), - [anon_sym_e_GT_GT] = ACTIONS(1567), - [anon_sym_o_GT_GT] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(452)] = { - [sym_cmd_identifier] = STATE(4664), - [sym__match_pattern_record_body] = STATE(5509), - [sym_expr_parenthesized] = STATE(5503), - [sym__spread_parenthesized] = STATE(4962), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(4373), - [sym_val_number] = STATE(5503), - [sym__val_number_decimal] = STATE(2000), - [sym__val_number] = STATE(726), - [sym_val_string] = STATE(5503), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_interpolated] = STATE(5503), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym__spread_record] = STATE(4962), - [sym_record_entry] = STATE(4760), - [sym__record_key] = STATE(5380), - [sym_comment] = STATE(452), - [aux_sym__types_body_repeat1] = STATE(496), - [aux_sym__match_pattern_record_body_repeat1] = STATE(739), + [aux_sym__types_body_repeat1] = STATE(505), + [aux_sym_record_body_repeat1] = STATE(719), [anon_sym_export] = ACTIONS(145), [anon_sym_alias] = ACTIONS(139), [anon_sym_let] = ACTIONS(139), @@ -84738,435 +84461,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(139), [anon_sym_match] = ACTIONS(139), [anon_sym_in] = ACTIONS(145), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token3] = ACTIONS(1750), - [aux_sym_cmd_identifier_token4] = ACTIONS(1750), - [aux_sym_cmd_identifier_token5] = ACTIONS(1750), - [sym__newline] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1746), + [aux_sym_cmd_identifier_token3] = ACTIONS(1748), + [aux_sym_cmd_identifier_token4] = ACTIONS(1748), + [aux_sym_cmd_identifier_token5] = ACTIONS(1748), + [sym__newline] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_DOLLAR] = ACTIONS(1754), [anon_sym_DASH2] = ACTIONS(177), - [anon_sym_RBRACE] = ACTIONS(1758), + [anon_sym_RBRACE] = ACTIONS(1756), [anon_sym_PLUS2] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1760), - [aux_sym__val_number_decimal_token2] = ACTIONS(1762), - [aux_sym__val_number_decimal_token3] = ACTIONS(1764), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1768), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1772), + [sym_raw_string_begin] = ACTIONS(1770), }, - [STATE(453)] = { + [450] = { + [sym_comment] = STATE(450), + [ts_builtin_sym_end] = ACTIONS(765), + [anon_sym_in] = ACTIONS(765), + [sym__newline] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_err_GT_PIPE] = ACTIONS(765), + [anon_sym_out_GT_PIPE] = ACTIONS(765), + [anon_sym_e_GT_PIPE] = ACTIONS(765), + [anon_sym_o_GT_PIPE] = ACTIONS(765), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(765), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(765), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(765), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(765), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(765), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(765), + [anon_sym_xor2] = ACTIONS(765), + [anon_sym_or2] = ACTIONS(765), + [anon_sym_not_DASHin2] = ACTIONS(765), + [anon_sym_has2] = ACTIONS(765), + [anon_sym_not_DASHhas2] = ACTIONS(765), + [anon_sym_starts_DASHwith2] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(765), + [anon_sym_ends_DASHwith2] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(765), + [anon_sym_EQ_EQ2] = ACTIONS(765), + [anon_sym_BANG_EQ2] = ACTIONS(765), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(765), + [anon_sym_GT_EQ2] = ACTIONS(765), + [anon_sym_EQ_TILDE2] = ACTIONS(765), + [anon_sym_BANG_TILDE2] = ACTIONS(765), + [anon_sym_like2] = ACTIONS(765), + [anon_sym_not_DASHlike2] = ACTIONS(765), + [anon_sym_LPAREN2] = ACTIONS(765), + [anon_sym_STAR_STAR2] = ACTIONS(765), + [anon_sym_PLUS_PLUS2] = ACTIONS(765), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(765), + [anon_sym_SLASH_SLASH2] = ACTIONS(765), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(765), + [anon_sym_bit_DASHshr2] = ACTIONS(765), + [anon_sym_bit_DASHand2] = ACTIONS(765), + [anon_sym_bit_DASHxor2] = ACTIONS(765), + [anon_sym_bit_DASHor2] = ACTIONS(765), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(1774), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(765), + [anon_sym_out_GT_GT] = ACTIONS(765), + [anon_sym_e_GT_GT] = ACTIONS(765), + [anon_sym_o_GT_GT] = ACTIONS(765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(765), + [sym__unquoted_pattern] = ACTIONS(763), + [anon_sym_POUND] = ACTIONS(3), + }, + [451] = { + [sym__expr_parenthesized_immediate] = STATE(1352), + [sym__immediate_decimal] = STATE(1350), + [sym_val_variable] = STATE(1352), + [sym_comment] = STATE(451), + [ts_builtin_sym_end] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_GT2] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_STAR2] = ACTIONS(1689), + [anon_sym_and2] = ACTIONS(1687), + [anon_sym_xor2] = ACTIONS(1687), + [anon_sym_or2] = ACTIONS(1687), + [anon_sym_not_DASHin2] = ACTIONS(1687), + [anon_sym_has2] = ACTIONS(1687), + [anon_sym_not_DASHhas2] = ACTIONS(1687), + [anon_sym_starts_DASHwith2] = ACTIONS(1687), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1687), + [anon_sym_ends_DASHwith2] = ACTIONS(1687), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1687), + [anon_sym_EQ_EQ2] = ACTIONS(1687), + [anon_sym_BANG_EQ2] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1689), + [anon_sym_LT_EQ2] = ACTIONS(1687), + [anon_sym_GT_EQ2] = ACTIONS(1687), + [anon_sym_EQ_TILDE2] = ACTIONS(1687), + [anon_sym_BANG_TILDE2] = ACTIONS(1687), + [anon_sym_like2] = ACTIONS(1687), + [anon_sym_not_DASHlike2] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_STAR_STAR2] = ACTIONS(1687), + [anon_sym_PLUS_PLUS2] = ACTIONS(1687), + [anon_sym_SLASH2] = ACTIONS(1689), + [anon_sym_mod2] = ACTIONS(1687), + [anon_sym_SLASH_SLASH2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1689), + [anon_sym_bit_DASHshl2] = ACTIONS(1687), + [anon_sym_bit_DASHshr2] = ACTIONS(1687), + [anon_sym_bit_DASHand2] = ACTIONS(1687), + [anon_sym_bit_DASHxor2] = ACTIONS(1687), + [anon_sym_bit_DASHor2] = ACTIONS(1687), + [aux_sym__immediate_decimal_token1] = ACTIONS(1776), + [aux_sym__immediate_decimal_token2] = ACTIONS(1776), + [aux_sym__immediate_decimal_token3] = ACTIONS(1711), + [aux_sym__immediate_decimal_token4] = ACTIONS(1711), + [anon_sym_err_GT] = ACTIONS(1689), + [anon_sym_out_GT] = ACTIONS(1689), + [anon_sym_e_GT] = ACTIONS(1689), + [anon_sym_o_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT] = ACTIONS(1689), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), + [anon_sym_POUND] = ACTIONS(3), + }, + [452] = { + [sym__expr_parenthesized_immediate] = STATE(1357), + [sym__immediate_decimal] = STATE(1354), + [sym_val_variable] = STATE(1357), + [sym_comment] = STATE(452), + [ts_builtin_sym_end] = ACTIONS(1673), + [anon_sym_in] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_GT2] = ACTIONS(1675), + [anon_sym_DASH2] = ACTIONS(1675), + [anon_sym_STAR2] = ACTIONS(1675), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_has2] = ACTIONS(1673), + [anon_sym_not_DASHhas2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1675), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_like2] = ACTIONS(1673), + [anon_sym_not_DASHlike2] = ACTIONS(1673), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1675), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1675), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [aux_sym__immediate_decimal_token1] = ACTIONS(1776), + [aux_sym__immediate_decimal_token2] = ACTIONS(1776), + [aux_sym__immediate_decimal_token3] = ACTIONS(1711), + [aux_sym__immediate_decimal_token4] = ACTIONS(1711), + [anon_sym_err_GT] = ACTIONS(1675), + [anon_sym_out_GT] = ACTIONS(1675), + [anon_sym_e_GT] = ACTIONS(1675), + [anon_sym_o_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT] = ACTIONS(1675), + [anon_sym_err_GT_GT] = ACTIONS(1673), + [anon_sym_out_GT_GT] = ACTIONS(1673), + [anon_sym_e_GT_GT] = ACTIONS(1673), + [anon_sym_o_GT_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), + [anon_sym_POUND] = ACTIONS(3), + }, + [453] = { + [sym_cmd_identifier] = STATE(4572), + [sym__match_pattern_record_body] = STATE(5327), + [sym_expr_parenthesized] = STATE(5187), + [sym__spread_parenthesized] = STATE(4951), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(4655), + [sym_val_number] = STATE(5187), + [sym__val_number_decimal] = STATE(2013), + [sym__val_number] = STATE(705), + [sym_val_string] = STATE(5187), + [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(5187), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym__spread_record] = STATE(4951), + [sym_record_entry] = STATE(4749), + [sym__record_key] = STATE(5305), [sym_comment] = STATE(453), - [anon_sym_in] = ACTIONS(1774), - [sym__newline] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_err_GT_PIPE] = ACTIONS(1774), - [anon_sym_out_GT_PIPE] = ACTIONS(1774), - [anon_sym_e_GT_PIPE] = ACTIONS(1774), - [anon_sym_o_GT_PIPE] = ACTIONS(1774), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), - [anon_sym_RPAREN] = ACTIONS(1774), - [anon_sym_GT2] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1774), - [anon_sym_RBRACE] = ACTIONS(1774), - [anon_sym_STAR2] = ACTIONS(1776), - [anon_sym_and2] = ACTIONS(1774), - [anon_sym_xor2] = ACTIONS(1774), - [anon_sym_or2] = ACTIONS(1774), - [anon_sym_not_DASHin2] = ACTIONS(1774), - [anon_sym_has2] = ACTIONS(1774), - [anon_sym_not_DASHhas2] = ACTIONS(1774), - [anon_sym_starts_DASHwith2] = ACTIONS(1774), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1774), - [anon_sym_ends_DASHwith2] = ACTIONS(1774), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1774), - [anon_sym_EQ_EQ2] = ACTIONS(1774), - [anon_sym_BANG_EQ2] = ACTIONS(1774), - [anon_sym_LT2] = ACTIONS(1776), - [anon_sym_LT_EQ2] = ACTIONS(1774), - [anon_sym_GT_EQ2] = ACTIONS(1774), - [anon_sym_EQ_TILDE2] = ACTIONS(1774), - [anon_sym_BANG_TILDE2] = ACTIONS(1774), - [anon_sym_like2] = ACTIONS(1774), - [anon_sym_not_DASHlike2] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_STAR_STAR2] = ACTIONS(1774), - [anon_sym_PLUS_PLUS2] = ACTIONS(1774), - [anon_sym_SLASH2] = ACTIONS(1776), - [anon_sym_mod2] = ACTIONS(1774), - [anon_sym_SLASH_SLASH2] = ACTIONS(1774), - [anon_sym_PLUS2] = ACTIONS(1776), - [anon_sym_bit_DASHshl2] = ACTIONS(1774), - [anon_sym_bit_DASHshr2] = ACTIONS(1774), - [anon_sym_bit_DASHand2] = ACTIONS(1774), - [anon_sym_bit_DASHxor2] = ACTIONS(1774), - [anon_sym_bit_DASHor2] = ACTIONS(1774), - [anon_sym_DOT_DOT2] = ACTIONS(1776), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1774), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1774), - [aux_sym__immediate_decimal_token1] = ACTIONS(1778), - [aux_sym__immediate_decimal_token5] = ACTIONS(1780), - [anon_sym_err_GT] = ACTIONS(1776), - [anon_sym_out_GT] = ACTIONS(1776), - [anon_sym_e_GT] = ACTIONS(1776), - [anon_sym_o_GT] = ACTIONS(1776), - [anon_sym_err_PLUSout_GT] = ACTIONS(1776), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), - [anon_sym_o_PLUSe_GT] = ACTIONS(1776), - [anon_sym_e_PLUSo_GT] = ACTIONS(1776), - [anon_sym_err_GT_GT] = ACTIONS(1774), - [anon_sym_out_GT_GT] = ACTIONS(1774), - [anon_sym_e_GT_GT] = ACTIONS(1774), - [anon_sym_o_GT_GT] = ACTIONS(1774), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), - [sym__unquoted_pattern] = ACTIONS(1776), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(454)] = { - [sym__expr_parenthesized_immediate] = STATE(1296), - [sym__immediate_decimal] = STATE(1298), - [sym_val_variable] = STATE(1296), - [sym_comment] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(1707), - [anon_sym_in] = ACTIONS(1707), - [sym__newline] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1693), - [anon_sym_GT2] = ACTIONS(1709), - [anon_sym_DASH2] = ACTIONS(1709), - [anon_sym_STAR2] = ACTIONS(1709), - [anon_sym_and2] = ACTIONS(1707), - [anon_sym_xor2] = ACTIONS(1707), - [anon_sym_or2] = ACTIONS(1707), - [anon_sym_not_DASHin2] = ACTIONS(1707), - [anon_sym_has2] = ACTIONS(1707), - [anon_sym_not_DASHhas2] = ACTIONS(1707), - [anon_sym_starts_DASHwith2] = ACTIONS(1707), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1707), - [anon_sym_ends_DASHwith2] = ACTIONS(1707), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1707), - [anon_sym_EQ_EQ2] = ACTIONS(1707), - [anon_sym_BANG_EQ2] = ACTIONS(1707), - [anon_sym_LT2] = ACTIONS(1709), - [anon_sym_LT_EQ2] = ACTIONS(1707), - [anon_sym_GT_EQ2] = ACTIONS(1707), - [anon_sym_EQ_TILDE2] = ACTIONS(1707), - [anon_sym_BANG_TILDE2] = ACTIONS(1707), - [anon_sym_like2] = ACTIONS(1707), - [anon_sym_not_DASHlike2] = ACTIONS(1707), - [anon_sym_LPAREN2] = ACTIONS(1695), - [anon_sym_STAR_STAR2] = ACTIONS(1707), - [anon_sym_PLUS_PLUS2] = ACTIONS(1707), - [anon_sym_SLASH2] = ACTIONS(1709), - [anon_sym_mod2] = ACTIONS(1707), - [anon_sym_SLASH_SLASH2] = ACTIONS(1707), - [anon_sym_PLUS2] = ACTIONS(1709), - [anon_sym_bit_DASHshl2] = ACTIONS(1707), - [anon_sym_bit_DASHshr2] = ACTIONS(1707), - [anon_sym_bit_DASHand2] = ACTIONS(1707), - [anon_sym_bit_DASHxor2] = ACTIONS(1707), - [anon_sym_bit_DASHor2] = ACTIONS(1707), - [aux_sym__immediate_decimal_token1] = ACTIONS(1782), - [aux_sym__immediate_decimal_token2] = ACTIONS(1782), - [aux_sym__immediate_decimal_token3] = ACTIONS(1701), - [aux_sym__immediate_decimal_token4] = ACTIONS(1701), - [anon_sym_err_GT] = ACTIONS(1709), - [anon_sym_out_GT] = ACTIONS(1709), - [anon_sym_e_GT] = ACTIONS(1709), - [anon_sym_o_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT] = ACTIONS(1709), - [anon_sym_err_GT_GT] = ACTIONS(1707), - [anon_sym_out_GT_GT] = ACTIONS(1707), - [anon_sym_e_GT_GT] = ACTIONS(1707), - [anon_sym_o_GT_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(455)] = { - [sym__expr_parenthesized_immediate] = STATE(1300), - [sym__immediate_decimal] = STATE(1301), - [sym_val_variable] = STATE(1300), - [sym_comment] = STATE(455), - [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(1693), - [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(1695), - [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(1782), - [aux_sym__immediate_decimal_token2] = ACTIONS(1782), - [aux_sym__immediate_decimal_token3] = ACTIONS(1701), - [aux_sym__immediate_decimal_token4] = ACTIONS(1701), - [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(456)] = { - [sym__expr_parenthesized_immediate] = STATE(1302), - [sym__immediate_decimal] = STATE(1304), - [sym_val_variable] = STATE(1302), - [sym_comment] = STATE(456), - [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(1693), - [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(1695), - [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(1782), - [aux_sym__immediate_decimal_token2] = ACTIONS(1782), - [aux_sym__immediate_decimal_token3] = ACTIONS(1701), - [aux_sym__immediate_decimal_token4] = ACTIONS(1701), - [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(457)] = { - [sym__expr_parenthesized_immediate] = STATE(1306), - [sym__immediate_decimal] = STATE(1307), - [sym_val_variable] = STATE(1306), - [sym_comment] = STATE(457), - [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_DOLLAR] = ACTIONS(1693), - [anon_sym_GT2] = ACTIONS(1691), - [anon_sym_DASH2] = ACTIONS(1691), - [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_LPAREN2] = ACTIONS(1695), - [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), - [aux_sym__immediate_decimal_token1] = ACTIONS(1782), - [aux_sym__immediate_decimal_token2] = ACTIONS(1782), - [aux_sym__immediate_decimal_token3] = ACTIONS(1701), - [aux_sym__immediate_decimal_token4] = ACTIONS(1701), - [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(458)] = { - [sym_cmd_identifier] = STATE(4664), - [sym_expr_parenthesized] = STATE(5503), - [sym__spread_parenthesized] = STATE(4962), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(5503), - [sym_val_number] = STATE(5503), - [sym__val_number_decimal] = STATE(2000), - [sym__val_number] = STATE(726), - [sym_val_string] = STATE(5503), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_interpolated] = STATE(5503), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym__spread_record] = STATE(4962), - [sym_record_body] = STATE(5353), - [sym_record_entry] = STATE(4691), - [sym__record_key] = STATE(5380), - [sym_comment] = STATE(458), - [aux_sym__types_body_repeat1] = STATE(503), - [aux_sym_record_body_repeat1] = STATE(728), + [aux_sym__types_body_repeat1] = STATE(518), + [aux_sym__match_pattern_record_body_repeat1] = STATE(723), [anon_sym_export] = ACTIONS(145), [anon_sym_alias] = ACTIONS(139), [anon_sym_let] = ACTIONS(139), @@ -85188,210 +84761,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(139), [anon_sym_match] = ACTIONS(139), [anon_sym_in] = ACTIONS(145), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token3] = ACTIONS(1750), - [aux_sym_cmd_identifier_token4] = ACTIONS(1750), - [aux_sym_cmd_identifier_token5] = ACTIONS(1750), - [sym__newline] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1746), + [aux_sym_cmd_identifier_token3] = ACTIONS(1748), + [aux_sym_cmd_identifier_token4] = ACTIONS(1748), + [aux_sym_cmd_identifier_token5] = ACTIONS(1748), + [sym__newline] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_DOLLAR] = ACTIONS(1778), [anon_sym_DASH2] = ACTIONS(177), - [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1780), [anon_sym_PLUS2] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1760), - [aux_sym__val_number_decimal_token2] = ACTIONS(1762), - [aux_sym__val_number_decimal_token3] = ACTIONS(1764), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1768), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1772), + [sym_raw_string_begin] = ACTIONS(1770), }, - [STATE(459)] = { - [sym_comment] = STATE(459), - [anon_sym_in] = ACTIONS(1788), - [sym__newline] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_PIPE] = ACTIONS(1788), - [anon_sym_err_GT_PIPE] = ACTIONS(1788), - [anon_sym_out_GT_PIPE] = ACTIONS(1788), - [anon_sym_e_GT_PIPE] = ACTIONS(1788), - [anon_sym_o_GT_PIPE] = ACTIONS(1788), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), - [anon_sym_RPAREN] = ACTIONS(1788), - [anon_sym_GT2] = ACTIONS(1790), - [anon_sym_DASH2] = ACTIONS(1788), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1788), - [anon_sym_STAR2] = ACTIONS(1790), - [anon_sym_and2] = ACTIONS(1788), - [anon_sym_xor2] = ACTIONS(1788), - [anon_sym_or2] = ACTIONS(1788), - [anon_sym_not_DASHin2] = ACTIONS(1788), - [anon_sym_has2] = ACTIONS(1788), - [anon_sym_not_DASHhas2] = ACTIONS(1788), - [anon_sym_starts_DASHwith2] = ACTIONS(1788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1788), - [anon_sym_ends_DASHwith2] = ACTIONS(1788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1788), - [anon_sym_EQ_EQ2] = ACTIONS(1788), - [anon_sym_BANG_EQ2] = ACTIONS(1788), - [anon_sym_LT2] = ACTIONS(1790), - [anon_sym_LT_EQ2] = ACTIONS(1788), - [anon_sym_GT_EQ2] = ACTIONS(1788), - [anon_sym_EQ_TILDE2] = ACTIONS(1788), - [anon_sym_BANG_TILDE2] = ACTIONS(1788), - [anon_sym_like2] = ACTIONS(1788), - [anon_sym_not_DASHlike2] = ACTIONS(1788), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_STAR_STAR2] = ACTIONS(1788), - [anon_sym_PLUS_PLUS2] = ACTIONS(1788), - [anon_sym_SLASH2] = ACTIONS(1790), - [anon_sym_mod2] = ACTIONS(1788), - [anon_sym_SLASH_SLASH2] = ACTIONS(1788), - [anon_sym_PLUS2] = ACTIONS(1790), - [anon_sym_bit_DASHshl2] = ACTIONS(1788), - [anon_sym_bit_DASHshr2] = ACTIONS(1788), - [anon_sym_bit_DASHand2] = ACTIONS(1788), - [anon_sym_bit_DASHxor2] = ACTIONS(1788), - [anon_sym_bit_DASHor2] = ACTIONS(1788), - [anon_sym_DOT_DOT2] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1792), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1788), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1788), - [aux_sym__immediate_decimal_token5] = ACTIONS(1794), - [anon_sym_err_GT] = ACTIONS(1790), - [anon_sym_out_GT] = ACTIONS(1790), - [anon_sym_e_GT] = ACTIONS(1790), - [anon_sym_o_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT] = ACTIONS(1790), - [anon_sym_err_GT_GT] = ACTIONS(1788), - [anon_sym_out_GT_GT] = ACTIONS(1788), - [anon_sym_e_GT_GT] = ACTIONS(1788), - [anon_sym_o_GT_GT] = ACTIONS(1788), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1788), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1788), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1788), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1788), - [sym__unquoted_pattern] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(460)] = { - [sym__expr_parenthesized_immediate] = STATE(5068), - [sym_comment] = STATE(460), - [anon_sym_in] = ACTIONS(914), - [sym__newline] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_err_GT_PIPE] = ACTIONS(914), - [anon_sym_out_GT_PIPE] = ACTIONS(914), - [anon_sym_e_GT_PIPE] = ACTIONS(914), - [anon_sym_o_GT_PIPE] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(914), - [anon_sym_RPAREN] = ACTIONS(914), - [anon_sym_GT2] = ACTIONS(811), - [anon_sym_DASH2] = ACTIONS(914), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_STAR2] = ACTIONS(811), - [anon_sym_and2] = ACTIONS(914), - [anon_sym_xor2] = ACTIONS(914), - [anon_sym_or2] = ACTIONS(914), - [anon_sym_not_DASHin2] = ACTIONS(914), - [anon_sym_has2] = ACTIONS(914), - [anon_sym_not_DASHhas2] = ACTIONS(914), - [anon_sym_starts_DASHwith2] = ACTIONS(914), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(914), - [anon_sym_ends_DASHwith2] = ACTIONS(914), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(914), - [anon_sym_EQ_EQ2] = ACTIONS(914), - [anon_sym_BANG_EQ2] = ACTIONS(914), - [anon_sym_LT2] = ACTIONS(811), - [anon_sym_LT_EQ2] = ACTIONS(914), - [anon_sym_GT_EQ2] = ACTIONS(914), - [anon_sym_EQ_TILDE2] = ACTIONS(914), - [anon_sym_BANG_TILDE2] = ACTIONS(914), - [anon_sym_like2] = ACTIONS(914), - [anon_sym_not_DASHlike2] = ACTIONS(914), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(914), - [anon_sym_PLUS_PLUS2] = ACTIONS(914), - [anon_sym_SLASH2] = ACTIONS(811), - [anon_sym_mod2] = ACTIONS(914), - [anon_sym_SLASH_SLASH2] = ACTIONS(914), - [anon_sym_PLUS2] = ACTIONS(811), - [anon_sym_bit_DASHshl2] = ACTIONS(914), - [anon_sym_bit_DASHshr2] = ACTIONS(914), - [anon_sym_bit_DASHand2] = ACTIONS(914), - [anon_sym_bit_DASHxor2] = ACTIONS(914), - [anon_sym_bit_DASHor2] = ACTIONS(914), - [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(811), - [anon_sym_out_GT] = ACTIONS(811), - [anon_sym_e_GT] = ACTIONS(811), - [anon_sym_o_GT] = ACTIONS(811), - [anon_sym_err_PLUSout_GT] = ACTIONS(811), - [anon_sym_out_PLUSerr_GT] = ACTIONS(811), - [anon_sym_o_PLUSe_GT] = ACTIONS(811), - [anon_sym_e_PLUSo_GT] = ACTIONS(811), - [anon_sym_err_GT_GT] = ACTIONS(914), - [anon_sym_out_GT_GT] = ACTIONS(914), - [anon_sym_e_GT_GT] = ACTIONS(914), - [anon_sym_o_GT_GT] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), - [sym__unquoted_pattern] = ACTIONS(1806), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(461)] = { - [sym_cmd_identifier] = STATE(4664), - [sym_expr_parenthesized] = STATE(5503), - [sym__spread_parenthesized] = STATE(4962), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(5503), - [sym_val_number] = STATE(5503), - [sym__val_number_decimal] = STATE(2000), - [sym__val_number] = STATE(726), - [sym_val_string] = STATE(5503), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_interpolated] = STATE(5503), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym__spread_record] = STATE(4962), - [sym_record_body] = STATE(5524), - [sym_record_entry] = STATE(4691), - [sym__record_key] = STATE(5380), - [sym_comment] = STATE(461), - [aux_sym__types_body_repeat1] = STATE(503), - [aux_sym_record_body_repeat1] = STATE(728), + [454] = { + [sym__expr_parenthesized_immediate] = STATE(1289), + [sym__immediate_decimal] = STATE(1297), + [sym_val_variable] = STATE(1289), + [sym_comment] = STATE(454), + [ts_builtin_sym_end] = ACTIONS(1648), + [anon_sym_in] = ACTIONS(1648), + [sym__newline] = ACTIONS(1648), + [anon_sym_SEMI] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1648), + [anon_sym_err_GT_PIPE] = ACTIONS(1648), + [anon_sym_out_GT_PIPE] = ACTIONS(1648), + [anon_sym_e_GT_PIPE] = ACTIONS(1648), + [anon_sym_o_GT_PIPE] = ACTIONS(1648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_GT2] = ACTIONS(1650), + [anon_sym_DASH2] = ACTIONS(1650), + [anon_sym_STAR2] = ACTIONS(1650), + [anon_sym_and2] = ACTIONS(1648), + [anon_sym_xor2] = ACTIONS(1648), + [anon_sym_or2] = ACTIONS(1648), + [anon_sym_not_DASHin2] = ACTIONS(1648), + [anon_sym_has2] = ACTIONS(1648), + [anon_sym_not_DASHhas2] = ACTIONS(1648), + [anon_sym_starts_DASHwith2] = ACTIONS(1648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1648), + [anon_sym_ends_DASHwith2] = ACTIONS(1648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1648), + [anon_sym_EQ_EQ2] = ACTIONS(1648), + [anon_sym_BANG_EQ2] = ACTIONS(1648), + [anon_sym_LT2] = ACTIONS(1650), + [anon_sym_LT_EQ2] = ACTIONS(1648), + [anon_sym_GT_EQ2] = ACTIONS(1648), + [anon_sym_EQ_TILDE2] = ACTIONS(1648), + [anon_sym_BANG_TILDE2] = ACTIONS(1648), + [anon_sym_like2] = ACTIONS(1648), + [anon_sym_not_DASHlike2] = ACTIONS(1648), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_STAR_STAR2] = ACTIONS(1648), + [anon_sym_PLUS_PLUS2] = ACTIONS(1648), + [anon_sym_SLASH2] = ACTIONS(1650), + [anon_sym_mod2] = ACTIONS(1648), + [anon_sym_SLASH_SLASH2] = ACTIONS(1648), + [anon_sym_PLUS2] = ACTIONS(1650), + [anon_sym_bit_DASHshl2] = ACTIONS(1648), + [anon_sym_bit_DASHshr2] = ACTIONS(1648), + [anon_sym_bit_DASHand2] = ACTIONS(1648), + [anon_sym_bit_DASHxor2] = ACTIONS(1648), + [anon_sym_bit_DASHor2] = ACTIONS(1648), + [aux_sym__immediate_decimal_token1] = ACTIONS(1776), + [aux_sym__immediate_decimal_token2] = ACTIONS(1776), + [aux_sym__immediate_decimal_token3] = ACTIONS(1711), + [aux_sym__immediate_decimal_token4] = ACTIONS(1711), + [anon_sym_err_GT] = ACTIONS(1650), + [anon_sym_out_GT] = ACTIONS(1650), + [anon_sym_e_GT] = ACTIONS(1650), + [anon_sym_o_GT] = ACTIONS(1650), + [anon_sym_err_PLUSout_GT] = ACTIONS(1650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1650), + [anon_sym_o_PLUSe_GT] = ACTIONS(1650), + [anon_sym_e_PLUSo_GT] = ACTIONS(1650), + [anon_sym_err_GT_GT] = ACTIONS(1648), + [anon_sym_out_GT_GT] = ACTIONS(1648), + [anon_sym_e_GT_GT] = ACTIONS(1648), + [anon_sym_o_GT_GT] = ACTIONS(1648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(3), + }, + [455] = { + [sym_comment] = STATE(455), + [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(1782), + [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), + }, + [456] = { + [sym_cmd_identifier] = STATE(4572), + [sym_expr_parenthesized] = STATE(5187), + [sym__spread_parenthesized] = STATE(4951), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(5187), + [sym_val_number] = STATE(5187), + [sym__val_number_decimal] = STATE(2013), + [sym__val_number] = STATE(705), + [sym_val_string] = STATE(5187), + [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(5187), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym__spread_record] = STATE(4951), + [sym_record_body] = STATE(5129), + [sym_record_entry] = STATE(4887), + [sym__record_key] = STATE(5305), + [sym_comment] = STATE(456), + [aux_sym__types_body_repeat1] = STATE(505), + [aux_sym_record_body_repeat1] = STATE(719), [anon_sym_export] = ACTIONS(145), [anon_sym_alias] = ACTIONS(139), [anon_sym_let] = ACTIONS(139), @@ -85413,60 +84986,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(139), [anon_sym_match] = ACTIONS(139), [anon_sym_in] = ACTIONS(145), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token3] = ACTIONS(1750), - [aux_sym_cmd_identifier_token4] = ACTIONS(1750), - [aux_sym_cmd_identifier_token5] = ACTIONS(1750), - [sym__newline] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1746), + [aux_sym_cmd_identifier_token3] = ACTIONS(1748), + [aux_sym_cmd_identifier_token4] = ACTIONS(1748), + [aux_sym_cmd_identifier_token5] = ACTIONS(1748), + [sym__newline] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_DOLLAR] = ACTIONS(1754), [anon_sym_DASH2] = ACTIONS(177), - [anon_sym_RBRACE] = ACTIONS(1808), + [anon_sym_RBRACE] = ACTIONS(1784), [anon_sym_PLUS2] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1760), - [aux_sym__val_number_decimal_token2] = ACTIONS(1762), - [aux_sym__val_number_decimal_token3] = ACTIONS(1764), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1768), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1772), - }, - [STATE(462)] = { - [sym_cmd_identifier] = STATE(4664), - [sym__match_pattern_record_body] = STATE(5502), - [sym_expr_parenthesized] = STATE(5503), - [sym__spread_parenthesized] = STATE(4962), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(4373), - [sym_val_number] = STATE(5503), - [sym__val_number_decimal] = STATE(2000), - [sym__val_number] = STATE(726), - [sym_val_string] = STATE(5503), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_interpolated] = STATE(5503), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym__spread_record] = STATE(4962), - [sym_record_entry] = STATE(4760), - [sym__record_key] = STATE(5380), - [sym_comment] = STATE(462), - [aux_sym__types_body_repeat1] = STATE(496), - [aux_sym__match_pattern_record_body_repeat1] = STATE(739), + [sym_raw_string_begin] = ACTIONS(1770), + }, + [457] = { + [sym__expr_parenthesized_immediate] = STATE(1295), + [sym__immediate_decimal] = STATE(1294), + [sym_val_variable] = STATE(1295), + [sym_comment] = STATE(457), + [ts_builtin_sym_end] = ACTIONS(1622), + [anon_sym_in] = ACTIONS(1622), + [sym__newline] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_PIPE] = ACTIONS(1622), + [anon_sym_err_GT_PIPE] = ACTIONS(1622), + [anon_sym_out_GT_PIPE] = ACTIONS(1622), + [anon_sym_e_GT_PIPE] = ACTIONS(1622), + [anon_sym_o_GT_PIPE] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1622), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_GT2] = ACTIONS(1626), + [anon_sym_DASH2] = ACTIONS(1626), + [anon_sym_STAR2] = ACTIONS(1626), + [anon_sym_and2] = ACTIONS(1622), + [anon_sym_xor2] = ACTIONS(1622), + [anon_sym_or2] = ACTIONS(1622), + [anon_sym_not_DASHin2] = ACTIONS(1622), + [anon_sym_has2] = ACTIONS(1622), + [anon_sym_not_DASHhas2] = ACTIONS(1622), + [anon_sym_starts_DASHwith2] = ACTIONS(1622), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1622), + [anon_sym_ends_DASHwith2] = ACTIONS(1622), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1622), + [anon_sym_EQ_EQ2] = ACTIONS(1622), + [anon_sym_BANG_EQ2] = ACTIONS(1622), + [anon_sym_LT2] = ACTIONS(1626), + [anon_sym_LT_EQ2] = ACTIONS(1622), + [anon_sym_GT_EQ2] = ACTIONS(1622), + [anon_sym_EQ_TILDE2] = ACTIONS(1622), + [anon_sym_BANG_TILDE2] = ACTIONS(1622), + [anon_sym_like2] = ACTIONS(1622), + [anon_sym_not_DASHlike2] = ACTIONS(1622), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_STAR_STAR2] = ACTIONS(1622), + [anon_sym_PLUS_PLUS2] = ACTIONS(1622), + [anon_sym_SLASH2] = ACTIONS(1626), + [anon_sym_mod2] = ACTIONS(1622), + [anon_sym_SLASH_SLASH2] = ACTIONS(1622), + [anon_sym_PLUS2] = ACTIONS(1626), + [anon_sym_bit_DASHshl2] = ACTIONS(1622), + [anon_sym_bit_DASHshr2] = ACTIONS(1622), + [anon_sym_bit_DASHand2] = ACTIONS(1622), + [anon_sym_bit_DASHxor2] = ACTIONS(1622), + [anon_sym_bit_DASHor2] = ACTIONS(1622), + [aux_sym__immediate_decimal_token1] = ACTIONS(1776), + [aux_sym__immediate_decimal_token2] = ACTIONS(1776), + [aux_sym__immediate_decimal_token3] = ACTIONS(1711), + [aux_sym__immediate_decimal_token4] = ACTIONS(1711), + [anon_sym_err_GT] = ACTIONS(1626), + [anon_sym_out_GT] = ACTIONS(1626), + [anon_sym_e_GT] = ACTIONS(1626), + [anon_sym_o_GT] = ACTIONS(1626), + [anon_sym_err_PLUSout_GT] = ACTIONS(1626), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1626), + [anon_sym_o_PLUSe_GT] = ACTIONS(1626), + [anon_sym_e_PLUSo_GT] = ACTIONS(1626), + [anon_sym_err_GT_GT] = ACTIONS(1622), + [anon_sym_out_GT_GT] = ACTIONS(1622), + [anon_sym_e_GT_GT] = ACTIONS(1622), + [anon_sym_o_GT_GT] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1622), + [anon_sym_POUND] = ACTIONS(3), + }, + [458] = { + [sym__expr_parenthesized_immediate] = STATE(1362), + [sym__immediate_decimal] = STATE(1360), + [sym_val_variable] = STATE(1362), + [sym_comment] = STATE(458), + [ts_builtin_sym_end] = ACTIONS(1715), + [anon_sym_in] = ACTIONS(1715), + [sym__newline] = ACTIONS(1715), + [anon_sym_SEMI] = ACTIONS(1715), + [anon_sym_PIPE] = ACTIONS(1715), + [anon_sym_err_GT_PIPE] = ACTIONS(1715), + [anon_sym_out_GT_PIPE] = ACTIONS(1715), + [anon_sym_e_GT_PIPE] = ACTIONS(1715), + [anon_sym_o_GT_PIPE] = ACTIONS(1715), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1715), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1715), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1715), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1715), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_GT2] = ACTIONS(1717), + [anon_sym_DASH2] = ACTIONS(1717), + [anon_sym_STAR2] = ACTIONS(1717), + [anon_sym_and2] = ACTIONS(1715), + [anon_sym_xor2] = ACTIONS(1715), + [anon_sym_or2] = ACTIONS(1715), + [anon_sym_not_DASHin2] = ACTIONS(1715), + [anon_sym_has2] = ACTIONS(1715), + [anon_sym_not_DASHhas2] = ACTIONS(1715), + [anon_sym_starts_DASHwith2] = ACTIONS(1715), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1715), + [anon_sym_ends_DASHwith2] = ACTIONS(1715), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1715), + [anon_sym_EQ_EQ2] = ACTIONS(1715), + [anon_sym_BANG_EQ2] = ACTIONS(1715), + [anon_sym_LT2] = ACTIONS(1717), + [anon_sym_LT_EQ2] = ACTIONS(1715), + [anon_sym_GT_EQ2] = ACTIONS(1715), + [anon_sym_EQ_TILDE2] = ACTIONS(1715), + [anon_sym_BANG_TILDE2] = ACTIONS(1715), + [anon_sym_like2] = ACTIONS(1715), + [anon_sym_not_DASHlike2] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_STAR_STAR2] = ACTIONS(1715), + [anon_sym_PLUS_PLUS2] = ACTIONS(1715), + [anon_sym_SLASH2] = ACTIONS(1717), + [anon_sym_mod2] = ACTIONS(1715), + [anon_sym_SLASH_SLASH2] = ACTIONS(1715), + [anon_sym_PLUS2] = ACTIONS(1717), + [anon_sym_bit_DASHshl2] = ACTIONS(1715), + [anon_sym_bit_DASHshr2] = ACTIONS(1715), + [anon_sym_bit_DASHand2] = ACTIONS(1715), + [anon_sym_bit_DASHxor2] = ACTIONS(1715), + [anon_sym_bit_DASHor2] = ACTIONS(1715), + [aux_sym__immediate_decimal_token1] = ACTIONS(1776), + [aux_sym__immediate_decimal_token2] = ACTIONS(1776), + [aux_sym__immediate_decimal_token3] = ACTIONS(1711), + [aux_sym__immediate_decimal_token4] = ACTIONS(1711), + [anon_sym_err_GT] = ACTIONS(1717), + [anon_sym_out_GT] = ACTIONS(1717), + [anon_sym_e_GT] = ACTIONS(1717), + [anon_sym_o_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT] = ACTIONS(1717), + [anon_sym_err_GT_GT] = ACTIONS(1715), + [anon_sym_out_GT_GT] = ACTIONS(1715), + [anon_sym_e_GT_GT] = ACTIONS(1715), + [anon_sym_o_GT_GT] = ACTIONS(1715), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1715), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1715), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1715), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(3), + }, + [459] = { + [sym_cmd_identifier] = STATE(4572), + [sym_expr_parenthesized] = STATE(5187), + [sym__spread_parenthesized] = STATE(4951), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(5187), + [sym_val_number] = STATE(5187), + [sym__val_number_decimal] = STATE(2013), + [sym__val_number] = STATE(705), + [sym_val_string] = STATE(5187), + [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(5187), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym__spread_record] = STATE(4951), + [sym_record_body] = STATE(5357), + [sym_record_entry] = STATE(4887), + [sym__record_key] = STATE(5305), + [sym_comment] = STATE(459), + [aux_sym__types_body_repeat1] = STATE(505), + [aux_sym_record_body_repeat1] = STATE(719), [anon_sym_export] = ACTIONS(145), [anon_sym_alias] = ACTIONS(139), [anon_sym_let] = ACTIONS(139), @@ -85488,60 +85211,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(139), [anon_sym_match] = ACTIONS(139), [anon_sym_in] = ACTIONS(145), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token3] = ACTIONS(1750), - [aux_sym_cmd_identifier_token4] = ACTIONS(1750), - [aux_sym_cmd_identifier_token5] = ACTIONS(1750), - [sym__newline] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1746), + [aux_sym_cmd_identifier_token3] = ACTIONS(1748), + [aux_sym_cmd_identifier_token4] = ACTIONS(1748), + [aux_sym_cmd_identifier_token5] = ACTIONS(1748), + [sym__newline] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_DOLLAR] = ACTIONS(1754), [anon_sym_DASH2] = ACTIONS(177), - [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1786), [anon_sym_PLUS2] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1760), - [aux_sym__val_number_decimal_token2] = ACTIONS(1762), - [aux_sym__val_number_decimal_token3] = ACTIONS(1764), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1768), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1772), - }, - [STATE(463)] = { - [sym_cmd_identifier] = STATE(4664), - [sym_expr_parenthesized] = STATE(5503), - [sym__spread_parenthesized] = STATE(4962), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(5503), - [sym_val_number] = STATE(5503), - [sym__val_number_decimal] = STATE(2000), - [sym__val_number] = STATE(726), - [sym_val_string] = STATE(5503), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_interpolated] = STATE(5503), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym__spread_record] = STATE(4962), - [sym_record_body] = STATE(5507), - [sym_record_entry] = STATE(4691), - [sym__record_key] = STATE(5380), - [sym_comment] = STATE(463), - [aux_sym__types_body_repeat1] = STATE(503), - [aux_sym_record_body_repeat1] = STATE(728), + [sym_raw_string_begin] = ACTIONS(1770), + }, + [460] = { + [sym_comment] = STATE(460), + [anon_sym_in] = ACTIONS(1466), + [sym__newline] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_err_GT_PIPE] = ACTIONS(1466), + [anon_sym_out_GT_PIPE] = ACTIONS(1466), + [anon_sym_e_GT_PIPE] = ACTIONS(1466), + [anon_sym_o_GT_PIPE] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1466), + [anon_sym_RPAREN] = ACTIONS(1466), + [anon_sym_GT2] = ACTIONS(1464), + [anon_sym_DASH2] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_EQ_GT] = ACTIONS(1466), + [anon_sym_STAR2] = ACTIONS(1464), + [anon_sym_and2] = ACTIONS(1466), + [anon_sym_xor2] = ACTIONS(1466), + [anon_sym_or2] = ACTIONS(1466), + [anon_sym_not_DASHin2] = ACTIONS(1466), + [anon_sym_has2] = ACTIONS(1466), + [anon_sym_not_DASHhas2] = ACTIONS(1466), + [anon_sym_starts_DASHwith2] = ACTIONS(1466), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1466), + [anon_sym_ends_DASHwith2] = ACTIONS(1466), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1466), + [anon_sym_EQ_EQ2] = ACTIONS(1466), + [anon_sym_BANG_EQ2] = ACTIONS(1466), + [anon_sym_LT2] = ACTIONS(1464), + [anon_sym_LT_EQ2] = ACTIONS(1466), + [anon_sym_GT_EQ2] = ACTIONS(1466), + [anon_sym_EQ_TILDE2] = ACTIONS(1466), + [anon_sym_BANG_TILDE2] = ACTIONS(1466), + [anon_sym_like2] = ACTIONS(1466), + [anon_sym_not_DASHlike2] = ACTIONS(1466), + [anon_sym_STAR_STAR2] = ACTIONS(1466), + [anon_sym_PLUS_PLUS2] = ACTIONS(1466), + [anon_sym_SLASH2] = ACTIONS(1464), + [anon_sym_mod2] = ACTIONS(1466), + [anon_sym_SLASH_SLASH2] = ACTIONS(1466), + [anon_sym_PLUS2] = ACTIONS(1464), + [anon_sym_bit_DASHshl2] = ACTIONS(1466), + [anon_sym_bit_DASHshr2] = ACTIONS(1466), + [anon_sym_bit_DASHand2] = ACTIONS(1466), + [anon_sym_bit_DASHxor2] = ACTIONS(1466), + [anon_sym_bit_DASHor2] = ACTIONS(1466), + [anon_sym_DOT_DOT2] = ACTIONS(1464), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1466), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1466), + [anon_sym_COLON2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1788), + [anon_sym_DOT2] = ACTIONS(1464), + [anon_sym_err_GT] = ACTIONS(1464), + [anon_sym_out_GT] = ACTIONS(1464), + [anon_sym_e_GT] = ACTIONS(1464), + [anon_sym_o_GT] = ACTIONS(1464), + [anon_sym_err_PLUSout_GT] = ACTIONS(1464), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1464), + [anon_sym_o_PLUSe_GT] = ACTIONS(1464), + [anon_sym_e_PLUSo_GT] = ACTIONS(1464), + [anon_sym_err_GT_GT] = ACTIONS(1466), + [anon_sym_out_GT_GT] = ACTIONS(1466), + [anon_sym_e_GT_GT] = ACTIONS(1466), + [anon_sym_o_GT_GT] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1466), + [anon_sym_POUND] = ACTIONS(3), + }, + [461] = { + [sym_comment] = STATE(461), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_PLUS_EQ] = ACTIONS(1792), + [anon_sym_DASH_EQ] = ACTIONS(1792), + [anon_sym_STAR_EQ] = ACTIONS(1792), + [anon_sym_SLASH_EQ] = ACTIONS(1792), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1736), + [sym__newline] = ACTIONS(1736), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_PIPE] = ACTIONS(1736), + [anon_sym_err_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_GT_PIPE] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_GT2] = ACTIONS(1610), + [anon_sym_DASH2] = ACTIONS(1610), + [anon_sym_STAR2] = ACTIONS(1610), + [anon_sym_and2] = ACTIONS(1736), + [anon_sym_xor2] = ACTIONS(1736), + [anon_sym_or2] = ACTIONS(1736), + [anon_sym_not_DASHin2] = ACTIONS(1736), + [anon_sym_has2] = ACTIONS(1736), + [anon_sym_not_DASHhas2] = ACTIONS(1736), + [anon_sym_starts_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), + [anon_sym_ends_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), + [anon_sym_EQ_EQ2] = ACTIONS(1736), + [anon_sym_BANG_EQ2] = ACTIONS(1736), + [anon_sym_LT2] = ACTIONS(1610), + [anon_sym_LT_EQ2] = ACTIONS(1736), + [anon_sym_GT_EQ2] = ACTIONS(1736), + [anon_sym_EQ_TILDE2] = ACTIONS(1736), + [anon_sym_BANG_TILDE2] = ACTIONS(1736), + [anon_sym_like2] = ACTIONS(1736), + [anon_sym_not_DASHlike2] = ACTIONS(1736), + [anon_sym_STAR_STAR2] = ACTIONS(1736), + [anon_sym_PLUS_PLUS2] = ACTIONS(1610), + [anon_sym_SLASH2] = ACTIONS(1610), + [anon_sym_mod2] = ACTIONS(1736), + [anon_sym_SLASH_SLASH2] = ACTIONS(1736), + [anon_sym_PLUS2] = ACTIONS(1610), + [anon_sym_bit_DASHshl2] = ACTIONS(1736), + [anon_sym_bit_DASHshr2] = ACTIONS(1736), + [anon_sym_bit_DASHand2] = ACTIONS(1736), + [anon_sym_bit_DASHxor2] = ACTIONS(1736), + [anon_sym_bit_DASHor2] = ACTIONS(1736), + [anon_sym_DOT_DOT2] = ACTIONS(1614), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1616), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1616), + [anon_sym_err_GT] = ACTIONS(1610), + [anon_sym_out_GT] = ACTIONS(1610), + [anon_sym_e_GT] = ACTIONS(1610), + [anon_sym_o_GT] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT] = ACTIONS(1610), + [anon_sym_err_GT_GT] = ACTIONS(1736), + [anon_sym_out_GT_GT] = ACTIONS(1736), + [anon_sym_e_GT_GT] = ACTIONS(1736), + [anon_sym_o_GT_GT] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), + [anon_sym_POUND] = ACTIONS(3), + }, + [462] = { + [sym_cmd_identifier] = STATE(4572), + [sym_expr_parenthesized] = STATE(5187), + [sym__spread_parenthesized] = STATE(4951), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(5187), + [sym_val_number] = STATE(5187), + [sym__val_number_decimal] = STATE(2013), + [sym__val_number] = STATE(705), + [sym_val_string] = STATE(5187), + [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(5187), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym__spread_record] = STATE(4951), + [sym_record_body] = STATE(5156), + [sym_record_entry] = STATE(4887), + [sym__record_key] = STATE(5305), + [sym_comment] = STATE(462), + [aux_sym__types_body_repeat1] = STATE(505), + [aux_sym_record_body_repeat1] = STATE(719), [anon_sym_export] = ACTIONS(145), [anon_sym_alias] = ACTIONS(139), [anon_sym_let] = ACTIONS(139), @@ -85563,60 +85436,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(139), [anon_sym_match] = ACTIONS(139), [anon_sym_in] = ACTIONS(145), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token3] = ACTIONS(1750), - [aux_sym_cmd_identifier_token4] = ACTIONS(1750), - [aux_sym_cmd_identifier_token5] = ACTIONS(1750), - [sym__newline] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1746), + [aux_sym_cmd_identifier_token3] = ACTIONS(1748), + [aux_sym_cmd_identifier_token4] = ACTIONS(1748), + [aux_sym_cmd_identifier_token5] = ACTIONS(1748), + [sym__newline] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_DOLLAR] = ACTIONS(1754), [anon_sym_DASH2] = ACTIONS(177), - [anon_sym_RBRACE] = ACTIONS(1812), + [anon_sym_RBRACE] = ACTIONS(1794), [anon_sym_PLUS2] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1760), - [aux_sym__val_number_decimal_token2] = ACTIONS(1762), - [aux_sym__val_number_decimal_token3] = ACTIONS(1764), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1768), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1772), - }, - [STATE(464)] = { - [sym_cmd_identifier] = STATE(4664), - [sym_expr_parenthesized] = STATE(5503), - [sym__spread_parenthesized] = STATE(4962), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(5503), - [sym_val_number] = STATE(5503), - [sym__val_number_decimal] = STATE(2000), - [sym__val_number] = STATE(726), - [sym_val_string] = STATE(5503), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_interpolated] = STATE(5503), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym__spread_record] = STATE(4962), - [sym_record_body] = STATE(5114), - [sym_record_entry] = STATE(4691), - [sym__record_key] = STATE(5380), - [sym_comment] = STATE(464), - [aux_sym__types_body_repeat1] = STATE(503), - [aux_sym_record_body_repeat1] = STATE(728), + [sym_raw_string_begin] = ACTIONS(1770), + }, + [463] = { + [sym_cmd_identifier] = STATE(4572), + [sym__match_pattern_record_body] = STATE(5494), + [sym_expr_parenthesized] = STATE(5187), + [sym__spread_parenthesized] = STATE(4951), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(4655), + [sym_val_number] = STATE(5187), + [sym__val_number_decimal] = STATE(2013), + [sym__val_number] = STATE(705), + [sym_val_string] = STATE(5187), + [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(5187), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym__spread_record] = STATE(4951), + [sym_record_entry] = STATE(4749), + [sym__record_key] = STATE(5305), + [sym_comment] = STATE(463), + [aux_sym__types_body_repeat1] = STATE(518), + [aux_sym__match_pattern_record_body_repeat1] = STATE(723), [anon_sym_export] = ACTIONS(145), [anon_sym_alias] = ACTIONS(139), [anon_sym_let] = ACTIONS(139), @@ -85638,660 +85511,510 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(139), [anon_sym_match] = ACTIONS(139), [anon_sym_in] = ACTIONS(145), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token3] = ACTIONS(1750), - [aux_sym_cmd_identifier_token4] = ACTIONS(1750), - [aux_sym_cmd_identifier_token5] = ACTIONS(1750), - [sym__newline] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1746), + [aux_sym_cmd_identifier_token3] = ACTIONS(1748), + [aux_sym_cmd_identifier_token4] = ACTIONS(1748), + [aux_sym_cmd_identifier_token5] = ACTIONS(1748), + [sym__newline] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_DOLLAR] = ACTIONS(1778), [anon_sym_DASH2] = ACTIONS(177), - [anon_sym_RBRACE] = ACTIONS(1814), + [anon_sym_RBRACE] = ACTIONS(1796), [anon_sym_PLUS2] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1760), - [aux_sym__val_number_decimal_token2] = ACTIONS(1762), - [aux_sym__val_number_decimal_token3] = ACTIONS(1764), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1768), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1772), + [sym_raw_string_begin] = ACTIONS(1770), }, - [STATE(465)] = { - [sym__expr_parenthesized_immediate] = STATE(1320), - [sym__immediate_decimal] = STATE(1322), - [sym_val_variable] = STATE(1320), + [464] = { + [sym_comment] = STATE(464), + [anon_sym_in] = ACTIONS(765), + [sym__newline] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_err_GT_PIPE] = ACTIONS(765), + [anon_sym_out_GT_PIPE] = ACTIONS(765), + [anon_sym_e_GT_PIPE] = ACTIONS(765), + [anon_sym_o_GT_PIPE] = ACTIONS(765), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(765), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(765), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(765), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(765), + [anon_sym_RPAREN] = ACTIONS(765), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(765), + [anon_sym_xor2] = ACTIONS(765), + [anon_sym_or2] = ACTIONS(765), + [anon_sym_not_DASHin2] = ACTIONS(765), + [anon_sym_has2] = ACTIONS(765), + [anon_sym_not_DASHhas2] = ACTIONS(765), + [anon_sym_starts_DASHwith2] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(765), + [anon_sym_ends_DASHwith2] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(765), + [anon_sym_EQ_EQ2] = ACTIONS(765), + [anon_sym_BANG_EQ2] = ACTIONS(765), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(765), + [anon_sym_GT_EQ2] = ACTIONS(765), + [anon_sym_EQ_TILDE2] = ACTIONS(765), + [anon_sym_BANG_TILDE2] = ACTIONS(765), + [anon_sym_like2] = ACTIONS(765), + [anon_sym_not_DASHlike2] = ACTIONS(765), + [anon_sym_LPAREN2] = ACTIONS(765), + [anon_sym_STAR_STAR2] = ACTIONS(765), + [anon_sym_PLUS_PLUS2] = ACTIONS(765), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(765), + [anon_sym_SLASH_SLASH2] = ACTIONS(765), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(765), + [anon_sym_bit_DASHshr2] = ACTIONS(765), + [anon_sym_bit_DASHand2] = ACTIONS(765), + [anon_sym_bit_DASHxor2] = ACTIONS(765), + [anon_sym_bit_DASHor2] = ACTIONS(765), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(1721), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(765), + [anon_sym_out_GT_GT] = ACTIONS(765), + [anon_sym_e_GT_GT] = ACTIONS(765), + [anon_sym_o_GT_GT] = ACTIONS(765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(765), + [sym__unquoted_pattern] = ACTIONS(763), + [anon_sym_POUND] = ACTIONS(3), + }, + [465] = { + [sym__expr_parenthesized_immediate] = STATE(1366), + [sym__immediate_decimal] = STATE(1364), + [sym_val_variable] = STATE(1366), [sym_comment] = STATE(465), - [ts_builtin_sym_end] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1628), - [sym__newline] = ACTIONS(1628), - [anon_sym_SEMI] = ACTIONS(1628), - [anon_sym_PIPE] = ACTIONS(1628), - [anon_sym_err_GT_PIPE] = ACTIONS(1628), - [anon_sym_out_GT_PIPE] = ACTIONS(1628), - [anon_sym_e_GT_PIPE] = ACTIONS(1628), - [anon_sym_o_GT_PIPE] = ACTIONS(1628), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1628), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1628), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1628), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1628), - [anon_sym_DOLLAR] = ACTIONS(1693), - [anon_sym_GT2] = ACTIONS(1632), - [anon_sym_DASH2] = ACTIONS(1632), - [anon_sym_STAR2] = ACTIONS(1632), - [anon_sym_and2] = ACTIONS(1628), - [anon_sym_xor2] = ACTIONS(1628), - [anon_sym_or2] = ACTIONS(1628), - [anon_sym_not_DASHin2] = ACTIONS(1628), - [anon_sym_has2] = ACTIONS(1628), - [anon_sym_not_DASHhas2] = ACTIONS(1628), - [anon_sym_starts_DASHwith2] = ACTIONS(1628), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1628), - [anon_sym_ends_DASHwith2] = ACTIONS(1628), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1628), - [anon_sym_EQ_EQ2] = ACTIONS(1628), - [anon_sym_BANG_EQ2] = ACTIONS(1628), - [anon_sym_LT2] = ACTIONS(1632), - [anon_sym_LT_EQ2] = ACTIONS(1628), - [anon_sym_GT_EQ2] = ACTIONS(1628), - [anon_sym_EQ_TILDE2] = ACTIONS(1628), - [anon_sym_BANG_TILDE2] = ACTIONS(1628), - [anon_sym_like2] = ACTIONS(1628), - [anon_sym_not_DASHlike2] = ACTIONS(1628), - [anon_sym_LPAREN2] = ACTIONS(1695), - [anon_sym_STAR_STAR2] = ACTIONS(1628), - [anon_sym_PLUS_PLUS2] = ACTIONS(1628), - [anon_sym_SLASH2] = ACTIONS(1632), - [anon_sym_mod2] = ACTIONS(1628), - [anon_sym_SLASH_SLASH2] = ACTIONS(1628), - [anon_sym_PLUS2] = ACTIONS(1632), - [anon_sym_bit_DASHshl2] = ACTIONS(1628), - [anon_sym_bit_DASHshr2] = ACTIONS(1628), - [anon_sym_bit_DASHand2] = ACTIONS(1628), - [anon_sym_bit_DASHxor2] = ACTIONS(1628), - [anon_sym_bit_DASHor2] = ACTIONS(1628), - [aux_sym__immediate_decimal_token1] = ACTIONS(1782), - [aux_sym__immediate_decimal_token2] = ACTIONS(1782), - [aux_sym__immediate_decimal_token3] = ACTIONS(1701), - [aux_sym__immediate_decimal_token4] = ACTIONS(1701), - [anon_sym_err_GT] = ACTIONS(1632), - [anon_sym_out_GT] = ACTIONS(1632), - [anon_sym_e_GT] = ACTIONS(1632), - [anon_sym_o_GT] = ACTIONS(1632), - [anon_sym_err_PLUSout_GT] = ACTIONS(1632), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1632), - [anon_sym_o_PLUSe_GT] = ACTIONS(1632), - [anon_sym_e_PLUSo_GT] = ACTIONS(1632), - [anon_sym_err_GT_GT] = ACTIONS(1628), - [anon_sym_out_GT_GT] = ACTIONS(1628), - [anon_sym_e_GT_GT] = ACTIONS(1628), - [anon_sym_o_GT_GT] = ACTIONS(1628), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1628), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1628), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1628), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1628), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(466)] = { + [ts_builtin_sym_end] = ACTIONS(1679), + [anon_sym_in] = ACTIONS(1679), + [sym__newline] = ACTIONS(1679), + [anon_sym_SEMI] = ACTIONS(1679), + [anon_sym_PIPE] = ACTIONS(1679), + [anon_sym_err_GT_PIPE] = ACTIONS(1679), + [anon_sym_out_GT_PIPE] = ACTIONS(1679), + [anon_sym_e_GT_PIPE] = ACTIONS(1679), + [anon_sym_o_GT_PIPE] = ACTIONS(1679), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1679), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1679), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1679), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1679), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1679), + [anon_sym_xor2] = ACTIONS(1679), + [anon_sym_or2] = ACTIONS(1679), + [anon_sym_not_DASHin2] = ACTIONS(1679), + [anon_sym_has2] = ACTIONS(1679), + [anon_sym_not_DASHhas2] = ACTIONS(1679), + [anon_sym_starts_DASHwith2] = ACTIONS(1679), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1679), + [anon_sym_ends_DASHwith2] = ACTIONS(1679), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1679), + [anon_sym_EQ_EQ2] = ACTIONS(1679), + [anon_sym_BANG_EQ2] = ACTIONS(1679), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1679), + [anon_sym_GT_EQ2] = ACTIONS(1679), + [anon_sym_EQ_TILDE2] = ACTIONS(1679), + [anon_sym_BANG_TILDE2] = ACTIONS(1679), + [anon_sym_like2] = ACTIONS(1679), + [anon_sym_not_DASHlike2] = ACTIONS(1679), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_STAR_STAR2] = ACTIONS(1679), + [anon_sym_PLUS_PLUS2] = ACTIONS(1679), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1679), + [anon_sym_SLASH_SLASH2] = ACTIONS(1679), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1679), + [anon_sym_bit_DASHshr2] = ACTIONS(1679), + [anon_sym_bit_DASHand2] = ACTIONS(1679), + [anon_sym_bit_DASHxor2] = ACTIONS(1679), + [anon_sym_bit_DASHor2] = ACTIONS(1679), + [aux_sym__immediate_decimal_token1] = ACTIONS(1776), + [aux_sym__immediate_decimal_token2] = ACTIONS(1776), + [aux_sym__immediate_decimal_token3] = ACTIONS(1711), + [aux_sym__immediate_decimal_token4] = ACTIONS(1711), + [anon_sym_err_GT] = ACTIONS(1681), + [anon_sym_out_GT] = ACTIONS(1681), + [anon_sym_e_GT] = ACTIONS(1681), + [anon_sym_o_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT] = ACTIONS(1681), + [anon_sym_err_GT_GT] = ACTIONS(1679), + [anon_sym_out_GT_GT] = ACTIONS(1679), + [anon_sym_e_GT_GT] = ACTIONS(1679), + [anon_sym_o_GT_GT] = ACTIONS(1679), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1679), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1679), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1679), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1679), + [anon_sym_POUND] = ACTIONS(3), + }, + [466] = { [sym_comment] = STATE(466), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1738), - [sym__newline] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_err_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_GT_PIPE] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), - [anon_sym_RPAREN] = ACTIONS(1738), - [anon_sym_GT2] = ACTIONS(1616), - [anon_sym_DASH2] = ACTIONS(1616), - [anon_sym_STAR2] = ACTIONS(1616), - [anon_sym_and2] = ACTIONS(1738), - [anon_sym_xor2] = ACTIONS(1738), - [anon_sym_or2] = ACTIONS(1738), - [anon_sym_not_DASHin2] = ACTIONS(1738), - [anon_sym_has2] = ACTIONS(1738), - [anon_sym_not_DASHhas2] = ACTIONS(1738), - [anon_sym_starts_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), - [anon_sym_ends_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), - [anon_sym_EQ_EQ2] = ACTIONS(1738), - [anon_sym_BANG_EQ2] = ACTIONS(1738), - [anon_sym_LT2] = ACTIONS(1616), - [anon_sym_LT_EQ2] = ACTIONS(1738), - [anon_sym_GT_EQ2] = ACTIONS(1738), - [anon_sym_EQ_TILDE2] = ACTIONS(1738), - [anon_sym_BANG_TILDE2] = ACTIONS(1738), - [anon_sym_like2] = ACTIONS(1738), - [anon_sym_not_DASHlike2] = ACTIONS(1738), - [anon_sym_STAR_STAR2] = ACTIONS(1738), - [anon_sym_PLUS_PLUS2] = ACTIONS(1616), - [anon_sym_SLASH2] = ACTIONS(1616), - [anon_sym_mod2] = ACTIONS(1738), - [anon_sym_SLASH_SLASH2] = ACTIONS(1738), - [anon_sym_PLUS2] = ACTIONS(1616), - [anon_sym_bit_DASHshl2] = ACTIONS(1738), - [anon_sym_bit_DASHshr2] = ACTIONS(1738), - [anon_sym_bit_DASHand2] = ACTIONS(1738), - [anon_sym_bit_DASHxor2] = ACTIONS(1738), - [anon_sym_bit_DASHor2] = ACTIONS(1738), - [anon_sym_DOT_DOT2] = ACTIONS(1620), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), - [anon_sym_err_GT] = ACTIONS(1616), - [anon_sym_out_GT] = ACTIONS(1616), - [anon_sym_e_GT] = ACTIONS(1616), - [anon_sym_o_GT] = ACTIONS(1616), - [anon_sym_err_PLUSout_GT] = ACTIONS(1616), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), - [anon_sym_o_PLUSe_GT] = ACTIONS(1616), - [anon_sym_e_PLUSo_GT] = ACTIONS(1616), - [anon_sym_err_GT_GT] = ACTIONS(1738), - [anon_sym_out_GT_GT] = ACTIONS(1738), - [anon_sym_e_GT_GT] = ACTIONS(1738), - [anon_sym_o_GT_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(467)] = { + [anon_sym_if] = ACTIONS(1586), + [anon_sym_in] = ACTIONS(1586), + [sym__newline] = ACTIONS(1586), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_PIPE] = ACTIONS(1586), + [anon_sym_err_GT_PIPE] = ACTIONS(1586), + [anon_sym_out_GT_PIPE] = ACTIONS(1586), + [anon_sym_e_GT_PIPE] = ACTIONS(1586), + [anon_sym_o_GT_PIPE] = ACTIONS(1586), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1586), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1586), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1586), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1586), + [anon_sym_RPAREN] = ACTIONS(1586), + [anon_sym_GT2] = ACTIONS(1584), + [anon_sym_DASH2] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_EQ_GT] = ACTIONS(1586), + [anon_sym_STAR2] = ACTIONS(1584), + [anon_sym_and2] = ACTIONS(1586), + [anon_sym_xor2] = ACTIONS(1586), + [anon_sym_or2] = ACTIONS(1586), + [anon_sym_not_DASHin2] = ACTIONS(1586), + [anon_sym_has2] = ACTIONS(1586), + [anon_sym_not_DASHhas2] = ACTIONS(1586), + [anon_sym_starts_DASHwith2] = ACTIONS(1586), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1586), + [anon_sym_ends_DASHwith2] = ACTIONS(1586), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1586), + [anon_sym_EQ_EQ2] = ACTIONS(1586), + [anon_sym_BANG_EQ2] = ACTIONS(1586), + [anon_sym_LT2] = ACTIONS(1584), + [anon_sym_LT_EQ2] = ACTIONS(1586), + [anon_sym_GT_EQ2] = ACTIONS(1586), + [anon_sym_EQ_TILDE2] = ACTIONS(1586), + [anon_sym_BANG_TILDE2] = ACTIONS(1586), + [anon_sym_like2] = ACTIONS(1586), + [anon_sym_not_DASHlike2] = ACTIONS(1586), + [anon_sym_STAR_STAR2] = ACTIONS(1586), + [anon_sym_PLUS_PLUS2] = ACTIONS(1586), + [anon_sym_SLASH2] = ACTIONS(1584), + [anon_sym_mod2] = ACTIONS(1586), + [anon_sym_SLASH_SLASH2] = ACTIONS(1586), + [anon_sym_PLUS2] = ACTIONS(1584), + [anon_sym_bit_DASHshl2] = ACTIONS(1586), + [anon_sym_bit_DASHshr2] = ACTIONS(1586), + [anon_sym_bit_DASHand2] = ACTIONS(1586), + [anon_sym_bit_DASHxor2] = ACTIONS(1586), + [anon_sym_bit_DASHor2] = ACTIONS(1586), + [anon_sym_DOT_DOT2] = ACTIONS(1584), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1586), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1586), + [anon_sym_COLON2] = ACTIONS(1586), + [anon_sym_DOT2] = ACTIONS(1584), + [anon_sym_err_GT] = ACTIONS(1584), + [anon_sym_out_GT] = ACTIONS(1584), + [anon_sym_e_GT] = ACTIONS(1584), + [anon_sym_o_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT] = ACTIONS(1584), + [anon_sym_err_GT_GT] = ACTIONS(1586), + [anon_sym_out_GT_GT] = ACTIONS(1586), + [anon_sym_e_GT_GT] = ACTIONS(1586), + [anon_sym_o_GT_GT] = ACTIONS(1586), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1586), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1586), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1586), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(3), + }, + [467] = { [sym_comment] = STATE(467), - [anon_sym_EQ] = ACTIONS(1614), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1738), - [sym__newline] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_err_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_GT_PIPE] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), - [anon_sym_GT2] = ACTIONS(1616), - [anon_sym_DASH2] = ACTIONS(1616), - [anon_sym_RBRACE] = ACTIONS(1738), - [anon_sym_STAR2] = ACTIONS(1616), - [anon_sym_and2] = ACTIONS(1738), - [anon_sym_xor2] = ACTIONS(1738), - [anon_sym_or2] = ACTIONS(1738), - [anon_sym_not_DASHin2] = ACTIONS(1738), - [anon_sym_has2] = ACTIONS(1738), - [anon_sym_not_DASHhas2] = ACTIONS(1738), - [anon_sym_starts_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), - [anon_sym_ends_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), - [anon_sym_EQ_EQ2] = ACTIONS(1738), - [anon_sym_BANG_EQ2] = ACTIONS(1738), - [anon_sym_LT2] = ACTIONS(1616), - [anon_sym_LT_EQ2] = ACTIONS(1738), - [anon_sym_GT_EQ2] = ACTIONS(1738), - [anon_sym_EQ_TILDE2] = ACTIONS(1738), - [anon_sym_BANG_TILDE2] = ACTIONS(1738), - [anon_sym_like2] = ACTIONS(1738), - [anon_sym_not_DASHlike2] = ACTIONS(1738), - [anon_sym_STAR_STAR2] = ACTIONS(1738), - [anon_sym_PLUS_PLUS2] = ACTIONS(1616), - [anon_sym_SLASH2] = ACTIONS(1616), - [anon_sym_mod2] = ACTIONS(1738), - [anon_sym_SLASH_SLASH2] = ACTIONS(1738), - [anon_sym_PLUS2] = ACTIONS(1616), - [anon_sym_bit_DASHshl2] = ACTIONS(1738), - [anon_sym_bit_DASHshr2] = ACTIONS(1738), - [anon_sym_bit_DASHand2] = ACTIONS(1738), - [anon_sym_bit_DASHxor2] = ACTIONS(1738), - [anon_sym_bit_DASHor2] = ACTIONS(1738), - [anon_sym_DOT_DOT2] = ACTIONS(1620), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), - [anon_sym_err_GT] = ACTIONS(1616), - [anon_sym_out_GT] = ACTIONS(1616), - [anon_sym_e_GT] = ACTIONS(1616), - [anon_sym_o_GT] = ACTIONS(1616), - [anon_sym_err_PLUSout_GT] = ACTIONS(1616), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), - [anon_sym_o_PLUSe_GT] = ACTIONS(1616), - [anon_sym_e_PLUSo_GT] = ACTIONS(1616), - [anon_sym_err_GT_GT] = ACTIONS(1738), - [anon_sym_out_GT_GT] = ACTIONS(1738), - [anon_sym_e_GT_GT] = ACTIONS(1738), - [anon_sym_o_GT_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(468)] = { + [anon_sym_EQ] = ACTIONS(1798), + [anon_sym_PLUS_EQ] = ACTIONS(1800), + [anon_sym_DASH_EQ] = ACTIONS(1800), + [anon_sym_STAR_EQ] = ACTIONS(1800), + [anon_sym_SLASH_EQ] = ACTIONS(1800), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1800), + [anon_sym_in] = ACTIONS(1736), + [sym__newline] = ACTIONS(1736), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_PIPE] = ACTIONS(1736), + [anon_sym_err_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_GT_PIPE] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_GT2] = ACTIONS(1610), + [anon_sym_DASH2] = ACTIONS(1610), + [anon_sym_STAR2] = ACTIONS(1610), + [anon_sym_and2] = ACTIONS(1736), + [anon_sym_xor2] = ACTIONS(1736), + [anon_sym_or2] = ACTIONS(1736), + [anon_sym_not_DASHin2] = ACTIONS(1736), + [anon_sym_has2] = ACTIONS(1736), + [anon_sym_not_DASHhas2] = ACTIONS(1736), + [anon_sym_starts_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), + [anon_sym_ends_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), + [anon_sym_EQ_EQ2] = ACTIONS(1736), + [anon_sym_BANG_EQ2] = ACTIONS(1736), + [anon_sym_LT2] = ACTIONS(1610), + [anon_sym_LT_EQ2] = ACTIONS(1736), + [anon_sym_GT_EQ2] = ACTIONS(1736), + [anon_sym_EQ_TILDE2] = ACTIONS(1736), + [anon_sym_BANG_TILDE2] = ACTIONS(1736), + [anon_sym_like2] = ACTIONS(1736), + [anon_sym_not_DASHlike2] = ACTIONS(1736), + [anon_sym_STAR_STAR2] = ACTIONS(1736), + [anon_sym_PLUS_PLUS2] = ACTIONS(1610), + [anon_sym_SLASH2] = ACTIONS(1610), + [anon_sym_mod2] = ACTIONS(1736), + [anon_sym_SLASH_SLASH2] = ACTIONS(1736), + [anon_sym_PLUS2] = ACTIONS(1610), + [anon_sym_bit_DASHshl2] = ACTIONS(1736), + [anon_sym_bit_DASHshr2] = ACTIONS(1736), + [anon_sym_bit_DASHand2] = ACTIONS(1736), + [anon_sym_bit_DASHxor2] = ACTIONS(1736), + [anon_sym_bit_DASHor2] = ACTIONS(1736), + [anon_sym_DOT_DOT2] = ACTIONS(1614), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1616), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1616), + [anon_sym_err_GT] = ACTIONS(1610), + [anon_sym_out_GT] = ACTIONS(1610), + [anon_sym_e_GT] = ACTIONS(1610), + [anon_sym_o_GT] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT] = ACTIONS(1610), + [anon_sym_err_GT_GT] = ACTIONS(1736), + [anon_sym_out_GT_GT] = ACTIONS(1736), + [anon_sym_e_GT_GT] = ACTIONS(1736), + [anon_sym_o_GT_GT] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), + [anon_sym_POUND] = ACTIONS(3), + }, + [468] = { [sym_comment] = STATE(468), - [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(1820), - [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(469)] = { - [sym__expr_parenthesized_immediate] = STATE(1325), - [sym__immediate_decimal] = STATE(1330), - [sym_val_variable] = STATE(1325), + [anon_sym_in] = ACTIONS(1802), + [sym__newline] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1802), + [anon_sym_err_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_GT_PIPE] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), + [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_GT2] = ACTIONS(1804), + [anon_sym_DASH2] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_STAR2] = ACTIONS(1804), + [anon_sym_and2] = ACTIONS(1802), + [anon_sym_xor2] = ACTIONS(1802), + [anon_sym_or2] = ACTIONS(1802), + [anon_sym_not_DASHin2] = ACTIONS(1802), + [anon_sym_has2] = ACTIONS(1802), + [anon_sym_not_DASHhas2] = ACTIONS(1802), + [anon_sym_starts_DASHwith2] = ACTIONS(1802), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), + [anon_sym_ends_DASHwith2] = ACTIONS(1802), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), + [anon_sym_EQ_EQ2] = ACTIONS(1802), + [anon_sym_BANG_EQ2] = ACTIONS(1802), + [anon_sym_LT2] = ACTIONS(1804), + [anon_sym_LT_EQ2] = ACTIONS(1802), + [anon_sym_GT_EQ2] = ACTIONS(1802), + [anon_sym_EQ_TILDE2] = ACTIONS(1802), + [anon_sym_BANG_TILDE2] = ACTIONS(1802), + [anon_sym_like2] = ACTIONS(1802), + [anon_sym_not_DASHlike2] = ACTIONS(1802), + [anon_sym_LPAREN2] = ACTIONS(1802), + [anon_sym_STAR_STAR2] = ACTIONS(1802), + [anon_sym_PLUS_PLUS2] = ACTIONS(1802), + [anon_sym_SLASH2] = ACTIONS(1804), + [anon_sym_mod2] = ACTIONS(1802), + [anon_sym_SLASH_SLASH2] = ACTIONS(1802), + [anon_sym_PLUS2] = ACTIONS(1804), + [anon_sym_bit_DASHshl2] = ACTIONS(1802), + [anon_sym_bit_DASHshr2] = ACTIONS(1802), + [anon_sym_bit_DASHand2] = ACTIONS(1802), + [anon_sym_bit_DASHxor2] = ACTIONS(1802), + [anon_sym_bit_DASHor2] = ACTIONS(1802), + [anon_sym_DOT_DOT2] = ACTIONS(1804), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1802), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1802), + [aux_sym__immediate_decimal_token1] = ACTIONS(1806), + [aux_sym__immediate_decimal_token5] = ACTIONS(1808), + [anon_sym_err_GT] = ACTIONS(1804), + [anon_sym_out_GT] = ACTIONS(1804), + [anon_sym_e_GT] = ACTIONS(1804), + [anon_sym_o_GT] = ACTIONS(1804), + [anon_sym_err_PLUSout_GT] = ACTIONS(1804), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), + [anon_sym_o_PLUSe_GT] = ACTIONS(1804), + [anon_sym_e_PLUSo_GT] = ACTIONS(1804), + [anon_sym_err_GT_GT] = ACTIONS(1802), + [anon_sym_out_GT_GT] = ACTIONS(1802), + [anon_sym_e_GT_GT] = ACTIONS(1802), + [anon_sym_o_GT_GT] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), + [sym__unquoted_pattern] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(3), + }, + [469] = { [sym_comment] = STATE(469), - [ts_builtin_sym_end] = ACTIONS(1642), - [anon_sym_in] = ACTIONS(1642), - [sym__newline] = ACTIONS(1642), - [anon_sym_SEMI] = ACTIONS(1642), - [anon_sym_PIPE] = ACTIONS(1642), - [anon_sym_err_GT_PIPE] = ACTIONS(1642), - [anon_sym_out_GT_PIPE] = ACTIONS(1642), - [anon_sym_e_GT_PIPE] = ACTIONS(1642), - [anon_sym_o_GT_PIPE] = ACTIONS(1642), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1642), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1642), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1642), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1642), - [anon_sym_DOLLAR] = ACTIONS(1693), - [anon_sym_GT2] = ACTIONS(1644), - [anon_sym_DASH2] = ACTIONS(1644), - [anon_sym_STAR2] = ACTIONS(1644), - [anon_sym_and2] = ACTIONS(1642), - [anon_sym_xor2] = ACTIONS(1642), - [anon_sym_or2] = ACTIONS(1642), - [anon_sym_not_DASHin2] = ACTIONS(1642), - [anon_sym_has2] = ACTIONS(1642), - [anon_sym_not_DASHhas2] = ACTIONS(1642), - [anon_sym_starts_DASHwith2] = ACTIONS(1642), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1642), - [anon_sym_ends_DASHwith2] = ACTIONS(1642), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1642), - [anon_sym_EQ_EQ2] = ACTIONS(1642), - [anon_sym_BANG_EQ2] = ACTIONS(1642), - [anon_sym_LT2] = ACTIONS(1644), - [anon_sym_LT_EQ2] = ACTIONS(1642), - [anon_sym_GT_EQ2] = ACTIONS(1642), - [anon_sym_EQ_TILDE2] = ACTIONS(1642), - [anon_sym_BANG_TILDE2] = ACTIONS(1642), - [anon_sym_like2] = ACTIONS(1642), - [anon_sym_not_DASHlike2] = ACTIONS(1642), - [anon_sym_LPAREN2] = ACTIONS(1695), - [anon_sym_STAR_STAR2] = ACTIONS(1642), - [anon_sym_PLUS_PLUS2] = ACTIONS(1642), - [anon_sym_SLASH2] = ACTIONS(1644), - [anon_sym_mod2] = ACTIONS(1642), - [anon_sym_SLASH_SLASH2] = ACTIONS(1642), - [anon_sym_PLUS2] = ACTIONS(1644), - [anon_sym_bit_DASHshl2] = ACTIONS(1642), - [anon_sym_bit_DASHshr2] = ACTIONS(1642), - [anon_sym_bit_DASHand2] = ACTIONS(1642), - [anon_sym_bit_DASHxor2] = ACTIONS(1642), - [anon_sym_bit_DASHor2] = ACTIONS(1642), - [aux_sym__immediate_decimal_token1] = ACTIONS(1782), - [aux_sym__immediate_decimal_token2] = ACTIONS(1782), - [aux_sym__immediate_decimal_token3] = ACTIONS(1701), - [aux_sym__immediate_decimal_token4] = ACTIONS(1701), - [anon_sym_err_GT] = ACTIONS(1644), - [anon_sym_out_GT] = ACTIONS(1644), - [anon_sym_e_GT] = ACTIONS(1644), - [anon_sym_o_GT] = ACTIONS(1644), - [anon_sym_err_PLUSout_GT] = ACTIONS(1644), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1644), - [anon_sym_o_PLUSe_GT] = ACTIONS(1644), - [anon_sym_e_PLUSo_GT] = ACTIONS(1644), - [anon_sym_err_GT_GT] = ACTIONS(1642), - [anon_sym_out_GT_GT] = ACTIONS(1642), - [anon_sym_e_GT_GT] = ACTIONS(1642), - [anon_sym_o_GT_GT] = ACTIONS(1642), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1642), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1642), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1642), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1642), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(470)] = { + [anon_sym_in] = ACTIONS(1810), + [sym__newline] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_err_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_GT_PIPE] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_GT2] = ACTIONS(1812), + [anon_sym_DASH2] = ACTIONS(1810), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_STAR2] = ACTIONS(1812), + [anon_sym_and2] = ACTIONS(1810), + [anon_sym_xor2] = ACTIONS(1810), + [anon_sym_or2] = ACTIONS(1810), + [anon_sym_not_DASHin2] = ACTIONS(1810), + [anon_sym_has2] = ACTIONS(1810), + [anon_sym_not_DASHhas2] = ACTIONS(1810), + [anon_sym_starts_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1810), + [anon_sym_ends_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1810), + [anon_sym_EQ_EQ2] = ACTIONS(1810), + [anon_sym_BANG_EQ2] = ACTIONS(1810), + [anon_sym_LT2] = ACTIONS(1812), + [anon_sym_LT_EQ2] = ACTIONS(1810), + [anon_sym_GT_EQ2] = ACTIONS(1810), + [anon_sym_EQ_TILDE2] = ACTIONS(1810), + [anon_sym_BANG_TILDE2] = ACTIONS(1810), + [anon_sym_like2] = ACTIONS(1810), + [anon_sym_not_DASHlike2] = ACTIONS(1810), + [anon_sym_LPAREN2] = ACTIONS(1810), + [anon_sym_STAR_STAR2] = ACTIONS(1810), + [anon_sym_PLUS_PLUS2] = ACTIONS(1810), + [anon_sym_SLASH2] = ACTIONS(1812), + [anon_sym_mod2] = ACTIONS(1810), + [anon_sym_SLASH_SLASH2] = ACTIONS(1810), + [anon_sym_PLUS2] = ACTIONS(1812), + [anon_sym_bit_DASHshl2] = ACTIONS(1810), + [anon_sym_bit_DASHshr2] = ACTIONS(1810), + [anon_sym_bit_DASHand2] = ACTIONS(1810), + [anon_sym_bit_DASHxor2] = ACTIONS(1810), + [anon_sym_bit_DASHor2] = ACTIONS(1810), + [anon_sym_DOT_DOT2] = ACTIONS(1812), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1810), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1810), + [aux_sym__immediate_decimal_token5] = ACTIONS(1816), + [anon_sym_err_GT] = ACTIONS(1812), + [anon_sym_out_GT] = ACTIONS(1812), + [anon_sym_e_GT] = ACTIONS(1812), + [anon_sym_o_GT] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT] = ACTIONS(1812), + [anon_sym_err_GT_GT] = ACTIONS(1810), + [anon_sym_out_GT_GT] = ACTIONS(1810), + [anon_sym_e_GT_GT] = ACTIONS(1810), + [anon_sym_o_GT_GT] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), + [sym__unquoted_pattern] = ACTIONS(1812), + [anon_sym_POUND] = ACTIONS(3), + }, + [470] = { + [sym_cmd_identifier] = STATE(4572), + [sym_expr_parenthesized] = STATE(5187), + [sym__spread_parenthesized] = STATE(4951), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(5187), + [sym_val_number] = STATE(5187), + [sym__val_number_decimal] = STATE(2013), + [sym__val_number] = STATE(705), + [sym_val_string] = STATE(5187), + [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(5187), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym__spread_record] = STATE(4951), + [sym_record_body] = STATE(5201), + [sym_record_entry] = STATE(4887), + [sym__record_key] = STATE(5305), [sym_comment] = STATE(470), - [ts_builtin_sym_end] = ACTIONS(1738), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1824), - [anon_sym_in] = ACTIONS(1738), - [sym__newline] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_err_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_GT_PIPE] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), - [anon_sym_GT2] = ACTIONS(1616), - [anon_sym_DASH2] = ACTIONS(1616), - [anon_sym_STAR2] = ACTIONS(1616), - [anon_sym_and2] = ACTIONS(1738), - [anon_sym_xor2] = ACTIONS(1738), - [anon_sym_or2] = ACTIONS(1738), - [anon_sym_not_DASHin2] = ACTIONS(1738), - [anon_sym_has2] = ACTIONS(1738), - [anon_sym_not_DASHhas2] = ACTIONS(1738), - [anon_sym_starts_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), - [anon_sym_ends_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), - [anon_sym_EQ_EQ2] = ACTIONS(1738), - [anon_sym_BANG_EQ2] = ACTIONS(1738), - [anon_sym_LT2] = ACTIONS(1616), - [anon_sym_LT_EQ2] = ACTIONS(1738), - [anon_sym_GT_EQ2] = ACTIONS(1738), - [anon_sym_EQ_TILDE2] = ACTIONS(1738), - [anon_sym_BANG_TILDE2] = ACTIONS(1738), - [anon_sym_like2] = ACTIONS(1738), - [anon_sym_not_DASHlike2] = ACTIONS(1738), - [anon_sym_STAR_STAR2] = ACTIONS(1738), - [anon_sym_PLUS_PLUS2] = ACTIONS(1616), - [anon_sym_SLASH2] = ACTIONS(1616), - [anon_sym_mod2] = ACTIONS(1738), - [anon_sym_SLASH_SLASH2] = ACTIONS(1738), - [anon_sym_PLUS2] = ACTIONS(1616), - [anon_sym_bit_DASHshl2] = ACTIONS(1738), - [anon_sym_bit_DASHshr2] = ACTIONS(1738), - [anon_sym_bit_DASHand2] = ACTIONS(1738), - [anon_sym_bit_DASHxor2] = ACTIONS(1738), - [anon_sym_bit_DASHor2] = ACTIONS(1738), - [anon_sym_DOT_DOT2] = ACTIONS(1826), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), - [anon_sym_err_GT] = ACTIONS(1616), - [anon_sym_out_GT] = ACTIONS(1616), - [anon_sym_e_GT] = ACTIONS(1616), - [anon_sym_o_GT] = ACTIONS(1616), - [anon_sym_err_PLUSout_GT] = ACTIONS(1616), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), - [anon_sym_o_PLUSe_GT] = ACTIONS(1616), - [anon_sym_e_PLUSo_GT] = ACTIONS(1616), - [anon_sym_err_GT_GT] = ACTIONS(1738), - [anon_sym_out_GT_GT] = ACTIONS(1738), - [anon_sym_e_GT_GT] = ACTIONS(1738), - [anon_sym_o_GT_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(471)] = { - [sym_comment] = STATE(471), - [ts_builtin_sym_end] = ACTIONS(761), - [anon_sym_in] = ACTIONS(761), - [sym__newline] = ACTIONS(761), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_PIPE] = ACTIONS(761), - [anon_sym_err_GT_PIPE] = ACTIONS(761), - [anon_sym_out_GT_PIPE] = ACTIONS(761), - [anon_sym_e_GT_PIPE] = ACTIONS(761), - [anon_sym_o_GT_PIPE] = ACTIONS(761), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(761), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(761), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(761), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(761), - [anon_sym_GT2] = ACTIONS(759), - [anon_sym_DASH2] = ACTIONS(761), - [anon_sym_STAR2] = ACTIONS(759), - [anon_sym_and2] = ACTIONS(761), - [anon_sym_xor2] = ACTIONS(761), - [anon_sym_or2] = ACTIONS(761), - [anon_sym_not_DASHin2] = ACTIONS(761), - [anon_sym_has2] = ACTIONS(761), - [anon_sym_not_DASHhas2] = ACTIONS(761), - [anon_sym_starts_DASHwith2] = ACTIONS(761), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(761), - [anon_sym_ends_DASHwith2] = ACTIONS(761), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(761), - [anon_sym_EQ_EQ2] = ACTIONS(761), - [anon_sym_BANG_EQ2] = ACTIONS(761), - [anon_sym_LT2] = ACTIONS(759), - [anon_sym_LT_EQ2] = ACTIONS(761), - [anon_sym_GT_EQ2] = ACTIONS(761), - [anon_sym_EQ_TILDE2] = ACTIONS(761), - [anon_sym_BANG_TILDE2] = ACTIONS(761), - [anon_sym_like2] = ACTIONS(761), - [anon_sym_not_DASHlike2] = ACTIONS(761), - [anon_sym_LPAREN2] = ACTIONS(761), - [anon_sym_STAR_STAR2] = ACTIONS(761), - [anon_sym_PLUS_PLUS2] = ACTIONS(761), - [anon_sym_SLASH2] = ACTIONS(759), - [anon_sym_mod2] = ACTIONS(761), - [anon_sym_SLASH_SLASH2] = ACTIONS(761), - [anon_sym_PLUS2] = ACTIONS(759), - [anon_sym_bit_DASHshl2] = ACTIONS(761), - [anon_sym_bit_DASHshr2] = ACTIONS(761), - [anon_sym_bit_DASHand2] = ACTIONS(761), - [anon_sym_bit_DASHxor2] = ACTIONS(761), - [anon_sym_bit_DASHor2] = ACTIONS(761), - [anon_sym_DOT_DOT2] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(761), - [aux_sym__immediate_decimal_token1] = ACTIONS(1830), - [aux_sym__immediate_decimal_token5] = ACTIONS(1832), - [sym_filesize_unit] = ACTIONS(759), - [sym_duration_unit] = ACTIONS(761), - [anon_sym_err_GT] = ACTIONS(759), - [anon_sym_out_GT] = ACTIONS(759), - [anon_sym_e_GT] = ACTIONS(759), - [anon_sym_o_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT] = ACTIONS(759), - [anon_sym_err_GT_GT] = ACTIONS(761), - [anon_sym_out_GT_GT] = ACTIONS(761), - [anon_sym_e_GT_GT] = ACTIONS(761), - [anon_sym_o_GT_GT] = ACTIONS(761), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(761), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(761), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(761), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(761), - [sym__unquoted_pattern] = ACTIONS(759), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(472)] = { - [sym_comment] = STATE(472), - [anon_sym_if] = ACTIONS(1557), - [anon_sym_in] = ACTIONS(1557), - [sym__newline] = ACTIONS(1557), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_PIPE] = ACTIONS(1557), - [anon_sym_err_GT_PIPE] = ACTIONS(1557), - [anon_sym_out_GT_PIPE] = ACTIONS(1557), - [anon_sym_e_GT_PIPE] = ACTIONS(1557), - [anon_sym_o_GT_PIPE] = ACTIONS(1557), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), - [anon_sym_RPAREN] = ACTIONS(1557), - [anon_sym_GT2] = ACTIONS(1555), - [anon_sym_DASH2] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1557), - [anon_sym_RBRACE] = ACTIONS(1557), - [anon_sym_EQ_GT] = ACTIONS(1557), - [anon_sym_STAR2] = ACTIONS(1555), - [anon_sym_and2] = ACTIONS(1557), - [anon_sym_xor2] = ACTIONS(1557), - [anon_sym_or2] = ACTIONS(1557), - [anon_sym_not_DASHin2] = ACTIONS(1557), - [anon_sym_has2] = ACTIONS(1557), - [anon_sym_not_DASHhas2] = ACTIONS(1557), - [anon_sym_starts_DASHwith2] = ACTIONS(1557), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1557), - [anon_sym_ends_DASHwith2] = ACTIONS(1557), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1557), - [anon_sym_EQ_EQ2] = ACTIONS(1557), - [anon_sym_BANG_EQ2] = ACTIONS(1557), - [anon_sym_LT2] = ACTIONS(1555), - [anon_sym_LT_EQ2] = ACTIONS(1557), - [anon_sym_GT_EQ2] = ACTIONS(1557), - [anon_sym_EQ_TILDE2] = ACTIONS(1557), - [anon_sym_BANG_TILDE2] = ACTIONS(1557), - [anon_sym_like2] = ACTIONS(1557), - [anon_sym_not_DASHlike2] = ACTIONS(1557), - [anon_sym_STAR_STAR2] = ACTIONS(1557), - [anon_sym_PLUS_PLUS2] = ACTIONS(1557), - [anon_sym_SLASH2] = ACTIONS(1555), - [anon_sym_mod2] = ACTIONS(1557), - [anon_sym_SLASH_SLASH2] = ACTIONS(1557), - [anon_sym_PLUS2] = ACTIONS(1555), - [anon_sym_bit_DASHshl2] = ACTIONS(1557), - [anon_sym_bit_DASHshr2] = ACTIONS(1557), - [anon_sym_bit_DASHand2] = ACTIONS(1557), - [anon_sym_bit_DASHxor2] = ACTIONS(1557), - [anon_sym_bit_DASHor2] = ACTIONS(1557), - [anon_sym_DOT_DOT2] = ACTIONS(1555), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1557), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1557), - [anon_sym_COLON2] = ACTIONS(1557), - [anon_sym_DOT2] = ACTIONS(1555), - [anon_sym_err_GT] = ACTIONS(1555), - [anon_sym_out_GT] = ACTIONS(1555), - [anon_sym_e_GT] = ACTIONS(1555), - [anon_sym_o_GT] = ACTIONS(1555), - [anon_sym_err_PLUSout_GT] = ACTIONS(1555), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1555), - [anon_sym_o_PLUSe_GT] = ACTIONS(1555), - [anon_sym_e_PLUSo_GT] = ACTIONS(1555), - [anon_sym_err_GT_GT] = ACTIONS(1557), - [anon_sym_out_GT_GT] = ACTIONS(1557), - [anon_sym_e_GT_GT] = ACTIONS(1557), - [anon_sym_o_GT_GT] = ACTIONS(1557), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(473)] = { - [sym_cmd_identifier] = STATE(4664), - [sym__match_pattern_record_body] = STATE(5328), - [sym_expr_parenthesized] = STATE(5503), - [sym__spread_parenthesized] = STATE(4962), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(4373), - [sym_val_number] = STATE(5503), - [sym__val_number_decimal] = STATE(2000), - [sym__val_number] = STATE(726), - [sym_val_string] = STATE(5503), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_interpolated] = STATE(5503), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym__spread_record] = STATE(4962), - [sym_record_entry] = STATE(4760), - [sym__record_key] = STATE(5380), - [sym_comment] = STATE(473), - [aux_sym__types_body_repeat1] = STATE(496), - [aux_sym__match_pattern_record_body_repeat1] = STATE(739), + [aux_sym__types_body_repeat1] = STATE(505), + [aux_sym_record_body_repeat1] = STATE(719), [anon_sym_export] = ACTIONS(145), [anon_sym_alias] = ACTIONS(139), [anon_sym_let] = ACTIONS(139), @@ -86313,60 +86036,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(139), [anon_sym_match] = ACTIONS(139), [anon_sym_in] = ACTIONS(145), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token3] = ACTIONS(1750), - [aux_sym_cmd_identifier_token4] = ACTIONS(1750), - [aux_sym_cmd_identifier_token5] = ACTIONS(1750), - [sym__newline] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1746), + [aux_sym_cmd_identifier_token3] = ACTIONS(1748), + [aux_sym_cmd_identifier_token4] = ACTIONS(1748), + [aux_sym_cmd_identifier_token5] = ACTIONS(1748), + [sym__newline] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_DOLLAR] = ACTIONS(1754), [anon_sym_DASH2] = ACTIONS(177), - [anon_sym_RBRACE] = ACTIONS(1834), + [anon_sym_RBRACE] = ACTIONS(1818), [anon_sym_PLUS2] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1760), - [aux_sym__val_number_decimal_token2] = ACTIONS(1762), - [aux_sym__val_number_decimal_token3] = ACTIONS(1764), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1768), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1772), - }, - [STATE(474)] = { - [sym_cmd_identifier] = STATE(4664), - [sym_expr_parenthesized] = STATE(5503), - [sym__spread_parenthesized] = STATE(4962), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(5503), - [sym_val_number] = STATE(5503), - [sym__val_number_decimal] = STATE(2000), - [sym__val_number] = STATE(726), - [sym_val_string] = STATE(5503), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_interpolated] = STATE(5503), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym__spread_record] = STATE(4962), - [sym_record_body] = STATE(5483), - [sym_record_entry] = STATE(4691), - [sym__record_key] = STATE(5380), - [sym_comment] = STATE(474), - [aux_sym__types_body_repeat1] = STATE(503), - [aux_sym_record_body_repeat1] = STATE(728), + [sym_raw_string_begin] = ACTIONS(1770), + }, + [471] = { + [sym_cmd_identifier] = STATE(4572), + [sym__match_pattern_record_body] = STATE(5528), + [sym_expr_parenthesized] = STATE(5187), + [sym__spread_parenthesized] = STATE(4951), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(4655), + [sym_val_number] = STATE(5187), + [sym__val_number_decimal] = STATE(2013), + [sym__val_number] = STATE(705), + [sym_val_string] = STATE(5187), + [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(5187), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym__spread_record] = STATE(4951), + [sym_record_entry] = STATE(4749), + [sym__record_key] = STATE(5305), + [sym_comment] = STATE(471), + [aux_sym__types_body_repeat1] = STATE(518), + [aux_sym__match_pattern_record_body_repeat1] = STATE(723), [anon_sym_export] = ACTIONS(145), [anon_sym_alias] = ACTIONS(139), [anon_sym_let] = ACTIONS(139), @@ -86388,60 +86111,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(139), [anon_sym_match] = ACTIONS(139), [anon_sym_in] = ACTIONS(145), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token3] = ACTIONS(1750), - [aux_sym_cmd_identifier_token4] = ACTIONS(1750), - [aux_sym_cmd_identifier_token5] = ACTIONS(1750), - [sym__newline] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1746), + [aux_sym_cmd_identifier_token3] = ACTIONS(1748), + [aux_sym_cmd_identifier_token4] = ACTIONS(1748), + [aux_sym_cmd_identifier_token5] = ACTIONS(1748), + [sym__newline] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_DOLLAR] = ACTIONS(1778), [anon_sym_DASH2] = ACTIONS(177), - [anon_sym_RBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(1820), [anon_sym_PLUS2] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1760), - [aux_sym__val_number_decimal_token2] = ACTIONS(1762), - [aux_sym__val_number_decimal_token3] = ACTIONS(1764), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1768), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1772), - }, - [STATE(475)] = { - [sym_cmd_identifier] = STATE(4664), - [sym_expr_parenthesized] = STATE(5503), - [sym__spread_parenthesized] = STATE(4962), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(5503), - [sym_val_number] = STATE(5503), - [sym__val_number_decimal] = STATE(2000), - [sym__val_number] = STATE(726), - [sym_val_string] = STATE(5503), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_interpolated] = STATE(5503), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym__spread_record] = STATE(4962), - [sym_record_body] = STATE(5240), - [sym_record_entry] = STATE(4691), - [sym__record_key] = STATE(5380), - [sym_comment] = STATE(475), - [aux_sym__types_body_repeat1] = STATE(503), - [aux_sym_record_body_repeat1] = STATE(728), + [sym_raw_string_begin] = ACTIONS(1770), + }, + [472] = { + [sym_comment] = STATE(472), + [ts_builtin_sym_end] = ACTIONS(1736), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1824), + [anon_sym_in] = ACTIONS(1736), + [sym__newline] = ACTIONS(1736), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_PIPE] = ACTIONS(1736), + [anon_sym_err_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_GT_PIPE] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), + [anon_sym_GT2] = ACTIONS(1610), + [anon_sym_DASH2] = ACTIONS(1610), + [anon_sym_STAR2] = ACTIONS(1610), + [anon_sym_and2] = ACTIONS(1736), + [anon_sym_xor2] = ACTIONS(1736), + [anon_sym_or2] = ACTIONS(1736), + [anon_sym_not_DASHin2] = ACTIONS(1736), + [anon_sym_has2] = ACTIONS(1736), + [anon_sym_not_DASHhas2] = ACTIONS(1736), + [anon_sym_starts_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), + [anon_sym_ends_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), + [anon_sym_EQ_EQ2] = ACTIONS(1736), + [anon_sym_BANG_EQ2] = ACTIONS(1736), + [anon_sym_LT2] = ACTIONS(1610), + [anon_sym_LT_EQ2] = ACTIONS(1736), + [anon_sym_GT_EQ2] = ACTIONS(1736), + [anon_sym_EQ_TILDE2] = ACTIONS(1736), + [anon_sym_BANG_TILDE2] = ACTIONS(1736), + [anon_sym_like2] = ACTIONS(1736), + [anon_sym_not_DASHlike2] = ACTIONS(1736), + [anon_sym_STAR_STAR2] = ACTIONS(1736), + [anon_sym_PLUS_PLUS2] = ACTIONS(1610), + [anon_sym_SLASH2] = ACTIONS(1610), + [anon_sym_mod2] = ACTIONS(1736), + [anon_sym_SLASH_SLASH2] = ACTIONS(1736), + [anon_sym_PLUS2] = ACTIONS(1610), + [anon_sym_bit_DASHshl2] = ACTIONS(1736), + [anon_sym_bit_DASHshr2] = ACTIONS(1736), + [anon_sym_bit_DASHand2] = ACTIONS(1736), + [anon_sym_bit_DASHxor2] = ACTIONS(1736), + [anon_sym_bit_DASHor2] = ACTIONS(1736), + [anon_sym_DOT_DOT2] = ACTIONS(1826), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), + [anon_sym_err_GT] = ACTIONS(1610), + [anon_sym_out_GT] = ACTIONS(1610), + [anon_sym_e_GT] = ACTIONS(1610), + [anon_sym_o_GT] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT] = ACTIONS(1610), + [anon_sym_err_GT_GT] = ACTIONS(1736), + [anon_sym_out_GT_GT] = ACTIONS(1736), + [anon_sym_e_GT_GT] = ACTIONS(1736), + [anon_sym_o_GT_GT] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), + [anon_sym_POUND] = ACTIONS(3), + }, + [473] = { + [sym__expr_parenthesized_immediate] = STATE(5102), + [sym_comment] = STATE(473), + [anon_sym_in] = ACTIONS(910), + [sym__newline] = ACTIONS(910), + [anon_sym_SEMI] = ACTIONS(910), + [anon_sym_PIPE] = ACTIONS(910), + [anon_sym_err_GT_PIPE] = ACTIONS(910), + [anon_sym_out_GT_PIPE] = ACTIONS(910), + [anon_sym_e_GT_PIPE] = ACTIONS(910), + [anon_sym_o_GT_PIPE] = ACTIONS(910), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(910), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(910), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(910), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(910), + [anon_sym_RPAREN] = ACTIONS(910), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(910), + [anon_sym_RBRACE] = ACTIONS(910), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(910), + [anon_sym_xor2] = ACTIONS(910), + [anon_sym_or2] = ACTIONS(910), + [anon_sym_not_DASHin2] = ACTIONS(910), + [anon_sym_has2] = ACTIONS(910), + [anon_sym_not_DASHhas2] = ACTIONS(910), + [anon_sym_starts_DASHwith2] = ACTIONS(910), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(910), + [anon_sym_ends_DASHwith2] = ACTIONS(910), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(910), + [anon_sym_EQ_EQ2] = ACTIONS(910), + [anon_sym_BANG_EQ2] = ACTIONS(910), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(910), + [anon_sym_GT_EQ2] = ACTIONS(910), + [anon_sym_EQ_TILDE2] = ACTIONS(910), + [anon_sym_BANG_TILDE2] = ACTIONS(910), + [anon_sym_like2] = ACTIONS(910), + [anon_sym_not_DASHlike2] = ACTIONS(910), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(910), + [anon_sym_PLUS_PLUS2] = ACTIONS(910), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(910), + [anon_sym_SLASH_SLASH2] = ACTIONS(910), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(910), + [anon_sym_bit_DASHshr2] = ACTIONS(910), + [anon_sym_bit_DASHand2] = ACTIONS(910), + [anon_sym_bit_DASHxor2] = ACTIONS(910), + [anon_sym_bit_DASHor2] = ACTIONS(910), + [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(811), + [anon_sym_out_GT] = ACTIONS(811), + [anon_sym_e_GT] = ACTIONS(811), + [anon_sym_o_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT] = ACTIONS(811), + [anon_sym_err_GT_GT] = ACTIONS(910), + [anon_sym_out_GT_GT] = ACTIONS(910), + [anon_sym_e_GT_GT] = ACTIONS(910), + [anon_sym_o_GT_GT] = ACTIONS(910), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(910), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(910), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(910), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(910), + [sym__unquoted_pattern] = ACTIONS(1840), + [anon_sym_POUND] = ACTIONS(3), + }, + [474] = { + [sym_cmd_identifier] = STATE(4572), + [sym_expr_parenthesized] = STATE(5187), + [sym__spread_parenthesized] = STATE(4951), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(5187), + [sym_val_number] = STATE(5187), + [sym__val_number_decimal] = STATE(2013), + [sym__val_number] = STATE(705), + [sym_val_string] = STATE(5187), + [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(5187), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym__spread_record] = STATE(4951), + [sym_record_body] = STATE(5244), + [sym_record_entry] = STATE(4887), + [sym__record_key] = STATE(5305), + [sym_comment] = STATE(474), + [aux_sym__types_body_repeat1] = STATE(505), + [aux_sym_record_body_repeat1] = STATE(719), [anon_sym_export] = ACTIONS(145), [anon_sym_alias] = ACTIONS(139), [anon_sym_let] = ACTIONS(139), @@ -86463,60 +86336,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(139), [anon_sym_match] = ACTIONS(139), [anon_sym_in] = ACTIONS(145), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token3] = ACTIONS(1750), - [aux_sym_cmd_identifier_token4] = ACTIONS(1750), - [aux_sym_cmd_identifier_token5] = ACTIONS(1750), - [sym__newline] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1746), + [aux_sym_cmd_identifier_token3] = ACTIONS(1748), + [aux_sym_cmd_identifier_token4] = ACTIONS(1748), + [aux_sym_cmd_identifier_token5] = ACTIONS(1748), + [sym__newline] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_DOLLAR] = ACTIONS(1754), [anon_sym_DASH2] = ACTIONS(177), - [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1842), [anon_sym_PLUS2] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1760), - [aux_sym__val_number_decimal_token2] = ACTIONS(1762), - [aux_sym__val_number_decimal_token3] = ACTIONS(1764), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1768), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1772), - }, - [STATE(476)] = { - [sym_cmd_identifier] = STATE(4664), - [sym_expr_parenthesized] = STATE(5503), - [sym__spread_parenthesized] = STATE(4962), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(5503), - [sym_val_number] = STATE(5503), - [sym__val_number_decimal] = STATE(2000), - [sym__val_number] = STATE(726), - [sym_val_string] = STATE(5503), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_interpolated] = STATE(5503), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym__spread_record] = STATE(4962), - [sym_record_body] = STATE(5354), - [sym_record_entry] = STATE(4691), - [sym__record_key] = STATE(5380), - [sym_comment] = STATE(476), - [aux_sym__types_body_repeat1] = STATE(503), - [aux_sym_record_body_repeat1] = STATE(728), + [sym_raw_string_begin] = ACTIONS(1770), + }, + [475] = { + [sym_cmd_identifier] = STATE(4572), + [sym_expr_parenthesized] = STATE(5187), + [sym__spread_parenthesized] = STATE(4951), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(5187), + [sym_val_number] = STATE(5187), + [sym__val_number_decimal] = STATE(2013), + [sym__val_number] = STATE(705), + [sym_val_string] = STATE(5187), + [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(5187), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym__spread_record] = STATE(4951), + [sym_record_body] = STATE(5252), + [sym_record_entry] = STATE(4887), + [sym__record_key] = STATE(5305), + [sym_comment] = STATE(475), + [aux_sym__types_body_repeat1] = STATE(505), + [aux_sym_record_body_repeat1] = STATE(719), [anon_sym_export] = ACTIONS(145), [anon_sym_alias] = ACTIONS(139), [anon_sym_let] = ACTIONS(139), @@ -86538,60 +86411,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(139), [anon_sym_match] = ACTIONS(139), [anon_sym_in] = ACTIONS(145), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token3] = ACTIONS(1750), - [aux_sym_cmd_identifier_token4] = ACTIONS(1750), - [aux_sym_cmd_identifier_token5] = ACTIONS(1750), - [sym__newline] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1746), + [aux_sym_cmd_identifier_token3] = ACTIONS(1748), + [aux_sym_cmd_identifier_token4] = ACTIONS(1748), + [aux_sym_cmd_identifier_token5] = ACTIONS(1748), + [sym__newline] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_DOLLAR] = ACTIONS(1754), [anon_sym_DASH2] = ACTIONS(177), - [anon_sym_RBRACE] = ACTIONS(1840), + [anon_sym_RBRACE] = ACTIONS(1844), [anon_sym_PLUS2] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1760), - [aux_sym__val_number_decimal_token2] = ACTIONS(1762), - [aux_sym__val_number_decimal_token3] = ACTIONS(1764), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1768), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1772), - }, - [STATE(477)] = { - [sym_cmd_identifier] = STATE(4664), - [sym_expr_parenthesized] = STATE(5503), - [sym__spread_parenthesized] = STATE(4962), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(5503), - [sym_val_number] = STATE(5503), - [sym__val_number_decimal] = STATE(2000), - [sym__val_number] = STATE(726), - [sym_val_string] = STATE(5503), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_interpolated] = STATE(5503), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym__spread_record] = STATE(4962), - [sym_record_body] = STATE(5129), - [sym_record_entry] = STATE(4691), - [sym__record_key] = STATE(5380), - [sym_comment] = STATE(477), - [aux_sym__types_body_repeat1] = STATE(503), - [aux_sym_record_body_repeat1] = STATE(728), + [sym_raw_string_begin] = ACTIONS(1770), + }, + [476] = { + [sym_cmd_identifier] = STATE(4572), + [sym_expr_parenthesized] = STATE(5187), + [sym__spread_parenthesized] = STATE(4951), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(5187), + [sym_val_number] = STATE(5187), + [sym__val_number_decimal] = STATE(2013), + [sym__val_number] = STATE(705), + [sym_val_string] = STATE(5187), + [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(5187), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym__spread_record] = STATE(4951), + [sym_record_body] = STATE(5228), + [sym_record_entry] = STATE(4887), + [sym__record_key] = STATE(5305), + [sym_comment] = STATE(476), + [aux_sym__types_body_repeat1] = STATE(505), + [aux_sym_record_body_repeat1] = STATE(719), [anon_sym_export] = ACTIONS(145), [anon_sym_alias] = ACTIONS(139), [anon_sym_let] = ACTIONS(139), @@ -86613,60 +86486,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(139), [anon_sym_match] = ACTIONS(139), [anon_sym_in] = ACTIONS(145), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token3] = ACTIONS(1750), - [aux_sym_cmd_identifier_token4] = ACTIONS(1750), - [aux_sym_cmd_identifier_token5] = ACTIONS(1750), - [sym__newline] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1746), + [aux_sym_cmd_identifier_token3] = ACTIONS(1748), + [aux_sym_cmd_identifier_token4] = ACTIONS(1748), + [aux_sym_cmd_identifier_token5] = ACTIONS(1748), + [sym__newline] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_DOLLAR] = ACTIONS(1754), [anon_sym_DASH2] = ACTIONS(177), - [anon_sym_RBRACE] = ACTIONS(1842), + [anon_sym_RBRACE] = ACTIONS(1846), [anon_sym_PLUS2] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1760), - [aux_sym__val_number_decimal_token2] = ACTIONS(1762), - [aux_sym__val_number_decimal_token3] = ACTIONS(1764), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1768), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1772), - }, - [STATE(478)] = { - [sym_cmd_identifier] = STATE(4664), - [sym_expr_parenthesized] = STATE(5503), - [sym__spread_parenthesized] = STATE(4962), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(5503), - [sym_val_number] = STATE(5503), - [sym__val_number_decimal] = STATE(2000), - [sym__val_number] = STATE(726), - [sym_val_string] = STATE(5503), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_interpolated] = STATE(5503), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym__spread_record] = STATE(4962), - [sym_record_body] = STATE(5190), - [sym_record_entry] = STATE(4691), - [sym__record_key] = STATE(5380), - [sym_comment] = STATE(478), - [aux_sym__types_body_repeat1] = STATE(503), - [aux_sym_record_body_repeat1] = STATE(728), + [sym_raw_string_begin] = ACTIONS(1770), + }, + [477] = { + [sym_cmd_identifier] = STATE(4572), + [sym_expr_parenthesized] = STATE(5187), + [sym__spread_parenthesized] = STATE(4951), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(5187), + [sym_val_number] = STATE(5187), + [sym__val_number_decimal] = STATE(2013), + [sym__val_number] = STATE(705), + [sym_val_string] = STATE(5187), + [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(5187), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym__spread_record] = STATE(4951), + [sym_record_body] = STATE(5139), + [sym_record_entry] = STATE(4887), + [sym__record_key] = STATE(5305), + [sym_comment] = STATE(477), + [aux_sym__types_body_repeat1] = STATE(505), + [aux_sym_record_body_repeat1] = STATE(719), [anon_sym_export] = ACTIONS(145), [anon_sym_alias] = ACTIONS(139), [anon_sym_let] = ACTIONS(139), @@ -86688,801 +86561,876 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(139), [anon_sym_match] = ACTIONS(139), [anon_sym_in] = ACTIONS(145), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token3] = ACTIONS(1750), - [aux_sym_cmd_identifier_token4] = ACTIONS(1750), - [aux_sym_cmd_identifier_token5] = ACTIONS(1750), - [sym__newline] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1746), + [aux_sym_cmd_identifier_token3] = ACTIONS(1748), + [aux_sym_cmd_identifier_token4] = ACTIONS(1748), + [aux_sym_cmd_identifier_token5] = ACTIONS(1748), + [sym__newline] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_DOLLAR] = ACTIONS(1754), [anon_sym_DASH2] = ACTIONS(177), - [anon_sym_RBRACE] = ACTIONS(1844), + [anon_sym_RBRACE] = ACTIONS(1848), [anon_sym_PLUS2] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1760), - [aux_sym__val_number_decimal_token2] = ACTIONS(1762), - [aux_sym__val_number_decimal_token3] = ACTIONS(1764), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1768), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1772), + [sym_raw_string_begin] = ACTIONS(1770), }, - [STATE(479)] = { + [478] = { + [sym_comment] = STATE(478), + [anon_sym_if] = 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(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(1536), + [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), + }, + [479] = { [sym_comment] = STATE(479), - [anon_sym_if] = ACTIONS(1563), - [anon_sym_in] = ACTIONS(1563), - [sym__newline] = ACTIONS(1563), - [anon_sym_SEMI] = ACTIONS(1563), - [anon_sym_PIPE] = ACTIONS(1563), - [anon_sym_err_GT_PIPE] = ACTIONS(1563), - [anon_sym_out_GT_PIPE] = ACTIONS(1563), - [anon_sym_e_GT_PIPE] = ACTIONS(1563), - [anon_sym_o_GT_PIPE] = ACTIONS(1563), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1563), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1563), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1563), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1563), - [anon_sym_RPAREN] = ACTIONS(1563), - [anon_sym_GT2] = ACTIONS(1561), - [anon_sym_DASH2] = ACTIONS(1563), - [anon_sym_LBRACE] = ACTIONS(1563), - [anon_sym_RBRACE] = ACTIONS(1563), - [anon_sym_EQ_GT] = ACTIONS(1563), - [anon_sym_STAR2] = ACTIONS(1561), - [anon_sym_and2] = ACTIONS(1563), - [anon_sym_xor2] = ACTIONS(1563), - [anon_sym_or2] = ACTIONS(1563), - [anon_sym_not_DASHin2] = ACTIONS(1563), - [anon_sym_has2] = ACTIONS(1563), - [anon_sym_not_DASHhas2] = ACTIONS(1563), - [anon_sym_starts_DASHwith2] = ACTIONS(1563), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1563), - [anon_sym_ends_DASHwith2] = ACTIONS(1563), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1563), - [anon_sym_EQ_EQ2] = ACTIONS(1563), - [anon_sym_BANG_EQ2] = ACTIONS(1563), - [anon_sym_LT2] = ACTIONS(1561), - [anon_sym_LT_EQ2] = ACTIONS(1563), - [anon_sym_GT_EQ2] = ACTIONS(1563), - [anon_sym_EQ_TILDE2] = ACTIONS(1563), - [anon_sym_BANG_TILDE2] = ACTIONS(1563), - [anon_sym_like2] = ACTIONS(1563), - [anon_sym_not_DASHlike2] = ACTIONS(1563), - [anon_sym_STAR_STAR2] = ACTIONS(1563), - [anon_sym_PLUS_PLUS2] = ACTIONS(1563), - [anon_sym_SLASH2] = ACTIONS(1561), - [anon_sym_mod2] = ACTIONS(1563), - [anon_sym_SLASH_SLASH2] = ACTIONS(1563), - [anon_sym_PLUS2] = ACTIONS(1561), - [anon_sym_bit_DASHshl2] = ACTIONS(1563), - [anon_sym_bit_DASHshr2] = ACTIONS(1563), - [anon_sym_bit_DASHand2] = ACTIONS(1563), - [anon_sym_bit_DASHxor2] = ACTIONS(1563), - [anon_sym_bit_DASHor2] = ACTIONS(1563), - [anon_sym_DOT_DOT2] = ACTIONS(1561), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1563), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1563), - [anon_sym_COLON2] = ACTIONS(1563), - [anon_sym_DOT2] = ACTIONS(1561), - [anon_sym_err_GT] = ACTIONS(1561), - [anon_sym_out_GT] = ACTIONS(1561), - [anon_sym_e_GT] = ACTIONS(1561), - [anon_sym_o_GT] = ACTIONS(1561), - [anon_sym_err_PLUSout_GT] = ACTIONS(1561), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1561), - [anon_sym_o_PLUSe_GT] = ACTIONS(1561), - [anon_sym_e_PLUSo_GT] = ACTIONS(1561), - [anon_sym_err_GT_GT] = ACTIONS(1563), - [anon_sym_out_GT_GT] = ACTIONS(1563), - [anon_sym_e_GT_GT] = ACTIONS(1563), - [anon_sym_o_GT_GT] = ACTIONS(1563), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1563), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1563), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1563), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1563), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(480)] = { + [ts_builtin_sym_end] = ACTIONS(757), + [anon_sym_in] = ACTIONS(757), + [sym__newline] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(757), + [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_err_GT_PIPE] = ACTIONS(757), + [anon_sym_out_GT_PIPE] = ACTIONS(757), + [anon_sym_e_GT_PIPE] = ACTIONS(757), + [anon_sym_o_GT_PIPE] = ACTIONS(757), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(757), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(757), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(757), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(757), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(757), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(757), + [anon_sym_xor2] = ACTIONS(757), + [anon_sym_or2] = ACTIONS(757), + [anon_sym_not_DASHin2] = ACTIONS(757), + [anon_sym_has2] = ACTIONS(757), + [anon_sym_not_DASHhas2] = ACTIONS(757), + [anon_sym_starts_DASHwith2] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(757), + [anon_sym_ends_DASHwith2] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(757), + [anon_sym_EQ_EQ2] = ACTIONS(757), + [anon_sym_BANG_EQ2] = ACTIONS(757), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(757), + [anon_sym_GT_EQ2] = ACTIONS(757), + [anon_sym_EQ_TILDE2] = ACTIONS(757), + [anon_sym_BANG_TILDE2] = ACTIONS(757), + [anon_sym_like2] = ACTIONS(757), + [anon_sym_not_DASHlike2] = ACTIONS(757), + [anon_sym_LPAREN2] = ACTIONS(757), + [anon_sym_STAR_STAR2] = ACTIONS(757), + [anon_sym_PLUS_PLUS2] = ACTIONS(757), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(757), + [anon_sym_SLASH_SLASH2] = ACTIONS(757), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(757), + [anon_sym_bit_DASHshr2] = ACTIONS(757), + [anon_sym_bit_DASHand2] = ACTIONS(757), + [anon_sym_bit_DASHxor2] = ACTIONS(757), + [anon_sym_bit_DASHor2] = ACTIONS(757), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token1] = ACTIONS(1850), + [aux_sym__immediate_decimal_token5] = ACTIONS(1852), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(757), + [anon_sym_out_GT_GT] = ACTIONS(757), + [anon_sym_e_GT_GT] = ACTIONS(757), + [anon_sym_o_GT_GT] = ACTIONS(757), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(757), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(757), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(757), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(757), + [sym__unquoted_pattern] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(3), + }, + [480] = { [sym_comment] = STATE(480), - [ts_builtin_sym_end] = ACTIONS(753), - [anon_sym_in] = ACTIONS(753), - [sym__newline] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(753), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_err_GT_PIPE] = ACTIONS(753), - [anon_sym_out_GT_PIPE] = ACTIONS(753), - [anon_sym_e_GT_PIPE] = ACTIONS(753), - [anon_sym_o_GT_PIPE] = ACTIONS(753), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(753), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(753), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(753), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(753), - [anon_sym_GT2] = ACTIONS(751), - [anon_sym_DASH2] = ACTIONS(753), - [anon_sym_STAR2] = ACTIONS(751), - [anon_sym_and2] = ACTIONS(753), - [anon_sym_xor2] = ACTIONS(753), - [anon_sym_or2] = ACTIONS(753), - [anon_sym_not_DASHin2] = ACTIONS(753), - [anon_sym_has2] = ACTIONS(753), - [anon_sym_not_DASHhas2] = ACTIONS(753), - [anon_sym_starts_DASHwith2] = ACTIONS(753), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(753), - [anon_sym_ends_DASHwith2] = ACTIONS(753), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(753), - [anon_sym_EQ_EQ2] = ACTIONS(753), - [anon_sym_BANG_EQ2] = ACTIONS(753), - [anon_sym_LT2] = ACTIONS(751), - [anon_sym_LT_EQ2] = ACTIONS(753), - [anon_sym_GT_EQ2] = ACTIONS(753), - [anon_sym_EQ_TILDE2] = ACTIONS(753), - [anon_sym_BANG_TILDE2] = ACTIONS(753), - [anon_sym_like2] = ACTIONS(753), - [anon_sym_not_DASHlike2] = ACTIONS(753), - [anon_sym_LPAREN2] = ACTIONS(753), - [anon_sym_STAR_STAR2] = ACTIONS(753), - [anon_sym_PLUS_PLUS2] = ACTIONS(753), - [anon_sym_SLASH2] = ACTIONS(751), - [anon_sym_mod2] = ACTIONS(753), - [anon_sym_SLASH_SLASH2] = ACTIONS(753), - [anon_sym_PLUS2] = ACTIONS(751), - [anon_sym_bit_DASHshl2] = ACTIONS(753), - [anon_sym_bit_DASHshr2] = ACTIONS(753), - [anon_sym_bit_DASHand2] = ACTIONS(753), - [anon_sym_bit_DASHxor2] = ACTIONS(753), - [anon_sym_bit_DASHor2] = ACTIONS(753), - [anon_sym_DOT_DOT2] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(1846), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(753), - [aux_sym__immediate_decimal_token5] = ACTIONS(1848), - [sym_filesize_unit] = ACTIONS(751), - [sym_duration_unit] = ACTIONS(753), - [anon_sym_err_GT] = ACTIONS(751), - [anon_sym_out_GT] = ACTIONS(751), - [anon_sym_e_GT] = ACTIONS(751), - [anon_sym_o_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT] = ACTIONS(751), - [anon_sym_err_GT_GT] = ACTIONS(753), - [anon_sym_out_GT_GT] = ACTIONS(753), - [anon_sym_e_GT_GT] = ACTIONS(753), - [anon_sym_o_GT_GT] = ACTIONS(753), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(753), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(753), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(753), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(753), - [sym__unquoted_pattern] = ACTIONS(751), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(481)] = { + [anon_sym_EQ] = ACTIONS(1608), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1736), + [sym__newline] = ACTIONS(1736), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_PIPE] = ACTIONS(1736), + [anon_sym_err_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_GT_PIPE] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), + [anon_sym_GT2] = ACTIONS(1610), + [anon_sym_DASH2] = ACTIONS(1610), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_STAR2] = ACTIONS(1610), + [anon_sym_and2] = ACTIONS(1736), + [anon_sym_xor2] = ACTIONS(1736), + [anon_sym_or2] = ACTIONS(1736), + [anon_sym_not_DASHin2] = ACTIONS(1736), + [anon_sym_has2] = ACTIONS(1736), + [anon_sym_not_DASHhas2] = ACTIONS(1736), + [anon_sym_starts_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), + [anon_sym_ends_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), + [anon_sym_EQ_EQ2] = ACTIONS(1736), + [anon_sym_BANG_EQ2] = ACTIONS(1736), + [anon_sym_LT2] = ACTIONS(1610), + [anon_sym_LT_EQ2] = ACTIONS(1736), + [anon_sym_GT_EQ2] = ACTIONS(1736), + [anon_sym_EQ_TILDE2] = ACTIONS(1736), + [anon_sym_BANG_TILDE2] = ACTIONS(1736), + [anon_sym_like2] = ACTIONS(1736), + [anon_sym_not_DASHlike2] = ACTIONS(1736), + [anon_sym_STAR_STAR2] = ACTIONS(1736), + [anon_sym_PLUS_PLUS2] = ACTIONS(1610), + [anon_sym_SLASH2] = ACTIONS(1610), + [anon_sym_mod2] = ACTIONS(1736), + [anon_sym_SLASH_SLASH2] = ACTIONS(1736), + [anon_sym_PLUS2] = ACTIONS(1610), + [anon_sym_bit_DASHshl2] = ACTIONS(1736), + [anon_sym_bit_DASHshr2] = ACTIONS(1736), + [anon_sym_bit_DASHand2] = ACTIONS(1736), + [anon_sym_bit_DASHxor2] = ACTIONS(1736), + [anon_sym_bit_DASHor2] = ACTIONS(1736), + [anon_sym_DOT_DOT2] = ACTIONS(1614), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1616), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1616), + [anon_sym_err_GT] = ACTIONS(1610), + [anon_sym_out_GT] = ACTIONS(1610), + [anon_sym_e_GT] = ACTIONS(1610), + [anon_sym_o_GT] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT] = ACTIONS(1610), + [anon_sym_err_GT_GT] = ACTIONS(1736), + [anon_sym_out_GT_GT] = ACTIONS(1736), + [anon_sym_e_GT_GT] = ACTIONS(1736), + [anon_sym_o_GT_GT] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), + [anon_sym_POUND] = ACTIONS(3), + }, + [481] = { [sym_comment] = STATE(481), - [anon_sym_in] = ACTIONS(761), - [sym__newline] = ACTIONS(761), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_PIPE] = ACTIONS(761), - [anon_sym_err_GT_PIPE] = ACTIONS(761), - [anon_sym_out_GT_PIPE] = ACTIONS(761), - [anon_sym_e_GT_PIPE] = ACTIONS(761), - [anon_sym_o_GT_PIPE] = ACTIONS(761), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(761), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(761), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(761), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(761), - [anon_sym_RPAREN] = ACTIONS(761), - [anon_sym_GT2] = ACTIONS(759), - [anon_sym_DASH2] = ACTIONS(761), - [anon_sym_RBRACE] = ACTIONS(761), - [anon_sym_STAR2] = ACTIONS(759), - [anon_sym_and2] = ACTIONS(761), - [anon_sym_xor2] = ACTIONS(761), - [anon_sym_or2] = ACTIONS(761), - [anon_sym_not_DASHin2] = ACTIONS(761), - [anon_sym_has2] = ACTIONS(761), - [anon_sym_not_DASHhas2] = ACTIONS(761), - [anon_sym_starts_DASHwith2] = ACTIONS(761), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(761), - [anon_sym_ends_DASHwith2] = ACTIONS(761), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(761), - [anon_sym_EQ_EQ2] = ACTIONS(761), - [anon_sym_BANG_EQ2] = ACTIONS(761), - [anon_sym_LT2] = ACTIONS(759), - [anon_sym_LT_EQ2] = ACTIONS(761), - [anon_sym_GT_EQ2] = ACTIONS(761), - [anon_sym_EQ_TILDE2] = ACTIONS(761), - [anon_sym_BANG_TILDE2] = ACTIONS(761), - [anon_sym_like2] = ACTIONS(761), - [anon_sym_not_DASHlike2] = ACTIONS(761), - [anon_sym_LPAREN2] = ACTIONS(761), - [anon_sym_STAR_STAR2] = ACTIONS(761), - [anon_sym_PLUS_PLUS2] = ACTIONS(761), - [anon_sym_SLASH2] = ACTIONS(759), - [anon_sym_mod2] = ACTIONS(761), - [anon_sym_SLASH_SLASH2] = ACTIONS(761), - [anon_sym_PLUS2] = ACTIONS(759), - [anon_sym_bit_DASHshl2] = ACTIONS(761), - [anon_sym_bit_DASHshr2] = ACTIONS(761), - [anon_sym_bit_DASHand2] = ACTIONS(761), - [anon_sym_bit_DASHxor2] = ACTIONS(761), - [anon_sym_bit_DASHor2] = ACTIONS(761), - [anon_sym_DOT_DOT2] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(761), - [sym_filesize_unit] = ACTIONS(759), - [sym_duration_unit] = ACTIONS(761), - [anon_sym_err_GT] = ACTIONS(759), - [anon_sym_out_GT] = ACTIONS(759), - [anon_sym_e_GT] = ACTIONS(759), - [anon_sym_o_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT] = ACTIONS(759), - [anon_sym_err_GT_GT] = ACTIONS(761), - [anon_sym_out_GT_GT] = ACTIONS(761), - [anon_sym_e_GT_GT] = ACTIONS(761), - [anon_sym_o_GT_GT] = ACTIONS(761), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(761), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(761), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(761), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(761), - [sym__unquoted_pattern] = ACTIONS(759), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(482)] = { + [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(1854), + [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), + }, + [482] = { + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4957), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4868), + [sym_val_bool] = STATE(4386), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(3992), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4868), + [sym__val_number_decimal] = STATE(3716), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4868), + [sym_val_filesize] = STATE(4868), + [sym_val_binary] = STATE(4868), + [sym_val_string] = STATE(4868), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4868), + [sym__spread_list] = STATE(4958), + [sym_val_entry] = STATE(4681), + [sym_val_record] = STATE(4868), + [sym_val_table] = STATE(4868), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), [sym_comment] = STATE(482), - [anon_sym_if] = ACTIONS(1669), - [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_GT2] = ACTIONS(1671), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_EQ_GT] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1671), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_has2] = ACTIONS(1669), - [anon_sym_not_DASHhas2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1671), - [anon_sym_LT_EQ2] = ACTIONS(1669), - [anon_sym_GT_EQ2] = ACTIONS(1669), - [anon_sym_EQ_TILDE2] = ACTIONS(1669), - [anon_sym_BANG_TILDE2] = ACTIONS(1669), - [anon_sym_like2] = ACTIONS(1669), - [anon_sym_not_DASHlike2] = ACTIONS(1669), - [anon_sym_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1671), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1671), - [anon_sym_bit_DASHshl2] = ACTIONS(1669), - [anon_sym_bit_DASHshr2] = ACTIONS(1669), - [anon_sym_bit_DASHand2] = ACTIONS(1669), - [anon_sym_bit_DASHxor2] = ACTIONS(1669), - [anon_sym_bit_DASHor2] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1671), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [anon_sym_COLON2] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1671), - [anon_sym_out_GT] = ACTIONS(1671), - [anon_sym_e_GT] = ACTIONS(1671), - [anon_sym_o_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT] = ACTIONS(1671), - [anon_sym_err_GT_GT] = ACTIONS(1669), - [anon_sym_out_GT_GT] = ACTIONS(1669), - [anon_sym_e_GT_GT] = ACTIONS(1669), - [anon_sym_o_GT_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(483)] = { - [sym_comment] = STATE(483), - [anon_sym_in] = ACTIONS(793), - [sym__newline] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_err_GT_PIPE] = ACTIONS(793), - [anon_sym_out_GT_PIPE] = ACTIONS(793), - [anon_sym_e_GT_PIPE] = ACTIONS(793), - [anon_sym_o_GT_PIPE] = ACTIONS(793), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_GT2] = ACTIONS(791), - [anon_sym_DASH2] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_STAR2] = ACTIONS(791), - [anon_sym_and2] = ACTIONS(793), - [anon_sym_xor2] = ACTIONS(793), - [anon_sym_or2] = ACTIONS(793), - [anon_sym_not_DASHin2] = ACTIONS(793), - [anon_sym_has2] = ACTIONS(793), - [anon_sym_not_DASHhas2] = ACTIONS(793), - [anon_sym_starts_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), - [anon_sym_ends_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), - [anon_sym_EQ_EQ2] = ACTIONS(793), - [anon_sym_BANG_EQ2] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(791), - [anon_sym_LT_EQ2] = ACTIONS(793), - [anon_sym_GT_EQ2] = ACTIONS(793), - [anon_sym_EQ_TILDE2] = ACTIONS(793), - [anon_sym_BANG_TILDE2] = ACTIONS(793), - [anon_sym_like2] = ACTIONS(793), - [anon_sym_not_DASHlike2] = ACTIONS(793), - [anon_sym_LPAREN2] = ACTIONS(793), - [anon_sym_STAR_STAR2] = ACTIONS(793), - [anon_sym_PLUS_PLUS2] = ACTIONS(793), - [anon_sym_SLASH2] = ACTIONS(791), - [anon_sym_mod2] = ACTIONS(793), - [anon_sym_SLASH_SLASH2] = ACTIONS(793), - [anon_sym_PLUS2] = ACTIONS(791), - [anon_sym_bit_DASHshl2] = ACTIONS(793), - [anon_sym_bit_DASHshr2] = ACTIONS(793), - [anon_sym_bit_DASHand2] = ACTIONS(793), - [anon_sym_bit_DASHxor2] = ACTIONS(793), - [anon_sym_bit_DASHor2] = ACTIONS(793), - [anon_sym_DOT_DOT2] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(793), - [sym_filesize_unit] = ACTIONS(791), - [sym_duration_unit] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(791), - [anon_sym_out_GT] = ACTIONS(791), - [anon_sym_e_GT] = ACTIONS(791), - [anon_sym_o_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT] = ACTIONS(791), - [anon_sym_err_GT_GT] = ACTIONS(793), - [anon_sym_out_GT_GT] = ACTIONS(793), - [anon_sym_e_GT_GT] = ACTIONS(793), - [anon_sym_o_GT_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(793), - [sym__unquoted_pattern] = ACTIONS(791), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(484)] = { - [sym_expr_parenthesized] = STATE(4216), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4990), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4854), - [sym_val_bool] = STATE(4482), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4196), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4854), - [sym__val_number_decimal] = STATE(3713), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4854), - [sym_val_filesize] = STATE(4854), - [sym_val_binary] = STATE(4854), - [sym_val_string] = STATE(4854), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4854), - [sym__spread_list] = STATE(5037), - [sym_val_entry] = STATE(4867), - [sym_val_record] = STATE(4854), - [sym_val_table] = STATE(4854), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4529), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), - [sym_comment] = STATE(484), - [aux_sym__types_body_repeat1] = STATE(2185), - [aux_sym_list_body_repeat1] = STATE(535), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [sym__newline] = ACTIONS(1586), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1513), + [aux_sym__types_body_repeat1] = STATE(2212), + [aux_sym_list_body_repeat1] = STATE(552), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [sym__newline] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1510), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(485)] = { + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [483] = { + [sym_comment] = STATE(483), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [sym__newline] = ACTIONS(1667), + [anon_sym_SEMI] = ACTIONS(1667), + [anon_sym_PIPE] = ACTIONS(1667), + [anon_sym_err_GT_PIPE] = ACTIONS(1667), + [anon_sym_out_GT_PIPE] = ACTIONS(1667), + [anon_sym_e_GT_PIPE] = ACTIONS(1667), + [anon_sym_o_GT_PIPE] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1667), + [anon_sym_RPAREN] = ACTIONS(1667), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1667), + [anon_sym_EQ_GT] = ACTIONS(1667), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1667), + [anon_sym_xor2] = ACTIONS(1667), + [anon_sym_or2] = ACTIONS(1667), + [anon_sym_not_DASHin2] = ACTIONS(1667), + [anon_sym_has2] = ACTIONS(1667), + [anon_sym_not_DASHhas2] = ACTIONS(1667), + [anon_sym_starts_DASHwith2] = ACTIONS(1667), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1667), + [anon_sym_ends_DASHwith2] = ACTIONS(1667), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1667), + [anon_sym_EQ_EQ2] = ACTIONS(1667), + [anon_sym_BANG_EQ2] = ACTIONS(1667), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1667), + [anon_sym_GT_EQ2] = ACTIONS(1667), + [anon_sym_EQ_TILDE2] = ACTIONS(1667), + [anon_sym_BANG_TILDE2] = ACTIONS(1667), + [anon_sym_like2] = ACTIONS(1667), + [anon_sym_not_DASHlike2] = ACTIONS(1667), + [anon_sym_STAR_STAR2] = ACTIONS(1667), + [anon_sym_PLUS_PLUS2] = ACTIONS(1667), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1667), + [anon_sym_SLASH_SLASH2] = ACTIONS(1667), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1667), + [anon_sym_bit_DASHshr2] = ACTIONS(1667), + [anon_sym_bit_DASHand2] = ACTIONS(1667), + [anon_sym_bit_DASHxor2] = ACTIONS(1667), + [anon_sym_bit_DASHor2] = ACTIONS(1667), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1667), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1667), + [anon_sym_COLON2] = ACTIONS(1667), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(1667), + [anon_sym_out_GT_GT] = ACTIONS(1667), + [anon_sym_e_GT_GT] = ACTIONS(1667), + [anon_sym_o_GT_GT] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(3), + }, + [484] = { + [sym_comment] = STATE(484), + [anon_sym_if] = ACTIONS(1856), + [anon_sym_in] = ACTIONS(1856), + [sym__newline] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_err_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_GT_PIPE] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1856), + [anon_sym_RPAREN] = ACTIONS(1856), + [anon_sym_GT2] = ACTIONS(1858), + [anon_sym_DASH2] = ACTIONS(1856), + [anon_sym_LBRACE] = ACTIONS(1856), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_EQ_GT] = ACTIONS(1856), + [anon_sym_STAR2] = ACTIONS(1858), + [anon_sym_and2] = ACTIONS(1856), + [anon_sym_xor2] = ACTIONS(1856), + [anon_sym_or2] = ACTIONS(1856), + [anon_sym_not_DASHin2] = ACTIONS(1856), + [anon_sym_has2] = ACTIONS(1856), + [anon_sym_not_DASHhas2] = ACTIONS(1856), + [anon_sym_starts_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1856), + [anon_sym_ends_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1856), + [anon_sym_EQ_EQ2] = ACTIONS(1856), + [anon_sym_BANG_EQ2] = ACTIONS(1856), + [anon_sym_LT2] = ACTIONS(1858), + [anon_sym_LT_EQ2] = ACTIONS(1856), + [anon_sym_GT_EQ2] = ACTIONS(1856), + [anon_sym_EQ_TILDE2] = ACTIONS(1856), + [anon_sym_BANG_TILDE2] = ACTIONS(1856), + [anon_sym_like2] = ACTIONS(1856), + [anon_sym_not_DASHlike2] = ACTIONS(1856), + [anon_sym_STAR_STAR2] = ACTIONS(1856), + [anon_sym_PLUS_PLUS2] = ACTIONS(1856), + [anon_sym_SLASH2] = ACTIONS(1858), + [anon_sym_mod2] = ACTIONS(1856), + [anon_sym_SLASH_SLASH2] = ACTIONS(1856), + [anon_sym_PLUS2] = ACTIONS(1858), + [anon_sym_bit_DASHshl2] = ACTIONS(1856), + [anon_sym_bit_DASHshr2] = ACTIONS(1856), + [anon_sym_bit_DASHand2] = ACTIONS(1856), + [anon_sym_bit_DASHxor2] = ACTIONS(1856), + [anon_sym_bit_DASHor2] = ACTIONS(1856), + [anon_sym_DOT_DOT2] = ACTIONS(1858), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1856), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1856), + [anon_sym_COLON2] = ACTIONS(1856), + [anon_sym_err_GT] = ACTIONS(1858), + [anon_sym_out_GT] = ACTIONS(1858), + [anon_sym_e_GT] = ACTIONS(1858), + [anon_sym_o_GT] = ACTIONS(1858), + [anon_sym_err_PLUSout_GT] = ACTIONS(1858), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1858), + [anon_sym_o_PLUSe_GT] = ACTIONS(1858), + [anon_sym_e_PLUSo_GT] = ACTIONS(1858), + [anon_sym_err_GT_GT] = ACTIONS(1856), + [anon_sym_out_GT_GT] = ACTIONS(1856), + [anon_sym_e_GT_GT] = ACTIONS(1856), + [anon_sym_o_GT_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(3), + }, + [485] = { [sym_comment] = STATE(485), - [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(1738), - [sym__newline] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_err_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_GT_PIPE] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), - [anon_sym_GT2] = ACTIONS(1616), - [anon_sym_DASH2] = ACTIONS(1616), - [anon_sym_STAR2] = ACTIONS(1616), - [anon_sym_and2] = ACTIONS(1738), - [anon_sym_xor2] = ACTIONS(1738), - [anon_sym_or2] = ACTIONS(1738), - [anon_sym_not_DASHin2] = ACTIONS(1738), - [anon_sym_has2] = ACTIONS(1738), - [anon_sym_not_DASHhas2] = ACTIONS(1738), - [anon_sym_starts_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), - [anon_sym_ends_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), - [anon_sym_EQ_EQ2] = ACTIONS(1738), - [anon_sym_BANG_EQ2] = ACTIONS(1738), - [anon_sym_LT2] = ACTIONS(1616), - [anon_sym_LT_EQ2] = ACTIONS(1738), - [anon_sym_GT_EQ2] = ACTIONS(1738), - [anon_sym_EQ_TILDE2] = ACTIONS(1738), - [anon_sym_BANG_TILDE2] = ACTIONS(1738), - [anon_sym_like2] = ACTIONS(1738), - [anon_sym_not_DASHlike2] = ACTIONS(1738), - [anon_sym_STAR_STAR2] = ACTIONS(1738), - [anon_sym_PLUS_PLUS2] = ACTIONS(1616), - [anon_sym_SLASH2] = ACTIONS(1616), - [anon_sym_mod2] = ACTIONS(1738), - [anon_sym_SLASH_SLASH2] = ACTIONS(1738), - [anon_sym_PLUS2] = ACTIONS(1616), - [anon_sym_bit_DASHshl2] = ACTIONS(1738), - [anon_sym_bit_DASHshr2] = ACTIONS(1738), - [anon_sym_bit_DASHand2] = ACTIONS(1738), - [anon_sym_bit_DASHxor2] = ACTIONS(1738), - [anon_sym_bit_DASHor2] = ACTIONS(1738), - [anon_sym_DOT_DOT2] = ACTIONS(1620), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), - [anon_sym_err_GT] = ACTIONS(1616), - [anon_sym_out_GT] = ACTIONS(1616), - [anon_sym_e_GT] = ACTIONS(1616), - [anon_sym_o_GT] = ACTIONS(1616), - [anon_sym_err_PLUSout_GT] = ACTIONS(1616), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), - [anon_sym_o_PLUSe_GT] = ACTIONS(1616), - [anon_sym_e_PLUSo_GT] = ACTIONS(1616), - [anon_sym_err_GT_GT] = ACTIONS(1738), - [anon_sym_out_GT_GT] = ACTIONS(1738), - [anon_sym_e_GT_GT] = ACTIONS(1738), - [anon_sym_o_GT_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(486)] = { + [anon_sym_EQ] = ACTIONS(1860), + [anon_sym_PLUS_EQ] = ACTIONS(1862), + [anon_sym_DASH_EQ] = ACTIONS(1862), + [anon_sym_STAR_EQ] = ACTIONS(1862), + [anon_sym_SLASH_EQ] = ACTIONS(1862), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1862), + [anon_sym_in] = ACTIONS(1736), + [sym__newline] = ACTIONS(1736), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_PIPE] = ACTIONS(1736), + [anon_sym_err_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_GT_PIPE] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), + [anon_sym_GT2] = ACTIONS(1610), + [anon_sym_DASH2] = ACTIONS(1610), + [anon_sym_STAR2] = ACTIONS(1610), + [anon_sym_and2] = ACTIONS(1736), + [anon_sym_xor2] = ACTIONS(1736), + [anon_sym_or2] = ACTIONS(1736), + [anon_sym_not_DASHin2] = ACTIONS(1736), + [anon_sym_has2] = ACTIONS(1736), + [anon_sym_not_DASHhas2] = ACTIONS(1736), + [anon_sym_starts_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), + [anon_sym_ends_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), + [anon_sym_EQ_EQ2] = ACTIONS(1736), + [anon_sym_BANG_EQ2] = ACTIONS(1736), + [anon_sym_LT2] = ACTIONS(1610), + [anon_sym_LT_EQ2] = ACTIONS(1736), + [anon_sym_GT_EQ2] = ACTIONS(1736), + [anon_sym_EQ_TILDE2] = ACTIONS(1736), + [anon_sym_BANG_TILDE2] = ACTIONS(1736), + [anon_sym_like2] = ACTIONS(1736), + [anon_sym_not_DASHlike2] = ACTIONS(1736), + [anon_sym_STAR_STAR2] = ACTIONS(1736), + [anon_sym_PLUS_PLUS2] = ACTIONS(1610), + [anon_sym_SLASH2] = ACTIONS(1610), + [anon_sym_mod2] = ACTIONS(1736), + [anon_sym_SLASH_SLASH2] = ACTIONS(1736), + [anon_sym_PLUS2] = ACTIONS(1610), + [anon_sym_bit_DASHshl2] = ACTIONS(1736), + [anon_sym_bit_DASHshr2] = ACTIONS(1736), + [anon_sym_bit_DASHand2] = ACTIONS(1736), + [anon_sym_bit_DASHxor2] = ACTIONS(1736), + [anon_sym_bit_DASHor2] = ACTIONS(1736), + [anon_sym_DOT_DOT2] = ACTIONS(1614), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1616), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1616), + [anon_sym_err_GT] = ACTIONS(1610), + [anon_sym_out_GT] = ACTIONS(1610), + [anon_sym_e_GT] = ACTIONS(1610), + [anon_sym_o_GT] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT] = ACTIONS(1610), + [anon_sym_err_GT_GT] = ACTIONS(1736), + [anon_sym_out_GT_GT] = ACTIONS(1736), + [anon_sym_e_GT_GT] = ACTIONS(1736), + [anon_sym_o_GT_GT] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), + [anon_sym_POUND] = ACTIONS(3), + }, + [486] = { [sym_comment] = STATE(486), - [ts_builtin_sym_end] = ACTIONS(753), - [anon_sym_in] = ACTIONS(753), - [sym__newline] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(753), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_err_GT_PIPE] = ACTIONS(753), - [anon_sym_out_GT_PIPE] = ACTIONS(753), - [anon_sym_e_GT_PIPE] = ACTIONS(753), - [anon_sym_o_GT_PIPE] = ACTIONS(753), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(753), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(753), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(753), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(753), - [anon_sym_GT2] = ACTIONS(751), - [anon_sym_DASH2] = ACTIONS(753), - [anon_sym_STAR2] = ACTIONS(751), - [anon_sym_and2] = ACTIONS(753), - [anon_sym_xor2] = ACTIONS(753), - [anon_sym_or2] = ACTIONS(753), - [anon_sym_not_DASHin2] = ACTIONS(753), - [anon_sym_has2] = ACTIONS(753), - [anon_sym_not_DASHhas2] = ACTIONS(753), - [anon_sym_starts_DASHwith2] = ACTIONS(753), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(753), - [anon_sym_ends_DASHwith2] = ACTIONS(753), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(753), - [anon_sym_EQ_EQ2] = ACTIONS(753), - [anon_sym_BANG_EQ2] = ACTIONS(753), - [anon_sym_LT2] = ACTIONS(751), - [anon_sym_LT_EQ2] = ACTIONS(753), - [anon_sym_GT_EQ2] = ACTIONS(753), - [anon_sym_EQ_TILDE2] = ACTIONS(753), - [anon_sym_BANG_TILDE2] = ACTIONS(753), - [anon_sym_like2] = ACTIONS(753), - [anon_sym_not_DASHlike2] = ACTIONS(753), - [anon_sym_LPAREN2] = ACTIONS(753), - [anon_sym_STAR_STAR2] = ACTIONS(753), - [anon_sym_PLUS_PLUS2] = ACTIONS(753), - [anon_sym_SLASH2] = ACTIONS(751), - [anon_sym_mod2] = ACTIONS(753), - [anon_sym_SLASH_SLASH2] = ACTIONS(753), - [anon_sym_PLUS2] = ACTIONS(751), - [anon_sym_bit_DASHshl2] = ACTIONS(753), - [anon_sym_bit_DASHshr2] = ACTIONS(753), - [anon_sym_bit_DASHand2] = ACTIONS(753), - [anon_sym_bit_DASHxor2] = ACTIONS(753), - [anon_sym_bit_DASHor2] = ACTIONS(753), - [anon_sym_DOT_DOT2] = ACTIONS(751), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(753), - [aux_sym__immediate_decimal_token5] = ACTIONS(1848), - [sym_filesize_unit] = ACTIONS(751), - [sym_duration_unit] = ACTIONS(753), - [anon_sym_err_GT] = ACTIONS(751), - [anon_sym_out_GT] = ACTIONS(751), - [anon_sym_e_GT] = ACTIONS(751), - [anon_sym_o_GT] = ACTIONS(751), - [anon_sym_err_PLUSout_GT] = ACTIONS(751), - [anon_sym_out_PLUSerr_GT] = ACTIONS(751), - [anon_sym_o_PLUSe_GT] = ACTIONS(751), - [anon_sym_e_PLUSo_GT] = ACTIONS(751), - [anon_sym_err_GT_GT] = ACTIONS(753), - [anon_sym_out_GT_GT] = ACTIONS(753), - [anon_sym_e_GT_GT] = ACTIONS(753), - [anon_sym_o_GT_GT] = ACTIONS(753), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(753), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(753), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(753), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(753), - [sym__unquoted_pattern] = ACTIONS(751), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(487)] = { + [ts_builtin_sym_end] = ACTIONS(765), + [anon_sym_in] = ACTIONS(765), + [sym__newline] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_err_GT_PIPE] = ACTIONS(765), + [anon_sym_out_GT_PIPE] = ACTIONS(765), + [anon_sym_e_GT_PIPE] = ACTIONS(765), + [anon_sym_o_GT_PIPE] = ACTIONS(765), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(765), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(765), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(765), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(765), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(765), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(765), + [anon_sym_xor2] = ACTIONS(765), + [anon_sym_or2] = ACTIONS(765), + [anon_sym_not_DASHin2] = ACTIONS(765), + [anon_sym_has2] = ACTIONS(765), + [anon_sym_not_DASHhas2] = ACTIONS(765), + [anon_sym_starts_DASHwith2] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(765), + [anon_sym_ends_DASHwith2] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(765), + [anon_sym_EQ_EQ2] = ACTIONS(765), + [anon_sym_BANG_EQ2] = ACTIONS(765), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(765), + [anon_sym_GT_EQ2] = ACTIONS(765), + [anon_sym_EQ_TILDE2] = ACTIONS(765), + [anon_sym_BANG_TILDE2] = ACTIONS(765), + [anon_sym_like2] = ACTIONS(765), + [anon_sym_not_DASHlike2] = ACTIONS(765), + [anon_sym_LPAREN2] = ACTIONS(765), + [anon_sym_STAR_STAR2] = ACTIONS(765), + [anon_sym_PLUS_PLUS2] = ACTIONS(765), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(765), + [anon_sym_SLASH_SLASH2] = ACTIONS(765), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(765), + [anon_sym_bit_DASHshr2] = ACTIONS(765), + [anon_sym_bit_DASHand2] = ACTIONS(765), + [anon_sym_bit_DASHxor2] = ACTIONS(765), + [anon_sym_bit_DASHor2] = ACTIONS(765), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(1774), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(765), + [anon_sym_out_GT_GT] = ACTIONS(765), + [anon_sym_e_GT_GT] = ACTIONS(765), + [anon_sym_o_GT_GT] = ACTIONS(765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(765), + [sym__unquoted_pattern] = ACTIONS(763), + [anon_sym_POUND] = ACTIONS(3), + }, + [487] = { [sym_comment] = STATE(487), - [anon_sym_in] = ACTIONS(805), - [sym__newline] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_err_GT_PIPE] = ACTIONS(805), - [anon_sym_out_GT_PIPE] = ACTIONS(805), - [anon_sym_e_GT_PIPE] = ACTIONS(805), - [anon_sym_o_GT_PIPE] = ACTIONS(805), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(805), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(805), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(805), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [anon_sym_GT2] = ACTIONS(803), - [anon_sym_DASH2] = ACTIONS(805), - [anon_sym_RBRACE] = ACTIONS(805), - [anon_sym_STAR2] = ACTIONS(803), - [anon_sym_and2] = ACTIONS(805), - [anon_sym_xor2] = ACTIONS(805), - [anon_sym_or2] = ACTIONS(805), - [anon_sym_not_DASHin2] = ACTIONS(805), - [anon_sym_has2] = ACTIONS(805), - [anon_sym_not_DASHhas2] = ACTIONS(805), - [anon_sym_starts_DASHwith2] = ACTIONS(805), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(805), - [anon_sym_ends_DASHwith2] = ACTIONS(805), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(805), - [anon_sym_EQ_EQ2] = ACTIONS(805), - [anon_sym_BANG_EQ2] = ACTIONS(805), - [anon_sym_LT2] = ACTIONS(803), - [anon_sym_LT_EQ2] = ACTIONS(805), - [anon_sym_GT_EQ2] = ACTIONS(805), - [anon_sym_EQ_TILDE2] = ACTIONS(805), - [anon_sym_BANG_TILDE2] = ACTIONS(805), - [anon_sym_like2] = ACTIONS(805), - [anon_sym_not_DASHlike2] = ACTIONS(805), - [anon_sym_LPAREN2] = ACTIONS(805), - [anon_sym_STAR_STAR2] = ACTIONS(805), - [anon_sym_PLUS_PLUS2] = ACTIONS(805), - [anon_sym_SLASH2] = ACTIONS(803), - [anon_sym_mod2] = ACTIONS(805), - [anon_sym_SLASH_SLASH2] = ACTIONS(805), - [anon_sym_PLUS2] = ACTIONS(803), - [anon_sym_bit_DASHshl2] = ACTIONS(805), - [anon_sym_bit_DASHshr2] = ACTIONS(805), - [anon_sym_bit_DASHand2] = ACTIONS(805), - [anon_sym_bit_DASHxor2] = ACTIONS(805), - [anon_sym_bit_DASHor2] = ACTIONS(805), - [anon_sym_DOT_DOT2] = ACTIONS(803), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(805), - [anon_sym_DOT_DOT_LT2] = ACTIONS(805), - [sym_filesize_unit] = ACTIONS(803), - [sym_duration_unit] = ACTIONS(805), - [anon_sym_err_GT] = ACTIONS(803), - [anon_sym_out_GT] = ACTIONS(803), - [anon_sym_e_GT] = ACTIONS(803), - [anon_sym_o_GT] = ACTIONS(803), - [anon_sym_err_PLUSout_GT] = ACTIONS(803), - [anon_sym_out_PLUSerr_GT] = ACTIONS(803), - [anon_sym_o_PLUSe_GT] = ACTIONS(803), - [anon_sym_e_PLUSo_GT] = ACTIONS(803), - [anon_sym_err_GT_GT] = ACTIONS(805), - [anon_sym_out_GT_GT] = ACTIONS(805), - [anon_sym_e_GT_GT] = ACTIONS(805), - [anon_sym_o_GT_GT] = ACTIONS(805), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(805), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(805), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(805), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(805), - [sym__unquoted_pattern] = ACTIONS(803), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(488)] = { + [anon_sym_in] = ACTIONS(757), + [sym__newline] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(757), + [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_err_GT_PIPE] = ACTIONS(757), + [anon_sym_out_GT_PIPE] = ACTIONS(757), + [anon_sym_e_GT_PIPE] = ACTIONS(757), + [anon_sym_o_GT_PIPE] = ACTIONS(757), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(757), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(757), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(757), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(757), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(757), + [anon_sym_RBRACE] = ACTIONS(757), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(757), + [anon_sym_xor2] = ACTIONS(757), + [anon_sym_or2] = ACTIONS(757), + [anon_sym_not_DASHin2] = ACTIONS(757), + [anon_sym_has2] = ACTIONS(757), + [anon_sym_not_DASHhas2] = ACTIONS(757), + [anon_sym_starts_DASHwith2] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(757), + [anon_sym_ends_DASHwith2] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(757), + [anon_sym_EQ_EQ2] = ACTIONS(757), + [anon_sym_BANG_EQ2] = ACTIONS(757), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(757), + [anon_sym_GT_EQ2] = ACTIONS(757), + [anon_sym_EQ_TILDE2] = ACTIONS(757), + [anon_sym_BANG_TILDE2] = ACTIONS(757), + [anon_sym_like2] = ACTIONS(757), + [anon_sym_not_DASHlike2] = ACTIONS(757), + [anon_sym_LPAREN2] = ACTIONS(757), + [anon_sym_STAR_STAR2] = ACTIONS(757), + [anon_sym_PLUS_PLUS2] = ACTIONS(757), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(757), + [anon_sym_SLASH_SLASH2] = ACTIONS(757), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(757), + [anon_sym_bit_DASHshr2] = ACTIONS(757), + [anon_sym_bit_DASHand2] = ACTIONS(757), + [anon_sym_bit_DASHxor2] = ACTIONS(757), + [anon_sym_bit_DASHor2] = ACTIONS(757), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(757), + [anon_sym_out_GT_GT] = ACTIONS(757), + [anon_sym_e_GT_GT] = ACTIONS(757), + [anon_sym_o_GT_GT] = ACTIONS(757), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(757), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(757), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(757), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(757), + [sym__unquoted_pattern] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(3), + }, + [488] = { [sym_comment] = STATE(488), - [ts_builtin_sym_end] = ACTIONS(793), - [anon_sym_in] = ACTIONS(793), - [sym__newline] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_err_GT_PIPE] = ACTIONS(793), - [anon_sym_out_GT_PIPE] = ACTIONS(793), - [anon_sym_e_GT_PIPE] = ACTIONS(793), - [anon_sym_o_GT_PIPE] = ACTIONS(793), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), - [anon_sym_GT2] = ACTIONS(791), - [anon_sym_DASH2] = ACTIONS(793), - [anon_sym_STAR2] = ACTIONS(791), - [anon_sym_and2] = ACTIONS(793), - [anon_sym_xor2] = ACTIONS(793), - [anon_sym_or2] = ACTIONS(793), - [anon_sym_not_DASHin2] = ACTIONS(793), - [anon_sym_has2] = ACTIONS(793), - [anon_sym_not_DASHhas2] = ACTIONS(793), - [anon_sym_starts_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), - [anon_sym_ends_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), - [anon_sym_EQ_EQ2] = ACTIONS(793), - [anon_sym_BANG_EQ2] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(791), - [anon_sym_LT_EQ2] = ACTIONS(793), - [anon_sym_GT_EQ2] = ACTIONS(793), - [anon_sym_EQ_TILDE2] = ACTIONS(793), - [anon_sym_BANG_TILDE2] = ACTIONS(793), - [anon_sym_like2] = ACTIONS(793), - [anon_sym_not_DASHlike2] = ACTIONS(793), - [anon_sym_LPAREN2] = ACTIONS(793), - [anon_sym_STAR_STAR2] = ACTIONS(793), - [anon_sym_PLUS_PLUS2] = ACTIONS(793), - [anon_sym_SLASH2] = ACTIONS(791), - [anon_sym_mod2] = ACTIONS(793), - [anon_sym_SLASH_SLASH2] = ACTIONS(793), - [anon_sym_PLUS2] = ACTIONS(791), - [anon_sym_bit_DASHshl2] = ACTIONS(793), - [anon_sym_bit_DASHshr2] = ACTIONS(793), - [anon_sym_bit_DASHand2] = ACTIONS(793), - [anon_sym_bit_DASHxor2] = ACTIONS(793), - [anon_sym_bit_DASHor2] = ACTIONS(793), - [anon_sym_DOT_DOT2] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(793), - [aux_sym__immediate_decimal_token5] = ACTIONS(1854), - [sym_filesize_unit] = ACTIONS(791), - [sym_duration_unit] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(791), - [anon_sym_out_GT] = ACTIONS(791), - [anon_sym_e_GT] = ACTIONS(791), - [anon_sym_o_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT] = ACTIONS(791), - [anon_sym_err_GT_GT] = ACTIONS(793), - [anon_sym_out_GT_GT] = ACTIONS(793), - [anon_sym_e_GT_GT] = ACTIONS(793), - [anon_sym_o_GT_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(793), - [sym__unquoted_pattern] = ACTIONS(791), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(489)] = { - [sym_cmd_identifier] = STATE(4664), - [sym_expr_parenthesized] = STATE(5503), - [sym__spread_parenthesized] = STATE(4962), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(4628), - [sym_val_number] = STATE(5503), - [sym__val_number_decimal] = STATE(2000), - [sym__val_number] = STATE(726), - [sym_val_string] = STATE(5503), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_interpolated] = STATE(5503), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym__spread_record] = STATE(4962), - [sym_record_entry] = STATE(4749), - [sym__record_key] = STATE(5380), + [anon_sym_in] = ACTIONS(1810), + [sym__newline] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_err_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_GT_PIPE] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_GT2] = ACTIONS(1812), + [anon_sym_DASH2] = ACTIONS(1810), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_STAR2] = ACTIONS(1812), + [anon_sym_and2] = ACTIONS(1810), + [anon_sym_xor2] = ACTIONS(1810), + [anon_sym_or2] = ACTIONS(1810), + [anon_sym_not_DASHin2] = ACTIONS(1810), + [anon_sym_has2] = ACTIONS(1810), + [anon_sym_not_DASHhas2] = ACTIONS(1810), + [anon_sym_starts_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1810), + [anon_sym_ends_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1810), + [anon_sym_EQ_EQ2] = ACTIONS(1810), + [anon_sym_BANG_EQ2] = ACTIONS(1810), + [anon_sym_LT2] = ACTIONS(1812), + [anon_sym_LT_EQ2] = ACTIONS(1810), + [anon_sym_GT_EQ2] = ACTIONS(1810), + [anon_sym_EQ_TILDE2] = ACTIONS(1810), + [anon_sym_BANG_TILDE2] = ACTIONS(1810), + [anon_sym_like2] = ACTIONS(1810), + [anon_sym_not_DASHlike2] = ACTIONS(1810), + [anon_sym_LPAREN2] = ACTIONS(1810), + [anon_sym_STAR_STAR2] = ACTIONS(1810), + [anon_sym_PLUS_PLUS2] = ACTIONS(1810), + [anon_sym_SLASH2] = ACTIONS(1812), + [anon_sym_mod2] = ACTIONS(1810), + [anon_sym_SLASH_SLASH2] = ACTIONS(1810), + [anon_sym_PLUS2] = ACTIONS(1812), + [anon_sym_bit_DASHshl2] = ACTIONS(1810), + [anon_sym_bit_DASHshr2] = ACTIONS(1810), + [anon_sym_bit_DASHand2] = ACTIONS(1810), + [anon_sym_bit_DASHxor2] = ACTIONS(1810), + [anon_sym_bit_DASHor2] = ACTIONS(1810), + [anon_sym_DOT_DOT2] = ACTIONS(1812), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1810), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1810), + [aux_sym__immediate_decimal_token5] = ACTIONS(1816), + [anon_sym_err_GT] = ACTIONS(1812), + [anon_sym_out_GT] = ACTIONS(1812), + [anon_sym_e_GT] = ACTIONS(1812), + [anon_sym_o_GT] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT] = ACTIONS(1812), + [anon_sym_err_GT_GT] = ACTIONS(1810), + [anon_sym_out_GT_GT] = ACTIONS(1810), + [anon_sym_e_GT_GT] = ACTIONS(1810), + [anon_sym_o_GT_GT] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), + [sym__unquoted_pattern] = ACTIONS(1812), + [anon_sym_POUND] = ACTIONS(3), + }, + [489] = { + [sym_cmd_identifier] = STATE(4572), + [sym_expr_parenthesized] = STATE(5187), + [sym__spread_parenthesized] = STATE(4951), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(4644), + [sym_val_number] = STATE(5187), + [sym__val_number_decimal] = STATE(2013), + [sym__val_number] = STATE(705), + [sym_val_string] = STATE(5187), + [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(5187), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym__spread_record] = STATE(4951), + [sym_record_entry] = STATE(4900), + [sym__record_key] = STATE(5305), [sym_comment] = STATE(489), - [aux_sym__types_body_repeat1] = STATE(1505), - [aux_sym__match_pattern_record_body_repeat1] = STATE(731), + [aux_sym__types_body_repeat1] = STATE(1501), + [aux_sym__match_pattern_record_body_repeat1] = STATE(699), [aux_sym_record_body_repeat1] = STATE(744), [anon_sym_export] = ACTIONS(145), [anon_sym_alias] = ACTIONS(139), @@ -87505,90 +87453,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(139), [anon_sym_match] = ACTIONS(139), [anon_sym_in] = ACTIONS(145), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token3] = ACTIONS(1750), - [aux_sym_cmd_identifier_token4] = ACTIONS(1750), - [aux_sym_cmd_identifier_token5] = ACTIONS(1750), - [sym__newline] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1746), + [aux_sym_cmd_identifier_token3] = ACTIONS(1748), + [aux_sym_cmd_identifier_token4] = ACTIONS(1748), + [aux_sym_cmd_identifier_token5] = ACTIONS(1748), + [sym__newline] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_DOLLAR] = ACTIONS(1778), [anon_sym_DASH2] = ACTIONS(177), [anon_sym_PLUS2] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1760), - [aux_sym__val_number_decimal_token2] = ACTIONS(1762), - [aux_sym__val_number_decimal_token3] = ACTIONS(1764), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1768), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1772), + [sym_raw_string_begin] = ACTIONS(1770), }, - [STATE(490)] = { - [sym__expr_parenthesized_immediate] = STATE(4987), + [490] = { + [sym__expr_parenthesized_immediate] = STATE(5063), [sym_comment] = STATE(490), - [ts_builtin_sym_end] = ACTIONS(914), - [anon_sym_in] = ACTIONS(914), - [sym__newline] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_err_GT_PIPE] = ACTIONS(914), - [anon_sym_out_GT_PIPE] = ACTIONS(914), - [anon_sym_e_GT_PIPE] = ACTIONS(914), - [anon_sym_o_GT_PIPE] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(914), + [ts_builtin_sym_end] = ACTIONS(910), + [anon_sym_in] = ACTIONS(910), + [sym__newline] = ACTIONS(910), + [anon_sym_SEMI] = ACTIONS(910), + [anon_sym_PIPE] = ACTIONS(910), + [anon_sym_err_GT_PIPE] = ACTIONS(910), + [anon_sym_out_GT_PIPE] = ACTIONS(910), + [anon_sym_e_GT_PIPE] = ACTIONS(910), + [anon_sym_o_GT_PIPE] = ACTIONS(910), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(910), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(910), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(910), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(910), [anon_sym_GT2] = ACTIONS(811), - [anon_sym_DASH2] = ACTIONS(914), + [anon_sym_DASH2] = ACTIONS(910), [anon_sym_STAR2] = ACTIONS(811), - [anon_sym_and2] = ACTIONS(914), - [anon_sym_xor2] = ACTIONS(914), - [anon_sym_or2] = ACTIONS(914), - [anon_sym_not_DASHin2] = ACTIONS(914), - [anon_sym_has2] = ACTIONS(914), - [anon_sym_not_DASHhas2] = ACTIONS(914), - [anon_sym_starts_DASHwith2] = ACTIONS(914), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(914), - [anon_sym_ends_DASHwith2] = ACTIONS(914), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(914), - [anon_sym_EQ_EQ2] = ACTIONS(914), - [anon_sym_BANG_EQ2] = ACTIONS(914), + [anon_sym_and2] = ACTIONS(910), + [anon_sym_xor2] = ACTIONS(910), + [anon_sym_or2] = ACTIONS(910), + [anon_sym_not_DASHin2] = ACTIONS(910), + [anon_sym_has2] = ACTIONS(910), + [anon_sym_not_DASHhas2] = ACTIONS(910), + [anon_sym_starts_DASHwith2] = ACTIONS(910), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(910), + [anon_sym_ends_DASHwith2] = ACTIONS(910), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(910), + [anon_sym_EQ_EQ2] = ACTIONS(910), + [anon_sym_BANG_EQ2] = ACTIONS(910), [anon_sym_LT2] = ACTIONS(811), - [anon_sym_LT_EQ2] = ACTIONS(914), - [anon_sym_GT_EQ2] = ACTIONS(914), - [anon_sym_EQ_TILDE2] = ACTIONS(914), - [anon_sym_BANG_TILDE2] = ACTIONS(914), - [anon_sym_like2] = ACTIONS(914), - [anon_sym_not_DASHlike2] = ACTIONS(914), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(914), - [anon_sym_PLUS_PLUS2] = ACTIONS(914), + [anon_sym_LT_EQ2] = ACTIONS(910), + [anon_sym_GT_EQ2] = ACTIONS(910), + [anon_sym_EQ_TILDE2] = ACTIONS(910), + [anon_sym_BANG_TILDE2] = ACTIONS(910), + [anon_sym_like2] = ACTIONS(910), + [anon_sym_not_DASHlike2] = ACTIONS(910), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(910), + [anon_sym_PLUS_PLUS2] = ACTIONS(910), [anon_sym_SLASH2] = ACTIONS(811), - [anon_sym_mod2] = ACTIONS(914), - [anon_sym_SLASH_SLASH2] = ACTIONS(914), + [anon_sym_mod2] = ACTIONS(910), + [anon_sym_SLASH_SLASH2] = ACTIONS(910), [anon_sym_PLUS2] = ACTIONS(811), - [anon_sym_bit_DASHshl2] = ACTIONS(914), - [anon_sym_bit_DASHshr2] = ACTIONS(914), - [anon_sym_bit_DASHand2] = ACTIONS(914), - [anon_sym_bit_DASHxor2] = ACTIONS(914), - [anon_sym_bit_DASHor2] = ACTIONS(914), - [anon_sym_DOT_DOT2] = ACTIONS(1856), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1858), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1858), - [sym_filesize_unit] = ACTIONS(1860), - [sym_duration_unit] = ACTIONS(1862), + [anon_sym_bit_DASHshl2] = ACTIONS(910), + [anon_sym_bit_DASHshr2] = ACTIONS(910), + [anon_sym_bit_DASHand2] = ACTIONS(910), + [anon_sym_bit_DASHxor2] = ACTIONS(910), + [anon_sym_bit_DASHor2] = ACTIONS(910), + [anon_sym_DOT_DOT2] = ACTIONS(1864), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1866), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1866), + [sym_filesize_unit] = ACTIONS(1868), + [sym_duration_unit] = ACTIONS(1870), [anon_sym_err_GT] = ACTIONS(811), [anon_sym_out_GT] = ACTIONS(811), [anon_sym_e_GT] = ACTIONS(811), @@ -87597,409 +87545,1066 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT] = ACTIONS(811), [anon_sym_o_PLUSe_GT] = ACTIONS(811), [anon_sym_e_PLUSo_GT] = ACTIONS(811), - [anon_sym_err_GT_GT] = ACTIONS(914), - [anon_sym_out_GT_GT] = ACTIONS(914), - [anon_sym_e_GT_GT] = ACTIONS(914), - [anon_sym_o_GT_GT] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), - [sym__unquoted_pattern] = ACTIONS(1864), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(491)] = { + [anon_sym_err_GT_GT] = ACTIONS(910), + [anon_sym_out_GT_GT] = ACTIONS(910), + [anon_sym_e_GT_GT] = ACTIONS(910), + [anon_sym_o_GT_GT] = ACTIONS(910), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(910), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(910), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(910), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(910), + [sym__unquoted_pattern] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(3), + }, + [491] = { [sym_comment] = STATE(491), - [anon_sym_in] = ACTIONS(1788), - [sym__newline] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_PIPE] = ACTIONS(1788), - [anon_sym_err_GT_PIPE] = ACTIONS(1788), - [anon_sym_out_GT_PIPE] = ACTIONS(1788), - [anon_sym_e_GT_PIPE] = ACTIONS(1788), - [anon_sym_o_GT_PIPE] = ACTIONS(1788), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), - [anon_sym_RPAREN] = ACTIONS(1788), - [anon_sym_GT2] = ACTIONS(1790), - [anon_sym_DASH2] = ACTIONS(1788), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1788), - [anon_sym_STAR2] = ACTIONS(1790), - [anon_sym_and2] = ACTIONS(1788), - [anon_sym_xor2] = ACTIONS(1788), - [anon_sym_or2] = ACTIONS(1788), - [anon_sym_not_DASHin2] = ACTIONS(1788), - [anon_sym_has2] = ACTIONS(1788), - [anon_sym_not_DASHhas2] = ACTIONS(1788), - [anon_sym_starts_DASHwith2] = ACTIONS(1788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1788), - [anon_sym_ends_DASHwith2] = ACTIONS(1788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1788), - [anon_sym_EQ_EQ2] = ACTIONS(1788), - [anon_sym_BANG_EQ2] = ACTIONS(1788), - [anon_sym_LT2] = ACTIONS(1790), - [anon_sym_LT_EQ2] = ACTIONS(1788), - [anon_sym_GT_EQ2] = ACTIONS(1788), - [anon_sym_EQ_TILDE2] = ACTIONS(1788), - [anon_sym_BANG_TILDE2] = ACTIONS(1788), - [anon_sym_like2] = ACTIONS(1788), - [anon_sym_not_DASHlike2] = ACTIONS(1788), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_STAR_STAR2] = ACTIONS(1788), - [anon_sym_PLUS_PLUS2] = ACTIONS(1788), - [anon_sym_SLASH2] = ACTIONS(1790), - [anon_sym_mod2] = ACTIONS(1788), - [anon_sym_SLASH_SLASH2] = ACTIONS(1788), - [anon_sym_PLUS2] = ACTIONS(1790), - [anon_sym_bit_DASHshl2] = ACTIONS(1788), - [anon_sym_bit_DASHshr2] = ACTIONS(1788), - [anon_sym_bit_DASHand2] = ACTIONS(1788), - [anon_sym_bit_DASHxor2] = ACTIONS(1788), - [anon_sym_bit_DASHor2] = ACTIONS(1788), - [anon_sym_DOT_DOT2] = ACTIONS(1790), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1788), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1788), - [aux_sym__immediate_decimal_token5] = ACTIONS(1794), - [anon_sym_err_GT] = ACTIONS(1790), - [anon_sym_out_GT] = ACTIONS(1790), - [anon_sym_e_GT] = ACTIONS(1790), - [anon_sym_o_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT] = ACTIONS(1790), - [anon_sym_err_GT_GT] = ACTIONS(1788), - [anon_sym_out_GT_GT] = ACTIONS(1788), - [anon_sym_e_GT_GT] = ACTIONS(1788), - [anon_sym_o_GT_GT] = ACTIONS(1788), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1788), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1788), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1788), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1788), - [sym__unquoted_pattern] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(492)] = { + [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), + }, + [492] = { [sym_comment] = STATE(492), - [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_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_LPAREN2] = ACTIONS(1866), - [anon_sym_STAR_STAR2] = ACTIONS(1866), - [anon_sym_PLUS_PLUS2] = ACTIONS(1866), - [anon_sym_SLASH2] = ACTIONS(1868), - [anon_sym_mod2] = ACTIONS(1866), - [anon_sym_SLASH_SLASH2] = ACTIONS(1866), - [anon_sym_PLUS2] = ACTIONS(1868), - [anon_sym_bit_DASHshl2] = ACTIONS(1866), - [anon_sym_bit_DASHshr2] = ACTIONS(1866), - [anon_sym_bit_DASHand2] = ACTIONS(1866), - [anon_sym_bit_DASHxor2] = ACTIONS(1866), - [anon_sym_bit_DASHor2] = ACTIONS(1866), - [anon_sym_DOT_DOT2] = ACTIONS(1868), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1866), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1866), - [aux_sym__immediate_decimal_token5] = 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), - [sym__unquoted_pattern] = ACTIONS(1868), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(493)] = { + [anon_sym_in] = ACTIONS(803), + [sym__newline] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_err_GT_PIPE] = ACTIONS(803), + [anon_sym_out_GT_PIPE] = ACTIONS(803), + [anon_sym_e_GT_PIPE] = ACTIONS(803), + [anon_sym_o_GT_PIPE] = ACTIONS(803), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(803), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(803), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [anon_sym_GT2] = ACTIONS(801), + [anon_sym_DASH2] = ACTIONS(803), + [anon_sym_RBRACE] = ACTIONS(803), + [anon_sym_STAR2] = ACTIONS(801), + [anon_sym_and2] = ACTIONS(803), + [anon_sym_xor2] = ACTIONS(803), + [anon_sym_or2] = ACTIONS(803), + [anon_sym_not_DASHin2] = ACTIONS(803), + [anon_sym_has2] = ACTIONS(803), + [anon_sym_not_DASHhas2] = ACTIONS(803), + [anon_sym_starts_DASHwith2] = ACTIONS(803), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(803), + [anon_sym_ends_DASHwith2] = ACTIONS(803), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(803), + [anon_sym_EQ_EQ2] = ACTIONS(803), + [anon_sym_BANG_EQ2] = ACTIONS(803), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ2] = ACTIONS(803), + [anon_sym_GT_EQ2] = ACTIONS(803), + [anon_sym_EQ_TILDE2] = ACTIONS(803), + [anon_sym_BANG_TILDE2] = ACTIONS(803), + [anon_sym_like2] = ACTIONS(803), + [anon_sym_not_DASHlike2] = ACTIONS(803), + [anon_sym_LPAREN2] = ACTIONS(803), + [anon_sym_STAR_STAR2] = ACTIONS(803), + [anon_sym_PLUS_PLUS2] = ACTIONS(803), + [anon_sym_SLASH2] = ACTIONS(801), + [anon_sym_mod2] = ACTIONS(803), + [anon_sym_SLASH_SLASH2] = ACTIONS(803), + [anon_sym_PLUS2] = ACTIONS(801), + [anon_sym_bit_DASHshl2] = ACTIONS(803), + [anon_sym_bit_DASHshr2] = ACTIONS(803), + [anon_sym_bit_DASHand2] = ACTIONS(803), + [anon_sym_bit_DASHxor2] = ACTIONS(803), + [anon_sym_bit_DASHor2] = ACTIONS(803), + [anon_sym_DOT_DOT2] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), + [anon_sym_DOT_DOT_LT2] = ACTIONS(803), + [sym_filesize_unit] = ACTIONS(801), + [sym_duration_unit] = ACTIONS(803), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [anon_sym_err_GT_GT] = ACTIONS(803), + [anon_sym_out_GT_GT] = ACTIONS(803), + [anon_sym_e_GT_GT] = ACTIONS(803), + [anon_sym_o_GT_GT] = ACTIONS(803), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(803), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(803), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(803), + [sym__unquoted_pattern] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [493] = { [sym_comment] = STATE(493), - [anon_sym_if] = 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_RPAREN] = ACTIONS(1872), - [anon_sym_GT2] = ACTIONS(1874), - [anon_sym_DASH2] = ACTIONS(1872), - [anon_sym_LBRACE] = ACTIONS(1872), - [anon_sym_RBRACE] = ACTIONS(1872), - [anon_sym_EQ_GT] = ACTIONS(1872), - [anon_sym_STAR2] = ACTIONS(1874), - [anon_sym_and2] = ACTIONS(1872), - [anon_sym_xor2] = ACTIONS(1872), - [anon_sym_or2] = ACTIONS(1872), - [anon_sym_not_DASHin2] = ACTIONS(1872), - [anon_sym_has2] = ACTIONS(1872), - [anon_sym_not_DASHhas2] = ACTIONS(1872), - [anon_sym_starts_DASHwith2] = ACTIONS(1872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1872), - [anon_sym_ends_DASHwith2] = ACTIONS(1872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1872), - [anon_sym_EQ_EQ2] = ACTIONS(1872), - [anon_sym_BANG_EQ2] = ACTIONS(1872), - [anon_sym_LT2] = ACTIONS(1874), - [anon_sym_LT_EQ2] = ACTIONS(1872), - [anon_sym_GT_EQ2] = ACTIONS(1872), - [anon_sym_EQ_TILDE2] = ACTIONS(1872), - [anon_sym_BANG_TILDE2] = ACTIONS(1872), - [anon_sym_like2] = ACTIONS(1872), - [anon_sym_not_DASHlike2] = ACTIONS(1872), - [anon_sym_STAR_STAR2] = ACTIONS(1872), - [anon_sym_PLUS_PLUS2] = ACTIONS(1872), - [anon_sym_SLASH2] = ACTIONS(1874), - [anon_sym_mod2] = ACTIONS(1872), - [anon_sym_SLASH_SLASH2] = ACTIONS(1872), - [anon_sym_PLUS2] = ACTIONS(1874), - [anon_sym_bit_DASHshl2] = ACTIONS(1872), - [anon_sym_bit_DASHshr2] = ACTIONS(1872), - [anon_sym_bit_DASHand2] = ACTIONS(1872), - [anon_sym_bit_DASHxor2] = ACTIONS(1872), - [anon_sym_bit_DASHor2] = ACTIONS(1872), - [anon_sym_DOT_DOT2] = ACTIONS(1874), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1872), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1872), - [anon_sym_COLON2] = ACTIONS(1872), - [anon_sym_err_GT] = ACTIONS(1874), - [anon_sym_out_GT] = ACTIONS(1874), - [anon_sym_e_GT] = ACTIONS(1874), - [anon_sym_o_GT] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT] = ACTIONS(1874), - [anon_sym_err_GT_GT] = ACTIONS(1872), - [anon_sym_out_GT_GT] = ACTIONS(1872), - [anon_sym_e_GT_GT] = ACTIONS(1872), - [anon_sym_o_GT_GT] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1872), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(494)] = { + [anon_sym_in] = ACTIONS(1874), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_GT2] = ACTIONS(1876), + [anon_sym_DASH2] = ACTIONS(1874), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_STAR2] = ACTIONS(1876), + [anon_sym_and2] = ACTIONS(1874), + [anon_sym_xor2] = ACTIONS(1874), + [anon_sym_or2] = ACTIONS(1874), + [anon_sym_not_DASHin2] = ACTIONS(1874), + [anon_sym_has2] = ACTIONS(1874), + [anon_sym_not_DASHhas2] = ACTIONS(1874), + [anon_sym_starts_DASHwith2] = ACTIONS(1874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1874), + [anon_sym_ends_DASHwith2] = ACTIONS(1874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1874), + [anon_sym_EQ_EQ2] = ACTIONS(1874), + [anon_sym_BANG_EQ2] = ACTIONS(1874), + [anon_sym_LT2] = ACTIONS(1876), + [anon_sym_LT_EQ2] = ACTIONS(1874), + [anon_sym_GT_EQ2] = ACTIONS(1874), + [anon_sym_EQ_TILDE2] = ACTIONS(1874), + [anon_sym_BANG_TILDE2] = ACTIONS(1874), + [anon_sym_like2] = ACTIONS(1874), + [anon_sym_not_DASHlike2] = ACTIONS(1874), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_STAR_STAR2] = ACTIONS(1874), + [anon_sym_PLUS_PLUS2] = ACTIONS(1874), + [anon_sym_SLASH2] = ACTIONS(1876), + [anon_sym_mod2] = ACTIONS(1874), + [anon_sym_SLASH_SLASH2] = ACTIONS(1874), + [anon_sym_PLUS2] = ACTIONS(1876), + [anon_sym_bit_DASHshl2] = ACTIONS(1874), + [anon_sym_bit_DASHshr2] = ACTIONS(1874), + [anon_sym_bit_DASHand2] = ACTIONS(1874), + [anon_sym_bit_DASHxor2] = ACTIONS(1874), + [anon_sym_bit_DASHor2] = ACTIONS(1874), + [anon_sym_DOT_DOT2] = ACTIONS(1876), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [aux_sym__immediate_decimal_token5] = ACTIONS(1878), + [anon_sym_err_GT] = ACTIONS(1876), + [anon_sym_out_GT] = ACTIONS(1876), + [anon_sym_e_GT] = ACTIONS(1876), + [anon_sym_o_GT] = ACTIONS(1876), + [anon_sym_err_PLUSout_GT] = ACTIONS(1876), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1876), + [anon_sym_o_PLUSe_GT] = ACTIONS(1876), + [anon_sym_e_PLUSo_GT] = ACTIONS(1876), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [sym__unquoted_pattern] = ACTIONS(1876), + [anon_sym_POUND] = ACTIONS(3), + }, + [494] = { [sym_comment] = STATE(494), - [anon_sym_EQ] = ACTIONS(1876), - [anon_sym_PLUS_EQ] = ACTIONS(1878), - [anon_sym_DASH_EQ] = ACTIONS(1878), - [anon_sym_STAR_EQ] = ACTIONS(1878), - [anon_sym_SLASH_EQ] = ACTIONS(1878), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1878), - [anon_sym_in] = ACTIONS(1738), - [sym__newline] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_err_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_GT_PIPE] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), - [anon_sym_GT2] = ACTIONS(1616), - [anon_sym_DASH2] = ACTIONS(1616), - [anon_sym_STAR2] = ACTIONS(1616), - [anon_sym_and2] = ACTIONS(1738), - [anon_sym_xor2] = ACTIONS(1738), - [anon_sym_or2] = ACTIONS(1738), - [anon_sym_not_DASHin2] = ACTIONS(1738), - [anon_sym_has2] = ACTIONS(1738), - [anon_sym_not_DASHhas2] = ACTIONS(1738), - [anon_sym_starts_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), - [anon_sym_ends_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), - [anon_sym_EQ_EQ2] = ACTIONS(1738), - [anon_sym_BANG_EQ2] = ACTIONS(1738), - [anon_sym_LT2] = ACTIONS(1616), - [anon_sym_LT_EQ2] = ACTIONS(1738), - [anon_sym_GT_EQ2] = ACTIONS(1738), - [anon_sym_EQ_TILDE2] = ACTIONS(1738), - [anon_sym_BANG_TILDE2] = ACTIONS(1738), - [anon_sym_like2] = ACTIONS(1738), - [anon_sym_not_DASHlike2] = ACTIONS(1738), - [anon_sym_STAR_STAR2] = ACTIONS(1738), - [anon_sym_PLUS_PLUS2] = ACTIONS(1616), - [anon_sym_SLASH2] = ACTIONS(1616), - [anon_sym_mod2] = ACTIONS(1738), - [anon_sym_SLASH_SLASH2] = ACTIONS(1738), - [anon_sym_PLUS2] = ACTIONS(1616), - [anon_sym_bit_DASHshl2] = ACTIONS(1738), - [anon_sym_bit_DASHshr2] = ACTIONS(1738), - [anon_sym_bit_DASHand2] = ACTIONS(1738), - [anon_sym_bit_DASHxor2] = ACTIONS(1738), - [anon_sym_bit_DASHor2] = ACTIONS(1738), - [anon_sym_DOT_DOT2] = ACTIONS(1620), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), - [anon_sym_err_GT] = ACTIONS(1616), - [anon_sym_out_GT] = ACTIONS(1616), - [anon_sym_e_GT] = ACTIONS(1616), - [anon_sym_o_GT] = ACTIONS(1616), - [anon_sym_err_PLUSout_GT] = ACTIONS(1616), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), - [anon_sym_o_PLUSe_GT] = ACTIONS(1616), - [anon_sym_e_PLUSo_GT] = ACTIONS(1616), - [anon_sym_err_GT_GT] = ACTIONS(1738), - [anon_sym_out_GT_GT] = ACTIONS(1738), - [anon_sym_e_GT_GT] = ACTIONS(1738), - [anon_sym_o_GT_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(495)] = { + [anon_sym_EQ] = ACTIONS(1880), + [anon_sym_PLUS_EQ] = ACTIONS(1882), + [anon_sym_DASH_EQ] = ACTIONS(1882), + [anon_sym_STAR_EQ] = ACTIONS(1882), + [anon_sym_SLASH_EQ] = ACTIONS(1882), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1882), + [anon_sym_in] = ACTIONS(1736), + [sym__newline] = ACTIONS(1736), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_PIPE] = ACTIONS(1736), + [anon_sym_err_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_GT_PIPE] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), + [anon_sym_GT2] = ACTIONS(1610), + [anon_sym_DASH2] = ACTIONS(1610), + [anon_sym_STAR2] = ACTIONS(1610), + [anon_sym_and2] = ACTIONS(1736), + [anon_sym_xor2] = ACTIONS(1736), + [anon_sym_or2] = ACTIONS(1736), + [anon_sym_not_DASHin2] = ACTIONS(1736), + [anon_sym_has2] = ACTIONS(1736), + [anon_sym_not_DASHhas2] = ACTIONS(1736), + [anon_sym_starts_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), + [anon_sym_ends_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), + [anon_sym_EQ_EQ2] = ACTIONS(1736), + [anon_sym_BANG_EQ2] = ACTIONS(1736), + [anon_sym_LT2] = ACTIONS(1610), + [anon_sym_LT_EQ2] = ACTIONS(1736), + [anon_sym_GT_EQ2] = ACTIONS(1736), + [anon_sym_EQ_TILDE2] = ACTIONS(1736), + [anon_sym_BANG_TILDE2] = ACTIONS(1736), + [anon_sym_like2] = ACTIONS(1736), + [anon_sym_not_DASHlike2] = ACTIONS(1736), + [anon_sym_STAR_STAR2] = ACTIONS(1736), + [anon_sym_PLUS_PLUS2] = ACTIONS(1610), + [anon_sym_SLASH2] = ACTIONS(1610), + [anon_sym_mod2] = ACTIONS(1736), + [anon_sym_SLASH_SLASH2] = ACTIONS(1736), + [anon_sym_PLUS2] = ACTIONS(1610), + [anon_sym_bit_DASHshl2] = ACTIONS(1736), + [anon_sym_bit_DASHshr2] = ACTIONS(1736), + [anon_sym_bit_DASHand2] = ACTIONS(1736), + [anon_sym_bit_DASHxor2] = ACTIONS(1736), + [anon_sym_bit_DASHor2] = ACTIONS(1736), + [anon_sym_DOT_DOT2] = ACTIONS(1614), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1616), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1616), + [anon_sym_err_GT] = ACTIONS(1610), + [anon_sym_out_GT] = ACTIONS(1610), + [anon_sym_e_GT] = ACTIONS(1610), + [anon_sym_o_GT] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT] = ACTIONS(1610), + [anon_sym_err_GT_GT] = ACTIONS(1736), + [anon_sym_out_GT_GT] = ACTIONS(1736), + [anon_sym_e_GT_GT] = ACTIONS(1736), + [anon_sym_o_GT_GT] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), + [anon_sym_POUND] = ACTIONS(3), + }, + [495] = { [sym_comment] = STATE(495), - [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_GT2] = ACTIONS(1545), - [anon_sym_DASH2] = ACTIONS(1547), - [anon_sym_LBRACE] = 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_QMARK2] = ACTIONS(1547), - [anon_sym_BANG] = 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(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(496)] = { - [sym_cmd_identifier] = STATE(4664), - [sym_expr_parenthesized] = STATE(5503), - [sym__spread_parenthesized] = STATE(4962), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(4628), - [sym_val_number] = STATE(5503), - [sym__val_number_decimal] = STATE(2000), - [sym__val_number] = STATE(726), - [sym_val_string] = STATE(5503), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_interpolated] = STATE(5503), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym__spread_record] = STATE(4962), - [sym_record_entry] = STATE(4870), - [sym__record_key] = STATE(5380), + [ts_builtin_sym_end] = ACTIONS(1546), + [anon_sym_in] = ACTIONS(1546), + [sym__newline] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_err_GT_PIPE] = ACTIONS(1546), + [anon_sym_out_GT_PIPE] = ACTIONS(1546), + [anon_sym_e_GT_PIPE] = ACTIONS(1546), + [anon_sym_o_GT_PIPE] = ACTIONS(1546), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1546), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1546), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1546), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1546), + [anon_sym_GT2] = ACTIONS(1544), + [anon_sym_DASH2] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_STAR2] = ACTIONS(1544), + [anon_sym_and2] = ACTIONS(1546), + [anon_sym_xor2] = ACTIONS(1546), + [anon_sym_or2] = ACTIONS(1546), + [anon_sym_not_DASHin2] = ACTIONS(1546), + [anon_sym_has2] = ACTIONS(1546), + [anon_sym_not_DASHhas2] = ACTIONS(1546), + [anon_sym_starts_DASHwith2] = ACTIONS(1546), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1546), + [anon_sym_ends_DASHwith2] = ACTIONS(1546), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1546), + [anon_sym_EQ_EQ2] = ACTIONS(1546), + [anon_sym_BANG_EQ2] = ACTIONS(1546), + [anon_sym_LT2] = ACTIONS(1544), + [anon_sym_LT_EQ2] = ACTIONS(1546), + [anon_sym_GT_EQ2] = ACTIONS(1546), + [anon_sym_EQ_TILDE2] = ACTIONS(1546), + [anon_sym_BANG_TILDE2] = ACTIONS(1546), + [anon_sym_like2] = ACTIONS(1546), + [anon_sym_not_DASHlike2] = ACTIONS(1546), + [anon_sym_STAR_STAR2] = ACTIONS(1546), + [anon_sym_PLUS_PLUS2] = ACTIONS(1546), + [anon_sym_SLASH2] = ACTIONS(1544), + [anon_sym_mod2] = ACTIONS(1546), + [anon_sym_SLASH_SLASH2] = ACTIONS(1546), + [anon_sym_PLUS2] = ACTIONS(1544), + [anon_sym_bit_DASHshl2] = ACTIONS(1546), + [anon_sym_bit_DASHshr2] = ACTIONS(1546), + [anon_sym_bit_DASHand2] = ACTIONS(1546), + [anon_sym_bit_DASHxor2] = ACTIONS(1546), + [anon_sym_bit_DASHor2] = ACTIONS(1546), + [anon_sym_DOT_DOT2] = ACTIONS(1544), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1546), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1546), + [anon_sym_QMARK2] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1544), + [anon_sym_DOT2] = ACTIONS(1544), + [anon_sym_err_GT] = ACTIONS(1544), + [anon_sym_out_GT] = ACTIONS(1544), + [anon_sym_e_GT] = ACTIONS(1544), + [anon_sym_o_GT] = ACTIONS(1544), + [anon_sym_err_PLUSout_GT] = ACTIONS(1544), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1544), + [anon_sym_o_PLUSe_GT] = ACTIONS(1544), + [anon_sym_e_PLUSo_GT] = ACTIONS(1544), + [anon_sym_err_GT_GT] = ACTIONS(1546), + [anon_sym_out_GT_GT] = ACTIONS(1546), + [anon_sym_e_GT_GT] = ACTIONS(1546), + [anon_sym_o_GT_GT] = ACTIONS(1546), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1546), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1546), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1546), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(3), + }, + [496] = { [sym_comment] = STATE(496), - [aux_sym__types_body_repeat1] = STATE(1505), - [aux_sym__match_pattern_record_body_repeat1] = STATE(731), + [ts_builtin_sym_end] = ACTIONS(1552), + [anon_sym_in] = ACTIONS(1552), + [sym__newline] = ACTIONS(1552), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_err_GT_PIPE] = ACTIONS(1552), + [anon_sym_out_GT_PIPE] = ACTIONS(1552), + [anon_sym_e_GT_PIPE] = ACTIONS(1552), + [anon_sym_o_GT_PIPE] = ACTIONS(1552), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), + [anon_sym_GT2] = ACTIONS(1550), + [anon_sym_DASH2] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1552), + [anon_sym_STAR2] = ACTIONS(1550), + [anon_sym_and2] = ACTIONS(1552), + [anon_sym_xor2] = ACTIONS(1552), + [anon_sym_or2] = ACTIONS(1552), + [anon_sym_not_DASHin2] = ACTIONS(1552), + [anon_sym_has2] = ACTIONS(1552), + [anon_sym_not_DASHhas2] = ACTIONS(1552), + [anon_sym_starts_DASHwith2] = ACTIONS(1552), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1552), + [anon_sym_ends_DASHwith2] = ACTIONS(1552), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1552), + [anon_sym_EQ_EQ2] = ACTIONS(1552), + [anon_sym_BANG_EQ2] = ACTIONS(1552), + [anon_sym_LT2] = ACTIONS(1550), + [anon_sym_LT_EQ2] = ACTIONS(1552), + [anon_sym_GT_EQ2] = ACTIONS(1552), + [anon_sym_EQ_TILDE2] = ACTIONS(1552), + [anon_sym_BANG_TILDE2] = ACTIONS(1552), + [anon_sym_like2] = ACTIONS(1552), + [anon_sym_not_DASHlike2] = ACTIONS(1552), + [anon_sym_STAR_STAR2] = ACTIONS(1552), + [anon_sym_PLUS_PLUS2] = ACTIONS(1552), + [anon_sym_SLASH2] = ACTIONS(1550), + [anon_sym_mod2] = ACTIONS(1552), + [anon_sym_SLASH_SLASH2] = ACTIONS(1552), + [anon_sym_PLUS2] = ACTIONS(1550), + [anon_sym_bit_DASHshl2] = ACTIONS(1552), + [anon_sym_bit_DASHshr2] = ACTIONS(1552), + [anon_sym_bit_DASHand2] = ACTIONS(1552), + [anon_sym_bit_DASHxor2] = ACTIONS(1552), + [anon_sym_bit_DASHor2] = ACTIONS(1552), + [anon_sym_DOT_DOT2] = ACTIONS(1550), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), + [anon_sym_QMARK2] = ACTIONS(1552), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_DOT2] = ACTIONS(1550), + [anon_sym_err_GT] = ACTIONS(1550), + [anon_sym_out_GT] = ACTIONS(1550), + [anon_sym_e_GT] = ACTIONS(1550), + [anon_sym_o_GT] = ACTIONS(1550), + [anon_sym_err_PLUSout_GT] = ACTIONS(1550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1550), + [anon_sym_o_PLUSe_GT] = ACTIONS(1550), + [anon_sym_e_PLUSo_GT] = ACTIONS(1550), + [anon_sym_err_GT_GT] = ACTIONS(1552), + [anon_sym_out_GT_GT] = ACTIONS(1552), + [anon_sym_e_GT_GT] = ACTIONS(1552), + [anon_sym_o_GT_GT] = ACTIONS(1552), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), + [anon_sym_POUND] = ACTIONS(3), + }, + [497] = { + [sym_cell_path] = STATE(978), + [sym_path] = STATE(712), + [sym_comment] = STATE(497), + [aux_sym__where_predicate_lhs_repeat1] = STATE(580), + [ts_builtin_sym_end] = ACTIONS(1480), + [anon_sym_in] = ACTIONS(1480), + [sym__newline] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_err_GT_PIPE] = ACTIONS(1480), + [anon_sym_out_GT_PIPE] = ACTIONS(1480), + [anon_sym_e_GT_PIPE] = ACTIONS(1480), + [anon_sym_o_GT_PIPE] = ACTIONS(1480), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), + [anon_sym_GT2] = ACTIONS(1478), + [anon_sym_DASH2] = ACTIONS(1480), + [anon_sym_STAR2] = ACTIONS(1478), + [anon_sym_and2] = ACTIONS(1480), + [anon_sym_xor2] = ACTIONS(1480), + [anon_sym_or2] = ACTIONS(1480), + [anon_sym_not_DASHin2] = ACTIONS(1480), + [anon_sym_has2] = ACTIONS(1480), + [anon_sym_not_DASHhas2] = ACTIONS(1480), + [anon_sym_starts_DASHwith2] = ACTIONS(1480), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1480), + [anon_sym_ends_DASHwith2] = ACTIONS(1480), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1480), + [anon_sym_EQ_EQ2] = ACTIONS(1480), + [anon_sym_BANG_EQ2] = ACTIONS(1480), + [anon_sym_LT2] = ACTIONS(1478), + [anon_sym_LT_EQ2] = ACTIONS(1480), + [anon_sym_GT_EQ2] = ACTIONS(1480), + [anon_sym_EQ_TILDE2] = ACTIONS(1480), + [anon_sym_BANG_TILDE2] = ACTIONS(1480), + [anon_sym_like2] = ACTIONS(1480), + [anon_sym_not_DASHlike2] = ACTIONS(1480), + [anon_sym_STAR_STAR2] = ACTIONS(1480), + [anon_sym_PLUS_PLUS2] = ACTIONS(1480), + [anon_sym_SLASH2] = ACTIONS(1478), + [anon_sym_mod2] = ACTIONS(1480), + [anon_sym_SLASH_SLASH2] = ACTIONS(1480), + [anon_sym_PLUS2] = ACTIONS(1478), + [anon_sym_bit_DASHshl2] = ACTIONS(1480), + [anon_sym_bit_DASHshr2] = ACTIONS(1480), + [anon_sym_bit_DASHand2] = ACTIONS(1480), + [anon_sym_bit_DASHxor2] = ACTIONS(1480), + [anon_sym_bit_DASHor2] = ACTIONS(1480), + [anon_sym_DOT_DOT2] = ACTIONS(1478), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), + [anon_sym_DOT2] = ACTIONS(1884), + [anon_sym_err_GT] = ACTIONS(1478), + [anon_sym_out_GT] = ACTIONS(1478), + [anon_sym_e_GT] = ACTIONS(1478), + [anon_sym_o_GT] = ACTIONS(1478), + [anon_sym_err_PLUSout_GT] = ACTIONS(1478), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), + [anon_sym_o_PLUSe_GT] = ACTIONS(1478), + [anon_sym_e_PLUSo_GT] = ACTIONS(1478), + [anon_sym_err_GT_GT] = ACTIONS(1480), + [anon_sym_out_GT_GT] = ACTIONS(1480), + [anon_sym_e_GT_GT] = ACTIONS(1480), + [anon_sym_o_GT_GT] = ACTIONS(1480), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), + [anon_sym_POUND] = ACTIONS(3), + }, + [498] = { + [sym__path_suffix] = STATE(713), + [sym_comment] = STATE(498), + [ts_builtin_sym_end] = ACTIONS(1472), + [anon_sym_in] = ACTIONS(1472), + [sym__newline] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1472), + [anon_sym_err_GT_PIPE] = ACTIONS(1472), + [anon_sym_out_GT_PIPE] = ACTIONS(1472), + [anon_sym_e_GT_PIPE] = ACTIONS(1472), + [anon_sym_o_GT_PIPE] = ACTIONS(1472), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), + [anon_sym_GT2] = ACTIONS(1470), + [anon_sym_DASH2] = ACTIONS(1472), + [anon_sym_STAR2] = ACTIONS(1470), + [anon_sym_and2] = ACTIONS(1472), + [anon_sym_xor2] = ACTIONS(1472), + [anon_sym_or2] = ACTIONS(1472), + [anon_sym_not_DASHin2] = ACTIONS(1472), + [anon_sym_has2] = ACTIONS(1472), + [anon_sym_not_DASHhas2] = ACTIONS(1472), + [anon_sym_starts_DASHwith2] = ACTIONS(1472), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1472), + [anon_sym_ends_DASHwith2] = ACTIONS(1472), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1472), + [anon_sym_EQ_EQ2] = ACTIONS(1472), + [anon_sym_BANG_EQ2] = ACTIONS(1472), + [anon_sym_LT2] = ACTIONS(1470), + [anon_sym_LT_EQ2] = ACTIONS(1472), + [anon_sym_GT_EQ2] = ACTIONS(1472), + [anon_sym_EQ_TILDE2] = ACTIONS(1472), + [anon_sym_BANG_TILDE2] = ACTIONS(1472), + [anon_sym_like2] = ACTIONS(1472), + [anon_sym_not_DASHlike2] = ACTIONS(1472), + [anon_sym_STAR_STAR2] = ACTIONS(1472), + [anon_sym_PLUS_PLUS2] = ACTIONS(1472), + [anon_sym_SLASH2] = ACTIONS(1470), + [anon_sym_mod2] = ACTIONS(1472), + [anon_sym_SLASH_SLASH2] = ACTIONS(1472), + [anon_sym_PLUS2] = ACTIONS(1470), + [anon_sym_bit_DASHshl2] = ACTIONS(1472), + [anon_sym_bit_DASHshr2] = ACTIONS(1472), + [anon_sym_bit_DASHand2] = ACTIONS(1472), + [anon_sym_bit_DASHxor2] = ACTIONS(1472), + [anon_sym_bit_DASHor2] = ACTIONS(1472), + [anon_sym_DOT_DOT2] = ACTIONS(1470), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), + [anon_sym_QMARK2] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1888), + [anon_sym_DOT2] = ACTIONS(1470), + [anon_sym_err_GT] = ACTIONS(1470), + [anon_sym_out_GT] = ACTIONS(1470), + [anon_sym_e_GT] = ACTIONS(1470), + [anon_sym_o_GT] = ACTIONS(1470), + [anon_sym_err_PLUSout_GT] = ACTIONS(1470), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), + [anon_sym_o_PLUSe_GT] = ACTIONS(1470), + [anon_sym_e_PLUSo_GT] = ACTIONS(1470), + [anon_sym_err_GT_GT] = ACTIONS(1472), + [anon_sym_out_GT_GT] = ACTIONS(1472), + [anon_sym_e_GT_GT] = ACTIONS(1472), + [anon_sym_o_GT_GT] = ACTIONS(1472), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), + [anon_sym_POUND] = ACTIONS(3), + }, + [499] = { + [sym_comment] = STATE(499), + [anon_sym_EQ] = ACTIONS(1890), + [anon_sym_PLUS_EQ] = ACTIONS(1892), + [anon_sym_DASH_EQ] = ACTIONS(1892), + [anon_sym_STAR_EQ] = ACTIONS(1892), + [anon_sym_SLASH_EQ] = ACTIONS(1892), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1892), + [anon_sym_in] = ACTIONS(1736), + [sym__newline] = ACTIONS(1736), + [anon_sym_PIPE] = ACTIONS(1736), + [anon_sym_err_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_GT_PIPE] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), + [anon_sym_GT2] = ACTIONS(1610), + [anon_sym_DASH2] = ACTIONS(1610), + [anon_sym_STAR2] = ACTIONS(1610), + [anon_sym_and2] = ACTIONS(1736), + [anon_sym_xor2] = ACTIONS(1736), + [anon_sym_or2] = ACTIONS(1736), + [anon_sym_not_DASHin2] = ACTIONS(1736), + [anon_sym_has2] = ACTIONS(1736), + [anon_sym_not_DASHhas2] = ACTIONS(1736), + [anon_sym_starts_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), + [anon_sym_ends_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), + [anon_sym_EQ_EQ2] = ACTIONS(1736), + [anon_sym_BANG_EQ2] = ACTIONS(1736), + [anon_sym_LT2] = ACTIONS(1610), + [anon_sym_LT_EQ2] = ACTIONS(1736), + [anon_sym_GT_EQ2] = ACTIONS(1736), + [anon_sym_EQ_TILDE2] = ACTIONS(1736), + [anon_sym_BANG_TILDE2] = ACTIONS(1736), + [anon_sym_like2] = ACTIONS(1736), + [anon_sym_not_DASHlike2] = ACTIONS(1736), + [anon_sym_STAR_STAR2] = ACTIONS(1736), + [anon_sym_PLUS_PLUS2] = ACTIONS(1610), + [anon_sym_SLASH2] = ACTIONS(1610), + [anon_sym_mod2] = ACTIONS(1736), + [anon_sym_SLASH_SLASH2] = ACTIONS(1736), + [anon_sym_PLUS2] = ACTIONS(1610), + [anon_sym_bit_DASHshl2] = ACTIONS(1736), + [anon_sym_bit_DASHshr2] = ACTIONS(1736), + [anon_sym_bit_DASHand2] = ACTIONS(1736), + [anon_sym_bit_DASHxor2] = ACTIONS(1736), + [anon_sym_bit_DASHor2] = ACTIONS(1736), + [anon_sym_DOT_DOT2] = ACTIONS(1614), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1616), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1616), + [anon_sym_err_GT] = ACTIONS(1610), + [anon_sym_out_GT] = ACTIONS(1610), + [anon_sym_e_GT] = ACTIONS(1610), + [anon_sym_o_GT] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT] = ACTIONS(1610), + [anon_sym_err_GT_GT] = ACTIONS(1736), + [anon_sym_out_GT_GT] = ACTIONS(1736), + [anon_sym_e_GT_GT] = ACTIONS(1736), + [anon_sym_o_GT_GT] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), + [anon_sym_POUND] = ACTIONS(3), + }, + [500] = { + [sym_comment] = STATE(500), + [ts_builtin_sym_end] = ACTIONS(1492), + [anon_sym_in] = ACTIONS(1492), + [sym__newline] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_err_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_GT_PIPE] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), + [anon_sym_GT2] = ACTIONS(1490), + [anon_sym_DASH2] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_STAR2] = ACTIONS(1490), + [anon_sym_and2] = ACTIONS(1492), + [anon_sym_xor2] = ACTIONS(1492), + [anon_sym_or2] = ACTIONS(1492), + [anon_sym_not_DASHin2] = ACTIONS(1492), + [anon_sym_has2] = ACTIONS(1492), + [anon_sym_not_DASHhas2] = ACTIONS(1492), + [anon_sym_starts_DASHwith2] = ACTIONS(1492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1492), + [anon_sym_ends_DASHwith2] = ACTIONS(1492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1492), + [anon_sym_EQ_EQ2] = ACTIONS(1492), + [anon_sym_BANG_EQ2] = ACTIONS(1492), + [anon_sym_LT2] = ACTIONS(1490), + [anon_sym_LT_EQ2] = ACTIONS(1492), + [anon_sym_GT_EQ2] = ACTIONS(1492), + [anon_sym_EQ_TILDE2] = ACTIONS(1492), + [anon_sym_BANG_TILDE2] = ACTIONS(1492), + [anon_sym_like2] = ACTIONS(1492), + [anon_sym_not_DASHlike2] = ACTIONS(1492), + [anon_sym_STAR_STAR2] = ACTIONS(1492), + [anon_sym_PLUS_PLUS2] = ACTIONS(1492), + [anon_sym_SLASH2] = ACTIONS(1490), + [anon_sym_mod2] = ACTIONS(1492), + [anon_sym_SLASH_SLASH2] = ACTIONS(1492), + [anon_sym_PLUS2] = ACTIONS(1490), + [anon_sym_bit_DASHshl2] = ACTIONS(1492), + [anon_sym_bit_DASHshr2] = ACTIONS(1492), + [anon_sym_bit_DASHand2] = ACTIONS(1492), + [anon_sym_bit_DASHxor2] = ACTIONS(1492), + [anon_sym_bit_DASHor2] = ACTIONS(1492), + [anon_sym_DOT_DOT2] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), + [anon_sym_QMARK2] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_DOT2] = ACTIONS(1490), + [anon_sym_err_GT] = ACTIONS(1490), + [anon_sym_out_GT] = ACTIONS(1490), + [anon_sym_e_GT] = ACTIONS(1490), + [anon_sym_o_GT] = ACTIONS(1490), + [anon_sym_err_PLUSout_GT] = ACTIONS(1490), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1490), + [anon_sym_o_PLUSe_GT] = ACTIONS(1490), + [anon_sym_e_PLUSo_GT] = ACTIONS(1490), + [anon_sym_err_GT_GT] = ACTIONS(1492), + [anon_sym_out_GT_GT] = ACTIONS(1492), + [anon_sym_e_GT_GT] = ACTIONS(1492), + [anon_sym_o_GT_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(3), + }, + [501] = { + [sym_cell_path] = STATE(973), + [sym_path] = STATE(466), + [sym_comment] = STATE(501), + [aux_sym__where_predicate_lhs_repeat1] = STATE(430), + [anon_sym_in] = ACTIONS(1894), + [sym__newline] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_err_GT_PIPE] = ACTIONS(1894), + [anon_sym_out_GT_PIPE] = ACTIONS(1894), + [anon_sym_e_GT_PIPE] = ACTIONS(1894), + [anon_sym_o_GT_PIPE] = ACTIONS(1894), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1894), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1894), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1894), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1894), + [anon_sym_RPAREN] = ACTIONS(1894), + [anon_sym_GT2] = ACTIONS(1896), + [anon_sym_DASH2] = ACTIONS(1894), + [anon_sym_LBRACE] = ACTIONS(1894), + [anon_sym_RBRACE] = ACTIONS(1894), + [anon_sym_EQ_GT] = ACTIONS(1894), + [anon_sym_STAR2] = ACTIONS(1896), + [anon_sym_and2] = ACTIONS(1894), + [anon_sym_xor2] = ACTIONS(1894), + [anon_sym_or2] = ACTIONS(1894), + [anon_sym_not_DASHin2] = ACTIONS(1894), + [anon_sym_has2] = ACTIONS(1894), + [anon_sym_not_DASHhas2] = ACTIONS(1894), + [anon_sym_starts_DASHwith2] = ACTIONS(1894), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1894), + [anon_sym_ends_DASHwith2] = ACTIONS(1894), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1894), + [anon_sym_EQ_EQ2] = ACTIONS(1894), + [anon_sym_BANG_EQ2] = ACTIONS(1894), + [anon_sym_LT2] = ACTIONS(1896), + [anon_sym_LT_EQ2] = ACTIONS(1894), + [anon_sym_GT_EQ2] = ACTIONS(1894), + [anon_sym_EQ_TILDE2] = ACTIONS(1894), + [anon_sym_BANG_TILDE2] = ACTIONS(1894), + [anon_sym_like2] = ACTIONS(1894), + [anon_sym_not_DASHlike2] = ACTIONS(1894), + [anon_sym_STAR_STAR2] = ACTIONS(1894), + [anon_sym_PLUS_PLUS2] = ACTIONS(1894), + [anon_sym_SLASH2] = ACTIONS(1896), + [anon_sym_mod2] = ACTIONS(1894), + [anon_sym_SLASH_SLASH2] = ACTIONS(1894), + [anon_sym_PLUS2] = ACTIONS(1896), + [anon_sym_bit_DASHshl2] = ACTIONS(1894), + [anon_sym_bit_DASHshr2] = ACTIONS(1894), + [anon_sym_bit_DASHand2] = ACTIONS(1894), + [anon_sym_bit_DASHxor2] = ACTIONS(1894), + [anon_sym_bit_DASHor2] = ACTIONS(1894), + [anon_sym_DOT2] = ACTIONS(1898), + [anon_sym_err_GT] = ACTIONS(1896), + [anon_sym_out_GT] = ACTIONS(1896), + [anon_sym_e_GT] = ACTIONS(1896), + [anon_sym_o_GT] = ACTIONS(1896), + [anon_sym_err_PLUSout_GT] = ACTIONS(1896), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1896), + [anon_sym_o_PLUSe_GT] = ACTIONS(1896), + [anon_sym_e_PLUSo_GT] = ACTIONS(1896), + [anon_sym_err_GT_GT] = ACTIONS(1894), + [anon_sym_out_GT_GT] = ACTIONS(1894), + [anon_sym_e_GT_GT] = ACTIONS(1894), + [anon_sym_o_GT_GT] = ACTIONS(1894), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1894), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1894), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1894), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1894), + [anon_sym_POUND] = ACTIONS(3), + }, + [502] = { + [sym_comment] = STATE(502), + [anon_sym_if] = ACTIONS(1900), + [anon_sym_in] = ACTIONS(1900), + [sym__newline] = ACTIONS(1900), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_PIPE] = ACTIONS(1900), + [anon_sym_err_GT_PIPE] = ACTIONS(1900), + [anon_sym_out_GT_PIPE] = ACTIONS(1900), + [anon_sym_e_GT_PIPE] = ACTIONS(1900), + [anon_sym_o_GT_PIPE] = ACTIONS(1900), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1900), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1900), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1900), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1900), + [anon_sym_RPAREN] = ACTIONS(1900), + [anon_sym_GT2] = ACTIONS(1902), + [anon_sym_DASH2] = ACTIONS(1900), + [anon_sym_LBRACE] = ACTIONS(1900), + [anon_sym_RBRACE] = ACTIONS(1900), + [anon_sym_EQ_GT] = ACTIONS(1900), + [anon_sym_STAR2] = ACTIONS(1902), + [anon_sym_and2] = ACTIONS(1900), + [anon_sym_xor2] = ACTIONS(1900), + [anon_sym_or2] = ACTIONS(1900), + [anon_sym_not_DASHin2] = ACTIONS(1900), + [anon_sym_has2] = ACTIONS(1900), + [anon_sym_not_DASHhas2] = ACTIONS(1900), + [anon_sym_starts_DASHwith2] = ACTIONS(1900), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1900), + [anon_sym_ends_DASHwith2] = ACTIONS(1900), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1900), + [anon_sym_EQ_EQ2] = ACTIONS(1900), + [anon_sym_BANG_EQ2] = ACTIONS(1900), + [anon_sym_LT2] = ACTIONS(1902), + [anon_sym_LT_EQ2] = ACTIONS(1900), + [anon_sym_GT_EQ2] = ACTIONS(1900), + [anon_sym_EQ_TILDE2] = ACTIONS(1900), + [anon_sym_BANG_TILDE2] = ACTIONS(1900), + [anon_sym_like2] = ACTIONS(1900), + [anon_sym_not_DASHlike2] = ACTIONS(1900), + [anon_sym_STAR_STAR2] = ACTIONS(1900), + [anon_sym_PLUS_PLUS2] = ACTIONS(1900), + [anon_sym_SLASH2] = ACTIONS(1902), + [anon_sym_mod2] = ACTIONS(1900), + [anon_sym_SLASH_SLASH2] = ACTIONS(1900), + [anon_sym_PLUS2] = ACTIONS(1902), + [anon_sym_bit_DASHshl2] = ACTIONS(1900), + [anon_sym_bit_DASHshr2] = ACTIONS(1900), + [anon_sym_bit_DASHand2] = ACTIONS(1900), + [anon_sym_bit_DASHxor2] = ACTIONS(1900), + [anon_sym_bit_DASHor2] = ACTIONS(1900), + [anon_sym_DOT_DOT2] = ACTIONS(1902), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1900), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1900), + [anon_sym_err_GT] = ACTIONS(1902), + [anon_sym_out_GT] = ACTIONS(1902), + [anon_sym_e_GT] = ACTIONS(1902), + [anon_sym_o_GT] = ACTIONS(1902), + [anon_sym_err_PLUSout_GT] = ACTIONS(1902), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1902), + [anon_sym_o_PLUSe_GT] = ACTIONS(1902), + [anon_sym_e_PLUSo_GT] = ACTIONS(1902), + [anon_sym_err_GT_GT] = ACTIONS(1900), + [anon_sym_out_GT_GT] = ACTIONS(1900), + [anon_sym_e_GT_GT] = ACTIONS(1900), + [anon_sym_o_GT_GT] = ACTIONS(1900), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1900), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1900), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1900), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1900), + [anon_sym_POUND] = ACTIONS(3), + }, + [503] = { + [sym_cell_path] = STATE(935), + [sym_path] = STATE(712), + [sym_comment] = STATE(503), + [aux_sym__where_predicate_lhs_repeat1] = STATE(580), + [ts_builtin_sym_end] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [sym__newline] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_err_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_GT_PIPE] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1683), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1683), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1683), + [anon_sym_xor2] = ACTIONS(1683), + [anon_sym_or2] = ACTIONS(1683), + [anon_sym_not_DASHin2] = ACTIONS(1683), + [anon_sym_has2] = ACTIONS(1683), + [anon_sym_not_DASHhas2] = ACTIONS(1683), + [anon_sym_starts_DASHwith2] = ACTIONS(1683), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1683), + [anon_sym_ends_DASHwith2] = ACTIONS(1683), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1683), + [anon_sym_EQ_EQ2] = ACTIONS(1683), + [anon_sym_BANG_EQ2] = ACTIONS(1683), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1683), + [anon_sym_GT_EQ2] = ACTIONS(1683), + [anon_sym_EQ_TILDE2] = ACTIONS(1683), + [anon_sym_BANG_TILDE2] = ACTIONS(1683), + [anon_sym_like2] = ACTIONS(1683), + [anon_sym_not_DASHlike2] = ACTIONS(1683), + [anon_sym_STAR_STAR2] = ACTIONS(1683), + [anon_sym_PLUS_PLUS2] = ACTIONS(1683), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1683), + [anon_sym_SLASH_SLASH2] = ACTIONS(1683), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1683), + [anon_sym_bit_DASHshr2] = ACTIONS(1683), + [anon_sym_bit_DASHand2] = ACTIONS(1683), + [anon_sym_bit_DASHxor2] = ACTIONS(1683), + [anon_sym_bit_DASHor2] = ACTIONS(1683), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [anon_sym_DOT2] = ACTIONS(1884), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1683), + [anon_sym_out_GT_GT] = ACTIONS(1683), + [anon_sym_e_GT_GT] = ACTIONS(1683), + [anon_sym_o_GT_GT] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1683), + [anon_sym_POUND] = ACTIONS(3), + }, + [504] = { + [sym_cell_path] = STATE(969), + [sym_path] = STATE(466), + [sym_comment] = STATE(504), + [aux_sym__where_predicate_lhs_repeat1] = STATE(430), + [anon_sym_in] = ACTIONS(1904), + [sym__newline] = ACTIONS(1904), + [anon_sym_SEMI] = ACTIONS(1904), + [anon_sym_PIPE] = ACTIONS(1904), + [anon_sym_err_GT_PIPE] = ACTIONS(1904), + [anon_sym_out_GT_PIPE] = ACTIONS(1904), + [anon_sym_e_GT_PIPE] = ACTIONS(1904), + [anon_sym_o_GT_PIPE] = ACTIONS(1904), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1904), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1904), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1904), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1904), + [anon_sym_RPAREN] = ACTIONS(1904), + [anon_sym_GT2] = ACTIONS(1906), + [anon_sym_DASH2] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(1904), + [anon_sym_EQ_GT] = ACTIONS(1904), + [anon_sym_STAR2] = ACTIONS(1906), + [anon_sym_and2] = ACTIONS(1904), + [anon_sym_xor2] = ACTIONS(1904), + [anon_sym_or2] = ACTIONS(1904), + [anon_sym_not_DASHin2] = ACTIONS(1904), + [anon_sym_has2] = ACTIONS(1904), + [anon_sym_not_DASHhas2] = ACTIONS(1904), + [anon_sym_starts_DASHwith2] = ACTIONS(1904), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1904), + [anon_sym_ends_DASHwith2] = ACTIONS(1904), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1904), + [anon_sym_EQ_EQ2] = ACTIONS(1904), + [anon_sym_BANG_EQ2] = ACTIONS(1904), + [anon_sym_LT2] = ACTIONS(1906), + [anon_sym_LT_EQ2] = ACTIONS(1904), + [anon_sym_GT_EQ2] = ACTIONS(1904), + [anon_sym_EQ_TILDE2] = ACTIONS(1904), + [anon_sym_BANG_TILDE2] = ACTIONS(1904), + [anon_sym_like2] = ACTIONS(1904), + [anon_sym_not_DASHlike2] = ACTIONS(1904), + [anon_sym_STAR_STAR2] = ACTIONS(1904), + [anon_sym_PLUS_PLUS2] = ACTIONS(1904), + [anon_sym_SLASH2] = ACTIONS(1906), + [anon_sym_mod2] = ACTIONS(1904), + [anon_sym_SLASH_SLASH2] = ACTIONS(1904), + [anon_sym_PLUS2] = ACTIONS(1906), + [anon_sym_bit_DASHshl2] = ACTIONS(1904), + [anon_sym_bit_DASHshr2] = ACTIONS(1904), + [anon_sym_bit_DASHand2] = ACTIONS(1904), + [anon_sym_bit_DASHxor2] = ACTIONS(1904), + [anon_sym_bit_DASHor2] = ACTIONS(1904), + [anon_sym_DOT2] = ACTIONS(1898), + [anon_sym_err_GT] = ACTIONS(1906), + [anon_sym_out_GT] = ACTIONS(1906), + [anon_sym_e_GT] = ACTIONS(1906), + [anon_sym_o_GT] = ACTIONS(1906), + [anon_sym_err_PLUSout_GT] = ACTIONS(1906), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1906), + [anon_sym_o_PLUSe_GT] = ACTIONS(1906), + [anon_sym_e_PLUSo_GT] = ACTIONS(1906), + [anon_sym_err_GT_GT] = ACTIONS(1904), + [anon_sym_out_GT_GT] = ACTIONS(1904), + [anon_sym_e_GT_GT] = ACTIONS(1904), + [anon_sym_o_GT_GT] = ACTIONS(1904), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1904), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1904), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1904), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1904), + [anon_sym_POUND] = ACTIONS(3), + }, + [505] = { + [sym_cmd_identifier] = STATE(4572), + [sym_expr_parenthesized] = STATE(5187), + [sym__spread_parenthesized] = STATE(4951), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(5187), + [sym_val_number] = STATE(5187), + [sym__val_number_decimal] = STATE(2013), + [sym__val_number] = STATE(705), + [sym_val_string] = STATE(5187), + [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(5187), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym__spread_record] = STATE(4951), + [sym_record_entry] = STATE(4772), + [sym__record_key] = STATE(5305), + [sym_comment] = STATE(505), + [aux_sym__types_body_repeat1] = STATE(1501), + [aux_sym_record_body_repeat1] = STATE(744), [anon_sym_export] = ACTIONS(145), [anon_sym_alias] = ACTIONS(139), [anon_sym_let] = ACTIONS(139), @@ -88021,496 +88626,934 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(139), [anon_sym_match] = ACTIONS(139), [anon_sym_in] = ACTIONS(145), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token3] = ACTIONS(1750), - [aux_sym_cmd_identifier_token4] = ACTIONS(1750), - [aux_sym_cmd_identifier_token5] = ACTIONS(1750), - [sym__newline] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1746), + [aux_sym_cmd_identifier_token3] = ACTIONS(1748), + [aux_sym_cmd_identifier_token4] = ACTIONS(1748), + [aux_sym_cmd_identifier_token5] = ACTIONS(1748), + [sym__newline] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_DOLLAR] = ACTIONS(1754), [anon_sym_DASH2] = ACTIONS(177), [anon_sym_PLUS2] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1760), - [aux_sym__val_number_decimal_token2] = ACTIONS(1762), - [aux_sym__val_number_decimal_token3] = ACTIONS(1764), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1768), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1772), + [sym_raw_string_begin] = ACTIONS(1770), }, - [STATE(497)] = { - [sym_comment] = STATE(497), - [anon_sym_in] = ACTIONS(1602), - [sym__newline] = ACTIONS(1602), - [anon_sym_SEMI] = ACTIONS(1602), - [anon_sym_PIPE] = ACTIONS(1602), - [anon_sym_err_GT_PIPE] = ACTIONS(1602), - [anon_sym_out_GT_PIPE] = ACTIONS(1602), - [anon_sym_e_GT_PIPE] = ACTIONS(1602), - [anon_sym_o_GT_PIPE] = ACTIONS(1602), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1602), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1602), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1602), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(1602), - [anon_sym_GT2] = ACTIONS(1600), - [anon_sym_DASH2] = ACTIONS(1602), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_RBRACE] = ACTIONS(1602), - [anon_sym_EQ_GT] = ACTIONS(1602), - [anon_sym_STAR2] = ACTIONS(1600), - [anon_sym_and2] = ACTIONS(1602), - [anon_sym_xor2] = ACTIONS(1602), - [anon_sym_or2] = ACTIONS(1602), - [anon_sym_not_DASHin2] = ACTIONS(1602), - [anon_sym_has2] = ACTIONS(1602), - [anon_sym_not_DASHhas2] = ACTIONS(1602), - [anon_sym_starts_DASHwith2] = ACTIONS(1602), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1602), - [anon_sym_ends_DASHwith2] = ACTIONS(1602), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1602), - [anon_sym_EQ_EQ2] = ACTIONS(1602), - [anon_sym_BANG_EQ2] = ACTIONS(1602), - [anon_sym_LT2] = ACTIONS(1600), - [anon_sym_LT_EQ2] = ACTIONS(1602), - [anon_sym_GT_EQ2] = ACTIONS(1602), - [anon_sym_EQ_TILDE2] = ACTIONS(1602), - [anon_sym_BANG_TILDE2] = ACTIONS(1602), - [anon_sym_like2] = ACTIONS(1602), - [anon_sym_not_DASHlike2] = ACTIONS(1602), - [anon_sym_STAR_STAR2] = ACTIONS(1602), - [anon_sym_PLUS_PLUS2] = ACTIONS(1602), - [anon_sym_SLASH2] = ACTIONS(1600), - [anon_sym_mod2] = ACTIONS(1602), - [anon_sym_SLASH_SLASH2] = ACTIONS(1602), - [anon_sym_PLUS2] = ACTIONS(1600), - [anon_sym_bit_DASHshl2] = ACTIONS(1602), - [anon_sym_bit_DASHshr2] = ACTIONS(1602), - [anon_sym_bit_DASHand2] = ACTIONS(1602), - [anon_sym_bit_DASHxor2] = ACTIONS(1602), - [anon_sym_bit_DASHor2] = ACTIONS(1602), - [anon_sym_DOT_DOT2] = ACTIONS(1600), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1602), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1602), - [anon_sym_COLON2] = ACTIONS(1602), - [anon_sym_err_GT] = ACTIONS(1600), - [anon_sym_out_GT] = ACTIONS(1600), - [anon_sym_e_GT] = ACTIONS(1600), - [anon_sym_o_GT] = ACTIONS(1600), - [anon_sym_err_PLUSout_GT] = ACTIONS(1600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1600), - [anon_sym_o_PLUSe_GT] = ACTIONS(1600), - [anon_sym_e_PLUSo_GT] = ACTIONS(1600), - [anon_sym_err_GT_GT] = ACTIONS(1602), - [anon_sym_out_GT_GT] = ACTIONS(1602), - [anon_sym_e_GT_GT] = ACTIONS(1602), - [anon_sym_o_GT_GT] = ACTIONS(1602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1602), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(498)] = { - [sym_comment] = STATE(498), - [ts_builtin_sym_end] = ACTIONS(1488), - [anon_sym_in] = ACTIONS(1488), - [sym__newline] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1488), - [anon_sym_PIPE] = ACTIONS(1488), - [anon_sym_err_GT_PIPE] = ACTIONS(1488), - [anon_sym_out_GT_PIPE] = ACTIONS(1488), - [anon_sym_e_GT_PIPE] = ACTIONS(1488), - [anon_sym_o_GT_PIPE] = ACTIONS(1488), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1488), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1488), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1488), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1488), - [anon_sym_GT2] = ACTIONS(1486), - [anon_sym_DASH2] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_STAR2] = ACTIONS(1486), - [anon_sym_and2] = ACTIONS(1488), - [anon_sym_xor2] = ACTIONS(1488), - [anon_sym_or2] = ACTIONS(1488), - [anon_sym_not_DASHin2] = ACTIONS(1488), - [anon_sym_has2] = ACTIONS(1488), - [anon_sym_not_DASHhas2] = ACTIONS(1488), - [anon_sym_starts_DASHwith2] = ACTIONS(1488), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1488), - [anon_sym_ends_DASHwith2] = ACTIONS(1488), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1488), - [anon_sym_EQ_EQ2] = ACTIONS(1488), - [anon_sym_BANG_EQ2] = ACTIONS(1488), - [anon_sym_LT2] = ACTIONS(1486), - [anon_sym_LT_EQ2] = ACTIONS(1488), - [anon_sym_GT_EQ2] = ACTIONS(1488), - [anon_sym_EQ_TILDE2] = ACTIONS(1488), - [anon_sym_BANG_TILDE2] = ACTIONS(1488), - [anon_sym_like2] = ACTIONS(1488), - [anon_sym_not_DASHlike2] = ACTIONS(1488), - [anon_sym_STAR_STAR2] = ACTIONS(1488), - [anon_sym_PLUS_PLUS2] = ACTIONS(1488), - [anon_sym_SLASH2] = ACTIONS(1486), - [anon_sym_mod2] = ACTIONS(1488), - [anon_sym_SLASH_SLASH2] = ACTIONS(1488), - [anon_sym_PLUS2] = ACTIONS(1486), - [anon_sym_bit_DASHshl2] = ACTIONS(1488), - [anon_sym_bit_DASHshr2] = ACTIONS(1488), - [anon_sym_bit_DASHand2] = ACTIONS(1488), - [anon_sym_bit_DASHxor2] = ACTIONS(1488), - [anon_sym_bit_DASHor2] = ACTIONS(1488), - [anon_sym_DOT_DOT2] = ACTIONS(1486), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1488), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1488), - [anon_sym_QMARK2] = ACTIONS(1488), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_DOT2] = ACTIONS(1486), - [anon_sym_err_GT] = ACTIONS(1486), - [anon_sym_out_GT] = ACTIONS(1486), - [anon_sym_e_GT] = ACTIONS(1486), - [anon_sym_o_GT] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT] = ACTIONS(1486), - [anon_sym_err_GT_GT] = ACTIONS(1488), - [anon_sym_out_GT_GT] = ACTIONS(1488), - [anon_sym_e_GT_GT] = ACTIONS(1488), - [anon_sym_o_GT_GT] = ACTIONS(1488), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1488), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1488), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1488), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1488), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(499)] = { - [sym_cell_path] = STATE(959), - [sym_path] = STATE(472), - [sym_comment] = STATE(499), - [aux_sym__where_predicate_lhs_repeat1] = STATE(438), - [anon_sym_in] = ACTIONS(1880), - [sym__newline] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1880), - [anon_sym_err_GT_PIPE] = ACTIONS(1880), - [anon_sym_out_GT_PIPE] = ACTIONS(1880), - [anon_sym_e_GT_PIPE] = ACTIONS(1880), - [anon_sym_o_GT_PIPE] = ACTIONS(1880), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1880), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1880), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1880), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1880), - [anon_sym_RPAREN] = ACTIONS(1880), - [anon_sym_GT2] = ACTIONS(1883), - [anon_sym_DASH2] = ACTIONS(1880), - [anon_sym_LBRACE] = ACTIONS(1880), - [anon_sym_RBRACE] = ACTIONS(1880), - [anon_sym_EQ_GT] = ACTIONS(1880), - [anon_sym_STAR2] = ACTIONS(1883), - [anon_sym_and2] = ACTIONS(1880), - [anon_sym_xor2] = ACTIONS(1880), - [anon_sym_or2] = ACTIONS(1880), - [anon_sym_not_DASHin2] = ACTIONS(1880), - [anon_sym_has2] = ACTIONS(1880), - [anon_sym_not_DASHhas2] = ACTIONS(1880), - [anon_sym_starts_DASHwith2] = ACTIONS(1880), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1880), - [anon_sym_ends_DASHwith2] = ACTIONS(1880), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1880), - [anon_sym_EQ_EQ2] = ACTIONS(1880), - [anon_sym_BANG_EQ2] = ACTIONS(1880), - [anon_sym_LT2] = ACTIONS(1883), - [anon_sym_LT_EQ2] = ACTIONS(1880), - [anon_sym_GT_EQ2] = ACTIONS(1880), - [anon_sym_EQ_TILDE2] = ACTIONS(1880), - [anon_sym_BANG_TILDE2] = ACTIONS(1880), - [anon_sym_like2] = ACTIONS(1880), - [anon_sym_not_DASHlike2] = ACTIONS(1880), - [anon_sym_STAR_STAR2] = ACTIONS(1880), - [anon_sym_PLUS_PLUS2] = ACTIONS(1880), - [anon_sym_SLASH2] = ACTIONS(1883), - [anon_sym_mod2] = ACTIONS(1880), - [anon_sym_SLASH_SLASH2] = ACTIONS(1880), - [anon_sym_PLUS2] = ACTIONS(1883), - [anon_sym_bit_DASHshl2] = ACTIONS(1880), - [anon_sym_bit_DASHshr2] = ACTIONS(1880), - [anon_sym_bit_DASHand2] = ACTIONS(1880), - [anon_sym_bit_DASHxor2] = ACTIONS(1880), - [anon_sym_bit_DASHor2] = ACTIONS(1880), - [anon_sym_DOT2] = ACTIONS(1886), - [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(1880), - [anon_sym_out_GT_GT] = ACTIONS(1880), - [anon_sym_e_GT_GT] = ACTIONS(1880), - [anon_sym_o_GT_GT] = ACTIONS(1880), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1880), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1880), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1880), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1880), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(500)] = { - [sym_comment] = STATE(500), - [ts_builtin_sym_end] = ACTIONS(1543), - [anon_sym_in] = ACTIONS(1543), - [sym__newline] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_PIPE] = ACTIONS(1543), - [anon_sym_err_GT_PIPE] = ACTIONS(1543), - [anon_sym_out_GT_PIPE] = ACTIONS(1543), - [anon_sym_e_GT_PIPE] = ACTIONS(1543), - [anon_sym_o_GT_PIPE] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1543), - [anon_sym_GT2] = ACTIONS(1541), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_LBRACE] = ACTIONS(1543), - [anon_sym_STAR2] = ACTIONS(1541), - [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(1541), - [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(1541), - [anon_sym_mod2] = ACTIONS(1543), - [anon_sym_SLASH_SLASH2] = ACTIONS(1543), - [anon_sym_PLUS2] = ACTIONS(1541), - [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(1541), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1543), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1543), - [anon_sym_QMARK2] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_DOT2] = ACTIONS(1541), - [anon_sym_err_GT] = ACTIONS(1541), - [anon_sym_out_GT] = ACTIONS(1541), - [anon_sym_e_GT] = ACTIONS(1541), - [anon_sym_o_GT] = ACTIONS(1541), - [anon_sym_err_PLUSout_GT] = ACTIONS(1541), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1541), - [anon_sym_o_PLUSe_GT] = ACTIONS(1541), - [anon_sym_e_PLUSo_GT] = ACTIONS(1541), - [anon_sym_err_GT_GT] = ACTIONS(1543), - [anon_sym_out_GT_GT] = ACTIONS(1543), - [anon_sym_e_GT_GT] = ACTIONS(1543), - [anon_sym_o_GT_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1543), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(501)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(501), - [anon_sym_else] = ACTIONS(1888), - [anon_sym_catch] = ACTIONS(1888), - [anon_sym_finally] = ACTIONS(1888), - [anon_sym_in] = ACTIONS(1888), - [sym__newline] = ACTIONS(1890), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_err_GT_PIPE] = ACTIONS(1888), - [anon_sym_out_GT_PIPE] = ACTIONS(1888), - [anon_sym_e_GT_PIPE] = ACTIONS(1888), - [anon_sym_o_GT_PIPE] = ACTIONS(1888), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1888), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1888), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1888), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1888), - [anon_sym_COLON] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_GT2] = ACTIONS(1893), - [anon_sym_DASH2] = ACTIONS(1888), - [anon_sym_LBRACE] = ACTIONS(1888), - [anon_sym_STAR2] = ACTIONS(1893), - [anon_sym_and2] = ACTIONS(1888), - [anon_sym_xor2] = ACTIONS(1888), - [anon_sym_or2] = ACTIONS(1888), - [anon_sym_not_DASHin2] = ACTIONS(1888), - [anon_sym_has2] = ACTIONS(1888), - [anon_sym_not_DASHhas2] = ACTIONS(1888), - [anon_sym_starts_DASHwith2] = ACTIONS(1888), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1888), - [anon_sym_ends_DASHwith2] = ACTIONS(1888), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1888), - [anon_sym_EQ_EQ2] = ACTIONS(1888), - [anon_sym_BANG_EQ2] = ACTIONS(1888), - [anon_sym_LT2] = ACTIONS(1893), - [anon_sym_LT_EQ2] = ACTIONS(1888), - [anon_sym_GT_EQ2] = ACTIONS(1888), - [anon_sym_EQ_TILDE2] = ACTIONS(1888), - [anon_sym_BANG_TILDE2] = ACTIONS(1888), - [anon_sym_like2] = ACTIONS(1888), - [anon_sym_not_DASHlike2] = ACTIONS(1888), - [anon_sym_STAR_STAR2] = ACTIONS(1888), - [anon_sym_PLUS_PLUS2] = ACTIONS(1888), - [anon_sym_SLASH2] = ACTIONS(1893), - [anon_sym_mod2] = ACTIONS(1888), - [anon_sym_SLASH_SLASH2] = ACTIONS(1888), - [anon_sym_PLUS2] = ACTIONS(1893), - [anon_sym_bit_DASHshl2] = ACTIONS(1888), - [anon_sym_bit_DASHshr2] = ACTIONS(1888), - [anon_sym_bit_DASHand2] = ACTIONS(1888), - [anon_sym_bit_DASHxor2] = ACTIONS(1888), - [anon_sym_bit_DASHor2] = ACTIONS(1888), - [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(1888), - [anon_sym_out_GT_GT] = ACTIONS(1888), - [anon_sym_e_GT_GT] = ACTIONS(1888), - [anon_sym_o_GT_GT] = ACTIONS(1888), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1888), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1888), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1888), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(502)] = { - [sym_comment] = STATE(502), - [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_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_LPAREN2] = ACTIONS(1866), - [anon_sym_STAR_STAR2] = ACTIONS(1866), - [anon_sym_PLUS_PLUS2] = ACTIONS(1866), - [anon_sym_SLASH2] = ACTIONS(1868), - [anon_sym_mod2] = ACTIONS(1866), - [anon_sym_SLASH_SLASH2] = ACTIONS(1866), - [anon_sym_PLUS2] = ACTIONS(1868), - [anon_sym_bit_DASHshl2] = ACTIONS(1866), - [anon_sym_bit_DASHshr2] = ACTIONS(1866), - [anon_sym_bit_DASHand2] = ACTIONS(1866), - [anon_sym_bit_DASHxor2] = ACTIONS(1866), - [anon_sym_bit_DASHor2] = ACTIONS(1866), - [anon_sym_DOT_DOT2] = ACTIONS(1868), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1866), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1866), - [anon_sym_err_GT] = ACTIONS(1868), - [anon_sym_out_GT] = ACTIONS(1868), - [anon_sym_e_GT] = ACTIONS(1868), - [anon_sym_o_GT] = ACTIONS(1868), - [anon_sym_err_PLUSout_GT] = ACTIONS(1868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), - [anon_sym_o_PLUSe_GT] = ACTIONS(1868), - [anon_sym_e_PLUSo_GT] = ACTIONS(1868), - [anon_sym_err_GT_GT] = ACTIONS(1866), - [anon_sym_out_GT_GT] = ACTIONS(1866), - [anon_sym_e_GT_GT] = ACTIONS(1866), - [anon_sym_o_GT_GT] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), - [sym__unquoted_pattern] = ACTIONS(1868), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(503)] = { - [sym_cmd_identifier] = STATE(4664), - [sym_expr_parenthesized] = STATE(5503), - [sym__spread_parenthesized] = STATE(4962), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(5503), - [sym_val_number] = STATE(5503), - [sym__val_number_decimal] = STATE(2000), - [sym__val_number] = STATE(726), - [sym_val_string] = STATE(5503), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_interpolated] = STATE(5503), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym__spread_record] = STATE(4962), - [sym_record_entry] = STATE(4776), - [sym__record_key] = STATE(5380), - [sym_comment] = STATE(503), - [aux_sym__types_body_repeat1] = STATE(1505), - [aux_sym_record_body_repeat1] = STATE(744), + [506] = { + [sym_comment] = STATE(506), + [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), + }, + [507] = { + [sym_comment] = STATE(507), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [sym__newline] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_err_GT_PIPE] = ACTIONS(1908), + [anon_sym_out_GT_PIPE] = ACTIONS(1908), + [anon_sym_e_GT_PIPE] = ACTIONS(1908), + [anon_sym_o_GT_PIPE] = ACTIONS(1908), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1908), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1908), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1908), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1908), + [anon_sym_RPAREN] = ACTIONS(1908), + [anon_sym_GT2] = ACTIONS(1910), + [anon_sym_DASH2] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1908), + [anon_sym_RBRACE] = ACTIONS(1908), + [anon_sym_EQ_GT] = ACTIONS(1908), + [anon_sym_STAR2] = ACTIONS(1910), + [anon_sym_and2] = ACTIONS(1908), + [anon_sym_xor2] = ACTIONS(1908), + [anon_sym_or2] = ACTIONS(1908), + [anon_sym_not_DASHin2] = ACTIONS(1908), + [anon_sym_has2] = ACTIONS(1908), + [anon_sym_not_DASHhas2] = ACTIONS(1908), + [anon_sym_starts_DASHwith2] = ACTIONS(1908), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1908), + [anon_sym_ends_DASHwith2] = ACTIONS(1908), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1908), + [anon_sym_EQ_EQ2] = ACTIONS(1908), + [anon_sym_BANG_EQ2] = ACTIONS(1908), + [anon_sym_LT2] = ACTIONS(1910), + [anon_sym_LT_EQ2] = ACTIONS(1908), + [anon_sym_GT_EQ2] = ACTIONS(1908), + [anon_sym_EQ_TILDE2] = ACTIONS(1908), + [anon_sym_BANG_TILDE2] = ACTIONS(1908), + [anon_sym_like2] = ACTIONS(1908), + [anon_sym_not_DASHlike2] = ACTIONS(1908), + [anon_sym_STAR_STAR2] = ACTIONS(1908), + [anon_sym_PLUS_PLUS2] = ACTIONS(1908), + [anon_sym_SLASH2] = ACTIONS(1910), + [anon_sym_mod2] = ACTIONS(1908), + [anon_sym_SLASH_SLASH2] = ACTIONS(1908), + [anon_sym_PLUS2] = ACTIONS(1910), + [anon_sym_bit_DASHshl2] = ACTIONS(1908), + [anon_sym_bit_DASHshr2] = ACTIONS(1908), + [anon_sym_bit_DASHand2] = ACTIONS(1908), + [anon_sym_bit_DASHxor2] = ACTIONS(1908), + [anon_sym_bit_DASHor2] = ACTIONS(1908), + [anon_sym_DOT_DOT2] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1908), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1908), + [anon_sym_err_GT] = ACTIONS(1910), + [anon_sym_out_GT] = ACTIONS(1910), + [anon_sym_e_GT] = ACTIONS(1910), + [anon_sym_o_GT] = ACTIONS(1910), + [anon_sym_err_PLUSout_GT] = ACTIONS(1910), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1910), + [anon_sym_o_PLUSe_GT] = ACTIONS(1910), + [anon_sym_e_PLUSo_GT] = ACTIONS(1910), + [anon_sym_err_GT_GT] = ACTIONS(1908), + [anon_sym_out_GT_GT] = ACTIONS(1908), + [anon_sym_e_GT_GT] = ACTIONS(1908), + [anon_sym_o_GT_GT] = ACTIONS(1908), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1908), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1908), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1908), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1908), + [anon_sym_POUND] = ACTIONS(3), + }, + [508] = { + [sym_cell_path] = STATE(986), + [sym_path] = STATE(466), + [sym_comment] = STATE(508), + [aux_sym__where_predicate_lhs_repeat1] = STATE(430), + [anon_sym_in] = ACTIONS(1912), + [sym__newline] = ACTIONS(1912), + [anon_sym_SEMI] = ACTIONS(1912), + [anon_sym_PIPE] = ACTIONS(1912), + [anon_sym_err_GT_PIPE] = ACTIONS(1912), + [anon_sym_out_GT_PIPE] = ACTIONS(1912), + [anon_sym_e_GT_PIPE] = ACTIONS(1912), + [anon_sym_o_GT_PIPE] = ACTIONS(1912), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1912), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1912), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1912), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1912), + [anon_sym_RPAREN] = ACTIONS(1912), + [anon_sym_GT2] = ACTIONS(1915), + [anon_sym_DASH2] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1912), + [anon_sym_RBRACE] = ACTIONS(1912), + [anon_sym_EQ_GT] = ACTIONS(1912), + [anon_sym_STAR2] = ACTIONS(1915), + [anon_sym_and2] = ACTIONS(1912), + [anon_sym_xor2] = ACTIONS(1912), + [anon_sym_or2] = ACTIONS(1912), + [anon_sym_not_DASHin2] = ACTIONS(1912), + [anon_sym_has2] = ACTIONS(1912), + [anon_sym_not_DASHhas2] = ACTIONS(1912), + [anon_sym_starts_DASHwith2] = ACTIONS(1912), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1912), + [anon_sym_ends_DASHwith2] = ACTIONS(1912), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1912), + [anon_sym_EQ_EQ2] = ACTIONS(1912), + [anon_sym_BANG_EQ2] = ACTIONS(1912), + [anon_sym_LT2] = ACTIONS(1915), + [anon_sym_LT_EQ2] = ACTIONS(1912), + [anon_sym_GT_EQ2] = ACTIONS(1912), + [anon_sym_EQ_TILDE2] = ACTIONS(1912), + [anon_sym_BANG_TILDE2] = ACTIONS(1912), + [anon_sym_like2] = ACTIONS(1912), + [anon_sym_not_DASHlike2] = ACTIONS(1912), + [anon_sym_STAR_STAR2] = ACTIONS(1912), + [anon_sym_PLUS_PLUS2] = ACTIONS(1912), + [anon_sym_SLASH2] = ACTIONS(1915), + [anon_sym_mod2] = ACTIONS(1912), + [anon_sym_SLASH_SLASH2] = ACTIONS(1912), + [anon_sym_PLUS2] = ACTIONS(1915), + [anon_sym_bit_DASHshl2] = ACTIONS(1912), + [anon_sym_bit_DASHshr2] = ACTIONS(1912), + [anon_sym_bit_DASHand2] = ACTIONS(1912), + [anon_sym_bit_DASHxor2] = ACTIONS(1912), + [anon_sym_bit_DASHor2] = ACTIONS(1912), + [anon_sym_DOT2] = ACTIONS(1898), + [anon_sym_err_GT] = ACTIONS(1915), + [anon_sym_out_GT] = ACTIONS(1915), + [anon_sym_e_GT] = ACTIONS(1915), + [anon_sym_o_GT] = ACTIONS(1915), + [anon_sym_err_PLUSout_GT] = ACTIONS(1915), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1915), + [anon_sym_o_PLUSe_GT] = ACTIONS(1915), + [anon_sym_e_PLUSo_GT] = ACTIONS(1915), + [anon_sym_err_GT_GT] = ACTIONS(1912), + [anon_sym_out_GT_GT] = ACTIONS(1912), + [anon_sym_e_GT_GT] = ACTIONS(1912), + [anon_sym_o_GT_GT] = ACTIONS(1912), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1912), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1912), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1912), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + }, + [509] = { + [sym_comment] = STATE(509), + [ts_builtin_sym_end] = ACTIONS(1576), + [anon_sym_in] = ACTIONS(1576), + [sym__newline] = ACTIONS(1576), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1576), + [anon_sym_err_GT_PIPE] = ACTIONS(1576), + [anon_sym_out_GT_PIPE] = ACTIONS(1576), + [anon_sym_e_GT_PIPE] = ACTIONS(1576), + [anon_sym_o_GT_PIPE] = ACTIONS(1576), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1576), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1576), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1576), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1576), + [anon_sym_GT2] = ACTIONS(1574), + [anon_sym_DASH2] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_STAR2] = ACTIONS(1574), + [anon_sym_and2] = ACTIONS(1576), + [anon_sym_xor2] = ACTIONS(1576), + [anon_sym_or2] = ACTIONS(1576), + [anon_sym_not_DASHin2] = ACTIONS(1576), + [anon_sym_has2] = ACTIONS(1576), + [anon_sym_not_DASHhas2] = ACTIONS(1576), + [anon_sym_starts_DASHwith2] = ACTIONS(1576), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1576), + [anon_sym_ends_DASHwith2] = ACTIONS(1576), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1576), + [anon_sym_EQ_EQ2] = ACTIONS(1576), + [anon_sym_BANG_EQ2] = ACTIONS(1576), + [anon_sym_LT2] = ACTIONS(1574), + [anon_sym_LT_EQ2] = ACTIONS(1576), + [anon_sym_GT_EQ2] = ACTIONS(1576), + [anon_sym_EQ_TILDE2] = ACTIONS(1576), + [anon_sym_BANG_TILDE2] = ACTIONS(1576), + [anon_sym_like2] = ACTIONS(1576), + [anon_sym_not_DASHlike2] = ACTIONS(1576), + [anon_sym_STAR_STAR2] = ACTIONS(1576), + [anon_sym_PLUS_PLUS2] = ACTIONS(1576), + [anon_sym_SLASH2] = ACTIONS(1574), + [anon_sym_mod2] = ACTIONS(1576), + [anon_sym_SLASH_SLASH2] = ACTIONS(1576), + [anon_sym_PLUS2] = ACTIONS(1574), + [anon_sym_bit_DASHshl2] = ACTIONS(1576), + [anon_sym_bit_DASHshr2] = ACTIONS(1576), + [anon_sym_bit_DASHand2] = ACTIONS(1576), + [anon_sym_bit_DASHxor2] = ACTIONS(1576), + [anon_sym_bit_DASHor2] = ACTIONS(1576), + [anon_sym_DOT_DOT2] = ACTIONS(1574), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1576), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1576), + [anon_sym_QMARK2] = ACTIONS(1576), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_DOT2] = ACTIONS(1574), + [anon_sym_err_GT] = ACTIONS(1574), + [anon_sym_out_GT] = ACTIONS(1574), + [anon_sym_e_GT] = ACTIONS(1574), + [anon_sym_o_GT] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT] = ACTIONS(1574), + [anon_sym_err_GT_GT] = ACTIONS(1576), + [anon_sym_out_GT_GT] = ACTIONS(1576), + [anon_sym_e_GT_GT] = ACTIONS(1576), + [anon_sym_o_GT_GT] = ACTIONS(1576), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1576), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1576), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1576), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1576), + [anon_sym_POUND] = ACTIONS(3), + }, + [510] = { + [sym_cell_path] = STATE(964), + [sym_path] = STATE(712), + [sym_comment] = STATE(510), + [aux_sym__where_predicate_lhs_repeat1] = STATE(580), + [ts_builtin_sym_end] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [sym__newline] = ACTIONS(1667), + [anon_sym_SEMI] = ACTIONS(1667), + [anon_sym_PIPE] = ACTIONS(1667), + [anon_sym_err_GT_PIPE] = ACTIONS(1667), + [anon_sym_out_GT_PIPE] = ACTIONS(1667), + [anon_sym_e_GT_PIPE] = ACTIONS(1667), + [anon_sym_o_GT_PIPE] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1667), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1667), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1667), + [anon_sym_xor2] = ACTIONS(1667), + [anon_sym_or2] = ACTIONS(1667), + [anon_sym_not_DASHin2] = ACTIONS(1667), + [anon_sym_has2] = ACTIONS(1667), + [anon_sym_not_DASHhas2] = ACTIONS(1667), + [anon_sym_starts_DASHwith2] = ACTIONS(1667), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1667), + [anon_sym_ends_DASHwith2] = ACTIONS(1667), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1667), + [anon_sym_EQ_EQ2] = ACTIONS(1667), + [anon_sym_BANG_EQ2] = ACTIONS(1667), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1667), + [anon_sym_GT_EQ2] = ACTIONS(1667), + [anon_sym_EQ_TILDE2] = ACTIONS(1667), + [anon_sym_BANG_TILDE2] = ACTIONS(1667), + [anon_sym_like2] = ACTIONS(1667), + [anon_sym_not_DASHlike2] = ACTIONS(1667), + [anon_sym_STAR_STAR2] = ACTIONS(1667), + [anon_sym_PLUS_PLUS2] = ACTIONS(1667), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1667), + [anon_sym_SLASH_SLASH2] = ACTIONS(1667), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1667), + [anon_sym_bit_DASHshr2] = ACTIONS(1667), + [anon_sym_bit_DASHand2] = ACTIONS(1667), + [anon_sym_bit_DASHxor2] = ACTIONS(1667), + [anon_sym_bit_DASHor2] = ACTIONS(1667), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1667), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1667), + [anon_sym_DOT2] = ACTIONS(1884), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(1667), + [anon_sym_out_GT_GT] = ACTIONS(1667), + [anon_sym_e_GT_GT] = ACTIONS(1667), + [anon_sym_o_GT_GT] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(3), + }, + [511] = { + [sym_comment] = STATE(511), + [ts_builtin_sym_end] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1810), + [sym__newline] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_err_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_GT_PIPE] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), + [anon_sym_GT2] = ACTIONS(1812), + [anon_sym_DASH2] = ACTIONS(1810), + [anon_sym_STAR2] = ACTIONS(1812), + [anon_sym_and2] = ACTIONS(1810), + [anon_sym_xor2] = ACTIONS(1810), + [anon_sym_or2] = ACTIONS(1810), + [anon_sym_not_DASHin2] = ACTIONS(1810), + [anon_sym_has2] = ACTIONS(1810), + [anon_sym_not_DASHhas2] = ACTIONS(1810), + [anon_sym_starts_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1810), + [anon_sym_ends_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1810), + [anon_sym_EQ_EQ2] = ACTIONS(1810), + [anon_sym_BANG_EQ2] = ACTIONS(1810), + [anon_sym_LT2] = ACTIONS(1812), + [anon_sym_LT_EQ2] = ACTIONS(1810), + [anon_sym_GT_EQ2] = ACTIONS(1810), + [anon_sym_EQ_TILDE2] = ACTIONS(1810), + [anon_sym_BANG_TILDE2] = ACTIONS(1810), + [anon_sym_like2] = ACTIONS(1810), + [anon_sym_not_DASHlike2] = ACTIONS(1810), + [anon_sym_LPAREN2] = ACTIONS(1810), + [anon_sym_STAR_STAR2] = ACTIONS(1810), + [anon_sym_PLUS_PLUS2] = ACTIONS(1810), + [anon_sym_SLASH2] = ACTIONS(1812), + [anon_sym_mod2] = ACTIONS(1810), + [anon_sym_SLASH_SLASH2] = ACTIONS(1810), + [anon_sym_PLUS2] = ACTIONS(1812), + [anon_sym_bit_DASHshl2] = ACTIONS(1810), + [anon_sym_bit_DASHshr2] = ACTIONS(1810), + [anon_sym_bit_DASHand2] = ACTIONS(1810), + [anon_sym_bit_DASHxor2] = ACTIONS(1810), + [anon_sym_bit_DASHor2] = ACTIONS(1810), + [anon_sym_DOT_DOT2] = ACTIONS(1812), + [anon_sym_DOT] = ACTIONS(1918), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1810), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1810), + [aux_sym__immediate_decimal_token5] = ACTIONS(1920), + [anon_sym_err_GT] = ACTIONS(1812), + [anon_sym_out_GT] = ACTIONS(1812), + [anon_sym_e_GT] = ACTIONS(1812), + [anon_sym_o_GT] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT] = ACTIONS(1812), + [anon_sym_err_GT_GT] = ACTIONS(1810), + [anon_sym_out_GT_GT] = ACTIONS(1810), + [anon_sym_e_GT_GT] = ACTIONS(1810), + [anon_sym_o_GT_GT] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), + [sym__unquoted_pattern] = ACTIONS(1812), + [anon_sym_POUND] = ACTIONS(3), + }, + [512] = { + [sym_comment] = STATE(512), + [ts_builtin_sym_end] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [sym__newline] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1802), + [anon_sym_err_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_GT_PIPE] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), + [anon_sym_GT2] = ACTIONS(1804), + [anon_sym_DASH2] = ACTIONS(1802), + [anon_sym_STAR2] = ACTIONS(1804), + [anon_sym_and2] = ACTIONS(1802), + [anon_sym_xor2] = ACTIONS(1802), + [anon_sym_or2] = ACTIONS(1802), + [anon_sym_not_DASHin2] = ACTIONS(1802), + [anon_sym_has2] = ACTIONS(1802), + [anon_sym_not_DASHhas2] = ACTIONS(1802), + [anon_sym_starts_DASHwith2] = ACTIONS(1802), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), + [anon_sym_ends_DASHwith2] = ACTIONS(1802), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), + [anon_sym_EQ_EQ2] = ACTIONS(1802), + [anon_sym_BANG_EQ2] = ACTIONS(1802), + [anon_sym_LT2] = ACTIONS(1804), + [anon_sym_LT_EQ2] = ACTIONS(1802), + [anon_sym_GT_EQ2] = ACTIONS(1802), + [anon_sym_EQ_TILDE2] = ACTIONS(1802), + [anon_sym_BANG_TILDE2] = ACTIONS(1802), + [anon_sym_like2] = ACTIONS(1802), + [anon_sym_not_DASHlike2] = ACTIONS(1802), + [anon_sym_LPAREN2] = ACTIONS(1802), + [anon_sym_STAR_STAR2] = ACTIONS(1802), + [anon_sym_PLUS_PLUS2] = ACTIONS(1802), + [anon_sym_SLASH2] = ACTIONS(1804), + [anon_sym_mod2] = ACTIONS(1802), + [anon_sym_SLASH_SLASH2] = ACTIONS(1802), + [anon_sym_PLUS2] = ACTIONS(1804), + [anon_sym_bit_DASHshl2] = ACTIONS(1802), + [anon_sym_bit_DASHshr2] = ACTIONS(1802), + [anon_sym_bit_DASHand2] = ACTIONS(1802), + [anon_sym_bit_DASHxor2] = ACTIONS(1802), + [anon_sym_bit_DASHor2] = ACTIONS(1802), + [anon_sym_DOT_DOT2] = ACTIONS(1804), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1802), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1802), + [aux_sym__immediate_decimal_token1] = ACTIONS(1922), + [aux_sym__immediate_decimal_token5] = ACTIONS(1924), + [anon_sym_err_GT] = ACTIONS(1804), + [anon_sym_out_GT] = ACTIONS(1804), + [anon_sym_e_GT] = ACTIONS(1804), + [anon_sym_o_GT] = ACTIONS(1804), + [anon_sym_err_PLUSout_GT] = ACTIONS(1804), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), + [anon_sym_o_PLUSe_GT] = ACTIONS(1804), + [anon_sym_e_PLUSo_GT] = ACTIONS(1804), + [anon_sym_err_GT_GT] = ACTIONS(1802), + [anon_sym_out_GT_GT] = ACTIONS(1802), + [anon_sym_e_GT_GT] = ACTIONS(1802), + [anon_sym_o_GT_GT] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), + [sym__unquoted_pattern] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(3), + }, + [513] = { + [sym_comment] = STATE(513), + [ts_builtin_sym_end] = ACTIONS(1542), + [anon_sym_in] = ACTIONS(1542), + [sym__newline] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_err_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_GT_PIPE] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), + [anon_sym_GT2] = ACTIONS(1540), + [anon_sym_DASH2] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_STAR2] = ACTIONS(1540), + [anon_sym_and2] = ACTIONS(1542), + [anon_sym_xor2] = ACTIONS(1542), + [anon_sym_or2] = ACTIONS(1542), + [anon_sym_not_DASHin2] = ACTIONS(1542), + [anon_sym_has2] = ACTIONS(1542), + [anon_sym_not_DASHhas2] = ACTIONS(1542), + [anon_sym_starts_DASHwith2] = ACTIONS(1542), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1542), + [anon_sym_ends_DASHwith2] = ACTIONS(1542), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1542), + [anon_sym_EQ_EQ2] = ACTIONS(1542), + [anon_sym_BANG_EQ2] = ACTIONS(1542), + [anon_sym_LT2] = ACTIONS(1540), + [anon_sym_LT_EQ2] = ACTIONS(1542), + [anon_sym_GT_EQ2] = ACTIONS(1542), + [anon_sym_EQ_TILDE2] = ACTIONS(1542), + [anon_sym_BANG_TILDE2] = ACTIONS(1542), + [anon_sym_like2] = ACTIONS(1542), + [anon_sym_not_DASHlike2] = ACTIONS(1542), + [anon_sym_STAR_STAR2] = ACTIONS(1542), + [anon_sym_PLUS_PLUS2] = ACTIONS(1542), + [anon_sym_SLASH2] = ACTIONS(1540), + [anon_sym_mod2] = ACTIONS(1542), + [anon_sym_SLASH_SLASH2] = ACTIONS(1542), + [anon_sym_PLUS2] = ACTIONS(1540), + [anon_sym_bit_DASHshl2] = ACTIONS(1542), + [anon_sym_bit_DASHshr2] = ACTIONS(1542), + [anon_sym_bit_DASHand2] = ACTIONS(1542), + [anon_sym_bit_DASHxor2] = ACTIONS(1542), + [anon_sym_bit_DASHor2] = ACTIONS(1542), + [anon_sym_DOT_DOT2] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), + [anon_sym_QMARK2] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_DOT2] = ACTIONS(1540), + [anon_sym_err_GT] = ACTIONS(1540), + [anon_sym_out_GT] = ACTIONS(1540), + [anon_sym_e_GT] = ACTIONS(1540), + [anon_sym_o_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT] = ACTIONS(1540), + [anon_sym_err_GT_GT] = ACTIONS(1542), + [anon_sym_out_GT_GT] = ACTIONS(1542), + [anon_sym_e_GT_GT] = ACTIONS(1542), + [anon_sym_o_GT_GT] = ACTIONS(1542), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), + [anon_sym_POUND] = ACTIONS(3), + }, + [514] = { + [sym_comment] = STATE(514), + [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), + }, + [515] = { + [sym_comment] = STATE(515), + [anon_sym_in] = ACTIONS(1874), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_GT2] = ACTIONS(1876), + [anon_sym_DASH2] = ACTIONS(1874), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_STAR2] = ACTIONS(1876), + [anon_sym_and2] = ACTIONS(1874), + [anon_sym_xor2] = ACTIONS(1874), + [anon_sym_or2] = ACTIONS(1874), + [anon_sym_not_DASHin2] = ACTIONS(1874), + [anon_sym_has2] = ACTIONS(1874), + [anon_sym_not_DASHhas2] = ACTIONS(1874), + [anon_sym_starts_DASHwith2] = ACTIONS(1874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1874), + [anon_sym_ends_DASHwith2] = ACTIONS(1874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1874), + [anon_sym_EQ_EQ2] = ACTIONS(1874), + [anon_sym_BANG_EQ2] = ACTIONS(1874), + [anon_sym_LT2] = ACTIONS(1876), + [anon_sym_LT_EQ2] = ACTIONS(1874), + [anon_sym_GT_EQ2] = ACTIONS(1874), + [anon_sym_EQ_TILDE2] = ACTIONS(1874), + [anon_sym_BANG_TILDE2] = ACTIONS(1874), + [anon_sym_like2] = ACTIONS(1874), + [anon_sym_not_DASHlike2] = ACTIONS(1874), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_STAR_STAR2] = ACTIONS(1874), + [anon_sym_PLUS_PLUS2] = ACTIONS(1874), + [anon_sym_SLASH2] = ACTIONS(1876), + [anon_sym_mod2] = ACTIONS(1874), + [anon_sym_SLASH_SLASH2] = ACTIONS(1874), + [anon_sym_PLUS2] = ACTIONS(1876), + [anon_sym_bit_DASHshl2] = ACTIONS(1874), + [anon_sym_bit_DASHshr2] = ACTIONS(1874), + [anon_sym_bit_DASHand2] = ACTIONS(1874), + [anon_sym_bit_DASHxor2] = ACTIONS(1874), + [anon_sym_bit_DASHor2] = ACTIONS(1874), + [anon_sym_DOT_DOT2] = ACTIONS(1876), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [anon_sym_err_GT] = ACTIONS(1876), + [anon_sym_out_GT] = ACTIONS(1876), + [anon_sym_e_GT] = ACTIONS(1876), + [anon_sym_o_GT] = ACTIONS(1876), + [anon_sym_err_PLUSout_GT] = ACTIONS(1876), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1876), + [anon_sym_o_PLUSe_GT] = ACTIONS(1876), + [anon_sym_e_PLUSo_GT] = ACTIONS(1876), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [sym__unquoted_pattern] = ACTIONS(1876), + [anon_sym_POUND] = ACTIONS(3), + }, + [516] = { + [sym_cell_path] = STATE(768), + [sym_path] = STATE(466), + [sym_comment] = STATE(516), + [aux_sym__where_predicate_lhs_repeat1] = STATE(430), + [anon_sym_in] = ACTIONS(1926), + [sym__newline] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_err_GT_PIPE] = ACTIONS(1926), + [anon_sym_out_GT_PIPE] = ACTIONS(1926), + [anon_sym_e_GT_PIPE] = ACTIONS(1926), + [anon_sym_o_GT_PIPE] = ACTIONS(1926), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1926), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1926), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1926), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1926), + [anon_sym_RPAREN] = ACTIONS(1926), + [anon_sym_GT2] = ACTIONS(1928), + [anon_sym_DASH2] = ACTIONS(1926), + [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_RBRACE] = ACTIONS(1926), + [anon_sym_EQ_GT] = ACTIONS(1926), + [anon_sym_STAR2] = ACTIONS(1928), + [anon_sym_and2] = ACTIONS(1926), + [anon_sym_xor2] = ACTIONS(1926), + [anon_sym_or2] = ACTIONS(1926), + [anon_sym_not_DASHin2] = ACTIONS(1926), + [anon_sym_has2] = ACTIONS(1926), + [anon_sym_not_DASHhas2] = ACTIONS(1926), + [anon_sym_starts_DASHwith2] = ACTIONS(1926), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1926), + [anon_sym_ends_DASHwith2] = ACTIONS(1926), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1926), + [anon_sym_EQ_EQ2] = ACTIONS(1926), + [anon_sym_BANG_EQ2] = ACTIONS(1926), + [anon_sym_LT2] = ACTIONS(1928), + [anon_sym_LT_EQ2] = ACTIONS(1926), + [anon_sym_GT_EQ2] = ACTIONS(1926), + [anon_sym_EQ_TILDE2] = ACTIONS(1926), + [anon_sym_BANG_TILDE2] = ACTIONS(1926), + [anon_sym_like2] = ACTIONS(1926), + [anon_sym_not_DASHlike2] = ACTIONS(1926), + [anon_sym_STAR_STAR2] = ACTIONS(1926), + [anon_sym_PLUS_PLUS2] = ACTIONS(1926), + [anon_sym_SLASH2] = ACTIONS(1928), + [anon_sym_mod2] = ACTIONS(1926), + [anon_sym_SLASH_SLASH2] = ACTIONS(1926), + [anon_sym_PLUS2] = ACTIONS(1928), + [anon_sym_bit_DASHshl2] = ACTIONS(1926), + [anon_sym_bit_DASHshr2] = ACTIONS(1926), + [anon_sym_bit_DASHand2] = ACTIONS(1926), + [anon_sym_bit_DASHxor2] = ACTIONS(1926), + [anon_sym_bit_DASHor2] = ACTIONS(1926), + [anon_sym_DOT2] = ACTIONS(1898), + [anon_sym_err_GT] = ACTIONS(1928), + [anon_sym_out_GT] = ACTIONS(1928), + [anon_sym_e_GT] = ACTIONS(1928), + [anon_sym_o_GT] = ACTIONS(1928), + [anon_sym_err_PLUSout_GT] = ACTIONS(1928), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1928), + [anon_sym_o_PLUSe_GT] = ACTIONS(1928), + [anon_sym_e_PLUSo_GT] = ACTIONS(1928), + [anon_sym_err_GT_GT] = ACTIONS(1926), + [anon_sym_out_GT_GT] = ACTIONS(1926), + [anon_sym_e_GT_GT] = ACTIONS(1926), + [anon_sym_o_GT_GT] = ACTIONS(1926), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1926), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1926), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1926), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1926), + [anon_sym_POUND] = ACTIONS(3), + }, + [517] = { + [sym_cell_path] = STATE(812), + [sym_path] = STATE(466), + [sym_comment] = STATE(517), + [aux_sym__where_predicate_lhs_repeat1] = STATE(430), + [anon_sym_in] = ACTIONS(1930), + [sym__newline] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_PIPE] = ACTIONS(1930), + [anon_sym_err_GT_PIPE] = ACTIONS(1930), + [anon_sym_out_GT_PIPE] = ACTIONS(1930), + [anon_sym_e_GT_PIPE] = ACTIONS(1930), + [anon_sym_o_GT_PIPE] = ACTIONS(1930), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1930), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1930), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1930), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1930), + [anon_sym_RPAREN] = ACTIONS(1930), + [anon_sym_GT2] = ACTIONS(1932), + [anon_sym_DASH2] = ACTIONS(1930), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(1930), + [anon_sym_EQ_GT] = ACTIONS(1930), + [anon_sym_STAR2] = ACTIONS(1932), + [anon_sym_and2] = ACTIONS(1930), + [anon_sym_xor2] = ACTIONS(1930), + [anon_sym_or2] = ACTIONS(1930), + [anon_sym_not_DASHin2] = ACTIONS(1930), + [anon_sym_has2] = ACTIONS(1930), + [anon_sym_not_DASHhas2] = ACTIONS(1930), + [anon_sym_starts_DASHwith2] = ACTIONS(1930), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1930), + [anon_sym_ends_DASHwith2] = ACTIONS(1930), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1930), + [anon_sym_EQ_EQ2] = ACTIONS(1930), + [anon_sym_BANG_EQ2] = ACTIONS(1930), + [anon_sym_LT2] = ACTIONS(1932), + [anon_sym_LT_EQ2] = ACTIONS(1930), + [anon_sym_GT_EQ2] = ACTIONS(1930), + [anon_sym_EQ_TILDE2] = ACTIONS(1930), + [anon_sym_BANG_TILDE2] = ACTIONS(1930), + [anon_sym_like2] = ACTIONS(1930), + [anon_sym_not_DASHlike2] = ACTIONS(1930), + [anon_sym_STAR_STAR2] = ACTIONS(1930), + [anon_sym_PLUS_PLUS2] = ACTIONS(1930), + [anon_sym_SLASH2] = ACTIONS(1932), + [anon_sym_mod2] = ACTIONS(1930), + [anon_sym_SLASH_SLASH2] = ACTIONS(1930), + [anon_sym_PLUS2] = ACTIONS(1932), + [anon_sym_bit_DASHshl2] = ACTIONS(1930), + [anon_sym_bit_DASHshr2] = ACTIONS(1930), + [anon_sym_bit_DASHand2] = ACTIONS(1930), + [anon_sym_bit_DASHxor2] = ACTIONS(1930), + [anon_sym_bit_DASHor2] = ACTIONS(1930), + [anon_sym_DOT2] = ACTIONS(1898), + [anon_sym_err_GT] = ACTIONS(1932), + [anon_sym_out_GT] = ACTIONS(1932), + [anon_sym_e_GT] = ACTIONS(1932), + [anon_sym_o_GT] = ACTIONS(1932), + [anon_sym_err_PLUSout_GT] = ACTIONS(1932), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1932), + [anon_sym_o_PLUSe_GT] = ACTIONS(1932), + [anon_sym_e_PLUSo_GT] = ACTIONS(1932), + [anon_sym_err_GT_GT] = ACTIONS(1930), + [anon_sym_out_GT_GT] = ACTIONS(1930), + [anon_sym_e_GT_GT] = ACTIONS(1930), + [anon_sym_o_GT_GT] = ACTIONS(1930), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1930), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1930), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1930), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1930), + [anon_sym_POUND] = ACTIONS(3), + }, + [518] = { + [sym_cmd_identifier] = STATE(4572), + [sym_expr_parenthesized] = STATE(5187), + [sym__spread_parenthesized] = STATE(4951), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(4644), + [sym_val_number] = STATE(5187), + [sym__val_number_decimal] = STATE(2013), + [sym__val_number] = STATE(705), + [sym_val_string] = STATE(5187), + [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(5187), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym__spread_record] = STATE(4951), + [sym_record_entry] = STATE(4801), + [sym__record_key] = STATE(5305), + [sym_comment] = STATE(518), + [aux_sym__types_body_repeat1] = STATE(1501), + [aux_sym__match_pattern_record_body_repeat1] = STATE(699), [anon_sym_export] = ACTIONS(145), [anon_sym_alias] = ACTIONS(139), [anon_sym_let] = ACTIONS(139), @@ -88532,14098 +89575,12861 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(139), [anon_sym_match] = ACTIONS(139), [anon_sym_in] = ACTIONS(145), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token3] = ACTIONS(1750), - [aux_sym_cmd_identifier_token4] = ACTIONS(1750), - [aux_sym_cmd_identifier_token5] = ACTIONS(1750), - [sym__newline] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1746), + [aux_sym_cmd_identifier_token3] = ACTIONS(1748), + [aux_sym_cmd_identifier_token4] = ACTIONS(1748), + [aux_sym_cmd_identifier_token5] = ACTIONS(1748), + [sym__newline] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_DOLLAR] = ACTIONS(1778), [anon_sym_DASH2] = ACTIONS(177), [anon_sym_PLUS2] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1760), - [aux_sym__val_number_decimal_token2] = ACTIONS(1762), - [aux_sym__val_number_decimal_token3] = ACTIONS(1764), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1768), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1772), - }, - [STATE(504)] = { - [sym_comment] = STATE(504), - [ts_builtin_sym_end] = ACTIONS(1529), - [anon_sym_in] = ACTIONS(1529), - [sym__newline] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1529), - [anon_sym_PIPE] = ACTIONS(1529), - [anon_sym_err_GT_PIPE] = ACTIONS(1529), - [anon_sym_out_GT_PIPE] = ACTIONS(1529), - [anon_sym_e_GT_PIPE] = ACTIONS(1529), - [anon_sym_o_GT_PIPE] = ACTIONS(1529), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1529), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1529), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1529), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1529), - [anon_sym_GT2] = ACTIONS(1527), - [anon_sym_DASH2] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1529), - [anon_sym_STAR2] = ACTIONS(1527), - [anon_sym_and2] = ACTIONS(1529), - [anon_sym_xor2] = ACTIONS(1529), - [anon_sym_or2] = ACTIONS(1529), - [anon_sym_not_DASHin2] = ACTIONS(1529), - [anon_sym_has2] = ACTIONS(1529), - [anon_sym_not_DASHhas2] = ACTIONS(1529), - [anon_sym_starts_DASHwith2] = ACTIONS(1529), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1529), - [anon_sym_ends_DASHwith2] = ACTIONS(1529), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1529), - [anon_sym_EQ_EQ2] = ACTIONS(1529), - [anon_sym_BANG_EQ2] = ACTIONS(1529), - [anon_sym_LT2] = ACTIONS(1527), - [anon_sym_LT_EQ2] = ACTIONS(1529), - [anon_sym_GT_EQ2] = ACTIONS(1529), - [anon_sym_EQ_TILDE2] = ACTIONS(1529), - [anon_sym_BANG_TILDE2] = ACTIONS(1529), - [anon_sym_like2] = ACTIONS(1529), - [anon_sym_not_DASHlike2] = ACTIONS(1529), - [anon_sym_STAR_STAR2] = ACTIONS(1529), - [anon_sym_PLUS_PLUS2] = ACTIONS(1529), - [anon_sym_SLASH2] = ACTIONS(1527), - [anon_sym_mod2] = ACTIONS(1529), - [anon_sym_SLASH_SLASH2] = ACTIONS(1529), - [anon_sym_PLUS2] = ACTIONS(1527), - [anon_sym_bit_DASHshl2] = ACTIONS(1529), - [anon_sym_bit_DASHshr2] = ACTIONS(1529), - [anon_sym_bit_DASHand2] = ACTIONS(1529), - [anon_sym_bit_DASHxor2] = ACTIONS(1529), - [anon_sym_bit_DASHor2] = ACTIONS(1529), - [anon_sym_DOT_DOT2] = ACTIONS(1527), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1529), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1529), - [anon_sym_QMARK2] = ACTIONS(1529), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_DOT2] = ACTIONS(1527), - [anon_sym_err_GT] = ACTIONS(1527), - [anon_sym_out_GT] = ACTIONS(1527), - [anon_sym_e_GT] = ACTIONS(1527), - [anon_sym_o_GT] = ACTIONS(1527), - [anon_sym_err_PLUSout_GT] = ACTIONS(1527), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1527), - [anon_sym_o_PLUSe_GT] = ACTIONS(1527), - [anon_sym_e_PLUSo_GT] = ACTIONS(1527), - [anon_sym_err_GT_GT] = ACTIONS(1529), - [anon_sym_out_GT_GT] = ACTIONS(1529), - [anon_sym_e_GT_GT] = ACTIONS(1529), - [anon_sym_o_GT_GT] = ACTIONS(1529), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1529), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1529), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1529), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1529), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(505)] = { - [sym_comment] = STATE(505), - [ts_builtin_sym_end] = ACTIONS(1788), - [anon_sym_in] = ACTIONS(1788), - [sym__newline] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_PIPE] = ACTIONS(1788), - [anon_sym_err_GT_PIPE] = ACTIONS(1788), - [anon_sym_out_GT_PIPE] = ACTIONS(1788), - [anon_sym_e_GT_PIPE] = ACTIONS(1788), - [anon_sym_o_GT_PIPE] = ACTIONS(1788), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), - [anon_sym_GT2] = ACTIONS(1790), - [anon_sym_DASH2] = ACTIONS(1788), - [anon_sym_STAR2] = ACTIONS(1790), - [anon_sym_and2] = ACTIONS(1788), - [anon_sym_xor2] = ACTIONS(1788), - [anon_sym_or2] = ACTIONS(1788), - [anon_sym_not_DASHin2] = ACTIONS(1788), - [anon_sym_has2] = ACTIONS(1788), - [anon_sym_not_DASHhas2] = ACTIONS(1788), - [anon_sym_starts_DASHwith2] = ACTIONS(1788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1788), - [anon_sym_ends_DASHwith2] = ACTIONS(1788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1788), - [anon_sym_EQ_EQ2] = ACTIONS(1788), - [anon_sym_BANG_EQ2] = ACTIONS(1788), - [anon_sym_LT2] = ACTIONS(1790), - [anon_sym_LT_EQ2] = ACTIONS(1788), - [anon_sym_GT_EQ2] = ACTIONS(1788), - [anon_sym_EQ_TILDE2] = ACTIONS(1788), - [anon_sym_BANG_TILDE2] = ACTIONS(1788), - [anon_sym_like2] = ACTIONS(1788), - [anon_sym_not_DASHlike2] = ACTIONS(1788), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_STAR_STAR2] = ACTIONS(1788), - [anon_sym_PLUS_PLUS2] = ACTIONS(1788), - [anon_sym_SLASH2] = ACTIONS(1790), - [anon_sym_mod2] = ACTIONS(1788), - [anon_sym_SLASH_SLASH2] = ACTIONS(1788), - [anon_sym_PLUS2] = ACTIONS(1790), - [anon_sym_bit_DASHshl2] = ACTIONS(1788), - [anon_sym_bit_DASHshr2] = ACTIONS(1788), - [anon_sym_bit_DASHand2] = ACTIONS(1788), - [anon_sym_bit_DASHxor2] = ACTIONS(1788), - [anon_sym_bit_DASHor2] = ACTIONS(1788), - [anon_sym_DOT_DOT2] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1895), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1788), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1788), - [aux_sym__immediate_decimal_token5] = ACTIONS(1897), - [anon_sym_err_GT] = ACTIONS(1790), - [anon_sym_out_GT] = ACTIONS(1790), - [anon_sym_e_GT] = ACTIONS(1790), - [anon_sym_o_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT] = ACTIONS(1790), - [anon_sym_err_GT_GT] = ACTIONS(1788), - [anon_sym_out_GT_GT] = ACTIONS(1788), - [anon_sym_e_GT_GT] = ACTIONS(1788), - [anon_sym_o_GT_GT] = ACTIONS(1788), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1788), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1788), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1788), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1788), - [sym__unquoted_pattern] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(506)] = { - [sym_cell_path] = STATE(947), - [sym_path] = STATE(737), - [sym_comment] = STATE(506), - [aux_sym__where_predicate_lhs_repeat1] = STATE(586), - [ts_builtin_sym_end] = ACTIONS(1468), - [anon_sym_in] = ACTIONS(1468), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1468), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_like2] = ACTIONS(1468), - [anon_sym_not_DASHlike2] = ACTIONS(1468), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1468), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [anon_sym_DOT2] = ACTIONS(1899), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(507)] = { - [sym_cell_path] = STATE(937), - [sym_path] = STATE(737), - [sym_comment] = STATE(507), - [aux_sym__where_predicate_lhs_repeat1] = STATE(586), - [ts_builtin_sym_end] = ACTIONS(1669), - [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_GT2] = ACTIONS(1671), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1671), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_has2] = ACTIONS(1669), - [anon_sym_not_DASHhas2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1671), - [anon_sym_LT_EQ2] = ACTIONS(1669), - [anon_sym_GT_EQ2] = ACTIONS(1669), - [anon_sym_EQ_TILDE2] = ACTIONS(1669), - [anon_sym_BANG_TILDE2] = ACTIONS(1669), - [anon_sym_like2] = ACTIONS(1669), - [anon_sym_not_DASHlike2] = ACTIONS(1669), - [anon_sym_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1671), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1671), - [anon_sym_bit_DASHshl2] = ACTIONS(1669), - [anon_sym_bit_DASHshr2] = ACTIONS(1669), - [anon_sym_bit_DASHand2] = ACTIONS(1669), - [anon_sym_bit_DASHxor2] = ACTIONS(1669), - [anon_sym_bit_DASHor2] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1671), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [anon_sym_DOT2] = ACTIONS(1899), - [anon_sym_err_GT] = ACTIONS(1671), - [anon_sym_out_GT] = ACTIONS(1671), - [anon_sym_e_GT] = ACTIONS(1671), - [anon_sym_o_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT] = ACTIONS(1671), - [anon_sym_err_GT_GT] = ACTIONS(1669), - [anon_sym_out_GT_GT] = ACTIONS(1669), - [anon_sym_e_GT_GT] = ACTIONS(1669), - [anon_sym_o_GT_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(508)] = { - [sym_comment] = STATE(508), - [ts_builtin_sym_end] = ACTIONS(1537), - [anon_sym_in] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1537), - [anon_sym_xor2] = ACTIONS(1537), - [anon_sym_or2] = ACTIONS(1537), - [anon_sym_not_DASHin2] = ACTIONS(1537), - [anon_sym_has2] = ACTIONS(1537), - [anon_sym_not_DASHhas2] = ACTIONS(1537), - [anon_sym_starts_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), - [anon_sym_ends_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), - [anon_sym_EQ_EQ2] = ACTIONS(1537), - [anon_sym_BANG_EQ2] = ACTIONS(1537), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1537), - [anon_sym_GT_EQ2] = ACTIONS(1537), - [anon_sym_EQ_TILDE2] = ACTIONS(1537), - [anon_sym_BANG_TILDE2] = ACTIONS(1537), - [anon_sym_like2] = ACTIONS(1537), - [anon_sym_not_DASHlike2] = ACTIONS(1537), - [anon_sym_STAR_STAR2] = ACTIONS(1537), - [anon_sym_PLUS_PLUS2] = ACTIONS(1537), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1537), - [anon_sym_SLASH_SLASH2] = ACTIONS(1537), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1537), - [anon_sym_bit_DASHshr2] = ACTIONS(1537), - [anon_sym_bit_DASHand2] = ACTIONS(1537), - [anon_sym_bit_DASHxor2] = ACTIONS(1537), - [anon_sym_bit_DASHor2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_QMARK2] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(509)] = { - [sym_cell_path] = STATE(944), - [sym_path] = STATE(472), - [sym_comment] = STATE(509), - [aux_sym__where_predicate_lhs_repeat1] = STATE(438), - [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(1886), - [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(510)] = { - [sym_cell_path] = STATE(748), - [sym_path] = STATE(472), - [sym_comment] = STATE(510), - [aux_sym__where_predicate_lhs_repeat1] = STATE(438), - [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_DOT2] = ACTIONS(1886), - [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(511)] = { - [sym_cell_path] = STATE(939), - [sym_path] = STATE(472), - [sym_comment] = STATE(511), - [aux_sym__where_predicate_lhs_repeat1] = STATE(438), - [anon_sym_in] = ACTIONS(1909), - [sym__newline] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(1909), - [anon_sym_PIPE] = ACTIONS(1909), - [anon_sym_err_GT_PIPE] = ACTIONS(1909), - [anon_sym_out_GT_PIPE] = ACTIONS(1909), - [anon_sym_e_GT_PIPE] = ACTIONS(1909), - [anon_sym_o_GT_PIPE] = ACTIONS(1909), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1909), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1909), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1909), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1909), - [anon_sym_RPAREN] = ACTIONS(1909), - [anon_sym_GT2] = ACTIONS(1911), - [anon_sym_DASH2] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1909), - [anon_sym_RBRACE] = ACTIONS(1909), - [anon_sym_EQ_GT] = ACTIONS(1909), - [anon_sym_STAR2] = ACTIONS(1911), - [anon_sym_and2] = ACTIONS(1909), - [anon_sym_xor2] = ACTIONS(1909), - [anon_sym_or2] = ACTIONS(1909), - [anon_sym_not_DASHin2] = ACTIONS(1909), - [anon_sym_has2] = ACTIONS(1909), - [anon_sym_not_DASHhas2] = ACTIONS(1909), - [anon_sym_starts_DASHwith2] = ACTIONS(1909), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1909), - [anon_sym_ends_DASHwith2] = ACTIONS(1909), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1909), - [anon_sym_EQ_EQ2] = ACTIONS(1909), - [anon_sym_BANG_EQ2] = ACTIONS(1909), - [anon_sym_LT2] = ACTIONS(1911), - [anon_sym_LT_EQ2] = ACTIONS(1909), - [anon_sym_GT_EQ2] = ACTIONS(1909), - [anon_sym_EQ_TILDE2] = ACTIONS(1909), - [anon_sym_BANG_TILDE2] = ACTIONS(1909), - [anon_sym_like2] = ACTIONS(1909), - [anon_sym_not_DASHlike2] = ACTIONS(1909), - [anon_sym_STAR_STAR2] = ACTIONS(1909), - [anon_sym_PLUS_PLUS2] = ACTIONS(1909), - [anon_sym_SLASH2] = ACTIONS(1911), - [anon_sym_mod2] = ACTIONS(1909), - [anon_sym_SLASH_SLASH2] = ACTIONS(1909), - [anon_sym_PLUS2] = ACTIONS(1911), - [anon_sym_bit_DASHshl2] = ACTIONS(1909), - [anon_sym_bit_DASHshr2] = ACTIONS(1909), - [anon_sym_bit_DASHand2] = ACTIONS(1909), - [anon_sym_bit_DASHxor2] = ACTIONS(1909), - [anon_sym_bit_DASHor2] = ACTIONS(1909), - [anon_sym_DOT2] = ACTIONS(1886), - [anon_sym_err_GT] = ACTIONS(1911), - [anon_sym_out_GT] = ACTIONS(1911), - [anon_sym_e_GT] = ACTIONS(1911), - [anon_sym_o_GT] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT] = ACTIONS(1911), - [anon_sym_err_GT_GT] = ACTIONS(1909), - [anon_sym_out_GT_GT] = ACTIONS(1909), - [anon_sym_e_GT_GT] = ACTIONS(1909), - [anon_sym_o_GT_GT] = ACTIONS(1909), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1909), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1909), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1909), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1909), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(512)] = { - [sym_comment] = STATE(512), - [anon_sym_if] = ACTIONS(1913), - [anon_sym_in] = ACTIONS(1913), - [sym__newline] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_PIPE] = ACTIONS(1913), - [anon_sym_err_GT_PIPE] = ACTIONS(1913), - [anon_sym_out_GT_PIPE] = ACTIONS(1913), - [anon_sym_e_GT_PIPE] = ACTIONS(1913), - [anon_sym_o_GT_PIPE] = ACTIONS(1913), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1913), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1913), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1913), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_GT2] = ACTIONS(1915), - [anon_sym_DASH2] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_EQ_GT] = ACTIONS(1913), - [anon_sym_STAR2] = ACTIONS(1915), - [anon_sym_and2] = ACTIONS(1913), - [anon_sym_xor2] = ACTIONS(1913), - [anon_sym_or2] = ACTIONS(1913), - [anon_sym_not_DASHin2] = ACTIONS(1913), - [anon_sym_has2] = ACTIONS(1913), - [anon_sym_not_DASHhas2] = ACTIONS(1913), - [anon_sym_starts_DASHwith2] = ACTIONS(1913), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1913), - [anon_sym_ends_DASHwith2] = ACTIONS(1913), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1913), - [anon_sym_EQ_EQ2] = ACTIONS(1913), - [anon_sym_BANG_EQ2] = ACTIONS(1913), - [anon_sym_LT2] = ACTIONS(1915), - [anon_sym_LT_EQ2] = ACTIONS(1913), - [anon_sym_GT_EQ2] = ACTIONS(1913), - [anon_sym_EQ_TILDE2] = ACTIONS(1913), - [anon_sym_BANG_TILDE2] = ACTIONS(1913), - [anon_sym_like2] = ACTIONS(1913), - [anon_sym_not_DASHlike2] = ACTIONS(1913), - [anon_sym_STAR_STAR2] = ACTIONS(1913), - [anon_sym_PLUS_PLUS2] = ACTIONS(1913), - [anon_sym_SLASH2] = ACTIONS(1915), - [anon_sym_mod2] = ACTIONS(1913), - [anon_sym_SLASH_SLASH2] = ACTIONS(1913), - [anon_sym_PLUS2] = ACTIONS(1915), - [anon_sym_bit_DASHshl2] = ACTIONS(1913), - [anon_sym_bit_DASHshr2] = ACTIONS(1913), - [anon_sym_bit_DASHand2] = ACTIONS(1913), - [anon_sym_bit_DASHxor2] = ACTIONS(1913), - [anon_sym_bit_DASHor2] = ACTIONS(1913), - [anon_sym_DOT_DOT2] = ACTIONS(1915), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1913), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1913), - [anon_sym_err_GT] = ACTIONS(1915), - [anon_sym_out_GT] = ACTIONS(1915), - [anon_sym_e_GT] = ACTIONS(1915), - [anon_sym_o_GT] = ACTIONS(1915), - [anon_sym_err_PLUSout_GT] = ACTIONS(1915), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1915), - [anon_sym_o_PLUSe_GT] = ACTIONS(1915), - [anon_sym_e_PLUSo_GT] = ACTIONS(1915), - [anon_sym_err_GT_GT] = ACTIONS(1913), - [anon_sym_out_GT_GT] = ACTIONS(1913), - [anon_sym_e_GT_GT] = ACTIONS(1913), - [anon_sym_o_GT_GT] = ACTIONS(1913), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1913), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1913), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1913), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1913), - [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1770), }, - [STATE(513)] = { - [sym_comment] = STATE(513), - [ts_builtin_sym_end] = ACTIONS(1533), - [anon_sym_in] = ACTIONS(1533), - [sym__newline] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1533), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_err_GT_PIPE] = ACTIONS(1533), - [anon_sym_out_GT_PIPE] = ACTIONS(1533), - [anon_sym_e_GT_PIPE] = ACTIONS(1533), - [anon_sym_o_GT_PIPE] = ACTIONS(1533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1533), - [anon_sym_GT2] = ACTIONS(1531), - [anon_sym_DASH2] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1533), - [anon_sym_STAR2] = ACTIONS(1531), - [anon_sym_and2] = ACTIONS(1533), - [anon_sym_xor2] = ACTIONS(1533), - [anon_sym_or2] = ACTIONS(1533), - [anon_sym_not_DASHin2] = ACTIONS(1533), - [anon_sym_has2] = ACTIONS(1533), - [anon_sym_not_DASHhas2] = ACTIONS(1533), - [anon_sym_starts_DASHwith2] = ACTIONS(1533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1533), - [anon_sym_ends_DASHwith2] = ACTIONS(1533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1533), - [anon_sym_EQ_EQ2] = ACTIONS(1533), - [anon_sym_BANG_EQ2] = ACTIONS(1533), - [anon_sym_LT2] = ACTIONS(1531), - [anon_sym_LT_EQ2] = ACTIONS(1533), - [anon_sym_GT_EQ2] = ACTIONS(1533), - [anon_sym_EQ_TILDE2] = ACTIONS(1533), - [anon_sym_BANG_TILDE2] = ACTIONS(1533), - [anon_sym_like2] = ACTIONS(1533), - [anon_sym_not_DASHlike2] = ACTIONS(1533), - [anon_sym_STAR_STAR2] = ACTIONS(1533), - [anon_sym_PLUS_PLUS2] = ACTIONS(1533), - [anon_sym_SLASH2] = ACTIONS(1531), - [anon_sym_mod2] = ACTIONS(1533), - [anon_sym_SLASH_SLASH2] = ACTIONS(1533), - [anon_sym_PLUS2] = ACTIONS(1531), - [anon_sym_bit_DASHshl2] = ACTIONS(1533), - [anon_sym_bit_DASHshr2] = ACTIONS(1533), - [anon_sym_bit_DASHand2] = ACTIONS(1533), - [anon_sym_bit_DASHxor2] = ACTIONS(1533), - [anon_sym_bit_DASHor2] = ACTIONS(1533), - [anon_sym_DOT_DOT2] = ACTIONS(1531), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1533), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1533), - [anon_sym_QMARK2] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_DOT2] = ACTIONS(1531), - [anon_sym_err_GT] = ACTIONS(1531), - [anon_sym_out_GT] = ACTIONS(1531), - [anon_sym_e_GT] = ACTIONS(1531), - [anon_sym_o_GT] = ACTIONS(1531), - [anon_sym_err_PLUSout_GT] = ACTIONS(1531), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1531), - [anon_sym_o_PLUSe_GT] = ACTIONS(1531), - [anon_sym_e_PLUSo_GT] = ACTIONS(1531), - [anon_sym_err_GT_GT] = ACTIONS(1533), - [anon_sym_out_GT_GT] = ACTIONS(1533), - [anon_sym_e_GT_GT] = ACTIONS(1533), - [anon_sym_o_GT_GT] = ACTIONS(1533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1533), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(514)] = { - [sym_cell_path] = STATE(989), - [sym_path] = STATE(472), - [sym_comment] = STATE(514), - [aux_sym__where_predicate_lhs_repeat1] = STATE(438), - [anon_sym_in] = ACTIONS(1917), - [sym__newline] = ACTIONS(1917), - [anon_sym_SEMI] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_err_GT_PIPE] = ACTIONS(1917), - [anon_sym_out_GT_PIPE] = ACTIONS(1917), - [anon_sym_e_GT_PIPE] = ACTIONS(1917), - [anon_sym_o_GT_PIPE] = ACTIONS(1917), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1917), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1917), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1917), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_GT2] = ACTIONS(1919), - [anon_sym_DASH2] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1917), - [anon_sym_EQ_GT] = ACTIONS(1917), - [anon_sym_STAR2] = ACTIONS(1919), - [anon_sym_and2] = ACTIONS(1917), - [anon_sym_xor2] = ACTIONS(1917), - [anon_sym_or2] = ACTIONS(1917), - [anon_sym_not_DASHin2] = ACTIONS(1917), - [anon_sym_has2] = ACTIONS(1917), - [anon_sym_not_DASHhas2] = ACTIONS(1917), - [anon_sym_starts_DASHwith2] = ACTIONS(1917), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1917), - [anon_sym_ends_DASHwith2] = ACTIONS(1917), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1917), - [anon_sym_EQ_EQ2] = ACTIONS(1917), - [anon_sym_BANG_EQ2] = ACTIONS(1917), - [anon_sym_LT2] = ACTIONS(1919), - [anon_sym_LT_EQ2] = ACTIONS(1917), - [anon_sym_GT_EQ2] = ACTIONS(1917), - [anon_sym_EQ_TILDE2] = ACTIONS(1917), - [anon_sym_BANG_TILDE2] = ACTIONS(1917), - [anon_sym_like2] = ACTIONS(1917), - [anon_sym_not_DASHlike2] = ACTIONS(1917), - [anon_sym_STAR_STAR2] = ACTIONS(1917), - [anon_sym_PLUS_PLUS2] = ACTIONS(1917), - [anon_sym_SLASH2] = ACTIONS(1919), - [anon_sym_mod2] = ACTIONS(1917), - [anon_sym_SLASH_SLASH2] = ACTIONS(1917), - [anon_sym_PLUS2] = ACTIONS(1919), - [anon_sym_bit_DASHshl2] = ACTIONS(1917), - [anon_sym_bit_DASHshr2] = ACTIONS(1917), - [anon_sym_bit_DASHand2] = ACTIONS(1917), - [anon_sym_bit_DASHxor2] = ACTIONS(1917), - [anon_sym_bit_DASHor2] = ACTIONS(1917), - [anon_sym_DOT2] = ACTIONS(1886), - [anon_sym_err_GT] = ACTIONS(1919), - [anon_sym_out_GT] = ACTIONS(1919), - [anon_sym_e_GT] = ACTIONS(1919), - [anon_sym_o_GT] = ACTIONS(1919), - [anon_sym_err_PLUSout_GT] = ACTIONS(1919), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1919), - [anon_sym_o_PLUSe_GT] = ACTIONS(1919), - [anon_sym_e_PLUSo_GT] = ACTIONS(1919), - [anon_sym_err_GT_GT] = ACTIONS(1917), - [anon_sym_out_GT_GT] = ACTIONS(1917), - [anon_sym_e_GT_GT] = ACTIONS(1917), - [anon_sym_o_GT_GT] = ACTIONS(1917), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1917), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1917), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1917), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1917), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(515)] = { - [sym_cell_path] = STATE(981), - [sym_path] = STATE(737), - [sym_comment] = STATE(515), - [aux_sym__where_predicate_lhs_repeat1] = STATE(586), - [ts_builtin_sym_end] = ACTIONS(1703), - [anon_sym_in] = ACTIONS(1703), - [sym__newline] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_err_GT_PIPE] = ACTIONS(1703), - [anon_sym_out_GT_PIPE] = ACTIONS(1703), - [anon_sym_e_GT_PIPE] = ACTIONS(1703), - [anon_sym_o_GT_PIPE] = ACTIONS(1703), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), - [anon_sym_GT2] = ACTIONS(1705), - [anon_sym_DASH2] = ACTIONS(1703), - [anon_sym_STAR2] = ACTIONS(1705), - [anon_sym_and2] = ACTIONS(1703), - [anon_sym_xor2] = ACTIONS(1703), - [anon_sym_or2] = ACTIONS(1703), - [anon_sym_not_DASHin2] = ACTIONS(1703), - [anon_sym_has2] = ACTIONS(1703), - [anon_sym_not_DASHhas2] = ACTIONS(1703), - [anon_sym_starts_DASHwith2] = ACTIONS(1703), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1703), - [anon_sym_ends_DASHwith2] = ACTIONS(1703), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1703), - [anon_sym_EQ_EQ2] = ACTIONS(1703), - [anon_sym_BANG_EQ2] = ACTIONS(1703), - [anon_sym_LT2] = ACTIONS(1705), - [anon_sym_LT_EQ2] = ACTIONS(1703), - [anon_sym_GT_EQ2] = ACTIONS(1703), - [anon_sym_EQ_TILDE2] = ACTIONS(1703), - [anon_sym_BANG_TILDE2] = ACTIONS(1703), - [anon_sym_like2] = ACTIONS(1703), - [anon_sym_not_DASHlike2] = ACTIONS(1703), - [anon_sym_STAR_STAR2] = ACTIONS(1703), - [anon_sym_PLUS_PLUS2] = ACTIONS(1703), - [anon_sym_SLASH2] = ACTIONS(1705), - [anon_sym_mod2] = ACTIONS(1703), - [anon_sym_SLASH_SLASH2] = ACTIONS(1703), - [anon_sym_PLUS2] = ACTIONS(1705), - [anon_sym_bit_DASHshl2] = ACTIONS(1703), - [anon_sym_bit_DASHshr2] = ACTIONS(1703), - [anon_sym_bit_DASHand2] = ACTIONS(1703), - [anon_sym_bit_DASHxor2] = ACTIONS(1703), - [anon_sym_bit_DASHor2] = ACTIONS(1703), - [anon_sym_DOT_DOT2] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), - [anon_sym_DOT2] = ACTIONS(1899), - [anon_sym_err_GT] = ACTIONS(1705), - [anon_sym_out_GT] = ACTIONS(1705), - [anon_sym_e_GT] = ACTIONS(1705), - [anon_sym_o_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT] = ACTIONS(1705), - [anon_sym_err_GT_GT] = ACTIONS(1703), - [anon_sym_out_GT_GT] = ACTIONS(1703), - [anon_sym_e_GT_GT] = ACTIONS(1703), - [anon_sym_o_GT_GT] = ACTIONS(1703), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(516)] = { - [sym_comment] = STATE(516), - [anon_sym_in] = ACTIONS(1921), - [sym__newline] = ACTIONS(1921), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_err_GT_PIPE] = ACTIONS(1921), - [anon_sym_out_GT_PIPE] = ACTIONS(1921), - [anon_sym_e_GT_PIPE] = ACTIONS(1921), - [anon_sym_o_GT_PIPE] = ACTIONS(1921), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1921), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1921), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1921), - [anon_sym_GT2] = ACTIONS(1923), - [anon_sym_DASH2] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1921), - [anon_sym_STAR2] = ACTIONS(1923), - [anon_sym_and2] = ACTIONS(1921), - [anon_sym_xor2] = ACTIONS(1921), - [anon_sym_or2] = ACTIONS(1921), - [anon_sym_not_DASHin2] = ACTIONS(1921), - [anon_sym_has2] = ACTIONS(1921), - [anon_sym_not_DASHhas2] = ACTIONS(1921), - [anon_sym_starts_DASHwith2] = ACTIONS(1921), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1921), - [anon_sym_ends_DASHwith2] = ACTIONS(1921), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1921), - [anon_sym_EQ_EQ2] = ACTIONS(1921), - [anon_sym_BANG_EQ2] = ACTIONS(1921), - [anon_sym_LT2] = ACTIONS(1923), - [anon_sym_LT_EQ2] = ACTIONS(1921), - [anon_sym_GT_EQ2] = ACTIONS(1921), - [anon_sym_EQ_TILDE2] = ACTIONS(1921), - [anon_sym_BANG_TILDE2] = ACTIONS(1921), - [anon_sym_like2] = ACTIONS(1921), - [anon_sym_not_DASHlike2] = ACTIONS(1921), - [anon_sym_LPAREN2] = ACTIONS(1921), - [anon_sym_STAR_STAR2] = ACTIONS(1921), - [anon_sym_PLUS_PLUS2] = ACTIONS(1921), - [anon_sym_SLASH2] = ACTIONS(1923), - [anon_sym_mod2] = ACTIONS(1921), - [anon_sym_SLASH_SLASH2] = ACTIONS(1921), - [anon_sym_PLUS2] = ACTIONS(1923), - [anon_sym_bit_DASHshl2] = ACTIONS(1921), - [anon_sym_bit_DASHshr2] = ACTIONS(1921), - [anon_sym_bit_DASHand2] = ACTIONS(1921), - [anon_sym_bit_DASHxor2] = ACTIONS(1921), - [anon_sym_bit_DASHor2] = ACTIONS(1921), - [anon_sym_DOT_DOT2] = ACTIONS(1923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1921), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1921), - [anon_sym_err_GT] = ACTIONS(1923), - [anon_sym_out_GT] = ACTIONS(1923), - [anon_sym_e_GT] = ACTIONS(1923), - [anon_sym_o_GT] = ACTIONS(1923), - [anon_sym_err_PLUSout_GT] = ACTIONS(1923), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1923), - [anon_sym_o_PLUSe_GT] = ACTIONS(1923), - [anon_sym_e_PLUSo_GT] = ACTIONS(1923), - [anon_sym_err_GT_GT] = ACTIONS(1921), - [anon_sym_out_GT_GT] = ACTIONS(1921), - [anon_sym_e_GT_GT] = ACTIONS(1921), - [anon_sym_o_GT_GT] = ACTIONS(1921), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1921), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1921), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1921), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1921), - [sym__unquoted_pattern] = ACTIONS(1923), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(517)] = { - [sym_comment] = STATE(517), - [anon_sym_in] = ACTIONS(1774), - [sym__newline] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_err_GT_PIPE] = ACTIONS(1774), - [anon_sym_out_GT_PIPE] = ACTIONS(1774), - [anon_sym_e_GT_PIPE] = ACTIONS(1774), - [anon_sym_o_GT_PIPE] = ACTIONS(1774), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), - [anon_sym_RPAREN] = ACTIONS(1774), - [anon_sym_GT2] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1774), - [anon_sym_RBRACE] = ACTIONS(1774), - [anon_sym_STAR2] = ACTIONS(1776), - [anon_sym_and2] = ACTIONS(1774), - [anon_sym_xor2] = ACTIONS(1774), - [anon_sym_or2] = ACTIONS(1774), - [anon_sym_not_DASHin2] = ACTIONS(1774), - [anon_sym_has2] = ACTIONS(1774), - [anon_sym_not_DASHhas2] = ACTIONS(1774), - [anon_sym_starts_DASHwith2] = ACTIONS(1774), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1774), - [anon_sym_ends_DASHwith2] = ACTIONS(1774), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1774), - [anon_sym_EQ_EQ2] = ACTIONS(1774), - [anon_sym_BANG_EQ2] = ACTIONS(1774), - [anon_sym_LT2] = ACTIONS(1776), - [anon_sym_LT_EQ2] = ACTIONS(1774), - [anon_sym_GT_EQ2] = ACTIONS(1774), - [anon_sym_EQ_TILDE2] = ACTIONS(1774), - [anon_sym_BANG_TILDE2] = ACTIONS(1774), - [anon_sym_like2] = ACTIONS(1774), - [anon_sym_not_DASHlike2] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_STAR_STAR2] = ACTIONS(1774), - [anon_sym_PLUS_PLUS2] = ACTIONS(1774), - [anon_sym_SLASH2] = ACTIONS(1776), - [anon_sym_mod2] = ACTIONS(1774), - [anon_sym_SLASH_SLASH2] = ACTIONS(1774), - [anon_sym_PLUS2] = ACTIONS(1776), - [anon_sym_bit_DASHshl2] = ACTIONS(1774), - [anon_sym_bit_DASHshr2] = ACTIONS(1774), - [anon_sym_bit_DASHand2] = ACTIONS(1774), - [anon_sym_bit_DASHxor2] = ACTIONS(1774), - [anon_sym_bit_DASHor2] = ACTIONS(1774), - [anon_sym_DOT_DOT2] = ACTIONS(1776), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1774), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1774), - [anon_sym_err_GT] = ACTIONS(1776), - [anon_sym_out_GT] = ACTIONS(1776), - [anon_sym_e_GT] = ACTIONS(1776), - [anon_sym_o_GT] = ACTIONS(1776), - [anon_sym_err_PLUSout_GT] = ACTIONS(1776), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), - [anon_sym_o_PLUSe_GT] = ACTIONS(1776), - [anon_sym_e_PLUSo_GT] = ACTIONS(1776), - [anon_sym_err_GT_GT] = ACTIONS(1774), - [anon_sym_out_GT_GT] = ACTIONS(1774), - [anon_sym_e_GT_GT] = ACTIONS(1774), - [anon_sym_o_GT_GT] = ACTIONS(1774), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), - [sym__unquoted_pattern] = ACTIONS(1776), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(518)] = { - [sym_cell_path] = STATE(758), - [sym_path] = STATE(472), - [sym_comment] = STATE(518), - [aux_sym__where_predicate_lhs_repeat1] = STATE(438), - [anon_sym_in] = ACTIONS(1925), - [sym__newline] = ACTIONS(1925), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_err_GT_PIPE] = ACTIONS(1925), - [anon_sym_out_GT_PIPE] = ACTIONS(1925), - [anon_sym_e_GT_PIPE] = ACTIONS(1925), - [anon_sym_o_GT_PIPE] = ACTIONS(1925), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1925), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1925), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1925), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1925), - [anon_sym_RPAREN] = ACTIONS(1925), - [anon_sym_GT2] = ACTIONS(1927), - [anon_sym_DASH2] = ACTIONS(1925), - [anon_sym_LBRACE] = ACTIONS(1925), - [anon_sym_RBRACE] = ACTIONS(1925), - [anon_sym_EQ_GT] = ACTIONS(1925), - [anon_sym_STAR2] = ACTIONS(1927), - [anon_sym_and2] = ACTIONS(1925), - [anon_sym_xor2] = ACTIONS(1925), - [anon_sym_or2] = ACTIONS(1925), - [anon_sym_not_DASHin2] = ACTIONS(1925), - [anon_sym_has2] = ACTIONS(1925), - [anon_sym_not_DASHhas2] = ACTIONS(1925), - [anon_sym_starts_DASHwith2] = ACTIONS(1925), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1925), - [anon_sym_ends_DASHwith2] = ACTIONS(1925), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1925), - [anon_sym_EQ_EQ2] = ACTIONS(1925), - [anon_sym_BANG_EQ2] = ACTIONS(1925), - [anon_sym_LT2] = ACTIONS(1927), - [anon_sym_LT_EQ2] = ACTIONS(1925), - [anon_sym_GT_EQ2] = ACTIONS(1925), - [anon_sym_EQ_TILDE2] = ACTIONS(1925), - [anon_sym_BANG_TILDE2] = ACTIONS(1925), - [anon_sym_like2] = ACTIONS(1925), - [anon_sym_not_DASHlike2] = ACTIONS(1925), - [anon_sym_STAR_STAR2] = ACTIONS(1925), - [anon_sym_PLUS_PLUS2] = ACTIONS(1925), - [anon_sym_SLASH2] = ACTIONS(1927), - [anon_sym_mod2] = ACTIONS(1925), - [anon_sym_SLASH_SLASH2] = ACTIONS(1925), - [anon_sym_PLUS2] = ACTIONS(1927), - [anon_sym_bit_DASHshl2] = ACTIONS(1925), - [anon_sym_bit_DASHshr2] = ACTIONS(1925), - [anon_sym_bit_DASHand2] = ACTIONS(1925), - [anon_sym_bit_DASHxor2] = ACTIONS(1925), - [anon_sym_bit_DASHor2] = ACTIONS(1925), - [anon_sym_DOT2] = ACTIONS(1886), - [anon_sym_err_GT] = ACTIONS(1927), - [anon_sym_out_GT] = ACTIONS(1927), - [anon_sym_e_GT] = ACTIONS(1927), - [anon_sym_o_GT] = ACTIONS(1927), - [anon_sym_err_PLUSout_GT] = ACTIONS(1927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1927), - [anon_sym_o_PLUSe_GT] = ACTIONS(1927), - [anon_sym_e_PLUSo_GT] = ACTIONS(1927), - [anon_sym_err_GT_GT] = ACTIONS(1925), - [anon_sym_out_GT_GT] = ACTIONS(1925), - [anon_sym_e_GT_GT] = ACTIONS(1925), - [anon_sym_o_GT_GT] = ACTIONS(1925), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1925), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1925), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1925), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1925), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(519)] = { - [sym__path_suffix] = STATE(742), + [519] = { + [sym_cell_path] = STATE(984), + [sym_path] = STATE(466), [sym_comment] = STATE(519), - [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_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(1929), - [anon_sym_BANG] = ACTIONS(1931), - [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(520)] = { + [aux_sym__where_predicate_lhs_repeat1] = STATE(430), + [anon_sym_in] = ACTIONS(1934), + [sym__newline] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_PIPE] = ACTIONS(1934), + [anon_sym_err_GT_PIPE] = ACTIONS(1934), + [anon_sym_out_GT_PIPE] = ACTIONS(1934), + [anon_sym_e_GT_PIPE] = ACTIONS(1934), + [anon_sym_o_GT_PIPE] = ACTIONS(1934), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1934), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1934), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1934), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1934), + [anon_sym_RPAREN] = ACTIONS(1934), + [anon_sym_GT2] = ACTIONS(1936), + [anon_sym_DASH2] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_RBRACE] = ACTIONS(1934), + [anon_sym_EQ_GT] = ACTIONS(1934), + [anon_sym_STAR2] = ACTIONS(1936), + [anon_sym_and2] = ACTIONS(1934), + [anon_sym_xor2] = ACTIONS(1934), + [anon_sym_or2] = ACTIONS(1934), + [anon_sym_not_DASHin2] = ACTIONS(1934), + [anon_sym_has2] = ACTIONS(1934), + [anon_sym_not_DASHhas2] = ACTIONS(1934), + [anon_sym_starts_DASHwith2] = ACTIONS(1934), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1934), + [anon_sym_ends_DASHwith2] = ACTIONS(1934), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1934), + [anon_sym_EQ_EQ2] = ACTIONS(1934), + [anon_sym_BANG_EQ2] = ACTIONS(1934), + [anon_sym_LT2] = ACTIONS(1936), + [anon_sym_LT_EQ2] = ACTIONS(1934), + [anon_sym_GT_EQ2] = ACTIONS(1934), + [anon_sym_EQ_TILDE2] = ACTIONS(1934), + [anon_sym_BANG_TILDE2] = ACTIONS(1934), + [anon_sym_like2] = ACTIONS(1934), + [anon_sym_not_DASHlike2] = ACTIONS(1934), + [anon_sym_STAR_STAR2] = ACTIONS(1934), + [anon_sym_PLUS_PLUS2] = ACTIONS(1934), + [anon_sym_SLASH2] = ACTIONS(1936), + [anon_sym_mod2] = ACTIONS(1934), + [anon_sym_SLASH_SLASH2] = ACTIONS(1934), + [anon_sym_PLUS2] = ACTIONS(1936), + [anon_sym_bit_DASHshl2] = ACTIONS(1934), + [anon_sym_bit_DASHshr2] = ACTIONS(1934), + [anon_sym_bit_DASHand2] = ACTIONS(1934), + [anon_sym_bit_DASHxor2] = ACTIONS(1934), + [anon_sym_bit_DASHor2] = ACTIONS(1934), + [anon_sym_DOT2] = ACTIONS(1898), + [anon_sym_err_GT] = ACTIONS(1936), + [anon_sym_out_GT] = ACTIONS(1936), + [anon_sym_e_GT] = ACTIONS(1936), + [anon_sym_o_GT] = ACTIONS(1936), + [anon_sym_err_PLUSout_GT] = ACTIONS(1936), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1936), + [anon_sym_o_PLUSe_GT] = ACTIONS(1936), + [anon_sym_e_PLUSo_GT] = ACTIONS(1936), + [anon_sym_err_GT_GT] = ACTIONS(1934), + [anon_sym_out_GT_GT] = ACTIONS(1934), + [anon_sym_e_GT_GT] = ACTIONS(1934), + [anon_sym_o_GT_GT] = ACTIONS(1934), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1934), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1934), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1934), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1934), + [anon_sym_POUND] = ACTIONS(3), + }, + [520] = { [sym_comment] = STATE(520), - [anon_sym_if] = ACTIONS(1933), - [anon_sym_in] = ACTIONS(1933), - [sym__newline] = ACTIONS(1933), - [anon_sym_SEMI] = ACTIONS(1933), - [anon_sym_PIPE] = ACTIONS(1933), - [anon_sym_err_GT_PIPE] = ACTIONS(1933), - [anon_sym_out_GT_PIPE] = ACTIONS(1933), - [anon_sym_e_GT_PIPE] = ACTIONS(1933), - [anon_sym_o_GT_PIPE] = ACTIONS(1933), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1933), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1933), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1933), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1933), - [anon_sym_RPAREN] = ACTIONS(1933), - [anon_sym_GT2] = ACTIONS(1935), - [anon_sym_DASH2] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1933), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_EQ_GT] = ACTIONS(1933), - [anon_sym_STAR2] = ACTIONS(1935), - [anon_sym_and2] = ACTIONS(1933), - [anon_sym_xor2] = ACTIONS(1933), - [anon_sym_or2] = ACTIONS(1933), - [anon_sym_not_DASHin2] = ACTIONS(1933), - [anon_sym_has2] = ACTIONS(1933), - [anon_sym_not_DASHhas2] = ACTIONS(1933), - [anon_sym_starts_DASHwith2] = ACTIONS(1933), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1933), - [anon_sym_ends_DASHwith2] = ACTIONS(1933), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1933), - [anon_sym_EQ_EQ2] = ACTIONS(1933), - [anon_sym_BANG_EQ2] = ACTIONS(1933), - [anon_sym_LT2] = ACTIONS(1935), - [anon_sym_LT_EQ2] = ACTIONS(1933), - [anon_sym_GT_EQ2] = ACTIONS(1933), - [anon_sym_EQ_TILDE2] = ACTIONS(1933), - [anon_sym_BANG_TILDE2] = ACTIONS(1933), - [anon_sym_like2] = ACTIONS(1933), - [anon_sym_not_DASHlike2] = ACTIONS(1933), - [anon_sym_STAR_STAR2] = ACTIONS(1933), - [anon_sym_PLUS_PLUS2] = ACTIONS(1933), - [anon_sym_SLASH2] = ACTIONS(1935), - [anon_sym_mod2] = ACTIONS(1933), - [anon_sym_SLASH_SLASH2] = ACTIONS(1933), - [anon_sym_PLUS2] = ACTIONS(1935), - [anon_sym_bit_DASHshl2] = ACTIONS(1933), - [anon_sym_bit_DASHshr2] = ACTIONS(1933), - [anon_sym_bit_DASHand2] = ACTIONS(1933), - [anon_sym_bit_DASHxor2] = ACTIONS(1933), - [anon_sym_bit_DASHor2] = ACTIONS(1933), - [anon_sym_DOT_DOT2] = ACTIONS(1935), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1933), - [anon_sym_err_GT] = ACTIONS(1935), - [anon_sym_out_GT] = ACTIONS(1935), - [anon_sym_e_GT] = ACTIONS(1935), - [anon_sym_o_GT] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT] = ACTIONS(1935), - [anon_sym_err_GT_GT] = ACTIONS(1933), - [anon_sym_out_GT_GT] = ACTIONS(1933), - [anon_sym_e_GT_GT] = ACTIONS(1933), - [anon_sym_o_GT_GT] = ACTIONS(1933), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1933), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1933), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1933), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1933), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(521)] = { + [anon_sym_in] = ACTIONS(1598), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_GT2] = ACTIONS(1596), + [anon_sym_DASH2] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_EQ_GT] = ACTIONS(1598), + [anon_sym_STAR2] = ACTIONS(1596), + [anon_sym_and2] = ACTIONS(1598), + [anon_sym_xor2] = ACTIONS(1598), + [anon_sym_or2] = ACTIONS(1598), + [anon_sym_not_DASHin2] = ACTIONS(1598), + [anon_sym_has2] = ACTIONS(1598), + [anon_sym_not_DASHhas2] = ACTIONS(1598), + [anon_sym_starts_DASHwith2] = ACTIONS(1598), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1598), + [anon_sym_ends_DASHwith2] = ACTIONS(1598), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1598), + [anon_sym_EQ_EQ2] = ACTIONS(1598), + [anon_sym_BANG_EQ2] = ACTIONS(1598), + [anon_sym_LT2] = ACTIONS(1596), + [anon_sym_LT_EQ2] = ACTIONS(1598), + [anon_sym_GT_EQ2] = ACTIONS(1598), + [anon_sym_EQ_TILDE2] = ACTIONS(1598), + [anon_sym_BANG_TILDE2] = ACTIONS(1598), + [anon_sym_like2] = ACTIONS(1598), + [anon_sym_not_DASHlike2] = ACTIONS(1598), + [anon_sym_STAR_STAR2] = ACTIONS(1598), + [anon_sym_PLUS_PLUS2] = ACTIONS(1598), + [anon_sym_SLASH2] = ACTIONS(1596), + [anon_sym_mod2] = ACTIONS(1598), + [anon_sym_SLASH_SLASH2] = ACTIONS(1598), + [anon_sym_PLUS2] = ACTIONS(1596), + [anon_sym_bit_DASHshl2] = ACTIONS(1598), + [anon_sym_bit_DASHshr2] = ACTIONS(1598), + [anon_sym_bit_DASHand2] = ACTIONS(1598), + [anon_sym_bit_DASHxor2] = ACTIONS(1598), + [anon_sym_bit_DASHor2] = ACTIONS(1598), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [anon_sym_COLON2] = ACTIONS(1598), + [anon_sym_err_GT] = ACTIONS(1596), + [anon_sym_out_GT] = ACTIONS(1596), + [anon_sym_e_GT] = ACTIONS(1596), + [anon_sym_o_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT] = ACTIONS(1596), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(3), + }, + [521] = { [sym_comment] = STATE(521), - [anon_sym_EQ] = ACTIONS(1937), - [anon_sym_PLUS_EQ] = ACTIONS(1939), - [anon_sym_DASH_EQ] = ACTIONS(1939), - [anon_sym_STAR_EQ] = ACTIONS(1939), - [anon_sym_SLASH_EQ] = ACTIONS(1939), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1939), - [anon_sym_in] = ACTIONS(1738), - [sym__newline] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_err_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_GT_PIPE] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), - [anon_sym_GT2] = ACTIONS(1616), - [anon_sym_DASH2] = ACTIONS(1616), - [anon_sym_STAR2] = ACTIONS(1616), - [anon_sym_and2] = ACTIONS(1738), - [anon_sym_xor2] = ACTIONS(1738), - [anon_sym_or2] = ACTIONS(1738), - [anon_sym_not_DASHin2] = ACTIONS(1738), - [anon_sym_has2] = ACTIONS(1738), - [anon_sym_not_DASHhas2] = ACTIONS(1738), - [anon_sym_starts_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), - [anon_sym_ends_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), - [anon_sym_EQ_EQ2] = ACTIONS(1738), - [anon_sym_BANG_EQ2] = ACTIONS(1738), - [anon_sym_LT2] = ACTIONS(1616), - [anon_sym_LT_EQ2] = ACTIONS(1738), - [anon_sym_GT_EQ2] = ACTIONS(1738), - [anon_sym_EQ_TILDE2] = ACTIONS(1738), - [anon_sym_BANG_TILDE2] = ACTIONS(1738), - [anon_sym_like2] = ACTIONS(1738), - [anon_sym_not_DASHlike2] = ACTIONS(1738), - [anon_sym_STAR_STAR2] = ACTIONS(1738), - [anon_sym_PLUS_PLUS2] = ACTIONS(1616), - [anon_sym_SLASH2] = ACTIONS(1616), - [anon_sym_mod2] = ACTIONS(1738), - [anon_sym_SLASH_SLASH2] = ACTIONS(1738), - [anon_sym_PLUS2] = ACTIONS(1616), - [anon_sym_bit_DASHshl2] = ACTIONS(1738), - [anon_sym_bit_DASHshr2] = ACTIONS(1738), - [anon_sym_bit_DASHand2] = ACTIONS(1738), - [anon_sym_bit_DASHxor2] = ACTIONS(1738), - [anon_sym_bit_DASHor2] = ACTIONS(1738), - [anon_sym_DOT_DOT2] = ACTIONS(1620), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), - [anon_sym_err_GT] = ACTIONS(1616), - [anon_sym_out_GT] = ACTIONS(1616), - [anon_sym_e_GT] = ACTIONS(1616), - [anon_sym_o_GT] = ACTIONS(1616), - [anon_sym_err_PLUSout_GT] = ACTIONS(1616), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), - [anon_sym_o_PLUSe_GT] = ACTIONS(1616), - [anon_sym_e_PLUSo_GT] = ACTIONS(1616), - [anon_sym_err_GT_GT] = ACTIONS(1738), - [anon_sym_out_GT_GT] = ACTIONS(1738), - [anon_sym_e_GT_GT] = ACTIONS(1738), - [anon_sym_o_GT_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(522)] = { + [ts_builtin_sym_end] = ACTIONS(757), + [anon_sym_in] = ACTIONS(757), + [sym__newline] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(757), + [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_err_GT_PIPE] = ACTIONS(757), + [anon_sym_out_GT_PIPE] = ACTIONS(757), + [anon_sym_e_GT_PIPE] = ACTIONS(757), + [anon_sym_o_GT_PIPE] = ACTIONS(757), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(757), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(757), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(757), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(757), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(757), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(757), + [anon_sym_xor2] = ACTIONS(757), + [anon_sym_or2] = ACTIONS(757), + [anon_sym_not_DASHin2] = ACTIONS(757), + [anon_sym_has2] = ACTIONS(757), + [anon_sym_not_DASHhas2] = ACTIONS(757), + [anon_sym_starts_DASHwith2] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(757), + [anon_sym_ends_DASHwith2] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(757), + [anon_sym_EQ_EQ2] = ACTIONS(757), + [anon_sym_BANG_EQ2] = ACTIONS(757), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(757), + [anon_sym_GT_EQ2] = ACTIONS(757), + [anon_sym_EQ_TILDE2] = ACTIONS(757), + [anon_sym_BANG_TILDE2] = ACTIONS(757), + [anon_sym_like2] = ACTIONS(757), + [anon_sym_not_DASHlike2] = ACTIONS(757), + [anon_sym_LPAREN2] = ACTIONS(757), + [anon_sym_STAR_STAR2] = ACTIONS(757), + [anon_sym_PLUS_PLUS2] = ACTIONS(757), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(757), + [anon_sym_SLASH_SLASH2] = ACTIONS(757), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(757), + [anon_sym_bit_DASHshr2] = ACTIONS(757), + [anon_sym_bit_DASHand2] = ACTIONS(757), + [anon_sym_bit_DASHxor2] = ACTIONS(757), + [anon_sym_bit_DASHor2] = ACTIONS(757), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(757), + [anon_sym_out_GT_GT] = ACTIONS(757), + [anon_sym_e_GT_GT] = ACTIONS(757), + [anon_sym_o_GT_GT] = ACTIONS(757), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(757), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(757), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(757), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(757), + [sym__unquoted_pattern] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(3), + }, + [522] = { + [aux_sym__repeat_newline] = STATE(522), [sym_comment] = STATE(522), - [ts_builtin_sym_end] = ACTIONS(761), - [anon_sym_in] = ACTIONS(761), - [sym__newline] = ACTIONS(761), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_PIPE] = ACTIONS(761), - [anon_sym_err_GT_PIPE] = ACTIONS(761), - [anon_sym_out_GT_PIPE] = ACTIONS(761), - [anon_sym_e_GT_PIPE] = ACTIONS(761), - [anon_sym_o_GT_PIPE] = ACTIONS(761), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(761), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(761), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(761), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(761), - [anon_sym_GT2] = ACTIONS(759), - [anon_sym_DASH2] = ACTIONS(761), - [anon_sym_STAR2] = ACTIONS(759), - [anon_sym_and2] = ACTIONS(761), - [anon_sym_xor2] = ACTIONS(761), - [anon_sym_or2] = ACTIONS(761), - [anon_sym_not_DASHin2] = ACTIONS(761), - [anon_sym_has2] = ACTIONS(761), - [anon_sym_not_DASHhas2] = ACTIONS(761), - [anon_sym_starts_DASHwith2] = ACTIONS(761), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(761), - [anon_sym_ends_DASHwith2] = ACTIONS(761), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(761), - [anon_sym_EQ_EQ2] = ACTIONS(761), - [anon_sym_BANG_EQ2] = ACTIONS(761), - [anon_sym_LT2] = ACTIONS(759), - [anon_sym_LT_EQ2] = ACTIONS(761), - [anon_sym_GT_EQ2] = ACTIONS(761), - [anon_sym_EQ_TILDE2] = ACTIONS(761), - [anon_sym_BANG_TILDE2] = ACTIONS(761), - [anon_sym_like2] = ACTIONS(761), - [anon_sym_not_DASHlike2] = ACTIONS(761), - [anon_sym_LPAREN2] = ACTIONS(761), - [anon_sym_STAR_STAR2] = ACTIONS(761), - [anon_sym_PLUS_PLUS2] = ACTIONS(761), - [anon_sym_SLASH2] = ACTIONS(759), - [anon_sym_mod2] = ACTIONS(761), - [anon_sym_SLASH_SLASH2] = ACTIONS(761), - [anon_sym_PLUS2] = ACTIONS(759), - [anon_sym_bit_DASHshl2] = ACTIONS(761), - [anon_sym_bit_DASHshr2] = ACTIONS(761), - [anon_sym_bit_DASHand2] = ACTIONS(761), - [anon_sym_bit_DASHxor2] = ACTIONS(761), - [anon_sym_bit_DASHor2] = ACTIONS(761), - [anon_sym_DOT_DOT2] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(761), - [sym_filesize_unit] = ACTIONS(759), - [sym_duration_unit] = ACTIONS(761), - [anon_sym_err_GT] = ACTIONS(759), - [anon_sym_out_GT] = ACTIONS(759), - [anon_sym_e_GT] = ACTIONS(759), - [anon_sym_o_GT] = ACTIONS(759), - [anon_sym_err_PLUSout_GT] = ACTIONS(759), - [anon_sym_out_PLUSerr_GT] = ACTIONS(759), - [anon_sym_o_PLUSe_GT] = ACTIONS(759), - [anon_sym_e_PLUSo_GT] = ACTIONS(759), - [anon_sym_err_GT_GT] = ACTIONS(761), - [anon_sym_out_GT_GT] = ACTIONS(761), - [anon_sym_e_GT_GT] = ACTIONS(761), - [anon_sym_o_GT_GT] = ACTIONS(761), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(761), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(761), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(761), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(761), - [sym__unquoted_pattern] = ACTIONS(759), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(523)] = { + [anon_sym_else] = ACTIONS(1938), + [anon_sym_catch] = ACTIONS(1938), + [anon_sym_finally] = ACTIONS(1938), + [anon_sym_in] = ACTIONS(1938), + [sym__newline] = ACTIONS(1940), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_err_GT_PIPE] = ACTIONS(1938), + [anon_sym_out_GT_PIPE] = ACTIONS(1938), + [anon_sym_e_GT_PIPE] = ACTIONS(1938), + [anon_sym_o_GT_PIPE] = ACTIONS(1938), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1938), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1938), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1938), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1938), + [anon_sym_COLON] = ACTIONS(1938), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_RPAREN] = ACTIONS(1938), + [anon_sym_GT2] = ACTIONS(1943), + [anon_sym_DASH2] = ACTIONS(1938), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_STAR2] = ACTIONS(1943), + [anon_sym_and2] = ACTIONS(1938), + [anon_sym_xor2] = ACTIONS(1938), + [anon_sym_or2] = ACTIONS(1938), + [anon_sym_not_DASHin2] = ACTIONS(1938), + [anon_sym_has2] = ACTIONS(1938), + [anon_sym_not_DASHhas2] = ACTIONS(1938), + [anon_sym_starts_DASHwith2] = ACTIONS(1938), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1938), + [anon_sym_ends_DASHwith2] = ACTIONS(1938), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1938), + [anon_sym_EQ_EQ2] = ACTIONS(1938), + [anon_sym_BANG_EQ2] = ACTIONS(1938), + [anon_sym_LT2] = ACTIONS(1943), + [anon_sym_LT_EQ2] = ACTIONS(1938), + [anon_sym_GT_EQ2] = ACTIONS(1938), + [anon_sym_EQ_TILDE2] = ACTIONS(1938), + [anon_sym_BANG_TILDE2] = ACTIONS(1938), + [anon_sym_like2] = ACTIONS(1938), + [anon_sym_not_DASHlike2] = ACTIONS(1938), + [anon_sym_STAR_STAR2] = ACTIONS(1938), + [anon_sym_PLUS_PLUS2] = ACTIONS(1938), + [anon_sym_SLASH2] = ACTIONS(1943), + [anon_sym_mod2] = ACTIONS(1938), + [anon_sym_SLASH_SLASH2] = ACTIONS(1938), + [anon_sym_PLUS2] = ACTIONS(1943), + [anon_sym_bit_DASHshl2] = ACTIONS(1938), + [anon_sym_bit_DASHshr2] = ACTIONS(1938), + [anon_sym_bit_DASHand2] = ACTIONS(1938), + [anon_sym_bit_DASHxor2] = ACTIONS(1938), + [anon_sym_bit_DASHor2] = ACTIONS(1938), + [anon_sym_err_GT] = ACTIONS(1943), + [anon_sym_out_GT] = ACTIONS(1943), + [anon_sym_e_GT] = ACTIONS(1943), + [anon_sym_o_GT] = ACTIONS(1943), + [anon_sym_err_PLUSout_GT] = ACTIONS(1943), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1943), + [anon_sym_o_PLUSe_GT] = ACTIONS(1943), + [anon_sym_e_PLUSo_GT] = ACTIONS(1943), + [anon_sym_err_GT_GT] = ACTIONS(1938), + [anon_sym_out_GT_GT] = ACTIONS(1938), + [anon_sym_e_GT_GT] = ACTIONS(1938), + [anon_sym_o_GT_GT] = ACTIONS(1938), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1938), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1938), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1938), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1938), + [anon_sym_POUND] = ACTIONS(3), + }, + [523] = { [sym_comment] = STATE(523), - [ts_builtin_sym_end] = ACTIONS(1774), - [anon_sym_in] = ACTIONS(1774), - [sym__newline] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_err_GT_PIPE] = ACTIONS(1774), - [anon_sym_out_GT_PIPE] = ACTIONS(1774), - [anon_sym_e_GT_PIPE] = ACTIONS(1774), - [anon_sym_o_GT_PIPE] = ACTIONS(1774), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), - [anon_sym_GT2] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(1774), - [anon_sym_STAR2] = ACTIONS(1776), - [anon_sym_and2] = ACTIONS(1774), - [anon_sym_xor2] = ACTIONS(1774), - [anon_sym_or2] = ACTIONS(1774), - [anon_sym_not_DASHin2] = ACTIONS(1774), - [anon_sym_has2] = ACTIONS(1774), - [anon_sym_not_DASHhas2] = ACTIONS(1774), - [anon_sym_starts_DASHwith2] = ACTIONS(1774), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1774), - [anon_sym_ends_DASHwith2] = ACTIONS(1774), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1774), - [anon_sym_EQ_EQ2] = ACTIONS(1774), - [anon_sym_BANG_EQ2] = ACTIONS(1774), - [anon_sym_LT2] = ACTIONS(1776), - [anon_sym_LT_EQ2] = ACTIONS(1774), - [anon_sym_GT_EQ2] = ACTIONS(1774), - [anon_sym_EQ_TILDE2] = ACTIONS(1774), - [anon_sym_BANG_TILDE2] = ACTIONS(1774), - [anon_sym_like2] = ACTIONS(1774), - [anon_sym_not_DASHlike2] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_STAR_STAR2] = ACTIONS(1774), - [anon_sym_PLUS_PLUS2] = ACTIONS(1774), - [anon_sym_SLASH2] = ACTIONS(1776), - [anon_sym_mod2] = ACTIONS(1774), - [anon_sym_SLASH_SLASH2] = ACTIONS(1774), - [anon_sym_PLUS2] = ACTIONS(1776), - [anon_sym_bit_DASHshl2] = ACTIONS(1774), - [anon_sym_bit_DASHshr2] = ACTIONS(1774), - [anon_sym_bit_DASHand2] = ACTIONS(1774), - [anon_sym_bit_DASHxor2] = ACTIONS(1774), - [anon_sym_bit_DASHor2] = ACTIONS(1774), - [anon_sym_DOT_DOT2] = ACTIONS(1776), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1774), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1774), - [aux_sym__immediate_decimal_token1] = ACTIONS(1941), - [aux_sym__immediate_decimal_token5] = ACTIONS(1943), - [anon_sym_err_GT] = ACTIONS(1776), - [anon_sym_out_GT] = ACTIONS(1776), - [anon_sym_e_GT] = ACTIONS(1776), - [anon_sym_o_GT] = ACTIONS(1776), - [anon_sym_err_PLUSout_GT] = ACTIONS(1776), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), - [anon_sym_o_PLUSe_GT] = ACTIONS(1776), - [anon_sym_e_PLUSo_GT] = ACTIONS(1776), - [anon_sym_err_GT_GT] = ACTIONS(1774), - [anon_sym_out_GT_GT] = ACTIONS(1774), - [anon_sym_e_GT_GT] = ACTIONS(1774), - [anon_sym_o_GT_GT] = ACTIONS(1774), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), - [sym__unquoted_pattern] = ACTIONS(1776), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(524)] = { + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_in] = ACTIONS(803), + [sym__newline] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_err_GT_PIPE] = ACTIONS(803), + [anon_sym_out_GT_PIPE] = ACTIONS(803), + [anon_sym_e_GT_PIPE] = ACTIONS(803), + [anon_sym_o_GT_PIPE] = ACTIONS(803), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(803), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(803), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(803), + [anon_sym_GT2] = ACTIONS(801), + [anon_sym_DASH2] = ACTIONS(803), + [anon_sym_STAR2] = ACTIONS(801), + [anon_sym_and2] = ACTIONS(803), + [anon_sym_xor2] = ACTIONS(803), + [anon_sym_or2] = ACTIONS(803), + [anon_sym_not_DASHin2] = ACTIONS(803), + [anon_sym_has2] = ACTIONS(803), + [anon_sym_not_DASHhas2] = ACTIONS(803), + [anon_sym_starts_DASHwith2] = ACTIONS(803), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(803), + [anon_sym_ends_DASHwith2] = ACTIONS(803), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(803), + [anon_sym_EQ_EQ2] = ACTIONS(803), + [anon_sym_BANG_EQ2] = ACTIONS(803), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ2] = ACTIONS(803), + [anon_sym_GT_EQ2] = ACTIONS(803), + [anon_sym_EQ_TILDE2] = ACTIONS(803), + [anon_sym_BANG_TILDE2] = ACTIONS(803), + [anon_sym_like2] = ACTIONS(803), + [anon_sym_not_DASHlike2] = ACTIONS(803), + [anon_sym_LPAREN2] = ACTIONS(803), + [anon_sym_STAR_STAR2] = ACTIONS(803), + [anon_sym_PLUS_PLUS2] = ACTIONS(803), + [anon_sym_SLASH2] = ACTIONS(801), + [anon_sym_mod2] = ACTIONS(803), + [anon_sym_SLASH_SLASH2] = ACTIONS(803), + [anon_sym_PLUS2] = ACTIONS(801), + [anon_sym_bit_DASHshl2] = ACTIONS(803), + [anon_sym_bit_DASHshr2] = ACTIONS(803), + [anon_sym_bit_DASHand2] = ACTIONS(803), + [anon_sym_bit_DASHxor2] = ACTIONS(803), + [anon_sym_bit_DASHor2] = ACTIONS(803), + [anon_sym_DOT_DOT2] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), + [anon_sym_DOT_DOT_LT2] = ACTIONS(803), + [sym_filesize_unit] = ACTIONS(801), + [sym_duration_unit] = ACTIONS(803), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [anon_sym_err_GT_GT] = ACTIONS(803), + [anon_sym_out_GT_GT] = ACTIONS(803), + [anon_sym_e_GT_GT] = ACTIONS(803), + [anon_sym_o_GT_GT] = ACTIONS(803), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(803), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(803), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(803), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(803), + [sym__unquoted_pattern] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [524] = { [sym_comment] = STATE(524), - [ts_builtin_sym_end] = ACTIONS(793), - [anon_sym_in] = ACTIONS(793), - [sym__newline] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_err_GT_PIPE] = ACTIONS(793), - [anon_sym_out_GT_PIPE] = ACTIONS(793), - [anon_sym_e_GT_PIPE] = ACTIONS(793), - [anon_sym_o_GT_PIPE] = ACTIONS(793), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), - [anon_sym_GT2] = ACTIONS(791), - [anon_sym_DASH2] = ACTIONS(793), - [anon_sym_STAR2] = ACTIONS(791), - [anon_sym_and2] = ACTIONS(793), - [anon_sym_xor2] = ACTIONS(793), - [anon_sym_or2] = ACTIONS(793), - [anon_sym_not_DASHin2] = ACTIONS(793), - [anon_sym_has2] = ACTIONS(793), - [anon_sym_not_DASHhas2] = ACTIONS(793), - [anon_sym_starts_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), - [anon_sym_ends_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), - [anon_sym_EQ_EQ2] = ACTIONS(793), - [anon_sym_BANG_EQ2] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(791), - [anon_sym_LT_EQ2] = ACTIONS(793), - [anon_sym_GT_EQ2] = ACTIONS(793), - [anon_sym_EQ_TILDE2] = ACTIONS(793), - [anon_sym_BANG_TILDE2] = ACTIONS(793), - [anon_sym_like2] = ACTIONS(793), - [anon_sym_not_DASHlike2] = ACTIONS(793), - [anon_sym_LPAREN2] = ACTIONS(793), - [anon_sym_STAR_STAR2] = ACTIONS(793), - [anon_sym_PLUS_PLUS2] = ACTIONS(793), - [anon_sym_SLASH2] = ACTIONS(791), - [anon_sym_mod2] = ACTIONS(793), - [anon_sym_SLASH_SLASH2] = ACTIONS(793), - [anon_sym_PLUS2] = ACTIONS(791), - [anon_sym_bit_DASHshl2] = ACTIONS(793), - [anon_sym_bit_DASHshr2] = ACTIONS(793), - [anon_sym_bit_DASHand2] = ACTIONS(793), - [anon_sym_bit_DASHxor2] = ACTIONS(793), - [anon_sym_bit_DASHor2] = ACTIONS(793), - [anon_sym_DOT_DOT2] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(793), - [sym_filesize_unit] = ACTIONS(791), - [sym_duration_unit] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(791), - [anon_sym_out_GT] = ACTIONS(791), - [anon_sym_e_GT] = ACTIONS(791), - [anon_sym_o_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT] = ACTIONS(791), - [anon_sym_err_GT_GT] = ACTIONS(793), - [anon_sym_out_GT_GT] = ACTIONS(793), - [anon_sym_e_GT_GT] = ACTIONS(793), - [anon_sym_o_GT_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(793), - [sym__unquoted_pattern] = ACTIONS(791), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(525)] = { + [anon_sym_in] = ACTIONS(1945), + [sym__newline] = ACTIONS(1945), + [anon_sym_SEMI] = ACTIONS(1945), + [anon_sym_PIPE] = ACTIONS(1945), + [anon_sym_err_GT_PIPE] = ACTIONS(1945), + [anon_sym_out_GT_PIPE] = ACTIONS(1945), + [anon_sym_e_GT_PIPE] = ACTIONS(1945), + [anon_sym_o_GT_PIPE] = ACTIONS(1945), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1945), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1945), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1945), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1945), + [anon_sym_RPAREN] = ACTIONS(1945), + [anon_sym_GT2] = ACTIONS(1947), + [anon_sym_DASH2] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(1945), + [anon_sym_RBRACE] = ACTIONS(1945), + [anon_sym_STAR2] = ACTIONS(1947), + [anon_sym_and2] = ACTIONS(1945), + [anon_sym_xor2] = ACTIONS(1945), + [anon_sym_or2] = ACTIONS(1945), + [anon_sym_not_DASHin2] = ACTIONS(1945), + [anon_sym_has2] = ACTIONS(1945), + [anon_sym_not_DASHhas2] = ACTIONS(1945), + [anon_sym_starts_DASHwith2] = ACTIONS(1945), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1945), + [anon_sym_ends_DASHwith2] = ACTIONS(1945), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1945), + [anon_sym_EQ_EQ2] = ACTIONS(1945), + [anon_sym_BANG_EQ2] = ACTIONS(1945), + [anon_sym_LT2] = ACTIONS(1947), + [anon_sym_LT_EQ2] = ACTIONS(1945), + [anon_sym_GT_EQ2] = ACTIONS(1945), + [anon_sym_EQ_TILDE2] = ACTIONS(1945), + [anon_sym_BANG_TILDE2] = ACTIONS(1945), + [anon_sym_like2] = ACTIONS(1945), + [anon_sym_not_DASHlike2] = ACTIONS(1945), + [anon_sym_LPAREN2] = ACTIONS(1945), + [anon_sym_STAR_STAR2] = ACTIONS(1945), + [anon_sym_PLUS_PLUS2] = ACTIONS(1945), + [anon_sym_SLASH2] = ACTIONS(1947), + [anon_sym_mod2] = ACTIONS(1945), + [anon_sym_SLASH_SLASH2] = ACTIONS(1945), + [anon_sym_PLUS2] = ACTIONS(1947), + [anon_sym_bit_DASHshl2] = ACTIONS(1945), + [anon_sym_bit_DASHshr2] = ACTIONS(1945), + [anon_sym_bit_DASHand2] = ACTIONS(1945), + [anon_sym_bit_DASHxor2] = ACTIONS(1945), + [anon_sym_bit_DASHor2] = ACTIONS(1945), + [anon_sym_DOT_DOT2] = ACTIONS(1947), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1945), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1945), + [anon_sym_err_GT] = ACTIONS(1947), + [anon_sym_out_GT] = ACTIONS(1947), + [anon_sym_e_GT] = ACTIONS(1947), + [anon_sym_o_GT] = ACTIONS(1947), + [anon_sym_err_PLUSout_GT] = ACTIONS(1947), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1947), + [anon_sym_o_PLUSe_GT] = ACTIONS(1947), + [anon_sym_e_PLUSo_GT] = ACTIONS(1947), + [anon_sym_err_GT_GT] = ACTIONS(1945), + [anon_sym_out_GT_GT] = ACTIONS(1945), + [anon_sym_e_GT_GT] = ACTIONS(1945), + [anon_sym_o_GT_GT] = ACTIONS(1945), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1945), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1945), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1945), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1945), + [sym__unquoted_pattern] = ACTIONS(1947), + [anon_sym_POUND] = ACTIONS(3), + }, + [525] = { [sym_comment] = STATE(525), - [anon_sym_EQ] = ACTIONS(1945), - [anon_sym_PLUS_EQ] = ACTIONS(1947), - [anon_sym_DASH_EQ] = ACTIONS(1947), - [anon_sym_STAR_EQ] = ACTIONS(1947), - [anon_sym_SLASH_EQ] = ACTIONS(1947), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1947), - [anon_sym_in] = ACTIONS(1738), - [sym__newline] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_err_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_GT_PIPE] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), - [anon_sym_GT2] = ACTIONS(1616), - [anon_sym_DASH2] = ACTIONS(1616), - [anon_sym_STAR2] = ACTIONS(1616), - [anon_sym_and2] = ACTIONS(1738), - [anon_sym_xor2] = ACTIONS(1738), - [anon_sym_or2] = ACTIONS(1738), - [anon_sym_not_DASHin2] = ACTIONS(1738), - [anon_sym_has2] = ACTIONS(1738), - [anon_sym_not_DASHhas2] = ACTIONS(1738), - [anon_sym_starts_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), - [anon_sym_ends_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), - [anon_sym_EQ_EQ2] = ACTIONS(1738), - [anon_sym_BANG_EQ2] = ACTIONS(1738), - [anon_sym_LT2] = ACTIONS(1616), - [anon_sym_LT_EQ2] = ACTIONS(1738), - [anon_sym_GT_EQ2] = ACTIONS(1738), - [anon_sym_EQ_TILDE2] = ACTIONS(1738), - [anon_sym_BANG_TILDE2] = ACTIONS(1738), - [anon_sym_like2] = ACTIONS(1738), - [anon_sym_not_DASHlike2] = ACTIONS(1738), - [anon_sym_STAR_STAR2] = ACTIONS(1738), - [anon_sym_PLUS_PLUS2] = ACTIONS(1616), - [anon_sym_SLASH2] = ACTIONS(1616), - [anon_sym_mod2] = ACTIONS(1738), - [anon_sym_SLASH_SLASH2] = ACTIONS(1738), - [anon_sym_PLUS2] = ACTIONS(1616), - [anon_sym_bit_DASHshl2] = ACTIONS(1738), - [anon_sym_bit_DASHshr2] = ACTIONS(1738), - [anon_sym_bit_DASHand2] = ACTIONS(1738), - [anon_sym_bit_DASHxor2] = ACTIONS(1738), - [anon_sym_bit_DASHor2] = ACTIONS(1738), - [anon_sym_DOT_DOT2] = ACTIONS(1620), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), - [anon_sym_err_GT] = ACTIONS(1616), - [anon_sym_out_GT] = ACTIONS(1616), - [anon_sym_e_GT] = ACTIONS(1616), - [anon_sym_o_GT] = ACTIONS(1616), - [anon_sym_err_PLUSout_GT] = ACTIONS(1616), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), - [anon_sym_o_PLUSe_GT] = ACTIONS(1616), - [anon_sym_e_PLUSo_GT] = ACTIONS(1616), - [anon_sym_err_GT_GT] = ACTIONS(1738), - [anon_sym_out_GT_GT] = ACTIONS(1738), - [anon_sym_e_GT_GT] = ACTIONS(1738), - [anon_sym_o_GT_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(526)] = { + [anon_sym_in] = ACTIONS(1802), + [sym__newline] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1802), + [anon_sym_err_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_GT_PIPE] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), + [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_GT2] = ACTIONS(1804), + [anon_sym_DASH2] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_STAR2] = ACTIONS(1804), + [anon_sym_and2] = ACTIONS(1802), + [anon_sym_xor2] = ACTIONS(1802), + [anon_sym_or2] = ACTIONS(1802), + [anon_sym_not_DASHin2] = ACTIONS(1802), + [anon_sym_has2] = ACTIONS(1802), + [anon_sym_not_DASHhas2] = ACTIONS(1802), + [anon_sym_starts_DASHwith2] = ACTIONS(1802), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), + [anon_sym_ends_DASHwith2] = ACTIONS(1802), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), + [anon_sym_EQ_EQ2] = ACTIONS(1802), + [anon_sym_BANG_EQ2] = ACTIONS(1802), + [anon_sym_LT2] = ACTIONS(1804), + [anon_sym_LT_EQ2] = ACTIONS(1802), + [anon_sym_GT_EQ2] = ACTIONS(1802), + [anon_sym_EQ_TILDE2] = ACTIONS(1802), + [anon_sym_BANG_TILDE2] = ACTIONS(1802), + [anon_sym_like2] = ACTIONS(1802), + [anon_sym_not_DASHlike2] = ACTIONS(1802), + [anon_sym_LPAREN2] = ACTIONS(1802), + [anon_sym_STAR_STAR2] = ACTIONS(1802), + [anon_sym_PLUS_PLUS2] = ACTIONS(1802), + [anon_sym_SLASH2] = ACTIONS(1804), + [anon_sym_mod2] = ACTIONS(1802), + [anon_sym_SLASH_SLASH2] = ACTIONS(1802), + [anon_sym_PLUS2] = ACTIONS(1804), + [anon_sym_bit_DASHshl2] = ACTIONS(1802), + [anon_sym_bit_DASHshr2] = ACTIONS(1802), + [anon_sym_bit_DASHand2] = ACTIONS(1802), + [anon_sym_bit_DASHxor2] = ACTIONS(1802), + [anon_sym_bit_DASHor2] = ACTIONS(1802), + [anon_sym_DOT_DOT2] = ACTIONS(1804), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1802), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1802), + [anon_sym_err_GT] = ACTIONS(1804), + [anon_sym_out_GT] = ACTIONS(1804), + [anon_sym_e_GT] = ACTIONS(1804), + [anon_sym_o_GT] = ACTIONS(1804), + [anon_sym_err_PLUSout_GT] = ACTIONS(1804), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), + [anon_sym_o_PLUSe_GT] = ACTIONS(1804), + [anon_sym_e_PLUSo_GT] = ACTIONS(1804), + [anon_sym_err_GT_GT] = ACTIONS(1802), + [anon_sym_out_GT_GT] = ACTIONS(1802), + [anon_sym_e_GT_GT] = ACTIONS(1802), + [anon_sym_o_GT_GT] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), + [sym__unquoted_pattern] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(3), + }, + [526] = { [sym_comment] = STATE(526), - [ts_builtin_sym_end] = ACTIONS(805), - [anon_sym_in] = ACTIONS(805), - [sym__newline] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_err_GT_PIPE] = ACTIONS(805), - [anon_sym_out_GT_PIPE] = ACTIONS(805), - [anon_sym_e_GT_PIPE] = ACTIONS(805), - [anon_sym_o_GT_PIPE] = ACTIONS(805), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(805), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(805), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(805), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(805), - [anon_sym_GT2] = ACTIONS(803), - [anon_sym_DASH2] = ACTIONS(805), - [anon_sym_STAR2] = ACTIONS(803), - [anon_sym_and2] = ACTIONS(805), - [anon_sym_xor2] = ACTIONS(805), - [anon_sym_or2] = ACTIONS(805), - [anon_sym_not_DASHin2] = ACTIONS(805), - [anon_sym_has2] = ACTIONS(805), - [anon_sym_not_DASHhas2] = ACTIONS(805), - [anon_sym_starts_DASHwith2] = ACTIONS(805), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(805), - [anon_sym_ends_DASHwith2] = ACTIONS(805), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(805), - [anon_sym_EQ_EQ2] = ACTIONS(805), - [anon_sym_BANG_EQ2] = ACTIONS(805), - [anon_sym_LT2] = ACTIONS(803), - [anon_sym_LT_EQ2] = ACTIONS(805), - [anon_sym_GT_EQ2] = ACTIONS(805), - [anon_sym_EQ_TILDE2] = ACTIONS(805), - [anon_sym_BANG_TILDE2] = ACTIONS(805), - [anon_sym_like2] = ACTIONS(805), - [anon_sym_not_DASHlike2] = ACTIONS(805), - [anon_sym_LPAREN2] = ACTIONS(805), - [anon_sym_STAR_STAR2] = ACTIONS(805), - [anon_sym_PLUS_PLUS2] = ACTIONS(805), - [anon_sym_SLASH2] = ACTIONS(803), - [anon_sym_mod2] = ACTIONS(805), - [anon_sym_SLASH_SLASH2] = ACTIONS(805), - [anon_sym_PLUS2] = ACTIONS(803), - [anon_sym_bit_DASHshl2] = ACTIONS(805), - [anon_sym_bit_DASHshr2] = ACTIONS(805), - [anon_sym_bit_DASHand2] = ACTIONS(805), - [anon_sym_bit_DASHxor2] = ACTIONS(805), - [anon_sym_bit_DASHor2] = ACTIONS(805), - [anon_sym_DOT_DOT2] = ACTIONS(803), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(805), - [anon_sym_DOT_DOT_LT2] = ACTIONS(805), - [sym_filesize_unit] = ACTIONS(803), - [sym_duration_unit] = ACTIONS(805), - [anon_sym_err_GT] = ACTIONS(803), - [anon_sym_out_GT] = ACTIONS(803), - [anon_sym_e_GT] = ACTIONS(803), - [anon_sym_o_GT] = ACTIONS(803), - [anon_sym_err_PLUSout_GT] = ACTIONS(803), - [anon_sym_out_PLUSerr_GT] = ACTIONS(803), - [anon_sym_o_PLUSe_GT] = ACTIONS(803), - [anon_sym_e_PLUSo_GT] = ACTIONS(803), - [anon_sym_err_GT_GT] = ACTIONS(805), - [anon_sym_out_GT_GT] = ACTIONS(805), - [anon_sym_e_GT_GT] = ACTIONS(805), - [anon_sym_o_GT_GT] = ACTIONS(805), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(805), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(805), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(805), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(805), - [sym__unquoted_pattern] = ACTIONS(803), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(527)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1234), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(817), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [anon_sym_EQ] = ACTIONS(1949), + [anon_sym_PLUS_EQ] = ACTIONS(1951), + [anon_sym_DASH_EQ] = ACTIONS(1951), + [anon_sym_STAR_EQ] = ACTIONS(1951), + [anon_sym_SLASH_EQ] = ACTIONS(1951), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1951), + [anon_sym_in] = ACTIONS(1736), + [sym__newline] = ACTIONS(1736), + [anon_sym_PIPE] = ACTIONS(1736), + [anon_sym_err_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_GT_PIPE] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), + [anon_sym_GT2] = ACTIONS(1610), + [anon_sym_DASH2] = ACTIONS(1610), + [anon_sym_STAR2] = ACTIONS(1610), + [anon_sym_and2] = ACTIONS(1736), + [anon_sym_xor2] = ACTIONS(1736), + [anon_sym_or2] = ACTIONS(1736), + [anon_sym_not_DASHin2] = ACTIONS(1736), + [anon_sym_has2] = ACTIONS(1736), + [anon_sym_not_DASHhas2] = ACTIONS(1736), + [anon_sym_starts_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), + [anon_sym_ends_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), + [anon_sym_EQ_EQ2] = ACTIONS(1736), + [anon_sym_BANG_EQ2] = ACTIONS(1736), + [anon_sym_LT2] = ACTIONS(1610), + [anon_sym_LT_EQ2] = ACTIONS(1736), + [anon_sym_GT_EQ2] = ACTIONS(1736), + [anon_sym_EQ_TILDE2] = ACTIONS(1736), + [anon_sym_BANG_TILDE2] = ACTIONS(1736), + [anon_sym_like2] = ACTIONS(1736), + [anon_sym_not_DASHlike2] = ACTIONS(1736), + [anon_sym_STAR_STAR2] = ACTIONS(1736), + [anon_sym_PLUS_PLUS2] = ACTIONS(1610), + [anon_sym_SLASH2] = ACTIONS(1610), + [anon_sym_mod2] = ACTIONS(1736), + [anon_sym_SLASH_SLASH2] = ACTIONS(1736), + [anon_sym_PLUS2] = ACTIONS(1610), + [anon_sym_bit_DASHshl2] = ACTIONS(1736), + [anon_sym_bit_DASHshr2] = ACTIONS(1736), + [anon_sym_bit_DASHand2] = ACTIONS(1736), + [anon_sym_bit_DASHxor2] = ACTIONS(1736), + [anon_sym_bit_DASHor2] = ACTIONS(1736), + [anon_sym_DOT_DOT2] = ACTIONS(1614), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1616), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1616), + [anon_sym_err_GT] = ACTIONS(1610), + [anon_sym_out_GT] = ACTIONS(1610), + [anon_sym_e_GT] = ACTIONS(1610), + [anon_sym_o_GT] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT] = ACTIONS(1610), + [anon_sym_err_GT_GT] = ACTIONS(1736), + [anon_sym_out_GT_GT] = ACTIONS(1736), + [anon_sym_e_GT_GT] = ACTIONS(1736), + [anon_sym_o_GT_GT] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), + [anon_sym_POUND] = ACTIONS(3), + }, + [527] = { + [aux_sym__repeat_newline] = STATE(598), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2068), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(818), + [sym__unquoted_with_expr] = STATE(1081), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(527), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(528)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2052), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(867), - [sym__unquoted_with_expr] = STATE(1067), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [528] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1230), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(831), + [sym__unquoted_with_expr] = STATE(1058), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(528), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(529)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2053), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(881), - [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [529] = { + [aux_sym__repeat_newline] = STATE(3647), + [aux_sym__pipe_separator] = STATE(570), [sym_comment] = STATE(529), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(530)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2055), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(882), - [sym__unquoted_with_expr] = STATE(1071), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [anon_sym_export] = ACTIONS(1993), + [anon_sym_alias] = ACTIONS(1995), + [anon_sym_let] = ACTIONS(1995), + [anon_sym_mut] = ACTIONS(1995), + [anon_sym_const] = ACTIONS(1995), + [aux_sym_cmd_identifier_token1] = ACTIONS(1993), + [anon_sym_def] = ACTIONS(1995), + [anon_sym_use] = ACTIONS(1995), + [anon_sym_export_DASHenv] = ACTIONS(1995), + [anon_sym_extern] = ACTIONS(1995), + [anon_sym_module] = ACTIONS(1995), + [anon_sym_for] = ACTIONS(1995), + [anon_sym_loop] = ACTIONS(1995), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_if] = ACTIONS(1995), + [anon_sym_else] = ACTIONS(1995), + [anon_sym_try] = ACTIONS(1995), + [anon_sym_catch] = ACTIONS(1995), + [anon_sym_finally] = ACTIONS(1995), + [anon_sym_match] = ACTIONS(1995), + [anon_sym_in] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(1995), + [anon_sym_false] = ACTIONS(1995), + [anon_sym_null] = ACTIONS(1995), + [aux_sym_cmd_identifier_token3] = ACTIONS(1995), + [aux_sym_cmd_identifier_token4] = ACTIONS(1995), + [aux_sym_cmd_identifier_token5] = ACTIONS(1995), + [sym__newline] = ACTIONS(1997), + [anon_sym_PIPE] = ACTIONS(1999), + [anon_sym_err_GT_PIPE] = ACTIONS(1999), + [anon_sym_out_GT_PIPE] = ACTIONS(1999), + [anon_sym_e_GT_PIPE] = ACTIONS(1999), + [anon_sym_o_GT_PIPE] = ACTIONS(1999), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1999), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1999), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1999), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_DOLLAR] = ACTIONS(1993), + [anon_sym_DASH2] = ACTIONS(1993), + [anon_sym_LBRACE] = ACTIONS(1995), + [anon_sym_DOT_DOT] = ACTIONS(1993), + [anon_sym_where] = ACTIONS(1995), + [aux_sym_expr_unary_token1] = ACTIONS(1995), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1995), + [anon_sym_DOT_DOT_LT] = ACTIONS(1995), + [aux_sym__val_number_decimal_token1] = ACTIONS(1993), + [aux_sym__val_number_decimal_token2] = ACTIONS(1995), + [aux_sym__val_number_decimal_token3] = ACTIONS(1995), + [aux_sym__val_number_decimal_token4] = ACTIONS(1995), + [aux_sym__val_number_token1] = ACTIONS(1995), + [aux_sym__val_number_token2] = ACTIONS(1995), + [aux_sym__val_number_token3] = ACTIONS(1995), + [anon_sym_0b] = ACTIONS(1993), + [anon_sym_0o] = ACTIONS(1993), + [anon_sym_0x] = ACTIONS(1993), + [sym_val_date] = ACTIONS(1995), + [anon_sym_DQUOTE] = ACTIONS(1995), + [anon_sym_SQUOTE] = ACTIONS(1995), + [anon_sym_BQUOTE] = ACTIONS(1995), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1995), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1995), + [anon_sym_CARET] = ACTIONS(1995), + [anon_sym_PERCENT] = ACTIONS(1995), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1995), + }, + [530] = { + [aux_sym__repeat_newline] = STATE(609), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1249), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(775), + [sym__unquoted_with_expr] = STATE(1033), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(530), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(531)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2057), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(883), - [sym__unquoted_with_expr] = STATE(1073), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [531] = { + [aux_sym__repeat_newline] = STATE(643), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1585), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(818), + [sym__unquoted_with_expr] = STATE(1081), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(531), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(532)] = { - [aux_sym__repeat_newline] = STATE(552), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1275), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(836), - [sym__unquoted_with_expr] = STATE(1021), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [532] = { + [aux_sym__repeat_newline] = STATE(642), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1599), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(822), + [sym__unquoted_with_expr] = STATE(1085), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(532), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(533)] = { - [sym_expr_parenthesized] = STATE(4216), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4990), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4854), - [sym_val_bool] = STATE(4482), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4196), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4854), - [sym__val_number_decimal] = STATE(3713), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4854), - [sym_val_filesize] = STATE(4854), - [sym_val_binary] = STATE(4854), - [sym_val_string] = STATE(4854), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4854), - [sym__spread_list] = STATE(5037), - [sym_val_entry] = STATE(4872), - [sym_val_record] = STATE(4854), - [sym_val_table] = STATE(4854), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4529), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), + [533] = { + [aux_sym__repeat_newline] = STATE(584), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1633), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(834), + [sym__unquoted_with_expr] = STATE(1089), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(533), - [aux_sym_list_body_repeat1] = STATE(537), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(534)] = { - [aux_sym__repeat_newline] = STATE(554), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1154), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(838), - [sym__unquoted_with_expr] = STATE(1023), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(534), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(535)] = { - [sym_expr_parenthesized] = STATE(4216), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4990), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4854), - [sym_val_bool] = STATE(4482), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4196), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4854), - [sym__val_number_decimal] = STATE(3713), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4854), - [sym_val_filesize] = STATE(4854), - [sym_val_binary] = STATE(4854), - [sym_val_string] = STATE(4854), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4854), - [sym__spread_list] = STATE(5037), - [sym_val_entry] = STATE(4754), - [sym_val_record] = STATE(4854), - [sym_val_table] = STATE(4854), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4529), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), - [sym_comment] = STATE(535), - [aux_sym_list_body_repeat1] = STATE(537), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_null] = ACTIONS(1499), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT] = ACTIONS(1515), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1517), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1450), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(536)] = { - [sym_comment] = STATE(536), - [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_LPAREN2] = ACTIONS(1866), - [anon_sym_STAR_STAR2] = ACTIONS(1866), - [anon_sym_PLUS_PLUS2] = ACTIONS(1866), - [anon_sym_SLASH2] = ACTIONS(1868), - [anon_sym_mod2] = ACTIONS(1866), - [anon_sym_SLASH_SLASH2] = ACTIONS(1866), - [anon_sym_PLUS2] = ACTIONS(1868), - [anon_sym_bit_DASHshl2] = ACTIONS(1866), - [anon_sym_bit_DASHshr2] = ACTIONS(1866), - [anon_sym_bit_DASHand2] = ACTIONS(1866), - [anon_sym_bit_DASHxor2] = ACTIONS(1866), - [anon_sym_bit_DASHor2] = ACTIONS(1866), - [anon_sym_DOT_DOT2] = ACTIONS(1868), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1866), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1866), - [aux_sym__immediate_decimal_token5] = ACTIONS(1989), - [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), - [sym__unquoted_pattern] = ACTIONS(1868), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(537)] = { - [sym_expr_parenthesized] = STATE(4216), - [sym__spread_parenthesized] = STATE(5037), - [sym_val_range] = STATE(4990), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(4990), - [sym_val_nothing] = STATE(4854), - [sym_val_bool] = STATE(4482), - [sym__spread_variable] = STATE(5024), - [sym_val_variable] = STATE(4196), - [sym_val_cellpath] = STATE(4854), - [sym_val_number] = STATE(4854), - [sym__val_number_decimal] = STATE(3713), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4854), - [sym_val_filesize] = STATE(4854), - [sym_val_binary] = STATE(4854), - [sym_val_string] = STATE(4854), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_interpolated] = STATE(4854), - [sym__inter_single_quotes] = STATE(4926), - [sym__inter_double_quotes] = STATE(4927), - [sym_val_list] = STATE(4854), - [sym__spread_list] = STATE(5037), - [sym_val_entry] = STATE(4944), - [sym_val_record] = STATE(4854), - [sym_val_table] = STATE(4854), - [sym_val_closure] = STATE(4854), - [sym__unquoted_in_list] = STATE(4529), - [sym__unquoted_in_list_with_expr] = STATE(4990), - [sym__unquoted_anonymous_prefix] = STATE(4685), - [sym_comment] = STATE(537), - [aux_sym_list_body_repeat1] = STATE(537), - [anon_sym_true] = ACTIONS(1991), - [anon_sym_false] = ACTIONS(1991), - [anon_sym_null] = ACTIONS(1994), - [aux_sym_cmd_identifier_token3] = ACTIONS(1997), - [aux_sym_cmd_identifier_token4] = ACTIONS(1997), - [aux_sym_cmd_identifier_token5] = ACTIONS(1997), - [anon_sym_LBRACK] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2003), - [anon_sym_DOLLAR] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_DOT_DOT] = ACTIONS(2012), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2015), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2018), - [anon_sym_DOT_DOT_LT] = ACTIONS(2018), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2021), - [aux_sym__val_number_decimal_token1] = ACTIONS(2024), - [aux_sym__val_number_decimal_token2] = ACTIONS(2027), - [aux_sym__val_number_decimal_token3] = ACTIONS(2030), - [aux_sym__val_number_decimal_token4] = ACTIONS(2030), - [aux_sym__val_number_token1] = ACTIONS(2033), - [aux_sym__val_number_token2] = ACTIONS(2033), - [aux_sym__val_number_token3] = ACTIONS(2033), - [anon_sym_0b] = ACTIONS(2036), - [anon_sym_0o] = ACTIONS(2039), - [anon_sym_0x] = ACTIONS(2039), - [sym_val_date] = ACTIONS(2042), - [anon_sym_DQUOTE] = ACTIONS(2045), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_BQUOTE] = ACTIONS(2051), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2054), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2057), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2060), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2063), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2066), - }, - [STATE(538)] = { - [aux_sym__repeat_newline] = STATE(636), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2116), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(924), - [sym__unquoted_with_expr] = STATE(1148), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(538), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [534] = { + [aux_sym__repeat_newline] = STATE(539), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1647), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(839), + [sym__unquoted_with_expr] = STATE(1091), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(534), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(539)] = { - [aux_sym__repeat_newline] = STATE(735), - [aux_sym__pipe_separator] = STATE(652), - [sym_comment] = STATE(539), - [anon_sym_export] = ACTIONS(2069), - [anon_sym_alias] = ACTIONS(2071), - [anon_sym_let] = ACTIONS(2071), - [anon_sym_mut] = ACTIONS(2071), - [anon_sym_const] = ACTIONS(2071), - [aux_sym_cmd_identifier_token1] = ACTIONS(2069), - [anon_sym_def] = ACTIONS(2071), - [anon_sym_use] = ACTIONS(2071), - [anon_sym_export_DASHenv] = ACTIONS(2071), - [anon_sym_extern] = ACTIONS(2071), - [anon_sym_module] = ACTIONS(2071), - [anon_sym_for] = ACTIONS(2071), - [anon_sym_loop] = ACTIONS(2071), - [anon_sym_while] = ACTIONS(2071), - [anon_sym_if] = ACTIONS(2071), - [anon_sym_else] = ACTIONS(2071), - [anon_sym_try] = ACTIONS(2071), - [anon_sym_catch] = ACTIONS(2071), - [anon_sym_finally] = ACTIONS(2071), - [anon_sym_match] = ACTIONS(2071), - [anon_sym_in] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(2071), - [anon_sym_false] = ACTIONS(2071), - [anon_sym_null] = ACTIONS(2071), - [aux_sym_cmd_identifier_token3] = ACTIONS(2071), - [aux_sym_cmd_identifier_token4] = ACTIONS(2071), - [aux_sym_cmd_identifier_token5] = ACTIONS(2071), - [sym__newline] = ACTIONS(2073), - [anon_sym_PIPE] = ACTIONS(2075), - [anon_sym_err_GT_PIPE] = ACTIONS(2075), - [anon_sym_out_GT_PIPE] = ACTIONS(2075), - [anon_sym_e_GT_PIPE] = ACTIONS(2075), - [anon_sym_o_GT_PIPE] = ACTIONS(2075), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2075), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2075), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2075), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2071), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DASH2] = ACTIONS(2069), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2069), - [anon_sym_where] = ACTIONS(2071), - [aux_sym_expr_unary_token1] = ACTIONS(2071), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2069), - [aux_sym__val_number_decimal_token2] = ACTIONS(2071), - [aux_sym__val_number_decimal_token3] = ACTIONS(2071), - [aux_sym__val_number_decimal_token4] = ACTIONS(2071), - [aux_sym__val_number_token1] = ACTIONS(2071), - [aux_sym__val_number_token2] = ACTIONS(2071), - [aux_sym__val_number_token3] = ACTIONS(2071), - [anon_sym_0b] = ACTIONS(2069), - [anon_sym_0o] = ACTIONS(2069), - [anon_sym_0x] = ACTIONS(2069), - [sym_val_date] = ACTIONS(2071), - [anon_sym_DQUOTE] = ACTIONS(2071), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_BQUOTE] = ACTIONS(2071), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2071), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2071), - [anon_sym_CARET] = ACTIONS(2071), - [anon_sym_PERCENT] = ACTIONS(2071), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2071), - }, - [STATE(540)] = { - [aux_sym__repeat_newline] = STATE(637), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2117), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(926), - [sym__unquoted_with_expr] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(540), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [535] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1006), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(808), + [sym__unquoted_with_expr] = STATE(1037), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(535), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(541)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1252), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(858), - [sym__unquoted_with_expr] = STATE(1046), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(541), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [536] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2047), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(769), + [sym__unquoted_with_expr] = STATE(1023), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(536), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(542)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), + [537] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), [sym__expr_binary_expression_parenthesized] = STATE(1261), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(859), - [sym__unquoted_with_expr] = STATE(1048), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(542), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(769), + [sym__unquoted_with_expr] = STATE(1023), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(537), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(543)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1267), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(860), - [sym__unquoted_with_expr] = STATE(1050), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(543), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [538] = { + [aux_sym__repeat_newline] = STATE(638), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1067), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(807), + [sym__unquoted_with_expr] = STATE(1068), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(538), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(544)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1271), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(861), - [sym__unquoted_with_expr] = STATE(1052), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(544), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [539] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1657), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(831), + [sym__unquoted_with_expr] = STATE(1058), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(539), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(545)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1278), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(862), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(545), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [540] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2142), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(798), + [sym__unquoted_with_expr] = STATE(1026), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(540), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(546)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1283), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(863), - [sym__unquoted_with_expr] = STATE(1056), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(546), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [541] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1288), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(751), + [sym__unquoted_with_expr] = STATE(1008), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(541), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(547)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1155), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(864), - [sym__unquoted_with_expr] = STATE(1058), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(547), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [542] = { + [aux_sym__repeat_newline] = STATE(624), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1247), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(779), + [sym__unquoted_with_expr] = STATE(1035), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(542), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(548)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1159), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(865), - [sym__unquoted_with_expr] = STATE(1060), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(548), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [543] = { + [sym_comment] = STATE(543), + [ts_builtin_sym_end] = ACTIONS(1874), + [anon_sym_in] = ACTIONS(1874), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_GT2] = ACTIONS(1876), + [anon_sym_DASH2] = ACTIONS(1874), + [anon_sym_STAR2] = ACTIONS(1876), + [anon_sym_and2] = ACTIONS(1874), + [anon_sym_xor2] = ACTIONS(1874), + [anon_sym_or2] = ACTIONS(1874), + [anon_sym_not_DASHin2] = ACTIONS(1874), + [anon_sym_has2] = ACTIONS(1874), + [anon_sym_not_DASHhas2] = ACTIONS(1874), + [anon_sym_starts_DASHwith2] = ACTIONS(1874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1874), + [anon_sym_ends_DASHwith2] = ACTIONS(1874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1874), + [anon_sym_EQ_EQ2] = ACTIONS(1874), + [anon_sym_BANG_EQ2] = ACTIONS(1874), + [anon_sym_LT2] = ACTIONS(1876), + [anon_sym_LT_EQ2] = ACTIONS(1874), + [anon_sym_GT_EQ2] = ACTIONS(1874), + [anon_sym_EQ_TILDE2] = ACTIONS(1874), + [anon_sym_BANG_TILDE2] = ACTIONS(1874), + [anon_sym_like2] = ACTIONS(1874), + [anon_sym_not_DASHlike2] = ACTIONS(1874), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_STAR_STAR2] = ACTIONS(1874), + [anon_sym_PLUS_PLUS2] = ACTIONS(1874), + [anon_sym_SLASH2] = ACTIONS(1876), + [anon_sym_mod2] = ACTIONS(1874), + [anon_sym_SLASH_SLASH2] = ACTIONS(1874), + [anon_sym_PLUS2] = ACTIONS(1876), + [anon_sym_bit_DASHshl2] = ACTIONS(1874), + [anon_sym_bit_DASHshr2] = ACTIONS(1874), + [anon_sym_bit_DASHand2] = ACTIONS(1874), + [anon_sym_bit_DASHxor2] = ACTIONS(1874), + [anon_sym_bit_DASHor2] = ACTIONS(1874), + [anon_sym_DOT_DOT2] = ACTIONS(1876), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [aux_sym__immediate_decimal_token5] = ACTIONS(2019), + [anon_sym_err_GT] = ACTIONS(1876), + [anon_sym_out_GT] = ACTIONS(1876), + [anon_sym_e_GT] = ACTIONS(1876), + [anon_sym_o_GT] = ACTIONS(1876), + [anon_sym_err_PLUSout_GT] = ACTIONS(1876), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1876), + [anon_sym_o_PLUSe_GT] = ACTIONS(1876), + [anon_sym_e_PLUSo_GT] = ACTIONS(1876), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [sym__unquoted_pattern] = ACTIONS(1876), + [anon_sym_POUND] = ACTIONS(3), + }, + [544] = { + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4957), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4868), + [sym_val_bool] = STATE(4386), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(3992), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4868), + [sym__val_number_decimal] = STATE(3716), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4868), + [sym_val_filesize] = STATE(4868), + [sym_val_binary] = STATE(4868), + [sym_val_string] = STATE(4868), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4868), + [sym__spread_list] = STATE(4958), + [sym_val_entry] = STATE(4992), + [sym_val_record] = STATE(4868), + [sym_val_table] = STATE(4868), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), + [sym_comment] = STATE(544), + [aux_sym_list_body_repeat1] = STATE(544), + [anon_sym_true] = ACTIONS(2021), + [anon_sym_false] = ACTIONS(2021), + [anon_sym_null] = ACTIONS(2024), + [aux_sym_cmd_identifier_token3] = ACTIONS(2027), + [aux_sym_cmd_identifier_token4] = ACTIONS(2027), + [aux_sym_cmd_identifier_token5] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_LPAREN] = ACTIONS(2033), + [anon_sym_DOLLAR] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2039), + [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2045), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2048), + [anon_sym_DOT_DOT_LT] = ACTIONS(2048), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2051), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2057), + [aux_sym__val_number_decimal_token3] = ACTIONS(2060), + [aux_sym__val_number_decimal_token4] = ACTIONS(2060), + [aux_sym__val_number_token1] = ACTIONS(2063), + [aux_sym__val_number_token2] = ACTIONS(2063), + [aux_sym__val_number_token3] = ACTIONS(2063), + [anon_sym_0b] = ACTIONS(2066), + [anon_sym_0o] = ACTIONS(2069), + [anon_sym_0x] = ACTIONS(2069), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(2075), + [anon_sym_SQUOTE] = ACTIONS(2078), + [anon_sym_BQUOTE] = ACTIONS(2081), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2084), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2087), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2090), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2096), + }, + [545] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1006), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(808), + [sym__unquoted_with_expr] = STATE(1037), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(545), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(549)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1062), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(866), - [sym__unquoted_with_expr] = STATE(1063), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(549), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [546] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1595), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(892), + [sym__unquoted_with_expr] = STATE(1099), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(546), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(550)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1166), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(867), - [sym__unquoted_with_expr] = STATE(1067), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(550), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [547] = { + [aux_sym__repeat_newline] = STATE(545), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1102), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(843), + [sym__unquoted_with_expr] = STATE(1098), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(547), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(551)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1170), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(881), - [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(551), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [548] = { + [aux_sym__repeat_newline] = STATE(549), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1651), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(844), + [sym__unquoted_with_expr] = STATE(1103), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(548), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(552)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1174), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(882), - [sym__unquoted_with_expr] = STATE(1071), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(552), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [549] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1643), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(769), + [sym__unquoted_with_expr] = STATE(1023), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(549), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(553)] = { - [aux_sym__repeat_newline] = STATE(638), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2118), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(927), - [sym__unquoted_with_expr] = STATE(1006), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(553), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [550] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1285), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(750), + [sym__unquoted_with_expr] = STATE(995), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(550), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(554)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1177), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(883), - [sym__unquoted_with_expr] = STATE(1073), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [551] = { + [sym_comment] = STATE(551), + [anon_sym_in] = ACTIONS(2099), + [sym__newline] = ACTIONS(2099), + [anon_sym_SEMI] = ACTIONS(2099), + [anon_sym_PIPE] = ACTIONS(2099), + [anon_sym_err_GT_PIPE] = ACTIONS(2099), + [anon_sym_out_GT_PIPE] = ACTIONS(2099), + [anon_sym_e_GT_PIPE] = ACTIONS(2099), + [anon_sym_o_GT_PIPE] = ACTIONS(2099), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2099), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2099), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2099), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2099), + [anon_sym_RPAREN] = ACTIONS(2099), + [anon_sym_GT2] = ACTIONS(2101), + [anon_sym_DASH2] = ACTIONS(2099), + [anon_sym_RBRACE] = ACTIONS(2099), + [anon_sym_STAR2] = ACTIONS(2101), + [anon_sym_and2] = ACTIONS(2099), + [anon_sym_xor2] = ACTIONS(2099), + [anon_sym_or2] = ACTIONS(2099), + [anon_sym_not_DASHin2] = ACTIONS(2099), + [anon_sym_has2] = ACTIONS(2099), + [anon_sym_not_DASHhas2] = ACTIONS(2099), + [anon_sym_starts_DASHwith2] = ACTIONS(2099), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2099), + [anon_sym_ends_DASHwith2] = ACTIONS(2099), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2099), + [anon_sym_EQ_EQ2] = ACTIONS(2099), + [anon_sym_BANG_EQ2] = ACTIONS(2099), + [anon_sym_LT2] = ACTIONS(2101), + [anon_sym_LT_EQ2] = ACTIONS(2099), + [anon_sym_GT_EQ2] = ACTIONS(2099), + [anon_sym_EQ_TILDE2] = ACTIONS(2099), + [anon_sym_BANG_TILDE2] = ACTIONS(2099), + [anon_sym_like2] = ACTIONS(2099), + [anon_sym_not_DASHlike2] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(2103), + [anon_sym_STAR_STAR2] = ACTIONS(2099), + [anon_sym_PLUS_PLUS2] = ACTIONS(2099), + [anon_sym_SLASH2] = ACTIONS(2101), + [anon_sym_mod2] = ACTIONS(2099), + [anon_sym_SLASH_SLASH2] = ACTIONS(2099), + [anon_sym_PLUS2] = ACTIONS(2101), + [anon_sym_bit_DASHshl2] = ACTIONS(2099), + [anon_sym_bit_DASHshr2] = ACTIONS(2099), + [anon_sym_bit_DASHand2] = ACTIONS(2099), + [anon_sym_bit_DASHxor2] = ACTIONS(2099), + [anon_sym_bit_DASHor2] = ACTIONS(2099), + [anon_sym_DOT_DOT2] = ACTIONS(2105), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2107), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2107), + [anon_sym_err_GT] = ACTIONS(2101), + [anon_sym_out_GT] = ACTIONS(2101), + [anon_sym_e_GT] = ACTIONS(2101), + [anon_sym_o_GT] = ACTIONS(2101), + [anon_sym_err_PLUSout_GT] = ACTIONS(2101), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2101), + [anon_sym_o_PLUSe_GT] = ACTIONS(2101), + [anon_sym_e_PLUSo_GT] = ACTIONS(2101), + [anon_sym_err_GT_GT] = ACTIONS(2099), + [anon_sym_out_GT_GT] = ACTIONS(2099), + [anon_sym_e_GT_GT] = ACTIONS(2099), + [anon_sym_o_GT_GT] = ACTIONS(2099), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2099), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2099), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2099), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2099), + [sym__unquoted_pattern] = ACTIONS(2109), + [anon_sym_POUND] = ACTIONS(3), + }, + [552] = { + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4957), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4868), + [sym_val_bool] = STATE(4386), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(3992), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4868), + [sym__val_number_decimal] = STATE(3716), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4868), + [sym_val_filesize] = STATE(4868), + [sym_val_binary] = STATE(4868), + [sym_val_string] = STATE(4868), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4868), + [sym__spread_list] = STATE(4958), + [sym_val_entry] = STATE(4832), + [sym_val_record] = STATE(4868), + [sym_val_table] = STATE(4868), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), + [sym_comment] = STATE(552), + [aux_sym_list_body_repeat1] = STATE(544), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [553] = { + [sym_comment] = STATE(553), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_catch] = ACTIONS(2111), + [anon_sym_finally] = ACTIONS(2111), + [anon_sym_in] = ACTIONS(2111), + [sym__newline] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_PIPE] = ACTIONS(2111), + [anon_sym_err_GT_PIPE] = ACTIONS(2111), + [anon_sym_out_GT_PIPE] = ACTIONS(2111), + [anon_sym_e_GT_PIPE] = ACTIONS(2111), + [anon_sym_o_GT_PIPE] = ACTIONS(2111), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2111), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2111), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2111), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2111), + [anon_sym_COLON] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_RPAREN] = ACTIONS(2111), + [anon_sym_GT2] = ACTIONS(2113), + [anon_sym_DASH2] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_STAR2] = ACTIONS(2113), + [anon_sym_and2] = ACTIONS(2111), + [anon_sym_xor2] = ACTIONS(2111), + [anon_sym_or2] = ACTIONS(2111), + [anon_sym_not_DASHin2] = ACTIONS(2111), + [anon_sym_has2] = ACTIONS(2111), + [anon_sym_not_DASHhas2] = ACTIONS(2111), + [anon_sym_starts_DASHwith2] = ACTIONS(2111), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2111), + [anon_sym_ends_DASHwith2] = ACTIONS(2111), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2111), + [anon_sym_EQ_EQ2] = ACTIONS(2111), + [anon_sym_BANG_EQ2] = ACTIONS(2111), + [anon_sym_LT2] = ACTIONS(2113), + [anon_sym_LT_EQ2] = ACTIONS(2111), + [anon_sym_GT_EQ2] = ACTIONS(2111), + [anon_sym_EQ_TILDE2] = ACTIONS(2111), + [anon_sym_BANG_TILDE2] = ACTIONS(2111), + [anon_sym_like2] = ACTIONS(2111), + [anon_sym_not_DASHlike2] = ACTIONS(2111), + [anon_sym_STAR_STAR2] = ACTIONS(2111), + [anon_sym_PLUS_PLUS2] = ACTIONS(2111), + [anon_sym_SLASH2] = ACTIONS(2113), + [anon_sym_mod2] = ACTIONS(2111), + [anon_sym_SLASH_SLASH2] = ACTIONS(2111), + [anon_sym_PLUS2] = ACTIONS(2113), + [anon_sym_bit_DASHshl2] = ACTIONS(2111), + [anon_sym_bit_DASHshr2] = ACTIONS(2111), + [anon_sym_bit_DASHand2] = ACTIONS(2111), + [anon_sym_bit_DASHxor2] = ACTIONS(2111), + [anon_sym_bit_DASHor2] = ACTIONS(2111), + [anon_sym_err_GT] = ACTIONS(2113), + [anon_sym_out_GT] = ACTIONS(2113), + [anon_sym_e_GT] = ACTIONS(2113), + [anon_sym_o_GT] = ACTIONS(2113), + [anon_sym_err_PLUSout_GT] = ACTIONS(2113), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2113), + [anon_sym_o_PLUSe_GT] = ACTIONS(2113), + [anon_sym_e_PLUSo_GT] = ACTIONS(2113), + [anon_sym_err_GT_GT] = ACTIONS(2111), + [anon_sym_out_GT_GT] = ACTIONS(2111), + [anon_sym_e_GT_GT] = ACTIONS(2111), + [anon_sym_o_GT_GT] = ACTIONS(2111), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2111), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2111), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2111), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2111), + [anon_sym_POUND] = ACTIONS(3), + }, + [554] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1619), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(751), + [sym__unquoted_with_expr] = STATE(1008), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(554), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(555)] = { - [aux_sym__repeat_newline] = STATE(639), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2119), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(757), - [sym__unquoted_with_expr] = STATE(992), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [555] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1612), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(750), + [sym__unquoted_with_expr] = STATE(995), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(555), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(556)] = { - [aux_sym__repeat_newline] = STATE(660), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1276), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(924), - [sym__unquoted_with_expr] = STATE(1148), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [556] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1281), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(868), + [sym__unquoted_with_expr] = STATE(1000), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(556), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(557)] = { - [aux_sym__repeat_newline] = STATE(663), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1284), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(926), - [sym__unquoted_with_expr] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [557] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1590), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(889), + [sym__unquoted_with_expr] = STATE(1104), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(557), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(558)] = { - [aux_sym__repeat_newline] = STATE(664), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1161), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(927), - [sym__unquoted_with_expr] = STATE(1006), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [558] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1271), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(765), + [sym__unquoted_with_expr] = STATE(1009), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(558), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(559)] = { - [aux_sym__repeat_newline] = STATE(672), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1232), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(757), - [sym__unquoted_with_expr] = STATE(992), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [559] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1586), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(887), + [sym__unquoted_with_expr] = STATE(1109), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(559), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(560)] = { - [aux_sym__repeat_newline] = STATE(673), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1269), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(770), - [sym__unquoted_with_expr] = STATE(1026), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [560] = { + [aux_sym__repeat_newline] = STATE(636), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1244), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(783), + [sym__unquoted_with_expr] = STATE(1036), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(560), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(561)] = { - [aux_sym__repeat_newline] = STATE(674), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1179), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(784), - [sym__unquoted_with_expr] = STATE(1028), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [561] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1265), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(767), + [sym__unquoted_with_expr] = STATE(1014), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(561), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(562)] = { - [aux_sym__repeat_newline] = STATE(678), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1229), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(787), - [sym__unquoted_with_expr] = STATE(1114), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [562] = { + [aux_sym__repeat_newline] = STATE(696), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2095), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(775), + [sym__unquoted_with_expr] = STATE(1033), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(562), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(563)] = { - [aux_sym__repeat_newline] = STATE(640), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2120), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(770), - [sym__unquoted_with_expr] = STATE(1026), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [563] = { + [aux_sym__repeat_newline] = STATE(554), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1654), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(845), + [sym__unquoted_with_expr] = STATE(1108), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(563), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(564)] = { - [aux_sym__repeat_newline] = STATE(680), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1240), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(788), - [sym__unquoted_with_expr] = STATE(1120), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [564] = { + [aux_sym__repeat_newline] = STATE(695), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2094), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(779), + [sym__unquoted_with_expr] = STATE(1035), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(564), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(565)] = { - [aux_sym__repeat_newline] = STATE(681), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1139), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(789), - [sym__unquoted_with_expr] = STATE(1149), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [565] = { + [aux_sym__repeat_newline] = STATE(555), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1662), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(846), + [sym__unquoted_with_expr] = STATE(1113), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(565), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(566)] = { - [aux_sym__repeat_newline] = STATE(683), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1288), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(790), - [sym__unquoted_with_expr] = STATE(991), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [566] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1259), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(792), + [sym__unquoted_with_expr] = STATE(990), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(566), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(567)] = { - [aux_sym__repeat_newline] = STATE(641), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2121), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(784), - [sym__unquoted_with_expr] = STATE(1028), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [567] = { + [aux_sym__repeat_newline] = STATE(650), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1665), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(848), + [sym__unquoted_with_expr] = STATE(1118), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(567), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(568)] = { - [aux_sym__repeat_newline] = STATE(684), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1213), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(792), - [sym__unquoted_with_expr] = STATE(1004), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [568] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1253), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(798), + [sym__unquoted_with_expr] = STATE(1026), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(568), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(569)] = { - [aux_sym__repeat_newline] = STATE(527), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1281), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(794), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [569] = { + [aux_sym__repeat_newline] = STATE(694), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2018), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(783), + [sym__unquoted_with_expr] = STATE(1036), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(569), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(570)] = { - [aux_sym__repeat_newline] = STATE(686), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1205), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(795), - [sym__unquoted_with_expr] = STATE(1016), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [570] = { + [aux_sym__repeat_newline] = STATE(3647), + [aux_sym__pipe_separator] = STATE(570), [sym_comment] = STATE(570), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [anon_sym_export] = ACTIONS(2115), + [anon_sym_alias] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_mut] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [aux_sym_cmd_identifier_token1] = ACTIONS(2115), + [anon_sym_def] = ACTIONS(2117), + [anon_sym_use] = ACTIONS(2117), + [anon_sym_export_DASHenv] = ACTIONS(2117), + [anon_sym_extern] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_loop] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_catch] = ACTIONS(2117), + [anon_sym_finally] = ACTIONS(2117), + [anon_sym_match] = ACTIONS(2117), + [anon_sym_in] = ACTIONS(2115), + [anon_sym_true] = ACTIONS(2117), + [anon_sym_false] = ACTIONS(2117), + [anon_sym_null] = ACTIONS(2117), + [aux_sym_cmd_identifier_token3] = ACTIONS(2117), + [aux_sym_cmd_identifier_token4] = ACTIONS(2117), + [aux_sym_cmd_identifier_token5] = ACTIONS(2117), + [sym__newline] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2122), + [anon_sym_err_GT_PIPE] = ACTIONS(2122), + [anon_sym_out_GT_PIPE] = ACTIONS(2122), + [anon_sym_e_GT_PIPE] = ACTIONS(2122), + [anon_sym_o_GT_PIPE] = ACTIONS(2122), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2122), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2122), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2122), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_DOLLAR] = ACTIONS(2115), + [anon_sym_DASH2] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2115), + [anon_sym_where] = ACTIONS(2117), + [aux_sym_expr_unary_token1] = ACTIONS(2117), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2117), + [anon_sym_DOT_DOT_LT] = ACTIONS(2117), + [aux_sym__val_number_decimal_token1] = ACTIONS(2115), + [aux_sym__val_number_decimal_token2] = ACTIONS(2117), + [aux_sym__val_number_decimal_token3] = ACTIONS(2117), + [aux_sym__val_number_decimal_token4] = ACTIONS(2117), + [aux_sym__val_number_token1] = ACTIONS(2117), + [aux_sym__val_number_token2] = ACTIONS(2117), + [aux_sym__val_number_token3] = ACTIONS(2117), + [anon_sym_0b] = ACTIONS(2115), + [anon_sym_0o] = ACTIONS(2115), + [anon_sym_0x] = ACTIONS(2115), + [sym_val_date] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2117), + [anon_sym_SQUOTE] = ACTIONS(2117), + [anon_sym_BQUOTE] = ACTIONS(2117), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2117), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_PERCENT] = ACTIONS(2117), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2117), + }, + [571] = { + [aux_sym__repeat_newline] = STATE(689), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2091), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(787), + [sym__unquoted_with_expr] = STATE(1049), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(571), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(571)] = { - [aux_sym__repeat_newline] = STATE(642), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2122), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(787), - [sym__unquoted_with_expr] = STATE(1114), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(571), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(572)] = { - [aux_sym__repeat_newline] = STATE(643), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(788), - [sym__unquoted_with_expr] = STATE(1120), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [572] = { [sym_comment] = STATE(572), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(573)] = { - [aux_sym__repeat_newline] = STATE(589), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1594), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(924), - [sym__unquoted_with_expr] = STATE(1148), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [anon_sym_in] = ACTIONS(2125), + [sym__newline] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(2125), + [anon_sym_err_GT_PIPE] = ACTIONS(2125), + [anon_sym_out_GT_PIPE] = ACTIONS(2125), + [anon_sym_e_GT_PIPE] = ACTIONS(2125), + [anon_sym_o_GT_PIPE] = ACTIONS(2125), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2125), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2125), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2125), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2125), + [anon_sym_RPAREN] = ACTIONS(2125), + [anon_sym_GT2] = ACTIONS(2127), + [anon_sym_DASH2] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_STAR2] = ACTIONS(2127), + [anon_sym_and2] = ACTIONS(2125), + [anon_sym_xor2] = ACTIONS(2125), + [anon_sym_or2] = ACTIONS(2125), + [anon_sym_not_DASHin2] = ACTIONS(2125), + [anon_sym_has2] = ACTIONS(2125), + [anon_sym_not_DASHhas2] = ACTIONS(2125), + [anon_sym_starts_DASHwith2] = ACTIONS(2125), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2125), + [anon_sym_ends_DASHwith2] = ACTIONS(2125), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2125), + [anon_sym_EQ_EQ2] = ACTIONS(2125), + [anon_sym_BANG_EQ2] = ACTIONS(2125), + [anon_sym_LT2] = ACTIONS(2127), + [anon_sym_LT_EQ2] = ACTIONS(2125), + [anon_sym_GT_EQ2] = ACTIONS(2125), + [anon_sym_EQ_TILDE2] = ACTIONS(2125), + [anon_sym_BANG_TILDE2] = ACTIONS(2125), + [anon_sym_like2] = ACTIONS(2125), + [anon_sym_not_DASHlike2] = ACTIONS(2125), + [anon_sym_LPAREN2] = ACTIONS(2129), + [anon_sym_STAR_STAR2] = ACTIONS(2125), + [anon_sym_PLUS_PLUS2] = ACTIONS(2125), + [anon_sym_SLASH2] = ACTIONS(2127), + [anon_sym_mod2] = ACTIONS(2125), + [anon_sym_SLASH_SLASH2] = ACTIONS(2125), + [anon_sym_PLUS2] = ACTIONS(2127), + [anon_sym_bit_DASHshl2] = ACTIONS(2125), + [anon_sym_bit_DASHshr2] = ACTIONS(2125), + [anon_sym_bit_DASHand2] = ACTIONS(2125), + [anon_sym_bit_DASHxor2] = ACTIONS(2125), + [anon_sym_bit_DASHor2] = ACTIONS(2125), + [anon_sym_DOT_DOT2] = ACTIONS(2131), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2133), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2133), + [anon_sym_err_GT] = ACTIONS(2127), + [anon_sym_out_GT] = ACTIONS(2127), + [anon_sym_e_GT] = ACTIONS(2127), + [anon_sym_o_GT] = ACTIONS(2127), + [anon_sym_err_PLUSout_GT] = ACTIONS(2127), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2127), + [anon_sym_o_PLUSe_GT] = ACTIONS(2127), + [anon_sym_e_PLUSo_GT] = ACTIONS(2127), + [anon_sym_err_GT_GT] = ACTIONS(2125), + [anon_sym_out_GT_GT] = ACTIONS(2125), + [anon_sym_e_GT_GT] = ACTIONS(2125), + [anon_sym_o_GT_GT] = ACTIONS(2125), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2125), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2125), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2125), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2125), + [sym__unquoted_pattern] = ACTIONS(1636), + [anon_sym_POUND] = ACTIONS(3), + }, + [573] = { + [aux_sym__repeat_newline] = STATE(688), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2038), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(791), + [sym__unquoted_with_expr] = STATE(1052), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(573), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(574)] = { - [aux_sym__repeat_newline] = STATE(590), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1595), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(926), - [sym__unquoted_with_expr] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [574] = { + [aux_sym__repeat_newline] = STATE(661), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1699), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(850), + [sym__unquoted_with_expr] = STATE(1123), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(574), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(575)] = { - [aux_sym__repeat_newline] = STATE(591), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1596), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(927), - [sym__unquoted_with_expr] = STATE(1006), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [575] = { + [aux_sym__repeat_newline] = STATE(637), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1240), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(787), + [sym__unquoted_with_expr] = STATE(1049), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(575), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(576)] = { - [aux_sym__repeat_newline] = STATE(592), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1597), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(757), - [sym__unquoted_with_expr] = STATE(992), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [576] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1581), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(886), + [sym__unquoted_with_expr] = STATE(1114), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(576), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(577)] = { - [aux_sym__repeat_newline] = STATE(593), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1598), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(770), - [sym__unquoted_with_expr] = STATE(1026), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [577] = { + [aux_sym__repeat_newline] = STATE(687), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2089), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(795), + [sym__unquoted_with_expr] = STATE(1057), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(577), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(578)] = { - [aux_sym__repeat_newline] = STATE(594), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1599), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(784), - [sym__unquoted_with_expr] = STATE(1028), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [578] = { + [aux_sym__repeat_newline] = STATE(664), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1700), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(852), + [sym__unquoted_with_expr] = STATE(1128), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(578), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(579)] = { - [aux_sym__repeat_newline] = STATE(595), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1600), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(787), - [sym__unquoted_with_expr] = STATE(1114), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [579] = { + [aux_sym__repeat_newline] = STATE(557), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1674), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(779), + [sym__unquoted_with_expr] = STATE(1035), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(579), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(580)] = { - [aux_sym__repeat_newline] = STATE(596), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1601), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(788), - [sym__unquoted_with_expr] = STATE(1120), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [580] = { + [sym_path] = STATE(712), [sym_comment] = STATE(580), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(581)] = { - [aux_sym__repeat_newline] = STATE(597), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1139), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(789), - [sym__unquoted_with_expr] = STATE(1149), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [aux_sym__where_predicate_lhs_repeat1] = STATE(639), + [ts_builtin_sym_end] = ACTIONS(1569), + [anon_sym_in] = ACTIONS(1569), + [sym__newline] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_err_GT_PIPE] = ACTIONS(1569), + [anon_sym_out_GT_PIPE] = ACTIONS(1569), + [anon_sym_e_GT_PIPE] = ACTIONS(1569), + [anon_sym_o_GT_PIPE] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1569), + [anon_sym_GT2] = ACTIONS(1567), + [anon_sym_DASH2] = ACTIONS(1569), + [anon_sym_STAR2] = ACTIONS(1567), + [anon_sym_and2] = ACTIONS(1569), + [anon_sym_xor2] = ACTIONS(1569), + [anon_sym_or2] = ACTIONS(1569), + [anon_sym_not_DASHin2] = ACTIONS(1569), + [anon_sym_has2] = ACTIONS(1569), + [anon_sym_not_DASHhas2] = ACTIONS(1569), + [anon_sym_starts_DASHwith2] = ACTIONS(1569), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1569), + [anon_sym_ends_DASHwith2] = ACTIONS(1569), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1569), + [anon_sym_EQ_EQ2] = ACTIONS(1569), + [anon_sym_BANG_EQ2] = ACTIONS(1569), + [anon_sym_LT2] = ACTIONS(1567), + [anon_sym_LT_EQ2] = ACTIONS(1569), + [anon_sym_GT_EQ2] = ACTIONS(1569), + [anon_sym_EQ_TILDE2] = ACTIONS(1569), + [anon_sym_BANG_TILDE2] = ACTIONS(1569), + [anon_sym_like2] = ACTIONS(1569), + [anon_sym_not_DASHlike2] = ACTIONS(1569), + [anon_sym_STAR_STAR2] = ACTIONS(1569), + [anon_sym_PLUS_PLUS2] = ACTIONS(1569), + [anon_sym_SLASH2] = ACTIONS(1567), + [anon_sym_mod2] = ACTIONS(1569), + [anon_sym_SLASH_SLASH2] = ACTIONS(1569), + [anon_sym_PLUS2] = ACTIONS(1567), + [anon_sym_bit_DASHshl2] = ACTIONS(1569), + [anon_sym_bit_DASHshr2] = ACTIONS(1569), + [anon_sym_bit_DASHand2] = ACTIONS(1569), + [anon_sym_bit_DASHxor2] = ACTIONS(1569), + [anon_sym_bit_DASHor2] = ACTIONS(1569), + [anon_sym_DOT_DOT2] = ACTIONS(1567), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1569), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1569), + [anon_sym_DOT2] = ACTIONS(1884), + [anon_sym_err_GT] = ACTIONS(1567), + [anon_sym_out_GT] = ACTIONS(1567), + [anon_sym_e_GT] = ACTIONS(1567), + [anon_sym_o_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT] = ACTIONS(1567), + [anon_sym_err_GT_GT] = ACTIONS(1569), + [anon_sym_out_GT_GT] = ACTIONS(1569), + [anon_sym_e_GT_GT] = ACTIONS(1569), + [anon_sym_o_GT_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(3), + }, + [581] = { [sym_comment] = STATE(581), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [ts_builtin_sym_end] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1810), + [sym__newline] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_err_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_GT_PIPE] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), + [anon_sym_GT2] = ACTIONS(1812), + [anon_sym_DASH2] = ACTIONS(1810), + [anon_sym_STAR2] = ACTIONS(1812), + [anon_sym_and2] = ACTIONS(1810), + [anon_sym_xor2] = ACTIONS(1810), + [anon_sym_or2] = ACTIONS(1810), + [anon_sym_not_DASHin2] = ACTIONS(1810), + [anon_sym_has2] = ACTIONS(1810), + [anon_sym_not_DASHhas2] = ACTIONS(1810), + [anon_sym_starts_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1810), + [anon_sym_ends_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1810), + [anon_sym_EQ_EQ2] = ACTIONS(1810), + [anon_sym_BANG_EQ2] = ACTIONS(1810), + [anon_sym_LT2] = ACTIONS(1812), + [anon_sym_LT_EQ2] = ACTIONS(1810), + [anon_sym_GT_EQ2] = ACTIONS(1810), + [anon_sym_EQ_TILDE2] = ACTIONS(1810), + [anon_sym_BANG_TILDE2] = ACTIONS(1810), + [anon_sym_like2] = ACTIONS(1810), + [anon_sym_not_DASHlike2] = ACTIONS(1810), + [anon_sym_LPAREN2] = ACTIONS(1810), + [anon_sym_STAR_STAR2] = ACTIONS(1810), + [anon_sym_PLUS_PLUS2] = ACTIONS(1810), + [anon_sym_SLASH2] = ACTIONS(1812), + [anon_sym_mod2] = ACTIONS(1810), + [anon_sym_SLASH_SLASH2] = ACTIONS(1810), + [anon_sym_PLUS2] = ACTIONS(1812), + [anon_sym_bit_DASHshl2] = ACTIONS(1810), + [anon_sym_bit_DASHshr2] = ACTIONS(1810), + [anon_sym_bit_DASHand2] = ACTIONS(1810), + [anon_sym_bit_DASHxor2] = ACTIONS(1810), + [anon_sym_bit_DASHor2] = ACTIONS(1810), + [anon_sym_DOT_DOT2] = ACTIONS(1812), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1810), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1810), + [aux_sym__immediate_decimal_token5] = ACTIONS(1920), + [anon_sym_err_GT] = ACTIONS(1812), + [anon_sym_out_GT] = ACTIONS(1812), + [anon_sym_e_GT] = ACTIONS(1812), + [anon_sym_o_GT] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT] = ACTIONS(1812), + [anon_sym_err_GT_GT] = ACTIONS(1810), + [anon_sym_out_GT_GT] = ACTIONS(1810), + [anon_sym_e_GT_GT] = ACTIONS(1810), + [anon_sym_o_GT_GT] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), + [sym__unquoted_pattern] = ACTIONS(1812), + [anon_sym_POUND] = ACTIONS(3), + }, + [582] = { + [aux_sym__repeat_newline] = STATE(633), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1693), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(799), + [sym__unquoted_with_expr] = STATE(1059), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(582), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(582)] = { - [aux_sym__repeat_newline] = STATE(598), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1603), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(790), - [sym__unquoted_with_expr] = STATE(991), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(582), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [583] = { + [aux_sym__repeat_newline] = STATE(660), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1234), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(791), + [sym__unquoted_with_expr] = STATE(1052), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(583), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(583)] = { - [aux_sym__repeat_newline] = STATE(599), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1604), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(792), - [sym__unquoted_with_expr] = STATE(1004), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(583), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [584] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1695), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(841), + [sym__unquoted_with_expr] = STATE(1063), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(584), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(584)] = { - [aux_sym__repeat_newline] = STATE(600), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1605), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(794), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(584), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [585] = { + [aux_sym__repeat_newline] = STATE(631), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1691), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(795), + [sym__unquoted_with_expr] = STATE(1057), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(585), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(585)] = { - [aux_sym__repeat_newline] = STATE(601), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1606), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(795), - [sym__unquoted_with_expr] = STATE(1016), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(585), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [586] = { + [aux_sym__repeat_newline] = STATE(686), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2073), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(799), + [sym__unquoted_with_expr] = STATE(1059), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(586), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(586)] = { - [sym_path] = STATE(737), - [sym_comment] = STATE(586), - [aux_sym__where_predicate_lhs_repeat1] = STATE(632), - [ts_builtin_sym_end] = ACTIONS(1579), - [anon_sym_in] = ACTIONS(1579), - [sym__newline] = ACTIONS(1579), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_err_GT_PIPE] = ACTIONS(1579), - [anon_sym_out_GT_PIPE] = ACTIONS(1579), - [anon_sym_e_GT_PIPE] = ACTIONS(1579), - [anon_sym_o_GT_PIPE] = ACTIONS(1579), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), - [anon_sym_GT2] = ACTIONS(1577), - [anon_sym_DASH2] = ACTIONS(1579), - [anon_sym_STAR2] = ACTIONS(1577), - [anon_sym_and2] = ACTIONS(1579), - [anon_sym_xor2] = ACTIONS(1579), - [anon_sym_or2] = ACTIONS(1579), - [anon_sym_not_DASHin2] = ACTIONS(1579), - [anon_sym_has2] = ACTIONS(1579), - [anon_sym_not_DASHhas2] = ACTIONS(1579), - [anon_sym_starts_DASHwith2] = ACTIONS(1579), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1579), - [anon_sym_ends_DASHwith2] = ACTIONS(1579), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1579), - [anon_sym_EQ_EQ2] = ACTIONS(1579), - [anon_sym_BANG_EQ2] = ACTIONS(1579), - [anon_sym_LT2] = ACTIONS(1577), - [anon_sym_LT_EQ2] = ACTIONS(1579), - [anon_sym_GT_EQ2] = ACTIONS(1579), - [anon_sym_EQ_TILDE2] = ACTIONS(1579), - [anon_sym_BANG_TILDE2] = ACTIONS(1579), - [anon_sym_like2] = ACTIONS(1579), - [anon_sym_not_DASHlike2] = ACTIONS(1579), - [anon_sym_STAR_STAR2] = ACTIONS(1579), - [anon_sym_PLUS_PLUS2] = ACTIONS(1579), - [anon_sym_SLASH2] = ACTIONS(1577), - [anon_sym_mod2] = ACTIONS(1579), - [anon_sym_SLASH_SLASH2] = ACTIONS(1579), - [anon_sym_PLUS2] = ACTIONS(1577), - [anon_sym_bit_DASHshl2] = ACTIONS(1579), - [anon_sym_bit_DASHshr2] = ACTIONS(1579), - [anon_sym_bit_DASHand2] = ACTIONS(1579), - [anon_sym_bit_DASHxor2] = ACTIONS(1579), - [anon_sym_bit_DASHor2] = ACTIONS(1579), - [anon_sym_DOT_DOT2] = ACTIONS(1577), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1579), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1579), - [anon_sym_DOT2] = ACTIONS(1899), - [anon_sym_err_GT] = ACTIONS(1577), - [anon_sym_out_GT] = ACTIONS(1577), - [anon_sym_e_GT] = ACTIONS(1577), - [anon_sym_o_GT] = ACTIONS(1577), - [anon_sym_err_PLUSout_GT] = ACTIONS(1577), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1577), - [anon_sym_o_PLUSe_GT] = ACTIONS(1577), - [anon_sym_e_PLUSo_GT] = ACTIONS(1577), - [anon_sym_err_GT_GT] = ACTIONS(1579), - [anon_sym_out_GT_GT] = ACTIONS(1579), - [anon_sym_e_GT_GT] = ACTIONS(1579), - [anon_sym_o_GT_GT] = ACTIONS(1579), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1579), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1579), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1579), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(587)] = { - [aux_sym__repeat_newline] = STATE(644), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1139), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(789), - [sym__unquoted_with_expr] = STATE(1149), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [587] = { + [aux_sym__repeat_newline] = STATE(662), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1231), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(795), + [sym__unquoted_with_expr] = STATE(1057), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(587), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(588)] = { - [aux_sym__repeat_newline] = STATE(645), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2125), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(790), - [sym__unquoted_with_expr] = STATE(991), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [588] = { + [aux_sym__repeat_newline] = STATE(685), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2066), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(803), + [sym__unquoted_with_expr] = STATE(1062), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(588), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(589)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1607), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(802), - [sym__unquoted_with_expr] = STATE(1100), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [589] = { + [aux_sym__repeat_newline] = STATE(681), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1067), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(807), + [sym__unquoted_with_expr] = STATE(1068), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(589), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(590)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1542), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(803), - [sym__unquoted_with_expr] = STATE(1107), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [590] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2110), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(792), + [sym__unquoted_with_expr] = STATE(990), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(590), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(591)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1610), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(805), - [sym__unquoted_with_expr] = STATE(1111), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [591] = { + [aux_sym__repeat_newline] = STATE(676), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2059), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(811), + [sym__unquoted_with_expr] = STATE(1073), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(591), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(592)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1612), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(806), - [sym__unquoted_with_expr] = STATE(1115), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [592] = { + [aux_sym__repeat_newline] = STATE(667), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1542), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(819), + [sym__unquoted_with_expr] = STATE(1082), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(592), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(593)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1614), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(807), - [sym__unquoted_with_expr] = STATE(1121), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [593] = { + [aux_sym__repeat_newline] = STATE(665), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1228), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(799), + [sym__unquoted_with_expr] = STATE(1059), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(593), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(594)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1616), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(808), - [sym__unquoted_with_expr] = STATE(1123), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [594] = { + [aux_sym__repeat_newline] = STATE(673), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1675), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(823), + [sym__unquoted_with_expr] = STATE(1087), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(594), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(595)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1618), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(809), - [sym__unquoted_with_expr] = STATE(1131), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [595] = { + [aux_sym__repeat_newline] = STATE(635), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1698), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(803), + [sym__unquoted_with_expr] = STATE(1062), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(595), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(596)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1620), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(1134), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [596] = { + [aux_sym__repeat_newline] = STATE(669), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2161), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(823), + [sym__unquoted_with_expr] = STATE(1087), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(596), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(597)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1138), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(812), - [sym__unquoted_with_expr] = STATE(1141), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [597] = { + [aux_sym__repeat_newline] = STATE(663), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1697), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(815), + [sym__unquoted_with_expr] = STATE(1075), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(597), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(598)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1622), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(813), - [sym__unquoted_with_expr] = STATE(1146), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [598] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2085), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(900), + [sym__unquoted_with_expr] = STATE(1074), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(598), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(599)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1624), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(814), - [sym__unquoted_with_expr] = STATE(1150), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [599] = { + [aux_sym__repeat_newline] = STATE(692), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1225), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(803), + [sym__unquoted_with_expr] = STATE(1062), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(599), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(600)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1626), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(817), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [600] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2076), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(891), + [sym__unquoted_with_expr] = STATE(1069), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(600), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(601)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1628), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(818), - [sym__unquoted_with_expr] = STATE(997), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [601] = { + [aux_sym__repeat_newline] = STATE(600), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2069), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(822), + [sym__unquoted_with_expr] = STATE(1085), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(601), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(602)] = { - [aux_sym__repeat_newline] = STATE(618), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1705), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(819), - [sym__unquoted_with_expr] = STATE(999), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [602] = { + [aux_sym__repeat_newline] = STATE(606), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2072), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(834), + [sym__unquoted_with_expr] = STATE(1089), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(602), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(603)] = { - [aux_sym__repeat_newline] = STATE(619), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1631), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(820), - [sym__unquoted_with_expr] = STATE(1001), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [603] = { + [aux_sym__repeat_newline] = STATE(610), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2074), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(839), + [sym__unquoted_with_expr] = STATE(1091), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(603), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(604)] = { - [aux_sym__repeat_newline] = STATE(620), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1632), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(821), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [604] = { + [aux_sym__repeat_newline] = STATE(613), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1102), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(843), + [sym__unquoted_with_expr] = STATE(1098), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(604), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(605)] = { - [aux_sym__repeat_newline] = STATE(621), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1633), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(823), - [sym__unquoted_with_expr] = STATE(1005), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [605] = { + [aux_sym__repeat_newline] = STATE(536), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2078), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(844), + [sym__unquoted_with_expr] = STATE(1103), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(605), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(606)] = { - [aux_sym__repeat_newline] = STATE(622), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1634), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(825), - [sym__unquoted_with_expr] = STATE(1007), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [606] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2064), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(841), + [sym__unquoted_with_expr] = STATE(1063), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(606), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(607)] = { - [aux_sym__repeat_newline] = STATE(623), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1635), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(826), - [sym__unquoted_with_expr] = STATE(1009), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [607] = { + [aux_sym__repeat_newline] = STATE(627), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2082), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(845), + [sym__unquoted_with_expr] = STATE(1108), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(607), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(608)] = { - [aux_sym__repeat_newline] = STATE(624), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1636), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(827), - [sym__unquoted_with_expr] = STATE(1010), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [608] = { + [aux_sym__repeat_newline] = STATE(671), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2046), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(815), + [sym__unquoted_with_expr] = STATE(1075), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(608), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(609)] = { - [aux_sym__repeat_newline] = STATE(625), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1637), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1012), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [609] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1198), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(892), + [sym__unquoted_with_expr] = STATE(1099), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(609), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(610)] = { - [aux_sym__repeat_newline] = STATE(626), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1013), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), + [610] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2050), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), [sym_unquoted] = STATE(831), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym__unquoted_with_expr] = STATE(1058), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(610), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(611)] = { - [aux_sym__repeat_newline] = STATE(696), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1638), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(833), - [sym__unquoted_with_expr] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [611] = { + [aux_sym__repeat_newline] = STATE(546), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1669), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(775), + [sym__unquoted_with_expr] = STATE(1033), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(611), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(612)] = { - [aux_sym__repeat_newline] = STATE(628), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1639), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(834), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [612] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1211), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(818), + [sym__unquoted_with_expr] = STATE(1081), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(612), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(613)] = { - [aux_sym__repeat_newline] = STATE(629), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1640), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(836), - [sym__unquoted_with_expr] = STATE(1021), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [613] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1006), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(808), + [sym__unquoted_with_expr] = STATE(1037), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(613), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(614)] = { - [aux_sym__repeat_newline] = STATE(630), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1641), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(838), - [sym__unquoted_with_expr] = STATE(1023), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [614] = { + [aux_sym__repeat_newline] = STATE(659), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1207), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(822), + [sym__unquoted_with_expr] = STATE(1085), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(614), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(615)] = { - [aux_sym__repeat_newline] = STATE(3624), - [aux_sym__pipe_separator] = STATE(652), + [615] = { + [aux_sym__repeat_newline] = STATE(684), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1203), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(834), + [sym__unquoted_with_expr] = STATE(1089), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(615), - [anon_sym_export] = ACTIONS(2095), - [anon_sym_alias] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_mut] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [aux_sym_cmd_identifier_token1] = ACTIONS(2095), - [anon_sym_def] = ACTIONS(2097), - [anon_sym_use] = ACTIONS(2097), - [anon_sym_export_DASHenv] = ACTIONS(2097), - [anon_sym_extern] = ACTIONS(2097), - [anon_sym_module] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_loop] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_catch] = ACTIONS(2097), - [anon_sym_finally] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_in] = ACTIONS(2095), - [anon_sym_true] = ACTIONS(2097), - [anon_sym_false] = ACTIONS(2097), - [anon_sym_null] = ACTIONS(2097), - [aux_sym_cmd_identifier_token3] = ACTIONS(2097), - [aux_sym_cmd_identifier_token4] = ACTIONS(2097), - [aux_sym_cmd_identifier_token5] = ACTIONS(2097), - [sym__newline] = ACTIONS(2099), - [anon_sym_PIPE] = ACTIONS(2075), - [anon_sym_err_GT_PIPE] = ACTIONS(2075), - [anon_sym_out_GT_PIPE] = ACTIONS(2075), - [anon_sym_e_GT_PIPE] = ACTIONS(2075), - [anon_sym_o_GT_PIPE] = ACTIONS(2075), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2075), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2075), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2075), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_DOLLAR] = ACTIONS(2095), - [anon_sym_DASH2] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_DOT_DOT] = ACTIONS(2095), - [anon_sym_where] = ACTIONS(2097), - [aux_sym_expr_unary_token1] = ACTIONS(2097), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2097), - [anon_sym_DOT_DOT_LT] = ACTIONS(2097), - [aux_sym__val_number_decimal_token1] = ACTIONS(2095), - [aux_sym__val_number_decimal_token2] = ACTIONS(2097), - [aux_sym__val_number_decimal_token3] = ACTIONS(2097), - [aux_sym__val_number_decimal_token4] = ACTIONS(2097), - [aux_sym__val_number_token1] = ACTIONS(2097), - [aux_sym__val_number_token2] = ACTIONS(2097), - [aux_sym__val_number_token3] = ACTIONS(2097), - [anon_sym_0b] = ACTIONS(2095), - [anon_sym_0o] = ACTIONS(2095), - [anon_sym_0x] = ACTIONS(2095), - [sym_val_date] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_BQUOTE] = ACTIONS(2097), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2097), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2097), - [anon_sym_CARET] = ACTIONS(2097), - [anon_sym_PERCENT] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2097), - }, - [STATE(616)] = { - [aux_sym__repeat_newline] = STATE(646), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2126), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(792), - [sym__unquoted_with_expr] = STATE(1004), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(616), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(617)] = { - [aux_sym__repeat_newline] = STATE(647), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(794), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(617), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [616] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1199), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(839), + [sym__unquoted_with_expr] = STATE(1091), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(616), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(618)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1654), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(858), - [sym__unquoted_with_expr] = STATE(1046), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(618), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [617] = { + [aux_sym__repeat_newline] = STATE(535), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1102), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(843), + [sym__unquoted_with_expr] = STATE(1098), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(617), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(619)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1656), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(859), - [sym__unquoted_with_expr] = STATE(1048), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(619), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [618] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1565), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(882), + [sym__unquoted_with_expr] = STATE(1119), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(618), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(620)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1658), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(860), - [sym__unquoted_with_expr] = STATE(1050), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [619] = { + [aux_sym__repeat_newline] = STATE(717), + [aux_sym__pipe_separator] = STATE(570), + [sym_comment] = STATE(619), + [anon_sym_export] = ACTIONS(2135), + [anon_sym_alias] = ACTIONS(2137), + [anon_sym_let] = ACTIONS(2137), + [anon_sym_mut] = ACTIONS(2137), + [anon_sym_const] = ACTIONS(2137), + [aux_sym_cmd_identifier_token1] = ACTIONS(2135), + [anon_sym_def] = ACTIONS(2137), + [anon_sym_use] = ACTIONS(2137), + [anon_sym_export_DASHenv] = ACTIONS(2137), + [anon_sym_extern] = ACTIONS(2137), + [anon_sym_module] = ACTIONS(2137), + [anon_sym_for] = ACTIONS(2137), + [anon_sym_loop] = ACTIONS(2137), + [anon_sym_while] = ACTIONS(2137), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_else] = ACTIONS(2137), + [anon_sym_try] = ACTIONS(2137), + [anon_sym_catch] = ACTIONS(2137), + [anon_sym_finally] = ACTIONS(2137), + [anon_sym_match] = ACTIONS(2137), + [anon_sym_in] = ACTIONS(2135), + [anon_sym_true] = ACTIONS(2137), + [anon_sym_false] = ACTIONS(2137), + [anon_sym_null] = ACTIONS(2137), + [aux_sym_cmd_identifier_token3] = ACTIONS(2137), + [aux_sym_cmd_identifier_token4] = ACTIONS(2137), + [aux_sym_cmd_identifier_token5] = ACTIONS(2137), + [sym__newline] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(1999), + [anon_sym_err_GT_PIPE] = ACTIONS(1999), + [anon_sym_out_GT_PIPE] = ACTIONS(1999), + [anon_sym_e_GT_PIPE] = ACTIONS(1999), + [anon_sym_o_GT_PIPE] = ACTIONS(1999), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1999), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1999), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1999), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym_DOLLAR] = ACTIONS(2135), + [anon_sym_DASH2] = ACTIONS(2135), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_DOT_DOT] = ACTIONS(2135), + [anon_sym_where] = ACTIONS(2137), + [aux_sym_expr_unary_token1] = ACTIONS(2137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2137), + [anon_sym_DOT_DOT_LT] = ACTIONS(2137), + [aux_sym__val_number_decimal_token1] = ACTIONS(2135), + [aux_sym__val_number_decimal_token2] = ACTIONS(2137), + [aux_sym__val_number_decimal_token3] = ACTIONS(2137), + [aux_sym__val_number_decimal_token4] = ACTIONS(2137), + [aux_sym__val_number_token1] = ACTIONS(2137), + [aux_sym__val_number_token2] = ACTIONS(2137), + [aux_sym__val_number_token3] = ACTIONS(2137), + [anon_sym_0b] = ACTIONS(2135), + [anon_sym_0o] = ACTIONS(2135), + [anon_sym_0x] = ACTIONS(2135), + [sym_val_date] = ACTIONS(2137), + [anon_sym_DQUOTE] = ACTIONS(2137), + [anon_sym_SQUOTE] = ACTIONS(2137), + [anon_sym_BQUOTE] = ACTIONS(2137), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2137), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2137), + [anon_sym_PERCENT] = ACTIONS(2137), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2137), + }, + [620] = { + [aux_sym__repeat_newline] = STATE(632), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2092), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(846), + [sym__unquoted_with_expr] = STATE(1113), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(620), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(621)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1660), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(861), - [sym__unquoted_with_expr] = STATE(1052), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [621] = { + [aux_sym__repeat_newline] = STATE(668), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2105), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(848), + [sym__unquoted_with_expr] = STATE(1118), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(621), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(622)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1662), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(862), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [622] = { + [aux_sym__repeat_newline] = STATE(674), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2107), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(850), + [sym__unquoted_with_expr] = STATE(1123), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(622), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(623)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1664), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(863), - [sym__unquoted_with_expr] = STATE(1056), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [623] = { + [aux_sym__repeat_newline] = STATE(559), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1679), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(783), + [sym__unquoted_with_expr] = STATE(1036), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(623), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(624)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1666), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(864), - [sym__unquoted_with_expr] = STATE(1058), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [624] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1195), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(889), + [sym__unquoted_with_expr] = STATE(1104), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(624), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(625)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1668), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(865), - [sym__unquoted_with_expr] = STATE(1060), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [625] = { + [aux_sym__repeat_newline] = STATE(691), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2121), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(852), + [sym__unquoted_with_expr] = STATE(1128), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(625), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(626)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1062), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(866), - [sym__unquoted_with_expr] = STATE(1063), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [626] = { + [aux_sym__repeat_newline] = STATE(680), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1067), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(807), + [sym__unquoted_with_expr] = STATE(1068), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(626), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(627)] = { - [aux_sym__repeat_newline] = STATE(546), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1175), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(826), - [sym__unquoted_with_expr] = STATE(1009), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [627] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2128), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(751), + [sym__unquoted_with_expr] = STATE(1008), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(627), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(628)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1672), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(881), - [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [628] = { + [aux_sym__repeat_newline] = STATE(644), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1701), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(811), + [sym__unquoted_with_expr] = STATE(1073), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(628), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(629)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1674), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(882), - [sym__unquoted_with_expr] = STATE(1071), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [629] = { + [aux_sym__repeat_newline] = STATE(576), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1680), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(787), + [sym__unquoted_with_expr] = STATE(1049), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(629), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(630)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1676), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(883), + [630] = { + [aux_sym__repeat_newline] = STATE(679), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1219), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(811), [sym__unquoted_with_expr] = STATE(1073), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(630), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(631)] = { - [aux_sym__repeat_newline] = STATE(648), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2129), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(795), - [sym__unquoted_with_expr] = STATE(1016), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [631] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1558), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(880), + [sym__unquoted_with_expr] = STATE(1124), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(631), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(632)] = { - [sym_path] = STATE(737), + [632] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2131), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(750), + [sym__unquoted_with_expr] = STATE(995), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(632), - [aux_sym__where_predicate_lhs_repeat1] = STATE(632), - [ts_builtin_sym_end] = ACTIONS(1492), - [anon_sym_in] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1490), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1490), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1490), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_like2] = ACTIONS(1492), - [anon_sym_not_DASHlike2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1490), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1490), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1490), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), - [anon_sym_DOT2] = ACTIONS(2101), - [anon_sym_err_GT] = ACTIONS(1490), - [anon_sym_out_GT] = ACTIONS(1490), - [anon_sym_e_GT] = ACTIONS(1490), - [anon_sym_o_GT] = ACTIONS(1490), - [anon_sym_err_PLUSout_GT] = ACTIONS(1490), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1490), - [anon_sym_o_PLUSe_GT] = ACTIONS(1490), - [anon_sym_e_PLUSo_GT] = ACTIONS(1490), - [anon_sym_err_GT_GT] = ACTIONS(1492), - [anon_sym_out_GT_GT] = ACTIONS(1492), - [anon_sym_e_GT_GT] = ACTIONS(1492), - [anon_sym_o_GT_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1961), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(633)] = { + [633] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1554), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(879), + [sym__unquoted_with_expr] = STATE(1129), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(633), - [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_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_LPAREN2] = ACTIONS(2108), - [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(2110), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2112), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2112), - [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), - [sym__unquoted_pattern] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(634)] = { + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2007), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2017), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [634] = { + [aux_sym__repeat_newline] = STATE(590), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2126), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(857), + [sym__unquoted_with_expr] = STATE(1132), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(634), - [anon_sym_in] = ACTIONS(2114), - [sym__newline] = ACTIONS(2114), - [anon_sym_SEMI] = ACTIONS(2114), - [anon_sym_PIPE] = ACTIONS(2114), - [anon_sym_err_GT_PIPE] = ACTIONS(2114), - [anon_sym_out_GT_PIPE] = ACTIONS(2114), - [anon_sym_e_GT_PIPE] = ACTIONS(2114), - [anon_sym_o_GT_PIPE] = ACTIONS(2114), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2114), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2114), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2114), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2114), - [anon_sym_RPAREN] = ACTIONS(2114), - [anon_sym_GT2] = ACTIONS(2116), - [anon_sym_DASH2] = ACTIONS(2114), - [anon_sym_RBRACE] = ACTIONS(2114), - [anon_sym_STAR2] = ACTIONS(2116), - [anon_sym_and2] = ACTIONS(2114), - [anon_sym_xor2] = ACTIONS(2114), - [anon_sym_or2] = ACTIONS(2114), - [anon_sym_not_DASHin2] = ACTIONS(2114), - [anon_sym_has2] = ACTIONS(2114), - [anon_sym_not_DASHhas2] = ACTIONS(2114), - [anon_sym_starts_DASHwith2] = ACTIONS(2114), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2114), - [anon_sym_ends_DASHwith2] = ACTIONS(2114), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2114), - [anon_sym_EQ_EQ2] = ACTIONS(2114), - [anon_sym_BANG_EQ2] = ACTIONS(2114), - [anon_sym_LT2] = ACTIONS(2116), - [anon_sym_LT_EQ2] = ACTIONS(2114), - [anon_sym_GT_EQ2] = ACTIONS(2114), - [anon_sym_EQ_TILDE2] = ACTIONS(2114), - [anon_sym_BANG_TILDE2] = ACTIONS(2114), - [anon_sym_like2] = ACTIONS(2114), - [anon_sym_not_DASHlike2] = ACTIONS(2114), - [anon_sym_LPAREN2] = ACTIONS(2118), - [anon_sym_STAR_STAR2] = ACTIONS(2114), - [anon_sym_PLUS_PLUS2] = ACTIONS(2114), - [anon_sym_SLASH2] = ACTIONS(2116), - [anon_sym_mod2] = ACTIONS(2114), - [anon_sym_SLASH_SLASH2] = ACTIONS(2114), - [anon_sym_PLUS2] = ACTIONS(2116), - [anon_sym_bit_DASHshl2] = ACTIONS(2114), - [anon_sym_bit_DASHshr2] = ACTIONS(2114), - [anon_sym_bit_DASHand2] = ACTIONS(2114), - [anon_sym_bit_DASHxor2] = ACTIONS(2114), - [anon_sym_bit_DASHor2] = ACTIONS(2114), - [anon_sym_DOT_DOT2] = ACTIONS(2120), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2122), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2122), - [anon_sym_err_GT] = ACTIONS(2116), - [anon_sym_out_GT] = ACTIONS(2116), - [anon_sym_e_GT] = ACTIONS(2116), - [anon_sym_o_GT] = ACTIONS(2116), - [anon_sym_err_PLUSout_GT] = ACTIONS(2116), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2116), - [anon_sym_o_PLUSe_GT] = ACTIONS(2116), - [anon_sym_e_PLUSo_GT] = ACTIONS(2116), - [anon_sym_err_GT_GT] = ACTIONS(2114), - [anon_sym_out_GT_GT] = ACTIONS(2114), - [anon_sym_e_GT_GT] = ACTIONS(2114), - [anon_sym_o_GT_GT] = ACTIONS(2114), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2114), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2114), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2114), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2114), - [sym__unquoted_pattern] = ACTIONS(2124), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(635)] = { - [aux_sym__repeat_newline] = STATE(548), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1207), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1012), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(635), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(636)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2135), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(802), - [sym__unquoted_with_expr] = STATE(1100), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(636), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [635] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1622), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(878), + [sym__unquoted_with_expr] = STATE(1134), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(635), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(637)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2137), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(803), - [sym__unquoted_with_expr] = STATE(1107), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(637), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [636] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1190), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(887), + [sym__unquoted_with_expr] = STATE(1109), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(636), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(638)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2139), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(805), - [sym__unquoted_with_expr] = STATE(1111), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(638), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [637] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1186), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(886), + [sym__unquoted_with_expr] = STATE(1114), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(637), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(639)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2141), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(806), - [sym__unquoted_with_expr] = STATE(1115), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(639), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [638] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1137), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(875), + [sym__unquoted_with_expr] = STATE(991), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(638), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(640)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2143), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(807), - [sym__unquoted_with_expr] = STATE(1121), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [639] = { + [sym_path] = STATE(712), + [sym_comment] = STATE(639), + [aux_sym__where_predicate_lhs_repeat1] = STATE(639), + [ts_builtin_sym_end] = ACTIONS(1560), + [anon_sym_in] = ACTIONS(1560), + [sym__newline] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_err_GT_PIPE] = ACTIONS(1560), + [anon_sym_out_GT_PIPE] = ACTIONS(1560), + [anon_sym_e_GT_PIPE] = ACTIONS(1560), + [anon_sym_o_GT_PIPE] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1560), + [anon_sym_GT2] = ACTIONS(1558), + [anon_sym_DASH2] = ACTIONS(1560), + [anon_sym_STAR2] = ACTIONS(1558), + [anon_sym_and2] = ACTIONS(1560), + [anon_sym_xor2] = ACTIONS(1560), + [anon_sym_or2] = ACTIONS(1560), + [anon_sym_not_DASHin2] = ACTIONS(1560), + [anon_sym_has2] = ACTIONS(1560), + [anon_sym_not_DASHhas2] = ACTIONS(1560), + [anon_sym_starts_DASHwith2] = ACTIONS(1560), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1560), + [anon_sym_ends_DASHwith2] = ACTIONS(1560), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1560), + [anon_sym_EQ_EQ2] = ACTIONS(1560), + [anon_sym_BANG_EQ2] = ACTIONS(1560), + [anon_sym_LT2] = ACTIONS(1558), + [anon_sym_LT_EQ2] = ACTIONS(1560), + [anon_sym_GT_EQ2] = ACTIONS(1560), + [anon_sym_EQ_TILDE2] = ACTIONS(1560), + [anon_sym_BANG_TILDE2] = ACTIONS(1560), + [anon_sym_like2] = ACTIONS(1560), + [anon_sym_not_DASHlike2] = ACTIONS(1560), + [anon_sym_STAR_STAR2] = ACTIONS(1560), + [anon_sym_PLUS_PLUS2] = ACTIONS(1560), + [anon_sym_SLASH2] = ACTIONS(1558), + [anon_sym_mod2] = ACTIONS(1560), + [anon_sym_SLASH_SLASH2] = ACTIONS(1560), + [anon_sym_PLUS2] = ACTIONS(1558), + [anon_sym_bit_DASHshl2] = ACTIONS(1560), + [anon_sym_bit_DASHshr2] = ACTIONS(1560), + [anon_sym_bit_DASHand2] = ACTIONS(1560), + [anon_sym_bit_DASHxor2] = ACTIONS(1560), + [anon_sym_bit_DASHor2] = ACTIONS(1560), + [anon_sym_DOT_DOT2] = ACTIONS(1558), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1560), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1560), + [anon_sym_DOT2] = ACTIONS(2141), + [anon_sym_err_GT] = ACTIONS(1558), + [anon_sym_out_GT] = ACTIONS(1558), + [anon_sym_e_GT] = ACTIONS(1558), + [anon_sym_o_GT] = ACTIONS(1558), + [anon_sym_err_PLUSout_GT] = ACTIONS(1558), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1558), + [anon_sym_o_PLUSe_GT] = ACTIONS(1558), + [anon_sym_e_PLUSo_GT] = ACTIONS(1558), + [anon_sym_err_GT_GT] = ACTIONS(1560), + [anon_sym_out_GT_GT] = ACTIONS(1560), + [anon_sym_e_GT_GT] = ACTIONS(1560), + [anon_sym_o_GT_GT] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1560), + [anon_sym_POUND] = ACTIONS(3), + }, + [640] = { + [aux_sym__repeat_newline] = STATE(537), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1191), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(844), + [sym__unquoted_with_expr] = STATE(1103), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(640), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(641)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2145), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(808), - [sym__unquoted_with_expr] = STATE(1123), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [641] = { + [aux_sym__repeat_newline] = STATE(541), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1187), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(845), + [sym__unquoted_with_expr] = STATE(1108), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(641), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(642)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2147), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(809), - [sym__unquoted_with_expr] = STATE(1131), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [642] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1702), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(891), + [sym__unquoted_with_expr] = STATE(1069), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(642), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(643)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2149), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(1134), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [643] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1655), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(900), + [sym__unquoted_with_expr] = STATE(1074), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(643), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(644)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1138), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(812), - [sym__unquoted_with_expr] = STATE(1141), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [644] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1629), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(874), + [sym__unquoted_with_expr] = STATE(1144), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(644), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(645)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2151), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(813), - [sym__unquoted_with_expr] = STATE(1146), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [645] = { + [aux_sym__repeat_newline] = STATE(678), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1217), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(815), + [sym__unquoted_with_expr] = STATE(1075), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(645), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(646)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2153), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(814), - [sym__unquoted_with_expr] = STATE(1150), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [646] = { + [aux_sym__repeat_newline] = STATE(550), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1183), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(846), + [sym__unquoted_with_expr] = STATE(1113), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(646), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(647)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2155), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(817), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [647] = { + [aux_sym__repeat_newline] = STATE(556), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1179), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(848), + [sym__unquoted_with_expr] = STATE(1118), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(647), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(648)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(818), - [sym__unquoted_with_expr] = STATE(997), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [648] = { + [aux_sym__repeat_newline] = STATE(540), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2109), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(861), + [sym__unquoted_with_expr] = STATE(1139), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(648), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(649)] = { + [649] = { + [aux_sym__repeat_newline] = STATE(558), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1175), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(850), + [sym__unquoted_with_expr] = STATE(1123), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(649), - [anon_sym_else] = ACTIONS(2126), - [anon_sym_catch] = ACTIONS(2126), - [anon_sym_finally] = ACTIONS(2126), - [anon_sym_in] = ACTIONS(2126), - [sym__newline] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_err_GT_PIPE] = ACTIONS(2126), - [anon_sym_out_GT_PIPE] = ACTIONS(2126), - [anon_sym_e_GT_PIPE] = ACTIONS(2126), - [anon_sym_o_GT_PIPE] = ACTIONS(2126), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2126), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2126), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2126), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2126), - [anon_sym_COLON] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_RPAREN] = ACTIONS(2126), - [anon_sym_GT2] = ACTIONS(2128), - [anon_sym_DASH2] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2126), - [anon_sym_STAR2] = ACTIONS(2128), - [anon_sym_and2] = ACTIONS(2126), - [anon_sym_xor2] = ACTIONS(2126), - [anon_sym_or2] = ACTIONS(2126), - [anon_sym_not_DASHin2] = ACTIONS(2126), - [anon_sym_has2] = ACTIONS(2126), - [anon_sym_not_DASHhas2] = ACTIONS(2126), - [anon_sym_starts_DASHwith2] = ACTIONS(2126), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2126), - [anon_sym_ends_DASHwith2] = ACTIONS(2126), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2126), - [anon_sym_EQ_EQ2] = ACTIONS(2126), - [anon_sym_BANG_EQ2] = ACTIONS(2126), - [anon_sym_LT2] = ACTIONS(2128), - [anon_sym_LT_EQ2] = ACTIONS(2126), - [anon_sym_GT_EQ2] = ACTIONS(2126), - [anon_sym_EQ_TILDE2] = ACTIONS(2126), - [anon_sym_BANG_TILDE2] = ACTIONS(2126), - [anon_sym_like2] = ACTIONS(2126), - [anon_sym_not_DASHlike2] = ACTIONS(2126), - [anon_sym_STAR_STAR2] = ACTIONS(2126), - [anon_sym_PLUS_PLUS2] = ACTIONS(2126), - [anon_sym_SLASH2] = ACTIONS(2128), - [anon_sym_mod2] = ACTIONS(2126), - [anon_sym_SLASH_SLASH2] = ACTIONS(2126), - [anon_sym_PLUS2] = ACTIONS(2128), - [anon_sym_bit_DASHshl2] = ACTIONS(2126), - [anon_sym_bit_DASHshr2] = ACTIONS(2126), - [anon_sym_bit_DASHand2] = ACTIONS(2126), - [anon_sym_bit_DASHxor2] = ACTIONS(2126), - [anon_sym_bit_DASHor2] = ACTIONS(2126), - [anon_sym_err_GT] = ACTIONS(2128), - [anon_sym_out_GT] = ACTIONS(2128), - [anon_sym_e_GT] = ACTIONS(2128), - [anon_sym_o_GT] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT] = ACTIONS(2128), - [anon_sym_err_GT_GT] = ACTIONS(2126), - [anon_sym_out_GT_GT] = ACTIONS(2126), - [anon_sym_e_GT_GT] = ACTIONS(2126), - [anon_sym_o_GT_GT] = ACTIONS(2126), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2126), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2126), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2126), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2126), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(650)] = { - [aux_sym__repeat_newline] = STATE(676), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2159), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(819), - [sym__unquoted_with_expr] = STATE(999), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1981), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1991), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [650] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1600), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(868), + [sym__unquoted_with_expr] = STATE(1000), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(650), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(651)] = { - [aux_sym__repeat_newline] = STATE(677), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2160), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(820), - [sym__unquoted_with_expr] = STATE(1001), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [651] = { + [aux_sym__repeat_newline] = STATE(561), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1171), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(852), + [sym__unquoted_with_expr] = STATE(1128), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(651), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(652)] = { - [aux_sym__repeat_newline] = STATE(3624), - [aux_sym__pipe_separator] = STATE(652), + [652] = { + [aux_sym__repeat_newline] = STATE(566), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1167), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(857), + [sym__unquoted_with_expr] = STATE(1132), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(652), - [anon_sym_export] = ACTIONS(2130), - [anon_sym_alias] = ACTIONS(2132), - [anon_sym_let] = ACTIONS(2132), - [anon_sym_mut] = ACTIONS(2132), - [anon_sym_const] = ACTIONS(2132), - [aux_sym_cmd_identifier_token1] = ACTIONS(2130), - [anon_sym_def] = ACTIONS(2132), - [anon_sym_use] = ACTIONS(2132), - [anon_sym_export_DASHenv] = ACTIONS(2132), - [anon_sym_extern] = ACTIONS(2132), - [anon_sym_module] = ACTIONS(2132), - [anon_sym_for] = ACTIONS(2132), - [anon_sym_loop] = ACTIONS(2132), - [anon_sym_while] = ACTIONS(2132), - [anon_sym_if] = ACTIONS(2132), - [anon_sym_else] = ACTIONS(2132), - [anon_sym_try] = ACTIONS(2132), - [anon_sym_catch] = ACTIONS(2132), - [anon_sym_finally] = ACTIONS(2132), - [anon_sym_match] = ACTIONS(2132), - [anon_sym_in] = ACTIONS(2130), - [anon_sym_true] = ACTIONS(2132), - [anon_sym_false] = ACTIONS(2132), - [anon_sym_null] = ACTIONS(2132), - [aux_sym_cmd_identifier_token3] = ACTIONS(2132), - [aux_sym_cmd_identifier_token4] = ACTIONS(2132), - [aux_sym_cmd_identifier_token5] = ACTIONS(2132), - [sym__newline] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2137), - [anon_sym_err_GT_PIPE] = ACTIONS(2137), - [anon_sym_out_GT_PIPE] = ACTIONS(2137), - [anon_sym_e_GT_PIPE] = ACTIONS(2137), - [anon_sym_o_GT_PIPE] = ACTIONS(2137), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2137), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2137), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2137), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2137), - [anon_sym_LBRACK] = ACTIONS(2132), - [anon_sym_LPAREN] = ACTIONS(2132), - [anon_sym_DOLLAR] = ACTIONS(2130), - [anon_sym_DASH2] = ACTIONS(2130), - [anon_sym_LBRACE] = ACTIONS(2132), - [anon_sym_DOT_DOT] = ACTIONS(2130), - [anon_sym_where] = ACTIONS(2132), - [aux_sym_expr_unary_token1] = ACTIONS(2132), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2132), - [anon_sym_DOT_DOT_LT] = ACTIONS(2132), - [aux_sym__val_number_decimal_token1] = ACTIONS(2130), - [aux_sym__val_number_decimal_token2] = ACTIONS(2132), - [aux_sym__val_number_decimal_token3] = ACTIONS(2132), - [aux_sym__val_number_decimal_token4] = ACTIONS(2132), - [aux_sym__val_number_token1] = ACTIONS(2132), - [aux_sym__val_number_token2] = ACTIONS(2132), - [aux_sym__val_number_token3] = ACTIONS(2132), - [anon_sym_0b] = ACTIONS(2130), - [anon_sym_0o] = ACTIONS(2130), - [anon_sym_0x] = ACTIONS(2130), - [sym_val_date] = ACTIONS(2132), - [anon_sym_DQUOTE] = ACTIONS(2132), - [anon_sym_SQUOTE] = ACTIONS(2132), - [anon_sym_BQUOTE] = ACTIONS(2132), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2132), - [anon_sym_CARET] = ACTIONS(2132), - [anon_sym_PERCENT] = ACTIONS(2132), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2132), - }, - [STATE(653)] = { - [aux_sym__repeat_newline] = STATE(679), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2161), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(821), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1981), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1991), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [653] = { + [aux_sym__repeat_newline] = STATE(568), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1163), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(861), + [sym__unquoted_with_expr] = STATE(1139), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(653), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(654)] = { - [aux_sym__repeat_newline] = STATE(682), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2162), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(823), - [sym__unquoted_with_expr] = STATE(1005), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [654] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1153), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(862), + [sym__unquoted_with_expr] = STATE(1145), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(654), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(655)] = { - [aux_sym__repeat_newline] = STATE(685), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(825), - [sym__unquoted_with_expr] = STATE(1007), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [655] = { + [aux_sym__repeat_newline] = STATE(618), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1687), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(791), + [sym__unquoted_with_expr] = STATE(1052), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(655), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(656)] = { - [aux_sym__repeat_newline] = STATE(688), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2164), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(826), - [sym__unquoted_with_expr] = STATE(1009), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [656] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1218), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(900), + [sym__unquoted_with_expr] = STATE(1074), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(656), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(657)] = { - [aux_sym__repeat_newline] = STATE(689), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2165), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(827), - [sym__unquoted_with_expr] = STATE(1010), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [657] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1154), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(863), + [sym__unquoted_with_expr] = STATE(1150), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(657), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(658)] = { - [aux_sym__repeat_newline] = STATE(692), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2032), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1012), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [658] = { + [aux_sym__repeat_newline] = STATE(666), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1704), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(857), + [sym__unquoted_with_expr] = STATE(1132), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(658), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(659)] = { + [659] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1210), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(891), + [sym__unquoted_with_expr] = STATE(1069), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(659), - [ts_builtin_sym_end] = ACTIONS(1788), - [anon_sym_in] = ACTIONS(1788), - [sym__newline] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_PIPE] = ACTIONS(1788), - [anon_sym_err_GT_PIPE] = ACTIONS(1788), - [anon_sym_out_GT_PIPE] = ACTIONS(1788), - [anon_sym_e_GT_PIPE] = ACTIONS(1788), - [anon_sym_o_GT_PIPE] = ACTIONS(1788), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), - [anon_sym_GT2] = ACTIONS(1790), - [anon_sym_DASH2] = ACTIONS(1788), - [anon_sym_STAR2] = ACTIONS(1790), - [anon_sym_and2] = ACTIONS(1788), - [anon_sym_xor2] = ACTIONS(1788), - [anon_sym_or2] = ACTIONS(1788), - [anon_sym_not_DASHin2] = ACTIONS(1788), - [anon_sym_has2] = ACTIONS(1788), - [anon_sym_not_DASHhas2] = ACTIONS(1788), - [anon_sym_starts_DASHwith2] = ACTIONS(1788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1788), - [anon_sym_ends_DASHwith2] = ACTIONS(1788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1788), - [anon_sym_EQ_EQ2] = ACTIONS(1788), - [anon_sym_BANG_EQ2] = ACTIONS(1788), - [anon_sym_LT2] = ACTIONS(1790), - [anon_sym_LT_EQ2] = ACTIONS(1788), - [anon_sym_GT_EQ2] = ACTIONS(1788), - [anon_sym_EQ_TILDE2] = ACTIONS(1788), - [anon_sym_BANG_TILDE2] = ACTIONS(1788), - [anon_sym_like2] = ACTIONS(1788), - [anon_sym_not_DASHlike2] = ACTIONS(1788), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_STAR_STAR2] = ACTIONS(1788), - [anon_sym_PLUS_PLUS2] = ACTIONS(1788), - [anon_sym_SLASH2] = ACTIONS(1790), - [anon_sym_mod2] = ACTIONS(1788), - [anon_sym_SLASH_SLASH2] = ACTIONS(1788), - [anon_sym_PLUS2] = ACTIONS(1790), - [anon_sym_bit_DASHshl2] = ACTIONS(1788), - [anon_sym_bit_DASHshr2] = ACTIONS(1788), - [anon_sym_bit_DASHand2] = ACTIONS(1788), - [anon_sym_bit_DASHxor2] = ACTIONS(1788), - [anon_sym_bit_DASHor2] = ACTIONS(1788), - [anon_sym_DOT_DOT2] = ACTIONS(1790), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1788), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1788), - [aux_sym__immediate_decimal_token5] = ACTIONS(1897), - [anon_sym_err_GT] = ACTIONS(1790), - [anon_sym_out_GT] = ACTIONS(1790), - [anon_sym_e_GT] = ACTIONS(1790), - [anon_sym_o_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT] = ACTIONS(1790), - [anon_sym_err_GT_GT] = ACTIONS(1788), - [anon_sym_out_GT_GT] = ACTIONS(1788), - [anon_sym_e_GT_GT] = ACTIONS(1788), - [anon_sym_o_GT_GT] = ACTIONS(1788), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1788), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1788), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1788), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1788), - [sym__unquoted_pattern] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(660)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1197), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(802), - [sym__unquoted_with_expr] = STATE(1100), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(660), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(661)] = { - [aux_sym__repeat_newline] = STATE(693), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1013), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(831), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(661), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [660] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1182), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(882), + [sym__unquoted_with_expr] = STATE(1119), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(660), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(662)] = { - [aux_sym__repeat_newline] = STATE(528), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2019), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(833), - [sym__unquoted_with_expr] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(662), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [661] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1557), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(765), + [sym__unquoted_with_expr] = STATE(1009), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(661), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(663)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1214), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(803), - [sym__unquoted_with_expr] = STATE(1107), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(663), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [662] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1178), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(880), + [sym__unquoted_with_expr] = STATE(1124), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(662), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(664)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1224), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(805), - [sym__unquoted_with_expr] = STATE(1111), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(664), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [663] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1635), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(873), + [sym__unquoted_with_expr] = STATE(1149), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(663), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(665)] = { - [aux_sym__repeat_newline] = STATE(529), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2020), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(834), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(665), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [664] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1672), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(767), + [sym__unquoted_with_expr] = STATE(1014), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(664), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(666)] = { - [aux_sym__repeat_newline] = STATE(530), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2021), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(836), - [sym__unquoted_with_expr] = STATE(1021), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(666), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [665] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1174), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(879), + [sym__unquoted_with_expr] = STATE(1129), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(665), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(667)] = { - [sym_comment] = STATE(667), - [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(2140), - [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(668)] = { - [aux_sym__repeat_newline] = STATE(531), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2022), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(838), - [sym__unquoted_with_expr] = STATE(1023), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(668), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [666] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1560), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(792), + [sym__unquoted_with_expr] = STATE(990), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(666), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(669)] = { - [aux_sym__repeat_newline] = STATE(549), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1013), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(831), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(669), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [667] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1653), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(863), + [sym__unquoted_with_expr] = STATE(1150), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(667), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(670)] = { - [aux_sym__repeat_newline] = STATE(550), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1242), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(833), - [sym__unquoted_with_expr] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(670), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [668] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2070), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(868), + [sym__unquoted_with_expr] = STATE(1000), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(668), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(671)] = { - [aux_sym__repeat_newline] = STATE(551), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1266), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(834), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(671), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [669] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2098), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(862), + [sym__unquoted_with_expr] = STATE(1145), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(669), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(672)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1236), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(806), - [sym__unquoted_with_expr] = STATE(1115), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(672), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [670] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2088), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(863), + [sym__unquoted_with_expr] = STATE(1150), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(670), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(673)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1245), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(807), - [sym__unquoted_with_expr] = STATE(1121), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(673), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [671] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2080), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(873), + [sym__unquoted_with_expr] = STATE(1149), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(671), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(674)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1250), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(808), - [sym__unquoted_with_expr] = STATE(1123), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(674), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [672] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1563), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(798), + [sym__unquoted_with_expr] = STATE(1026), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(672), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(675)] = { - [aux_sym__repeat_newline] = STATE(547), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1198), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(827), - [sym__unquoted_with_expr] = STATE(1010), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(675), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [673] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1671), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(862), + [sym__unquoted_with_expr] = STATE(1145), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(673), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(676)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2036), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(858), - [sym__unquoted_with_expr] = STATE(1046), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(676), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [674] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2154), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(765), + [sym__unquoted_with_expr] = STATE(1009), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(674), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(677)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2038), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(859), - [sym__unquoted_with_expr] = STATE(1048), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(677), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [675] = { + [aux_sym__repeat_newline] = STATE(657), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1214), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(819), + [sym__unquoted_with_expr] = STATE(1082), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(675), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(678)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1262), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(809), - [sym__unquoted_with_expr] = STATE(1131), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(678), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [676] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2054), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(874), + [sym__unquoted_with_expr] = STATE(1144), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(676), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(679)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2040), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(860), - [sym__unquoted_with_expr] = STATE(1050), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(679), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [677] = { + [aux_sym__repeat_newline] = STATE(670), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2029), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(819), + [sym__unquoted_with_expr] = STATE(1082), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(677), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(680)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1265), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(1134), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(680), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [678] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1158), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(873), + [sym__unquoted_with_expr] = STATE(1149), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(678), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(681)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1138), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(812), - [sym__unquoted_with_expr] = STATE(1141), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(681), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [679] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1164), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(874), + [sym__unquoted_with_expr] = STATE(1144), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(679), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(682)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2042), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(861), - [sym__unquoted_with_expr] = STATE(1052), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(682), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [680] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1137), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(875), + [sym__unquoted_with_expr] = STATE(991), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(680), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(683)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1277), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(813), - [sym__unquoted_with_expr] = STATE(1146), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(683), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [681] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1137), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(875), + [sym__unquoted_with_expr] = STATE(991), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(681), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(684)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1282), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(814), - [sym__unquoted_with_expr] = STATE(1150), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(684), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [682] = { + [sym_comment] = STATE(682), + [ts_builtin_sym_end] = ACTIONS(1466), + [anon_sym_in] = ACTIONS(1466), + [sym__newline] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_err_GT_PIPE] = ACTIONS(1466), + [anon_sym_out_GT_PIPE] = ACTIONS(1466), + [anon_sym_e_GT_PIPE] = ACTIONS(1466), + [anon_sym_o_GT_PIPE] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1466), + [anon_sym_COLON] = ACTIONS(1466), + [anon_sym_GT2] = ACTIONS(1464), + [anon_sym_DASH2] = ACTIONS(1466), + [anon_sym_STAR2] = ACTIONS(1464), + [anon_sym_and2] = ACTIONS(1466), + [anon_sym_xor2] = ACTIONS(1466), + [anon_sym_or2] = ACTIONS(1466), + [anon_sym_not_DASHin2] = ACTIONS(1466), + [anon_sym_has2] = ACTIONS(1466), + [anon_sym_not_DASHhas2] = ACTIONS(1466), + [anon_sym_starts_DASHwith2] = ACTIONS(1466), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1466), + [anon_sym_ends_DASHwith2] = ACTIONS(1466), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1466), + [anon_sym_EQ_EQ2] = ACTIONS(1466), + [anon_sym_BANG_EQ2] = ACTIONS(1466), + [anon_sym_LT2] = ACTIONS(1464), + [anon_sym_LT_EQ2] = ACTIONS(1466), + [anon_sym_GT_EQ2] = ACTIONS(1466), + [anon_sym_EQ_TILDE2] = ACTIONS(1466), + [anon_sym_BANG_TILDE2] = ACTIONS(1466), + [anon_sym_like2] = ACTIONS(1466), + [anon_sym_not_DASHlike2] = ACTIONS(1466), + [anon_sym_STAR_STAR2] = ACTIONS(1466), + [anon_sym_PLUS_PLUS2] = ACTIONS(1466), + [anon_sym_SLASH2] = ACTIONS(1464), + [anon_sym_mod2] = ACTIONS(1466), + [anon_sym_SLASH_SLASH2] = ACTIONS(1466), + [anon_sym_PLUS2] = ACTIONS(1464), + [anon_sym_bit_DASHshl2] = ACTIONS(1466), + [anon_sym_bit_DASHshr2] = ACTIONS(1466), + [anon_sym_bit_DASHand2] = ACTIONS(1466), + [anon_sym_bit_DASHxor2] = ACTIONS(1466), + [anon_sym_bit_DASHor2] = ACTIONS(1466), + [anon_sym_DOT_DOT2] = ACTIONS(1464), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1466), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1466), + [anon_sym_QMARK2] = ACTIONS(2144), + [anon_sym_DOT2] = ACTIONS(1464), + [anon_sym_err_GT] = ACTIONS(1464), + [anon_sym_out_GT] = ACTIONS(1464), + [anon_sym_e_GT] = ACTIONS(1464), + [anon_sym_o_GT] = ACTIONS(1464), + [anon_sym_err_PLUSout_GT] = ACTIONS(1464), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1464), + [anon_sym_o_PLUSe_GT] = ACTIONS(1464), + [anon_sym_e_PLUSo_GT] = ACTIONS(1464), + [anon_sym_err_GT_GT] = ACTIONS(1466), + [anon_sym_out_GT_GT] = ACTIONS(1466), + [anon_sym_e_GT_GT] = ACTIONS(1466), + [anon_sym_o_GT_GT] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1466), + [anon_sym_POUND] = ACTIONS(3), + }, + [683] = { + [aux_sym__repeat_newline] = STATE(672), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1705), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(861), + [sym__unquoted_with_expr] = STATE(1139), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(683), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(2007), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(685)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2044), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(862), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(685), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [684] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1224), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(841), + [sym__unquoted_with_expr] = STATE(1063), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(684), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(686)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1211), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(818), - [sym__unquoted_with_expr] = STATE(997), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(686), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [685] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2040), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(878), + [sym__unquoted_with_expr] = STATE(1134), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(685), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(687)] = { - [aux_sym__repeat_newline] = STATE(541), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1158), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(819), - [sym__unquoted_with_expr] = STATE(999), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(687), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [686] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2037), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(879), + [sym__unquoted_with_expr] = STATE(1129), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(686), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(688)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2046), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(863), - [sym__unquoted_with_expr] = STATE(1056), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(688), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [687] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2035), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(880), + [sym__unquoted_with_expr] = STATE(1124), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(687), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(689)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2048), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(864), - [sym__unquoted_with_expr] = STATE(1058), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(689), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [688] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2033), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(882), + [sym__unquoted_with_expr] = STATE(1119), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(688), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(690)] = { - [aux_sym__repeat_newline] = STATE(542), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1199), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(820), - [sym__unquoted_with_expr] = STATE(1001), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(690), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [689] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2028), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(886), + [sym__unquoted_with_expr] = STATE(1114), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(689), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(691)] = { - [aux_sym__repeat_newline] = STATE(543), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1230), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(821), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [690] = { + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4958), + [sym_val_range] = STATE(4957), + [sym__val_range] = STATE(4891), + [sym__value] = STATE(4957), + [sym_val_nothing] = STATE(4868), + [sym_val_bool] = STATE(4386), + [sym__spread_variable] = STATE(4956), + [sym_val_variable] = STATE(3992), + [sym_val_cellpath] = STATE(4868), + [sym_val_number] = STATE(4868), + [sym__val_number_decimal] = STATE(3716), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4868), + [sym_val_filesize] = STATE(4868), + [sym_val_binary] = STATE(4868), + [sym_val_string] = STATE(4868), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_interpolated] = STATE(4868), + [sym__inter_single_quotes] = STATE(4742), + [sym__inter_double_quotes] = STATE(4743), + [sym_val_list] = STATE(4868), + [sym__spread_list] = STATE(4958), + [sym_val_entry] = STATE(4684), + [sym_val_record] = STATE(4868), + [sym_val_table] = STATE(4868), + [sym_val_closure] = STATE(4868), + [sym__unquoted_in_list] = STATE(4454), + [sym__unquoted_in_list_with_expr] = STATE(4957), + [sym__unquoted_anonymous_prefix] = STATE(4891), + [sym_comment] = STATE(690), + [aux_sym_list_body_repeat1] = STATE(544), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [anon_sym_null] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_DOLLAR] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1450), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1454), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [691] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2093), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(767), + [sym__unquoted_with_expr] = STATE(1014), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(691), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(692)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(2050), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(865), - [sym__unquoted_with_expr] = STATE(1060), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [692] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1169), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(878), + [sym__unquoted_with_expr] = STATE(1134), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(692), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(693)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1062), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(866), - [sym__unquoted_with_expr] = STATE(1063), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [693] = { + [aux_sym__repeat_newline] = STATE(654), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(1222), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(823), + [sym__unquoted_with_expr] = STATE(1087), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(693), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(694)] = { - [aux_sym__repeat_newline] = STATE(544), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1251), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(823), - [sym__unquoted_with_expr] = STATE(1005), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [694] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(887), + [sym__unquoted_with_expr] = STATE(1109), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(694), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(695)] = { - [aux_sym__repeat_newline] = STATE(545), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1156), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(825), - [sym__unquoted_with_expr] = STATE(1007), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [695] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2145), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(889), + [sym__unquoted_with_expr] = STATE(1104), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(695), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(696)] = { - [aux_sym__repeat_newline] = STATE(2255), - [sym_expr_unary] = STATE(1273), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1273), - [sym__expr_binary_expression_parenthesized] = STATE(1670), - [sym_expr_parenthesized] = STATE(921), - [sym_val_range] = STATE(1273), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(1273), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(867), - [sym__unquoted_with_expr] = STATE(1067), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [696] = { + [aux_sym__repeat_newline] = STATE(2231), + [sym_expr_unary] = STATE(1250), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1250), + [sym__expr_binary_expression_parenthesized] = STATE(2151), + [sym_expr_parenthesized] = STATE(774), + [sym_val_range] = STATE(1250), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(1250), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(892), + [sym__unquoted_with_expr] = STATE(1099), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(696), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [sym__newline] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [sym__newline] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(697)] = { + [697] = { [sym_comment] = STATE(697), - [anon_sym_if] = ACTIONS(914), - [anon_sym_in] = ACTIONS(914), - [sym__newline] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_err_GT_PIPE] = ACTIONS(914), - [anon_sym_out_GT_PIPE] = ACTIONS(914), - [anon_sym_e_GT_PIPE] = ACTIONS(914), - [anon_sym_o_GT_PIPE] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(914), - [anon_sym_RPAREN] = ACTIONS(914), - [anon_sym_GT2] = ACTIONS(811), - [anon_sym_DASH2] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(914), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_EQ_GT] = ACTIONS(914), - [anon_sym_STAR2] = ACTIONS(811), - [anon_sym_and2] = ACTIONS(914), - [anon_sym_xor2] = ACTIONS(914), - [anon_sym_or2] = ACTIONS(914), - [anon_sym_not_DASHin2] = ACTIONS(914), - [anon_sym_has2] = ACTIONS(914), - [anon_sym_not_DASHhas2] = ACTIONS(914), - [anon_sym_starts_DASHwith2] = ACTIONS(914), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(914), - [anon_sym_ends_DASHwith2] = ACTIONS(914), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(914), - [anon_sym_EQ_EQ2] = ACTIONS(914), - [anon_sym_BANG_EQ2] = ACTIONS(914), - [anon_sym_LT2] = ACTIONS(811), - [anon_sym_LT_EQ2] = ACTIONS(914), - [anon_sym_GT_EQ2] = ACTIONS(914), - [anon_sym_EQ_TILDE2] = ACTIONS(914), - [anon_sym_BANG_TILDE2] = ACTIONS(914), - [anon_sym_like2] = ACTIONS(914), - [anon_sym_not_DASHlike2] = ACTIONS(914), - [anon_sym_STAR_STAR2] = ACTIONS(914), - [anon_sym_PLUS_PLUS2] = ACTIONS(914), - [anon_sym_SLASH2] = ACTIONS(811), - [anon_sym_mod2] = ACTIONS(914), - [anon_sym_SLASH_SLASH2] = ACTIONS(914), - [anon_sym_PLUS2] = ACTIONS(811), - [anon_sym_bit_DASHshl2] = ACTIONS(914), - [anon_sym_bit_DASHshr2] = ACTIONS(914), - [anon_sym_bit_DASHand2] = ACTIONS(914), - [anon_sym_bit_DASHxor2] = ACTIONS(914), - [anon_sym_bit_DASHor2] = ACTIONS(914), - [anon_sym_COLON2] = ACTIONS(914), - [anon_sym_err_GT] = ACTIONS(811), - [anon_sym_out_GT] = ACTIONS(811), - [anon_sym_e_GT] = ACTIONS(811), - [anon_sym_o_GT] = ACTIONS(811), - [anon_sym_err_PLUSout_GT] = ACTIONS(811), - [anon_sym_out_PLUSerr_GT] = ACTIONS(811), - [anon_sym_o_PLUSe_GT] = ACTIONS(811), - [anon_sym_e_PLUSo_GT] = ACTIONS(811), - [anon_sym_err_GT_GT] = ACTIONS(914), - [anon_sym_out_GT_GT] = ACTIONS(914), - [anon_sym_e_GT_GT] = ACTIONS(914), - [anon_sym_o_GT_GT] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(698)] = { - [sym__expr_parenthesized_immediate] = STATE(5283), - [sym_comment] = STATE(698), - [anon_sym_in] = ACTIONS(2142), - [sym__newline] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_PIPE] = ACTIONS(2142), - [anon_sym_err_GT_PIPE] = ACTIONS(2142), - [anon_sym_out_GT_PIPE] = ACTIONS(2142), - [anon_sym_e_GT_PIPE] = ACTIONS(2142), - [anon_sym_o_GT_PIPE] = ACTIONS(2142), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2142), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2142), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2142), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2142), - [anon_sym_RPAREN] = ACTIONS(2142), - [anon_sym_GT2] = ACTIONS(2144), - [anon_sym_DASH2] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_EQ_GT] = ACTIONS(2142), - [anon_sym_STAR2] = ACTIONS(2144), - [anon_sym_and2] = ACTIONS(2142), - [anon_sym_xor2] = ACTIONS(2142), - [anon_sym_or2] = ACTIONS(2142), - [anon_sym_not_DASHin2] = ACTIONS(2142), - [anon_sym_has2] = ACTIONS(2142), - [anon_sym_not_DASHhas2] = ACTIONS(2142), - [anon_sym_starts_DASHwith2] = ACTIONS(2142), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2142), - [anon_sym_ends_DASHwith2] = ACTIONS(2142), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2142), - [anon_sym_EQ_EQ2] = ACTIONS(2142), - [anon_sym_BANG_EQ2] = ACTIONS(2142), - [anon_sym_LT2] = ACTIONS(2144), - [anon_sym_LT_EQ2] = ACTIONS(2142), - [anon_sym_GT_EQ2] = ACTIONS(2142), - [anon_sym_EQ_TILDE2] = ACTIONS(2142), - [anon_sym_BANG_TILDE2] = ACTIONS(2142), - [anon_sym_like2] = ACTIONS(2142), - [anon_sym_not_DASHlike2] = ACTIONS(2142), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2142), - [anon_sym_PLUS_PLUS2] = ACTIONS(2142), - [anon_sym_SLASH2] = ACTIONS(2144), - [anon_sym_mod2] = ACTIONS(2142), - [anon_sym_SLASH_SLASH2] = ACTIONS(2142), - [anon_sym_PLUS2] = ACTIONS(2144), - [anon_sym_bit_DASHshl2] = ACTIONS(2142), - [anon_sym_bit_DASHshr2] = ACTIONS(2142), - [anon_sym_bit_DASHand2] = ACTIONS(2142), - [anon_sym_bit_DASHxor2] = ACTIONS(2142), - [anon_sym_bit_DASHor2] = ACTIONS(2142), - [anon_sym_err_GT] = ACTIONS(2144), - [anon_sym_out_GT] = ACTIONS(2144), - [anon_sym_e_GT] = ACTIONS(2144), - [anon_sym_o_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT] = ACTIONS(2144), - [anon_sym_err_GT_GT] = ACTIONS(2142), - [anon_sym_out_GT_GT] = ACTIONS(2142), - [anon_sym_e_GT_GT] = ACTIONS(2142), - [anon_sym_o_GT_GT] = ACTIONS(2142), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2142), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2142), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2142), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2142), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(699)] = { - [sym_comment] = STATE(699), [anon_sym_in] = ACTIONS(2146), [sym__newline] = ACTIONS(2146), [anon_sym_SEMI] = ACTIONS(2146), @@ -102672,9 +102478,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2146), [anon_sym_bit_DASHxor2] = ACTIONS(2146), [anon_sym_bit_DASHor2] = ACTIONS(2146), - [anon_sym_DOT_DOT2] = ACTIONS(1620), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), + [anon_sym_DOT_DOT2] = ACTIONS(2150), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2152), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2152), [anon_sym_err_GT] = ACTIONS(2148), [anon_sym_out_GT] = ACTIONS(2148), [anon_sym_e_GT] = ACTIONS(2148), @@ -102693,575 +102499,718 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2146), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(700)] = { - [sym__expr_parenthesized_immediate] = STATE(5069), + [698] = { + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(698), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [699] = { + [sym_cmd_identifier] = STATE(4572), + [sym_expr_parenthesized] = STATE(5187), + [sym__spread_parenthesized] = STATE(4951), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(4533), + [sym_val_number] = STATE(5187), + [sym__val_number_decimal] = STATE(2013), + [sym__val_number] = STATE(705), + [sym_val_string] = STATE(5187), + [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(5187), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym__spread_record] = STATE(4951), + [sym_record_entry] = STATE(4682), + [sym__record_key] = STATE(5305), + [sym_comment] = STATE(699), + [aux_sym__match_pattern_record_body_repeat1] = STATE(702), + [anon_sym_export] = ACTIONS(145), + [anon_sym_alias] = ACTIONS(139), + [anon_sym_let] = ACTIONS(139), + [anon_sym_mut] = ACTIONS(139), + [anon_sym_const] = ACTIONS(139), + [aux_sym_cmd_identifier_token1] = ACTIONS(119), + [anon_sym_def] = ACTIONS(139), + [anon_sym_use] = ACTIONS(139), + [anon_sym_export_DASHenv] = ACTIONS(139), + [anon_sym_extern] = ACTIONS(139), + [anon_sym_module] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_loop] = ACTIONS(139), + [anon_sym_while] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_else] = ACTIONS(139), + [anon_sym_try] = ACTIONS(139), + [anon_sym_catch] = ACTIONS(139), + [anon_sym_finally] = ACTIONS(139), + [anon_sym_match] = ACTIONS(139), + [anon_sym_in] = ACTIONS(145), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1746), + [aux_sym_cmd_identifier_token3] = ACTIONS(1748), + [aux_sym_cmd_identifier_token4] = ACTIONS(1748), + [aux_sym_cmd_identifier_token5] = ACTIONS(1748), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_DOLLAR] = ACTIONS(1778), + [anon_sym_DASH2] = ACTIONS(177), + [anon_sym_PLUS2] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1770), + }, + [700] = { + [sym__expr_parenthesized_immediate] = STATE(5101), [sym_comment] = STATE(700), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(701)] = { - [sym__expr_parenthesized_immediate] = STATE(5069), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [701] = { [sym_comment] = STATE(701), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(702)] = { - [sym__expr_parenthesized_immediate] = STATE(5069), + [anon_sym_if] = ACTIONS(2158), + [anon_sym_in] = ACTIONS(2158), + [sym__newline] = ACTIONS(2158), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_err_GT_PIPE] = ACTIONS(2158), + [anon_sym_out_GT_PIPE] = ACTIONS(2158), + [anon_sym_e_GT_PIPE] = ACTIONS(2158), + [anon_sym_o_GT_PIPE] = ACTIONS(2158), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2158), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2158), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2158), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2158), + [anon_sym_RPAREN] = ACTIONS(2158), + [anon_sym_GT2] = ACTIONS(2160), + [anon_sym_DASH2] = ACTIONS(2158), + [anon_sym_LBRACE] = ACTIONS(2158), + [anon_sym_RBRACE] = ACTIONS(2158), + [anon_sym_EQ_GT] = ACTIONS(2158), + [anon_sym_STAR2] = ACTIONS(2160), + [anon_sym_and2] = ACTIONS(2158), + [anon_sym_xor2] = ACTIONS(2158), + [anon_sym_or2] = ACTIONS(2158), + [anon_sym_not_DASHin2] = ACTIONS(2158), + [anon_sym_has2] = ACTIONS(2158), + [anon_sym_not_DASHhas2] = ACTIONS(2158), + [anon_sym_starts_DASHwith2] = ACTIONS(2158), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2158), + [anon_sym_ends_DASHwith2] = ACTIONS(2158), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2158), + [anon_sym_EQ_EQ2] = ACTIONS(2158), + [anon_sym_BANG_EQ2] = ACTIONS(2158), + [anon_sym_LT2] = ACTIONS(2160), + [anon_sym_LT_EQ2] = ACTIONS(2158), + [anon_sym_GT_EQ2] = ACTIONS(2158), + [anon_sym_EQ_TILDE2] = ACTIONS(2158), + [anon_sym_BANG_TILDE2] = ACTIONS(2158), + [anon_sym_like2] = ACTIONS(2158), + [anon_sym_not_DASHlike2] = ACTIONS(2158), + [anon_sym_LPAREN2] = ACTIONS(2158), + [anon_sym_STAR_STAR2] = ACTIONS(2158), + [anon_sym_PLUS_PLUS2] = ACTIONS(2158), + [anon_sym_SLASH2] = ACTIONS(2160), + [anon_sym_mod2] = ACTIONS(2158), + [anon_sym_SLASH_SLASH2] = ACTIONS(2158), + [anon_sym_PLUS2] = ACTIONS(2160), + [anon_sym_bit_DASHshl2] = ACTIONS(2158), + [anon_sym_bit_DASHshr2] = ACTIONS(2158), + [anon_sym_bit_DASHand2] = ACTIONS(2158), + [anon_sym_bit_DASHxor2] = ACTIONS(2158), + [anon_sym_bit_DASHor2] = ACTIONS(2158), + [anon_sym_err_GT] = ACTIONS(2160), + [anon_sym_out_GT] = ACTIONS(2160), + [anon_sym_e_GT] = ACTIONS(2160), + [anon_sym_o_GT] = ACTIONS(2160), + [anon_sym_err_PLUSout_GT] = ACTIONS(2160), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2160), + [anon_sym_o_PLUSe_GT] = ACTIONS(2160), + [anon_sym_e_PLUSo_GT] = ACTIONS(2160), + [anon_sym_err_GT_GT] = ACTIONS(2158), + [anon_sym_out_GT_GT] = ACTIONS(2158), + [anon_sym_e_GT_GT] = ACTIONS(2158), + [anon_sym_o_GT_GT] = ACTIONS(2158), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2158), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2158), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2158), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2158), + [anon_sym_POUND] = ACTIONS(3), + }, + [702] = { + [sym_cmd_identifier] = STATE(4572), + [sym_expr_parenthesized] = STATE(5187), + [sym__spread_parenthesized] = STATE(4951), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(4791), + [sym_val_number] = STATE(5187), + [sym__val_number_decimal] = STATE(2013), + [sym__val_number] = STATE(705), + [sym_val_string] = STATE(5187), + [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(5187), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym__spread_record] = STATE(4951), + [sym_record_entry] = STATE(5073), + [sym__record_key] = STATE(5305), [sym_comment] = STATE(702), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(703)] = { - [sym__expr_parenthesized_immediate] = STATE(5069), + [aux_sym__match_pattern_record_body_repeat1] = STATE(702), + [anon_sym_export] = ACTIONS(2162), + [anon_sym_alias] = ACTIONS(2165), + [anon_sym_let] = ACTIONS(2165), + [anon_sym_mut] = ACTIONS(2165), + [anon_sym_const] = ACTIONS(2165), + [aux_sym_cmd_identifier_token1] = ACTIONS(2168), + [anon_sym_def] = ACTIONS(2165), + [anon_sym_use] = ACTIONS(2165), + [anon_sym_export_DASHenv] = ACTIONS(2165), + [anon_sym_extern] = ACTIONS(2165), + [anon_sym_module] = ACTIONS(2165), + [anon_sym_for] = ACTIONS(2165), + [anon_sym_loop] = ACTIONS(2165), + [anon_sym_while] = ACTIONS(2165), + [anon_sym_if] = ACTIONS(2165), + [anon_sym_else] = ACTIONS(2165), + [anon_sym_try] = ACTIONS(2165), + [anon_sym_catch] = ACTIONS(2165), + [anon_sym_finally] = ACTIONS(2165), + [anon_sym_match] = ACTIONS(2165), + [anon_sym_in] = ACTIONS(2162), + [anon_sym_true] = ACTIONS(2171), + [anon_sym_false] = ACTIONS(2171), + [anon_sym_null] = ACTIONS(2171), + [aux_sym_cmd_identifier_token3] = ACTIONS(2174), + [aux_sym_cmd_identifier_token4] = ACTIONS(2174), + [aux_sym_cmd_identifier_token5] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2177), + [anon_sym_DOLLAR] = ACTIONS(2180), + [anon_sym_DASH2] = ACTIONS(2183), + [anon_sym_PLUS2] = ACTIONS(2183), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2186), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2189), + [aux_sym__val_number_decimal_token1] = ACTIONS(2192), + [aux_sym__val_number_decimal_token2] = ACTIONS(2195), + [aux_sym__val_number_decimal_token3] = ACTIONS(2198), + [aux_sym__val_number_decimal_token4] = ACTIONS(2198), + [aux_sym__val_number_token1] = ACTIONS(2201), + [aux_sym__val_number_token2] = ACTIONS(2201), + [aux_sym__val_number_token3] = ACTIONS(2201), + [anon_sym_DQUOTE] = ACTIONS(2204), + [anon_sym_SQUOTE] = ACTIONS(2207), + [anon_sym_BQUOTE] = ACTIONS(2210), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2216), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2219), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2222), + }, + [703] = { + [sym__expr_parenthesized_immediate] = STATE(5101), [sym_comment] = STATE(703), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(704)] = { - [sym__expr_parenthesized_immediate] = STATE(5069), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [704] = { [sym_comment] = STATE(704), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(705)] = { - [sym__expr_parenthesized_immediate] = STATE(5069), + [anon_sym_in] = ACTIONS(1802), + [sym__newline] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1802), + [anon_sym_err_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_GT_PIPE] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), + [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_GT2] = ACTIONS(1804), + [anon_sym_DASH2] = ACTIONS(1802), + [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_STAR2] = ACTIONS(1804), + [anon_sym_and2] = ACTIONS(1802), + [anon_sym_xor2] = ACTIONS(1802), + [anon_sym_or2] = ACTIONS(1802), + [anon_sym_not_DASHin2] = ACTIONS(1802), + [anon_sym_has2] = ACTIONS(1802), + [anon_sym_not_DASHhas2] = ACTIONS(1802), + [anon_sym_starts_DASHwith2] = ACTIONS(1802), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), + [anon_sym_ends_DASHwith2] = ACTIONS(1802), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), + [anon_sym_EQ_EQ2] = ACTIONS(1802), + [anon_sym_BANG_EQ2] = ACTIONS(1802), + [anon_sym_LT2] = ACTIONS(1804), + [anon_sym_LT_EQ2] = ACTIONS(1802), + [anon_sym_GT_EQ2] = ACTIONS(1802), + [anon_sym_EQ_TILDE2] = ACTIONS(1802), + [anon_sym_BANG_TILDE2] = ACTIONS(1802), + [anon_sym_like2] = ACTIONS(1802), + [anon_sym_not_DASHlike2] = ACTIONS(1802), + [anon_sym_LPAREN2] = ACTIONS(1802), + [anon_sym_STAR_STAR2] = ACTIONS(1802), + [anon_sym_PLUS_PLUS2] = ACTIONS(1802), + [anon_sym_SLASH2] = ACTIONS(1804), + [anon_sym_mod2] = ACTIONS(1802), + [anon_sym_SLASH_SLASH2] = ACTIONS(1802), + [anon_sym_PLUS2] = ACTIONS(1804), + [anon_sym_bit_DASHshl2] = ACTIONS(1802), + [anon_sym_bit_DASHshr2] = ACTIONS(1802), + [anon_sym_bit_DASHand2] = ACTIONS(1802), + [anon_sym_bit_DASHxor2] = ACTIONS(1802), + [anon_sym_bit_DASHor2] = ACTIONS(1802), + [aux_sym__immediate_decimal_token1] = ACTIONS(2225), + [aux_sym__immediate_decimal_token5] = ACTIONS(2227), + [anon_sym_err_GT] = ACTIONS(1804), + [anon_sym_out_GT] = ACTIONS(1804), + [anon_sym_e_GT] = ACTIONS(1804), + [anon_sym_o_GT] = ACTIONS(1804), + [anon_sym_err_PLUSout_GT] = ACTIONS(1804), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), + [anon_sym_o_PLUSe_GT] = ACTIONS(1804), + [anon_sym_e_PLUSo_GT] = ACTIONS(1804), + [anon_sym_err_GT_GT] = ACTIONS(1802), + [anon_sym_out_GT_GT] = ACTIONS(1802), + [anon_sym_e_GT_GT] = ACTIONS(1802), + [anon_sym_o_GT_GT] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), + [sym__unquoted_pattern] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(3), + }, + [705] = { [sym_comment] = STATE(705), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(706)] = { - [sym__expr_parenthesized_immediate] = STATE(5069), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_in] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2229), + [anon_sym_PIPE] = ACTIONS(2229), + [anon_sym_err_GT_PIPE] = ACTIONS(2229), + [anon_sym_out_GT_PIPE] = ACTIONS(2229), + [anon_sym_e_GT_PIPE] = ACTIONS(2229), + [anon_sym_o_GT_PIPE] = ACTIONS(2229), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2229), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2229), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2229), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2229), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_GT2] = ACTIONS(2231), + [anon_sym_DASH2] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_EQ_GT] = ACTIONS(2229), + [anon_sym_STAR2] = ACTIONS(2231), + [anon_sym_and2] = ACTIONS(2229), + [anon_sym_xor2] = ACTIONS(2229), + [anon_sym_or2] = ACTIONS(2229), + [anon_sym_not_DASHin2] = ACTIONS(2229), + [anon_sym_has2] = ACTIONS(2229), + [anon_sym_not_DASHhas2] = ACTIONS(2229), + [anon_sym_starts_DASHwith2] = ACTIONS(2229), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2229), + [anon_sym_ends_DASHwith2] = ACTIONS(2229), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2229), + [anon_sym_EQ_EQ2] = ACTIONS(2229), + [anon_sym_BANG_EQ2] = ACTIONS(2229), + [anon_sym_LT2] = ACTIONS(2231), + [anon_sym_LT_EQ2] = ACTIONS(2229), + [anon_sym_GT_EQ2] = ACTIONS(2229), + [anon_sym_EQ_TILDE2] = ACTIONS(2229), + [anon_sym_BANG_TILDE2] = ACTIONS(2229), + [anon_sym_like2] = ACTIONS(2229), + [anon_sym_not_DASHlike2] = ACTIONS(2229), + [anon_sym_STAR_STAR2] = ACTIONS(2229), + [anon_sym_PLUS_PLUS2] = ACTIONS(2229), + [anon_sym_SLASH2] = ACTIONS(2231), + [anon_sym_mod2] = ACTIONS(2229), + [anon_sym_SLASH_SLASH2] = ACTIONS(2229), + [anon_sym_PLUS2] = ACTIONS(2231), + [anon_sym_bit_DASHshl2] = ACTIONS(2229), + [anon_sym_bit_DASHshr2] = ACTIONS(2229), + [anon_sym_bit_DASHand2] = ACTIONS(2229), + [anon_sym_bit_DASHxor2] = ACTIONS(2229), + [anon_sym_bit_DASHor2] = ACTIONS(2229), + [anon_sym_COLON2] = ACTIONS(2229), + [anon_sym_err_GT] = ACTIONS(2231), + [anon_sym_out_GT] = ACTIONS(2231), + [anon_sym_e_GT] = ACTIONS(2231), + [anon_sym_o_GT] = ACTIONS(2231), + [anon_sym_err_PLUSout_GT] = ACTIONS(2231), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2231), + [anon_sym_o_PLUSe_GT] = ACTIONS(2231), + [anon_sym_e_PLUSo_GT] = ACTIONS(2231), + [anon_sym_err_GT_GT] = ACTIONS(2229), + [anon_sym_out_GT_GT] = ACTIONS(2229), + [anon_sym_e_GT_GT] = ACTIONS(2229), + [anon_sym_o_GT_GT] = ACTIONS(2229), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2229), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2229), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2229), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(3), + }, + [706] = { [sym_comment] = STATE(706), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(707)] = { - [sym__expr_parenthesized_immediate] = STATE(5069), + [anon_sym_in] = ACTIONS(2233), + [sym__newline] = ACTIONS(2235), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_PIPE] = ACTIONS(2235), + [anon_sym_err_GT_PIPE] = ACTIONS(2235), + [anon_sym_out_GT_PIPE] = ACTIONS(2235), + [anon_sym_e_GT_PIPE] = ACTIONS(2235), + [anon_sym_o_GT_PIPE] = ACTIONS(2235), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2235), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2235), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2235), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2235), + [anon_sym_RPAREN] = ACTIONS(2235), + [anon_sym_GT2] = ACTIONS(2237), + [anon_sym_DASH2] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_STAR2] = ACTIONS(2237), + [anon_sym_and2] = ACTIONS(2233), + [anon_sym_xor2] = ACTIONS(2233), + [anon_sym_or2] = ACTIONS(2233), + [anon_sym_not_DASHin2] = ACTIONS(2233), + [anon_sym_has2] = ACTIONS(2233), + [anon_sym_not_DASHhas2] = ACTIONS(2233), + [anon_sym_starts_DASHwith2] = ACTIONS(2233), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2233), + [anon_sym_ends_DASHwith2] = ACTIONS(2233), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2233), + [anon_sym_EQ_EQ2] = ACTIONS(2233), + [anon_sym_BANG_EQ2] = ACTIONS(2233), + [anon_sym_LT2] = ACTIONS(2237), + [anon_sym_LT_EQ2] = ACTIONS(2233), + [anon_sym_GT_EQ2] = ACTIONS(2233), + [anon_sym_EQ_TILDE2] = ACTIONS(2233), + [anon_sym_BANG_TILDE2] = ACTIONS(2233), + [anon_sym_like2] = ACTIONS(2233), + [anon_sym_not_DASHlike2] = ACTIONS(2233), + [anon_sym_STAR_STAR2] = ACTIONS(2233), + [anon_sym_PLUS_PLUS2] = ACTIONS(2233), + [anon_sym_SLASH2] = ACTIONS(2237), + [anon_sym_mod2] = ACTIONS(2233), + [anon_sym_SLASH_SLASH2] = ACTIONS(2233), + [anon_sym_PLUS2] = ACTIONS(2237), + [anon_sym_bit_DASHshl2] = ACTIONS(2233), + [anon_sym_bit_DASHshr2] = ACTIONS(2233), + [anon_sym_bit_DASHand2] = ACTIONS(2233), + [anon_sym_bit_DASHxor2] = ACTIONS(2233), + [anon_sym_bit_DASHor2] = ACTIONS(2233), + [anon_sym_DOT_DOT2] = ACTIONS(1614), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1616), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1616), + [anon_sym_err_GT] = ACTIONS(2239), + [anon_sym_out_GT] = ACTIONS(2239), + [anon_sym_e_GT] = ACTIONS(2239), + [anon_sym_o_GT] = ACTIONS(2239), + [anon_sym_err_PLUSout_GT] = ACTIONS(2239), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2239), + [anon_sym_o_PLUSe_GT] = ACTIONS(2239), + [anon_sym_e_PLUSo_GT] = ACTIONS(2239), + [anon_sym_err_GT_GT] = ACTIONS(2235), + [anon_sym_out_GT_GT] = ACTIONS(2235), + [anon_sym_e_GT_GT] = ACTIONS(2235), + [anon_sym_o_GT_GT] = ACTIONS(2235), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2235), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2235), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2235), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2235), + [anon_sym_POUND] = ACTIONS(3), + }, + [707] = { + [sym__expr_parenthesized_immediate] = STATE(5101), [sym_comment] = STATE(707), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(708)] = { + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [708] = { + [sym__expr_parenthesized_immediate] = STATE(5101), [sym_comment] = STATE(708), [anon_sym_in] = ACTIONS(2154), [sym__newline] = ACTIONS(2154), @@ -103280,6 +103229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(2154), [anon_sym_LBRACE] = ACTIONS(2154), [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), [anon_sym_STAR2] = ACTIONS(2156), [anon_sym_and2] = ACTIONS(2154), [anon_sym_xor2] = ACTIONS(2154), @@ -103300,6 +103250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2154), [anon_sym_like2] = ACTIONS(2154), [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1830), [anon_sym_STAR_STAR2] = ACTIONS(2154), [anon_sym_PLUS_PLUS2] = ACTIONS(2154), [anon_sym_SLASH2] = ACTIONS(2156), @@ -103311,9 +103262,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2154), [anon_sym_bit_DASHxor2] = ACTIONS(2154), [anon_sym_bit_DASHor2] = ACTIONS(2154), - [anon_sym_DOT_DOT2] = ACTIONS(2158), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2160), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2160), [anon_sym_err_GT] = ACTIONS(2156), [anon_sym_out_GT] = ACTIONS(2156), [anon_sym_e_GT] = ACTIONS(2156), @@ -103332,932 +103280,649 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(709)] = { + [709] = { [sym_comment] = STATE(709), - [anon_sym_in] = ACTIONS(1788), - [sym__newline] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_PIPE] = ACTIONS(1788), - [anon_sym_err_GT_PIPE] = ACTIONS(1788), - [anon_sym_out_GT_PIPE] = ACTIONS(1788), - [anon_sym_e_GT_PIPE] = ACTIONS(1788), - [anon_sym_o_GT_PIPE] = ACTIONS(1788), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), - [anon_sym_RPAREN] = ACTIONS(1788), - [anon_sym_GT2] = ACTIONS(1790), - [anon_sym_DASH2] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1788), - [anon_sym_STAR2] = ACTIONS(1790), - [anon_sym_and2] = ACTIONS(1788), - [anon_sym_xor2] = ACTIONS(1788), - [anon_sym_or2] = ACTIONS(1788), - [anon_sym_not_DASHin2] = ACTIONS(1788), - [anon_sym_has2] = ACTIONS(1788), - [anon_sym_not_DASHhas2] = ACTIONS(1788), - [anon_sym_starts_DASHwith2] = ACTIONS(1788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1788), - [anon_sym_ends_DASHwith2] = ACTIONS(1788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1788), - [anon_sym_EQ_EQ2] = ACTIONS(1788), - [anon_sym_BANG_EQ2] = ACTIONS(1788), - [anon_sym_LT2] = ACTIONS(1790), - [anon_sym_LT_EQ2] = ACTIONS(1788), - [anon_sym_GT_EQ2] = ACTIONS(1788), - [anon_sym_EQ_TILDE2] = ACTIONS(1788), - [anon_sym_BANG_TILDE2] = ACTIONS(1788), - [anon_sym_like2] = ACTIONS(1788), - [anon_sym_not_DASHlike2] = ACTIONS(1788), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_STAR_STAR2] = ACTIONS(1788), - [anon_sym_PLUS_PLUS2] = ACTIONS(1788), - [anon_sym_SLASH2] = ACTIONS(1790), - [anon_sym_mod2] = ACTIONS(1788), - [anon_sym_SLASH_SLASH2] = ACTIONS(1788), - [anon_sym_PLUS2] = ACTIONS(1790), - [anon_sym_bit_DASHshl2] = ACTIONS(1788), - [anon_sym_bit_DASHshr2] = ACTIONS(1788), - [anon_sym_bit_DASHand2] = ACTIONS(1788), - [anon_sym_bit_DASHxor2] = ACTIONS(1788), - [anon_sym_bit_DASHor2] = ACTIONS(1788), - [anon_sym_DOT] = ACTIONS(2162), - [aux_sym__immediate_decimal_token5] = ACTIONS(2164), - [anon_sym_err_GT] = ACTIONS(1790), - [anon_sym_out_GT] = ACTIONS(1790), - [anon_sym_e_GT] = ACTIONS(1790), - [anon_sym_o_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT] = ACTIONS(1790), - [anon_sym_err_GT_GT] = ACTIONS(1788), - [anon_sym_out_GT_GT] = ACTIONS(1788), - [anon_sym_e_GT_GT] = ACTIONS(1788), - [anon_sym_o_GT_GT] = ACTIONS(1788), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1788), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1788), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1788), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1788), - [sym__unquoted_pattern] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(710)] = { - [sym__expr_parenthesized_immediate] = STATE(5069), + [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_LBRACK2] = ACTIONS(2245), + [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), + }, + [710] = { [sym_comment] = STATE(710), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(711)] = { - [sym__expr_parenthesized_immediate] = STATE(5069), + [anon_sym_if] = ACTIONS(910), + [anon_sym_in] = ACTIONS(910), + [sym__newline] = ACTIONS(910), + [anon_sym_SEMI] = ACTIONS(910), + [anon_sym_PIPE] = ACTIONS(910), + [anon_sym_err_GT_PIPE] = ACTIONS(910), + [anon_sym_out_GT_PIPE] = ACTIONS(910), + [anon_sym_e_GT_PIPE] = ACTIONS(910), + [anon_sym_o_GT_PIPE] = ACTIONS(910), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(910), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(910), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(910), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(910), + [anon_sym_RPAREN] = ACTIONS(910), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_RBRACE] = ACTIONS(910), + [anon_sym_EQ_GT] = ACTIONS(910), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(910), + [anon_sym_xor2] = ACTIONS(910), + [anon_sym_or2] = ACTIONS(910), + [anon_sym_not_DASHin2] = ACTIONS(910), + [anon_sym_has2] = ACTIONS(910), + [anon_sym_not_DASHhas2] = ACTIONS(910), + [anon_sym_starts_DASHwith2] = ACTIONS(910), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(910), + [anon_sym_ends_DASHwith2] = ACTIONS(910), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(910), + [anon_sym_EQ_EQ2] = ACTIONS(910), + [anon_sym_BANG_EQ2] = ACTIONS(910), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(910), + [anon_sym_GT_EQ2] = ACTIONS(910), + [anon_sym_EQ_TILDE2] = ACTIONS(910), + [anon_sym_BANG_TILDE2] = ACTIONS(910), + [anon_sym_like2] = ACTIONS(910), + [anon_sym_not_DASHlike2] = ACTIONS(910), + [anon_sym_STAR_STAR2] = ACTIONS(910), + [anon_sym_PLUS_PLUS2] = ACTIONS(910), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(910), + [anon_sym_SLASH_SLASH2] = ACTIONS(910), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(910), + [anon_sym_bit_DASHshr2] = ACTIONS(910), + [anon_sym_bit_DASHand2] = ACTIONS(910), + [anon_sym_bit_DASHxor2] = ACTIONS(910), + [anon_sym_bit_DASHor2] = ACTIONS(910), + [anon_sym_COLON2] = ACTIONS(910), + [anon_sym_err_GT] = ACTIONS(811), + [anon_sym_out_GT] = ACTIONS(811), + [anon_sym_e_GT] = ACTIONS(811), + [anon_sym_o_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT] = ACTIONS(811), + [anon_sym_err_GT_GT] = ACTIONS(910), + [anon_sym_out_GT_GT] = ACTIONS(910), + [anon_sym_e_GT_GT] = ACTIONS(910), + [anon_sym_o_GT_GT] = ACTIONS(910), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(910), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(910), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(910), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(910), + [anon_sym_POUND] = ACTIONS(3), + }, + [711] = { + [sym__expr_parenthesized_immediate] = STATE(5101), [sym_comment] = STATE(711), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(712)] = { - [sym__expr_parenthesized_immediate] = STATE(5069), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [712] = { [sym_comment] = STATE(712), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(713)] = { - [sym__expr_parenthesized_immediate] = STATE(5069), + [ts_builtin_sym_end] = ACTIONS(1586), + [anon_sym_in] = ACTIONS(1586), + [sym__newline] = ACTIONS(1586), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_PIPE] = ACTIONS(1586), + [anon_sym_err_GT_PIPE] = ACTIONS(1586), + [anon_sym_out_GT_PIPE] = ACTIONS(1586), + [anon_sym_e_GT_PIPE] = ACTIONS(1586), + [anon_sym_o_GT_PIPE] = ACTIONS(1586), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1586), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1586), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1586), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1586), + [anon_sym_COLON] = ACTIONS(1586), + [anon_sym_GT2] = ACTIONS(1584), + [anon_sym_DASH2] = ACTIONS(1586), + [anon_sym_STAR2] = ACTIONS(1584), + [anon_sym_and2] = ACTIONS(1586), + [anon_sym_xor2] = ACTIONS(1586), + [anon_sym_or2] = ACTIONS(1586), + [anon_sym_not_DASHin2] = ACTIONS(1586), + [anon_sym_has2] = ACTIONS(1586), + [anon_sym_not_DASHhas2] = ACTIONS(1586), + [anon_sym_starts_DASHwith2] = ACTIONS(1586), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1586), + [anon_sym_ends_DASHwith2] = ACTIONS(1586), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1586), + [anon_sym_EQ_EQ2] = ACTIONS(1586), + [anon_sym_BANG_EQ2] = ACTIONS(1586), + [anon_sym_LT2] = ACTIONS(1584), + [anon_sym_LT_EQ2] = ACTIONS(1586), + [anon_sym_GT_EQ2] = ACTIONS(1586), + [anon_sym_EQ_TILDE2] = ACTIONS(1586), + [anon_sym_BANG_TILDE2] = ACTIONS(1586), + [anon_sym_like2] = ACTIONS(1586), + [anon_sym_not_DASHlike2] = ACTIONS(1586), + [anon_sym_STAR_STAR2] = ACTIONS(1586), + [anon_sym_PLUS_PLUS2] = ACTIONS(1586), + [anon_sym_SLASH2] = ACTIONS(1584), + [anon_sym_mod2] = ACTIONS(1586), + [anon_sym_SLASH_SLASH2] = ACTIONS(1586), + [anon_sym_PLUS2] = ACTIONS(1584), + [anon_sym_bit_DASHshl2] = ACTIONS(1586), + [anon_sym_bit_DASHshr2] = ACTIONS(1586), + [anon_sym_bit_DASHand2] = ACTIONS(1586), + [anon_sym_bit_DASHxor2] = ACTIONS(1586), + [anon_sym_bit_DASHor2] = ACTIONS(1586), + [anon_sym_DOT_DOT2] = ACTIONS(1584), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1586), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1586), + [anon_sym_DOT2] = ACTIONS(1584), + [anon_sym_err_GT] = ACTIONS(1584), + [anon_sym_out_GT] = ACTIONS(1584), + [anon_sym_e_GT] = ACTIONS(1584), + [anon_sym_o_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT] = ACTIONS(1584), + [anon_sym_err_GT_GT] = ACTIONS(1586), + [anon_sym_out_GT_GT] = ACTIONS(1586), + [anon_sym_e_GT_GT] = ACTIONS(1586), + [anon_sym_o_GT_GT] = ACTIONS(1586), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1586), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1586), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1586), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(3), + }, + [713] = { [sym_comment] = STATE(713), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(714)] = { - [sym__expr_parenthesized_immediate] = STATE(5069), + [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_COLON] = 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(1536), + [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), + }, + [714] = { + [sym__expr_parenthesized_immediate] = STATE(5101), [sym_comment] = STATE(714), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(715)] = { + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [715] = { [sym_comment] = STATE(715), - [anon_sym_in] = ACTIONS(2166), - [sym__newline] = ACTIONS(2166), - [anon_sym_SEMI] = ACTIONS(2166), - [anon_sym_PIPE] = ACTIONS(2166), - [anon_sym_err_GT_PIPE] = ACTIONS(2166), - [anon_sym_out_GT_PIPE] = ACTIONS(2166), - [anon_sym_e_GT_PIPE] = ACTIONS(2166), - [anon_sym_o_GT_PIPE] = ACTIONS(2166), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2166), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2166), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2166), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2166), - [anon_sym_RPAREN] = ACTIONS(2166), - [anon_sym_GT2] = ACTIONS(2168), - [anon_sym_DASH2] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(2166), - [anon_sym_RBRACE] = ACTIONS(2166), - [anon_sym_STAR2] = ACTIONS(2168), - [anon_sym_and2] = ACTIONS(2166), - [anon_sym_xor2] = ACTIONS(2166), - [anon_sym_or2] = ACTIONS(2166), - [anon_sym_not_DASHin2] = ACTIONS(2166), - [anon_sym_has2] = ACTIONS(2166), - [anon_sym_not_DASHhas2] = ACTIONS(2166), - [anon_sym_starts_DASHwith2] = ACTIONS(2166), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2166), - [anon_sym_ends_DASHwith2] = ACTIONS(2166), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2166), - [anon_sym_EQ_EQ2] = ACTIONS(2166), - [anon_sym_BANG_EQ2] = ACTIONS(2166), - [anon_sym_LT2] = ACTIONS(2168), - [anon_sym_LT_EQ2] = ACTIONS(2166), - [anon_sym_GT_EQ2] = ACTIONS(2166), - [anon_sym_EQ_TILDE2] = ACTIONS(2166), - [anon_sym_BANG_TILDE2] = ACTIONS(2166), - [anon_sym_like2] = ACTIONS(2166), - [anon_sym_not_DASHlike2] = ACTIONS(2166), - [anon_sym_STAR_STAR2] = ACTIONS(2166), - [anon_sym_PLUS_PLUS2] = ACTIONS(2166), - [anon_sym_SLASH2] = ACTIONS(2168), - [anon_sym_mod2] = ACTIONS(2166), - [anon_sym_SLASH_SLASH2] = ACTIONS(2166), - [anon_sym_PLUS2] = ACTIONS(2168), - [anon_sym_bit_DASHshl2] = ACTIONS(2166), - [anon_sym_bit_DASHshr2] = ACTIONS(2166), - [anon_sym_bit_DASHand2] = ACTIONS(2166), - [anon_sym_bit_DASHxor2] = ACTIONS(2166), - [anon_sym_bit_DASHor2] = ACTIONS(2166), - [anon_sym_DOT_DOT2] = ACTIONS(2170), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2172), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2172), - [anon_sym_err_GT] = ACTIONS(2168), - [anon_sym_out_GT] = ACTIONS(2168), - [anon_sym_e_GT] = ACTIONS(2168), - [anon_sym_o_GT] = ACTIONS(2168), - [anon_sym_err_PLUSout_GT] = ACTIONS(2168), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2168), - [anon_sym_o_PLUSe_GT] = ACTIONS(2168), - [anon_sym_e_PLUSo_GT] = ACTIONS(2168), - [anon_sym_err_GT_GT] = ACTIONS(2166), - [anon_sym_out_GT_GT] = ACTIONS(2166), - [anon_sym_e_GT_GT] = ACTIONS(2166), - [anon_sym_o_GT_GT] = ACTIONS(2166), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2166), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2166), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2166), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2166), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(716)] = { + [anon_sym_if] = ACTIONS(2247), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_RBRACE] = ACTIONS(2247), + [anon_sym_EQ_GT] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), + [anon_sym_POUND] = ACTIONS(3), + }, + [716] = { [sym_comment] = STATE(716), - [anon_sym_in] = ACTIONS(2174), - [sym__newline] = ACTIONS(2174), - [anon_sym_SEMI] = ACTIONS(2174), - [anon_sym_PIPE] = ACTIONS(2174), - [anon_sym_err_GT_PIPE] = ACTIONS(2174), - [anon_sym_out_GT_PIPE] = ACTIONS(2174), - [anon_sym_e_GT_PIPE] = ACTIONS(2174), - [anon_sym_o_GT_PIPE] = ACTIONS(2174), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2174), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2174), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2174), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2174), - [anon_sym_RPAREN] = ACTIONS(2174), - [anon_sym_GT2] = ACTIONS(2176), - [anon_sym_DASH2] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2174), - [anon_sym_RBRACE] = ACTIONS(2174), - [anon_sym_STAR2] = ACTIONS(2176), - [anon_sym_and2] = ACTIONS(2174), - [anon_sym_xor2] = ACTIONS(2174), - [anon_sym_or2] = ACTIONS(2174), - [anon_sym_not_DASHin2] = ACTIONS(2174), - [anon_sym_has2] = ACTIONS(2174), - [anon_sym_not_DASHhas2] = ACTIONS(2174), - [anon_sym_starts_DASHwith2] = ACTIONS(2174), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2174), - [anon_sym_ends_DASHwith2] = ACTIONS(2174), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2174), - [anon_sym_EQ_EQ2] = ACTIONS(2174), - [anon_sym_BANG_EQ2] = ACTIONS(2174), - [anon_sym_LT2] = ACTIONS(2176), - [anon_sym_LT_EQ2] = ACTIONS(2174), - [anon_sym_GT_EQ2] = ACTIONS(2174), - [anon_sym_EQ_TILDE2] = ACTIONS(2174), - [anon_sym_BANG_TILDE2] = ACTIONS(2174), - [anon_sym_like2] = ACTIONS(2174), - [anon_sym_not_DASHlike2] = ACTIONS(2174), - [anon_sym_STAR_STAR2] = ACTIONS(2174), - [anon_sym_PLUS_PLUS2] = ACTIONS(2174), - [anon_sym_SLASH2] = ACTIONS(2176), - [anon_sym_mod2] = ACTIONS(2174), - [anon_sym_SLASH_SLASH2] = ACTIONS(2174), - [anon_sym_PLUS2] = ACTIONS(2176), - [anon_sym_bit_DASHshl2] = ACTIONS(2174), - [anon_sym_bit_DASHshr2] = ACTIONS(2174), - [anon_sym_bit_DASHand2] = ACTIONS(2174), - [anon_sym_bit_DASHxor2] = ACTIONS(2174), - [anon_sym_bit_DASHor2] = ACTIONS(2174), - [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(2176), - [anon_sym_out_GT] = ACTIONS(2176), - [anon_sym_e_GT] = ACTIONS(2176), - [anon_sym_o_GT] = ACTIONS(2176), - [anon_sym_err_PLUSout_GT] = ACTIONS(2176), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2176), - [anon_sym_o_PLUSe_GT] = ACTIONS(2176), - [anon_sym_e_PLUSo_GT] = ACTIONS(2176), - [anon_sym_err_GT_GT] = ACTIONS(2174), - [anon_sym_out_GT_GT] = ACTIONS(2174), - [anon_sym_e_GT_GT] = ACTIONS(2174), - [anon_sym_o_GT_GT] = ACTIONS(2174), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2174), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2174), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2174), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2174), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(717)] = { + [anon_sym_in] = ACTIONS(2251), + [sym__newline] = ACTIONS(2251), + [anon_sym_SEMI] = ACTIONS(2251), + [anon_sym_PIPE] = ACTIONS(2251), + [anon_sym_err_GT_PIPE] = ACTIONS(2251), + [anon_sym_out_GT_PIPE] = ACTIONS(2251), + [anon_sym_e_GT_PIPE] = ACTIONS(2251), + [anon_sym_o_GT_PIPE] = ACTIONS(2251), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2251), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2251), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2251), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2251), + [anon_sym_RPAREN] = ACTIONS(2251), + [anon_sym_GT2] = ACTIONS(2253), + [anon_sym_DASH2] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(2251), + [anon_sym_RBRACE] = ACTIONS(2251), + [anon_sym_STAR2] = ACTIONS(2253), + [anon_sym_and2] = ACTIONS(2251), + [anon_sym_xor2] = ACTIONS(2251), + [anon_sym_or2] = ACTIONS(2251), + [anon_sym_not_DASHin2] = ACTIONS(2251), + [anon_sym_has2] = ACTIONS(2251), + [anon_sym_not_DASHhas2] = ACTIONS(2251), + [anon_sym_starts_DASHwith2] = ACTIONS(2251), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2251), + [anon_sym_ends_DASHwith2] = ACTIONS(2251), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2251), + [anon_sym_EQ_EQ2] = ACTIONS(2251), + [anon_sym_BANG_EQ2] = ACTIONS(2251), + [anon_sym_LT2] = ACTIONS(2253), + [anon_sym_LT_EQ2] = ACTIONS(2251), + [anon_sym_GT_EQ2] = ACTIONS(2251), + [anon_sym_EQ_TILDE2] = ACTIONS(2251), + [anon_sym_BANG_TILDE2] = ACTIONS(2251), + [anon_sym_like2] = ACTIONS(2251), + [anon_sym_not_DASHlike2] = ACTIONS(2251), + [anon_sym_STAR_STAR2] = ACTIONS(2251), + [anon_sym_PLUS_PLUS2] = ACTIONS(2251), + [anon_sym_SLASH2] = ACTIONS(2253), + [anon_sym_mod2] = ACTIONS(2251), + [anon_sym_SLASH_SLASH2] = ACTIONS(2251), + [anon_sym_PLUS2] = ACTIONS(2253), + [anon_sym_bit_DASHshl2] = ACTIONS(2251), + [anon_sym_bit_DASHshr2] = ACTIONS(2251), + [anon_sym_bit_DASHand2] = ACTIONS(2251), + [anon_sym_bit_DASHxor2] = ACTIONS(2251), + [anon_sym_bit_DASHor2] = ACTIONS(2251), + [anon_sym_DOT_DOT2] = ACTIONS(2255), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2257), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2257), + [anon_sym_err_GT] = ACTIONS(2253), + [anon_sym_out_GT] = ACTIONS(2253), + [anon_sym_e_GT] = ACTIONS(2253), + [anon_sym_o_GT] = ACTIONS(2253), + [anon_sym_err_PLUSout_GT] = ACTIONS(2253), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2253), + [anon_sym_o_PLUSe_GT] = ACTIONS(2253), + [anon_sym_e_PLUSo_GT] = ACTIONS(2253), + [anon_sym_err_GT_GT] = ACTIONS(2251), + [anon_sym_out_GT_GT] = ACTIONS(2251), + [anon_sym_e_GT_GT] = ACTIONS(2251), + [anon_sym_o_GT_GT] = ACTIONS(2251), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2251), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2251), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2251), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2251), + [anon_sym_POUND] = ACTIONS(3), + }, + [717] = { + [aux_sym__repeat_newline] = STATE(732), [sym_comment] = STATE(717), - [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(2182), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2184), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2184), - [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_POUND] = ACTIONS(3), - }, - [STATE(718)] = { + [anon_sym_export] = ACTIONS(2259), + [anon_sym_alias] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_mut] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [aux_sym_cmd_identifier_token1] = ACTIONS(2259), + [anon_sym_def] = ACTIONS(2261), + [anon_sym_use] = ACTIONS(2261), + [anon_sym_export_DASHenv] = ACTIONS(2261), + [anon_sym_extern] = ACTIONS(2261), + [anon_sym_module] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_loop] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_catch] = ACTIONS(2261), + [anon_sym_finally] = ACTIONS(2261), + [anon_sym_match] = ACTIONS(2261), + [anon_sym_in] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(2261), + [anon_sym_false] = ACTIONS(2261), + [anon_sym_null] = ACTIONS(2261), + [aux_sym_cmd_identifier_token3] = ACTIONS(2261), + [aux_sym_cmd_identifier_token4] = ACTIONS(2261), + [aux_sym_cmd_identifier_token5] = ACTIONS(2261), + [sym__newline] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_DOLLAR] = ACTIONS(2259), + [anon_sym_DASH2] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2261), + [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_where] = ACTIONS(2261), + [aux_sym_expr_unary_token1] = ACTIONS(2261), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2261), + [anon_sym_DOT_DOT_LT] = ACTIONS(2261), + [aux_sym__val_number_decimal_token1] = ACTIONS(2259), + [aux_sym__val_number_decimal_token2] = ACTIONS(2261), + [aux_sym__val_number_decimal_token3] = ACTIONS(2261), + [aux_sym__val_number_decimal_token4] = ACTIONS(2261), + [aux_sym__val_number_token1] = ACTIONS(2261), + [aux_sym__val_number_token2] = ACTIONS(2261), + [aux_sym__val_number_token3] = ACTIONS(2261), + [anon_sym_0b] = ACTIONS(2259), + [anon_sym_0o] = ACTIONS(2259), + [anon_sym_0x] = ACTIONS(2259), + [sym_val_date] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2261), + [anon_sym_SQUOTE] = ACTIONS(2261), + [anon_sym_BQUOTE] = ACTIONS(2261), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2261), + [anon_sym_CARET] = ACTIONS(2261), + [anon_sym_PERCENT] = ACTIONS(2261), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2261), + }, + [718] = { + [sym__expr_parenthesized_immediate] = STATE(5375), [sym_comment] = STATE(718), - [anon_sym_in] = ACTIONS(2186), - [sym__newline] = ACTIONS(2186), - [anon_sym_SEMI] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(2186), - [anon_sym_err_GT_PIPE] = ACTIONS(2186), - [anon_sym_out_GT_PIPE] = ACTIONS(2186), - [anon_sym_e_GT_PIPE] = ACTIONS(2186), - [anon_sym_o_GT_PIPE] = ACTIONS(2186), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2186), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2186), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2186), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_GT2] = ACTIONS(2188), - [anon_sym_DASH2] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_RBRACE] = ACTIONS(2186), - [anon_sym_STAR2] = ACTIONS(2188), - [anon_sym_and2] = ACTIONS(2186), - [anon_sym_xor2] = ACTIONS(2186), - [anon_sym_or2] = ACTIONS(2186), - [anon_sym_not_DASHin2] = ACTIONS(2186), - [anon_sym_has2] = ACTIONS(2186), - [anon_sym_not_DASHhas2] = ACTIONS(2186), - [anon_sym_starts_DASHwith2] = ACTIONS(2186), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2186), - [anon_sym_ends_DASHwith2] = ACTIONS(2186), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2186), - [anon_sym_EQ_EQ2] = ACTIONS(2186), - [anon_sym_BANG_EQ2] = ACTIONS(2186), - [anon_sym_LT2] = ACTIONS(2188), - [anon_sym_LT_EQ2] = ACTIONS(2186), - [anon_sym_GT_EQ2] = ACTIONS(2186), - [anon_sym_EQ_TILDE2] = ACTIONS(2186), - [anon_sym_BANG_TILDE2] = ACTIONS(2186), - [anon_sym_like2] = ACTIONS(2186), - [anon_sym_not_DASHlike2] = ACTIONS(2186), - [anon_sym_STAR_STAR2] = ACTIONS(2186), - [anon_sym_PLUS_PLUS2] = ACTIONS(2186), - [anon_sym_SLASH2] = ACTIONS(2188), - [anon_sym_mod2] = ACTIONS(2186), - [anon_sym_SLASH_SLASH2] = ACTIONS(2186), - [anon_sym_PLUS2] = ACTIONS(2188), - [anon_sym_bit_DASHshl2] = ACTIONS(2186), - [anon_sym_bit_DASHshr2] = ACTIONS(2186), - [anon_sym_bit_DASHand2] = ACTIONS(2186), - [anon_sym_bit_DASHxor2] = ACTIONS(2186), - [anon_sym_bit_DASHor2] = ACTIONS(2186), - [anon_sym_DOT_DOT2] = ACTIONS(2190), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2192), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2192), - [anon_sym_err_GT] = ACTIONS(2188), - [anon_sym_out_GT] = ACTIONS(2188), - [anon_sym_e_GT] = ACTIONS(2188), - [anon_sym_o_GT] = ACTIONS(2188), - [anon_sym_err_PLUSout_GT] = ACTIONS(2188), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2188), - [anon_sym_o_PLUSe_GT] = ACTIONS(2188), - [anon_sym_e_PLUSo_GT] = ACTIONS(2188), - [anon_sym_err_GT_GT] = ACTIONS(2186), - [anon_sym_out_GT_GT] = ACTIONS(2186), - [anon_sym_e_GT_GT] = ACTIONS(2186), - [anon_sym_o_GT_GT] = ACTIONS(2186), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2186), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2186), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2186), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2186), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(719)] = { - [sym_comment] = STATE(719), - [anon_sym_in] = ACTIONS(2114), - [sym__newline] = ACTIONS(2114), - [anon_sym_SEMI] = ACTIONS(2114), - [anon_sym_PIPE] = ACTIONS(2114), - [anon_sym_err_GT_PIPE] = ACTIONS(2114), - [anon_sym_out_GT_PIPE] = ACTIONS(2114), - [anon_sym_e_GT_PIPE] = ACTIONS(2114), - [anon_sym_o_GT_PIPE] = ACTIONS(2114), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2114), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2114), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2114), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2114), - [anon_sym_RPAREN] = ACTIONS(2114), - [anon_sym_GT2] = ACTIONS(2116), - [anon_sym_DASH2] = ACTIONS(2114), - [anon_sym_LBRACE] = ACTIONS(2114), - [anon_sym_RBRACE] = ACTIONS(2114), - [anon_sym_STAR2] = ACTIONS(2116), - [anon_sym_and2] = ACTIONS(2114), - [anon_sym_xor2] = ACTIONS(2114), - [anon_sym_or2] = ACTIONS(2114), - [anon_sym_not_DASHin2] = ACTIONS(2114), - [anon_sym_has2] = ACTIONS(2114), - [anon_sym_not_DASHhas2] = ACTIONS(2114), - [anon_sym_starts_DASHwith2] = ACTIONS(2114), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2114), - [anon_sym_ends_DASHwith2] = ACTIONS(2114), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2114), - [anon_sym_EQ_EQ2] = ACTIONS(2114), - [anon_sym_BANG_EQ2] = ACTIONS(2114), - [anon_sym_LT2] = ACTIONS(2116), - [anon_sym_LT_EQ2] = ACTIONS(2114), - [anon_sym_GT_EQ2] = ACTIONS(2114), - [anon_sym_EQ_TILDE2] = ACTIONS(2114), - [anon_sym_BANG_TILDE2] = ACTIONS(2114), - [anon_sym_like2] = ACTIONS(2114), - [anon_sym_not_DASHlike2] = ACTIONS(2114), - [anon_sym_STAR_STAR2] = ACTIONS(2114), - [anon_sym_PLUS_PLUS2] = ACTIONS(2114), - [anon_sym_SLASH2] = ACTIONS(2116), - [anon_sym_mod2] = ACTIONS(2114), - [anon_sym_SLASH_SLASH2] = ACTIONS(2114), - [anon_sym_PLUS2] = ACTIONS(2116), - [anon_sym_bit_DASHshl2] = ACTIONS(2114), - [anon_sym_bit_DASHshr2] = ACTIONS(2114), - [anon_sym_bit_DASHand2] = ACTIONS(2114), - [anon_sym_bit_DASHxor2] = ACTIONS(2114), - [anon_sym_bit_DASHor2] = ACTIONS(2114), - [anon_sym_DOT_DOT2] = ACTIONS(2194), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2196), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2196), - [anon_sym_err_GT] = ACTIONS(2116), - [anon_sym_out_GT] = ACTIONS(2116), - [anon_sym_e_GT] = ACTIONS(2116), - [anon_sym_o_GT] = ACTIONS(2116), - [anon_sym_err_PLUSout_GT] = ACTIONS(2116), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2116), - [anon_sym_o_PLUSe_GT] = ACTIONS(2116), - [anon_sym_e_PLUSo_GT] = ACTIONS(2116), - [anon_sym_err_GT_GT] = ACTIONS(2114), - [anon_sym_out_GT_GT] = ACTIONS(2114), - [anon_sym_e_GT_GT] = ACTIONS(2114), - [anon_sym_o_GT_GT] = ACTIONS(2114), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2114), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2114), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2114), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2114), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(720)] = { - [sym_cmd_identifier] = STATE(4664), - [sym_expr_parenthesized] = STATE(5503), - [sym__spread_parenthesized] = STATE(4962), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(5503), - [sym_val_number] = STATE(5503), - [sym__val_number_decimal] = STATE(2000), - [sym__val_number] = STATE(726), - [sym_val_string] = STATE(5503), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_interpolated] = STATE(5503), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym__spread_record] = STATE(4962), - [sym_record_entry] = STATE(5008), - [sym__record_key] = STATE(5380), - [sym_comment] = STATE(720), - [aux_sym_record_body_repeat1] = STATE(720), - [anon_sym_export] = ACTIONS(2198), - [anon_sym_alias] = ACTIONS(2201), - [anon_sym_let] = ACTIONS(2201), - [anon_sym_mut] = ACTIONS(2201), - [anon_sym_const] = ACTIONS(2201), - [aux_sym_cmd_identifier_token1] = ACTIONS(2204), - [anon_sym_def] = ACTIONS(2201), - [anon_sym_use] = ACTIONS(2201), - [anon_sym_export_DASHenv] = ACTIONS(2201), - [anon_sym_extern] = ACTIONS(2201), - [anon_sym_module] = ACTIONS(2201), - [anon_sym_for] = ACTIONS(2201), - [anon_sym_loop] = ACTIONS(2201), - [anon_sym_while] = ACTIONS(2201), - [anon_sym_if] = ACTIONS(2201), - [anon_sym_else] = ACTIONS(2201), - [anon_sym_try] = ACTIONS(2201), - [anon_sym_catch] = ACTIONS(2201), - [anon_sym_finally] = ACTIONS(2201), - [anon_sym_match] = ACTIONS(2201), - [anon_sym_in] = ACTIONS(2198), - [anon_sym_true] = ACTIONS(2207), - [anon_sym_false] = ACTIONS(2207), - [anon_sym_null] = ACTIONS(2207), - [aux_sym_cmd_identifier_token3] = ACTIONS(2210), - [aux_sym_cmd_identifier_token4] = ACTIONS(2210), - [aux_sym_cmd_identifier_token5] = ACTIONS(2210), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_DOLLAR] = ACTIONS(2216), - [anon_sym_DASH2] = ACTIONS(2219), - [anon_sym_PLUS2] = ACTIONS(2219), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2222), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2225), - [aux_sym__val_number_decimal_token1] = ACTIONS(2228), - [aux_sym__val_number_decimal_token2] = ACTIONS(2231), - [aux_sym__val_number_decimal_token3] = ACTIONS(2234), - [aux_sym__val_number_decimal_token4] = ACTIONS(2234), - [aux_sym__val_number_token1] = ACTIONS(2237), - [aux_sym__val_number_token2] = ACTIONS(2237), - [aux_sym__val_number_token3] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2243), - [anon_sym_BQUOTE] = ACTIONS(2246), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2249), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2252), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2255), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2258), - }, - [STATE(721)] = { - [sym_comment] = STATE(721), - [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_LPAREN2] = ACTIONS(2108), - [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(2261), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2263), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2263), - [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), - [sym__unquoted_pattern] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(722)] = { - [sym_comment] = STATE(722), - [anon_sym_in] = ACTIONS(2146), + [anon_sym_in] = ACTIONS(2265), [sym__newline] = ACTIONS(2265), [anon_sym_SEMI] = ACTIONS(2265), [anon_sym_PIPE] = ACTIONS(2265), @@ -104270,44 +103935,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2265), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2265), [anon_sym_RPAREN] = ACTIONS(2265), - [anon_sym_GT2] = ACTIONS(2148), - [anon_sym_DASH2] = ACTIONS(2146), + [anon_sym_GT2] = ACTIONS(2267), + [anon_sym_DASH2] = ACTIONS(2265), [anon_sym_LBRACE] = ACTIONS(2265), [anon_sym_RBRACE] = ACTIONS(2265), - [anon_sym_STAR2] = ACTIONS(2148), - [anon_sym_and2] = ACTIONS(2146), - [anon_sym_xor2] = ACTIONS(2146), - [anon_sym_or2] = ACTIONS(2146), - [anon_sym_not_DASHin2] = ACTIONS(2146), - [anon_sym_has2] = ACTIONS(2146), - [anon_sym_not_DASHhas2] = ACTIONS(2146), - [anon_sym_starts_DASHwith2] = ACTIONS(2146), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2146), - [anon_sym_ends_DASHwith2] = ACTIONS(2146), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2146), - [anon_sym_EQ_EQ2] = ACTIONS(2146), - [anon_sym_BANG_EQ2] = ACTIONS(2146), - [anon_sym_LT2] = ACTIONS(2148), - [anon_sym_LT_EQ2] = ACTIONS(2146), - [anon_sym_GT_EQ2] = ACTIONS(2146), - [anon_sym_EQ_TILDE2] = ACTIONS(2146), - [anon_sym_BANG_TILDE2] = ACTIONS(2146), - [anon_sym_like2] = ACTIONS(2146), - [anon_sym_not_DASHlike2] = ACTIONS(2146), - [anon_sym_STAR_STAR2] = ACTIONS(2146), - [anon_sym_PLUS_PLUS2] = ACTIONS(2146), - [anon_sym_SLASH2] = ACTIONS(2148), - [anon_sym_mod2] = ACTIONS(2146), - [anon_sym_SLASH_SLASH2] = ACTIONS(2146), - [anon_sym_PLUS2] = ACTIONS(2148), - [anon_sym_bit_DASHshl2] = ACTIONS(2146), - [anon_sym_bit_DASHshr2] = ACTIONS(2146), - [anon_sym_bit_DASHand2] = ACTIONS(2146), - [anon_sym_bit_DASHxor2] = ACTIONS(2146), - [anon_sym_bit_DASHor2] = ACTIONS(2146), - [anon_sym_DOT_DOT2] = ACTIONS(1620), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), + [anon_sym_EQ_GT] = ACTIONS(2265), + [anon_sym_STAR2] = ACTIONS(2267), + [anon_sym_and2] = ACTIONS(2265), + [anon_sym_xor2] = ACTIONS(2265), + [anon_sym_or2] = ACTIONS(2265), + [anon_sym_not_DASHin2] = ACTIONS(2265), + [anon_sym_has2] = ACTIONS(2265), + [anon_sym_not_DASHhas2] = ACTIONS(2265), + [anon_sym_starts_DASHwith2] = ACTIONS(2265), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2265), + [anon_sym_ends_DASHwith2] = ACTIONS(2265), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2265), + [anon_sym_EQ_EQ2] = ACTIONS(2265), + [anon_sym_BANG_EQ2] = ACTIONS(2265), + [anon_sym_LT2] = ACTIONS(2267), + [anon_sym_LT_EQ2] = ACTIONS(2265), + [anon_sym_GT_EQ2] = ACTIONS(2265), + [anon_sym_EQ_TILDE2] = ACTIONS(2265), + [anon_sym_BANG_TILDE2] = ACTIONS(2265), + [anon_sym_like2] = ACTIONS(2265), + [anon_sym_not_DASHlike2] = ACTIONS(2265), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2265), + [anon_sym_PLUS_PLUS2] = ACTIONS(2265), + [anon_sym_SLASH2] = ACTIONS(2267), + [anon_sym_mod2] = ACTIONS(2265), + [anon_sym_SLASH_SLASH2] = ACTIONS(2265), + [anon_sym_PLUS2] = ACTIONS(2267), + [anon_sym_bit_DASHshl2] = ACTIONS(2265), + [anon_sym_bit_DASHshr2] = ACTIONS(2265), + [anon_sym_bit_DASHand2] = ACTIONS(2265), + [anon_sym_bit_DASHxor2] = ACTIONS(2265), + [anon_sym_bit_DASHor2] = ACTIONS(2265), [anon_sym_err_GT] = ACTIONS(2267), [anon_sym_out_GT] = ACTIONS(2267), [anon_sym_e_GT] = ACTIONS(2267), @@ -104326,383 +103990,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2265), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(723)] = { - [sym__expr_parenthesized_immediate] = STATE(5283), - [sym_comment] = STATE(723), - [anon_sym_in] = ACTIONS(2269), - [sym__newline] = ACTIONS(2269), - [anon_sym_SEMI] = ACTIONS(2269), - [anon_sym_PIPE] = ACTIONS(2269), - [anon_sym_err_GT_PIPE] = ACTIONS(2269), - [anon_sym_out_GT_PIPE] = ACTIONS(2269), - [anon_sym_e_GT_PIPE] = ACTIONS(2269), - [anon_sym_o_GT_PIPE] = ACTIONS(2269), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2269), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2269), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2269), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2269), - [anon_sym_RPAREN] = ACTIONS(2269), - [anon_sym_GT2] = ACTIONS(2271), - [anon_sym_DASH2] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(2269), - [anon_sym_RBRACE] = ACTIONS(2269), - [anon_sym_EQ_GT] = ACTIONS(2269), - [anon_sym_STAR2] = ACTIONS(2271), - [anon_sym_and2] = ACTIONS(2269), - [anon_sym_xor2] = ACTIONS(2269), - [anon_sym_or2] = ACTIONS(2269), - [anon_sym_not_DASHin2] = ACTIONS(2269), - [anon_sym_has2] = ACTIONS(2269), - [anon_sym_not_DASHhas2] = ACTIONS(2269), - [anon_sym_starts_DASHwith2] = ACTIONS(2269), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2269), - [anon_sym_ends_DASHwith2] = ACTIONS(2269), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2269), - [anon_sym_EQ_EQ2] = ACTIONS(2269), - [anon_sym_BANG_EQ2] = ACTIONS(2269), - [anon_sym_LT2] = ACTIONS(2271), - [anon_sym_LT_EQ2] = ACTIONS(2269), - [anon_sym_GT_EQ2] = ACTIONS(2269), - [anon_sym_EQ_TILDE2] = ACTIONS(2269), - [anon_sym_BANG_TILDE2] = ACTIONS(2269), - [anon_sym_like2] = ACTIONS(2269), - [anon_sym_not_DASHlike2] = ACTIONS(2269), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2269), - [anon_sym_PLUS_PLUS2] = ACTIONS(2269), - [anon_sym_SLASH2] = ACTIONS(2271), - [anon_sym_mod2] = ACTIONS(2269), - [anon_sym_SLASH_SLASH2] = ACTIONS(2269), - [anon_sym_PLUS2] = ACTIONS(2271), - [anon_sym_bit_DASHshl2] = ACTIONS(2269), - [anon_sym_bit_DASHshr2] = ACTIONS(2269), - [anon_sym_bit_DASHand2] = ACTIONS(2269), - [anon_sym_bit_DASHxor2] = ACTIONS(2269), - [anon_sym_bit_DASHor2] = ACTIONS(2269), - [anon_sym_err_GT] = ACTIONS(2271), - [anon_sym_out_GT] = ACTIONS(2271), - [anon_sym_e_GT] = ACTIONS(2271), - [anon_sym_o_GT] = ACTIONS(2271), - [anon_sym_err_PLUSout_GT] = ACTIONS(2271), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2271), - [anon_sym_o_PLUSe_GT] = ACTIONS(2271), - [anon_sym_e_PLUSo_GT] = ACTIONS(2271), - [anon_sym_err_GT_GT] = ACTIONS(2269), - [anon_sym_out_GT_GT] = ACTIONS(2269), - [anon_sym_e_GT_GT] = ACTIONS(2269), - [anon_sym_o_GT_GT] = ACTIONS(2269), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2269), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2269), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2269), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2269), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(724)] = { - [sym_comment] = STATE(724), - [ts_builtin_sym_end] = ACTIONS(2114), - [anon_sym_in] = ACTIONS(2114), - [sym__newline] = ACTIONS(2114), - [anon_sym_SEMI] = ACTIONS(2114), - [anon_sym_PIPE] = ACTIONS(2114), - [anon_sym_err_GT_PIPE] = ACTIONS(2114), - [anon_sym_out_GT_PIPE] = ACTIONS(2114), - [anon_sym_e_GT_PIPE] = ACTIONS(2114), - [anon_sym_o_GT_PIPE] = ACTIONS(2114), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2114), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2114), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2114), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2114), - [anon_sym_GT2] = ACTIONS(2116), - [anon_sym_DASH2] = ACTIONS(2114), - [anon_sym_STAR2] = ACTIONS(2116), - [anon_sym_and2] = ACTIONS(2114), - [anon_sym_xor2] = ACTIONS(2114), - [anon_sym_or2] = ACTIONS(2114), - [anon_sym_not_DASHin2] = ACTIONS(2114), - [anon_sym_has2] = ACTIONS(2114), - [anon_sym_not_DASHhas2] = ACTIONS(2114), - [anon_sym_starts_DASHwith2] = ACTIONS(2114), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2114), - [anon_sym_ends_DASHwith2] = ACTIONS(2114), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2114), - [anon_sym_EQ_EQ2] = ACTIONS(2114), - [anon_sym_BANG_EQ2] = ACTIONS(2114), - [anon_sym_LT2] = ACTIONS(2116), - [anon_sym_LT_EQ2] = ACTIONS(2114), - [anon_sym_GT_EQ2] = ACTIONS(2114), - [anon_sym_EQ_TILDE2] = ACTIONS(2114), - [anon_sym_BANG_TILDE2] = ACTIONS(2114), - [anon_sym_like2] = ACTIONS(2114), - [anon_sym_not_DASHlike2] = ACTIONS(2114), - [anon_sym_LPAREN2] = ACTIONS(2118), - [anon_sym_STAR_STAR2] = ACTIONS(2114), - [anon_sym_PLUS_PLUS2] = ACTIONS(2114), - [anon_sym_SLASH2] = ACTIONS(2116), - [anon_sym_mod2] = ACTIONS(2114), - [anon_sym_SLASH_SLASH2] = ACTIONS(2114), - [anon_sym_PLUS2] = ACTIONS(2116), - [anon_sym_bit_DASHshl2] = ACTIONS(2114), - [anon_sym_bit_DASHshr2] = ACTIONS(2114), - [anon_sym_bit_DASHand2] = ACTIONS(2114), - [anon_sym_bit_DASHxor2] = ACTIONS(2114), - [anon_sym_bit_DASHor2] = ACTIONS(2114), - [anon_sym_DOT_DOT2] = ACTIONS(2273), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2275), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2275), - [anon_sym_err_GT] = ACTIONS(2116), - [anon_sym_out_GT] = ACTIONS(2116), - [anon_sym_e_GT] = ACTIONS(2116), - [anon_sym_o_GT] = ACTIONS(2116), - [anon_sym_err_PLUSout_GT] = ACTIONS(2116), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2116), - [anon_sym_o_PLUSe_GT] = ACTIONS(2116), - [anon_sym_e_PLUSo_GT] = ACTIONS(2116), - [anon_sym_err_GT_GT] = ACTIONS(2114), - [anon_sym_out_GT_GT] = ACTIONS(2114), - [anon_sym_e_GT_GT] = ACTIONS(2114), - [anon_sym_o_GT_GT] = ACTIONS(2114), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2114), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2114), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2114), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2114), - [sym__unquoted_pattern] = ACTIONS(2124), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(725)] = { - [sym_comment] = STATE(725), - [ts_builtin_sym_end] = ACTIONS(1774), - [anon_sym_in] = ACTIONS(1774), - [sym__newline] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_err_GT_PIPE] = ACTIONS(1774), - [anon_sym_out_GT_PIPE] = ACTIONS(1774), - [anon_sym_e_GT_PIPE] = ACTIONS(1774), - [anon_sym_o_GT_PIPE] = ACTIONS(1774), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), - [anon_sym_GT2] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(1774), - [anon_sym_STAR2] = ACTIONS(1776), - [anon_sym_and2] = ACTIONS(1774), - [anon_sym_xor2] = ACTIONS(1774), - [anon_sym_or2] = ACTIONS(1774), - [anon_sym_not_DASHin2] = ACTIONS(1774), - [anon_sym_has2] = ACTIONS(1774), - [anon_sym_not_DASHhas2] = ACTIONS(1774), - [anon_sym_starts_DASHwith2] = ACTIONS(1774), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1774), - [anon_sym_ends_DASHwith2] = ACTIONS(1774), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1774), - [anon_sym_EQ_EQ2] = ACTIONS(1774), - [anon_sym_BANG_EQ2] = ACTIONS(1774), - [anon_sym_LT2] = ACTIONS(1776), - [anon_sym_LT_EQ2] = ACTIONS(1774), - [anon_sym_GT_EQ2] = ACTIONS(1774), - [anon_sym_EQ_TILDE2] = ACTIONS(1774), - [anon_sym_BANG_TILDE2] = ACTIONS(1774), - [anon_sym_like2] = ACTIONS(1774), - [anon_sym_not_DASHlike2] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_STAR_STAR2] = ACTIONS(1774), - [anon_sym_PLUS_PLUS2] = ACTIONS(1774), - [anon_sym_SLASH2] = ACTIONS(1776), - [anon_sym_mod2] = ACTIONS(1774), - [anon_sym_SLASH_SLASH2] = ACTIONS(1774), - [anon_sym_PLUS2] = ACTIONS(1776), - [anon_sym_bit_DASHshl2] = ACTIONS(1774), - [anon_sym_bit_DASHshr2] = ACTIONS(1774), - [anon_sym_bit_DASHand2] = ACTIONS(1774), - [anon_sym_bit_DASHxor2] = ACTIONS(1774), - [anon_sym_bit_DASHor2] = ACTIONS(1774), - [anon_sym_DOT_DOT2] = ACTIONS(1776), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1774), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1774), - [anon_sym_err_GT] = ACTIONS(1776), - [anon_sym_out_GT] = ACTIONS(1776), - [anon_sym_e_GT] = ACTIONS(1776), - [anon_sym_o_GT] = ACTIONS(1776), - [anon_sym_err_PLUSout_GT] = ACTIONS(1776), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), - [anon_sym_o_PLUSe_GT] = ACTIONS(1776), - [anon_sym_e_PLUSo_GT] = ACTIONS(1776), - [anon_sym_err_GT_GT] = ACTIONS(1774), - [anon_sym_out_GT_GT] = ACTIONS(1774), - [anon_sym_e_GT_GT] = ACTIONS(1774), - [anon_sym_o_GT_GT] = ACTIONS(1774), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), - [sym__unquoted_pattern] = ACTIONS(1776), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(726)] = { - [sym_comment] = STATE(726), - [anon_sym_if] = ACTIONS(2277), - [anon_sym_in] = ACTIONS(2277), - [sym__newline] = ACTIONS(2277), - [anon_sym_SEMI] = ACTIONS(2277), - [anon_sym_PIPE] = ACTIONS(2277), - [anon_sym_err_GT_PIPE] = ACTIONS(2277), - [anon_sym_out_GT_PIPE] = ACTIONS(2277), - [anon_sym_e_GT_PIPE] = ACTIONS(2277), - [anon_sym_o_GT_PIPE] = ACTIONS(2277), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2277), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2277), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2277), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2277), - [anon_sym_RPAREN] = ACTIONS(2277), - [anon_sym_GT2] = ACTIONS(2279), - [anon_sym_DASH2] = ACTIONS(2277), - [anon_sym_LBRACE] = ACTIONS(2277), - [anon_sym_RBRACE] = ACTIONS(2277), - [anon_sym_EQ_GT] = ACTIONS(2277), - [anon_sym_STAR2] = ACTIONS(2279), - [anon_sym_and2] = ACTIONS(2277), - [anon_sym_xor2] = ACTIONS(2277), - [anon_sym_or2] = ACTIONS(2277), - [anon_sym_not_DASHin2] = ACTIONS(2277), - [anon_sym_has2] = ACTIONS(2277), - [anon_sym_not_DASHhas2] = ACTIONS(2277), - [anon_sym_starts_DASHwith2] = ACTIONS(2277), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2277), - [anon_sym_ends_DASHwith2] = ACTIONS(2277), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2277), - [anon_sym_EQ_EQ2] = ACTIONS(2277), - [anon_sym_BANG_EQ2] = ACTIONS(2277), - [anon_sym_LT2] = ACTIONS(2279), - [anon_sym_LT_EQ2] = ACTIONS(2277), - [anon_sym_GT_EQ2] = ACTIONS(2277), - [anon_sym_EQ_TILDE2] = ACTIONS(2277), - [anon_sym_BANG_TILDE2] = ACTIONS(2277), - [anon_sym_like2] = ACTIONS(2277), - [anon_sym_not_DASHlike2] = ACTIONS(2277), - [anon_sym_STAR_STAR2] = ACTIONS(2277), - [anon_sym_PLUS_PLUS2] = ACTIONS(2277), - [anon_sym_SLASH2] = ACTIONS(2279), - [anon_sym_mod2] = ACTIONS(2277), - [anon_sym_SLASH_SLASH2] = ACTIONS(2277), - [anon_sym_PLUS2] = ACTIONS(2279), - [anon_sym_bit_DASHshl2] = ACTIONS(2277), - [anon_sym_bit_DASHshr2] = ACTIONS(2277), - [anon_sym_bit_DASHand2] = ACTIONS(2277), - [anon_sym_bit_DASHxor2] = ACTIONS(2277), - [anon_sym_bit_DASHor2] = ACTIONS(2277), - [anon_sym_COLON2] = ACTIONS(2277), - [anon_sym_err_GT] = ACTIONS(2279), - [anon_sym_out_GT] = ACTIONS(2279), - [anon_sym_e_GT] = ACTIONS(2279), - [anon_sym_o_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT] = ACTIONS(2279), - [anon_sym_err_GT_GT] = ACTIONS(2277), - [anon_sym_out_GT_GT] = ACTIONS(2277), - [anon_sym_e_GT_GT] = ACTIONS(2277), - [anon_sym_o_GT_GT] = ACTIONS(2277), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2277), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2277), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2277), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2277), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(727)] = { - [sym_comment] = STATE(727), - [ts_builtin_sym_end] = ACTIONS(1567), - [anon_sym_in] = ACTIONS(1567), - [sym__newline] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_err_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_GT_PIPE] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), - [anon_sym_COLON] = ACTIONS(1567), - [anon_sym_GT2] = ACTIONS(1565), - [anon_sym_DASH2] = ACTIONS(1567), - [anon_sym_STAR2] = ACTIONS(1565), - [anon_sym_and2] = ACTIONS(1567), - [anon_sym_xor2] = ACTIONS(1567), - [anon_sym_or2] = ACTIONS(1567), - [anon_sym_not_DASHin2] = ACTIONS(1567), - [anon_sym_has2] = ACTIONS(1567), - [anon_sym_not_DASHhas2] = ACTIONS(1567), - [anon_sym_starts_DASHwith2] = ACTIONS(1567), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1567), - [anon_sym_ends_DASHwith2] = ACTIONS(1567), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1567), - [anon_sym_EQ_EQ2] = ACTIONS(1567), - [anon_sym_BANG_EQ2] = ACTIONS(1567), - [anon_sym_LT2] = ACTIONS(1565), - [anon_sym_LT_EQ2] = ACTIONS(1567), - [anon_sym_GT_EQ2] = ACTIONS(1567), - [anon_sym_EQ_TILDE2] = ACTIONS(1567), - [anon_sym_BANG_TILDE2] = ACTIONS(1567), - [anon_sym_like2] = ACTIONS(1567), - [anon_sym_not_DASHlike2] = ACTIONS(1567), - [anon_sym_STAR_STAR2] = ACTIONS(1567), - [anon_sym_PLUS_PLUS2] = ACTIONS(1567), - [anon_sym_SLASH2] = ACTIONS(1565), - [anon_sym_mod2] = ACTIONS(1567), - [anon_sym_SLASH_SLASH2] = ACTIONS(1567), - [anon_sym_PLUS2] = ACTIONS(1565), - [anon_sym_bit_DASHshl2] = ACTIONS(1567), - [anon_sym_bit_DASHshr2] = ACTIONS(1567), - [anon_sym_bit_DASHand2] = ACTIONS(1567), - [anon_sym_bit_DASHxor2] = ACTIONS(1567), - [anon_sym_bit_DASHor2] = ACTIONS(1567), - [anon_sym_DOT_DOT2] = ACTIONS(1565), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), - [anon_sym_DOT2] = ACTIONS(1565), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1567), - [anon_sym_out_GT_GT] = ACTIONS(1567), - [anon_sym_e_GT_GT] = ACTIONS(1567), - [anon_sym_o_GT_GT] = ACTIONS(1567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(728)] = { - [sym_cmd_identifier] = STATE(4664), - [sym_expr_parenthesized] = STATE(5503), - [sym__spread_parenthesized] = STATE(4962), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(5503), - [sym_val_number] = STATE(5503), - [sym__val_number_decimal] = STATE(2000), - [sym__val_number] = STATE(726), - [sym_val_string] = STATE(5503), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_interpolated] = STATE(5503), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym__spread_record] = STATE(4962), - [sym_record_entry] = STATE(4827), - [sym__record_key] = STATE(5380), - [sym_comment] = STATE(728), - [aux_sym_record_body_repeat1] = STATE(720), + [719] = { + [sym_cmd_identifier] = STATE(4572), + [sym_expr_parenthesized] = STATE(5187), + [sym__spread_parenthesized] = STATE(4951), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(5187), + [sym_val_number] = STATE(5187), + [sym__val_number_decimal] = STATE(2013), + [sym__val_number] = STATE(705), + [sym_val_string] = STATE(5187), + [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(5187), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym__spread_record] = STATE(4951), + [sym_record_entry] = STATE(4774), + [sym__record_key] = STATE(5305), + [sym_comment] = STATE(719), + [aux_sym_record_body_repeat1] = STATE(743), [anon_sym_export] = ACTIONS(145), [anon_sym_alias] = ACTIONS(139), [anon_sym_let] = ACTIONS(139), @@ -104724,198 +104033,269 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(139), [anon_sym_match] = ACTIONS(139), [anon_sym_in] = ACTIONS(145), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token3] = ACTIONS(1750), - [aux_sym_cmd_identifier_token4] = ACTIONS(1750), - [aux_sym_cmd_identifier_token5] = ACTIONS(1750), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1746), + [aux_sym_cmd_identifier_token3] = ACTIONS(1748), + [aux_sym_cmd_identifier_token4] = ACTIONS(1748), + [aux_sym_cmd_identifier_token5] = ACTIONS(1748), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_DOLLAR] = ACTIONS(1754), [anon_sym_DASH2] = ACTIONS(177), [anon_sym_PLUS2] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1760), - [aux_sym__val_number_decimal_token2] = ACTIONS(1762), - [aux_sym__val_number_decimal_token3] = ACTIONS(1764), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1768), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1772), + [sym_raw_string_begin] = ACTIONS(1770), }, - [STATE(729)] = { - [sym__expr_parenthesized_immediate] = STATE(5283), - [sym_comment] = STATE(729), - [anon_sym_in] = ACTIONS(2281), - [sym__newline] = ACTIONS(2281), - [anon_sym_SEMI] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2281), - [anon_sym_err_GT_PIPE] = ACTIONS(2281), - [anon_sym_out_GT_PIPE] = ACTIONS(2281), - [anon_sym_e_GT_PIPE] = ACTIONS(2281), - [anon_sym_o_GT_PIPE] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2281), - [anon_sym_RPAREN] = ACTIONS(2281), - [anon_sym_GT2] = ACTIONS(2283), - [anon_sym_DASH2] = ACTIONS(2281), - [anon_sym_LBRACE] = ACTIONS(2281), - [anon_sym_RBRACE] = ACTIONS(2281), - [anon_sym_EQ_GT] = ACTIONS(2281), - [anon_sym_STAR2] = ACTIONS(2283), - [anon_sym_and2] = ACTIONS(2281), - [anon_sym_xor2] = ACTIONS(2281), - [anon_sym_or2] = ACTIONS(2281), - [anon_sym_not_DASHin2] = ACTIONS(2281), - [anon_sym_has2] = ACTIONS(2281), - [anon_sym_not_DASHhas2] = ACTIONS(2281), - [anon_sym_starts_DASHwith2] = ACTIONS(2281), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2281), - [anon_sym_ends_DASHwith2] = ACTIONS(2281), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2281), - [anon_sym_EQ_EQ2] = ACTIONS(2281), - [anon_sym_BANG_EQ2] = ACTIONS(2281), - [anon_sym_LT2] = ACTIONS(2283), - [anon_sym_LT_EQ2] = ACTIONS(2281), - [anon_sym_GT_EQ2] = ACTIONS(2281), - [anon_sym_EQ_TILDE2] = ACTIONS(2281), - [anon_sym_BANG_TILDE2] = ACTIONS(2281), - [anon_sym_like2] = ACTIONS(2281), - [anon_sym_not_DASHlike2] = ACTIONS(2281), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2281), - [anon_sym_PLUS_PLUS2] = ACTIONS(2281), - [anon_sym_SLASH2] = ACTIONS(2283), - [anon_sym_mod2] = ACTIONS(2281), - [anon_sym_SLASH_SLASH2] = ACTIONS(2281), - [anon_sym_PLUS2] = ACTIONS(2283), - [anon_sym_bit_DASHshl2] = ACTIONS(2281), - [anon_sym_bit_DASHshr2] = ACTIONS(2281), - [anon_sym_bit_DASHand2] = ACTIONS(2281), - [anon_sym_bit_DASHxor2] = ACTIONS(2281), - [anon_sym_bit_DASHor2] = ACTIONS(2281), - [anon_sym_err_GT] = ACTIONS(2283), - [anon_sym_out_GT] = ACTIONS(2283), - [anon_sym_e_GT] = ACTIONS(2283), - [anon_sym_o_GT] = ACTIONS(2283), - [anon_sym_err_PLUSout_GT] = ACTIONS(2283), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2283), - [anon_sym_o_PLUSe_GT] = ACTIONS(2283), - [anon_sym_e_PLUSo_GT] = ACTIONS(2283), - [anon_sym_err_GT_GT] = ACTIONS(2281), - [anon_sym_out_GT_GT] = ACTIONS(2281), - [anon_sym_e_GT_GT] = ACTIONS(2281), - [anon_sym_o_GT_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2281), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(730)] = { - [sym_comment] = STATE(730), - [anon_sym_in] = ACTIONS(1738), - [sym__newline] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_err_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_GT_PIPE] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), - [anon_sym_RPAREN] = ACTIONS(1738), - [anon_sym_GT2] = ACTIONS(1616), - [anon_sym_DASH2] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1738), - [anon_sym_RBRACE] = ACTIONS(1738), - [anon_sym_STAR2] = ACTIONS(1616), - [anon_sym_and2] = ACTIONS(1738), - [anon_sym_xor2] = ACTIONS(1738), - [anon_sym_or2] = ACTIONS(1738), - [anon_sym_not_DASHin2] = ACTIONS(1738), - [anon_sym_has2] = ACTIONS(1738), - [anon_sym_not_DASHhas2] = ACTIONS(1738), - [anon_sym_starts_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), - [anon_sym_ends_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), - [anon_sym_EQ_EQ2] = ACTIONS(1738), - [anon_sym_BANG_EQ2] = ACTIONS(1738), - [anon_sym_LT2] = ACTIONS(1616), - [anon_sym_LT_EQ2] = ACTIONS(1738), - [anon_sym_GT_EQ2] = ACTIONS(1738), - [anon_sym_EQ_TILDE2] = ACTIONS(1738), - [anon_sym_BANG_TILDE2] = ACTIONS(1738), - [anon_sym_like2] = ACTIONS(1738), - [anon_sym_not_DASHlike2] = ACTIONS(1738), - [anon_sym_STAR_STAR2] = ACTIONS(1738), - [anon_sym_PLUS_PLUS2] = ACTIONS(1738), - [anon_sym_SLASH2] = ACTIONS(1616), - [anon_sym_mod2] = ACTIONS(1738), - [anon_sym_SLASH_SLASH2] = ACTIONS(1738), - [anon_sym_PLUS2] = ACTIONS(1616), - [anon_sym_bit_DASHshl2] = ACTIONS(1738), - [anon_sym_bit_DASHshr2] = ACTIONS(1738), - [anon_sym_bit_DASHand2] = ACTIONS(1738), - [anon_sym_bit_DASHxor2] = ACTIONS(1738), - [anon_sym_bit_DASHor2] = ACTIONS(1738), - [anon_sym_DOT_DOT2] = ACTIONS(1620), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), - [anon_sym_err_GT] = ACTIONS(1616), - [anon_sym_out_GT] = ACTIONS(1616), - [anon_sym_e_GT] = ACTIONS(1616), - [anon_sym_o_GT] = ACTIONS(1616), - [anon_sym_err_PLUSout_GT] = ACTIONS(1616), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), - [anon_sym_o_PLUSe_GT] = ACTIONS(1616), - [anon_sym_e_PLUSo_GT] = ACTIONS(1616), - [anon_sym_err_GT_GT] = ACTIONS(1738), - [anon_sym_out_GT_GT] = ACTIONS(1738), - [anon_sym_e_GT_GT] = ACTIONS(1738), - [anon_sym_o_GT_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(731)] = { - [sym_cmd_identifier] = STATE(4664), - [sym_expr_parenthesized] = STATE(5503), - [sym__spread_parenthesized] = STATE(4962), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(4388), - [sym_val_number] = STATE(5503), - [sym__val_number_decimal] = STATE(2000), - [sym__val_number] = STATE(726), - [sym_val_string] = STATE(5503), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_interpolated] = STATE(5503), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym__spread_record] = STATE(4962), - [sym_record_entry] = STATE(4900), - [sym__record_key] = STATE(5380), - [sym_comment] = STATE(731), - [aux_sym__match_pattern_record_body_repeat1] = STATE(732), + [720] = { + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(720), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [721] = { + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(721), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [722] = { + [sym_comment] = STATE(722), + [ts_builtin_sym_end] = ACTIONS(1466), + [anon_sym_in] = ACTIONS(1466), + [sym__newline] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_err_GT_PIPE] = ACTIONS(1466), + [anon_sym_out_GT_PIPE] = ACTIONS(1466), + [anon_sym_e_GT_PIPE] = ACTIONS(1466), + [anon_sym_o_GT_PIPE] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1466), + [anon_sym_GT2] = ACTIONS(1464), + [anon_sym_DASH2] = ACTIONS(1466), + [anon_sym_STAR2] = ACTIONS(1464), + [anon_sym_and2] = ACTIONS(1466), + [anon_sym_xor2] = ACTIONS(1466), + [anon_sym_or2] = ACTIONS(1466), + [anon_sym_not_DASHin2] = ACTIONS(1466), + [anon_sym_has2] = ACTIONS(1466), + [anon_sym_not_DASHhas2] = ACTIONS(1466), + [anon_sym_starts_DASHwith2] = ACTIONS(1466), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1466), + [anon_sym_ends_DASHwith2] = ACTIONS(1466), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1466), + [anon_sym_EQ_EQ2] = ACTIONS(1466), + [anon_sym_BANG_EQ2] = ACTIONS(1466), + [anon_sym_LT2] = ACTIONS(1464), + [anon_sym_LT_EQ2] = ACTIONS(1466), + [anon_sym_GT_EQ2] = ACTIONS(1466), + [anon_sym_EQ_TILDE2] = ACTIONS(1466), + [anon_sym_BANG_TILDE2] = ACTIONS(1466), + [anon_sym_like2] = ACTIONS(1466), + [anon_sym_not_DASHlike2] = ACTIONS(1466), + [anon_sym_STAR_STAR2] = ACTIONS(1466), + [anon_sym_PLUS_PLUS2] = ACTIONS(1466), + [anon_sym_SLASH2] = ACTIONS(1464), + [anon_sym_mod2] = ACTIONS(1466), + [anon_sym_SLASH_SLASH2] = ACTIONS(1466), + [anon_sym_PLUS2] = ACTIONS(1464), + [anon_sym_bit_DASHshl2] = ACTIONS(1466), + [anon_sym_bit_DASHshr2] = ACTIONS(1466), + [anon_sym_bit_DASHand2] = ACTIONS(1466), + [anon_sym_bit_DASHxor2] = ACTIONS(1466), + [anon_sym_bit_DASHor2] = ACTIONS(1466), + [anon_sym_DOT_DOT2] = ACTIONS(1464), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1466), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(2269), + [anon_sym_DOT2] = ACTIONS(1464), + [anon_sym_err_GT] = ACTIONS(1464), + [anon_sym_out_GT] = ACTIONS(1464), + [anon_sym_e_GT] = ACTIONS(1464), + [anon_sym_o_GT] = ACTIONS(1464), + [anon_sym_err_PLUSout_GT] = ACTIONS(1464), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1464), + [anon_sym_o_PLUSe_GT] = ACTIONS(1464), + [anon_sym_e_PLUSo_GT] = ACTIONS(1464), + [anon_sym_err_GT_GT] = ACTIONS(1466), + [anon_sym_out_GT_GT] = ACTIONS(1466), + [anon_sym_e_GT_GT] = ACTIONS(1466), + [anon_sym_o_GT_GT] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1466), + [anon_sym_POUND] = ACTIONS(3), + }, + [723] = { + [sym_cmd_identifier] = STATE(4572), + [sym_expr_parenthesized] = STATE(5187), + [sym__spread_parenthesized] = STATE(4951), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(4642), + [sym_val_number] = STATE(5187), + [sym__val_number_decimal] = STATE(2013), + [sym__val_number] = STATE(705), + [sym_val_string] = STATE(5187), + [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(5187), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym__spread_record] = STATE(4951), + [sym_record_entry] = STATE(4804), + [sym__record_key] = STATE(5305), + [sym_comment] = STATE(723), + [aux_sym__match_pattern_record_body_repeat1] = STATE(702), [anon_sym_export] = ACTIONS(145), [anon_sym_alias] = ACTIONS(139), [anon_sym_let] = ACTIONS(139), @@ -104937,908 +104317,1476 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(139), [anon_sym_match] = ACTIONS(139), [anon_sym_in] = ACTIONS(145), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token3] = ACTIONS(1750), - [aux_sym_cmd_identifier_token4] = ACTIONS(1750), - [aux_sym_cmd_identifier_token5] = ACTIONS(1750), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1746), + [aux_sym_cmd_identifier_token3] = ACTIONS(1748), + [aux_sym_cmd_identifier_token4] = ACTIONS(1748), + [aux_sym_cmd_identifier_token5] = ACTIONS(1748), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_DOLLAR] = ACTIONS(1778), [anon_sym_DASH2] = ACTIONS(177), [anon_sym_PLUS2] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1760), - [aux_sym__val_number_decimal_token2] = ACTIONS(1762), - [aux_sym__val_number_decimal_token3] = ACTIONS(1764), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1768), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1772), - }, - [STATE(732)] = { - [sym_cmd_identifier] = STATE(4664), - [sym_expr_parenthesized] = STATE(5503), - [sym__spread_parenthesized] = STATE(4962), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(4911), - [sym_val_number] = STATE(5503), - [sym__val_number_decimal] = STATE(2000), - [sym__val_number] = STATE(726), - [sym_val_string] = STATE(5503), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_interpolated] = STATE(5503), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym__spread_record] = STATE(4962), - [sym_record_entry] = STATE(5074), - [sym__record_key] = STATE(5380), + [sym_raw_string_begin] = ACTIONS(1770), + }, + [724] = { + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(724), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [725] = { + [sym_comment] = STATE(725), + [anon_sym_in] = ACTIONS(2271), + [sym__newline] = ACTIONS(2271), + [anon_sym_SEMI] = ACTIONS(2271), + [anon_sym_PIPE] = ACTIONS(2271), + [anon_sym_err_GT_PIPE] = ACTIONS(2271), + [anon_sym_out_GT_PIPE] = ACTIONS(2271), + [anon_sym_e_GT_PIPE] = ACTIONS(2271), + [anon_sym_o_GT_PIPE] = ACTIONS(2271), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2271), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2271), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2271), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2271), + [anon_sym_RPAREN] = ACTIONS(2271), + [anon_sym_GT2] = ACTIONS(2273), + [anon_sym_DASH2] = ACTIONS(2271), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_RBRACE] = ACTIONS(2271), + [anon_sym_STAR2] = ACTIONS(2273), + [anon_sym_and2] = ACTIONS(2271), + [anon_sym_xor2] = ACTIONS(2271), + [anon_sym_or2] = ACTIONS(2271), + [anon_sym_not_DASHin2] = ACTIONS(2271), + [anon_sym_has2] = ACTIONS(2271), + [anon_sym_not_DASHhas2] = ACTIONS(2271), + [anon_sym_starts_DASHwith2] = ACTIONS(2271), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2271), + [anon_sym_ends_DASHwith2] = ACTIONS(2271), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2271), + [anon_sym_EQ_EQ2] = ACTIONS(2271), + [anon_sym_BANG_EQ2] = ACTIONS(2271), + [anon_sym_LT2] = ACTIONS(2273), + [anon_sym_LT_EQ2] = ACTIONS(2271), + [anon_sym_GT_EQ2] = ACTIONS(2271), + [anon_sym_EQ_TILDE2] = ACTIONS(2271), + [anon_sym_BANG_TILDE2] = ACTIONS(2271), + [anon_sym_like2] = ACTIONS(2271), + [anon_sym_not_DASHlike2] = ACTIONS(2271), + [anon_sym_STAR_STAR2] = ACTIONS(2271), + [anon_sym_PLUS_PLUS2] = ACTIONS(2271), + [anon_sym_SLASH2] = ACTIONS(2273), + [anon_sym_mod2] = ACTIONS(2271), + [anon_sym_SLASH_SLASH2] = ACTIONS(2271), + [anon_sym_PLUS2] = ACTIONS(2273), + [anon_sym_bit_DASHshl2] = ACTIONS(2271), + [anon_sym_bit_DASHshr2] = ACTIONS(2271), + [anon_sym_bit_DASHand2] = ACTIONS(2271), + [anon_sym_bit_DASHxor2] = ACTIONS(2271), + [anon_sym_bit_DASHor2] = ACTIONS(2271), + [anon_sym_DOT_DOT2] = ACTIONS(2275), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2277), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2277), + [anon_sym_err_GT] = ACTIONS(2273), + [anon_sym_out_GT] = ACTIONS(2273), + [anon_sym_e_GT] = ACTIONS(2273), + [anon_sym_o_GT] = ACTIONS(2273), + [anon_sym_err_PLUSout_GT] = ACTIONS(2273), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2273), + [anon_sym_o_PLUSe_GT] = ACTIONS(2273), + [anon_sym_e_PLUSo_GT] = ACTIONS(2273), + [anon_sym_err_GT_GT] = ACTIONS(2271), + [anon_sym_out_GT_GT] = ACTIONS(2271), + [anon_sym_e_GT_GT] = ACTIONS(2271), + [anon_sym_o_GT_GT] = ACTIONS(2271), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2271), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2271), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2271), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2271), + [anon_sym_POUND] = ACTIONS(3), + }, + [726] = { + [sym_comment] = STATE(726), + [anon_sym_in] = ACTIONS(1810), + [sym__newline] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_err_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_GT_PIPE] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_GT2] = ACTIONS(1812), + [anon_sym_DASH2] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_STAR2] = ACTIONS(1812), + [anon_sym_and2] = ACTIONS(1810), + [anon_sym_xor2] = ACTIONS(1810), + [anon_sym_or2] = ACTIONS(1810), + [anon_sym_not_DASHin2] = ACTIONS(1810), + [anon_sym_has2] = ACTIONS(1810), + [anon_sym_not_DASHhas2] = ACTIONS(1810), + [anon_sym_starts_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1810), + [anon_sym_ends_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1810), + [anon_sym_EQ_EQ2] = ACTIONS(1810), + [anon_sym_BANG_EQ2] = ACTIONS(1810), + [anon_sym_LT2] = ACTIONS(1812), + [anon_sym_LT_EQ2] = ACTIONS(1810), + [anon_sym_GT_EQ2] = ACTIONS(1810), + [anon_sym_EQ_TILDE2] = ACTIONS(1810), + [anon_sym_BANG_TILDE2] = ACTIONS(1810), + [anon_sym_like2] = ACTIONS(1810), + [anon_sym_not_DASHlike2] = ACTIONS(1810), + [anon_sym_LPAREN2] = ACTIONS(1810), + [anon_sym_STAR_STAR2] = ACTIONS(1810), + [anon_sym_PLUS_PLUS2] = ACTIONS(1810), + [anon_sym_SLASH2] = ACTIONS(1812), + [anon_sym_mod2] = ACTIONS(1810), + [anon_sym_SLASH_SLASH2] = ACTIONS(1810), + [anon_sym_PLUS2] = ACTIONS(1812), + [anon_sym_bit_DASHshl2] = ACTIONS(1810), + [anon_sym_bit_DASHshr2] = ACTIONS(1810), + [anon_sym_bit_DASHand2] = ACTIONS(1810), + [anon_sym_bit_DASHxor2] = ACTIONS(1810), + [anon_sym_bit_DASHor2] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(2279), + [aux_sym__immediate_decimal_token5] = ACTIONS(2281), + [anon_sym_err_GT] = ACTIONS(1812), + [anon_sym_out_GT] = ACTIONS(1812), + [anon_sym_e_GT] = ACTIONS(1812), + [anon_sym_o_GT] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT] = ACTIONS(1812), + [anon_sym_err_GT_GT] = ACTIONS(1810), + [anon_sym_out_GT_GT] = ACTIONS(1810), + [anon_sym_e_GT_GT] = ACTIONS(1810), + [anon_sym_o_GT_GT] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), + [sym__unquoted_pattern] = ACTIONS(1812), + [anon_sym_POUND] = ACTIONS(3), + }, + [727] = { + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(727), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [728] = { + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(728), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [729] = { + [sym__expr_parenthesized_immediate] = STATE(5375), + [sym_comment] = STATE(729), + [anon_sym_in] = ACTIONS(2283), + [sym__newline] = ACTIONS(2283), + [anon_sym_SEMI] = ACTIONS(2283), + [anon_sym_PIPE] = ACTIONS(2283), + [anon_sym_err_GT_PIPE] = ACTIONS(2283), + [anon_sym_out_GT_PIPE] = ACTIONS(2283), + [anon_sym_e_GT_PIPE] = ACTIONS(2283), + [anon_sym_o_GT_PIPE] = ACTIONS(2283), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2283), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2283), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2283), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2283), + [anon_sym_RPAREN] = ACTIONS(2283), + [anon_sym_GT2] = ACTIONS(2285), + [anon_sym_DASH2] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(2283), + [anon_sym_RBRACE] = ACTIONS(2283), + [anon_sym_EQ_GT] = ACTIONS(2283), + [anon_sym_STAR2] = ACTIONS(2285), + [anon_sym_and2] = ACTIONS(2283), + [anon_sym_xor2] = ACTIONS(2283), + [anon_sym_or2] = ACTIONS(2283), + [anon_sym_not_DASHin2] = ACTIONS(2283), + [anon_sym_has2] = ACTIONS(2283), + [anon_sym_not_DASHhas2] = ACTIONS(2283), + [anon_sym_starts_DASHwith2] = ACTIONS(2283), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2283), + [anon_sym_ends_DASHwith2] = ACTIONS(2283), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2283), + [anon_sym_EQ_EQ2] = ACTIONS(2283), + [anon_sym_BANG_EQ2] = ACTIONS(2283), + [anon_sym_LT2] = ACTIONS(2285), + [anon_sym_LT_EQ2] = ACTIONS(2283), + [anon_sym_GT_EQ2] = ACTIONS(2283), + [anon_sym_EQ_TILDE2] = ACTIONS(2283), + [anon_sym_BANG_TILDE2] = ACTIONS(2283), + [anon_sym_like2] = ACTIONS(2283), + [anon_sym_not_DASHlike2] = ACTIONS(2283), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2283), + [anon_sym_PLUS_PLUS2] = ACTIONS(2283), + [anon_sym_SLASH2] = ACTIONS(2285), + [anon_sym_mod2] = ACTIONS(2283), + [anon_sym_SLASH_SLASH2] = ACTIONS(2283), + [anon_sym_PLUS2] = ACTIONS(2285), + [anon_sym_bit_DASHshl2] = ACTIONS(2283), + [anon_sym_bit_DASHshr2] = ACTIONS(2283), + [anon_sym_bit_DASHand2] = ACTIONS(2283), + [anon_sym_bit_DASHxor2] = ACTIONS(2283), + [anon_sym_bit_DASHor2] = ACTIONS(2283), + [anon_sym_err_GT] = ACTIONS(2285), + [anon_sym_out_GT] = ACTIONS(2285), + [anon_sym_e_GT] = ACTIONS(2285), + [anon_sym_o_GT] = ACTIONS(2285), + [anon_sym_err_PLUSout_GT] = ACTIONS(2285), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2285), + [anon_sym_o_PLUSe_GT] = ACTIONS(2285), + [anon_sym_e_PLUSo_GT] = ACTIONS(2285), + [anon_sym_err_GT_GT] = ACTIONS(2283), + [anon_sym_out_GT_GT] = ACTIONS(2283), + [anon_sym_e_GT_GT] = ACTIONS(2283), + [anon_sym_o_GT_GT] = ACTIONS(2283), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2283), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2283), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2283), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2283), + [anon_sym_POUND] = ACTIONS(3), + }, + [730] = { + [sym__expr_parenthesized_immediate] = STATE(5375), + [sym_comment] = STATE(730), + [anon_sym_in] = ACTIONS(2287), + [sym__newline] = ACTIONS(2287), + [anon_sym_SEMI] = ACTIONS(2287), + [anon_sym_PIPE] = ACTIONS(2287), + [anon_sym_err_GT_PIPE] = ACTIONS(2287), + [anon_sym_out_GT_PIPE] = ACTIONS(2287), + [anon_sym_e_GT_PIPE] = ACTIONS(2287), + [anon_sym_o_GT_PIPE] = ACTIONS(2287), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2287), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2287), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2287), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2287), + [anon_sym_RPAREN] = ACTIONS(2287), + [anon_sym_GT2] = ACTIONS(2289), + [anon_sym_DASH2] = ACTIONS(2287), + [anon_sym_LBRACE] = ACTIONS(2287), + [anon_sym_RBRACE] = ACTIONS(2287), + [anon_sym_EQ_GT] = ACTIONS(2287), + [anon_sym_STAR2] = ACTIONS(2289), + [anon_sym_and2] = ACTIONS(2287), + [anon_sym_xor2] = ACTIONS(2287), + [anon_sym_or2] = ACTIONS(2287), + [anon_sym_not_DASHin2] = ACTIONS(2287), + [anon_sym_has2] = ACTIONS(2287), + [anon_sym_not_DASHhas2] = ACTIONS(2287), + [anon_sym_starts_DASHwith2] = ACTIONS(2287), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2287), + [anon_sym_ends_DASHwith2] = ACTIONS(2287), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2287), + [anon_sym_EQ_EQ2] = ACTIONS(2287), + [anon_sym_BANG_EQ2] = ACTIONS(2287), + [anon_sym_LT2] = ACTIONS(2289), + [anon_sym_LT_EQ2] = ACTIONS(2287), + [anon_sym_GT_EQ2] = ACTIONS(2287), + [anon_sym_EQ_TILDE2] = ACTIONS(2287), + [anon_sym_BANG_TILDE2] = ACTIONS(2287), + [anon_sym_like2] = ACTIONS(2287), + [anon_sym_not_DASHlike2] = ACTIONS(2287), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2287), + [anon_sym_PLUS_PLUS2] = ACTIONS(2287), + [anon_sym_SLASH2] = ACTIONS(2289), + [anon_sym_mod2] = ACTIONS(2287), + [anon_sym_SLASH_SLASH2] = ACTIONS(2287), + [anon_sym_PLUS2] = ACTIONS(2289), + [anon_sym_bit_DASHshl2] = ACTIONS(2287), + [anon_sym_bit_DASHshr2] = ACTIONS(2287), + [anon_sym_bit_DASHand2] = ACTIONS(2287), + [anon_sym_bit_DASHxor2] = ACTIONS(2287), + [anon_sym_bit_DASHor2] = ACTIONS(2287), + [anon_sym_err_GT] = ACTIONS(2289), + [anon_sym_out_GT] = ACTIONS(2289), + [anon_sym_e_GT] = ACTIONS(2289), + [anon_sym_o_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT] = ACTIONS(2289), + [anon_sym_err_GT_GT] = ACTIONS(2287), + [anon_sym_out_GT_GT] = ACTIONS(2287), + [anon_sym_e_GT_GT] = ACTIONS(2287), + [anon_sym_o_GT_GT] = ACTIONS(2287), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2287), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2287), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2287), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2287), + [anon_sym_POUND] = ACTIONS(3), + }, + [731] = { + [sym_comment] = STATE(731), + [anon_sym_in] = ACTIONS(2099), + [sym__newline] = ACTIONS(2099), + [anon_sym_SEMI] = ACTIONS(2099), + [anon_sym_PIPE] = ACTIONS(2099), + [anon_sym_err_GT_PIPE] = ACTIONS(2099), + [anon_sym_out_GT_PIPE] = ACTIONS(2099), + [anon_sym_e_GT_PIPE] = ACTIONS(2099), + [anon_sym_o_GT_PIPE] = ACTIONS(2099), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2099), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2099), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2099), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2099), + [anon_sym_RPAREN] = ACTIONS(2099), + [anon_sym_GT2] = ACTIONS(2101), + [anon_sym_DASH2] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_RBRACE] = ACTIONS(2099), + [anon_sym_STAR2] = ACTIONS(2101), + [anon_sym_and2] = ACTIONS(2099), + [anon_sym_xor2] = ACTIONS(2099), + [anon_sym_or2] = ACTIONS(2099), + [anon_sym_not_DASHin2] = ACTIONS(2099), + [anon_sym_has2] = ACTIONS(2099), + [anon_sym_not_DASHhas2] = ACTIONS(2099), + [anon_sym_starts_DASHwith2] = ACTIONS(2099), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2099), + [anon_sym_ends_DASHwith2] = ACTIONS(2099), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2099), + [anon_sym_EQ_EQ2] = ACTIONS(2099), + [anon_sym_BANG_EQ2] = ACTIONS(2099), + [anon_sym_LT2] = ACTIONS(2101), + [anon_sym_LT_EQ2] = ACTIONS(2099), + [anon_sym_GT_EQ2] = ACTIONS(2099), + [anon_sym_EQ_TILDE2] = ACTIONS(2099), + [anon_sym_BANG_TILDE2] = ACTIONS(2099), + [anon_sym_like2] = ACTIONS(2099), + [anon_sym_not_DASHlike2] = ACTIONS(2099), + [anon_sym_STAR_STAR2] = ACTIONS(2099), + [anon_sym_PLUS_PLUS2] = ACTIONS(2099), + [anon_sym_SLASH2] = ACTIONS(2101), + [anon_sym_mod2] = ACTIONS(2099), + [anon_sym_SLASH_SLASH2] = ACTIONS(2099), + [anon_sym_PLUS2] = ACTIONS(2101), + [anon_sym_bit_DASHshl2] = ACTIONS(2099), + [anon_sym_bit_DASHshr2] = ACTIONS(2099), + [anon_sym_bit_DASHand2] = ACTIONS(2099), + [anon_sym_bit_DASHxor2] = ACTIONS(2099), + [anon_sym_bit_DASHor2] = ACTIONS(2099), + [anon_sym_DOT_DOT2] = ACTIONS(2291), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2293), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2293), + [anon_sym_err_GT] = ACTIONS(2101), + [anon_sym_out_GT] = ACTIONS(2101), + [anon_sym_e_GT] = ACTIONS(2101), + [anon_sym_o_GT] = ACTIONS(2101), + [anon_sym_err_PLUSout_GT] = ACTIONS(2101), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2101), + [anon_sym_o_PLUSe_GT] = ACTIONS(2101), + [anon_sym_e_PLUSo_GT] = ACTIONS(2101), + [anon_sym_err_GT_GT] = ACTIONS(2099), + [anon_sym_out_GT_GT] = ACTIONS(2099), + [anon_sym_e_GT_GT] = ACTIONS(2099), + [anon_sym_o_GT_GT] = ACTIONS(2099), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2099), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2099), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2099), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2099), + [anon_sym_POUND] = ACTIONS(3), + }, + [732] = { + [aux_sym__repeat_newline] = STATE(732), [sym_comment] = STATE(732), - [aux_sym__match_pattern_record_body_repeat1] = STATE(732), - [anon_sym_export] = ACTIONS(2285), - [anon_sym_alias] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_mut] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [aux_sym_cmd_identifier_token1] = ACTIONS(2291), - [anon_sym_def] = ACTIONS(2288), - [anon_sym_use] = ACTIONS(2288), - [anon_sym_export_DASHenv] = ACTIONS(2288), - [anon_sym_extern] = ACTIONS(2288), - [anon_sym_module] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_loop] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_else] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_catch] = ACTIONS(2288), - [anon_sym_finally] = ACTIONS(2288), - [anon_sym_match] = ACTIONS(2288), - [anon_sym_in] = ACTIONS(2285), - [anon_sym_true] = ACTIONS(2294), - [anon_sym_false] = ACTIONS(2294), - [anon_sym_null] = ACTIONS(2294), - [aux_sym_cmd_identifier_token3] = ACTIONS(2297), - [aux_sym_cmd_identifier_token4] = ACTIONS(2297), - [aux_sym_cmd_identifier_token5] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2300), - [anon_sym_DOLLAR] = ACTIONS(2303), - [anon_sym_DASH2] = ACTIONS(2306), - [anon_sym_PLUS2] = ACTIONS(2306), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2309), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2312), - [aux_sym__val_number_decimal_token1] = ACTIONS(2315), - [aux_sym__val_number_decimal_token2] = ACTIONS(2318), - [aux_sym__val_number_decimal_token3] = ACTIONS(2321), - [aux_sym__val_number_decimal_token4] = ACTIONS(2321), - [aux_sym__val_number_token1] = ACTIONS(2324), - [aux_sym__val_number_token2] = ACTIONS(2324), - [aux_sym__val_number_token3] = ACTIONS(2324), - [anon_sym_DQUOTE] = ACTIONS(2327), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_BQUOTE] = ACTIONS(2333), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2336), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2339), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2342), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2345), - }, - [STATE(733)] = { + [anon_sym_export] = ACTIONS(1943), + [anon_sym_alias] = ACTIONS(1938), + [anon_sym_let] = ACTIONS(1938), + [anon_sym_mut] = ACTIONS(1938), + [anon_sym_const] = ACTIONS(1938), + [aux_sym_cmd_identifier_token1] = ACTIONS(1943), + [anon_sym_def] = ACTIONS(1938), + [anon_sym_use] = ACTIONS(1938), + [anon_sym_export_DASHenv] = ACTIONS(1938), + [anon_sym_extern] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_for] = ACTIONS(1938), + [anon_sym_loop] = ACTIONS(1938), + [anon_sym_while] = ACTIONS(1938), + [anon_sym_if] = ACTIONS(1938), + [anon_sym_else] = ACTIONS(1938), + [anon_sym_try] = ACTIONS(1938), + [anon_sym_catch] = ACTIONS(1938), + [anon_sym_finally] = ACTIONS(1938), + [anon_sym_match] = ACTIONS(1938), + [anon_sym_in] = ACTIONS(1943), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1938), + [aux_sym_cmd_identifier_token3] = ACTIONS(1938), + [aux_sym_cmd_identifier_token4] = ACTIONS(1938), + [aux_sym_cmd_identifier_token5] = ACTIONS(1938), + [sym__newline] = ACTIONS(2295), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_err_GT_PIPE] = ACTIONS(1938), + [anon_sym_out_GT_PIPE] = ACTIONS(1938), + [anon_sym_e_GT_PIPE] = ACTIONS(1938), + [anon_sym_o_GT_PIPE] = ACTIONS(1938), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1938), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1938), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1938), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1938), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_LPAREN] = ACTIONS(1938), + [anon_sym_DOLLAR] = ACTIONS(1943), + [anon_sym_DASH2] = ACTIONS(1943), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_where] = ACTIONS(1938), + [aux_sym_expr_unary_token1] = ACTIONS(1938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1938), + [anon_sym_DOT_DOT_LT] = ACTIONS(1938), + [aux_sym__val_number_decimal_token1] = ACTIONS(1943), + [aux_sym__val_number_decimal_token2] = ACTIONS(1938), + [aux_sym__val_number_decimal_token3] = ACTIONS(1938), + [aux_sym__val_number_decimal_token4] = ACTIONS(1938), + [aux_sym__val_number_token1] = ACTIONS(1938), + [aux_sym__val_number_token2] = ACTIONS(1938), + [aux_sym__val_number_token3] = ACTIONS(1938), + [anon_sym_0b] = ACTIONS(1943), + [anon_sym_0o] = ACTIONS(1943), + [anon_sym_0x] = ACTIONS(1943), + [sym_val_date] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_BQUOTE] = ACTIONS(1938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1938), + [anon_sym_CARET] = ACTIONS(1938), + [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1938), + }, + [733] = { + [sym__expr_parenthesized_immediate] = STATE(5375), [sym_comment] = STATE(733), - [anon_sym_if] = ACTIONS(2348), - [anon_sym_in] = ACTIONS(2348), - [sym__newline] = ACTIONS(2348), - [anon_sym_SEMI] = ACTIONS(2348), - [anon_sym_PIPE] = ACTIONS(2348), - [anon_sym_err_GT_PIPE] = ACTIONS(2348), - [anon_sym_out_GT_PIPE] = ACTIONS(2348), - [anon_sym_e_GT_PIPE] = ACTIONS(2348), - [anon_sym_o_GT_PIPE] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2348), - [anon_sym_RPAREN] = ACTIONS(2348), - [anon_sym_GT2] = ACTIONS(2350), - [anon_sym_DASH2] = ACTIONS(2348), - [anon_sym_LBRACE] = ACTIONS(2348), - [anon_sym_RBRACE] = ACTIONS(2348), - [anon_sym_EQ_GT] = ACTIONS(2348), - [anon_sym_STAR2] = ACTIONS(2350), - [anon_sym_and2] = ACTIONS(2348), - [anon_sym_xor2] = ACTIONS(2348), - [anon_sym_or2] = ACTIONS(2348), - [anon_sym_not_DASHin2] = ACTIONS(2348), - [anon_sym_has2] = ACTIONS(2348), - [anon_sym_not_DASHhas2] = ACTIONS(2348), - [anon_sym_starts_DASHwith2] = ACTIONS(2348), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2348), - [anon_sym_ends_DASHwith2] = ACTIONS(2348), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2348), - [anon_sym_EQ_EQ2] = ACTIONS(2348), - [anon_sym_BANG_EQ2] = ACTIONS(2348), - [anon_sym_LT2] = ACTIONS(2350), - [anon_sym_LT_EQ2] = ACTIONS(2348), - [anon_sym_GT_EQ2] = ACTIONS(2348), - [anon_sym_EQ_TILDE2] = ACTIONS(2348), - [anon_sym_BANG_TILDE2] = ACTIONS(2348), - [anon_sym_like2] = ACTIONS(2348), - [anon_sym_not_DASHlike2] = ACTIONS(2348), - [anon_sym_LPAREN2] = ACTIONS(2348), - [anon_sym_STAR_STAR2] = ACTIONS(2348), - [anon_sym_PLUS_PLUS2] = ACTIONS(2348), - [anon_sym_SLASH2] = ACTIONS(2350), - [anon_sym_mod2] = ACTIONS(2348), - [anon_sym_SLASH_SLASH2] = ACTIONS(2348), - [anon_sym_PLUS2] = ACTIONS(2350), - [anon_sym_bit_DASHshl2] = ACTIONS(2348), - [anon_sym_bit_DASHshr2] = ACTIONS(2348), - [anon_sym_bit_DASHand2] = ACTIONS(2348), - [anon_sym_bit_DASHxor2] = ACTIONS(2348), - [anon_sym_bit_DASHor2] = ACTIONS(2348), - [anon_sym_err_GT] = ACTIONS(2350), - [anon_sym_out_GT] = ACTIONS(2350), - [anon_sym_e_GT] = ACTIONS(2350), - [anon_sym_o_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT] = ACTIONS(2350), - [anon_sym_err_GT_GT] = ACTIONS(2348), - [anon_sym_out_GT_GT] = ACTIONS(2348), - [anon_sym_e_GT_GT] = ACTIONS(2348), - [anon_sym_o_GT_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2348), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(734)] = { - [aux_sym__repeat_newline] = STATE(734), + [anon_sym_in] = ACTIONS(2298), + [sym__newline] = ACTIONS(2298), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_PIPE] = ACTIONS(2298), + [anon_sym_err_GT_PIPE] = ACTIONS(2298), + [anon_sym_out_GT_PIPE] = ACTIONS(2298), + [anon_sym_e_GT_PIPE] = ACTIONS(2298), + [anon_sym_o_GT_PIPE] = ACTIONS(2298), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2298), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2298), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2298), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2298), + [anon_sym_RPAREN] = ACTIONS(2298), + [anon_sym_GT2] = ACTIONS(2300), + [anon_sym_DASH2] = ACTIONS(2298), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2298), + [anon_sym_EQ_GT] = ACTIONS(2298), + [anon_sym_STAR2] = ACTIONS(2300), + [anon_sym_and2] = ACTIONS(2298), + [anon_sym_xor2] = ACTIONS(2298), + [anon_sym_or2] = ACTIONS(2298), + [anon_sym_not_DASHin2] = ACTIONS(2298), + [anon_sym_has2] = ACTIONS(2298), + [anon_sym_not_DASHhas2] = ACTIONS(2298), + [anon_sym_starts_DASHwith2] = ACTIONS(2298), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2298), + [anon_sym_ends_DASHwith2] = ACTIONS(2298), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2298), + [anon_sym_EQ_EQ2] = ACTIONS(2298), + [anon_sym_BANG_EQ2] = ACTIONS(2298), + [anon_sym_LT2] = ACTIONS(2300), + [anon_sym_LT_EQ2] = ACTIONS(2298), + [anon_sym_GT_EQ2] = ACTIONS(2298), + [anon_sym_EQ_TILDE2] = ACTIONS(2298), + [anon_sym_BANG_TILDE2] = ACTIONS(2298), + [anon_sym_like2] = ACTIONS(2298), + [anon_sym_not_DASHlike2] = ACTIONS(2298), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2298), + [anon_sym_PLUS_PLUS2] = ACTIONS(2298), + [anon_sym_SLASH2] = ACTIONS(2300), + [anon_sym_mod2] = ACTIONS(2298), + [anon_sym_SLASH_SLASH2] = ACTIONS(2298), + [anon_sym_PLUS2] = ACTIONS(2300), + [anon_sym_bit_DASHshl2] = ACTIONS(2298), + [anon_sym_bit_DASHshr2] = ACTIONS(2298), + [anon_sym_bit_DASHand2] = ACTIONS(2298), + [anon_sym_bit_DASHxor2] = ACTIONS(2298), + [anon_sym_bit_DASHor2] = ACTIONS(2298), + [anon_sym_err_GT] = ACTIONS(2300), + [anon_sym_out_GT] = ACTIONS(2300), + [anon_sym_e_GT] = ACTIONS(2300), + [anon_sym_o_GT] = ACTIONS(2300), + [anon_sym_err_PLUSout_GT] = ACTIONS(2300), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2300), + [anon_sym_o_PLUSe_GT] = ACTIONS(2300), + [anon_sym_e_PLUSo_GT] = ACTIONS(2300), + [anon_sym_err_GT_GT] = ACTIONS(2298), + [anon_sym_out_GT_GT] = ACTIONS(2298), + [anon_sym_e_GT_GT] = ACTIONS(2298), + [anon_sym_o_GT_GT] = ACTIONS(2298), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2298), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2298), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2298), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2298), + [anon_sym_POUND] = ACTIONS(3), + }, + [734] = { [sym_comment] = STATE(734), - [anon_sym_export] = ACTIONS(1893), - [anon_sym_alias] = ACTIONS(1888), - [anon_sym_let] = ACTIONS(1888), - [anon_sym_mut] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(1888), - [aux_sym_cmd_identifier_token1] = ACTIONS(1893), - [anon_sym_def] = ACTIONS(1888), - [anon_sym_use] = ACTIONS(1888), - [anon_sym_export_DASHenv] = ACTIONS(1888), - [anon_sym_extern] = ACTIONS(1888), - [anon_sym_module] = ACTIONS(1888), - [anon_sym_for] = ACTIONS(1888), - [anon_sym_loop] = ACTIONS(1888), - [anon_sym_while] = ACTIONS(1888), - [anon_sym_if] = ACTIONS(1888), - [anon_sym_else] = ACTIONS(1888), - [anon_sym_try] = ACTIONS(1888), - [anon_sym_catch] = ACTIONS(1888), - [anon_sym_finally] = ACTIONS(1888), - [anon_sym_match] = ACTIONS(1888), - [anon_sym_in] = ACTIONS(1893), - [anon_sym_true] = ACTIONS(1888), - [anon_sym_false] = ACTIONS(1888), - [anon_sym_null] = ACTIONS(1888), - [aux_sym_cmd_identifier_token3] = ACTIONS(1888), - [aux_sym_cmd_identifier_token4] = ACTIONS(1888), - [aux_sym_cmd_identifier_token5] = ACTIONS(1888), - [sym__newline] = ACTIONS(2352), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_err_GT_PIPE] = ACTIONS(1888), - [anon_sym_out_GT_PIPE] = ACTIONS(1888), - [anon_sym_e_GT_PIPE] = ACTIONS(1888), - [anon_sym_o_GT_PIPE] = ACTIONS(1888), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1888), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1888), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1888), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1888), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_DASH2] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1888), - [anon_sym_DOT_DOT] = ACTIONS(1893), - [anon_sym_where] = ACTIONS(1888), - [aux_sym_expr_unary_token1] = ACTIONS(1888), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1888), - [anon_sym_DOT_DOT_LT] = ACTIONS(1888), - [aux_sym__val_number_decimal_token1] = ACTIONS(1893), - [aux_sym__val_number_decimal_token2] = ACTIONS(1888), - [aux_sym__val_number_decimal_token3] = ACTIONS(1888), - [aux_sym__val_number_decimal_token4] = ACTIONS(1888), - [aux_sym__val_number_token1] = ACTIONS(1888), - [aux_sym__val_number_token2] = ACTIONS(1888), - [aux_sym__val_number_token3] = ACTIONS(1888), - [anon_sym_0b] = ACTIONS(1893), - [anon_sym_0o] = ACTIONS(1893), - [anon_sym_0x] = ACTIONS(1893), - [sym_val_date] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_SQUOTE] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1888), - [anon_sym_CARET] = ACTIONS(1888), - [anon_sym_PERCENT] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1888), - }, - [STATE(735)] = { - [aux_sym__repeat_newline] = STATE(734), + [ts_builtin_sym_end] = ACTIONS(2099), + [anon_sym_in] = ACTIONS(2099), + [sym__newline] = ACTIONS(2099), + [anon_sym_SEMI] = ACTIONS(2099), + [anon_sym_PIPE] = ACTIONS(2099), + [anon_sym_err_GT_PIPE] = ACTIONS(2099), + [anon_sym_out_GT_PIPE] = ACTIONS(2099), + [anon_sym_e_GT_PIPE] = ACTIONS(2099), + [anon_sym_o_GT_PIPE] = ACTIONS(2099), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2099), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2099), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2099), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2099), + [anon_sym_GT2] = ACTIONS(2101), + [anon_sym_DASH2] = ACTIONS(2099), + [anon_sym_STAR2] = ACTIONS(2101), + [anon_sym_and2] = ACTIONS(2099), + [anon_sym_xor2] = ACTIONS(2099), + [anon_sym_or2] = ACTIONS(2099), + [anon_sym_not_DASHin2] = ACTIONS(2099), + [anon_sym_has2] = ACTIONS(2099), + [anon_sym_not_DASHhas2] = ACTIONS(2099), + [anon_sym_starts_DASHwith2] = ACTIONS(2099), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2099), + [anon_sym_ends_DASHwith2] = ACTIONS(2099), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2099), + [anon_sym_EQ_EQ2] = ACTIONS(2099), + [anon_sym_BANG_EQ2] = ACTIONS(2099), + [anon_sym_LT2] = ACTIONS(2101), + [anon_sym_LT_EQ2] = ACTIONS(2099), + [anon_sym_GT_EQ2] = ACTIONS(2099), + [anon_sym_EQ_TILDE2] = ACTIONS(2099), + [anon_sym_BANG_TILDE2] = ACTIONS(2099), + [anon_sym_like2] = ACTIONS(2099), + [anon_sym_not_DASHlike2] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(2103), + [anon_sym_STAR_STAR2] = ACTIONS(2099), + [anon_sym_PLUS_PLUS2] = ACTIONS(2099), + [anon_sym_SLASH2] = ACTIONS(2101), + [anon_sym_mod2] = ACTIONS(2099), + [anon_sym_SLASH_SLASH2] = ACTIONS(2099), + [anon_sym_PLUS2] = ACTIONS(2101), + [anon_sym_bit_DASHshl2] = ACTIONS(2099), + [anon_sym_bit_DASHshr2] = ACTIONS(2099), + [anon_sym_bit_DASHand2] = ACTIONS(2099), + [anon_sym_bit_DASHxor2] = ACTIONS(2099), + [anon_sym_bit_DASHor2] = ACTIONS(2099), + [anon_sym_DOT_DOT2] = ACTIONS(2302), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2304), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2304), + [anon_sym_err_GT] = ACTIONS(2101), + [anon_sym_out_GT] = ACTIONS(2101), + [anon_sym_e_GT] = ACTIONS(2101), + [anon_sym_o_GT] = ACTIONS(2101), + [anon_sym_err_PLUSout_GT] = ACTIONS(2101), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2101), + [anon_sym_o_PLUSe_GT] = ACTIONS(2101), + [anon_sym_e_PLUSo_GT] = ACTIONS(2101), + [anon_sym_err_GT_GT] = ACTIONS(2099), + [anon_sym_out_GT_GT] = ACTIONS(2099), + [anon_sym_e_GT_GT] = ACTIONS(2099), + [anon_sym_o_GT_GT] = ACTIONS(2099), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2099), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2099), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2099), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2099), + [sym__unquoted_pattern] = ACTIONS(2109), + [anon_sym_POUND] = ACTIONS(3), + }, + [735] = { + [sym__expr_parenthesized_immediate] = STATE(5101), [sym_comment] = STATE(735), - [anon_sym_export] = ACTIONS(2355), - [anon_sym_alias] = ACTIONS(2357), - [anon_sym_let] = ACTIONS(2357), - [anon_sym_mut] = ACTIONS(2357), - [anon_sym_const] = ACTIONS(2357), - [aux_sym_cmd_identifier_token1] = ACTIONS(2355), - [anon_sym_def] = ACTIONS(2357), - [anon_sym_use] = ACTIONS(2357), - [anon_sym_export_DASHenv] = ACTIONS(2357), - [anon_sym_extern] = ACTIONS(2357), - [anon_sym_module] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2357), - [anon_sym_loop] = ACTIONS(2357), - [anon_sym_while] = ACTIONS(2357), - [anon_sym_if] = ACTIONS(2357), - [anon_sym_else] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2357), - [anon_sym_catch] = ACTIONS(2357), - [anon_sym_finally] = ACTIONS(2357), - [anon_sym_match] = ACTIONS(2357), - [anon_sym_in] = ACTIONS(2355), - [anon_sym_true] = ACTIONS(2357), - [anon_sym_false] = ACTIONS(2357), - [anon_sym_null] = ACTIONS(2357), - [aux_sym_cmd_identifier_token3] = ACTIONS(2357), - [aux_sym_cmd_identifier_token4] = ACTIONS(2357), - [aux_sym_cmd_identifier_token5] = ACTIONS(2357), - [sym__newline] = ACTIONS(2073), - [anon_sym_PIPE] = ACTIONS(2359), - [anon_sym_err_GT_PIPE] = ACTIONS(2359), - [anon_sym_out_GT_PIPE] = ACTIONS(2359), - [anon_sym_e_GT_PIPE] = ACTIONS(2359), - [anon_sym_o_GT_PIPE] = ACTIONS(2359), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2359), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2359), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2359), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2355), - [anon_sym_DASH2] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_DOT_DOT] = ACTIONS(2355), - [anon_sym_where] = ACTIONS(2357), - [aux_sym_expr_unary_token1] = ACTIONS(2357), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2357), - [anon_sym_DOT_DOT_LT] = ACTIONS(2357), - [aux_sym__val_number_decimal_token1] = ACTIONS(2355), - [aux_sym__val_number_decimal_token2] = ACTIONS(2357), - [aux_sym__val_number_decimal_token3] = ACTIONS(2357), - [aux_sym__val_number_decimal_token4] = ACTIONS(2357), - [aux_sym__val_number_token1] = ACTIONS(2357), - [aux_sym__val_number_token2] = ACTIONS(2357), - [aux_sym__val_number_token3] = ACTIONS(2357), - [anon_sym_0b] = ACTIONS(2355), - [anon_sym_0o] = ACTIONS(2355), - [anon_sym_0x] = ACTIONS(2355), - [sym_val_date] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2357), - [anon_sym_SQUOTE] = ACTIONS(2357), - [anon_sym_BQUOTE] = ACTIONS(2357), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2357), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2357), - [anon_sym_CARET] = ACTIONS(2357), - [anon_sym_PERCENT] = ACTIONS(2357), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2357), - }, - [STATE(736)] = { + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [736] = { [sym_comment] = STATE(736), - [anon_sym_if] = ACTIONS(2361), - [anon_sym_in] = ACTIONS(2361), - [sym__newline] = ACTIONS(2361), - [anon_sym_SEMI] = ACTIONS(2361), - [anon_sym_PIPE] = ACTIONS(2361), - [anon_sym_err_GT_PIPE] = ACTIONS(2361), - [anon_sym_out_GT_PIPE] = ACTIONS(2361), - [anon_sym_e_GT_PIPE] = ACTIONS(2361), - [anon_sym_o_GT_PIPE] = ACTIONS(2361), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2361), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2361), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2361), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2361), - [anon_sym_RPAREN] = ACTIONS(2361), - [anon_sym_GT2] = ACTIONS(2363), - [anon_sym_DASH2] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2361), - [anon_sym_RBRACE] = ACTIONS(2361), - [anon_sym_EQ_GT] = ACTIONS(2361), - [anon_sym_STAR2] = ACTIONS(2363), - [anon_sym_and2] = ACTIONS(2361), - [anon_sym_xor2] = ACTIONS(2361), - [anon_sym_or2] = ACTIONS(2361), - [anon_sym_not_DASHin2] = ACTIONS(2361), - [anon_sym_has2] = ACTIONS(2361), - [anon_sym_not_DASHhas2] = ACTIONS(2361), - [anon_sym_starts_DASHwith2] = ACTIONS(2361), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2361), - [anon_sym_ends_DASHwith2] = ACTIONS(2361), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2361), - [anon_sym_EQ_EQ2] = ACTIONS(2361), - [anon_sym_BANG_EQ2] = ACTIONS(2361), - [anon_sym_LT2] = ACTIONS(2363), - [anon_sym_LT_EQ2] = ACTIONS(2361), - [anon_sym_GT_EQ2] = ACTIONS(2361), - [anon_sym_EQ_TILDE2] = ACTIONS(2361), - [anon_sym_BANG_TILDE2] = ACTIONS(2361), - [anon_sym_like2] = ACTIONS(2361), - [anon_sym_not_DASHlike2] = ACTIONS(2361), - [anon_sym_LPAREN2] = ACTIONS(2361), - [anon_sym_STAR_STAR2] = ACTIONS(2361), - [anon_sym_PLUS_PLUS2] = ACTIONS(2361), - [anon_sym_SLASH2] = ACTIONS(2363), - [anon_sym_mod2] = ACTIONS(2361), - [anon_sym_SLASH_SLASH2] = ACTIONS(2361), - [anon_sym_PLUS2] = ACTIONS(2363), - [anon_sym_bit_DASHshl2] = ACTIONS(2361), - [anon_sym_bit_DASHshr2] = ACTIONS(2361), - [anon_sym_bit_DASHand2] = ACTIONS(2361), - [anon_sym_bit_DASHxor2] = ACTIONS(2361), - [anon_sym_bit_DASHor2] = ACTIONS(2361), - [anon_sym_err_GT] = ACTIONS(2363), - [anon_sym_out_GT] = ACTIONS(2363), - [anon_sym_e_GT] = ACTIONS(2363), - [anon_sym_o_GT] = ACTIONS(2363), - [anon_sym_err_PLUSout_GT] = ACTIONS(2363), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2363), - [anon_sym_o_PLUSe_GT] = ACTIONS(2363), - [anon_sym_e_PLUSo_GT] = ACTIONS(2363), - [anon_sym_err_GT_GT] = ACTIONS(2361), - [anon_sym_out_GT_GT] = ACTIONS(2361), - [anon_sym_e_GT_GT] = ACTIONS(2361), - [anon_sym_o_GT_GT] = ACTIONS(2361), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2361), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2361), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2361), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2361), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(737)] = { + [ts_builtin_sym_end] = ACTIONS(1945), + [anon_sym_in] = ACTIONS(1945), + [sym__newline] = ACTIONS(1945), + [anon_sym_SEMI] = ACTIONS(1945), + [anon_sym_PIPE] = ACTIONS(1945), + [anon_sym_err_GT_PIPE] = ACTIONS(1945), + [anon_sym_out_GT_PIPE] = ACTIONS(1945), + [anon_sym_e_GT_PIPE] = ACTIONS(1945), + [anon_sym_o_GT_PIPE] = ACTIONS(1945), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1945), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1945), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1945), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1945), + [anon_sym_GT2] = ACTIONS(1947), + [anon_sym_DASH2] = ACTIONS(1945), + [anon_sym_STAR2] = ACTIONS(1947), + [anon_sym_and2] = ACTIONS(1945), + [anon_sym_xor2] = ACTIONS(1945), + [anon_sym_or2] = ACTIONS(1945), + [anon_sym_not_DASHin2] = ACTIONS(1945), + [anon_sym_has2] = ACTIONS(1945), + [anon_sym_not_DASHhas2] = ACTIONS(1945), + [anon_sym_starts_DASHwith2] = ACTIONS(1945), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1945), + [anon_sym_ends_DASHwith2] = ACTIONS(1945), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1945), + [anon_sym_EQ_EQ2] = ACTIONS(1945), + [anon_sym_BANG_EQ2] = ACTIONS(1945), + [anon_sym_LT2] = ACTIONS(1947), + [anon_sym_LT_EQ2] = ACTIONS(1945), + [anon_sym_GT_EQ2] = ACTIONS(1945), + [anon_sym_EQ_TILDE2] = ACTIONS(1945), + [anon_sym_BANG_TILDE2] = ACTIONS(1945), + [anon_sym_like2] = ACTIONS(1945), + [anon_sym_not_DASHlike2] = ACTIONS(1945), + [anon_sym_LPAREN2] = ACTIONS(1945), + [anon_sym_STAR_STAR2] = ACTIONS(1945), + [anon_sym_PLUS_PLUS2] = ACTIONS(1945), + [anon_sym_SLASH2] = ACTIONS(1947), + [anon_sym_mod2] = ACTIONS(1945), + [anon_sym_SLASH_SLASH2] = ACTIONS(1945), + [anon_sym_PLUS2] = ACTIONS(1947), + [anon_sym_bit_DASHshl2] = ACTIONS(1945), + [anon_sym_bit_DASHshr2] = ACTIONS(1945), + [anon_sym_bit_DASHand2] = ACTIONS(1945), + [anon_sym_bit_DASHxor2] = ACTIONS(1945), + [anon_sym_bit_DASHor2] = ACTIONS(1945), + [anon_sym_DOT_DOT2] = ACTIONS(1947), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1945), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1945), + [anon_sym_err_GT] = ACTIONS(1947), + [anon_sym_out_GT] = ACTIONS(1947), + [anon_sym_e_GT] = ACTIONS(1947), + [anon_sym_o_GT] = ACTIONS(1947), + [anon_sym_err_PLUSout_GT] = ACTIONS(1947), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1947), + [anon_sym_o_PLUSe_GT] = ACTIONS(1947), + [anon_sym_e_PLUSo_GT] = ACTIONS(1947), + [anon_sym_err_GT_GT] = ACTIONS(1945), + [anon_sym_out_GT_GT] = ACTIONS(1945), + [anon_sym_e_GT_GT] = ACTIONS(1945), + [anon_sym_o_GT_GT] = ACTIONS(1945), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1945), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1945), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1945), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1945), + [sym__unquoted_pattern] = ACTIONS(1947), + [anon_sym_POUND] = ACTIONS(3), + }, + [737] = { [sym_comment] = STATE(737), - [ts_builtin_sym_end] = ACTIONS(1557), - [anon_sym_in] = ACTIONS(1557), - [sym__newline] = ACTIONS(1557), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_PIPE] = ACTIONS(1557), - [anon_sym_err_GT_PIPE] = ACTIONS(1557), - [anon_sym_out_GT_PIPE] = ACTIONS(1557), - [anon_sym_e_GT_PIPE] = ACTIONS(1557), - [anon_sym_o_GT_PIPE] = ACTIONS(1557), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), - [anon_sym_COLON] = ACTIONS(1557), - [anon_sym_GT2] = ACTIONS(1555), - [anon_sym_DASH2] = ACTIONS(1557), - [anon_sym_STAR2] = ACTIONS(1555), - [anon_sym_and2] = ACTIONS(1557), - [anon_sym_xor2] = ACTIONS(1557), - [anon_sym_or2] = ACTIONS(1557), - [anon_sym_not_DASHin2] = ACTIONS(1557), - [anon_sym_has2] = ACTIONS(1557), - [anon_sym_not_DASHhas2] = ACTIONS(1557), - [anon_sym_starts_DASHwith2] = ACTIONS(1557), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1557), - [anon_sym_ends_DASHwith2] = ACTIONS(1557), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1557), - [anon_sym_EQ_EQ2] = ACTIONS(1557), - [anon_sym_BANG_EQ2] = ACTIONS(1557), - [anon_sym_LT2] = ACTIONS(1555), - [anon_sym_LT_EQ2] = ACTIONS(1557), - [anon_sym_GT_EQ2] = ACTIONS(1557), - [anon_sym_EQ_TILDE2] = ACTIONS(1557), - [anon_sym_BANG_TILDE2] = ACTIONS(1557), - [anon_sym_like2] = ACTIONS(1557), - [anon_sym_not_DASHlike2] = ACTIONS(1557), - [anon_sym_STAR_STAR2] = ACTIONS(1557), - [anon_sym_PLUS_PLUS2] = ACTIONS(1557), - [anon_sym_SLASH2] = ACTIONS(1555), - [anon_sym_mod2] = ACTIONS(1557), - [anon_sym_SLASH_SLASH2] = ACTIONS(1557), - [anon_sym_PLUS2] = ACTIONS(1555), - [anon_sym_bit_DASHshl2] = ACTIONS(1557), - [anon_sym_bit_DASHshr2] = ACTIONS(1557), - [anon_sym_bit_DASHand2] = ACTIONS(1557), - [anon_sym_bit_DASHxor2] = ACTIONS(1557), - [anon_sym_bit_DASHor2] = ACTIONS(1557), - [anon_sym_DOT_DOT2] = ACTIONS(1555), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1557), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1557), - [anon_sym_DOT2] = ACTIONS(1555), - [anon_sym_err_GT] = ACTIONS(1555), - [anon_sym_out_GT] = ACTIONS(1555), - [anon_sym_e_GT] = ACTIONS(1555), - [anon_sym_o_GT] = ACTIONS(1555), - [anon_sym_err_PLUSout_GT] = ACTIONS(1555), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1555), - [anon_sym_o_PLUSe_GT] = ACTIONS(1555), - [anon_sym_e_PLUSo_GT] = ACTIONS(1555), - [anon_sym_err_GT_GT] = ACTIONS(1557), - [anon_sym_out_GT_GT] = ACTIONS(1557), - [anon_sym_e_GT_GT] = ACTIONS(1557), - [anon_sym_o_GT_GT] = ACTIONS(1557), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(738)] = { + [ts_builtin_sym_end] = ACTIONS(1874), + [anon_sym_in] = ACTIONS(1874), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_GT2] = ACTIONS(1876), + [anon_sym_DASH2] = ACTIONS(1874), + [anon_sym_STAR2] = ACTIONS(1876), + [anon_sym_and2] = ACTIONS(1874), + [anon_sym_xor2] = ACTIONS(1874), + [anon_sym_or2] = ACTIONS(1874), + [anon_sym_not_DASHin2] = ACTIONS(1874), + [anon_sym_has2] = ACTIONS(1874), + [anon_sym_not_DASHhas2] = ACTIONS(1874), + [anon_sym_starts_DASHwith2] = ACTIONS(1874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1874), + [anon_sym_ends_DASHwith2] = ACTIONS(1874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1874), + [anon_sym_EQ_EQ2] = ACTIONS(1874), + [anon_sym_BANG_EQ2] = ACTIONS(1874), + [anon_sym_LT2] = ACTIONS(1876), + [anon_sym_LT_EQ2] = ACTIONS(1874), + [anon_sym_GT_EQ2] = ACTIONS(1874), + [anon_sym_EQ_TILDE2] = ACTIONS(1874), + [anon_sym_BANG_TILDE2] = ACTIONS(1874), + [anon_sym_like2] = ACTIONS(1874), + [anon_sym_not_DASHlike2] = ACTIONS(1874), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_STAR_STAR2] = ACTIONS(1874), + [anon_sym_PLUS_PLUS2] = ACTIONS(1874), + [anon_sym_SLASH2] = ACTIONS(1876), + [anon_sym_mod2] = ACTIONS(1874), + [anon_sym_SLASH_SLASH2] = ACTIONS(1874), + [anon_sym_PLUS2] = ACTIONS(1876), + [anon_sym_bit_DASHshl2] = ACTIONS(1874), + [anon_sym_bit_DASHshr2] = ACTIONS(1874), + [anon_sym_bit_DASHand2] = ACTIONS(1874), + [anon_sym_bit_DASHxor2] = ACTIONS(1874), + [anon_sym_bit_DASHor2] = ACTIONS(1874), + [anon_sym_DOT_DOT2] = ACTIONS(1876), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [anon_sym_err_GT] = ACTIONS(1876), + [anon_sym_out_GT] = ACTIONS(1876), + [anon_sym_e_GT] = ACTIONS(1876), + [anon_sym_o_GT] = ACTIONS(1876), + [anon_sym_err_PLUSout_GT] = ACTIONS(1876), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1876), + [anon_sym_o_PLUSe_GT] = ACTIONS(1876), + [anon_sym_e_PLUSo_GT] = ACTIONS(1876), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [sym__unquoted_pattern] = ACTIONS(1876), + [anon_sym_POUND] = ACTIONS(3), + }, + [738] = { [sym_comment] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(1921), - [anon_sym_in] = ACTIONS(1921), - [sym__newline] = ACTIONS(1921), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_err_GT_PIPE] = ACTIONS(1921), - [anon_sym_out_GT_PIPE] = ACTIONS(1921), - [anon_sym_e_GT_PIPE] = ACTIONS(1921), - [anon_sym_o_GT_PIPE] = ACTIONS(1921), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1921), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1921), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), - [anon_sym_GT2] = ACTIONS(1923), - [anon_sym_DASH2] = ACTIONS(1921), - [anon_sym_STAR2] = ACTIONS(1923), - [anon_sym_and2] = ACTIONS(1921), - [anon_sym_xor2] = ACTIONS(1921), - [anon_sym_or2] = ACTIONS(1921), - [anon_sym_not_DASHin2] = ACTIONS(1921), - [anon_sym_has2] = ACTIONS(1921), - [anon_sym_not_DASHhas2] = ACTIONS(1921), - [anon_sym_starts_DASHwith2] = ACTIONS(1921), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1921), - [anon_sym_ends_DASHwith2] = ACTIONS(1921), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1921), - [anon_sym_EQ_EQ2] = ACTIONS(1921), - [anon_sym_BANG_EQ2] = ACTIONS(1921), - [anon_sym_LT2] = ACTIONS(1923), - [anon_sym_LT_EQ2] = ACTIONS(1921), - [anon_sym_GT_EQ2] = ACTIONS(1921), - [anon_sym_EQ_TILDE2] = ACTIONS(1921), - [anon_sym_BANG_TILDE2] = ACTIONS(1921), - [anon_sym_like2] = ACTIONS(1921), - [anon_sym_not_DASHlike2] = ACTIONS(1921), - [anon_sym_LPAREN2] = ACTIONS(1921), - [anon_sym_STAR_STAR2] = ACTIONS(1921), - [anon_sym_PLUS_PLUS2] = ACTIONS(1921), - [anon_sym_SLASH2] = ACTIONS(1923), - [anon_sym_mod2] = ACTIONS(1921), - [anon_sym_SLASH_SLASH2] = ACTIONS(1921), - [anon_sym_PLUS2] = ACTIONS(1923), - [anon_sym_bit_DASHshl2] = ACTIONS(1921), - [anon_sym_bit_DASHshr2] = ACTIONS(1921), - [anon_sym_bit_DASHand2] = ACTIONS(1921), - [anon_sym_bit_DASHxor2] = ACTIONS(1921), - [anon_sym_bit_DASHor2] = ACTIONS(1921), - [anon_sym_DOT_DOT2] = ACTIONS(1923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1921), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1921), - [anon_sym_err_GT] = ACTIONS(1923), - [anon_sym_out_GT] = ACTIONS(1923), - [anon_sym_e_GT] = ACTIONS(1923), - [anon_sym_o_GT] = ACTIONS(1923), - [anon_sym_err_PLUSout_GT] = ACTIONS(1923), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1923), - [anon_sym_o_PLUSe_GT] = ACTIONS(1923), - [anon_sym_e_PLUSo_GT] = ACTIONS(1923), - [anon_sym_err_GT_GT] = ACTIONS(1921), - [anon_sym_out_GT_GT] = ACTIONS(1921), - [anon_sym_e_GT_GT] = ACTIONS(1921), - [anon_sym_o_GT_GT] = ACTIONS(1921), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1921), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1921), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1921), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1921), - [sym__unquoted_pattern] = ACTIONS(1923), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(739)] = { - [sym_cmd_identifier] = STATE(4664), - [sym_expr_parenthesized] = STATE(5503), - [sym__spread_parenthesized] = STATE(4962), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(4629), - [sym_val_number] = STATE(5503), - [sym__val_number_decimal] = STATE(2000), - [sym__val_number] = STATE(726), - [sym_val_string] = STATE(5503), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_interpolated] = STATE(5503), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym__spread_record] = STATE(4962), - [sym_record_entry] = STATE(4873), - [sym__record_key] = STATE(5380), + [ts_builtin_sym_end] = ACTIONS(2125), + [anon_sym_in] = ACTIONS(2125), + [sym__newline] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(2125), + [anon_sym_err_GT_PIPE] = ACTIONS(2125), + [anon_sym_out_GT_PIPE] = ACTIONS(2125), + [anon_sym_e_GT_PIPE] = ACTIONS(2125), + [anon_sym_o_GT_PIPE] = ACTIONS(2125), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2125), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2125), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2125), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2125), + [anon_sym_GT2] = ACTIONS(2127), + [anon_sym_DASH2] = ACTIONS(2125), + [anon_sym_STAR2] = ACTIONS(2127), + [anon_sym_and2] = ACTIONS(2125), + [anon_sym_xor2] = ACTIONS(2125), + [anon_sym_or2] = ACTIONS(2125), + [anon_sym_not_DASHin2] = ACTIONS(2125), + [anon_sym_has2] = ACTIONS(2125), + [anon_sym_not_DASHhas2] = ACTIONS(2125), + [anon_sym_starts_DASHwith2] = ACTIONS(2125), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2125), + [anon_sym_ends_DASHwith2] = ACTIONS(2125), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2125), + [anon_sym_EQ_EQ2] = ACTIONS(2125), + [anon_sym_BANG_EQ2] = ACTIONS(2125), + [anon_sym_LT2] = ACTIONS(2127), + [anon_sym_LT_EQ2] = ACTIONS(2125), + [anon_sym_GT_EQ2] = ACTIONS(2125), + [anon_sym_EQ_TILDE2] = ACTIONS(2125), + [anon_sym_BANG_TILDE2] = ACTIONS(2125), + [anon_sym_like2] = ACTIONS(2125), + [anon_sym_not_DASHlike2] = ACTIONS(2125), + [anon_sym_LPAREN2] = ACTIONS(2129), + [anon_sym_STAR_STAR2] = ACTIONS(2125), + [anon_sym_PLUS_PLUS2] = ACTIONS(2125), + [anon_sym_SLASH2] = ACTIONS(2127), + [anon_sym_mod2] = ACTIONS(2125), + [anon_sym_SLASH_SLASH2] = ACTIONS(2125), + [anon_sym_PLUS2] = ACTIONS(2127), + [anon_sym_bit_DASHshl2] = ACTIONS(2125), + [anon_sym_bit_DASHshr2] = ACTIONS(2125), + [anon_sym_bit_DASHand2] = ACTIONS(2125), + [anon_sym_bit_DASHxor2] = ACTIONS(2125), + [anon_sym_bit_DASHor2] = ACTIONS(2125), + [anon_sym_DOT_DOT2] = ACTIONS(2306), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2308), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2308), + [anon_sym_err_GT] = ACTIONS(2127), + [anon_sym_out_GT] = ACTIONS(2127), + [anon_sym_e_GT] = ACTIONS(2127), + [anon_sym_o_GT] = ACTIONS(2127), + [anon_sym_err_PLUSout_GT] = ACTIONS(2127), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2127), + [anon_sym_o_PLUSe_GT] = ACTIONS(2127), + [anon_sym_e_PLUSo_GT] = ACTIONS(2127), + [anon_sym_err_GT_GT] = ACTIONS(2125), + [anon_sym_out_GT_GT] = ACTIONS(2125), + [anon_sym_e_GT_GT] = ACTIONS(2125), + [anon_sym_o_GT_GT] = ACTIONS(2125), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2125), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2125), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2125), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2125), + [sym__unquoted_pattern] = ACTIONS(1636), + [anon_sym_POUND] = ACTIONS(3), + }, + [739] = { [sym_comment] = STATE(739), - [aux_sym__match_pattern_record_body_repeat1] = STATE(732), - [anon_sym_export] = ACTIONS(145), - [anon_sym_alias] = ACTIONS(139), - [anon_sym_let] = ACTIONS(139), - [anon_sym_mut] = ACTIONS(139), - [anon_sym_const] = ACTIONS(139), - [aux_sym_cmd_identifier_token1] = ACTIONS(119), - [anon_sym_def] = ACTIONS(139), - [anon_sym_use] = ACTIONS(139), - [anon_sym_export_DASHenv] = ACTIONS(139), - [anon_sym_extern] = ACTIONS(139), - [anon_sym_module] = ACTIONS(139), - [anon_sym_for] = ACTIONS(139), - [anon_sym_loop] = ACTIONS(139), - [anon_sym_while] = ACTIONS(139), - [anon_sym_if] = ACTIONS(139), - [anon_sym_else] = ACTIONS(139), - [anon_sym_try] = ACTIONS(139), - [anon_sym_catch] = ACTIONS(139), - [anon_sym_finally] = ACTIONS(139), - [anon_sym_match] = ACTIONS(139), - [anon_sym_in] = ACTIONS(145), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token3] = ACTIONS(1750), - [aux_sym_cmd_identifier_token4] = ACTIONS(1750), - [aux_sym_cmd_identifier_token5] = ACTIONS(1750), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [anon_sym_DASH2] = ACTIONS(177), - [anon_sym_PLUS2] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1760), - [aux_sym__val_number_decimal_token2] = ACTIONS(1762), - [aux_sym__val_number_decimal_token3] = ACTIONS(1764), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1770), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1772), - }, - [STATE(740)] = { + [anon_sym_in] = ACTIONS(1736), + [sym__newline] = ACTIONS(1736), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_PIPE] = ACTIONS(1736), + [anon_sym_err_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_GT_PIPE] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_GT2] = ACTIONS(1610), + [anon_sym_DASH2] = ACTIONS(1736), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_STAR2] = ACTIONS(1610), + [anon_sym_and2] = ACTIONS(1736), + [anon_sym_xor2] = ACTIONS(1736), + [anon_sym_or2] = ACTIONS(1736), + [anon_sym_not_DASHin2] = ACTIONS(1736), + [anon_sym_has2] = ACTIONS(1736), + [anon_sym_not_DASHhas2] = ACTIONS(1736), + [anon_sym_starts_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), + [anon_sym_ends_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), + [anon_sym_EQ_EQ2] = ACTIONS(1736), + [anon_sym_BANG_EQ2] = ACTIONS(1736), + [anon_sym_LT2] = ACTIONS(1610), + [anon_sym_LT_EQ2] = ACTIONS(1736), + [anon_sym_GT_EQ2] = ACTIONS(1736), + [anon_sym_EQ_TILDE2] = ACTIONS(1736), + [anon_sym_BANG_TILDE2] = ACTIONS(1736), + [anon_sym_like2] = ACTIONS(1736), + [anon_sym_not_DASHlike2] = ACTIONS(1736), + [anon_sym_STAR_STAR2] = ACTIONS(1736), + [anon_sym_PLUS_PLUS2] = ACTIONS(1736), + [anon_sym_SLASH2] = ACTIONS(1610), + [anon_sym_mod2] = ACTIONS(1736), + [anon_sym_SLASH_SLASH2] = ACTIONS(1736), + [anon_sym_PLUS2] = ACTIONS(1610), + [anon_sym_bit_DASHshl2] = ACTIONS(1736), + [anon_sym_bit_DASHshr2] = ACTIONS(1736), + [anon_sym_bit_DASHand2] = ACTIONS(1736), + [anon_sym_bit_DASHxor2] = ACTIONS(1736), + [anon_sym_bit_DASHor2] = ACTIONS(1736), + [anon_sym_DOT_DOT2] = ACTIONS(1614), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1616), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1616), + [anon_sym_err_GT] = ACTIONS(1610), + [anon_sym_out_GT] = ACTIONS(1610), + [anon_sym_e_GT] = ACTIONS(1610), + [anon_sym_o_GT] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT] = ACTIONS(1610), + [anon_sym_err_GT_GT] = ACTIONS(1736), + [anon_sym_out_GT_GT] = ACTIONS(1736), + [anon_sym_e_GT_GT] = ACTIONS(1736), + [anon_sym_o_GT_GT] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), + [anon_sym_POUND] = ACTIONS(3), + }, + [740] = { [sym_comment] = STATE(740), - [anon_sym_in] = ACTIONS(1774), - [sym__newline] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_err_GT_PIPE] = ACTIONS(1774), - [anon_sym_out_GT_PIPE] = ACTIONS(1774), - [anon_sym_e_GT_PIPE] = ACTIONS(1774), - [anon_sym_o_GT_PIPE] = ACTIONS(1774), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), - [anon_sym_RPAREN] = ACTIONS(1774), - [anon_sym_GT2] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(1774), - [anon_sym_RBRACE] = ACTIONS(1774), - [anon_sym_STAR2] = ACTIONS(1776), - [anon_sym_and2] = ACTIONS(1774), - [anon_sym_xor2] = ACTIONS(1774), - [anon_sym_or2] = ACTIONS(1774), - [anon_sym_not_DASHin2] = ACTIONS(1774), - [anon_sym_has2] = ACTIONS(1774), - [anon_sym_not_DASHhas2] = ACTIONS(1774), - [anon_sym_starts_DASHwith2] = ACTIONS(1774), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1774), - [anon_sym_ends_DASHwith2] = ACTIONS(1774), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1774), - [anon_sym_EQ_EQ2] = ACTIONS(1774), - [anon_sym_BANG_EQ2] = ACTIONS(1774), - [anon_sym_LT2] = ACTIONS(1776), - [anon_sym_LT_EQ2] = ACTIONS(1774), - [anon_sym_GT_EQ2] = ACTIONS(1774), - [anon_sym_EQ_TILDE2] = ACTIONS(1774), - [anon_sym_BANG_TILDE2] = ACTIONS(1774), - [anon_sym_like2] = ACTIONS(1774), - [anon_sym_not_DASHlike2] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_STAR_STAR2] = ACTIONS(1774), - [anon_sym_PLUS_PLUS2] = ACTIONS(1774), - [anon_sym_SLASH2] = ACTIONS(1776), - [anon_sym_mod2] = ACTIONS(1774), - [anon_sym_SLASH_SLASH2] = ACTIONS(1774), - [anon_sym_PLUS2] = ACTIONS(1776), - [anon_sym_bit_DASHshl2] = ACTIONS(1774), - [anon_sym_bit_DASHshr2] = ACTIONS(1774), - [anon_sym_bit_DASHand2] = ACTIONS(1774), - [anon_sym_bit_DASHxor2] = ACTIONS(1774), - [anon_sym_bit_DASHor2] = ACTIONS(1774), - [aux_sym__immediate_decimal_token1] = ACTIONS(2365), - [aux_sym__immediate_decimal_token5] = ACTIONS(2367), - [anon_sym_err_GT] = ACTIONS(1776), - [anon_sym_out_GT] = ACTIONS(1776), - [anon_sym_e_GT] = ACTIONS(1776), - [anon_sym_o_GT] = ACTIONS(1776), - [anon_sym_err_PLUSout_GT] = ACTIONS(1776), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), - [anon_sym_o_PLUSe_GT] = ACTIONS(1776), - [anon_sym_e_PLUSo_GT] = ACTIONS(1776), - [anon_sym_err_GT_GT] = ACTIONS(1774), - [anon_sym_out_GT_GT] = ACTIONS(1774), - [anon_sym_e_GT_GT] = ACTIONS(1774), - [anon_sym_o_GT_GT] = ACTIONS(1774), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), - [sym__unquoted_pattern] = ACTIONS(1776), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(741)] = { + [anon_sym_in] = ACTIONS(2125), + [sym__newline] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(2125), + [anon_sym_err_GT_PIPE] = ACTIONS(2125), + [anon_sym_out_GT_PIPE] = ACTIONS(2125), + [anon_sym_e_GT_PIPE] = ACTIONS(2125), + [anon_sym_o_GT_PIPE] = ACTIONS(2125), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2125), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2125), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2125), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2125), + [anon_sym_RPAREN] = ACTIONS(2125), + [anon_sym_GT2] = ACTIONS(2127), + [anon_sym_DASH2] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_STAR2] = ACTIONS(2127), + [anon_sym_and2] = ACTIONS(2125), + [anon_sym_xor2] = ACTIONS(2125), + [anon_sym_or2] = ACTIONS(2125), + [anon_sym_not_DASHin2] = ACTIONS(2125), + [anon_sym_has2] = ACTIONS(2125), + [anon_sym_not_DASHhas2] = ACTIONS(2125), + [anon_sym_starts_DASHwith2] = ACTIONS(2125), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2125), + [anon_sym_ends_DASHwith2] = ACTIONS(2125), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2125), + [anon_sym_EQ_EQ2] = ACTIONS(2125), + [anon_sym_BANG_EQ2] = ACTIONS(2125), + [anon_sym_LT2] = ACTIONS(2127), + [anon_sym_LT_EQ2] = ACTIONS(2125), + [anon_sym_GT_EQ2] = ACTIONS(2125), + [anon_sym_EQ_TILDE2] = ACTIONS(2125), + [anon_sym_BANG_TILDE2] = ACTIONS(2125), + [anon_sym_like2] = ACTIONS(2125), + [anon_sym_not_DASHlike2] = ACTIONS(2125), + [anon_sym_STAR_STAR2] = ACTIONS(2125), + [anon_sym_PLUS_PLUS2] = ACTIONS(2125), + [anon_sym_SLASH2] = ACTIONS(2127), + [anon_sym_mod2] = ACTIONS(2125), + [anon_sym_SLASH_SLASH2] = ACTIONS(2125), + [anon_sym_PLUS2] = ACTIONS(2127), + [anon_sym_bit_DASHshl2] = ACTIONS(2125), + [anon_sym_bit_DASHshr2] = ACTIONS(2125), + [anon_sym_bit_DASHand2] = ACTIONS(2125), + [anon_sym_bit_DASHxor2] = ACTIONS(2125), + [anon_sym_bit_DASHor2] = ACTIONS(2125), + [anon_sym_DOT_DOT2] = ACTIONS(2310), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2312), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2312), + [anon_sym_err_GT] = ACTIONS(2127), + [anon_sym_out_GT] = ACTIONS(2127), + [anon_sym_e_GT] = ACTIONS(2127), + [anon_sym_o_GT] = ACTIONS(2127), + [anon_sym_err_PLUSout_GT] = ACTIONS(2127), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2127), + [anon_sym_o_PLUSe_GT] = ACTIONS(2127), + [anon_sym_e_PLUSo_GT] = ACTIONS(2127), + [anon_sym_err_GT_GT] = ACTIONS(2125), + [anon_sym_out_GT_GT] = ACTIONS(2125), + [anon_sym_e_GT_GT] = ACTIONS(2125), + [anon_sym_o_GT_GT] = ACTIONS(2125), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2125), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2125), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2125), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2125), + [anon_sym_POUND] = ACTIONS(3), + }, + [741] = { [sym_comment] = STATE(741), - [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_LPAREN2] = ACTIONS(1866), - [anon_sym_STAR_STAR2] = ACTIONS(1866), - [anon_sym_PLUS_PLUS2] = ACTIONS(1866), - [anon_sym_SLASH2] = ACTIONS(1868), - [anon_sym_mod2] = ACTIONS(1866), - [anon_sym_SLASH_SLASH2] = ACTIONS(1866), - [anon_sym_PLUS2] = ACTIONS(1868), - [anon_sym_bit_DASHshl2] = ACTIONS(1866), - [anon_sym_bit_DASHshr2] = ACTIONS(1866), - [anon_sym_bit_DASHand2] = ACTIONS(1866), - [anon_sym_bit_DASHxor2] = ACTIONS(1866), - [anon_sym_bit_DASHor2] = ACTIONS(1866), - [anon_sym_DOT_DOT2] = ACTIONS(1868), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1866), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1866), - [anon_sym_err_GT] = ACTIONS(1868), - [anon_sym_out_GT] = ACTIONS(1868), - [anon_sym_e_GT] = ACTIONS(1868), - [anon_sym_o_GT] = ACTIONS(1868), - [anon_sym_err_PLUSout_GT] = ACTIONS(1868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), - [anon_sym_o_PLUSe_GT] = ACTIONS(1868), - [anon_sym_e_PLUSo_GT] = ACTIONS(1868), - [anon_sym_err_GT_GT] = ACTIONS(1866), - [anon_sym_out_GT_GT] = ACTIONS(1866), - [anon_sym_e_GT_GT] = ACTIONS(1866), - [anon_sym_o_GT_GT] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), - [sym__unquoted_pattern] = ACTIONS(1868), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(742)] = { + [ts_builtin_sym_end] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [sym__newline] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1802), + [anon_sym_err_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_GT_PIPE] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), + [anon_sym_GT2] = ACTIONS(1804), + [anon_sym_DASH2] = ACTIONS(1802), + [anon_sym_STAR2] = ACTIONS(1804), + [anon_sym_and2] = ACTIONS(1802), + [anon_sym_xor2] = ACTIONS(1802), + [anon_sym_or2] = ACTIONS(1802), + [anon_sym_not_DASHin2] = ACTIONS(1802), + [anon_sym_has2] = ACTIONS(1802), + [anon_sym_not_DASHhas2] = ACTIONS(1802), + [anon_sym_starts_DASHwith2] = ACTIONS(1802), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), + [anon_sym_ends_DASHwith2] = ACTIONS(1802), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), + [anon_sym_EQ_EQ2] = ACTIONS(1802), + [anon_sym_BANG_EQ2] = ACTIONS(1802), + [anon_sym_LT2] = ACTIONS(1804), + [anon_sym_LT_EQ2] = ACTIONS(1802), + [anon_sym_GT_EQ2] = ACTIONS(1802), + [anon_sym_EQ_TILDE2] = ACTIONS(1802), + [anon_sym_BANG_TILDE2] = ACTIONS(1802), + [anon_sym_like2] = ACTIONS(1802), + [anon_sym_not_DASHlike2] = ACTIONS(1802), + [anon_sym_LPAREN2] = ACTIONS(1802), + [anon_sym_STAR_STAR2] = ACTIONS(1802), + [anon_sym_PLUS_PLUS2] = ACTIONS(1802), + [anon_sym_SLASH2] = ACTIONS(1804), + [anon_sym_mod2] = ACTIONS(1802), + [anon_sym_SLASH_SLASH2] = ACTIONS(1802), + [anon_sym_PLUS2] = ACTIONS(1804), + [anon_sym_bit_DASHshl2] = ACTIONS(1802), + [anon_sym_bit_DASHshr2] = ACTIONS(1802), + [anon_sym_bit_DASHand2] = ACTIONS(1802), + [anon_sym_bit_DASHxor2] = ACTIONS(1802), + [anon_sym_bit_DASHor2] = ACTIONS(1802), + [anon_sym_DOT_DOT2] = ACTIONS(1804), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1802), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1802), + [anon_sym_err_GT] = ACTIONS(1804), + [anon_sym_out_GT] = ACTIONS(1804), + [anon_sym_e_GT] = ACTIONS(1804), + [anon_sym_o_GT] = ACTIONS(1804), + [anon_sym_err_PLUSout_GT] = ACTIONS(1804), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), + [anon_sym_o_PLUSe_GT] = ACTIONS(1804), + [anon_sym_e_PLUSo_GT] = ACTIONS(1804), + [anon_sym_err_GT_GT] = ACTIONS(1802), + [anon_sym_out_GT_GT] = ACTIONS(1802), + [anon_sym_e_GT_GT] = ACTIONS(1802), + [anon_sym_o_GT_GT] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), + [sym__unquoted_pattern] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(3), + }, + [742] = { [sym_comment] = STATE(742), - [ts_builtin_sym_end] = ACTIONS(1563), - [anon_sym_in] = ACTIONS(1563), - [sym__newline] = ACTIONS(1563), - [anon_sym_SEMI] = ACTIONS(1563), - [anon_sym_PIPE] = ACTIONS(1563), - [anon_sym_err_GT_PIPE] = ACTIONS(1563), - [anon_sym_out_GT_PIPE] = ACTIONS(1563), - [anon_sym_e_GT_PIPE] = ACTIONS(1563), - [anon_sym_o_GT_PIPE] = ACTIONS(1563), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1563), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1563), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1563), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1563), - [anon_sym_COLON] = ACTIONS(1563), - [anon_sym_GT2] = ACTIONS(1561), - [anon_sym_DASH2] = ACTIONS(1563), - [anon_sym_STAR2] = ACTIONS(1561), - [anon_sym_and2] = ACTIONS(1563), - [anon_sym_xor2] = ACTIONS(1563), - [anon_sym_or2] = ACTIONS(1563), - [anon_sym_not_DASHin2] = ACTIONS(1563), - [anon_sym_has2] = ACTIONS(1563), - [anon_sym_not_DASHhas2] = ACTIONS(1563), - [anon_sym_starts_DASHwith2] = ACTIONS(1563), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1563), - [anon_sym_ends_DASHwith2] = ACTIONS(1563), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1563), - [anon_sym_EQ_EQ2] = ACTIONS(1563), - [anon_sym_BANG_EQ2] = ACTIONS(1563), - [anon_sym_LT2] = ACTIONS(1561), - [anon_sym_LT_EQ2] = ACTIONS(1563), - [anon_sym_GT_EQ2] = ACTIONS(1563), - [anon_sym_EQ_TILDE2] = ACTIONS(1563), - [anon_sym_BANG_TILDE2] = ACTIONS(1563), - [anon_sym_like2] = ACTIONS(1563), - [anon_sym_not_DASHlike2] = ACTIONS(1563), - [anon_sym_STAR_STAR2] = ACTIONS(1563), - [anon_sym_PLUS_PLUS2] = ACTIONS(1563), - [anon_sym_SLASH2] = ACTIONS(1561), - [anon_sym_mod2] = ACTIONS(1563), - [anon_sym_SLASH_SLASH2] = ACTIONS(1563), - [anon_sym_PLUS2] = ACTIONS(1561), - [anon_sym_bit_DASHshl2] = ACTIONS(1563), - [anon_sym_bit_DASHshr2] = ACTIONS(1563), - [anon_sym_bit_DASHand2] = ACTIONS(1563), - [anon_sym_bit_DASHxor2] = ACTIONS(1563), - [anon_sym_bit_DASHor2] = ACTIONS(1563), - [anon_sym_DOT_DOT2] = ACTIONS(1561), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1563), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1563), - [anon_sym_DOT2] = ACTIONS(1561), - [anon_sym_err_GT] = ACTIONS(1561), - [anon_sym_out_GT] = ACTIONS(1561), - [anon_sym_e_GT] = ACTIONS(1561), - [anon_sym_o_GT] = ACTIONS(1561), - [anon_sym_err_PLUSout_GT] = ACTIONS(1561), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1561), - [anon_sym_o_PLUSe_GT] = ACTIONS(1561), - [anon_sym_e_PLUSo_GT] = ACTIONS(1561), - [anon_sym_err_GT_GT] = ACTIONS(1563), - [anon_sym_out_GT_GT] = ACTIONS(1563), - [anon_sym_e_GT_GT] = ACTIONS(1563), - [anon_sym_o_GT_GT] = ACTIONS(1563), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1563), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1563), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1563), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1563), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(743)] = { - [sym__expr_parenthesized_immediate] = STATE(5283), + [anon_sym_in] = ACTIONS(2314), + [sym__newline] = ACTIONS(2314), + [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym_PIPE] = ACTIONS(2314), + [anon_sym_err_GT_PIPE] = ACTIONS(2314), + [anon_sym_out_GT_PIPE] = ACTIONS(2314), + [anon_sym_e_GT_PIPE] = ACTIONS(2314), + [anon_sym_o_GT_PIPE] = ACTIONS(2314), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2314), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2314), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2314), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2314), + [anon_sym_RPAREN] = ACTIONS(2314), + [anon_sym_GT2] = ACTIONS(2316), + [anon_sym_DASH2] = ACTIONS(2314), + [anon_sym_LBRACE] = ACTIONS(2314), + [anon_sym_RBRACE] = ACTIONS(2314), + [anon_sym_STAR2] = ACTIONS(2316), + [anon_sym_and2] = ACTIONS(2314), + [anon_sym_xor2] = ACTIONS(2314), + [anon_sym_or2] = ACTIONS(2314), + [anon_sym_not_DASHin2] = ACTIONS(2314), + [anon_sym_has2] = ACTIONS(2314), + [anon_sym_not_DASHhas2] = ACTIONS(2314), + [anon_sym_starts_DASHwith2] = ACTIONS(2314), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2314), + [anon_sym_ends_DASHwith2] = ACTIONS(2314), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2314), + [anon_sym_EQ_EQ2] = ACTIONS(2314), + [anon_sym_BANG_EQ2] = ACTIONS(2314), + [anon_sym_LT2] = ACTIONS(2316), + [anon_sym_LT_EQ2] = ACTIONS(2314), + [anon_sym_GT_EQ2] = ACTIONS(2314), + [anon_sym_EQ_TILDE2] = ACTIONS(2314), + [anon_sym_BANG_TILDE2] = ACTIONS(2314), + [anon_sym_like2] = ACTIONS(2314), + [anon_sym_not_DASHlike2] = ACTIONS(2314), + [anon_sym_STAR_STAR2] = ACTIONS(2314), + [anon_sym_PLUS_PLUS2] = ACTIONS(2314), + [anon_sym_SLASH2] = ACTIONS(2316), + [anon_sym_mod2] = ACTIONS(2314), + [anon_sym_SLASH_SLASH2] = ACTIONS(2314), + [anon_sym_PLUS2] = ACTIONS(2316), + [anon_sym_bit_DASHshl2] = ACTIONS(2314), + [anon_sym_bit_DASHshr2] = ACTIONS(2314), + [anon_sym_bit_DASHand2] = ACTIONS(2314), + [anon_sym_bit_DASHxor2] = ACTIONS(2314), + [anon_sym_bit_DASHor2] = ACTIONS(2314), + [anon_sym_DOT_DOT2] = ACTIONS(2318), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2320), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2320), + [anon_sym_err_GT] = ACTIONS(2316), + [anon_sym_out_GT] = ACTIONS(2316), + [anon_sym_e_GT] = ACTIONS(2316), + [anon_sym_o_GT] = ACTIONS(2316), + [anon_sym_err_PLUSout_GT] = ACTIONS(2316), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2316), + [anon_sym_o_PLUSe_GT] = ACTIONS(2316), + [anon_sym_e_PLUSo_GT] = ACTIONS(2316), + [anon_sym_err_GT_GT] = ACTIONS(2314), + [anon_sym_out_GT_GT] = ACTIONS(2314), + [anon_sym_e_GT_GT] = ACTIONS(2314), + [anon_sym_o_GT_GT] = ACTIONS(2314), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2314), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2314), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2314), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2314), + [anon_sym_POUND] = ACTIONS(3), + }, + [743] = { + [sym_cmd_identifier] = STATE(4572), + [sym_expr_parenthesized] = STATE(5187), + [sym__spread_parenthesized] = STATE(4951), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(5187), + [sym_val_number] = STATE(5187), + [sym__val_number_decimal] = STATE(2013), + [sym__val_number] = STATE(705), + [sym_val_string] = STATE(5187), + [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(5187), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym__spread_record] = STATE(4951), + [sym_record_entry] = STATE(5016), + [sym__record_key] = STATE(5305), [sym_comment] = STATE(743), - [anon_sym_in] = ACTIONS(2369), - [sym__newline] = ACTIONS(2369), - [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(2369), - [anon_sym_LBRACE] = ACTIONS(2369), - [anon_sym_RBRACE] = ACTIONS(2369), - [anon_sym_EQ_GT] = ACTIONS(2369), - [anon_sym_STAR2] = ACTIONS(2371), - [anon_sym_and2] = ACTIONS(2369), - [anon_sym_xor2] = ACTIONS(2369), - [anon_sym_or2] = ACTIONS(2369), - [anon_sym_not_DASHin2] = ACTIONS(2369), - [anon_sym_has2] = ACTIONS(2369), - [anon_sym_not_DASHhas2] = ACTIONS(2369), - [anon_sym_starts_DASHwith2] = ACTIONS(2369), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2369), - [anon_sym_ends_DASHwith2] = ACTIONS(2369), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2369), - [anon_sym_EQ_EQ2] = ACTIONS(2369), - [anon_sym_BANG_EQ2] = ACTIONS(2369), - [anon_sym_LT2] = ACTIONS(2371), - [anon_sym_LT_EQ2] = ACTIONS(2369), - [anon_sym_GT_EQ2] = ACTIONS(2369), - [anon_sym_EQ_TILDE2] = ACTIONS(2369), - [anon_sym_BANG_TILDE2] = ACTIONS(2369), - [anon_sym_like2] = ACTIONS(2369), - [anon_sym_not_DASHlike2] = ACTIONS(2369), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2369), - [anon_sym_PLUS_PLUS2] = ACTIONS(2369), - [anon_sym_SLASH2] = ACTIONS(2371), - [anon_sym_mod2] = ACTIONS(2369), - [anon_sym_SLASH_SLASH2] = ACTIONS(2369), - [anon_sym_PLUS2] = ACTIONS(2371), - [anon_sym_bit_DASHshl2] = ACTIONS(2369), - [anon_sym_bit_DASHshr2] = ACTIONS(2369), - [anon_sym_bit_DASHand2] = ACTIONS(2369), - [anon_sym_bit_DASHxor2] = ACTIONS(2369), - [anon_sym_bit_DASHor2] = ACTIONS(2369), - [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(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(744)] = { - [sym_cmd_identifier] = STATE(4664), - [sym_expr_parenthesized] = STATE(5503), - [sym__spread_parenthesized] = STATE(4962), - [sym__spread_variable] = STATE(4986), - [sym_val_variable] = STATE(5503), - [sym_val_number] = STATE(5503), - [sym__val_number_decimal] = STATE(2000), - [sym__val_number] = STATE(726), - [sym_val_string] = STATE(5503), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_interpolated] = STATE(5503), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym__spread_record] = STATE(4962), - [sym_record_entry] = STATE(4687), - [sym__record_key] = STATE(5380), + [aux_sym_record_body_repeat1] = STATE(743), + [anon_sym_export] = ACTIONS(2322), + [anon_sym_alias] = ACTIONS(2325), + [anon_sym_let] = ACTIONS(2325), + [anon_sym_mut] = ACTIONS(2325), + [anon_sym_const] = ACTIONS(2325), + [aux_sym_cmd_identifier_token1] = ACTIONS(2328), + [anon_sym_def] = ACTIONS(2325), + [anon_sym_use] = ACTIONS(2325), + [anon_sym_export_DASHenv] = ACTIONS(2325), + [anon_sym_extern] = ACTIONS(2325), + [anon_sym_module] = ACTIONS(2325), + [anon_sym_for] = ACTIONS(2325), + [anon_sym_loop] = ACTIONS(2325), + [anon_sym_while] = ACTIONS(2325), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_else] = ACTIONS(2325), + [anon_sym_try] = ACTIONS(2325), + [anon_sym_catch] = ACTIONS(2325), + [anon_sym_finally] = ACTIONS(2325), + [anon_sym_match] = ACTIONS(2325), + [anon_sym_in] = ACTIONS(2322), + [anon_sym_true] = ACTIONS(2331), + [anon_sym_false] = ACTIONS(2331), + [anon_sym_null] = ACTIONS(2331), + [aux_sym_cmd_identifier_token3] = ACTIONS(2334), + [aux_sym_cmd_identifier_token4] = ACTIONS(2334), + [aux_sym_cmd_identifier_token5] = ACTIONS(2334), + [anon_sym_LPAREN] = ACTIONS(2337), + [anon_sym_DOLLAR] = ACTIONS(2340), + [anon_sym_DASH2] = ACTIONS(2343), + [anon_sym_PLUS2] = ACTIONS(2343), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2349), + [aux_sym__val_number_decimal_token1] = ACTIONS(2352), + [aux_sym__val_number_decimal_token2] = ACTIONS(2355), + [aux_sym__val_number_decimal_token3] = ACTIONS(2358), + [aux_sym__val_number_decimal_token4] = ACTIONS(2358), + [aux_sym__val_number_token1] = ACTIONS(2361), + [aux_sym__val_number_token2] = ACTIONS(2361), + [aux_sym__val_number_token3] = ACTIONS(2361), + [anon_sym_DQUOTE] = ACTIONS(2364), + [anon_sym_SQUOTE] = ACTIONS(2367), + [anon_sym_BQUOTE] = ACTIONS(2370), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2376), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2379), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2382), + }, + [744] = { + [sym_cmd_identifier] = STATE(4572), + [sym_expr_parenthesized] = STATE(5187), + [sym__spread_parenthesized] = STATE(4951), + [sym__spread_variable] = STATE(4955), + [sym_val_variable] = STATE(5187), + [sym_val_number] = STATE(5187), + [sym__val_number_decimal] = STATE(2013), + [sym__val_number] = STATE(705), + [sym_val_string] = STATE(5187), + [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(5187), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym__spread_record] = STATE(4951), + [sym_record_entry] = STATE(4803), + [sym__record_key] = STATE(5305), [sym_comment] = STATE(744), - [aux_sym_record_body_repeat1] = STATE(720), + [aux_sym_record_body_repeat1] = STATE(743), [anon_sym_export] = ACTIONS(145), [anon_sym_alias] = ACTIONS(139), [anon_sym_let] = ACTIONS(139), @@ -105860,599 +105808,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(139), [anon_sym_match] = ACTIONS(139), [anon_sym_in] = ACTIONS(145), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token3] = ACTIONS(1750), - [aux_sym_cmd_identifier_token4] = ACTIONS(1750), - [aux_sym_cmd_identifier_token5] = ACTIONS(1750), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1746), + [aux_sym_cmd_identifier_token3] = ACTIONS(1748), + [aux_sym_cmd_identifier_token4] = ACTIONS(1748), + [aux_sym_cmd_identifier_token5] = ACTIONS(1748), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_DOLLAR] = ACTIONS(1754), [anon_sym_DASH2] = ACTIONS(177), [anon_sym_PLUS2] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(179), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(183), - [aux_sym__val_number_decimal_token1] = ACTIONS(1760), - [aux_sym__val_number_decimal_token2] = ACTIONS(1762), - [aux_sym__val_number_decimal_token3] = ACTIONS(1764), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), + [aux_sym__val_number_decimal_token1] = ACTIONS(1758), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1768), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1772), + [sym_raw_string_begin] = ACTIONS(1770), }, - [STATE(745)] = { + [745] = { [sym_comment] = STATE(745), - [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(2373), - [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(746)] = { + [anon_sym_in] = ACTIONS(2233), + [sym__newline] = ACTIONS(2233), + [anon_sym_SEMI] = ACTIONS(2233), + [anon_sym_PIPE] = ACTIONS(2233), + [anon_sym_err_GT_PIPE] = ACTIONS(2233), + [anon_sym_out_GT_PIPE] = ACTIONS(2233), + [anon_sym_e_GT_PIPE] = ACTIONS(2233), + [anon_sym_o_GT_PIPE] = ACTIONS(2233), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2233), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2233), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2233), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2233), + [anon_sym_RPAREN] = ACTIONS(2233), + [anon_sym_GT2] = ACTIONS(2237), + [anon_sym_DASH2] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_RBRACE] = ACTIONS(2233), + [anon_sym_STAR2] = ACTIONS(2237), + [anon_sym_and2] = ACTIONS(2233), + [anon_sym_xor2] = ACTIONS(2233), + [anon_sym_or2] = ACTIONS(2233), + [anon_sym_not_DASHin2] = ACTIONS(2233), + [anon_sym_has2] = ACTIONS(2233), + [anon_sym_not_DASHhas2] = ACTIONS(2233), + [anon_sym_starts_DASHwith2] = ACTIONS(2233), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2233), + [anon_sym_ends_DASHwith2] = ACTIONS(2233), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2233), + [anon_sym_EQ_EQ2] = ACTIONS(2233), + [anon_sym_BANG_EQ2] = ACTIONS(2233), + [anon_sym_LT2] = ACTIONS(2237), + [anon_sym_LT_EQ2] = ACTIONS(2233), + [anon_sym_GT_EQ2] = ACTIONS(2233), + [anon_sym_EQ_TILDE2] = ACTIONS(2233), + [anon_sym_BANG_TILDE2] = ACTIONS(2233), + [anon_sym_like2] = ACTIONS(2233), + [anon_sym_not_DASHlike2] = ACTIONS(2233), + [anon_sym_STAR_STAR2] = ACTIONS(2233), + [anon_sym_PLUS_PLUS2] = ACTIONS(2233), + [anon_sym_SLASH2] = ACTIONS(2237), + [anon_sym_mod2] = ACTIONS(2233), + [anon_sym_SLASH_SLASH2] = ACTIONS(2233), + [anon_sym_PLUS2] = ACTIONS(2237), + [anon_sym_bit_DASHshl2] = ACTIONS(2233), + [anon_sym_bit_DASHshr2] = ACTIONS(2233), + [anon_sym_bit_DASHand2] = ACTIONS(2233), + [anon_sym_bit_DASHxor2] = ACTIONS(2233), + [anon_sym_bit_DASHor2] = ACTIONS(2233), + [anon_sym_DOT_DOT2] = ACTIONS(1614), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1616), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1616), + [anon_sym_err_GT] = ACTIONS(2237), + [anon_sym_out_GT] = ACTIONS(2237), + [anon_sym_e_GT] = ACTIONS(2237), + [anon_sym_o_GT] = ACTIONS(2237), + [anon_sym_err_PLUSout_GT] = ACTIONS(2237), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2237), + [anon_sym_o_PLUSe_GT] = ACTIONS(2237), + [anon_sym_e_PLUSo_GT] = ACTIONS(2237), + [anon_sym_err_GT_GT] = ACTIONS(2233), + [anon_sym_out_GT_GT] = ACTIONS(2233), + [anon_sym_e_GT_GT] = ACTIONS(2233), + [anon_sym_o_GT_GT] = ACTIONS(2233), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2233), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2233), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2233), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2233), + [anon_sym_POUND] = ACTIONS(3), + }, + [746] = { [sym_comment] = STATE(746), - [anon_sym_if] = ACTIONS(2375), - [anon_sym_in] = ACTIONS(2375), - [sym__newline] = ACTIONS(2375), - [anon_sym_SEMI] = ACTIONS(2375), - [anon_sym_PIPE] = ACTIONS(2375), - [anon_sym_err_GT_PIPE] = ACTIONS(2375), - [anon_sym_out_GT_PIPE] = ACTIONS(2375), - [anon_sym_e_GT_PIPE] = ACTIONS(2375), - [anon_sym_o_GT_PIPE] = ACTIONS(2375), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2375), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2375), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2375), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2375), - [anon_sym_RPAREN] = ACTIONS(2375), - [anon_sym_GT2] = ACTIONS(2377), - [anon_sym_DASH2] = ACTIONS(2375), - [anon_sym_LBRACE] = ACTIONS(2375), - [anon_sym_RBRACE] = ACTIONS(2375), - [anon_sym_EQ_GT] = ACTIONS(2375), - [anon_sym_STAR2] = ACTIONS(2377), - [anon_sym_and2] = ACTIONS(2375), - [anon_sym_xor2] = ACTIONS(2375), - [anon_sym_or2] = ACTIONS(2375), - [anon_sym_not_DASHin2] = ACTIONS(2375), - [anon_sym_has2] = ACTIONS(2375), - [anon_sym_not_DASHhas2] = ACTIONS(2375), - [anon_sym_starts_DASHwith2] = ACTIONS(2375), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2375), - [anon_sym_ends_DASHwith2] = ACTIONS(2375), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2375), - [anon_sym_EQ_EQ2] = ACTIONS(2375), - [anon_sym_BANG_EQ2] = ACTIONS(2375), - [anon_sym_LT2] = ACTIONS(2377), - [anon_sym_LT_EQ2] = ACTIONS(2375), - [anon_sym_GT_EQ2] = ACTIONS(2375), - [anon_sym_EQ_TILDE2] = ACTIONS(2375), - [anon_sym_BANG_TILDE2] = ACTIONS(2375), - [anon_sym_like2] = ACTIONS(2375), - [anon_sym_not_DASHlike2] = ACTIONS(2375), - [anon_sym_STAR_STAR2] = ACTIONS(2375), - [anon_sym_PLUS_PLUS2] = ACTIONS(2375), - [anon_sym_SLASH2] = ACTIONS(2377), - [anon_sym_mod2] = ACTIONS(2375), - [anon_sym_SLASH_SLASH2] = ACTIONS(2375), - [anon_sym_PLUS2] = ACTIONS(2377), - [anon_sym_bit_DASHshl2] = ACTIONS(2375), - [anon_sym_bit_DASHshr2] = ACTIONS(2375), - [anon_sym_bit_DASHand2] = ACTIONS(2375), - [anon_sym_bit_DASHxor2] = ACTIONS(2375), - [anon_sym_bit_DASHor2] = ACTIONS(2375), - [anon_sym_LBRACK2] = ACTIONS(2379), - [anon_sym_err_GT] = ACTIONS(2377), - [anon_sym_out_GT] = ACTIONS(2377), - [anon_sym_e_GT] = ACTIONS(2377), - [anon_sym_o_GT] = ACTIONS(2377), - [anon_sym_err_PLUSout_GT] = ACTIONS(2377), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2377), - [anon_sym_o_PLUSe_GT] = ACTIONS(2377), - [anon_sym_e_PLUSo_GT] = ACTIONS(2377), - [anon_sym_err_GT_GT] = ACTIONS(2375), - [anon_sym_out_GT_GT] = ACTIONS(2375), - [anon_sym_e_GT_GT] = ACTIONS(2375), - [anon_sym_o_GT_GT] = ACTIONS(2375), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2375), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2375), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2375), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2375), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(747)] = { + [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_COLON] = 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(1532), + [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), + }, + [747] = { [sym_comment] = STATE(747), - [anon_sym_if] = ACTIONS(2381), - [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_RBRACE] = ACTIONS(2381), - [anon_sym_EQ_GT] = 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(748)] = { + [anon_sym_in] = ACTIONS(1810), + [sym__newline] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_err_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_GT_PIPE] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_GT2] = ACTIONS(1812), + [anon_sym_DASH2] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_STAR2] = ACTIONS(1812), + [anon_sym_and2] = ACTIONS(1810), + [anon_sym_xor2] = ACTIONS(1810), + [anon_sym_or2] = ACTIONS(1810), + [anon_sym_not_DASHin2] = ACTIONS(1810), + [anon_sym_has2] = ACTIONS(1810), + [anon_sym_not_DASHhas2] = ACTIONS(1810), + [anon_sym_starts_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1810), + [anon_sym_ends_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1810), + [anon_sym_EQ_EQ2] = ACTIONS(1810), + [anon_sym_BANG_EQ2] = ACTIONS(1810), + [anon_sym_LT2] = ACTIONS(1812), + [anon_sym_LT_EQ2] = ACTIONS(1810), + [anon_sym_GT_EQ2] = ACTIONS(1810), + [anon_sym_EQ_TILDE2] = ACTIONS(1810), + [anon_sym_BANG_TILDE2] = ACTIONS(1810), + [anon_sym_like2] = ACTIONS(1810), + [anon_sym_not_DASHlike2] = ACTIONS(1810), + [anon_sym_LPAREN2] = ACTIONS(1810), + [anon_sym_STAR_STAR2] = ACTIONS(1810), + [anon_sym_PLUS_PLUS2] = ACTIONS(1810), + [anon_sym_SLASH2] = ACTIONS(1812), + [anon_sym_mod2] = ACTIONS(1810), + [anon_sym_SLASH_SLASH2] = ACTIONS(1810), + [anon_sym_PLUS2] = ACTIONS(1812), + [anon_sym_bit_DASHshl2] = ACTIONS(1810), + [anon_sym_bit_DASHshr2] = ACTIONS(1810), + [anon_sym_bit_DASHand2] = ACTIONS(1810), + [anon_sym_bit_DASHxor2] = ACTIONS(1810), + [anon_sym_bit_DASHor2] = ACTIONS(1810), + [aux_sym__immediate_decimal_token5] = ACTIONS(2281), + [anon_sym_err_GT] = ACTIONS(1812), + [anon_sym_out_GT] = ACTIONS(1812), + [anon_sym_e_GT] = ACTIONS(1812), + [anon_sym_o_GT] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT] = ACTIONS(1812), + [anon_sym_err_GT_GT] = ACTIONS(1810), + [anon_sym_out_GT_GT] = ACTIONS(1810), + [anon_sym_e_GT_GT] = ACTIONS(1810), + [anon_sym_o_GT_GT] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), + [sym__unquoted_pattern] = ACTIONS(1812), + [anon_sym_POUND] = ACTIONS(3), + }, + [748] = { + [sym_expr_unary] = STATE(1328), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1328), + [sym__expr_binary_expression] = STATE(1729), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1328), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(1328), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1539), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(1441), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(1127), + [sym__unquoted_with_expr] = STATE(1318), + [sym__unquoted_anonymous_prefix] = STATE(4847), [sym_comment] = STATE(748), - [anon_sym_if] = ACTIONS(2385), - [anon_sym_in] = ACTIONS(2385), - [sym__newline] = ACTIONS(2385), - [anon_sym_SEMI] = ACTIONS(2385), - [anon_sym_PIPE] = ACTIONS(2385), - [anon_sym_err_GT_PIPE] = ACTIONS(2385), - [anon_sym_out_GT_PIPE] = ACTIONS(2385), - [anon_sym_e_GT_PIPE] = ACTIONS(2385), - [anon_sym_o_GT_PIPE] = ACTIONS(2385), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2385), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2385), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2385), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2385), - [anon_sym_RPAREN] = ACTIONS(2385), - [anon_sym_GT2] = ACTIONS(2387), - [anon_sym_DASH2] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2385), - [anon_sym_RBRACE] = ACTIONS(2385), - [anon_sym_EQ_GT] = ACTIONS(2385), - [anon_sym_STAR2] = ACTIONS(2387), - [anon_sym_and2] = ACTIONS(2385), - [anon_sym_xor2] = ACTIONS(2385), - [anon_sym_or2] = ACTIONS(2385), - [anon_sym_not_DASHin2] = ACTIONS(2385), - [anon_sym_has2] = ACTIONS(2385), - [anon_sym_not_DASHhas2] = ACTIONS(2385), - [anon_sym_starts_DASHwith2] = ACTIONS(2385), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2385), - [anon_sym_ends_DASHwith2] = ACTIONS(2385), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2385), - [anon_sym_EQ_EQ2] = ACTIONS(2385), - [anon_sym_BANG_EQ2] = ACTIONS(2385), - [anon_sym_LT2] = ACTIONS(2387), - [anon_sym_LT_EQ2] = ACTIONS(2385), - [anon_sym_GT_EQ2] = ACTIONS(2385), - [anon_sym_EQ_TILDE2] = ACTIONS(2385), - [anon_sym_BANG_TILDE2] = ACTIONS(2385), - [anon_sym_like2] = ACTIONS(2385), - [anon_sym_not_DASHlike2] = ACTIONS(2385), - [anon_sym_STAR_STAR2] = ACTIONS(2385), - [anon_sym_PLUS_PLUS2] = ACTIONS(2385), - [anon_sym_SLASH2] = ACTIONS(2387), - [anon_sym_mod2] = ACTIONS(2385), - [anon_sym_SLASH_SLASH2] = ACTIONS(2385), - [anon_sym_PLUS2] = ACTIONS(2387), - [anon_sym_bit_DASHshl2] = ACTIONS(2385), - [anon_sym_bit_DASHshr2] = ACTIONS(2385), - [anon_sym_bit_DASHand2] = ACTIONS(2385), - [anon_sym_bit_DASHxor2] = ACTIONS(2385), - [anon_sym_bit_DASHor2] = ACTIONS(2385), - [anon_sym_err_GT] = ACTIONS(2387), - [anon_sym_out_GT] = ACTIONS(2387), - [anon_sym_e_GT] = ACTIONS(2387), - [anon_sym_o_GT] = ACTIONS(2387), - [anon_sym_err_PLUSout_GT] = ACTIONS(2387), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2387), - [anon_sym_o_PLUSe_GT] = ACTIONS(2387), - [anon_sym_e_PLUSo_GT] = ACTIONS(2387), - [anon_sym_err_GT_GT] = ACTIONS(2385), - [anon_sym_out_GT_GT] = ACTIONS(2385), - [anon_sym_e_GT_GT] = ACTIONS(2385), - [anon_sym_o_GT_GT] = ACTIONS(2385), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2385), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2385), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2385), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2385), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(749)] = { + [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(1314), + [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_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), + }, + [749] = { [sym_comment] = STATE(749), - [anon_sym_finally] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(2389), - [sym__newline] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(2389), - [anon_sym_PIPE] = ACTIONS(2389), - [anon_sym_err_GT_PIPE] = ACTIONS(2389), - [anon_sym_out_GT_PIPE] = ACTIONS(2389), - [anon_sym_e_GT_PIPE] = ACTIONS(2389), - [anon_sym_o_GT_PIPE] = ACTIONS(2389), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2389), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2389), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2389), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2389), - [anon_sym_RPAREN] = ACTIONS(2389), - [anon_sym_GT2] = ACTIONS(2391), - [anon_sym_DASH2] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2389), - [anon_sym_RBRACE] = ACTIONS(2389), - [anon_sym_EQ_GT] = ACTIONS(2389), - [anon_sym_STAR2] = ACTIONS(2391), - [anon_sym_and2] = ACTIONS(2389), - [anon_sym_xor2] = ACTIONS(2389), - [anon_sym_or2] = ACTIONS(2389), - [anon_sym_not_DASHin2] = ACTIONS(2389), - [anon_sym_has2] = ACTIONS(2389), - [anon_sym_not_DASHhas2] = ACTIONS(2389), - [anon_sym_starts_DASHwith2] = ACTIONS(2389), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2389), - [anon_sym_ends_DASHwith2] = ACTIONS(2389), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2389), - [anon_sym_EQ_EQ2] = ACTIONS(2389), - [anon_sym_BANG_EQ2] = ACTIONS(2389), - [anon_sym_LT2] = ACTIONS(2391), - [anon_sym_LT_EQ2] = ACTIONS(2389), - [anon_sym_GT_EQ2] = ACTIONS(2389), - [anon_sym_EQ_TILDE2] = ACTIONS(2389), - [anon_sym_BANG_TILDE2] = ACTIONS(2389), - [anon_sym_like2] = ACTIONS(2389), - [anon_sym_not_DASHlike2] = ACTIONS(2389), - [anon_sym_STAR_STAR2] = ACTIONS(2389), - [anon_sym_PLUS_PLUS2] = ACTIONS(2389), - [anon_sym_SLASH2] = ACTIONS(2391), - [anon_sym_mod2] = ACTIONS(2389), - [anon_sym_SLASH_SLASH2] = ACTIONS(2389), - [anon_sym_PLUS2] = ACTIONS(2391), - [anon_sym_bit_DASHshl2] = ACTIONS(2389), - [anon_sym_bit_DASHshr2] = ACTIONS(2389), - [anon_sym_bit_DASHand2] = ACTIONS(2389), - [anon_sym_bit_DASHxor2] = ACTIONS(2389), - [anon_sym_bit_DASHor2] = ACTIONS(2389), - [anon_sym_err_GT] = ACTIONS(2391), - [anon_sym_out_GT] = ACTIONS(2391), - [anon_sym_e_GT] = ACTIONS(2391), - [anon_sym_o_GT] = ACTIONS(2391), - [anon_sym_err_PLUSout_GT] = ACTIONS(2391), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2391), - [anon_sym_o_PLUSe_GT] = ACTIONS(2391), - [anon_sym_e_PLUSo_GT] = ACTIONS(2391), - [anon_sym_err_GT_GT] = ACTIONS(2389), - [anon_sym_out_GT_GT] = ACTIONS(2389), - [anon_sym_e_GT_GT] = ACTIONS(2389), - [anon_sym_o_GT_GT] = ACTIONS(2389), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2389), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2389), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2389), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2389), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(750)] = { - [sym_comment] = STATE(750), - [anon_sym_finally] = ACTIONS(2393), - [anon_sym_in] = ACTIONS(2393), - [sym__newline] = ACTIONS(2393), - [anon_sym_SEMI] = ACTIONS(2393), - [anon_sym_PIPE] = ACTIONS(2393), - [anon_sym_err_GT_PIPE] = ACTIONS(2393), - [anon_sym_out_GT_PIPE] = ACTIONS(2393), - [anon_sym_e_GT_PIPE] = ACTIONS(2393), - [anon_sym_o_GT_PIPE] = ACTIONS(2393), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2393), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2393), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2393), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2393), - [anon_sym_RPAREN] = ACTIONS(2393), - [anon_sym_GT2] = ACTIONS(2395), - [anon_sym_DASH2] = ACTIONS(2393), - [anon_sym_LBRACE] = ACTIONS(2393), - [anon_sym_RBRACE] = ACTIONS(2393), - [anon_sym_EQ_GT] = ACTIONS(2393), - [anon_sym_STAR2] = ACTIONS(2395), - [anon_sym_and2] = ACTIONS(2393), - [anon_sym_xor2] = ACTIONS(2393), - [anon_sym_or2] = ACTIONS(2393), - [anon_sym_not_DASHin2] = ACTIONS(2393), - [anon_sym_has2] = ACTIONS(2393), - [anon_sym_not_DASHhas2] = ACTIONS(2393), - [anon_sym_starts_DASHwith2] = ACTIONS(2393), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2393), - [anon_sym_ends_DASHwith2] = ACTIONS(2393), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2393), - [anon_sym_EQ_EQ2] = ACTIONS(2393), - [anon_sym_BANG_EQ2] = ACTIONS(2393), - [anon_sym_LT2] = ACTIONS(2395), - [anon_sym_LT_EQ2] = ACTIONS(2393), - [anon_sym_GT_EQ2] = ACTIONS(2393), - [anon_sym_EQ_TILDE2] = ACTIONS(2393), - [anon_sym_BANG_TILDE2] = ACTIONS(2393), - [anon_sym_like2] = ACTIONS(2393), - [anon_sym_not_DASHlike2] = ACTIONS(2393), - [anon_sym_STAR_STAR2] = ACTIONS(2393), - [anon_sym_PLUS_PLUS2] = ACTIONS(2393), - [anon_sym_SLASH2] = ACTIONS(2395), - [anon_sym_mod2] = ACTIONS(2393), - [anon_sym_SLASH_SLASH2] = ACTIONS(2393), - [anon_sym_PLUS2] = ACTIONS(2395), - [anon_sym_bit_DASHshl2] = ACTIONS(2393), - [anon_sym_bit_DASHshr2] = ACTIONS(2393), - [anon_sym_bit_DASHand2] = ACTIONS(2393), - [anon_sym_bit_DASHxor2] = ACTIONS(2393), - [anon_sym_bit_DASHor2] = ACTIONS(2393), - [anon_sym_err_GT] = ACTIONS(2395), - [anon_sym_out_GT] = ACTIONS(2395), - [anon_sym_e_GT] = ACTIONS(2395), - [anon_sym_o_GT] = ACTIONS(2395), - [anon_sym_err_PLUSout_GT] = ACTIONS(2395), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2395), - [anon_sym_o_PLUSe_GT] = ACTIONS(2395), - [anon_sym_e_PLUSo_GT] = ACTIONS(2395), - [anon_sym_err_GT_GT] = ACTIONS(2393), - [anon_sym_out_GT_GT] = ACTIONS(2393), - [anon_sym_e_GT_GT] = ACTIONS(2393), - [anon_sym_o_GT_GT] = ACTIONS(2393), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2393), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2393), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2393), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2393), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(751)] = { - [sym_comment] = STATE(751), - [anon_sym_finally] = ACTIONS(2397), - [anon_sym_in] = ACTIONS(2397), - [sym__newline] = ACTIONS(2397), - [anon_sym_SEMI] = ACTIONS(2397), - [anon_sym_PIPE] = ACTIONS(2397), - [anon_sym_err_GT_PIPE] = ACTIONS(2397), - [anon_sym_out_GT_PIPE] = ACTIONS(2397), - [anon_sym_e_GT_PIPE] = ACTIONS(2397), - [anon_sym_o_GT_PIPE] = ACTIONS(2397), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2397), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2397), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2397), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2397), - [anon_sym_RPAREN] = ACTIONS(2397), - [anon_sym_GT2] = ACTIONS(2399), - [anon_sym_DASH2] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2397), - [anon_sym_RBRACE] = ACTIONS(2397), - [anon_sym_EQ_GT] = ACTIONS(2397), - [anon_sym_STAR2] = ACTIONS(2399), - [anon_sym_and2] = ACTIONS(2397), - [anon_sym_xor2] = ACTIONS(2397), - [anon_sym_or2] = ACTIONS(2397), - [anon_sym_not_DASHin2] = ACTIONS(2397), - [anon_sym_has2] = ACTIONS(2397), - [anon_sym_not_DASHhas2] = ACTIONS(2397), - [anon_sym_starts_DASHwith2] = ACTIONS(2397), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2397), - [anon_sym_ends_DASHwith2] = ACTIONS(2397), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2397), - [anon_sym_EQ_EQ2] = ACTIONS(2397), - [anon_sym_BANG_EQ2] = ACTIONS(2397), - [anon_sym_LT2] = ACTIONS(2399), - [anon_sym_LT_EQ2] = ACTIONS(2397), - [anon_sym_GT_EQ2] = ACTIONS(2397), - [anon_sym_EQ_TILDE2] = ACTIONS(2397), - [anon_sym_BANG_TILDE2] = ACTIONS(2397), - [anon_sym_like2] = ACTIONS(2397), - [anon_sym_not_DASHlike2] = ACTIONS(2397), - [anon_sym_STAR_STAR2] = ACTIONS(2397), - [anon_sym_PLUS_PLUS2] = ACTIONS(2397), - [anon_sym_SLASH2] = ACTIONS(2399), - [anon_sym_mod2] = ACTIONS(2397), - [anon_sym_SLASH_SLASH2] = ACTIONS(2397), - [anon_sym_PLUS2] = ACTIONS(2399), - [anon_sym_bit_DASHshl2] = ACTIONS(2397), - [anon_sym_bit_DASHshr2] = ACTIONS(2397), - [anon_sym_bit_DASHand2] = ACTIONS(2397), - [anon_sym_bit_DASHxor2] = ACTIONS(2397), - [anon_sym_bit_DASHor2] = ACTIONS(2397), - [anon_sym_err_GT] = ACTIONS(2399), - [anon_sym_out_GT] = ACTIONS(2399), - [anon_sym_e_GT] = ACTIONS(2399), - [anon_sym_o_GT] = ACTIONS(2399), - [anon_sym_err_PLUSout_GT] = ACTIONS(2399), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2399), - [anon_sym_o_PLUSe_GT] = ACTIONS(2399), - [anon_sym_e_PLUSo_GT] = ACTIONS(2399), - [anon_sym_err_GT_GT] = ACTIONS(2397), - [anon_sym_out_GT_GT] = ACTIONS(2397), - [anon_sym_e_GT_GT] = ACTIONS(2397), - [anon_sym_o_GT_GT] = ACTIONS(2397), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2397), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2397), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2397), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2397), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(752)] = { - [sym_comment] = STATE(752), - [anon_sym_if] = ACTIONS(2401), - [anon_sym_in] = ACTIONS(2401), - [sym__newline] = ACTIONS(2401), - [anon_sym_SEMI] = ACTIONS(2401), - [anon_sym_PIPE] = ACTIONS(2401), - [anon_sym_err_GT_PIPE] = ACTIONS(2401), - [anon_sym_out_GT_PIPE] = ACTIONS(2401), - [anon_sym_e_GT_PIPE] = ACTIONS(2401), - [anon_sym_o_GT_PIPE] = ACTIONS(2401), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2401), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2401), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2401), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2401), - [anon_sym_RPAREN] = ACTIONS(2401), - [anon_sym_GT2] = ACTIONS(2403), - [anon_sym_DASH2] = ACTIONS(2401), - [anon_sym_LBRACE] = ACTIONS(2401), - [anon_sym_RBRACE] = ACTIONS(2401), - [anon_sym_EQ_GT] = ACTIONS(2401), - [anon_sym_STAR2] = ACTIONS(2403), - [anon_sym_and2] = ACTIONS(2401), - [anon_sym_xor2] = ACTIONS(2401), - [anon_sym_or2] = ACTIONS(2401), - [anon_sym_not_DASHin2] = ACTIONS(2401), - [anon_sym_has2] = ACTIONS(2401), - [anon_sym_not_DASHhas2] = ACTIONS(2401), - [anon_sym_starts_DASHwith2] = ACTIONS(2401), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2401), - [anon_sym_ends_DASHwith2] = ACTIONS(2401), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2401), - [anon_sym_EQ_EQ2] = ACTIONS(2401), - [anon_sym_BANG_EQ2] = ACTIONS(2401), - [anon_sym_LT2] = ACTIONS(2403), - [anon_sym_LT_EQ2] = ACTIONS(2401), - [anon_sym_GT_EQ2] = ACTIONS(2401), - [anon_sym_EQ_TILDE2] = ACTIONS(2401), - [anon_sym_BANG_TILDE2] = ACTIONS(2401), - [anon_sym_like2] = ACTIONS(2401), - [anon_sym_not_DASHlike2] = ACTIONS(2401), - [anon_sym_STAR_STAR2] = ACTIONS(2401), - [anon_sym_PLUS_PLUS2] = ACTIONS(2401), - [anon_sym_SLASH2] = ACTIONS(2403), - [anon_sym_mod2] = ACTIONS(2401), - [anon_sym_SLASH_SLASH2] = ACTIONS(2401), - [anon_sym_PLUS2] = ACTIONS(2403), - [anon_sym_bit_DASHshl2] = ACTIONS(2401), - [anon_sym_bit_DASHshr2] = ACTIONS(2401), - [anon_sym_bit_DASHand2] = ACTIONS(2401), - [anon_sym_bit_DASHxor2] = ACTIONS(2401), - [anon_sym_bit_DASHor2] = ACTIONS(2401), - [anon_sym_err_GT] = ACTIONS(2403), - [anon_sym_out_GT] = ACTIONS(2403), - [anon_sym_e_GT] = ACTIONS(2403), - [anon_sym_o_GT] = ACTIONS(2403), - [anon_sym_err_PLUSout_GT] = ACTIONS(2403), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2403), - [anon_sym_o_PLUSe_GT] = ACTIONS(2403), - [anon_sym_e_PLUSo_GT] = ACTIONS(2403), - [anon_sym_err_GT_GT] = ACTIONS(2401), - [anon_sym_out_GT_GT] = ACTIONS(2401), - [anon_sym_e_GT_GT] = ACTIONS(2401), - [anon_sym_o_GT_GT] = ACTIONS(2401), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2401), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2401), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2401), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2401), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(753)] = { - [sym_comment] = STATE(753), - [anon_sym_if] = ACTIONS(2405), + [anon_sym_finally] = ACTIONS(2405), [anon_sym_in] = ACTIONS(2405), [sym__newline] = ACTIONS(2405), [anon_sym_SEMI] = ACTIONS(2405), @@ -106520,9 +106188,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2405), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(754)] = { - [sym_comment] = STATE(754), - [anon_sym_if] = ACTIONS(2409), + [750] = { + [aux_sym__repeat_newline] = STATE(1004), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(750), [anon_sym_in] = ACTIONS(2409), [sym__newline] = ACTIONS(2409), [anon_sym_SEMI] = ACTIONS(2409), @@ -106539,8 +106208,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -106561,6 +106228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2409), [anon_sym_like2] = ACTIONS(2409), [anon_sym_not_DASHlike2] = ACTIONS(2409), + [anon_sym_LPAREN2] = ACTIONS(1830), [anon_sym_STAR_STAR2] = ACTIONS(2409), [anon_sym_PLUS_PLUS2] = ACTIONS(2409), [anon_sym_SLASH2] = ACTIONS(2411), @@ -106590,9 +106258,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2409), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(755)] = { - [sym_comment] = STATE(755), - [anon_sym_if] = ACTIONS(2413), + [751] = { + [aux_sym__repeat_newline] = STATE(998), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(751), + [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_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_LPAREN2] = ACTIONS(1830), + [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_POUND] = ACTIONS(3), + }, + [752] = { + [sym_comment] = STATE(752), [anon_sym_in] = ACTIONS(2413), [sym__newline] = ACTIONS(2413), [anon_sym_SEMI] = ACTIONS(2413), @@ -106642,6 +106379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2413), [anon_sym_bit_DASHxor2] = ACTIONS(2413), [anon_sym_bit_DASHor2] = ACTIONS(2413), + [anon_sym_COLON2] = ACTIONS(2413), [anon_sym_err_GT] = ACTIONS(2415), [anon_sym_out_GT] = ACTIONS(2415), [anon_sym_e_GT] = ACTIONS(2415), @@ -106660,80 +106398,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2413), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(756)] = { - [sym_cell_path] = STATE(1294), - [sym_path] = STATE(737), - [sym_comment] = STATE(756), - [aux_sym__where_predicate_lhs_repeat1] = STATE(586), - [ts_builtin_sym_end] = ACTIONS(1880), - [anon_sym_in] = ACTIONS(1880), - [sym__newline] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1880), - [anon_sym_err_GT_PIPE] = ACTIONS(1880), - [anon_sym_out_GT_PIPE] = ACTIONS(1880), - [anon_sym_e_GT_PIPE] = ACTIONS(1880), - [anon_sym_o_GT_PIPE] = ACTIONS(1880), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1880), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1880), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1880), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1880), - [anon_sym_GT2] = ACTIONS(1883), - [anon_sym_DASH2] = ACTIONS(1880), - [anon_sym_STAR2] = ACTIONS(1883), - [anon_sym_and2] = ACTIONS(1880), - [anon_sym_xor2] = ACTIONS(1880), - [anon_sym_or2] = ACTIONS(1880), - [anon_sym_not_DASHin2] = ACTIONS(1880), - [anon_sym_has2] = ACTIONS(1880), - [anon_sym_not_DASHhas2] = ACTIONS(1880), - [anon_sym_starts_DASHwith2] = ACTIONS(1880), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1880), - [anon_sym_ends_DASHwith2] = ACTIONS(1880), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1880), - [anon_sym_EQ_EQ2] = ACTIONS(1880), - [anon_sym_BANG_EQ2] = ACTIONS(1880), - [anon_sym_LT2] = ACTIONS(1883), - [anon_sym_LT_EQ2] = ACTIONS(1880), - [anon_sym_GT_EQ2] = ACTIONS(1880), - [anon_sym_EQ_TILDE2] = ACTIONS(1880), - [anon_sym_BANG_TILDE2] = ACTIONS(1880), - [anon_sym_like2] = ACTIONS(1880), - [anon_sym_not_DASHlike2] = ACTIONS(1880), - [anon_sym_STAR_STAR2] = ACTIONS(1880), - [anon_sym_PLUS_PLUS2] = ACTIONS(1880), - [anon_sym_SLASH2] = ACTIONS(1883), - [anon_sym_mod2] = ACTIONS(1880), - [anon_sym_SLASH_SLASH2] = ACTIONS(1880), - [anon_sym_PLUS2] = ACTIONS(1883), - [anon_sym_bit_DASHshl2] = ACTIONS(1880), - [anon_sym_bit_DASHshr2] = ACTIONS(1880), - [anon_sym_bit_DASHand2] = ACTIONS(1880), - [anon_sym_bit_DASHxor2] = ACTIONS(1880), - [anon_sym_bit_DASHor2] = ACTIONS(1880), + [753] = { + [sym_comment] = STATE(753), + [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_COLON2] = 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), + }, + [754] = { + [sym_cell_path] = STATE(1339), + [sym_path] = STATE(712), + [sym_comment] = STATE(754), + [aux_sym__where_predicate_lhs_repeat1] = STATE(580), + [ts_builtin_sym_end] = ACTIONS(1926), + [anon_sym_in] = ACTIONS(1926), + [sym__newline] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_err_GT_PIPE] = ACTIONS(1926), + [anon_sym_out_GT_PIPE] = ACTIONS(1926), + [anon_sym_e_GT_PIPE] = ACTIONS(1926), + [anon_sym_o_GT_PIPE] = ACTIONS(1926), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1926), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1926), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1926), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1926), + [anon_sym_GT2] = ACTIONS(1928), + [anon_sym_DASH2] = ACTIONS(1926), + [anon_sym_STAR2] = ACTIONS(1928), + [anon_sym_and2] = ACTIONS(1926), + [anon_sym_xor2] = ACTIONS(1926), + [anon_sym_or2] = ACTIONS(1926), + [anon_sym_not_DASHin2] = ACTIONS(1926), + [anon_sym_has2] = ACTIONS(1926), + [anon_sym_not_DASHhas2] = ACTIONS(1926), + [anon_sym_starts_DASHwith2] = ACTIONS(1926), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1926), + [anon_sym_ends_DASHwith2] = ACTIONS(1926), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1926), + [anon_sym_EQ_EQ2] = ACTIONS(1926), + [anon_sym_BANG_EQ2] = ACTIONS(1926), + [anon_sym_LT2] = ACTIONS(1928), + [anon_sym_LT_EQ2] = ACTIONS(1926), + [anon_sym_GT_EQ2] = ACTIONS(1926), + [anon_sym_EQ_TILDE2] = ACTIONS(1926), + [anon_sym_BANG_TILDE2] = ACTIONS(1926), + [anon_sym_like2] = ACTIONS(1926), + [anon_sym_not_DASHlike2] = ACTIONS(1926), + [anon_sym_STAR_STAR2] = ACTIONS(1926), + [anon_sym_PLUS_PLUS2] = ACTIONS(1926), + [anon_sym_SLASH2] = ACTIONS(1928), + [anon_sym_mod2] = ACTIONS(1926), + [anon_sym_SLASH_SLASH2] = ACTIONS(1926), + [anon_sym_PLUS2] = ACTIONS(1928), + [anon_sym_bit_DASHshl2] = ACTIONS(1926), + [anon_sym_bit_DASHshr2] = ACTIONS(1926), + [anon_sym_bit_DASHand2] = ACTIONS(1926), + [anon_sym_bit_DASHxor2] = ACTIONS(1926), + [anon_sym_bit_DASHor2] = ACTIONS(1926), [anon_sym_DOT2] = ACTIONS(2417), - [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(1880), - [anon_sym_out_GT_GT] = ACTIONS(1880), - [anon_sym_e_GT_GT] = ACTIONS(1880), - [anon_sym_o_GT_GT] = ACTIONS(1880), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1880), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1880), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1880), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1880), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(757)] = { - [aux_sym__repeat_newline] = STATE(1117), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(757), + [anon_sym_err_GT] = ACTIONS(1928), + [anon_sym_out_GT] = ACTIONS(1928), + [anon_sym_e_GT] = ACTIONS(1928), + [anon_sym_o_GT] = ACTIONS(1928), + [anon_sym_err_PLUSout_GT] = ACTIONS(1928), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1928), + [anon_sym_o_PLUSe_GT] = ACTIONS(1928), + [anon_sym_e_PLUSo_GT] = ACTIONS(1928), + [anon_sym_err_GT_GT] = ACTIONS(1926), + [anon_sym_out_GT_GT] = ACTIONS(1926), + [anon_sym_e_GT_GT] = ACTIONS(1926), + [anon_sym_o_GT_GT] = ACTIONS(1926), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1926), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1926), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1926), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1926), + [anon_sym_POUND] = ACTIONS(3), + }, + [755] = { + [sym_comment] = STATE(755), + [anon_sym_finally] = ACTIONS(2419), [anon_sym_in] = ACTIONS(2419), [sym__newline] = ACTIONS(2419), [anon_sym_SEMI] = ACTIONS(2419), @@ -106750,6 +106557,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT2] = ACTIONS(2421), [anon_sym_DASH2] = ACTIONS(2419), [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_RBRACE] = ACTIONS(2419), + [anon_sym_EQ_GT] = ACTIONS(2419), [anon_sym_STAR2] = ACTIONS(2421), [anon_sym_and2] = ACTIONS(2419), [anon_sym_xor2] = ACTIONS(2419), @@ -106770,7 +106579,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2419), [anon_sym_like2] = ACTIONS(2419), [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_LPAREN2] = ACTIONS(1796), [anon_sym_STAR_STAR2] = ACTIONS(2419), [anon_sym_PLUS_PLUS2] = ACTIONS(2419), [anon_sym_SLASH2] = ACTIONS(2421), @@ -106800,9112 +106608,10046 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(758)] = { + [756] = { + [sym_expr_unary] = STATE(1328), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1328), + [sym__expr_binary_expression] = STATE(1302), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1328), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(1328), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1130), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(490), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(1100), + [sym__unquoted_with_expr] = STATE(1301), + [sym__unquoted_anonymous_prefix] = STATE(4847), + [sym_comment] = STATE(756), + [anon_sym_true] = ACTIONS(2423), + [anon_sym_false] = ACTIONS(2423), + [anon_sym_null] = ACTIONS(2425), + [aux_sym_cmd_identifier_token3] = ACTIONS(2427), + [aux_sym_cmd_identifier_token4] = ACTIONS(2427), + [aux_sym_cmd_identifier_token5] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1314), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2429), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), + [aux_sym__val_number_token1] = ACTIONS(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(2439), + [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(107), + }, + [757] = { + [sym_comment] = STATE(757), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_in] = ACTIONS(2441), + [sym__newline] = ACTIONS(2441), + [anon_sym_SEMI] = ACTIONS(2441), + [anon_sym_PIPE] = ACTIONS(2441), + [anon_sym_err_GT_PIPE] = ACTIONS(2441), + [anon_sym_out_GT_PIPE] = ACTIONS(2441), + [anon_sym_e_GT_PIPE] = ACTIONS(2441), + [anon_sym_o_GT_PIPE] = ACTIONS(2441), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2441), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2441), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2441), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2441), + [anon_sym_RPAREN] = ACTIONS(2441), + [anon_sym_GT2] = ACTIONS(2443), + [anon_sym_DASH2] = ACTIONS(2441), + [anon_sym_LBRACE] = ACTIONS(2441), + [anon_sym_RBRACE] = ACTIONS(2441), + [anon_sym_EQ_GT] = ACTIONS(2441), + [anon_sym_STAR2] = ACTIONS(2443), + [anon_sym_and2] = ACTIONS(2441), + [anon_sym_xor2] = ACTIONS(2441), + [anon_sym_or2] = ACTIONS(2441), + [anon_sym_not_DASHin2] = ACTIONS(2441), + [anon_sym_has2] = ACTIONS(2441), + [anon_sym_not_DASHhas2] = ACTIONS(2441), + [anon_sym_starts_DASHwith2] = ACTIONS(2441), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2441), + [anon_sym_ends_DASHwith2] = ACTIONS(2441), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2441), + [anon_sym_EQ_EQ2] = ACTIONS(2441), + [anon_sym_BANG_EQ2] = ACTIONS(2441), + [anon_sym_LT2] = ACTIONS(2443), + [anon_sym_LT_EQ2] = ACTIONS(2441), + [anon_sym_GT_EQ2] = ACTIONS(2441), + [anon_sym_EQ_TILDE2] = ACTIONS(2441), + [anon_sym_BANG_TILDE2] = ACTIONS(2441), + [anon_sym_like2] = ACTIONS(2441), + [anon_sym_not_DASHlike2] = ACTIONS(2441), + [anon_sym_STAR_STAR2] = ACTIONS(2441), + [anon_sym_PLUS_PLUS2] = ACTIONS(2441), + [anon_sym_SLASH2] = ACTIONS(2443), + [anon_sym_mod2] = ACTIONS(2441), + [anon_sym_SLASH_SLASH2] = ACTIONS(2441), + [anon_sym_PLUS2] = ACTIONS(2443), + [anon_sym_bit_DASHshl2] = ACTIONS(2441), + [anon_sym_bit_DASHshr2] = ACTIONS(2441), + [anon_sym_bit_DASHand2] = ACTIONS(2441), + [anon_sym_bit_DASHxor2] = ACTIONS(2441), + [anon_sym_bit_DASHor2] = ACTIONS(2441), + [anon_sym_err_GT] = ACTIONS(2443), + [anon_sym_out_GT] = ACTIONS(2443), + [anon_sym_e_GT] = ACTIONS(2443), + [anon_sym_o_GT] = ACTIONS(2443), + [anon_sym_err_PLUSout_GT] = ACTIONS(2443), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2443), + [anon_sym_o_PLUSe_GT] = ACTIONS(2443), + [anon_sym_e_PLUSo_GT] = ACTIONS(2443), + [anon_sym_err_GT_GT] = ACTIONS(2441), + [anon_sym_out_GT_GT] = ACTIONS(2441), + [anon_sym_e_GT_GT] = ACTIONS(2441), + [anon_sym_o_GT_GT] = ACTIONS(2441), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2441), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2441), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2441), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2441), + [anon_sym_POUND] = ACTIONS(3), + }, + [758] = { [sym_comment] = STATE(758), - [anon_sym_if] = ACTIONS(2423), - [anon_sym_in] = ACTIONS(2423), - [sym__newline] = ACTIONS(2423), - [anon_sym_SEMI] = ACTIONS(2423), - [anon_sym_PIPE] = ACTIONS(2423), - [anon_sym_err_GT_PIPE] = ACTIONS(2423), - [anon_sym_out_GT_PIPE] = ACTIONS(2423), - [anon_sym_e_GT_PIPE] = ACTIONS(2423), - [anon_sym_o_GT_PIPE] = ACTIONS(2423), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2423), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2423), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2423), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2423), - [anon_sym_RPAREN] = ACTIONS(2423), - [anon_sym_GT2] = ACTIONS(2425), - [anon_sym_DASH2] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_RBRACE] = ACTIONS(2423), - [anon_sym_EQ_GT] = ACTIONS(2423), - [anon_sym_STAR2] = ACTIONS(2425), - [anon_sym_and2] = ACTIONS(2423), - [anon_sym_xor2] = ACTIONS(2423), - [anon_sym_or2] = ACTIONS(2423), - [anon_sym_not_DASHin2] = ACTIONS(2423), - [anon_sym_has2] = ACTIONS(2423), - [anon_sym_not_DASHhas2] = ACTIONS(2423), - [anon_sym_starts_DASHwith2] = ACTIONS(2423), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2423), - [anon_sym_ends_DASHwith2] = ACTIONS(2423), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2423), - [anon_sym_EQ_EQ2] = ACTIONS(2423), - [anon_sym_BANG_EQ2] = ACTIONS(2423), - [anon_sym_LT2] = ACTIONS(2425), - [anon_sym_LT_EQ2] = ACTIONS(2423), - [anon_sym_GT_EQ2] = ACTIONS(2423), - [anon_sym_EQ_TILDE2] = ACTIONS(2423), - [anon_sym_BANG_TILDE2] = ACTIONS(2423), - [anon_sym_like2] = ACTIONS(2423), - [anon_sym_not_DASHlike2] = ACTIONS(2423), - [anon_sym_STAR_STAR2] = ACTIONS(2423), - [anon_sym_PLUS_PLUS2] = ACTIONS(2423), - [anon_sym_SLASH2] = ACTIONS(2425), - [anon_sym_mod2] = ACTIONS(2423), - [anon_sym_SLASH_SLASH2] = ACTIONS(2423), - [anon_sym_PLUS2] = ACTIONS(2425), - [anon_sym_bit_DASHshl2] = ACTIONS(2423), - [anon_sym_bit_DASHshr2] = ACTIONS(2423), - [anon_sym_bit_DASHand2] = ACTIONS(2423), - [anon_sym_bit_DASHxor2] = ACTIONS(2423), - [anon_sym_bit_DASHor2] = ACTIONS(2423), - [anon_sym_err_GT] = ACTIONS(2425), - [anon_sym_out_GT] = ACTIONS(2425), - [anon_sym_e_GT] = ACTIONS(2425), - [anon_sym_o_GT] = ACTIONS(2425), - [anon_sym_err_PLUSout_GT] = ACTIONS(2425), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2425), - [anon_sym_o_PLUSe_GT] = ACTIONS(2425), - [anon_sym_e_PLUSo_GT] = ACTIONS(2425), - [anon_sym_err_GT_GT] = ACTIONS(2423), - [anon_sym_out_GT_GT] = ACTIONS(2423), - [anon_sym_e_GT_GT] = ACTIONS(2423), - [anon_sym_o_GT_GT] = ACTIONS(2423), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2423), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2423), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2423), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2423), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(759)] = { + [anon_sym_if] = ACTIONS(2445), + [anon_sym_in] = ACTIONS(2445), + [sym__newline] = ACTIONS(2445), + [anon_sym_SEMI] = ACTIONS(2445), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_err_GT_PIPE] = ACTIONS(2445), + [anon_sym_out_GT_PIPE] = ACTIONS(2445), + [anon_sym_e_GT_PIPE] = ACTIONS(2445), + [anon_sym_o_GT_PIPE] = ACTIONS(2445), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2445), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2445), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2445), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2445), + [anon_sym_RPAREN] = ACTIONS(2445), + [anon_sym_GT2] = ACTIONS(2447), + [anon_sym_DASH2] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2445), + [anon_sym_EQ_GT] = ACTIONS(2445), + [anon_sym_STAR2] = ACTIONS(2447), + [anon_sym_and2] = ACTIONS(2445), + [anon_sym_xor2] = ACTIONS(2445), + [anon_sym_or2] = ACTIONS(2445), + [anon_sym_not_DASHin2] = ACTIONS(2445), + [anon_sym_has2] = ACTIONS(2445), + [anon_sym_not_DASHhas2] = ACTIONS(2445), + [anon_sym_starts_DASHwith2] = ACTIONS(2445), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2445), + [anon_sym_ends_DASHwith2] = ACTIONS(2445), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2445), + [anon_sym_EQ_EQ2] = ACTIONS(2445), + [anon_sym_BANG_EQ2] = ACTIONS(2445), + [anon_sym_LT2] = ACTIONS(2447), + [anon_sym_LT_EQ2] = ACTIONS(2445), + [anon_sym_GT_EQ2] = ACTIONS(2445), + [anon_sym_EQ_TILDE2] = ACTIONS(2445), + [anon_sym_BANG_TILDE2] = ACTIONS(2445), + [anon_sym_like2] = ACTIONS(2445), + [anon_sym_not_DASHlike2] = ACTIONS(2445), + [anon_sym_STAR_STAR2] = ACTIONS(2445), + [anon_sym_PLUS_PLUS2] = ACTIONS(2445), + [anon_sym_SLASH2] = ACTIONS(2447), + [anon_sym_mod2] = ACTIONS(2445), + [anon_sym_SLASH_SLASH2] = ACTIONS(2445), + [anon_sym_PLUS2] = ACTIONS(2447), + [anon_sym_bit_DASHshl2] = ACTIONS(2445), + [anon_sym_bit_DASHshr2] = ACTIONS(2445), + [anon_sym_bit_DASHand2] = ACTIONS(2445), + [anon_sym_bit_DASHxor2] = ACTIONS(2445), + [anon_sym_bit_DASHor2] = ACTIONS(2445), + [anon_sym_err_GT] = ACTIONS(2447), + [anon_sym_out_GT] = ACTIONS(2447), + [anon_sym_e_GT] = ACTIONS(2447), + [anon_sym_o_GT] = ACTIONS(2447), + [anon_sym_err_PLUSout_GT] = ACTIONS(2447), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2447), + [anon_sym_o_PLUSe_GT] = ACTIONS(2447), + [anon_sym_e_PLUSo_GT] = ACTIONS(2447), + [anon_sym_err_GT_GT] = ACTIONS(2445), + [anon_sym_out_GT_GT] = ACTIONS(2445), + [anon_sym_e_GT_GT] = ACTIONS(2445), + [anon_sym_o_GT_GT] = ACTIONS(2445), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2445), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2445), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2445), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2445), + [anon_sym_POUND] = ACTIONS(3), + }, + [759] = { [sym_comment] = STATE(759), - [anon_sym_finally] = ACTIONS(2427), - [anon_sym_in] = ACTIONS(2427), - [sym__newline] = ACTIONS(2427), - [anon_sym_SEMI] = ACTIONS(2427), - [anon_sym_PIPE] = ACTIONS(2427), - [anon_sym_err_GT_PIPE] = ACTIONS(2427), - [anon_sym_out_GT_PIPE] = ACTIONS(2427), - [anon_sym_e_GT_PIPE] = ACTIONS(2427), - [anon_sym_o_GT_PIPE] = ACTIONS(2427), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2427), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2427), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2427), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2427), - [anon_sym_RPAREN] = ACTIONS(2427), - [anon_sym_GT2] = ACTIONS(2429), - [anon_sym_DASH2] = ACTIONS(2427), - [anon_sym_LBRACE] = ACTIONS(2427), - [anon_sym_RBRACE] = ACTIONS(2427), - [anon_sym_EQ_GT] = ACTIONS(2427), - [anon_sym_STAR2] = ACTIONS(2429), - [anon_sym_and2] = ACTIONS(2427), - [anon_sym_xor2] = ACTIONS(2427), - [anon_sym_or2] = ACTIONS(2427), - [anon_sym_not_DASHin2] = ACTIONS(2427), - [anon_sym_has2] = ACTIONS(2427), - [anon_sym_not_DASHhas2] = ACTIONS(2427), - [anon_sym_starts_DASHwith2] = ACTIONS(2427), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2427), - [anon_sym_ends_DASHwith2] = ACTIONS(2427), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2427), - [anon_sym_EQ_EQ2] = ACTIONS(2427), - [anon_sym_BANG_EQ2] = ACTIONS(2427), - [anon_sym_LT2] = ACTIONS(2429), - [anon_sym_LT_EQ2] = ACTIONS(2427), - [anon_sym_GT_EQ2] = ACTIONS(2427), - [anon_sym_EQ_TILDE2] = ACTIONS(2427), - [anon_sym_BANG_TILDE2] = ACTIONS(2427), - [anon_sym_like2] = ACTIONS(2427), - [anon_sym_not_DASHlike2] = ACTIONS(2427), - [anon_sym_STAR_STAR2] = ACTIONS(2427), - [anon_sym_PLUS_PLUS2] = ACTIONS(2427), - [anon_sym_SLASH2] = ACTIONS(2429), - [anon_sym_mod2] = ACTIONS(2427), - [anon_sym_SLASH_SLASH2] = ACTIONS(2427), - [anon_sym_PLUS2] = ACTIONS(2429), - [anon_sym_bit_DASHshl2] = ACTIONS(2427), - [anon_sym_bit_DASHshr2] = ACTIONS(2427), - [anon_sym_bit_DASHand2] = ACTIONS(2427), - [anon_sym_bit_DASHxor2] = ACTIONS(2427), - [anon_sym_bit_DASHor2] = ACTIONS(2427), - [anon_sym_err_GT] = ACTIONS(2429), - [anon_sym_out_GT] = ACTIONS(2429), - [anon_sym_e_GT] = ACTIONS(2429), - [anon_sym_o_GT] = ACTIONS(2429), - [anon_sym_err_PLUSout_GT] = ACTIONS(2429), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2429), - [anon_sym_o_PLUSe_GT] = ACTIONS(2429), - [anon_sym_e_PLUSo_GT] = ACTIONS(2429), - [anon_sym_err_GT_GT] = ACTIONS(2427), - [anon_sym_out_GT_GT] = ACTIONS(2427), - [anon_sym_e_GT_GT] = ACTIONS(2427), - [anon_sym_o_GT_GT] = ACTIONS(2427), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2427), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2427), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2427), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2427), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(760)] = { + [anon_sym_if] = ACTIONS(2449), + [anon_sym_in] = ACTIONS(2449), + [sym__newline] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2449), + [anon_sym_err_GT_PIPE] = ACTIONS(2449), + [anon_sym_out_GT_PIPE] = ACTIONS(2449), + [anon_sym_e_GT_PIPE] = ACTIONS(2449), + [anon_sym_o_GT_PIPE] = ACTIONS(2449), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2449), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2449), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2449), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2449), + [anon_sym_RPAREN] = ACTIONS(2449), + [anon_sym_GT2] = ACTIONS(2451), + [anon_sym_DASH2] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_EQ_GT] = ACTIONS(2449), + [anon_sym_STAR2] = ACTIONS(2451), + [anon_sym_and2] = ACTIONS(2449), + [anon_sym_xor2] = ACTIONS(2449), + [anon_sym_or2] = ACTIONS(2449), + [anon_sym_not_DASHin2] = ACTIONS(2449), + [anon_sym_has2] = ACTIONS(2449), + [anon_sym_not_DASHhas2] = ACTIONS(2449), + [anon_sym_starts_DASHwith2] = ACTIONS(2449), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2449), + [anon_sym_ends_DASHwith2] = ACTIONS(2449), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2449), + [anon_sym_EQ_EQ2] = ACTIONS(2449), + [anon_sym_BANG_EQ2] = ACTIONS(2449), + [anon_sym_LT2] = ACTIONS(2451), + [anon_sym_LT_EQ2] = ACTIONS(2449), + [anon_sym_GT_EQ2] = ACTIONS(2449), + [anon_sym_EQ_TILDE2] = ACTIONS(2449), + [anon_sym_BANG_TILDE2] = ACTIONS(2449), + [anon_sym_like2] = ACTIONS(2449), + [anon_sym_not_DASHlike2] = ACTIONS(2449), + [anon_sym_STAR_STAR2] = ACTIONS(2449), + [anon_sym_PLUS_PLUS2] = ACTIONS(2449), + [anon_sym_SLASH2] = ACTIONS(2451), + [anon_sym_mod2] = ACTIONS(2449), + [anon_sym_SLASH_SLASH2] = ACTIONS(2449), + [anon_sym_PLUS2] = ACTIONS(2451), + [anon_sym_bit_DASHshl2] = ACTIONS(2449), + [anon_sym_bit_DASHshr2] = ACTIONS(2449), + [anon_sym_bit_DASHand2] = ACTIONS(2449), + [anon_sym_bit_DASHxor2] = ACTIONS(2449), + [anon_sym_bit_DASHor2] = ACTIONS(2449), + [anon_sym_err_GT] = ACTIONS(2451), + [anon_sym_out_GT] = ACTIONS(2451), + [anon_sym_e_GT] = ACTIONS(2451), + [anon_sym_o_GT] = ACTIONS(2451), + [anon_sym_err_PLUSout_GT] = ACTIONS(2451), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2451), + [anon_sym_o_PLUSe_GT] = ACTIONS(2451), + [anon_sym_e_PLUSo_GT] = ACTIONS(2451), + [anon_sym_err_GT_GT] = ACTIONS(2449), + [anon_sym_out_GT_GT] = ACTIONS(2449), + [anon_sym_e_GT_GT] = ACTIONS(2449), + [anon_sym_o_GT_GT] = ACTIONS(2449), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2449), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2449), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2449), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2449), + [anon_sym_POUND] = ACTIONS(3), + }, + [760] = { [sym_comment] = STATE(760), - [anon_sym_if] = ACTIONS(2431), - [anon_sym_in] = ACTIONS(2431), - [sym__newline] = ACTIONS(2431), - [anon_sym_SEMI] = ACTIONS(2431), - [anon_sym_PIPE] = ACTIONS(2431), - [anon_sym_err_GT_PIPE] = ACTIONS(2431), - [anon_sym_out_GT_PIPE] = ACTIONS(2431), - [anon_sym_e_GT_PIPE] = ACTIONS(2431), - [anon_sym_o_GT_PIPE] = ACTIONS(2431), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2431), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2431), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2431), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2431), - [anon_sym_RPAREN] = ACTIONS(2431), - [anon_sym_GT2] = ACTIONS(2433), - [anon_sym_DASH2] = ACTIONS(2431), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(2431), - [anon_sym_EQ_GT] = ACTIONS(2431), - [anon_sym_STAR2] = ACTIONS(2433), - [anon_sym_and2] = ACTIONS(2431), - [anon_sym_xor2] = ACTIONS(2431), - [anon_sym_or2] = ACTIONS(2431), - [anon_sym_not_DASHin2] = ACTIONS(2431), - [anon_sym_has2] = ACTIONS(2431), - [anon_sym_not_DASHhas2] = ACTIONS(2431), - [anon_sym_starts_DASHwith2] = ACTIONS(2431), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2431), - [anon_sym_ends_DASHwith2] = ACTIONS(2431), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2431), - [anon_sym_EQ_EQ2] = ACTIONS(2431), - [anon_sym_BANG_EQ2] = ACTIONS(2431), - [anon_sym_LT2] = ACTIONS(2433), - [anon_sym_LT_EQ2] = ACTIONS(2431), - [anon_sym_GT_EQ2] = ACTIONS(2431), - [anon_sym_EQ_TILDE2] = ACTIONS(2431), - [anon_sym_BANG_TILDE2] = ACTIONS(2431), - [anon_sym_like2] = ACTIONS(2431), - [anon_sym_not_DASHlike2] = ACTIONS(2431), - [anon_sym_STAR_STAR2] = ACTIONS(2431), - [anon_sym_PLUS_PLUS2] = ACTIONS(2431), - [anon_sym_SLASH2] = ACTIONS(2433), - [anon_sym_mod2] = ACTIONS(2431), - [anon_sym_SLASH_SLASH2] = ACTIONS(2431), - [anon_sym_PLUS2] = ACTIONS(2433), - [anon_sym_bit_DASHshl2] = ACTIONS(2431), - [anon_sym_bit_DASHshr2] = ACTIONS(2431), - [anon_sym_bit_DASHand2] = ACTIONS(2431), - [anon_sym_bit_DASHxor2] = ACTIONS(2431), - [anon_sym_bit_DASHor2] = ACTIONS(2431), - [anon_sym_err_GT] = ACTIONS(2433), - [anon_sym_out_GT] = ACTIONS(2433), - [anon_sym_e_GT] = ACTIONS(2433), - [anon_sym_o_GT] = ACTIONS(2433), - [anon_sym_err_PLUSout_GT] = ACTIONS(2433), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2433), - [anon_sym_o_PLUSe_GT] = ACTIONS(2433), - [anon_sym_e_PLUSo_GT] = ACTIONS(2433), - [anon_sym_err_GT_GT] = ACTIONS(2431), - [anon_sym_out_GT_GT] = ACTIONS(2431), - [anon_sym_e_GT_GT] = ACTIONS(2431), - [anon_sym_o_GT_GT] = ACTIONS(2431), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2431), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2431), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2431), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2431), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(761)] = { + [anon_sym_if] = ACTIONS(2453), + [anon_sym_in] = ACTIONS(2453), + [sym__newline] = ACTIONS(2453), + [anon_sym_SEMI] = ACTIONS(2453), + [anon_sym_PIPE] = ACTIONS(2453), + [anon_sym_err_GT_PIPE] = ACTIONS(2453), + [anon_sym_out_GT_PIPE] = ACTIONS(2453), + [anon_sym_e_GT_PIPE] = ACTIONS(2453), + [anon_sym_o_GT_PIPE] = ACTIONS(2453), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2453), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2453), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2453), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2453), + [anon_sym_RPAREN] = ACTIONS(2453), + [anon_sym_GT2] = ACTIONS(2455), + [anon_sym_DASH2] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2453), + [anon_sym_EQ_GT] = ACTIONS(2453), + [anon_sym_STAR2] = ACTIONS(2455), + [anon_sym_and2] = ACTIONS(2453), + [anon_sym_xor2] = ACTIONS(2453), + [anon_sym_or2] = ACTIONS(2453), + [anon_sym_not_DASHin2] = ACTIONS(2453), + [anon_sym_has2] = ACTIONS(2453), + [anon_sym_not_DASHhas2] = ACTIONS(2453), + [anon_sym_starts_DASHwith2] = ACTIONS(2453), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2453), + [anon_sym_ends_DASHwith2] = ACTIONS(2453), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2453), + [anon_sym_EQ_EQ2] = ACTIONS(2453), + [anon_sym_BANG_EQ2] = ACTIONS(2453), + [anon_sym_LT2] = ACTIONS(2455), + [anon_sym_LT_EQ2] = ACTIONS(2453), + [anon_sym_GT_EQ2] = ACTIONS(2453), + [anon_sym_EQ_TILDE2] = ACTIONS(2453), + [anon_sym_BANG_TILDE2] = ACTIONS(2453), + [anon_sym_like2] = ACTIONS(2453), + [anon_sym_not_DASHlike2] = ACTIONS(2453), + [anon_sym_STAR_STAR2] = ACTIONS(2453), + [anon_sym_PLUS_PLUS2] = ACTIONS(2453), + [anon_sym_SLASH2] = ACTIONS(2455), + [anon_sym_mod2] = ACTIONS(2453), + [anon_sym_SLASH_SLASH2] = ACTIONS(2453), + [anon_sym_PLUS2] = ACTIONS(2455), + [anon_sym_bit_DASHshl2] = ACTIONS(2453), + [anon_sym_bit_DASHshr2] = ACTIONS(2453), + [anon_sym_bit_DASHand2] = ACTIONS(2453), + [anon_sym_bit_DASHxor2] = ACTIONS(2453), + [anon_sym_bit_DASHor2] = ACTIONS(2453), + [anon_sym_err_GT] = ACTIONS(2455), + [anon_sym_out_GT] = ACTIONS(2455), + [anon_sym_e_GT] = ACTIONS(2455), + [anon_sym_o_GT] = ACTIONS(2455), + [anon_sym_err_PLUSout_GT] = ACTIONS(2455), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2455), + [anon_sym_o_PLUSe_GT] = ACTIONS(2455), + [anon_sym_e_PLUSo_GT] = ACTIONS(2455), + [anon_sym_err_GT_GT] = ACTIONS(2453), + [anon_sym_out_GT_GT] = ACTIONS(2453), + [anon_sym_e_GT_GT] = ACTIONS(2453), + [anon_sym_o_GT_GT] = ACTIONS(2453), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2453), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2453), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2453), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2453), + [anon_sym_POUND] = ACTIONS(3), + }, + [761] = { [sym_comment] = STATE(761), - [anon_sym_if] = ACTIONS(2435), - [anon_sym_in] = ACTIONS(2435), - [sym__newline] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_PIPE] = ACTIONS(2435), - [anon_sym_err_GT_PIPE] = ACTIONS(2435), - [anon_sym_out_GT_PIPE] = ACTIONS(2435), - [anon_sym_e_GT_PIPE] = ACTIONS(2435), - [anon_sym_o_GT_PIPE] = ACTIONS(2435), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2435), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2435), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2435), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(2435), - [anon_sym_GT2] = ACTIONS(2437), - [anon_sym_DASH2] = ACTIONS(2435), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_STAR2] = ACTIONS(2437), - [anon_sym_and2] = ACTIONS(2435), - [anon_sym_xor2] = ACTIONS(2435), - [anon_sym_or2] = ACTIONS(2435), - [anon_sym_not_DASHin2] = ACTIONS(2435), - [anon_sym_has2] = ACTIONS(2435), - [anon_sym_not_DASHhas2] = ACTIONS(2435), - [anon_sym_starts_DASHwith2] = ACTIONS(2435), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2435), - [anon_sym_ends_DASHwith2] = ACTIONS(2435), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2435), - [anon_sym_EQ_EQ2] = ACTIONS(2435), - [anon_sym_BANG_EQ2] = ACTIONS(2435), - [anon_sym_LT2] = ACTIONS(2437), - [anon_sym_LT_EQ2] = ACTIONS(2435), - [anon_sym_GT_EQ2] = ACTIONS(2435), - [anon_sym_EQ_TILDE2] = ACTIONS(2435), - [anon_sym_BANG_TILDE2] = ACTIONS(2435), - [anon_sym_like2] = ACTIONS(2435), - [anon_sym_not_DASHlike2] = ACTIONS(2435), - [anon_sym_STAR_STAR2] = ACTIONS(2435), - [anon_sym_PLUS_PLUS2] = ACTIONS(2435), - [anon_sym_SLASH2] = ACTIONS(2437), - [anon_sym_mod2] = ACTIONS(2435), - [anon_sym_SLASH_SLASH2] = ACTIONS(2435), - [anon_sym_PLUS2] = ACTIONS(2437), - [anon_sym_bit_DASHshl2] = ACTIONS(2435), - [anon_sym_bit_DASHshr2] = ACTIONS(2435), - [anon_sym_bit_DASHand2] = ACTIONS(2435), - [anon_sym_bit_DASHxor2] = ACTIONS(2435), - [anon_sym_bit_DASHor2] = ACTIONS(2435), - [anon_sym_err_GT] = ACTIONS(2437), - [anon_sym_out_GT] = ACTIONS(2437), - [anon_sym_e_GT] = ACTIONS(2437), - [anon_sym_o_GT] = ACTIONS(2437), - [anon_sym_err_PLUSout_GT] = ACTIONS(2437), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2437), - [anon_sym_o_PLUSe_GT] = ACTIONS(2437), - [anon_sym_e_PLUSo_GT] = ACTIONS(2437), - [anon_sym_err_GT_GT] = ACTIONS(2435), - [anon_sym_out_GT_GT] = ACTIONS(2435), - [anon_sym_e_GT_GT] = ACTIONS(2435), - [anon_sym_o_GT_GT] = ACTIONS(2435), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2435), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2435), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2435), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2435), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(762)] = { + [anon_sym_if] = ACTIONS(2457), + [anon_sym_in] = ACTIONS(2457), + [sym__newline] = ACTIONS(2457), + [anon_sym_SEMI] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(2457), + [anon_sym_err_GT_PIPE] = ACTIONS(2457), + [anon_sym_out_GT_PIPE] = ACTIONS(2457), + [anon_sym_e_GT_PIPE] = ACTIONS(2457), + [anon_sym_o_GT_PIPE] = ACTIONS(2457), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2457), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2457), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2457), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2457), + [anon_sym_RPAREN] = ACTIONS(2457), + [anon_sym_GT2] = ACTIONS(2459), + [anon_sym_DASH2] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_RBRACE] = ACTIONS(2457), + [anon_sym_EQ_GT] = ACTIONS(2457), + [anon_sym_STAR2] = ACTIONS(2459), + [anon_sym_and2] = ACTIONS(2457), + [anon_sym_xor2] = ACTIONS(2457), + [anon_sym_or2] = ACTIONS(2457), + [anon_sym_not_DASHin2] = ACTIONS(2457), + [anon_sym_has2] = ACTIONS(2457), + [anon_sym_not_DASHhas2] = ACTIONS(2457), + [anon_sym_starts_DASHwith2] = ACTIONS(2457), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2457), + [anon_sym_ends_DASHwith2] = ACTIONS(2457), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2457), + [anon_sym_EQ_EQ2] = ACTIONS(2457), + [anon_sym_BANG_EQ2] = ACTIONS(2457), + [anon_sym_LT2] = ACTIONS(2459), + [anon_sym_LT_EQ2] = ACTIONS(2457), + [anon_sym_GT_EQ2] = ACTIONS(2457), + [anon_sym_EQ_TILDE2] = ACTIONS(2457), + [anon_sym_BANG_TILDE2] = ACTIONS(2457), + [anon_sym_like2] = ACTIONS(2457), + [anon_sym_not_DASHlike2] = ACTIONS(2457), + [anon_sym_STAR_STAR2] = ACTIONS(2457), + [anon_sym_PLUS_PLUS2] = ACTIONS(2457), + [anon_sym_SLASH2] = ACTIONS(2459), + [anon_sym_mod2] = ACTIONS(2457), + [anon_sym_SLASH_SLASH2] = ACTIONS(2457), + [anon_sym_PLUS2] = ACTIONS(2459), + [anon_sym_bit_DASHshl2] = ACTIONS(2457), + [anon_sym_bit_DASHshr2] = ACTIONS(2457), + [anon_sym_bit_DASHand2] = ACTIONS(2457), + [anon_sym_bit_DASHxor2] = ACTIONS(2457), + [anon_sym_bit_DASHor2] = ACTIONS(2457), + [anon_sym_err_GT] = ACTIONS(2459), + [anon_sym_out_GT] = ACTIONS(2459), + [anon_sym_e_GT] = ACTIONS(2459), + [anon_sym_o_GT] = ACTIONS(2459), + [anon_sym_err_PLUSout_GT] = ACTIONS(2459), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2459), + [anon_sym_o_PLUSe_GT] = ACTIONS(2459), + [anon_sym_e_PLUSo_GT] = ACTIONS(2459), + [anon_sym_err_GT_GT] = ACTIONS(2457), + [anon_sym_out_GT_GT] = ACTIONS(2457), + [anon_sym_e_GT_GT] = ACTIONS(2457), + [anon_sym_o_GT_GT] = ACTIONS(2457), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2457), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2457), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2457), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2457), + [anon_sym_POUND] = ACTIONS(3), + }, + [762] = { [sym_comment] = STATE(762), - [anon_sym_if] = ACTIONS(2439), - [anon_sym_in] = ACTIONS(2439), - [sym__newline] = ACTIONS(2439), - [anon_sym_SEMI] = ACTIONS(2439), - [anon_sym_PIPE] = ACTIONS(2439), - [anon_sym_err_GT_PIPE] = ACTIONS(2439), - [anon_sym_out_GT_PIPE] = ACTIONS(2439), - [anon_sym_e_GT_PIPE] = ACTIONS(2439), - [anon_sym_o_GT_PIPE] = ACTIONS(2439), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2439), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2439), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2439), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2439), - [anon_sym_RPAREN] = ACTIONS(2439), - [anon_sym_GT2] = ACTIONS(2441), - [anon_sym_DASH2] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2439), - [anon_sym_RBRACE] = ACTIONS(2439), - [anon_sym_EQ_GT] = ACTIONS(2439), - [anon_sym_STAR2] = ACTIONS(2441), - [anon_sym_and2] = ACTIONS(2439), - [anon_sym_xor2] = ACTIONS(2439), - [anon_sym_or2] = ACTIONS(2439), - [anon_sym_not_DASHin2] = ACTIONS(2439), - [anon_sym_has2] = ACTIONS(2439), - [anon_sym_not_DASHhas2] = ACTIONS(2439), - [anon_sym_starts_DASHwith2] = ACTIONS(2439), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2439), - [anon_sym_ends_DASHwith2] = ACTIONS(2439), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2439), - [anon_sym_EQ_EQ2] = ACTIONS(2439), - [anon_sym_BANG_EQ2] = ACTIONS(2439), - [anon_sym_LT2] = ACTIONS(2441), - [anon_sym_LT_EQ2] = ACTIONS(2439), - [anon_sym_GT_EQ2] = ACTIONS(2439), - [anon_sym_EQ_TILDE2] = ACTIONS(2439), - [anon_sym_BANG_TILDE2] = ACTIONS(2439), - [anon_sym_like2] = ACTIONS(2439), - [anon_sym_not_DASHlike2] = ACTIONS(2439), - [anon_sym_STAR_STAR2] = ACTIONS(2439), - [anon_sym_PLUS_PLUS2] = ACTIONS(2439), - [anon_sym_SLASH2] = ACTIONS(2441), - [anon_sym_mod2] = ACTIONS(2439), - [anon_sym_SLASH_SLASH2] = ACTIONS(2439), - [anon_sym_PLUS2] = ACTIONS(2441), - [anon_sym_bit_DASHshl2] = ACTIONS(2439), - [anon_sym_bit_DASHshr2] = ACTIONS(2439), - [anon_sym_bit_DASHand2] = ACTIONS(2439), - [anon_sym_bit_DASHxor2] = ACTIONS(2439), - [anon_sym_bit_DASHor2] = ACTIONS(2439), - [anon_sym_err_GT] = ACTIONS(2441), - [anon_sym_out_GT] = ACTIONS(2441), - [anon_sym_e_GT] = ACTIONS(2441), - [anon_sym_o_GT] = ACTIONS(2441), - [anon_sym_err_PLUSout_GT] = ACTIONS(2441), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2441), - [anon_sym_o_PLUSe_GT] = ACTIONS(2441), - [anon_sym_e_PLUSo_GT] = ACTIONS(2441), - [anon_sym_err_GT_GT] = ACTIONS(2439), - [anon_sym_out_GT_GT] = ACTIONS(2439), - [anon_sym_e_GT_GT] = ACTIONS(2439), - [anon_sym_o_GT_GT] = ACTIONS(2439), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2439), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2439), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2439), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2439), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(763)] = { + [anon_sym_if] = ACTIONS(2461), + [anon_sym_in] = ACTIONS(2461), + [sym__newline] = ACTIONS(2461), + [anon_sym_SEMI] = ACTIONS(2461), + [anon_sym_PIPE] = ACTIONS(2461), + [anon_sym_err_GT_PIPE] = ACTIONS(2461), + [anon_sym_out_GT_PIPE] = ACTIONS(2461), + [anon_sym_e_GT_PIPE] = ACTIONS(2461), + [anon_sym_o_GT_PIPE] = ACTIONS(2461), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2461), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2461), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2461), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2461), + [anon_sym_RPAREN] = ACTIONS(2461), + [anon_sym_GT2] = ACTIONS(2463), + [anon_sym_DASH2] = ACTIONS(2461), + [anon_sym_LBRACE] = ACTIONS(2461), + [anon_sym_RBRACE] = ACTIONS(2461), + [anon_sym_EQ_GT] = ACTIONS(2461), + [anon_sym_STAR2] = ACTIONS(2463), + [anon_sym_and2] = ACTIONS(2461), + [anon_sym_xor2] = ACTIONS(2461), + [anon_sym_or2] = ACTIONS(2461), + [anon_sym_not_DASHin2] = ACTIONS(2461), + [anon_sym_has2] = ACTIONS(2461), + [anon_sym_not_DASHhas2] = ACTIONS(2461), + [anon_sym_starts_DASHwith2] = ACTIONS(2461), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2461), + [anon_sym_ends_DASHwith2] = ACTIONS(2461), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2461), + [anon_sym_EQ_EQ2] = ACTIONS(2461), + [anon_sym_BANG_EQ2] = ACTIONS(2461), + [anon_sym_LT2] = ACTIONS(2463), + [anon_sym_LT_EQ2] = ACTIONS(2461), + [anon_sym_GT_EQ2] = ACTIONS(2461), + [anon_sym_EQ_TILDE2] = ACTIONS(2461), + [anon_sym_BANG_TILDE2] = ACTIONS(2461), + [anon_sym_like2] = ACTIONS(2461), + [anon_sym_not_DASHlike2] = ACTIONS(2461), + [anon_sym_STAR_STAR2] = ACTIONS(2461), + [anon_sym_PLUS_PLUS2] = ACTIONS(2461), + [anon_sym_SLASH2] = ACTIONS(2463), + [anon_sym_mod2] = ACTIONS(2461), + [anon_sym_SLASH_SLASH2] = ACTIONS(2461), + [anon_sym_PLUS2] = ACTIONS(2463), + [anon_sym_bit_DASHshl2] = ACTIONS(2461), + [anon_sym_bit_DASHshr2] = ACTIONS(2461), + [anon_sym_bit_DASHand2] = ACTIONS(2461), + [anon_sym_bit_DASHxor2] = ACTIONS(2461), + [anon_sym_bit_DASHor2] = ACTIONS(2461), + [anon_sym_err_GT] = ACTIONS(2463), + [anon_sym_out_GT] = ACTIONS(2463), + [anon_sym_e_GT] = ACTIONS(2463), + [anon_sym_o_GT] = ACTIONS(2463), + [anon_sym_err_PLUSout_GT] = ACTIONS(2463), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2463), + [anon_sym_o_PLUSe_GT] = ACTIONS(2463), + [anon_sym_e_PLUSo_GT] = ACTIONS(2463), + [anon_sym_err_GT_GT] = ACTIONS(2461), + [anon_sym_out_GT_GT] = ACTIONS(2461), + [anon_sym_e_GT_GT] = ACTIONS(2461), + [anon_sym_o_GT_GT] = ACTIONS(2461), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2461), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2461), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2461), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2461), + [anon_sym_POUND] = ACTIONS(3), + }, + [763] = { [sym_comment] = STATE(763), - [anon_sym_if] = ACTIONS(2443), - [anon_sym_in] = ACTIONS(2443), - [sym__newline] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_PIPE] = ACTIONS(2443), - [anon_sym_err_GT_PIPE] = ACTIONS(2443), - [anon_sym_out_GT_PIPE] = ACTIONS(2443), - [anon_sym_e_GT_PIPE] = ACTIONS(2443), - [anon_sym_o_GT_PIPE] = ACTIONS(2443), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2443), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2443), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2443), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2443), - [anon_sym_RPAREN] = ACTIONS(2443), - [anon_sym_GT2] = ACTIONS(2445), - [anon_sym_DASH2] = ACTIONS(2443), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_EQ_GT] = ACTIONS(2443), - [anon_sym_STAR2] = ACTIONS(2445), - [anon_sym_and2] = ACTIONS(2443), - [anon_sym_xor2] = ACTIONS(2443), - [anon_sym_or2] = ACTIONS(2443), - [anon_sym_not_DASHin2] = ACTIONS(2443), - [anon_sym_has2] = ACTIONS(2443), - [anon_sym_not_DASHhas2] = ACTIONS(2443), - [anon_sym_starts_DASHwith2] = ACTIONS(2443), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2443), - [anon_sym_ends_DASHwith2] = ACTIONS(2443), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2443), - [anon_sym_EQ_EQ2] = ACTIONS(2443), - [anon_sym_BANG_EQ2] = ACTIONS(2443), - [anon_sym_LT2] = ACTIONS(2445), - [anon_sym_LT_EQ2] = ACTIONS(2443), - [anon_sym_GT_EQ2] = ACTIONS(2443), - [anon_sym_EQ_TILDE2] = ACTIONS(2443), - [anon_sym_BANG_TILDE2] = ACTIONS(2443), - [anon_sym_like2] = ACTIONS(2443), - [anon_sym_not_DASHlike2] = ACTIONS(2443), - [anon_sym_STAR_STAR2] = ACTIONS(2443), - [anon_sym_PLUS_PLUS2] = ACTIONS(2443), - [anon_sym_SLASH2] = ACTIONS(2445), - [anon_sym_mod2] = ACTIONS(2443), - [anon_sym_SLASH_SLASH2] = ACTIONS(2443), - [anon_sym_PLUS2] = ACTIONS(2445), - [anon_sym_bit_DASHshl2] = ACTIONS(2443), - [anon_sym_bit_DASHshr2] = ACTIONS(2443), - [anon_sym_bit_DASHand2] = ACTIONS(2443), - [anon_sym_bit_DASHxor2] = ACTIONS(2443), - [anon_sym_bit_DASHor2] = ACTIONS(2443), - [anon_sym_err_GT] = ACTIONS(2445), - [anon_sym_out_GT] = ACTIONS(2445), - [anon_sym_e_GT] = ACTIONS(2445), - [anon_sym_o_GT] = ACTIONS(2445), - [anon_sym_err_PLUSout_GT] = ACTIONS(2445), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2445), - [anon_sym_o_PLUSe_GT] = ACTIONS(2445), - [anon_sym_e_PLUSo_GT] = ACTIONS(2445), - [anon_sym_err_GT_GT] = ACTIONS(2443), - [anon_sym_out_GT_GT] = ACTIONS(2443), - [anon_sym_e_GT_GT] = ACTIONS(2443), - [anon_sym_o_GT_GT] = ACTIONS(2443), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2443), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2443), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2443), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2443), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(764)] = { + [anon_sym_if] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(2465), + [sym__newline] = ACTIONS(2465), + [anon_sym_SEMI] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(2465), + [anon_sym_err_GT_PIPE] = ACTIONS(2465), + [anon_sym_out_GT_PIPE] = ACTIONS(2465), + [anon_sym_e_GT_PIPE] = ACTIONS(2465), + [anon_sym_o_GT_PIPE] = ACTIONS(2465), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2465), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2465), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2465), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2465), + [anon_sym_RPAREN] = ACTIONS(2465), + [anon_sym_GT2] = ACTIONS(2467), + [anon_sym_DASH2] = ACTIONS(2465), + [anon_sym_LBRACE] = ACTIONS(2465), + [anon_sym_RBRACE] = ACTIONS(2465), + [anon_sym_EQ_GT] = ACTIONS(2465), + [anon_sym_STAR2] = ACTIONS(2467), + [anon_sym_and2] = ACTIONS(2465), + [anon_sym_xor2] = ACTIONS(2465), + [anon_sym_or2] = ACTIONS(2465), + [anon_sym_not_DASHin2] = ACTIONS(2465), + [anon_sym_has2] = ACTIONS(2465), + [anon_sym_not_DASHhas2] = ACTIONS(2465), + [anon_sym_starts_DASHwith2] = ACTIONS(2465), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2465), + [anon_sym_ends_DASHwith2] = ACTIONS(2465), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2465), + [anon_sym_EQ_EQ2] = ACTIONS(2465), + [anon_sym_BANG_EQ2] = ACTIONS(2465), + [anon_sym_LT2] = ACTIONS(2467), + [anon_sym_LT_EQ2] = ACTIONS(2465), + [anon_sym_GT_EQ2] = ACTIONS(2465), + [anon_sym_EQ_TILDE2] = ACTIONS(2465), + [anon_sym_BANG_TILDE2] = ACTIONS(2465), + [anon_sym_like2] = ACTIONS(2465), + [anon_sym_not_DASHlike2] = ACTIONS(2465), + [anon_sym_STAR_STAR2] = ACTIONS(2465), + [anon_sym_PLUS_PLUS2] = ACTIONS(2465), + [anon_sym_SLASH2] = ACTIONS(2467), + [anon_sym_mod2] = ACTIONS(2465), + [anon_sym_SLASH_SLASH2] = ACTIONS(2465), + [anon_sym_PLUS2] = ACTIONS(2467), + [anon_sym_bit_DASHshl2] = ACTIONS(2465), + [anon_sym_bit_DASHshr2] = ACTIONS(2465), + [anon_sym_bit_DASHand2] = ACTIONS(2465), + [anon_sym_bit_DASHxor2] = ACTIONS(2465), + [anon_sym_bit_DASHor2] = ACTIONS(2465), + [anon_sym_err_GT] = ACTIONS(2467), + [anon_sym_out_GT] = ACTIONS(2467), + [anon_sym_e_GT] = ACTIONS(2467), + [anon_sym_o_GT] = ACTIONS(2467), + [anon_sym_err_PLUSout_GT] = ACTIONS(2467), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2467), + [anon_sym_o_PLUSe_GT] = ACTIONS(2467), + [anon_sym_e_PLUSo_GT] = ACTIONS(2467), + [anon_sym_err_GT_GT] = ACTIONS(2465), + [anon_sym_out_GT_GT] = ACTIONS(2465), + [anon_sym_e_GT_GT] = ACTIONS(2465), + [anon_sym_o_GT_GT] = ACTIONS(2465), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2465), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2465), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2465), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2465), + [anon_sym_POUND] = ACTIONS(3), + }, + [764] = { [sym_comment] = STATE(764), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_in] = ACTIONS(2447), - [sym__newline] = ACTIONS(2447), - [anon_sym_SEMI] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(2447), - [anon_sym_err_GT_PIPE] = ACTIONS(2447), - [anon_sym_out_GT_PIPE] = ACTIONS(2447), - [anon_sym_e_GT_PIPE] = ACTIONS(2447), - [anon_sym_o_GT_PIPE] = ACTIONS(2447), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2447), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2447), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2447), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2447), - [anon_sym_RPAREN] = ACTIONS(2447), - [anon_sym_GT2] = ACTIONS(2449), - [anon_sym_DASH2] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_EQ_GT] = ACTIONS(2447), - [anon_sym_STAR2] = ACTIONS(2449), - [anon_sym_and2] = ACTIONS(2447), - [anon_sym_xor2] = ACTIONS(2447), - [anon_sym_or2] = ACTIONS(2447), - [anon_sym_not_DASHin2] = ACTIONS(2447), - [anon_sym_has2] = ACTIONS(2447), - [anon_sym_not_DASHhas2] = ACTIONS(2447), - [anon_sym_starts_DASHwith2] = ACTIONS(2447), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2447), - [anon_sym_ends_DASHwith2] = ACTIONS(2447), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2447), - [anon_sym_EQ_EQ2] = ACTIONS(2447), - [anon_sym_BANG_EQ2] = ACTIONS(2447), - [anon_sym_LT2] = ACTIONS(2449), - [anon_sym_LT_EQ2] = ACTIONS(2447), - [anon_sym_GT_EQ2] = ACTIONS(2447), - [anon_sym_EQ_TILDE2] = ACTIONS(2447), - [anon_sym_BANG_TILDE2] = ACTIONS(2447), - [anon_sym_like2] = ACTIONS(2447), - [anon_sym_not_DASHlike2] = ACTIONS(2447), - [anon_sym_STAR_STAR2] = ACTIONS(2447), - [anon_sym_PLUS_PLUS2] = ACTIONS(2447), - [anon_sym_SLASH2] = ACTIONS(2449), - [anon_sym_mod2] = ACTIONS(2447), - [anon_sym_SLASH_SLASH2] = ACTIONS(2447), - [anon_sym_PLUS2] = ACTIONS(2449), - [anon_sym_bit_DASHshl2] = ACTIONS(2447), - [anon_sym_bit_DASHshr2] = ACTIONS(2447), - [anon_sym_bit_DASHand2] = ACTIONS(2447), - [anon_sym_bit_DASHxor2] = ACTIONS(2447), - [anon_sym_bit_DASHor2] = ACTIONS(2447), - [anon_sym_err_GT] = ACTIONS(2449), - [anon_sym_out_GT] = ACTIONS(2449), - [anon_sym_e_GT] = ACTIONS(2449), - [anon_sym_o_GT] = ACTIONS(2449), - [anon_sym_err_PLUSout_GT] = ACTIONS(2449), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2449), - [anon_sym_o_PLUSe_GT] = ACTIONS(2449), - [anon_sym_e_PLUSo_GT] = ACTIONS(2449), - [anon_sym_err_GT_GT] = ACTIONS(2447), - [anon_sym_out_GT_GT] = ACTIONS(2447), - [anon_sym_e_GT_GT] = ACTIONS(2447), - [anon_sym_o_GT_GT] = ACTIONS(2447), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2447), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2447), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2447), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2447), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(765)] = { + [anon_sym_if] = ACTIONS(2469), + [anon_sym_in] = ACTIONS(2469), + [sym__newline] = ACTIONS(2469), + [anon_sym_SEMI] = ACTIONS(2469), + [anon_sym_PIPE] = ACTIONS(2469), + [anon_sym_err_GT_PIPE] = ACTIONS(2469), + [anon_sym_out_GT_PIPE] = ACTIONS(2469), + [anon_sym_e_GT_PIPE] = ACTIONS(2469), + [anon_sym_o_GT_PIPE] = ACTIONS(2469), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2469), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2469), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2469), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2469), + [anon_sym_RPAREN] = ACTIONS(2469), + [anon_sym_GT2] = ACTIONS(2471), + [anon_sym_DASH2] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2469), + [anon_sym_RBRACE] = ACTIONS(2469), + [anon_sym_EQ_GT] = ACTIONS(2469), + [anon_sym_STAR2] = ACTIONS(2471), + [anon_sym_and2] = ACTIONS(2469), + [anon_sym_xor2] = ACTIONS(2469), + [anon_sym_or2] = ACTIONS(2469), + [anon_sym_not_DASHin2] = ACTIONS(2469), + [anon_sym_has2] = ACTIONS(2469), + [anon_sym_not_DASHhas2] = ACTIONS(2469), + [anon_sym_starts_DASHwith2] = ACTIONS(2469), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2469), + [anon_sym_ends_DASHwith2] = ACTIONS(2469), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2469), + [anon_sym_EQ_EQ2] = ACTIONS(2469), + [anon_sym_BANG_EQ2] = ACTIONS(2469), + [anon_sym_LT2] = ACTIONS(2471), + [anon_sym_LT_EQ2] = ACTIONS(2469), + [anon_sym_GT_EQ2] = ACTIONS(2469), + [anon_sym_EQ_TILDE2] = ACTIONS(2469), + [anon_sym_BANG_TILDE2] = ACTIONS(2469), + [anon_sym_like2] = ACTIONS(2469), + [anon_sym_not_DASHlike2] = ACTIONS(2469), + [anon_sym_STAR_STAR2] = ACTIONS(2469), + [anon_sym_PLUS_PLUS2] = ACTIONS(2469), + [anon_sym_SLASH2] = ACTIONS(2471), + [anon_sym_mod2] = ACTIONS(2469), + [anon_sym_SLASH_SLASH2] = ACTIONS(2469), + [anon_sym_PLUS2] = ACTIONS(2471), + [anon_sym_bit_DASHshl2] = ACTIONS(2469), + [anon_sym_bit_DASHshr2] = ACTIONS(2469), + [anon_sym_bit_DASHand2] = ACTIONS(2469), + [anon_sym_bit_DASHxor2] = ACTIONS(2469), + [anon_sym_bit_DASHor2] = ACTIONS(2469), + [anon_sym_err_GT] = ACTIONS(2471), + [anon_sym_out_GT] = ACTIONS(2471), + [anon_sym_e_GT] = ACTIONS(2471), + [anon_sym_o_GT] = ACTIONS(2471), + [anon_sym_err_PLUSout_GT] = ACTIONS(2471), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2471), + [anon_sym_o_PLUSe_GT] = ACTIONS(2471), + [anon_sym_e_PLUSo_GT] = ACTIONS(2471), + [anon_sym_err_GT_GT] = ACTIONS(2469), + [anon_sym_out_GT_GT] = ACTIONS(2469), + [anon_sym_e_GT_GT] = ACTIONS(2469), + [anon_sym_o_GT_GT] = ACTIONS(2469), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2469), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2469), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2469), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2469), + [anon_sym_POUND] = ACTIONS(3), + }, + [765] = { + [aux_sym__repeat_newline] = STATE(1016), + [sym__expr_parenthesized_immediate] = STATE(5101), [sym_comment] = STATE(765), - [anon_sym_if] = ACTIONS(2451), - [anon_sym_in] = ACTIONS(2451), - [sym__newline] = ACTIONS(2451), - [anon_sym_SEMI] = ACTIONS(2451), - [anon_sym_PIPE] = ACTIONS(2451), - [anon_sym_err_GT_PIPE] = ACTIONS(2451), - [anon_sym_out_GT_PIPE] = ACTIONS(2451), - [anon_sym_e_GT_PIPE] = ACTIONS(2451), - [anon_sym_o_GT_PIPE] = ACTIONS(2451), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2451), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2451), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2451), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2451), - [anon_sym_RPAREN] = ACTIONS(2451), - [anon_sym_GT2] = ACTIONS(2453), - [anon_sym_DASH2] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_RBRACE] = ACTIONS(2451), - [anon_sym_EQ_GT] = ACTIONS(2451), - [anon_sym_STAR2] = ACTIONS(2453), - [anon_sym_and2] = ACTIONS(2451), - [anon_sym_xor2] = ACTIONS(2451), - [anon_sym_or2] = ACTIONS(2451), - [anon_sym_not_DASHin2] = ACTIONS(2451), - [anon_sym_has2] = ACTIONS(2451), - [anon_sym_not_DASHhas2] = ACTIONS(2451), - [anon_sym_starts_DASHwith2] = ACTIONS(2451), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2451), - [anon_sym_ends_DASHwith2] = ACTIONS(2451), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2451), - [anon_sym_EQ_EQ2] = ACTIONS(2451), - [anon_sym_BANG_EQ2] = ACTIONS(2451), - [anon_sym_LT2] = ACTIONS(2453), - [anon_sym_LT_EQ2] = ACTIONS(2451), - [anon_sym_GT_EQ2] = ACTIONS(2451), - [anon_sym_EQ_TILDE2] = ACTIONS(2451), - [anon_sym_BANG_TILDE2] = ACTIONS(2451), - [anon_sym_like2] = ACTIONS(2451), - [anon_sym_not_DASHlike2] = ACTIONS(2451), - [anon_sym_STAR_STAR2] = ACTIONS(2451), - [anon_sym_PLUS_PLUS2] = ACTIONS(2451), - [anon_sym_SLASH2] = ACTIONS(2453), - [anon_sym_mod2] = ACTIONS(2451), - [anon_sym_SLASH_SLASH2] = ACTIONS(2451), - [anon_sym_PLUS2] = ACTIONS(2453), - [anon_sym_bit_DASHshl2] = ACTIONS(2451), - [anon_sym_bit_DASHshr2] = ACTIONS(2451), - [anon_sym_bit_DASHand2] = ACTIONS(2451), - [anon_sym_bit_DASHxor2] = ACTIONS(2451), - [anon_sym_bit_DASHor2] = ACTIONS(2451), - [anon_sym_err_GT] = ACTIONS(2453), - [anon_sym_out_GT] = ACTIONS(2453), - [anon_sym_e_GT] = ACTIONS(2453), - [anon_sym_o_GT] = ACTIONS(2453), - [anon_sym_err_PLUSout_GT] = ACTIONS(2453), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2453), - [anon_sym_o_PLUSe_GT] = ACTIONS(2453), - [anon_sym_e_PLUSo_GT] = ACTIONS(2453), - [anon_sym_err_GT_GT] = ACTIONS(2451), - [anon_sym_out_GT_GT] = ACTIONS(2451), - [anon_sym_e_GT_GT] = ACTIONS(2451), - [anon_sym_o_GT_GT] = ACTIONS(2451), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2451), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2451), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2451), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2451), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(766)] = { + [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_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_LPAREN2] = ACTIONS(1830), + [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_POUND] = ACTIONS(3), + }, + [766] = { [sym_comment] = STATE(766), - [anon_sym_in] = ACTIONS(2455), - [sym__newline] = ACTIONS(2455), - [anon_sym_SEMI] = ACTIONS(2455), - [anon_sym_PIPE] = ACTIONS(2455), - [anon_sym_err_GT_PIPE] = ACTIONS(2455), - [anon_sym_out_GT_PIPE] = ACTIONS(2455), - [anon_sym_e_GT_PIPE] = ACTIONS(2455), - [anon_sym_o_GT_PIPE] = ACTIONS(2455), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2455), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2455), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2455), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2455), - [anon_sym_GT2] = ACTIONS(2457), - [anon_sym_DASH2] = ACTIONS(2455), - [anon_sym_LBRACE] = ACTIONS(2455), - [anon_sym_RBRACE] = ACTIONS(2455), - [anon_sym_EQ_GT] = ACTIONS(2455), - [anon_sym_STAR2] = ACTIONS(2457), - [anon_sym_and2] = ACTIONS(2455), - [anon_sym_xor2] = ACTIONS(2455), - [anon_sym_or2] = ACTIONS(2455), - [anon_sym_not_DASHin2] = ACTIONS(2455), - [anon_sym_has2] = ACTIONS(2455), - [anon_sym_not_DASHhas2] = ACTIONS(2455), - [anon_sym_starts_DASHwith2] = ACTIONS(2455), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2455), - [anon_sym_ends_DASHwith2] = ACTIONS(2455), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2455), - [anon_sym_EQ_EQ2] = ACTIONS(2455), - [anon_sym_BANG_EQ2] = ACTIONS(2455), - [anon_sym_LT2] = ACTIONS(2457), - [anon_sym_LT_EQ2] = ACTIONS(2455), - [anon_sym_GT_EQ2] = ACTIONS(2455), - [anon_sym_EQ_TILDE2] = ACTIONS(2455), - [anon_sym_BANG_TILDE2] = ACTIONS(2455), - [anon_sym_like2] = ACTIONS(2455), - [anon_sym_not_DASHlike2] = ACTIONS(2455), - [anon_sym_STAR_STAR2] = ACTIONS(2455), - [anon_sym_PLUS_PLUS2] = ACTIONS(2455), - [anon_sym_SLASH2] = ACTIONS(2457), - [anon_sym_mod2] = ACTIONS(2455), - [anon_sym_SLASH_SLASH2] = ACTIONS(2455), - [anon_sym_PLUS2] = ACTIONS(2457), - [anon_sym_bit_DASHshl2] = ACTIONS(2455), - [anon_sym_bit_DASHshr2] = ACTIONS(2455), - [anon_sym_bit_DASHand2] = ACTIONS(2455), - [anon_sym_bit_DASHxor2] = ACTIONS(2455), - [anon_sym_bit_DASHor2] = ACTIONS(2455), - [anon_sym_COLON2] = ACTIONS(2455), - [anon_sym_err_GT] = ACTIONS(2457), - [anon_sym_out_GT] = ACTIONS(2457), - [anon_sym_e_GT] = ACTIONS(2457), - [anon_sym_o_GT] = ACTIONS(2457), - [anon_sym_err_PLUSout_GT] = ACTIONS(2457), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2457), - [anon_sym_o_PLUSe_GT] = ACTIONS(2457), - [anon_sym_e_PLUSo_GT] = ACTIONS(2457), - [anon_sym_err_GT_GT] = ACTIONS(2455), - [anon_sym_out_GT_GT] = ACTIONS(2455), - [anon_sym_e_GT_GT] = ACTIONS(2455), - [anon_sym_o_GT_GT] = ACTIONS(2455), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2455), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2455), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2455), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2455), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(767)] = { + [anon_sym_finally] = ACTIONS(2473), + [anon_sym_in] = ACTIONS(2473), + [sym__newline] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_PIPE] = ACTIONS(2473), + [anon_sym_err_GT_PIPE] = ACTIONS(2473), + [anon_sym_out_GT_PIPE] = ACTIONS(2473), + [anon_sym_e_GT_PIPE] = ACTIONS(2473), + [anon_sym_o_GT_PIPE] = ACTIONS(2473), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2473), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2473), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2473), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2473), + [anon_sym_RPAREN] = ACTIONS(2473), + [anon_sym_GT2] = ACTIONS(2475), + [anon_sym_DASH2] = ACTIONS(2473), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_EQ_GT] = ACTIONS(2473), + [anon_sym_STAR2] = ACTIONS(2475), + [anon_sym_and2] = ACTIONS(2473), + [anon_sym_xor2] = ACTIONS(2473), + [anon_sym_or2] = ACTIONS(2473), + [anon_sym_not_DASHin2] = ACTIONS(2473), + [anon_sym_has2] = ACTIONS(2473), + [anon_sym_not_DASHhas2] = ACTIONS(2473), + [anon_sym_starts_DASHwith2] = ACTIONS(2473), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2473), + [anon_sym_ends_DASHwith2] = ACTIONS(2473), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2473), + [anon_sym_EQ_EQ2] = ACTIONS(2473), + [anon_sym_BANG_EQ2] = ACTIONS(2473), + [anon_sym_LT2] = ACTIONS(2475), + [anon_sym_LT_EQ2] = ACTIONS(2473), + [anon_sym_GT_EQ2] = ACTIONS(2473), + [anon_sym_EQ_TILDE2] = ACTIONS(2473), + [anon_sym_BANG_TILDE2] = ACTIONS(2473), + [anon_sym_like2] = ACTIONS(2473), + [anon_sym_not_DASHlike2] = ACTIONS(2473), + [anon_sym_STAR_STAR2] = ACTIONS(2473), + [anon_sym_PLUS_PLUS2] = ACTIONS(2473), + [anon_sym_SLASH2] = ACTIONS(2475), + [anon_sym_mod2] = ACTIONS(2473), + [anon_sym_SLASH_SLASH2] = ACTIONS(2473), + [anon_sym_PLUS2] = ACTIONS(2475), + [anon_sym_bit_DASHshl2] = ACTIONS(2473), + [anon_sym_bit_DASHshr2] = ACTIONS(2473), + [anon_sym_bit_DASHand2] = ACTIONS(2473), + [anon_sym_bit_DASHxor2] = ACTIONS(2473), + [anon_sym_bit_DASHor2] = ACTIONS(2473), + [anon_sym_err_GT] = ACTIONS(2475), + [anon_sym_out_GT] = ACTIONS(2475), + [anon_sym_e_GT] = ACTIONS(2475), + [anon_sym_o_GT] = ACTIONS(2475), + [anon_sym_err_PLUSout_GT] = ACTIONS(2475), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2475), + [anon_sym_o_PLUSe_GT] = ACTIONS(2475), + [anon_sym_e_PLUSo_GT] = ACTIONS(2475), + [anon_sym_err_GT_GT] = ACTIONS(2473), + [anon_sym_out_GT_GT] = ACTIONS(2473), + [anon_sym_e_GT_GT] = ACTIONS(2473), + [anon_sym_o_GT_GT] = ACTIONS(2473), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2473), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2473), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2473), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2473), + [anon_sym_POUND] = ACTIONS(3), + }, + [767] = { + [aux_sym__repeat_newline] = STATE(1018), + [sym__expr_parenthesized_immediate] = STATE(5101), [sym_comment] = STATE(767), - [anon_sym_in] = ACTIONS(2455), - [sym__newline] = ACTIONS(2455), - [anon_sym_SEMI] = ACTIONS(2455), - [anon_sym_PIPE] = ACTIONS(2455), - [anon_sym_err_GT_PIPE] = ACTIONS(2455), - [anon_sym_out_GT_PIPE] = ACTIONS(2455), - [anon_sym_e_GT_PIPE] = ACTIONS(2455), - [anon_sym_o_GT_PIPE] = ACTIONS(2455), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2455), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2455), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2455), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2455), - [anon_sym_GT2] = ACTIONS(2457), - [anon_sym_DASH2] = ACTIONS(2455), - [anon_sym_LBRACE] = ACTIONS(2455), - [anon_sym_RBRACE] = ACTIONS(2455), - [anon_sym_EQ_GT] = ACTIONS(2455), - [anon_sym_STAR2] = ACTIONS(2457), - [anon_sym_and2] = ACTIONS(2455), - [anon_sym_xor2] = ACTIONS(2455), - [anon_sym_or2] = ACTIONS(2455), - [anon_sym_not_DASHin2] = ACTIONS(2455), - [anon_sym_has2] = ACTIONS(2455), - [anon_sym_not_DASHhas2] = ACTIONS(2455), - [anon_sym_starts_DASHwith2] = ACTIONS(2455), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2455), - [anon_sym_ends_DASHwith2] = ACTIONS(2455), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2455), - [anon_sym_EQ_EQ2] = ACTIONS(2455), - [anon_sym_BANG_EQ2] = ACTIONS(2455), - [anon_sym_LT2] = ACTIONS(2457), - [anon_sym_LT_EQ2] = ACTIONS(2455), - [anon_sym_GT_EQ2] = ACTIONS(2455), - [anon_sym_EQ_TILDE2] = ACTIONS(2455), - [anon_sym_BANG_TILDE2] = ACTIONS(2455), - [anon_sym_like2] = ACTIONS(2455), - [anon_sym_not_DASHlike2] = ACTIONS(2455), - [anon_sym_STAR_STAR2] = ACTIONS(2455), - [anon_sym_PLUS_PLUS2] = ACTIONS(2455), - [anon_sym_SLASH2] = ACTIONS(2457), - [anon_sym_mod2] = ACTIONS(2455), - [anon_sym_SLASH_SLASH2] = ACTIONS(2455), - [anon_sym_PLUS2] = ACTIONS(2457), - [anon_sym_bit_DASHshl2] = ACTIONS(2455), - [anon_sym_bit_DASHshr2] = ACTIONS(2455), - [anon_sym_bit_DASHand2] = ACTIONS(2455), - [anon_sym_bit_DASHxor2] = ACTIONS(2455), - [anon_sym_bit_DASHor2] = ACTIONS(2455), - [anon_sym_COLON2] = ACTIONS(2455), - [anon_sym_err_GT] = ACTIONS(2457), - [anon_sym_out_GT] = ACTIONS(2457), - [anon_sym_e_GT] = ACTIONS(2457), - [anon_sym_o_GT] = ACTIONS(2457), - [anon_sym_err_PLUSout_GT] = ACTIONS(2457), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2457), - [anon_sym_o_PLUSe_GT] = ACTIONS(2457), - [anon_sym_e_PLUSo_GT] = ACTIONS(2457), - [anon_sym_err_GT_GT] = ACTIONS(2455), - [anon_sym_out_GT_GT] = ACTIONS(2455), - [anon_sym_e_GT_GT] = ACTIONS(2455), - [anon_sym_o_GT_GT] = ACTIONS(2455), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2455), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2455), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2455), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2455), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(768)] = { + [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_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_LPAREN2] = ACTIONS(1830), + [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_POUND] = ACTIONS(3), + }, + [768] = { [sym_comment] = STATE(768), - [anon_sym_in] = ACTIONS(2459), - [sym__newline] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2459), - [anon_sym_PIPE] = ACTIONS(2459), - [anon_sym_err_GT_PIPE] = ACTIONS(2459), - [anon_sym_out_GT_PIPE] = ACTIONS(2459), - [anon_sym_e_GT_PIPE] = ACTIONS(2459), - [anon_sym_o_GT_PIPE] = ACTIONS(2459), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2459), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2459), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2459), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2459), - [anon_sym_RPAREN] = ACTIONS(2459), - [anon_sym_GT2] = ACTIONS(2461), - [anon_sym_DASH2] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2459), - [anon_sym_RBRACE] = ACTIONS(2459), - [anon_sym_EQ_GT] = ACTIONS(2459), - [anon_sym_STAR2] = ACTIONS(2461), - [anon_sym_and2] = ACTIONS(2459), - [anon_sym_xor2] = ACTIONS(2459), - [anon_sym_or2] = ACTIONS(2459), - [anon_sym_not_DASHin2] = ACTIONS(2459), - [anon_sym_has2] = ACTIONS(2459), - [anon_sym_not_DASHhas2] = ACTIONS(2459), - [anon_sym_starts_DASHwith2] = ACTIONS(2459), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2459), - [anon_sym_ends_DASHwith2] = ACTIONS(2459), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2459), - [anon_sym_EQ_EQ2] = ACTIONS(2459), - [anon_sym_BANG_EQ2] = ACTIONS(2459), - [anon_sym_LT2] = ACTIONS(2461), - [anon_sym_LT_EQ2] = ACTIONS(2459), - [anon_sym_GT_EQ2] = ACTIONS(2459), - [anon_sym_EQ_TILDE2] = ACTIONS(2459), - [anon_sym_BANG_TILDE2] = ACTIONS(2459), - [anon_sym_like2] = ACTIONS(2459), - [anon_sym_not_DASHlike2] = ACTIONS(2459), - [anon_sym_STAR_STAR2] = ACTIONS(2459), - [anon_sym_PLUS_PLUS2] = ACTIONS(2459), - [anon_sym_SLASH2] = ACTIONS(2461), - [anon_sym_mod2] = ACTIONS(2459), - [anon_sym_SLASH_SLASH2] = ACTIONS(2459), - [anon_sym_PLUS2] = ACTIONS(2461), - [anon_sym_bit_DASHshl2] = ACTIONS(2459), - [anon_sym_bit_DASHshr2] = ACTIONS(2459), - [anon_sym_bit_DASHand2] = ACTIONS(2459), - [anon_sym_bit_DASHxor2] = ACTIONS(2459), - [anon_sym_bit_DASHor2] = ACTIONS(2459), - [anon_sym_COLON2] = ACTIONS(2459), - [anon_sym_err_GT] = ACTIONS(2461), - [anon_sym_out_GT] = ACTIONS(2461), - [anon_sym_e_GT] = ACTIONS(2461), - [anon_sym_o_GT] = ACTIONS(2461), - [anon_sym_err_PLUSout_GT] = ACTIONS(2461), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2461), - [anon_sym_o_PLUSe_GT] = ACTIONS(2461), - [anon_sym_e_PLUSo_GT] = ACTIONS(2461), - [anon_sym_err_GT_GT] = ACTIONS(2459), - [anon_sym_out_GT_GT] = ACTIONS(2459), - [anon_sym_e_GT_GT] = ACTIONS(2459), - [anon_sym_o_GT_GT] = ACTIONS(2459), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2459), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2459), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2459), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2459), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(769)] = { + [anon_sym_if] = ACTIONS(2477), + [anon_sym_in] = ACTIONS(2477), + [sym__newline] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_PIPE] = ACTIONS(2477), + [anon_sym_err_GT_PIPE] = ACTIONS(2477), + [anon_sym_out_GT_PIPE] = ACTIONS(2477), + [anon_sym_e_GT_PIPE] = ACTIONS(2477), + [anon_sym_o_GT_PIPE] = ACTIONS(2477), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2477), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2477), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2477), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2477), + [anon_sym_RPAREN] = ACTIONS(2477), + [anon_sym_GT2] = ACTIONS(2479), + [anon_sym_DASH2] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_EQ_GT] = ACTIONS(2477), + [anon_sym_STAR2] = ACTIONS(2479), + [anon_sym_and2] = ACTIONS(2477), + [anon_sym_xor2] = ACTIONS(2477), + [anon_sym_or2] = ACTIONS(2477), + [anon_sym_not_DASHin2] = ACTIONS(2477), + [anon_sym_has2] = ACTIONS(2477), + [anon_sym_not_DASHhas2] = ACTIONS(2477), + [anon_sym_starts_DASHwith2] = ACTIONS(2477), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2477), + [anon_sym_ends_DASHwith2] = ACTIONS(2477), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2477), + [anon_sym_EQ_EQ2] = ACTIONS(2477), + [anon_sym_BANG_EQ2] = ACTIONS(2477), + [anon_sym_LT2] = ACTIONS(2479), + [anon_sym_LT_EQ2] = ACTIONS(2477), + [anon_sym_GT_EQ2] = ACTIONS(2477), + [anon_sym_EQ_TILDE2] = ACTIONS(2477), + [anon_sym_BANG_TILDE2] = ACTIONS(2477), + [anon_sym_like2] = ACTIONS(2477), + [anon_sym_not_DASHlike2] = ACTIONS(2477), + [anon_sym_STAR_STAR2] = ACTIONS(2477), + [anon_sym_PLUS_PLUS2] = ACTIONS(2477), + [anon_sym_SLASH2] = ACTIONS(2479), + [anon_sym_mod2] = ACTIONS(2477), + [anon_sym_SLASH_SLASH2] = ACTIONS(2477), + [anon_sym_PLUS2] = ACTIONS(2479), + [anon_sym_bit_DASHshl2] = ACTIONS(2477), + [anon_sym_bit_DASHshr2] = ACTIONS(2477), + [anon_sym_bit_DASHand2] = ACTIONS(2477), + [anon_sym_bit_DASHxor2] = ACTIONS(2477), + [anon_sym_bit_DASHor2] = ACTIONS(2477), + [anon_sym_err_GT] = ACTIONS(2479), + [anon_sym_out_GT] = ACTIONS(2479), + [anon_sym_e_GT] = ACTIONS(2479), + [anon_sym_o_GT] = ACTIONS(2479), + [anon_sym_err_PLUSout_GT] = ACTIONS(2479), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2479), + [anon_sym_o_PLUSe_GT] = ACTIONS(2479), + [anon_sym_e_PLUSo_GT] = ACTIONS(2479), + [anon_sym_err_GT_GT] = ACTIONS(2477), + [anon_sym_out_GT_GT] = ACTIONS(2477), + [anon_sym_e_GT_GT] = ACTIONS(2477), + [anon_sym_o_GT_GT] = ACTIONS(2477), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2477), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2477), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2477), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2477), + [anon_sym_POUND] = ACTIONS(3), + }, + [769] = { + [aux_sym__repeat_newline] = STATE(992), + [sym__expr_parenthesized_immediate] = STATE(5101), [sym_comment] = STATE(769), - [anon_sym_in] = ACTIONS(2463), - [sym__newline] = ACTIONS(2463), - [anon_sym_SEMI] = ACTIONS(2463), - [anon_sym_PIPE] = ACTIONS(2463), - [anon_sym_err_GT_PIPE] = ACTIONS(2463), - [anon_sym_out_GT_PIPE] = ACTIONS(2463), - [anon_sym_e_GT_PIPE] = ACTIONS(2463), - [anon_sym_o_GT_PIPE] = ACTIONS(2463), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2463), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2463), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2463), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2463), - [anon_sym_RPAREN] = ACTIONS(2463), - [anon_sym_GT2] = ACTIONS(2465), - [anon_sym_DASH2] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(2463), - [anon_sym_RBRACE] = ACTIONS(2463), - [anon_sym_EQ_GT] = ACTIONS(2463), - [anon_sym_STAR2] = ACTIONS(2465), - [anon_sym_and2] = ACTIONS(2463), - [anon_sym_xor2] = ACTIONS(2463), - [anon_sym_or2] = ACTIONS(2463), - [anon_sym_not_DASHin2] = ACTIONS(2463), - [anon_sym_has2] = ACTIONS(2463), - [anon_sym_not_DASHhas2] = ACTIONS(2463), - [anon_sym_starts_DASHwith2] = ACTIONS(2463), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2463), - [anon_sym_ends_DASHwith2] = ACTIONS(2463), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2463), - [anon_sym_EQ_EQ2] = ACTIONS(2463), - [anon_sym_BANG_EQ2] = ACTIONS(2463), - [anon_sym_LT2] = ACTIONS(2465), - [anon_sym_LT_EQ2] = ACTIONS(2463), - [anon_sym_GT_EQ2] = ACTIONS(2463), - [anon_sym_EQ_TILDE2] = ACTIONS(2463), - [anon_sym_BANG_TILDE2] = ACTIONS(2463), - [anon_sym_like2] = ACTIONS(2463), - [anon_sym_not_DASHlike2] = ACTIONS(2463), - [anon_sym_STAR_STAR2] = ACTIONS(2463), - [anon_sym_PLUS_PLUS2] = ACTIONS(2463), - [anon_sym_SLASH2] = ACTIONS(2465), - [anon_sym_mod2] = ACTIONS(2463), - [anon_sym_SLASH_SLASH2] = ACTIONS(2463), - [anon_sym_PLUS2] = ACTIONS(2465), - [anon_sym_bit_DASHshl2] = ACTIONS(2463), - [anon_sym_bit_DASHshr2] = ACTIONS(2463), - [anon_sym_bit_DASHand2] = ACTIONS(2463), - [anon_sym_bit_DASHxor2] = ACTIONS(2463), - [anon_sym_bit_DASHor2] = ACTIONS(2463), - [anon_sym_COLON2] = ACTIONS(2463), - [anon_sym_err_GT] = ACTIONS(2465), - [anon_sym_out_GT] = ACTIONS(2465), - [anon_sym_e_GT] = ACTIONS(2465), - [anon_sym_o_GT] = ACTIONS(2465), - [anon_sym_err_PLUSout_GT] = ACTIONS(2465), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2465), - [anon_sym_o_PLUSe_GT] = ACTIONS(2465), - [anon_sym_e_PLUSo_GT] = ACTIONS(2465), - [anon_sym_err_GT_GT] = ACTIONS(2463), - [anon_sym_out_GT_GT] = ACTIONS(2463), - [anon_sym_e_GT_GT] = ACTIONS(2463), - [anon_sym_o_GT_GT] = ACTIONS(2463), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2463), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2463), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2463), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2463), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(770)] = { - [aux_sym__repeat_newline] = STATE(1122), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(770), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [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_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_LPAREN2] = ACTIONS(1830), + [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_POUND] = ACTIONS(3), }, - [STATE(771)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(1171), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(700), - [sym__unquoted_with_expr] = STATE(964), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [770] = { + [sym_comment] = STATE(770), + [anon_sym_if] = ACTIONS(2481), + [anon_sym_in] = ACTIONS(2481), + [sym__newline] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_PIPE] = ACTIONS(2481), + [anon_sym_err_GT_PIPE] = ACTIONS(2481), + [anon_sym_out_GT_PIPE] = ACTIONS(2481), + [anon_sym_e_GT_PIPE] = ACTIONS(2481), + [anon_sym_o_GT_PIPE] = ACTIONS(2481), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2481), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2481), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2481), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2481), + [anon_sym_RPAREN] = ACTIONS(2481), + [anon_sym_GT2] = ACTIONS(2483), + [anon_sym_DASH2] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(2481), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_EQ_GT] = ACTIONS(2481), + [anon_sym_STAR2] = ACTIONS(2483), + [anon_sym_and2] = ACTIONS(2481), + [anon_sym_xor2] = ACTIONS(2481), + [anon_sym_or2] = ACTIONS(2481), + [anon_sym_not_DASHin2] = ACTIONS(2481), + [anon_sym_has2] = ACTIONS(2481), + [anon_sym_not_DASHhas2] = ACTIONS(2481), + [anon_sym_starts_DASHwith2] = ACTIONS(2481), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2481), + [anon_sym_ends_DASHwith2] = ACTIONS(2481), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2481), + [anon_sym_EQ_EQ2] = ACTIONS(2481), + [anon_sym_BANG_EQ2] = ACTIONS(2481), + [anon_sym_LT2] = ACTIONS(2483), + [anon_sym_LT_EQ2] = ACTIONS(2481), + [anon_sym_GT_EQ2] = ACTIONS(2481), + [anon_sym_EQ_TILDE2] = ACTIONS(2481), + [anon_sym_BANG_TILDE2] = ACTIONS(2481), + [anon_sym_like2] = ACTIONS(2481), + [anon_sym_not_DASHlike2] = ACTIONS(2481), + [anon_sym_STAR_STAR2] = ACTIONS(2481), + [anon_sym_PLUS_PLUS2] = ACTIONS(2481), + [anon_sym_SLASH2] = ACTIONS(2483), + [anon_sym_mod2] = ACTIONS(2481), + [anon_sym_SLASH_SLASH2] = ACTIONS(2481), + [anon_sym_PLUS2] = ACTIONS(2483), + [anon_sym_bit_DASHshl2] = ACTIONS(2481), + [anon_sym_bit_DASHshr2] = ACTIONS(2481), + [anon_sym_bit_DASHand2] = ACTIONS(2481), + [anon_sym_bit_DASHxor2] = ACTIONS(2481), + [anon_sym_bit_DASHor2] = ACTIONS(2481), + [anon_sym_err_GT] = ACTIONS(2483), + [anon_sym_out_GT] = ACTIONS(2483), + [anon_sym_e_GT] = ACTIONS(2483), + [anon_sym_o_GT] = ACTIONS(2483), + [anon_sym_err_PLUSout_GT] = ACTIONS(2483), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2483), + [anon_sym_o_PLUSe_GT] = ACTIONS(2483), + [anon_sym_e_PLUSo_GT] = ACTIONS(2483), + [anon_sym_err_GT_GT] = ACTIONS(2481), + [anon_sym_out_GT_GT] = ACTIONS(2481), + [anon_sym_e_GT_GT] = ACTIONS(2481), + [anon_sym_o_GT_GT] = ACTIONS(2481), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2481), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2481), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2481), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2481), + [anon_sym_POUND] = ACTIONS(3), + }, + [771] = { [sym_comment] = STATE(771), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [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_POUND] = ACTIONS(3), + }, + [772] = { + [sym_comment] = STATE(772), + [anon_sym_in] = ACTIONS(2489), + [sym__newline] = ACTIONS(2489), + [anon_sym_SEMI] = ACTIONS(2489), + [anon_sym_PIPE] = ACTIONS(2489), + [anon_sym_err_GT_PIPE] = ACTIONS(2489), + [anon_sym_out_GT_PIPE] = ACTIONS(2489), + [anon_sym_e_GT_PIPE] = ACTIONS(2489), + [anon_sym_o_GT_PIPE] = ACTIONS(2489), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2489), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2489), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2489), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2489), + [anon_sym_RPAREN] = ACTIONS(2489), + [anon_sym_GT2] = ACTIONS(2491), + [anon_sym_DASH2] = ACTIONS(2489), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_RBRACE] = ACTIONS(2489), + [anon_sym_EQ_GT] = ACTIONS(2489), + [anon_sym_STAR2] = ACTIONS(2491), + [anon_sym_and2] = ACTIONS(2489), + [anon_sym_xor2] = ACTIONS(2489), + [anon_sym_or2] = ACTIONS(2489), + [anon_sym_not_DASHin2] = ACTIONS(2489), + [anon_sym_has2] = ACTIONS(2489), + [anon_sym_not_DASHhas2] = ACTIONS(2489), + [anon_sym_starts_DASHwith2] = ACTIONS(2489), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2489), + [anon_sym_ends_DASHwith2] = ACTIONS(2489), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2489), + [anon_sym_EQ_EQ2] = ACTIONS(2489), + [anon_sym_BANG_EQ2] = ACTIONS(2489), + [anon_sym_LT2] = ACTIONS(2491), + [anon_sym_LT_EQ2] = ACTIONS(2489), + [anon_sym_GT_EQ2] = ACTIONS(2489), + [anon_sym_EQ_TILDE2] = ACTIONS(2489), + [anon_sym_BANG_TILDE2] = ACTIONS(2489), + [anon_sym_like2] = ACTIONS(2489), + [anon_sym_not_DASHlike2] = ACTIONS(2489), + [anon_sym_STAR_STAR2] = ACTIONS(2489), + [anon_sym_PLUS_PLUS2] = ACTIONS(2489), + [anon_sym_SLASH2] = ACTIONS(2491), + [anon_sym_mod2] = ACTIONS(2489), + [anon_sym_SLASH_SLASH2] = ACTIONS(2489), + [anon_sym_PLUS2] = ACTIONS(2491), + [anon_sym_bit_DASHshl2] = ACTIONS(2489), + [anon_sym_bit_DASHshr2] = ACTIONS(2489), + [anon_sym_bit_DASHand2] = ACTIONS(2489), + [anon_sym_bit_DASHxor2] = ACTIONS(2489), + [anon_sym_bit_DASHor2] = ACTIONS(2489), + [anon_sym_COLON2] = ACTIONS(2489), + [anon_sym_err_GT] = ACTIONS(2491), + [anon_sym_out_GT] = ACTIONS(2491), + [anon_sym_e_GT] = ACTIONS(2491), + [anon_sym_o_GT] = ACTIONS(2491), + [anon_sym_err_PLUSout_GT] = ACTIONS(2491), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2491), + [anon_sym_o_PLUSe_GT] = ACTIONS(2491), + [anon_sym_e_PLUSo_GT] = ACTIONS(2491), + [anon_sym_err_GT_GT] = ACTIONS(2489), + [anon_sym_out_GT_GT] = ACTIONS(2489), + [anon_sym_e_GT_GT] = ACTIONS(2489), + [anon_sym_o_GT_GT] = ACTIONS(2489), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2489), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2489), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2489), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2489), + [anon_sym_POUND] = ACTIONS(3), + }, + [773] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1213), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(708), + [sym__unquoted_with_expr] = STATE(951), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(773), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(772)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(1178), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(701), - [sym__unquoted_with_expr] = STATE(965), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(772), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [774] = { + [sym_comment] = STATE(774), + [anon_sym_in] = ACTIONS(2493), + [sym__newline] = ACTIONS(2493), + [anon_sym_SEMI] = ACTIONS(2493), + [anon_sym_PIPE] = ACTIONS(2493), + [anon_sym_err_GT_PIPE] = ACTIONS(2493), + [anon_sym_out_GT_PIPE] = ACTIONS(2493), + [anon_sym_e_GT_PIPE] = ACTIONS(2493), + [anon_sym_o_GT_PIPE] = ACTIONS(2493), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2493), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2493), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2493), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2493), + [anon_sym_RPAREN] = ACTIONS(2493), + [anon_sym_GT2] = ACTIONS(2495), + [anon_sym_DASH2] = ACTIONS(2493), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_STAR2] = ACTIONS(2495), + [anon_sym_and2] = ACTIONS(2493), + [anon_sym_xor2] = ACTIONS(2493), + [anon_sym_or2] = ACTIONS(2493), + [anon_sym_not_DASHin2] = ACTIONS(2493), + [anon_sym_has2] = ACTIONS(2493), + [anon_sym_not_DASHhas2] = ACTIONS(2493), + [anon_sym_starts_DASHwith2] = ACTIONS(2493), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2493), + [anon_sym_ends_DASHwith2] = ACTIONS(2493), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2493), + [anon_sym_EQ_EQ2] = ACTIONS(2493), + [anon_sym_BANG_EQ2] = ACTIONS(2493), + [anon_sym_LT2] = ACTIONS(2495), + [anon_sym_LT_EQ2] = ACTIONS(2493), + [anon_sym_GT_EQ2] = ACTIONS(2493), + [anon_sym_EQ_TILDE2] = ACTIONS(2493), + [anon_sym_BANG_TILDE2] = ACTIONS(2493), + [anon_sym_like2] = ACTIONS(2493), + [anon_sym_not_DASHlike2] = ACTIONS(2493), + [anon_sym_STAR_STAR2] = ACTIONS(2493), + [anon_sym_PLUS_PLUS2] = ACTIONS(2493), + [anon_sym_SLASH2] = ACTIONS(2495), + [anon_sym_mod2] = ACTIONS(2493), + [anon_sym_SLASH_SLASH2] = ACTIONS(2493), + [anon_sym_PLUS2] = ACTIONS(2495), + [anon_sym_bit_DASHshl2] = ACTIONS(2493), + [anon_sym_bit_DASHshr2] = ACTIONS(2493), + [anon_sym_bit_DASHand2] = ACTIONS(2493), + [anon_sym_bit_DASHxor2] = ACTIONS(2493), + [anon_sym_bit_DASHor2] = ACTIONS(2493), + [anon_sym_DOT_DOT2] = ACTIONS(1614), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1616), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1616), + [anon_sym_err_GT] = ACTIONS(2495), + [anon_sym_out_GT] = ACTIONS(2495), + [anon_sym_e_GT] = ACTIONS(2495), + [anon_sym_o_GT] = ACTIONS(2495), + [anon_sym_err_PLUSout_GT] = ACTIONS(2495), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2495), + [anon_sym_o_PLUSe_GT] = ACTIONS(2495), + [anon_sym_e_PLUSo_GT] = ACTIONS(2495), + [anon_sym_err_GT_GT] = ACTIONS(2493), + [anon_sym_out_GT_GT] = ACTIONS(2493), + [anon_sym_e_GT_GT] = ACTIONS(2493), + [anon_sym_o_GT_GT] = ACTIONS(2493), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2493), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2493), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2493), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(3), + }, + [775] = { + [aux_sym__repeat_newline] = STATE(1101), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(775), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [776] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1209), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(703), + [sym__unquoted_with_expr] = STATE(943), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(776), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(773)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(1181), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(702), - [sym__unquoted_with_expr] = STATE(966), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(773), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [777] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2246), + [sym_expr_parenthesized] = STATE(2003), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(2127), + [sym_val_variable] = STATE(2006), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1825), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(700), + [sym__unquoted_with_expr] = STATE(942), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(777), + [anon_sym_true] = ACTIONS(2501), + [anon_sym_false] = ACTIONS(2501), + [anon_sym_null] = ACTIONS(2503), + [aux_sym_cmd_identifier_token3] = ACTIONS(2505), + [aux_sym_cmd_identifier_token4] = ACTIONS(2505), + [aux_sym_cmd_identifier_token5] = ACTIONS(2505), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT] = ACTIONS(2507), + [aux_sym_expr_unary_token1] = ACTIONS(2509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2511), + [anon_sym_DOT_DOT_LT] = ACTIONS(2511), + [aux_sym__val_number_decimal_token1] = ACTIONS(2513), + [aux_sym__val_number_decimal_token2] = ACTIONS(2515), + [aux_sym__val_number_decimal_token3] = ACTIONS(2517), + [aux_sym__val_number_decimal_token4] = ACTIONS(2517), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(2519), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(774)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), + [778] = { + [sym_cell_path] = STATE(1341), + [sym_path] = STATE(712), + [sym_comment] = STATE(778), + [aux_sym__where_predicate_lhs_repeat1] = STATE(580), + [ts_builtin_sym_end] = ACTIONS(1934), + [anon_sym_in] = ACTIONS(1934), + [sym__newline] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_PIPE] = ACTIONS(1934), + [anon_sym_err_GT_PIPE] = ACTIONS(1934), + [anon_sym_out_GT_PIPE] = ACTIONS(1934), + [anon_sym_e_GT_PIPE] = ACTIONS(1934), + [anon_sym_o_GT_PIPE] = ACTIONS(1934), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1934), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1934), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1934), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1934), + [anon_sym_GT2] = ACTIONS(1936), + [anon_sym_DASH2] = ACTIONS(1934), + [anon_sym_STAR2] = ACTIONS(1936), + [anon_sym_and2] = ACTIONS(1934), + [anon_sym_xor2] = ACTIONS(1934), + [anon_sym_or2] = ACTIONS(1934), + [anon_sym_not_DASHin2] = ACTIONS(1934), + [anon_sym_has2] = ACTIONS(1934), + [anon_sym_not_DASHhas2] = ACTIONS(1934), + [anon_sym_starts_DASHwith2] = ACTIONS(1934), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1934), + [anon_sym_ends_DASHwith2] = ACTIONS(1934), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1934), + [anon_sym_EQ_EQ2] = ACTIONS(1934), + [anon_sym_BANG_EQ2] = ACTIONS(1934), + [anon_sym_LT2] = ACTIONS(1936), + [anon_sym_LT_EQ2] = ACTIONS(1934), + [anon_sym_GT_EQ2] = ACTIONS(1934), + [anon_sym_EQ_TILDE2] = ACTIONS(1934), + [anon_sym_BANG_TILDE2] = ACTIONS(1934), + [anon_sym_like2] = ACTIONS(1934), + [anon_sym_not_DASHlike2] = ACTIONS(1934), + [anon_sym_STAR_STAR2] = ACTIONS(1934), + [anon_sym_PLUS_PLUS2] = ACTIONS(1934), + [anon_sym_SLASH2] = ACTIONS(1936), + [anon_sym_mod2] = ACTIONS(1934), + [anon_sym_SLASH_SLASH2] = ACTIONS(1934), + [anon_sym_PLUS2] = ACTIONS(1936), + [anon_sym_bit_DASHshl2] = ACTIONS(1934), + [anon_sym_bit_DASHshr2] = ACTIONS(1934), + [anon_sym_bit_DASHand2] = ACTIONS(1934), + [anon_sym_bit_DASHxor2] = ACTIONS(1934), + [anon_sym_bit_DASHor2] = ACTIONS(1934), + [anon_sym_DOT2] = ACTIONS(2417), + [anon_sym_err_GT] = ACTIONS(1936), + [anon_sym_out_GT] = ACTIONS(1936), + [anon_sym_e_GT] = ACTIONS(1936), + [anon_sym_o_GT] = ACTIONS(1936), + [anon_sym_err_PLUSout_GT] = ACTIONS(1936), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1936), + [anon_sym_o_PLUSe_GT] = ACTIONS(1936), + [anon_sym_e_PLUSo_GT] = ACTIONS(1936), + [anon_sym_err_GT_GT] = ACTIONS(1934), + [anon_sym_out_GT_GT] = ACTIONS(1934), + [anon_sym_e_GT_GT] = ACTIONS(1934), + [anon_sym_o_GT_GT] = ACTIONS(1934), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1934), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1934), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1934), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1934), + [anon_sym_POUND] = ACTIONS(3), + }, + [779] = { + [aux_sym__repeat_newline] = STATE(1106), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(779), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [780] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), [sym__expr_binary_expression] = STATE(1201), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(703), - [sym__unquoted_with_expr] = STATE(967), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(774), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(700), + [sym__unquoted_with_expr] = STATE(942), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(780), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(775)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(1203), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(704), - [sym__unquoted_with_expr] = STATE(968), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(775), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [781] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1197), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(721), + [sym__unquoted_with_expr] = STATE(933), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(781), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(776)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(1209), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(705), - [sym__unquoted_with_expr] = STATE(970), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(776), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [782] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1193), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(711), + [sym__unquoted_with_expr] = STATE(928), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(782), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(777)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(1215), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(706), - [sym__unquoted_with_expr] = STATE(971), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(777), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [783] = { + [aux_sym__repeat_newline] = STATE(1111), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(783), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [784] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1189), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(720), + [sym__unquoted_with_expr] = STATE(929), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(784), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(778)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(1217), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(707), - [sym__unquoted_with_expr] = STATE(972), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(778), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [785] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1185), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(727), + [sym__unquoted_with_expr] = STATE(931), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(785), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(779)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(973), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(710), - [sym__unquoted_with_expr] = STATE(974), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(779), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [786] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1181), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(735), + [sym__unquoted_with_expr] = STATE(939), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(786), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(780)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(1221), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(975), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(780), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [787] = { + [aux_sym__repeat_newline] = STATE(1116), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(787), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [788] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(940), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(698), + [sym__unquoted_with_expr] = STATE(941), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(788), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(781)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(1223), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(712), - [sym__unquoted_with_expr] = STATE(976), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(781), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [789] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1243), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(728), + [sym__unquoted_with_expr] = STATE(945), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(789), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(782)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(1225), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(713), - [sym__unquoted_with_expr] = STATE(977), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(782), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [790] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1161), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(724), + [sym__unquoted_with_expr] = STATE(971), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(790), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(783)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(1226), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(949), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(460), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(714), - [sym__unquoted_with_expr] = STATE(978), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(783), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), + [791] = { + [aux_sym__repeat_newline] = STATE(1121), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(791), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [792] = { + [aux_sym__repeat_newline] = STATE(1020), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(792), + [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_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_LPAREN2] = ACTIONS(1830), + [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_POUND] = ACTIONS(3), + }, + [793] = { + [sym_comment] = STATE(793), + [anon_sym_if] = ACTIONS(2521), + [anon_sym_in] = ACTIONS(2521), + [sym__newline] = ACTIONS(2521), + [anon_sym_SEMI] = ACTIONS(2521), + [anon_sym_PIPE] = ACTIONS(2521), + [anon_sym_err_GT_PIPE] = ACTIONS(2521), + [anon_sym_out_GT_PIPE] = ACTIONS(2521), + [anon_sym_e_GT_PIPE] = ACTIONS(2521), + [anon_sym_o_GT_PIPE] = ACTIONS(2521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2521), + [anon_sym_RPAREN] = ACTIONS(2521), + [anon_sym_GT2] = ACTIONS(2523), + [anon_sym_DASH2] = ACTIONS(2521), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_RBRACE] = ACTIONS(2521), + [anon_sym_EQ_GT] = ACTIONS(2521), + [anon_sym_STAR2] = ACTIONS(2523), + [anon_sym_and2] = ACTIONS(2521), + [anon_sym_xor2] = ACTIONS(2521), + [anon_sym_or2] = ACTIONS(2521), + [anon_sym_not_DASHin2] = ACTIONS(2521), + [anon_sym_has2] = ACTIONS(2521), + [anon_sym_not_DASHhas2] = ACTIONS(2521), + [anon_sym_starts_DASHwith2] = ACTIONS(2521), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2521), + [anon_sym_ends_DASHwith2] = ACTIONS(2521), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2521), + [anon_sym_EQ_EQ2] = ACTIONS(2521), + [anon_sym_BANG_EQ2] = ACTIONS(2521), + [anon_sym_LT2] = ACTIONS(2523), + [anon_sym_LT_EQ2] = ACTIONS(2521), + [anon_sym_GT_EQ2] = ACTIONS(2521), + [anon_sym_EQ_TILDE2] = ACTIONS(2521), + [anon_sym_BANG_TILDE2] = ACTIONS(2521), + [anon_sym_like2] = ACTIONS(2521), + [anon_sym_not_DASHlike2] = ACTIONS(2521), + [anon_sym_STAR_STAR2] = ACTIONS(2521), + [anon_sym_PLUS_PLUS2] = ACTIONS(2521), + [anon_sym_SLASH2] = ACTIONS(2523), + [anon_sym_mod2] = ACTIONS(2521), + [anon_sym_SLASH_SLASH2] = ACTIONS(2521), + [anon_sym_PLUS2] = ACTIONS(2523), + [anon_sym_bit_DASHshl2] = ACTIONS(2521), + [anon_sym_bit_DASHshr2] = ACTIONS(2521), + [anon_sym_bit_DASHand2] = ACTIONS(2521), + [anon_sym_bit_DASHxor2] = ACTIONS(2521), + [anon_sym_bit_DASHor2] = ACTIONS(2521), + [anon_sym_err_GT] = ACTIONS(2523), + [anon_sym_out_GT] = ACTIONS(2523), + [anon_sym_e_GT] = ACTIONS(2523), + [anon_sym_o_GT] = ACTIONS(2523), + [anon_sym_err_PLUSout_GT] = ACTIONS(2523), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2523), + [anon_sym_o_PLUSe_GT] = ACTIONS(2523), + [anon_sym_e_PLUSo_GT] = ACTIONS(2523), + [anon_sym_err_GT_GT] = ACTIONS(2521), + [anon_sym_out_GT_GT] = ACTIONS(2521), + [anon_sym_e_GT_GT] = ACTIONS(2521), + [anon_sym_o_GT_GT] = ACTIONS(2521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2521), + [anon_sym_POUND] = ACTIONS(3), + }, + [794] = { + [sym_comment] = STATE(794), + [anon_sym_if] = ACTIONS(2525), + [anon_sym_in] = ACTIONS(2525), + [sym__newline] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_err_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_GT_PIPE] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2525), + [anon_sym_RPAREN] = ACTIONS(2525), + [anon_sym_GT2] = ACTIONS(2527), + [anon_sym_DASH2] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2525), + [anon_sym_RBRACE] = ACTIONS(2525), + [anon_sym_EQ_GT] = ACTIONS(2525), + [anon_sym_STAR2] = ACTIONS(2527), + [anon_sym_and2] = ACTIONS(2525), + [anon_sym_xor2] = ACTIONS(2525), + [anon_sym_or2] = ACTIONS(2525), + [anon_sym_not_DASHin2] = ACTIONS(2525), + [anon_sym_has2] = ACTIONS(2525), + [anon_sym_not_DASHhas2] = ACTIONS(2525), + [anon_sym_starts_DASHwith2] = ACTIONS(2525), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2525), + [anon_sym_ends_DASHwith2] = ACTIONS(2525), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2525), + [anon_sym_EQ_EQ2] = ACTIONS(2525), + [anon_sym_BANG_EQ2] = ACTIONS(2525), + [anon_sym_LT2] = ACTIONS(2527), + [anon_sym_LT_EQ2] = ACTIONS(2525), + [anon_sym_GT_EQ2] = ACTIONS(2525), + [anon_sym_EQ_TILDE2] = ACTIONS(2525), + [anon_sym_BANG_TILDE2] = ACTIONS(2525), + [anon_sym_like2] = ACTIONS(2525), + [anon_sym_not_DASHlike2] = ACTIONS(2525), + [anon_sym_STAR_STAR2] = ACTIONS(2525), + [anon_sym_PLUS_PLUS2] = ACTIONS(2525), + [anon_sym_SLASH2] = ACTIONS(2527), + [anon_sym_mod2] = ACTIONS(2525), + [anon_sym_SLASH_SLASH2] = ACTIONS(2525), + [anon_sym_PLUS2] = ACTIONS(2527), + [anon_sym_bit_DASHshl2] = ACTIONS(2525), + [anon_sym_bit_DASHshr2] = ACTIONS(2525), + [anon_sym_bit_DASHand2] = ACTIONS(2525), + [anon_sym_bit_DASHxor2] = ACTIONS(2525), + [anon_sym_bit_DASHor2] = ACTIONS(2525), + [anon_sym_err_GT] = ACTIONS(2527), + [anon_sym_out_GT] = ACTIONS(2527), + [anon_sym_e_GT] = ACTIONS(2527), + [anon_sym_o_GT] = ACTIONS(2527), + [anon_sym_err_PLUSout_GT] = ACTIONS(2527), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2527), + [anon_sym_o_PLUSe_GT] = ACTIONS(2527), + [anon_sym_e_PLUSo_GT] = ACTIONS(2527), + [anon_sym_err_GT_GT] = ACTIONS(2525), + [anon_sym_out_GT_GT] = ACTIONS(2525), + [anon_sym_e_GT_GT] = ACTIONS(2525), + [anon_sym_o_GT_GT] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2525), + [anon_sym_POUND] = ACTIONS(3), + }, + [795] = { + [aux_sym__repeat_newline] = STATE(1126), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(795), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [796] = { + [sym_comment] = STATE(796), + [anon_sym_if] = ACTIONS(2529), + [anon_sym_in] = ACTIONS(2529), + [sym__newline] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_PIPE] = ACTIONS(2529), + [anon_sym_err_GT_PIPE] = ACTIONS(2529), + [anon_sym_out_GT_PIPE] = ACTIONS(2529), + [anon_sym_e_GT_PIPE] = ACTIONS(2529), + [anon_sym_o_GT_PIPE] = ACTIONS(2529), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2529), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2529), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2529), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2529), + [anon_sym_RPAREN] = ACTIONS(2529), + [anon_sym_GT2] = ACTIONS(2531), + [anon_sym_DASH2] = ACTIONS(2529), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_EQ_GT] = ACTIONS(2529), + [anon_sym_STAR2] = ACTIONS(2531), + [anon_sym_and2] = ACTIONS(2529), + [anon_sym_xor2] = ACTIONS(2529), + [anon_sym_or2] = ACTIONS(2529), + [anon_sym_not_DASHin2] = ACTIONS(2529), + [anon_sym_has2] = ACTIONS(2529), + [anon_sym_not_DASHhas2] = ACTIONS(2529), + [anon_sym_starts_DASHwith2] = ACTIONS(2529), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2529), + [anon_sym_ends_DASHwith2] = ACTIONS(2529), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2529), + [anon_sym_EQ_EQ2] = ACTIONS(2529), + [anon_sym_BANG_EQ2] = ACTIONS(2529), + [anon_sym_LT2] = ACTIONS(2531), + [anon_sym_LT_EQ2] = ACTIONS(2529), + [anon_sym_GT_EQ2] = ACTIONS(2529), + [anon_sym_EQ_TILDE2] = ACTIONS(2529), + [anon_sym_BANG_TILDE2] = ACTIONS(2529), + [anon_sym_like2] = ACTIONS(2529), + [anon_sym_not_DASHlike2] = ACTIONS(2529), + [anon_sym_STAR_STAR2] = ACTIONS(2529), + [anon_sym_PLUS_PLUS2] = ACTIONS(2529), + [anon_sym_SLASH2] = ACTIONS(2531), + [anon_sym_mod2] = ACTIONS(2529), + [anon_sym_SLASH_SLASH2] = ACTIONS(2529), + [anon_sym_PLUS2] = ACTIONS(2531), + [anon_sym_bit_DASHshl2] = ACTIONS(2529), + [anon_sym_bit_DASHshr2] = ACTIONS(2529), + [anon_sym_bit_DASHand2] = ACTIONS(2529), + [anon_sym_bit_DASHxor2] = ACTIONS(2529), + [anon_sym_bit_DASHor2] = ACTIONS(2529), + [anon_sym_err_GT] = ACTIONS(2531), + [anon_sym_out_GT] = ACTIONS(2531), + [anon_sym_e_GT] = ACTIONS(2531), + [anon_sym_o_GT] = ACTIONS(2531), + [anon_sym_err_PLUSout_GT] = ACTIONS(2531), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2531), + [anon_sym_o_PLUSe_GT] = ACTIONS(2531), + [anon_sym_e_PLUSo_GT] = ACTIONS(2531), + [anon_sym_err_GT_GT] = ACTIONS(2529), + [anon_sym_out_GT_GT] = ACTIONS(2529), + [anon_sym_e_GT_GT] = ACTIONS(2529), + [anon_sym_o_GT_GT] = ACTIONS(2529), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2529), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2529), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2529), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2529), + [anon_sym_POUND] = ACTIONS(3), + }, + [797] = { + [sym_expr_unary] = STATE(1328), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1328), + [sym__expr_binary_expression] = STATE(1300), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1328), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(1328), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1130), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(490), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(1094), + [sym__unquoted_with_expr] = STATE(1299), + [sym__unquoted_anonymous_prefix] = STATE(4847), + [sym_comment] = STATE(797), + [anon_sym_true] = ACTIONS(2423), + [anon_sym_false] = ACTIONS(2423), + [anon_sym_null] = ACTIONS(2425), + [aux_sym_cmd_identifier_token3] = ACTIONS(2427), + [aux_sym_cmd_identifier_token4] = ACTIONS(2427), + [aux_sym_cmd_identifier_token5] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1314), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2429), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), + [aux_sym__val_number_token1] = ACTIONS(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(2439), + [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(107), + }, + [798] = { + [aux_sym__repeat_newline] = STATE(1021), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(798), + [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_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_LPAREN2] = ACTIONS(1830), + [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_POUND] = ACTIONS(3), + }, + [799] = { + [aux_sym__repeat_newline] = STATE(1131), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(799), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [800] = { + [sym_comment] = STATE(800), + [anon_sym_finally] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2533), + [sym__newline] = ACTIONS(2533), + [anon_sym_SEMI] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2533), + [anon_sym_err_GT_PIPE] = ACTIONS(2533), + [anon_sym_out_GT_PIPE] = ACTIONS(2533), + [anon_sym_e_GT_PIPE] = ACTIONS(2533), + [anon_sym_o_GT_PIPE] = ACTIONS(2533), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), + [anon_sym_RPAREN] = ACTIONS(2533), + [anon_sym_GT2] = ACTIONS(2535), + [anon_sym_DASH2] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2533), + [anon_sym_RBRACE] = ACTIONS(2533), + [anon_sym_EQ_GT] = ACTIONS(2533), + [anon_sym_STAR2] = ACTIONS(2535), + [anon_sym_and2] = ACTIONS(2533), + [anon_sym_xor2] = ACTIONS(2533), + [anon_sym_or2] = ACTIONS(2533), + [anon_sym_not_DASHin2] = ACTIONS(2533), + [anon_sym_has2] = ACTIONS(2533), + [anon_sym_not_DASHhas2] = ACTIONS(2533), + [anon_sym_starts_DASHwith2] = ACTIONS(2533), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), + [anon_sym_ends_DASHwith2] = ACTIONS(2533), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), + [anon_sym_EQ_EQ2] = ACTIONS(2533), + [anon_sym_BANG_EQ2] = ACTIONS(2533), + [anon_sym_LT2] = ACTIONS(2535), + [anon_sym_LT_EQ2] = ACTIONS(2533), + [anon_sym_GT_EQ2] = ACTIONS(2533), + [anon_sym_EQ_TILDE2] = ACTIONS(2533), + [anon_sym_BANG_TILDE2] = ACTIONS(2533), + [anon_sym_like2] = ACTIONS(2533), + [anon_sym_not_DASHlike2] = ACTIONS(2533), + [anon_sym_STAR_STAR2] = ACTIONS(2533), + [anon_sym_PLUS_PLUS2] = ACTIONS(2533), + [anon_sym_SLASH2] = ACTIONS(2535), + [anon_sym_mod2] = ACTIONS(2533), + [anon_sym_SLASH_SLASH2] = ACTIONS(2533), + [anon_sym_PLUS2] = ACTIONS(2535), + [anon_sym_bit_DASHshl2] = ACTIONS(2533), + [anon_sym_bit_DASHshr2] = ACTIONS(2533), + [anon_sym_bit_DASHand2] = ACTIONS(2533), + [anon_sym_bit_DASHxor2] = ACTIONS(2533), + [anon_sym_bit_DASHor2] = ACTIONS(2533), + [anon_sym_err_GT] = ACTIONS(2535), + [anon_sym_out_GT] = ACTIONS(2535), + [anon_sym_e_GT] = ACTIONS(2535), + [anon_sym_o_GT] = ACTIONS(2535), + [anon_sym_err_PLUSout_GT] = ACTIONS(2535), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), + [anon_sym_o_PLUSe_GT] = ACTIONS(2535), + [anon_sym_e_PLUSo_GT] = ACTIONS(2535), + [anon_sym_err_GT_GT] = ACTIONS(2533), + [anon_sym_out_GT_GT] = ACTIONS(2533), + [anon_sym_e_GT_GT] = ACTIONS(2533), + [anon_sym_o_GT_GT] = ACTIONS(2533), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_POUND] = ACTIONS(3), + }, + [801] = { + [sym_comment] = STATE(801), + [anon_sym_finally] = ACTIONS(2537), + [anon_sym_in] = ACTIONS(2537), + [sym__newline] = ACTIONS(2537), + [anon_sym_SEMI] = ACTIONS(2537), + [anon_sym_PIPE] = ACTIONS(2537), + [anon_sym_err_GT_PIPE] = ACTIONS(2537), + [anon_sym_out_GT_PIPE] = ACTIONS(2537), + [anon_sym_e_GT_PIPE] = ACTIONS(2537), + [anon_sym_o_GT_PIPE] = ACTIONS(2537), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2537), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2537), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2537), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2537), + [anon_sym_RPAREN] = ACTIONS(2537), + [anon_sym_GT2] = ACTIONS(2539), + [anon_sym_DASH2] = ACTIONS(2537), + [anon_sym_LBRACE] = ACTIONS(2537), + [anon_sym_RBRACE] = ACTIONS(2537), + [anon_sym_EQ_GT] = ACTIONS(2537), + [anon_sym_STAR2] = ACTIONS(2539), + [anon_sym_and2] = ACTIONS(2537), + [anon_sym_xor2] = ACTIONS(2537), + [anon_sym_or2] = ACTIONS(2537), + [anon_sym_not_DASHin2] = ACTIONS(2537), + [anon_sym_has2] = ACTIONS(2537), + [anon_sym_not_DASHhas2] = ACTIONS(2537), + [anon_sym_starts_DASHwith2] = ACTIONS(2537), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2537), + [anon_sym_ends_DASHwith2] = ACTIONS(2537), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2537), + [anon_sym_EQ_EQ2] = ACTIONS(2537), + [anon_sym_BANG_EQ2] = ACTIONS(2537), + [anon_sym_LT2] = ACTIONS(2539), + [anon_sym_LT_EQ2] = ACTIONS(2537), + [anon_sym_GT_EQ2] = ACTIONS(2537), + [anon_sym_EQ_TILDE2] = ACTIONS(2537), + [anon_sym_BANG_TILDE2] = ACTIONS(2537), + [anon_sym_like2] = ACTIONS(2537), + [anon_sym_not_DASHlike2] = ACTIONS(2537), + [anon_sym_STAR_STAR2] = ACTIONS(2537), + [anon_sym_PLUS_PLUS2] = ACTIONS(2537), + [anon_sym_SLASH2] = ACTIONS(2539), + [anon_sym_mod2] = ACTIONS(2537), + [anon_sym_SLASH_SLASH2] = ACTIONS(2537), + [anon_sym_PLUS2] = ACTIONS(2539), + [anon_sym_bit_DASHshl2] = ACTIONS(2537), + [anon_sym_bit_DASHshr2] = ACTIONS(2537), + [anon_sym_bit_DASHand2] = ACTIONS(2537), + [anon_sym_bit_DASHxor2] = ACTIONS(2537), + [anon_sym_bit_DASHor2] = ACTIONS(2537), + [anon_sym_err_GT] = ACTIONS(2539), + [anon_sym_out_GT] = ACTIONS(2539), + [anon_sym_e_GT] = ACTIONS(2539), + [anon_sym_o_GT] = ACTIONS(2539), + [anon_sym_err_PLUSout_GT] = ACTIONS(2539), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2539), + [anon_sym_o_PLUSe_GT] = ACTIONS(2539), + [anon_sym_e_PLUSo_GT] = ACTIONS(2539), + [anon_sym_err_GT_GT] = ACTIONS(2537), + [anon_sym_out_GT_GT] = ACTIONS(2537), + [anon_sym_e_GT_GT] = ACTIONS(2537), + [anon_sym_o_GT_GT] = ACTIONS(2537), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2537), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2537), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2537), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2537), + [anon_sym_POUND] = ACTIONS(3), + }, + [802] = { + [sym_comment] = STATE(802), + [anon_sym_finally] = ACTIONS(2541), + [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_RBRACE] = ACTIONS(2541), + [anon_sym_EQ_GT] = 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_POUND] = ACTIONS(3), + }, + [803] = { + [aux_sym__repeat_newline] = STATE(1136), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(803), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [804] = { + [sym_comment] = STATE(804), + [ts_builtin_sym_end] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1810), + [sym__newline] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_err_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_GT_PIPE] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), + [anon_sym_GT2] = ACTIONS(1812), + [anon_sym_DASH2] = ACTIONS(1810), + [anon_sym_STAR2] = ACTIONS(1812), + [anon_sym_and2] = ACTIONS(1810), + [anon_sym_xor2] = ACTIONS(1810), + [anon_sym_or2] = ACTIONS(1810), + [anon_sym_not_DASHin2] = ACTIONS(1810), + [anon_sym_has2] = ACTIONS(1810), + [anon_sym_not_DASHhas2] = ACTIONS(1810), + [anon_sym_starts_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1810), + [anon_sym_ends_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1810), + [anon_sym_EQ_EQ2] = ACTIONS(1810), + [anon_sym_BANG_EQ2] = ACTIONS(1810), + [anon_sym_LT2] = ACTIONS(1812), + [anon_sym_LT_EQ2] = ACTIONS(1810), + [anon_sym_GT_EQ2] = ACTIONS(1810), + [anon_sym_EQ_TILDE2] = ACTIONS(1810), + [anon_sym_BANG_TILDE2] = ACTIONS(1810), + [anon_sym_like2] = ACTIONS(1810), + [anon_sym_not_DASHlike2] = ACTIONS(1810), + [anon_sym_LPAREN2] = ACTIONS(1810), + [anon_sym_STAR_STAR2] = ACTIONS(1810), + [anon_sym_PLUS_PLUS2] = ACTIONS(1810), + [anon_sym_SLASH2] = ACTIONS(1812), + [anon_sym_mod2] = ACTIONS(1810), + [anon_sym_SLASH_SLASH2] = ACTIONS(1810), + [anon_sym_PLUS2] = ACTIONS(1812), + [anon_sym_bit_DASHshl2] = ACTIONS(1810), + [anon_sym_bit_DASHshr2] = ACTIONS(1810), + [anon_sym_bit_DASHand2] = ACTIONS(1810), + [anon_sym_bit_DASHxor2] = ACTIONS(1810), + [anon_sym_bit_DASHor2] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(2545), + [aux_sym__immediate_decimal_token5] = ACTIONS(2547), + [anon_sym_err_GT] = ACTIONS(1812), + [anon_sym_out_GT] = ACTIONS(1812), + [anon_sym_e_GT] = ACTIONS(1812), + [anon_sym_o_GT] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT] = ACTIONS(1812), + [anon_sym_err_GT_GT] = ACTIONS(1810), + [anon_sym_out_GT_GT] = ACTIONS(1810), + [anon_sym_e_GT_GT] = ACTIONS(1810), + [anon_sym_o_GT_GT] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), + [sym__unquoted_pattern] = ACTIONS(1812), + [anon_sym_POUND] = ACTIONS(3), + }, + [805] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1156), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(707), + [sym__unquoted_with_expr] = STATE(947), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(805), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1981), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1967), + [sym_val_date] = ACTIONS(1991), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(784)] = { - [aux_sym__repeat_newline] = STATE(1128), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(784), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [806] = { + [sym_comment] = STATE(806), + [ts_builtin_sym_end] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [sym__newline] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1802), + [anon_sym_err_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_GT_PIPE] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), + [anon_sym_GT2] = ACTIONS(1804), + [anon_sym_DASH2] = ACTIONS(1802), + [anon_sym_STAR2] = ACTIONS(1804), + [anon_sym_and2] = ACTIONS(1802), + [anon_sym_xor2] = ACTIONS(1802), + [anon_sym_or2] = ACTIONS(1802), + [anon_sym_not_DASHin2] = ACTIONS(1802), + [anon_sym_has2] = ACTIONS(1802), + [anon_sym_not_DASHhas2] = ACTIONS(1802), + [anon_sym_starts_DASHwith2] = ACTIONS(1802), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), + [anon_sym_ends_DASHwith2] = ACTIONS(1802), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), + [anon_sym_EQ_EQ2] = ACTIONS(1802), + [anon_sym_BANG_EQ2] = ACTIONS(1802), + [anon_sym_LT2] = ACTIONS(1804), + [anon_sym_LT_EQ2] = ACTIONS(1802), + [anon_sym_GT_EQ2] = ACTIONS(1802), + [anon_sym_EQ_TILDE2] = ACTIONS(1802), + [anon_sym_BANG_TILDE2] = ACTIONS(1802), + [anon_sym_like2] = ACTIONS(1802), + [anon_sym_not_DASHlike2] = ACTIONS(1802), + [anon_sym_LPAREN2] = ACTIONS(1802), + [anon_sym_STAR_STAR2] = ACTIONS(1802), + [anon_sym_PLUS_PLUS2] = ACTIONS(1802), + [anon_sym_SLASH2] = ACTIONS(1804), + [anon_sym_mod2] = ACTIONS(1802), + [anon_sym_SLASH_SLASH2] = ACTIONS(1802), + [anon_sym_PLUS2] = ACTIONS(1804), + [anon_sym_bit_DASHshl2] = ACTIONS(1802), + [anon_sym_bit_DASHshr2] = ACTIONS(1802), + [anon_sym_bit_DASHand2] = ACTIONS(1802), + [anon_sym_bit_DASHxor2] = ACTIONS(1802), + [anon_sym_bit_DASHor2] = ACTIONS(1802), + [aux_sym__immediate_decimal_token1] = ACTIONS(2549), + [aux_sym__immediate_decimal_token5] = ACTIONS(2551), + [anon_sym_err_GT] = ACTIONS(1804), + [anon_sym_out_GT] = ACTIONS(1804), + [anon_sym_e_GT] = ACTIONS(1804), + [anon_sym_o_GT] = ACTIONS(1804), + [anon_sym_err_PLUSout_GT] = ACTIONS(1804), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), + [anon_sym_o_PLUSe_GT] = ACTIONS(1804), + [anon_sym_e_PLUSo_GT] = ACTIONS(1804), + [anon_sym_err_GT_GT] = ACTIONS(1802), + [anon_sym_out_GT_GT] = ACTIONS(1802), + [anon_sym_e_GT_GT] = ACTIONS(1802), + [anon_sym_o_GT_GT] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), + [sym__unquoted_pattern] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(3), + }, + [807] = { + [aux_sym__repeat_newline] = STATE(1141), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(807), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [808] = { + [aux_sym__repeat_newline] = STATE(1019), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(808), + [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_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_LPAREN2] = ACTIONS(1830), + [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_POUND] = ACTIONS(3), }, - [STATE(785)] = { - [sym_comment] = STATE(785), - [anon_sym_in] = ACTIONS(2467), - [sym__newline] = ACTIONS(2467), - [anon_sym_SEMI] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(2467), - [anon_sym_err_GT_PIPE] = ACTIONS(2467), - [anon_sym_out_GT_PIPE] = ACTIONS(2467), - [anon_sym_e_GT_PIPE] = ACTIONS(2467), - [anon_sym_o_GT_PIPE] = ACTIONS(2467), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2467), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2467), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2467), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2467), - [anon_sym_RPAREN] = ACTIONS(2467), - [anon_sym_GT2] = ACTIONS(2469), - [anon_sym_DASH2] = ACTIONS(2467), - [anon_sym_LBRACE] = ACTIONS(2467), - [anon_sym_RBRACE] = ACTIONS(2467), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_STAR2] = ACTIONS(2469), - [anon_sym_and2] = ACTIONS(2467), - [anon_sym_xor2] = ACTIONS(2467), - [anon_sym_or2] = ACTIONS(2467), - [anon_sym_not_DASHin2] = ACTIONS(2467), - [anon_sym_has2] = ACTIONS(2467), - [anon_sym_not_DASHhas2] = ACTIONS(2467), - [anon_sym_starts_DASHwith2] = ACTIONS(2467), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2467), - [anon_sym_ends_DASHwith2] = ACTIONS(2467), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2467), - [anon_sym_EQ_EQ2] = ACTIONS(2467), - [anon_sym_BANG_EQ2] = ACTIONS(2467), - [anon_sym_LT2] = ACTIONS(2469), - [anon_sym_LT_EQ2] = ACTIONS(2467), - [anon_sym_GT_EQ2] = ACTIONS(2467), - [anon_sym_EQ_TILDE2] = ACTIONS(2467), - [anon_sym_BANG_TILDE2] = ACTIONS(2467), - [anon_sym_like2] = ACTIONS(2467), - [anon_sym_not_DASHlike2] = ACTIONS(2467), - [anon_sym_STAR_STAR2] = ACTIONS(2467), - [anon_sym_PLUS_PLUS2] = ACTIONS(2467), - [anon_sym_SLASH2] = ACTIONS(2469), - [anon_sym_mod2] = ACTIONS(2467), - [anon_sym_SLASH_SLASH2] = ACTIONS(2467), - [anon_sym_PLUS2] = ACTIONS(2469), - [anon_sym_bit_DASHshl2] = ACTIONS(2467), - [anon_sym_bit_DASHshr2] = ACTIONS(2467), - [anon_sym_bit_DASHand2] = ACTIONS(2467), - [anon_sym_bit_DASHxor2] = ACTIONS(2467), - [anon_sym_bit_DASHor2] = ACTIONS(2467), - [anon_sym_COLON2] = ACTIONS(2467), - [anon_sym_err_GT] = ACTIONS(2469), - [anon_sym_out_GT] = ACTIONS(2469), - [anon_sym_e_GT] = ACTIONS(2469), - [anon_sym_o_GT] = ACTIONS(2469), - [anon_sym_err_PLUSout_GT] = ACTIONS(2469), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2469), - [anon_sym_o_PLUSe_GT] = ACTIONS(2469), - [anon_sym_e_PLUSo_GT] = ACTIONS(2469), - [anon_sym_err_GT_GT] = ACTIONS(2467), - [anon_sym_out_GT_GT] = ACTIONS(2467), - [anon_sym_e_GT_GT] = ACTIONS(2467), - [anon_sym_o_GT_GT] = ACTIONS(2467), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2467), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2467), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2467), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2467), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(786)] = { - [sym_comment] = STATE(786), - [anon_sym_in] = ACTIONS(2471), - [sym__newline] = ACTIONS(2471), - [anon_sym_SEMI] = ACTIONS(2471), - [anon_sym_PIPE] = ACTIONS(2471), - [anon_sym_err_GT_PIPE] = ACTIONS(2471), - [anon_sym_out_GT_PIPE] = ACTIONS(2471), - [anon_sym_e_GT_PIPE] = ACTIONS(2471), - [anon_sym_o_GT_PIPE] = ACTIONS(2471), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2471), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2471), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2471), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2471), - [anon_sym_RPAREN] = ACTIONS(2471), - [anon_sym_GT2] = ACTIONS(2473), - [anon_sym_DASH2] = ACTIONS(2471), - [anon_sym_LBRACE] = ACTIONS(2471), - [anon_sym_RBRACE] = ACTIONS(2471), - [anon_sym_EQ_GT] = ACTIONS(2471), - [anon_sym_STAR2] = ACTIONS(2473), - [anon_sym_and2] = ACTIONS(2471), - [anon_sym_xor2] = ACTIONS(2471), - [anon_sym_or2] = ACTIONS(2471), - [anon_sym_not_DASHin2] = ACTIONS(2471), - [anon_sym_has2] = ACTIONS(2471), - [anon_sym_not_DASHhas2] = ACTIONS(2471), - [anon_sym_starts_DASHwith2] = ACTIONS(2471), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2471), - [anon_sym_ends_DASHwith2] = ACTIONS(2471), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2471), - [anon_sym_EQ_EQ2] = ACTIONS(2471), - [anon_sym_BANG_EQ2] = ACTIONS(2471), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LT_EQ2] = ACTIONS(2471), - [anon_sym_GT_EQ2] = ACTIONS(2471), - [anon_sym_EQ_TILDE2] = ACTIONS(2471), - [anon_sym_BANG_TILDE2] = ACTIONS(2471), - [anon_sym_like2] = ACTIONS(2471), - [anon_sym_not_DASHlike2] = ACTIONS(2471), - [anon_sym_STAR_STAR2] = ACTIONS(2471), - [anon_sym_PLUS_PLUS2] = ACTIONS(2471), - [anon_sym_SLASH2] = ACTIONS(2473), - [anon_sym_mod2] = ACTIONS(2471), - [anon_sym_SLASH_SLASH2] = ACTIONS(2471), - [anon_sym_PLUS2] = ACTIONS(2473), - [anon_sym_bit_DASHshl2] = ACTIONS(2471), - [anon_sym_bit_DASHshr2] = ACTIONS(2471), - [anon_sym_bit_DASHand2] = ACTIONS(2471), - [anon_sym_bit_DASHxor2] = ACTIONS(2471), - [anon_sym_bit_DASHor2] = ACTIONS(2471), - [anon_sym_COLON2] = ACTIONS(2471), - [anon_sym_err_GT] = ACTIONS(2473), - [anon_sym_out_GT] = ACTIONS(2473), - [anon_sym_e_GT] = ACTIONS(2473), - [anon_sym_o_GT] = ACTIONS(2473), - [anon_sym_err_PLUSout_GT] = ACTIONS(2473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2473), - [anon_sym_o_PLUSe_GT] = ACTIONS(2473), - [anon_sym_e_PLUSo_GT] = ACTIONS(2473), - [anon_sym_err_GT_GT] = ACTIONS(2471), - [anon_sym_out_GT_GT] = ACTIONS(2471), - [anon_sym_e_GT_GT] = ACTIONS(2471), - [anon_sym_o_GT_GT] = ACTIONS(2471), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2471), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2471), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2471), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2471), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(787)] = { - [aux_sym__repeat_newline] = STATE(1132), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(787), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [809] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2236), + [sym_expr_parenthesized] = STATE(2003), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(2127), + [sym_val_variable] = STATE(2006), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1825), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(714), + [sym__unquoted_with_expr] = STATE(948), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(809), + [anon_sym_true] = ACTIONS(2501), + [anon_sym_false] = ACTIONS(2501), + [anon_sym_null] = ACTIONS(2503), + [aux_sym_cmd_identifier_token3] = ACTIONS(2505), + [aux_sym_cmd_identifier_token4] = ACTIONS(2505), + [aux_sym_cmd_identifier_token5] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2507), + [aux_sym_expr_unary_token1] = ACTIONS(2509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2511), + [anon_sym_DOT_DOT_LT] = ACTIONS(2511), + [aux_sym__val_number_decimal_token1] = ACTIONS(2513), + [aux_sym__val_number_decimal_token2] = ACTIONS(2515), + [aux_sym__val_number_decimal_token3] = ACTIONS(2517), + [aux_sym__val_number_decimal_token4] = ACTIONS(2517), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2519), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(788)] = { - [aux_sym__repeat_newline] = STATE(1136), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(788), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(789)] = { - [aux_sym__repeat_newline] = STATE(1143), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(789), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(790)] = { - [aux_sym__repeat_newline] = STATE(1147), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(790), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(791)] = { - [sym_cell_path] = STATE(1341), - [sym_path] = STATE(737), - [sym_comment] = STATE(791), - [aux_sym__where_predicate_lhs_repeat1] = STATE(586), - [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(2417), - [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(792)] = { - [aux_sym__repeat_newline] = STATE(993), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(792), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(793)] = { - [sym_cell_path] = STATE(1343), - [sym_path] = STATE(737), - [sym_comment] = STATE(793), - [aux_sym__where_predicate_lhs_repeat1] = STATE(586), - [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_DOT2] = ACTIONS(2417), - [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(794)] = { - [aux_sym__repeat_newline] = STATE(996), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(794), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(795)] = { - [aux_sym__repeat_newline] = STATE(998), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(795), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(796)] = { - [sym_comment] = STATE(796), - [anon_sym_in] = ACTIONS(2146), - [sym__newline] = ACTIONS(2265), - [anon_sym_SEMI] = ACTIONS(2265), - [anon_sym_PIPE] = ACTIONS(2265), - [anon_sym_err_GT_PIPE] = ACTIONS(2265), - [anon_sym_out_GT_PIPE] = ACTIONS(2265), - [anon_sym_e_GT_PIPE] = ACTIONS(2265), - [anon_sym_o_GT_PIPE] = ACTIONS(2265), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2265), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2265), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2265), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2265), - [anon_sym_GT2] = ACTIONS(2148), - [anon_sym_DASH2] = ACTIONS(2146), - [anon_sym_RBRACE] = ACTIONS(2265), - [anon_sym_STAR2] = ACTIONS(2148), - [anon_sym_and2] = ACTIONS(2146), - [anon_sym_xor2] = ACTIONS(2146), - [anon_sym_or2] = ACTIONS(2146), - [anon_sym_not_DASHin2] = ACTIONS(2146), - [anon_sym_has2] = ACTIONS(2146), - [anon_sym_not_DASHhas2] = ACTIONS(2146), - [anon_sym_starts_DASHwith2] = ACTIONS(2146), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2146), - [anon_sym_ends_DASHwith2] = ACTIONS(2146), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2146), - [anon_sym_EQ_EQ2] = ACTIONS(2146), - [anon_sym_BANG_EQ2] = ACTIONS(2146), - [anon_sym_LT2] = ACTIONS(2148), - [anon_sym_LT_EQ2] = ACTIONS(2146), - [anon_sym_GT_EQ2] = ACTIONS(2146), - [anon_sym_EQ_TILDE2] = ACTIONS(2146), - [anon_sym_BANG_TILDE2] = ACTIONS(2146), - [anon_sym_like2] = ACTIONS(2146), - [anon_sym_not_DASHlike2] = ACTIONS(2146), - [anon_sym_STAR_STAR2] = ACTIONS(2146), - [anon_sym_PLUS_PLUS2] = ACTIONS(2146), - [anon_sym_SLASH2] = ACTIONS(2148), - [anon_sym_mod2] = ACTIONS(2146), - [anon_sym_SLASH_SLASH2] = ACTIONS(2146), - [anon_sym_PLUS2] = ACTIONS(2148), - [anon_sym_bit_DASHshl2] = ACTIONS(2146), - [anon_sym_bit_DASHshr2] = ACTIONS(2146), - [anon_sym_bit_DASHand2] = ACTIONS(2146), - [anon_sym_bit_DASHxor2] = ACTIONS(2146), - [anon_sym_bit_DASHor2] = ACTIONS(2146), - [anon_sym_DOT_DOT2] = ACTIONS(1620), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), - [anon_sym_COLON2] = ACTIONS(1740), - [anon_sym_err_GT] = ACTIONS(2267), - [anon_sym_out_GT] = ACTIONS(2267), - [anon_sym_e_GT] = ACTIONS(2267), - [anon_sym_o_GT] = ACTIONS(2267), - [anon_sym_err_PLUSout_GT] = ACTIONS(2267), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2267), - [anon_sym_o_PLUSe_GT] = ACTIONS(2267), - [anon_sym_e_PLUSo_GT] = ACTIONS(2267), - [anon_sym_err_GT_GT] = ACTIONS(2265), - [anon_sym_out_GT_GT] = ACTIONS(2265), - [anon_sym_e_GT_GT] = ACTIONS(2265), - [anon_sym_o_GT_GT] = ACTIONS(2265), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2265), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2265), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2265), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2265), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(797)] = { - [sym_cell_path] = STATE(1327), - [sym_path] = STATE(737), - [sym_comment] = STATE(797), - [aux_sym__where_predicate_lhs_repeat1] = STATE(586), - [ts_builtin_sym_end] = ACTIONS(1917), - [anon_sym_in] = ACTIONS(1917), - [sym__newline] = ACTIONS(1917), - [anon_sym_SEMI] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_err_GT_PIPE] = ACTIONS(1917), - [anon_sym_out_GT_PIPE] = ACTIONS(1917), - [anon_sym_e_GT_PIPE] = ACTIONS(1917), - [anon_sym_o_GT_PIPE] = ACTIONS(1917), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1917), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1917), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1917), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1917), - [anon_sym_GT2] = ACTIONS(1919), - [anon_sym_DASH2] = ACTIONS(1917), - [anon_sym_STAR2] = ACTIONS(1919), - [anon_sym_and2] = ACTIONS(1917), - [anon_sym_xor2] = ACTIONS(1917), - [anon_sym_or2] = ACTIONS(1917), - [anon_sym_not_DASHin2] = ACTIONS(1917), - [anon_sym_has2] = ACTIONS(1917), - [anon_sym_not_DASHhas2] = ACTIONS(1917), - [anon_sym_starts_DASHwith2] = ACTIONS(1917), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1917), - [anon_sym_ends_DASHwith2] = ACTIONS(1917), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1917), - [anon_sym_EQ_EQ2] = ACTIONS(1917), - [anon_sym_BANG_EQ2] = ACTIONS(1917), - [anon_sym_LT2] = ACTIONS(1919), - [anon_sym_LT_EQ2] = ACTIONS(1917), - [anon_sym_GT_EQ2] = ACTIONS(1917), - [anon_sym_EQ_TILDE2] = ACTIONS(1917), - [anon_sym_BANG_TILDE2] = ACTIONS(1917), - [anon_sym_like2] = ACTIONS(1917), - [anon_sym_not_DASHlike2] = ACTIONS(1917), - [anon_sym_STAR_STAR2] = ACTIONS(1917), - [anon_sym_PLUS_PLUS2] = ACTIONS(1917), - [anon_sym_SLASH2] = ACTIONS(1919), - [anon_sym_mod2] = ACTIONS(1917), - [anon_sym_SLASH_SLASH2] = ACTIONS(1917), - [anon_sym_PLUS2] = ACTIONS(1919), - [anon_sym_bit_DASHshl2] = ACTIONS(1917), - [anon_sym_bit_DASHshr2] = ACTIONS(1917), - [anon_sym_bit_DASHand2] = ACTIONS(1917), - [anon_sym_bit_DASHxor2] = ACTIONS(1917), - [anon_sym_bit_DASHor2] = ACTIONS(1917), - [anon_sym_DOT2] = ACTIONS(2417), - [anon_sym_err_GT] = ACTIONS(1919), - [anon_sym_out_GT] = ACTIONS(1919), - [anon_sym_e_GT] = ACTIONS(1919), - [anon_sym_o_GT] = ACTIONS(1919), - [anon_sym_err_PLUSout_GT] = ACTIONS(1919), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1919), - [anon_sym_o_PLUSe_GT] = ACTIONS(1919), - [anon_sym_e_PLUSo_GT] = ACTIONS(1919), - [anon_sym_err_GT_GT] = ACTIONS(1917), - [anon_sym_out_GT_GT] = ACTIONS(1917), - [anon_sym_e_GT_GT] = ACTIONS(1917), - [anon_sym_o_GT_GT] = ACTIONS(1917), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1917), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1917), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1917), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1917), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(798)] = { - [sym_comment] = STATE(798), - [anon_sym_in] = ACTIONS(1788), - [sym__newline] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_PIPE] = ACTIONS(1788), - [anon_sym_err_GT_PIPE] = ACTIONS(1788), - [anon_sym_out_GT_PIPE] = ACTIONS(1788), - [anon_sym_e_GT_PIPE] = ACTIONS(1788), - [anon_sym_o_GT_PIPE] = ACTIONS(1788), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), - [anon_sym_RPAREN] = ACTIONS(1788), - [anon_sym_GT2] = ACTIONS(1790), - [anon_sym_DASH2] = ACTIONS(1788), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1788), - [anon_sym_STAR2] = ACTIONS(1790), - [anon_sym_and2] = ACTIONS(1788), - [anon_sym_xor2] = ACTIONS(1788), - [anon_sym_or2] = ACTIONS(1788), - [anon_sym_not_DASHin2] = ACTIONS(1788), - [anon_sym_has2] = ACTIONS(1788), - [anon_sym_not_DASHhas2] = ACTIONS(1788), - [anon_sym_starts_DASHwith2] = ACTIONS(1788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1788), - [anon_sym_ends_DASHwith2] = ACTIONS(1788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1788), - [anon_sym_EQ_EQ2] = ACTIONS(1788), - [anon_sym_BANG_EQ2] = ACTIONS(1788), - [anon_sym_LT2] = ACTIONS(1790), - [anon_sym_LT_EQ2] = ACTIONS(1788), - [anon_sym_GT_EQ2] = ACTIONS(1788), - [anon_sym_EQ_TILDE2] = ACTIONS(1788), - [anon_sym_BANG_TILDE2] = ACTIONS(1788), - [anon_sym_like2] = ACTIONS(1788), - [anon_sym_not_DASHlike2] = ACTIONS(1788), - [anon_sym_STAR_STAR2] = ACTIONS(1788), - [anon_sym_PLUS_PLUS2] = ACTIONS(1788), - [anon_sym_SLASH2] = ACTIONS(1790), - [anon_sym_mod2] = ACTIONS(1788), - [anon_sym_SLASH_SLASH2] = ACTIONS(1788), - [anon_sym_PLUS2] = ACTIONS(1790), - [anon_sym_bit_DASHshl2] = ACTIONS(1788), - [anon_sym_bit_DASHshr2] = ACTIONS(1788), - [anon_sym_bit_DASHand2] = ACTIONS(1788), - [anon_sym_bit_DASHxor2] = ACTIONS(1788), - [anon_sym_bit_DASHor2] = ACTIONS(1788), - [anon_sym_DOT] = ACTIONS(2475), - [aux_sym__immediate_decimal_token5] = ACTIONS(1794), - [anon_sym_err_GT] = ACTIONS(1790), - [anon_sym_out_GT] = ACTIONS(1790), - [anon_sym_e_GT] = ACTIONS(1790), - [anon_sym_o_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT] = ACTIONS(1790), - [anon_sym_err_GT_GT] = ACTIONS(1788), - [anon_sym_out_GT_GT] = ACTIONS(1788), - [anon_sym_e_GT_GT] = ACTIONS(1788), - [anon_sym_o_GT_GT] = ACTIONS(1788), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1788), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1788), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1788), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(799)] = { - [sym_comment] = STATE(799), - [anon_sym_in] = ACTIONS(2477), - [sym__newline] = ACTIONS(2479), - [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(2477), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR2] = ACTIONS(2484), - [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(2484), - [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(2484), - [anon_sym_mod2] = ACTIONS(2477), - [anon_sym_SLASH_SLASH2] = ACTIONS(2477), - [anon_sym_PLUS2] = ACTIONS(2484), - [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_DOT_DOT2] = ACTIONS(1620), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), - [anon_sym_err_GT] = ACTIONS(2486), - [anon_sym_out_GT] = ACTIONS(2486), - [anon_sym_e_GT] = ACTIONS(2486), - [anon_sym_o_GT] = ACTIONS(2486), - [anon_sym_err_PLUSout_GT] = ACTIONS(2486), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2486), - [anon_sym_o_PLUSe_GT] = ACTIONS(2486), - [anon_sym_e_PLUSo_GT] = ACTIONS(2486), - [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(800)] = { - [sym_comment] = STATE(800), - [anon_sym_export] = ACTIONS(2128), - [anon_sym_alias] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_mut] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [aux_sym_cmd_identifier_token1] = ACTIONS(2128), - [anon_sym_def] = ACTIONS(2126), - [anon_sym_use] = ACTIONS(2126), - [anon_sym_export_DASHenv] = ACTIONS(2126), - [anon_sym_extern] = ACTIONS(2126), - [anon_sym_module] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_loop] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_else] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_catch] = ACTIONS(2126), - [anon_sym_finally] = ACTIONS(2126), - [anon_sym_match] = ACTIONS(2126), - [anon_sym_in] = ACTIONS(2128), - [anon_sym_true] = ACTIONS(2126), - [anon_sym_false] = ACTIONS(2126), - [anon_sym_null] = ACTIONS(2126), - [aux_sym_cmd_identifier_token3] = ACTIONS(2126), - [aux_sym_cmd_identifier_token4] = ACTIONS(2126), - [aux_sym_cmd_identifier_token5] = ACTIONS(2126), - [sym__newline] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_err_GT_PIPE] = ACTIONS(2126), - [anon_sym_out_GT_PIPE] = ACTIONS(2126), - [anon_sym_e_GT_PIPE] = ACTIONS(2126), - [anon_sym_o_GT_PIPE] = ACTIONS(2126), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2126), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2126), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2126), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_DOLLAR] = ACTIONS(2128), - [anon_sym_DASH2] = ACTIONS(2128), - [anon_sym_LBRACE] = ACTIONS(2126), - [anon_sym_DOT_DOT] = ACTIONS(2128), - [anon_sym_where] = ACTIONS(2126), - [aux_sym_expr_unary_token1] = ACTIONS(2126), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2126), - [anon_sym_DOT_DOT_LT] = ACTIONS(2126), - [aux_sym__val_number_decimal_token1] = ACTIONS(2128), - [aux_sym__val_number_decimal_token2] = ACTIONS(2126), - [aux_sym__val_number_decimal_token3] = ACTIONS(2126), - [aux_sym__val_number_decimal_token4] = ACTIONS(2126), - [aux_sym__val_number_token1] = ACTIONS(2126), - [aux_sym__val_number_token2] = ACTIONS(2126), - [aux_sym__val_number_token3] = ACTIONS(2126), - [anon_sym_0b] = ACTIONS(2128), - [anon_sym_0o] = ACTIONS(2128), - [anon_sym_0x] = ACTIONS(2128), - [sym_val_date] = ACTIONS(2126), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_BQUOTE] = ACTIONS(2126), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2126), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2126), - [anon_sym_CARET] = ACTIONS(2126), - [anon_sym_PERCENT] = ACTIONS(2126), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2126), - }, - [STATE(801)] = { - [sym_comment] = STATE(801), - [anon_sym_export] = ACTIONS(2488), - [anon_sym_alias] = ACTIONS(2490), - [anon_sym_let] = ACTIONS(2490), - [anon_sym_mut] = ACTIONS(2490), - [anon_sym_const] = ACTIONS(2490), - [aux_sym_cmd_identifier_token1] = ACTIONS(2488), - [anon_sym_def] = ACTIONS(2490), - [anon_sym_use] = ACTIONS(2490), - [anon_sym_export_DASHenv] = ACTIONS(2490), - [anon_sym_extern] = ACTIONS(2490), - [anon_sym_module] = ACTIONS(2490), - [anon_sym_for] = ACTIONS(2490), - [anon_sym_loop] = ACTIONS(2490), - [anon_sym_while] = ACTIONS(2490), - [anon_sym_if] = ACTIONS(2490), - [anon_sym_else] = ACTIONS(2490), - [anon_sym_try] = ACTIONS(2490), - [anon_sym_catch] = ACTIONS(2490), - [anon_sym_finally] = ACTIONS(2490), - [anon_sym_match] = ACTIONS(2490), - [anon_sym_in] = ACTIONS(2488), - [anon_sym_true] = ACTIONS(2490), - [anon_sym_false] = ACTIONS(2490), - [anon_sym_null] = ACTIONS(2490), - [aux_sym_cmd_identifier_token3] = ACTIONS(2490), - [aux_sym_cmd_identifier_token4] = ACTIONS(2490), - [aux_sym_cmd_identifier_token5] = ACTIONS(2490), - [sym__newline] = ACTIONS(2490), - [anon_sym_PIPE] = ACTIONS(2490), - [anon_sym_err_GT_PIPE] = ACTIONS(2490), - [anon_sym_out_GT_PIPE] = ACTIONS(2490), - [anon_sym_e_GT_PIPE] = ACTIONS(2490), - [anon_sym_o_GT_PIPE] = ACTIONS(2490), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2490), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2490), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2490), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2490), - [anon_sym_LBRACK] = ACTIONS(2490), - [anon_sym_LPAREN] = ACTIONS(2490), - [anon_sym_DOLLAR] = ACTIONS(2488), - [anon_sym_DASH2] = ACTIONS(2488), - [anon_sym_LBRACE] = ACTIONS(2490), - [anon_sym_DOT_DOT] = ACTIONS(2488), - [anon_sym_where] = ACTIONS(2490), - [aux_sym_expr_unary_token1] = ACTIONS(2490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2490), - [anon_sym_DOT_DOT_LT] = ACTIONS(2490), - [aux_sym__val_number_decimal_token1] = ACTIONS(2488), - [aux_sym__val_number_decimal_token2] = ACTIONS(2490), - [aux_sym__val_number_decimal_token3] = ACTIONS(2490), - [aux_sym__val_number_decimal_token4] = ACTIONS(2490), - [aux_sym__val_number_token1] = ACTIONS(2490), - [aux_sym__val_number_token2] = ACTIONS(2490), - [aux_sym__val_number_token3] = ACTIONS(2490), - [anon_sym_0b] = ACTIONS(2488), - [anon_sym_0o] = ACTIONS(2488), - [anon_sym_0x] = ACTIONS(2488), - [sym_val_date] = ACTIONS(2490), - [anon_sym_DQUOTE] = ACTIONS(2490), - [anon_sym_SQUOTE] = ACTIONS(2490), - [anon_sym_BQUOTE] = ACTIONS(2490), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2490), - [anon_sym_CARET] = ACTIONS(2490), - [anon_sym_PERCENT] = ACTIONS(2490), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2490), - }, - [STATE(802)] = { - [aux_sym__repeat_newline] = STATE(1033), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(802), - [anon_sym_in] = ACTIONS(2492), - [sym__newline] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_err_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_GT_PIPE] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_GT2] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_STAR2] = ACTIONS(2494), - [anon_sym_and2] = ACTIONS(2492), - [anon_sym_xor2] = ACTIONS(2492), - [anon_sym_or2] = ACTIONS(2492), - [anon_sym_not_DASHin2] = ACTIONS(2492), - [anon_sym_has2] = ACTIONS(2492), - [anon_sym_not_DASHhas2] = ACTIONS(2492), - [anon_sym_starts_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), - [anon_sym_ends_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), - [anon_sym_EQ_EQ2] = ACTIONS(2492), - [anon_sym_BANG_EQ2] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2494), - [anon_sym_LT_EQ2] = ACTIONS(2492), - [anon_sym_GT_EQ2] = ACTIONS(2492), - [anon_sym_EQ_TILDE2] = ACTIONS(2492), - [anon_sym_BANG_TILDE2] = ACTIONS(2492), - [anon_sym_like2] = ACTIONS(2492), - [anon_sym_not_DASHlike2] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2492), - [anon_sym_PLUS_PLUS2] = ACTIONS(2492), - [anon_sym_SLASH2] = ACTIONS(2494), - [anon_sym_mod2] = ACTIONS(2492), - [anon_sym_SLASH_SLASH2] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_bit_DASHshl2] = ACTIONS(2492), - [anon_sym_bit_DASHshr2] = ACTIONS(2492), - [anon_sym_bit_DASHand2] = ACTIONS(2492), - [anon_sym_bit_DASHxor2] = ACTIONS(2492), - [anon_sym_bit_DASHor2] = ACTIONS(2492), - [anon_sym_err_GT] = ACTIONS(2494), - [anon_sym_out_GT] = ACTIONS(2494), - [anon_sym_e_GT] = ACTIONS(2494), - [anon_sym_o_GT] = ACTIONS(2494), - [anon_sym_err_PLUSout_GT] = ACTIONS(2494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), - [anon_sym_o_PLUSe_GT] = ACTIONS(2494), - [anon_sym_e_PLUSo_GT] = ACTIONS(2494), - [anon_sym_err_GT_GT] = ACTIONS(2492), - [anon_sym_out_GT_GT] = ACTIONS(2492), - [anon_sym_e_GT_GT] = ACTIONS(2492), - [anon_sym_o_GT_GT] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(803)] = { - [aux_sym__repeat_newline] = STATE(1034), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(803), - [anon_sym_in] = ACTIONS(2492), - [sym__newline] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_err_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_GT_PIPE] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_GT2] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_STAR2] = ACTIONS(2494), - [anon_sym_and2] = ACTIONS(2492), - [anon_sym_xor2] = ACTIONS(2492), - [anon_sym_or2] = ACTIONS(2492), - [anon_sym_not_DASHin2] = ACTIONS(2492), - [anon_sym_has2] = ACTIONS(2492), - [anon_sym_not_DASHhas2] = ACTIONS(2492), - [anon_sym_starts_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), - [anon_sym_ends_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), - [anon_sym_EQ_EQ2] = ACTIONS(2492), - [anon_sym_BANG_EQ2] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2494), - [anon_sym_LT_EQ2] = ACTIONS(2492), - [anon_sym_GT_EQ2] = ACTIONS(2492), - [anon_sym_EQ_TILDE2] = ACTIONS(2492), - [anon_sym_BANG_TILDE2] = ACTIONS(2492), - [anon_sym_like2] = ACTIONS(2492), - [anon_sym_not_DASHlike2] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2492), - [anon_sym_PLUS_PLUS2] = ACTIONS(2492), - [anon_sym_SLASH2] = ACTIONS(2494), - [anon_sym_mod2] = ACTIONS(2492), - [anon_sym_SLASH_SLASH2] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_bit_DASHshl2] = ACTIONS(2492), - [anon_sym_bit_DASHshr2] = ACTIONS(2492), - [anon_sym_bit_DASHand2] = ACTIONS(2492), - [anon_sym_bit_DASHxor2] = ACTIONS(2492), - [anon_sym_bit_DASHor2] = ACTIONS(2492), - [anon_sym_err_GT] = ACTIONS(2494), - [anon_sym_out_GT] = ACTIONS(2494), - [anon_sym_e_GT] = ACTIONS(2494), - [anon_sym_o_GT] = ACTIONS(2494), - [anon_sym_err_PLUSout_GT] = ACTIONS(2494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), - [anon_sym_o_PLUSe_GT] = ACTIONS(2494), - [anon_sym_e_PLUSo_GT] = ACTIONS(2494), - [anon_sym_err_GT_GT] = ACTIONS(2492), - [anon_sym_out_GT_GT] = ACTIONS(2492), - [anon_sym_e_GT_GT] = ACTIONS(2492), - [anon_sym_o_GT_GT] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(804)] = { - [sym_comment] = STATE(804), - [ts_builtin_sym_end] = ACTIONS(1774), - [anon_sym_in] = ACTIONS(1774), - [sym__newline] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_err_GT_PIPE] = ACTIONS(1774), - [anon_sym_out_GT_PIPE] = ACTIONS(1774), - [anon_sym_e_GT_PIPE] = ACTIONS(1774), - [anon_sym_o_GT_PIPE] = ACTIONS(1774), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), - [anon_sym_GT2] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(1774), - [anon_sym_STAR2] = ACTIONS(1776), - [anon_sym_and2] = ACTIONS(1774), - [anon_sym_xor2] = ACTIONS(1774), - [anon_sym_or2] = ACTIONS(1774), - [anon_sym_not_DASHin2] = ACTIONS(1774), - [anon_sym_has2] = ACTIONS(1774), - [anon_sym_not_DASHhas2] = ACTIONS(1774), - [anon_sym_starts_DASHwith2] = ACTIONS(1774), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1774), - [anon_sym_ends_DASHwith2] = ACTIONS(1774), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1774), - [anon_sym_EQ_EQ2] = ACTIONS(1774), - [anon_sym_BANG_EQ2] = ACTIONS(1774), - [anon_sym_LT2] = ACTIONS(1776), - [anon_sym_LT_EQ2] = ACTIONS(1774), - [anon_sym_GT_EQ2] = ACTIONS(1774), - [anon_sym_EQ_TILDE2] = ACTIONS(1774), - [anon_sym_BANG_TILDE2] = ACTIONS(1774), - [anon_sym_like2] = ACTIONS(1774), - [anon_sym_not_DASHlike2] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_STAR_STAR2] = ACTIONS(1774), - [anon_sym_PLUS_PLUS2] = ACTIONS(1774), - [anon_sym_SLASH2] = ACTIONS(1776), - [anon_sym_mod2] = ACTIONS(1774), - [anon_sym_SLASH_SLASH2] = ACTIONS(1774), - [anon_sym_PLUS2] = ACTIONS(1776), - [anon_sym_bit_DASHshl2] = ACTIONS(1774), - [anon_sym_bit_DASHshr2] = ACTIONS(1774), - [anon_sym_bit_DASHand2] = ACTIONS(1774), - [anon_sym_bit_DASHxor2] = ACTIONS(1774), - [anon_sym_bit_DASHor2] = ACTIONS(1774), - [aux_sym__immediate_decimal_token1] = ACTIONS(2496), - [aux_sym__immediate_decimal_token5] = ACTIONS(2498), - [anon_sym_err_GT] = ACTIONS(1776), - [anon_sym_out_GT] = ACTIONS(1776), - [anon_sym_e_GT] = ACTIONS(1776), - [anon_sym_o_GT] = ACTIONS(1776), - [anon_sym_err_PLUSout_GT] = ACTIONS(1776), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), - [anon_sym_o_PLUSe_GT] = ACTIONS(1776), - [anon_sym_e_PLUSo_GT] = ACTIONS(1776), - [anon_sym_err_GT_GT] = ACTIONS(1774), - [anon_sym_out_GT_GT] = ACTIONS(1774), - [anon_sym_e_GT_GT] = ACTIONS(1774), - [anon_sym_o_GT_GT] = ACTIONS(1774), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), - [sym__unquoted_pattern] = ACTIONS(1776), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(805)] = { - [aux_sym__repeat_newline] = STATE(1035), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(805), - [anon_sym_in] = ACTIONS(2492), - [sym__newline] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_err_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_GT_PIPE] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_GT2] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_STAR2] = ACTIONS(2494), - [anon_sym_and2] = ACTIONS(2492), - [anon_sym_xor2] = ACTIONS(2492), - [anon_sym_or2] = ACTIONS(2492), - [anon_sym_not_DASHin2] = ACTIONS(2492), - [anon_sym_has2] = ACTIONS(2492), - [anon_sym_not_DASHhas2] = ACTIONS(2492), - [anon_sym_starts_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), - [anon_sym_ends_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), - [anon_sym_EQ_EQ2] = ACTIONS(2492), - [anon_sym_BANG_EQ2] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2494), - [anon_sym_LT_EQ2] = ACTIONS(2492), - [anon_sym_GT_EQ2] = ACTIONS(2492), - [anon_sym_EQ_TILDE2] = ACTIONS(2492), - [anon_sym_BANG_TILDE2] = ACTIONS(2492), - [anon_sym_like2] = ACTIONS(2492), - [anon_sym_not_DASHlike2] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2492), - [anon_sym_PLUS_PLUS2] = ACTIONS(2492), - [anon_sym_SLASH2] = ACTIONS(2494), - [anon_sym_mod2] = ACTIONS(2492), - [anon_sym_SLASH_SLASH2] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_bit_DASHshl2] = ACTIONS(2492), - [anon_sym_bit_DASHshr2] = ACTIONS(2492), - [anon_sym_bit_DASHand2] = ACTIONS(2492), - [anon_sym_bit_DASHxor2] = ACTIONS(2492), - [anon_sym_bit_DASHor2] = ACTIONS(2492), - [anon_sym_err_GT] = ACTIONS(2494), - [anon_sym_out_GT] = ACTIONS(2494), - [anon_sym_e_GT] = ACTIONS(2494), - [anon_sym_o_GT] = ACTIONS(2494), - [anon_sym_err_PLUSout_GT] = ACTIONS(2494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), - [anon_sym_o_PLUSe_GT] = ACTIONS(2494), - [anon_sym_e_PLUSo_GT] = ACTIONS(2494), - [anon_sym_err_GT_GT] = ACTIONS(2492), - [anon_sym_out_GT_GT] = ACTIONS(2492), - [anon_sym_e_GT_GT] = ACTIONS(2492), - [anon_sym_o_GT_GT] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(806)] = { - [aux_sym__repeat_newline] = STATE(1036), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(806), - [anon_sym_in] = ACTIONS(2492), - [sym__newline] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_err_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_GT_PIPE] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_GT2] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_STAR2] = ACTIONS(2494), - [anon_sym_and2] = ACTIONS(2492), - [anon_sym_xor2] = ACTIONS(2492), - [anon_sym_or2] = ACTIONS(2492), - [anon_sym_not_DASHin2] = ACTIONS(2492), - [anon_sym_has2] = ACTIONS(2492), - [anon_sym_not_DASHhas2] = ACTIONS(2492), - [anon_sym_starts_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), - [anon_sym_ends_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), - [anon_sym_EQ_EQ2] = ACTIONS(2492), - [anon_sym_BANG_EQ2] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2494), - [anon_sym_LT_EQ2] = ACTIONS(2492), - [anon_sym_GT_EQ2] = ACTIONS(2492), - [anon_sym_EQ_TILDE2] = ACTIONS(2492), - [anon_sym_BANG_TILDE2] = ACTIONS(2492), - [anon_sym_like2] = ACTIONS(2492), - [anon_sym_not_DASHlike2] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2492), - [anon_sym_PLUS_PLUS2] = ACTIONS(2492), - [anon_sym_SLASH2] = ACTIONS(2494), - [anon_sym_mod2] = ACTIONS(2492), - [anon_sym_SLASH_SLASH2] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_bit_DASHshl2] = ACTIONS(2492), - [anon_sym_bit_DASHshr2] = ACTIONS(2492), - [anon_sym_bit_DASHand2] = ACTIONS(2492), - [anon_sym_bit_DASHxor2] = ACTIONS(2492), - [anon_sym_bit_DASHor2] = ACTIONS(2492), - [anon_sym_err_GT] = ACTIONS(2494), - [anon_sym_out_GT] = ACTIONS(2494), - [anon_sym_e_GT] = ACTIONS(2494), - [anon_sym_o_GT] = ACTIONS(2494), - [anon_sym_err_PLUSout_GT] = ACTIONS(2494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), - [anon_sym_o_PLUSe_GT] = ACTIONS(2494), - [anon_sym_e_PLUSo_GT] = ACTIONS(2494), - [anon_sym_err_GT_GT] = ACTIONS(2492), - [anon_sym_out_GT_GT] = ACTIONS(2492), - [anon_sym_e_GT_GT] = ACTIONS(2492), - [anon_sym_o_GT_GT] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(807)] = { - [aux_sym__repeat_newline] = STATE(1037), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(807), - [anon_sym_in] = ACTIONS(2492), - [sym__newline] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_err_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_GT_PIPE] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_GT2] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_STAR2] = ACTIONS(2494), - [anon_sym_and2] = ACTIONS(2492), - [anon_sym_xor2] = ACTIONS(2492), - [anon_sym_or2] = ACTIONS(2492), - [anon_sym_not_DASHin2] = ACTIONS(2492), - [anon_sym_has2] = ACTIONS(2492), - [anon_sym_not_DASHhas2] = ACTIONS(2492), - [anon_sym_starts_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), - [anon_sym_ends_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), - [anon_sym_EQ_EQ2] = ACTIONS(2492), - [anon_sym_BANG_EQ2] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2494), - [anon_sym_LT_EQ2] = ACTIONS(2492), - [anon_sym_GT_EQ2] = ACTIONS(2492), - [anon_sym_EQ_TILDE2] = ACTIONS(2492), - [anon_sym_BANG_TILDE2] = ACTIONS(2492), - [anon_sym_like2] = ACTIONS(2492), - [anon_sym_not_DASHlike2] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2492), - [anon_sym_PLUS_PLUS2] = ACTIONS(2492), - [anon_sym_SLASH2] = ACTIONS(2494), - [anon_sym_mod2] = ACTIONS(2492), - [anon_sym_SLASH_SLASH2] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_bit_DASHshl2] = ACTIONS(2492), - [anon_sym_bit_DASHshr2] = ACTIONS(2492), - [anon_sym_bit_DASHand2] = ACTIONS(2492), - [anon_sym_bit_DASHxor2] = ACTIONS(2492), - [anon_sym_bit_DASHor2] = ACTIONS(2492), - [anon_sym_err_GT] = ACTIONS(2494), - [anon_sym_out_GT] = ACTIONS(2494), - [anon_sym_e_GT] = ACTIONS(2494), - [anon_sym_o_GT] = ACTIONS(2494), - [anon_sym_err_PLUSout_GT] = ACTIONS(2494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), - [anon_sym_o_PLUSe_GT] = ACTIONS(2494), - [anon_sym_e_PLUSo_GT] = ACTIONS(2494), - [anon_sym_err_GT_GT] = ACTIONS(2492), - [anon_sym_out_GT_GT] = ACTIONS(2492), - [anon_sym_e_GT_GT] = ACTIONS(2492), - [anon_sym_o_GT_GT] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(808)] = { - [aux_sym__repeat_newline] = STATE(1038), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(808), - [anon_sym_in] = ACTIONS(2492), - [sym__newline] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_err_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_GT_PIPE] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_GT2] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_STAR2] = ACTIONS(2494), - [anon_sym_and2] = ACTIONS(2492), - [anon_sym_xor2] = ACTIONS(2492), - [anon_sym_or2] = ACTIONS(2492), - [anon_sym_not_DASHin2] = ACTIONS(2492), - [anon_sym_has2] = ACTIONS(2492), - [anon_sym_not_DASHhas2] = ACTIONS(2492), - [anon_sym_starts_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), - [anon_sym_ends_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), - [anon_sym_EQ_EQ2] = ACTIONS(2492), - [anon_sym_BANG_EQ2] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2494), - [anon_sym_LT_EQ2] = ACTIONS(2492), - [anon_sym_GT_EQ2] = ACTIONS(2492), - [anon_sym_EQ_TILDE2] = ACTIONS(2492), - [anon_sym_BANG_TILDE2] = ACTIONS(2492), - [anon_sym_like2] = ACTIONS(2492), - [anon_sym_not_DASHlike2] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2492), - [anon_sym_PLUS_PLUS2] = ACTIONS(2492), - [anon_sym_SLASH2] = ACTIONS(2494), - [anon_sym_mod2] = ACTIONS(2492), - [anon_sym_SLASH_SLASH2] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_bit_DASHshl2] = ACTIONS(2492), - [anon_sym_bit_DASHshr2] = ACTIONS(2492), - [anon_sym_bit_DASHand2] = ACTIONS(2492), - [anon_sym_bit_DASHxor2] = ACTIONS(2492), - [anon_sym_bit_DASHor2] = ACTIONS(2492), - [anon_sym_err_GT] = ACTIONS(2494), - [anon_sym_out_GT] = ACTIONS(2494), - [anon_sym_e_GT] = ACTIONS(2494), - [anon_sym_o_GT] = ACTIONS(2494), - [anon_sym_err_PLUSout_GT] = ACTIONS(2494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), - [anon_sym_o_PLUSe_GT] = ACTIONS(2494), - [anon_sym_e_PLUSo_GT] = ACTIONS(2494), - [anon_sym_err_GT_GT] = ACTIONS(2492), - [anon_sym_out_GT_GT] = ACTIONS(2492), - [anon_sym_e_GT_GT] = ACTIONS(2492), - [anon_sym_o_GT_GT] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(809)] = { - [aux_sym__repeat_newline] = STATE(1039), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(809), - [anon_sym_in] = ACTIONS(2492), - [sym__newline] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_err_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_GT_PIPE] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_GT2] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_STAR2] = ACTIONS(2494), - [anon_sym_and2] = ACTIONS(2492), - [anon_sym_xor2] = ACTIONS(2492), - [anon_sym_or2] = ACTIONS(2492), - [anon_sym_not_DASHin2] = ACTIONS(2492), - [anon_sym_has2] = ACTIONS(2492), - [anon_sym_not_DASHhas2] = ACTIONS(2492), - [anon_sym_starts_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), - [anon_sym_ends_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), - [anon_sym_EQ_EQ2] = ACTIONS(2492), - [anon_sym_BANG_EQ2] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2494), - [anon_sym_LT_EQ2] = ACTIONS(2492), - [anon_sym_GT_EQ2] = ACTIONS(2492), - [anon_sym_EQ_TILDE2] = ACTIONS(2492), - [anon_sym_BANG_TILDE2] = ACTIONS(2492), - [anon_sym_like2] = ACTIONS(2492), - [anon_sym_not_DASHlike2] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2492), - [anon_sym_PLUS_PLUS2] = ACTIONS(2492), - [anon_sym_SLASH2] = ACTIONS(2494), - [anon_sym_mod2] = ACTIONS(2492), - [anon_sym_SLASH_SLASH2] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_bit_DASHshl2] = ACTIONS(2492), - [anon_sym_bit_DASHshr2] = ACTIONS(2492), - [anon_sym_bit_DASHand2] = ACTIONS(2492), - [anon_sym_bit_DASHxor2] = ACTIONS(2492), - [anon_sym_bit_DASHor2] = ACTIONS(2492), - [anon_sym_err_GT] = ACTIONS(2494), - [anon_sym_out_GT] = ACTIONS(2494), - [anon_sym_e_GT] = ACTIONS(2494), - [anon_sym_o_GT] = ACTIONS(2494), - [anon_sym_err_PLUSout_GT] = ACTIONS(2494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), - [anon_sym_o_PLUSe_GT] = ACTIONS(2494), - [anon_sym_e_PLUSo_GT] = ACTIONS(2494), - [anon_sym_err_GT_GT] = ACTIONS(2492), - [anon_sym_out_GT_GT] = ACTIONS(2492), - [anon_sym_e_GT_GT] = ACTIONS(2492), - [anon_sym_o_GT_GT] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(810)] = { - [aux_sym__repeat_newline] = STATE(1040), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(810), - [anon_sym_in] = ACTIONS(2492), - [sym__newline] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_err_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_GT_PIPE] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_GT2] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_STAR2] = ACTIONS(2494), - [anon_sym_and2] = ACTIONS(2492), - [anon_sym_xor2] = ACTIONS(2492), - [anon_sym_or2] = ACTIONS(2492), - [anon_sym_not_DASHin2] = ACTIONS(2492), - [anon_sym_has2] = ACTIONS(2492), - [anon_sym_not_DASHhas2] = ACTIONS(2492), - [anon_sym_starts_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), - [anon_sym_ends_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), - [anon_sym_EQ_EQ2] = ACTIONS(2492), - [anon_sym_BANG_EQ2] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2494), - [anon_sym_LT_EQ2] = ACTIONS(2492), - [anon_sym_GT_EQ2] = ACTIONS(2492), - [anon_sym_EQ_TILDE2] = ACTIONS(2492), - [anon_sym_BANG_TILDE2] = ACTIONS(2492), - [anon_sym_like2] = ACTIONS(2492), - [anon_sym_not_DASHlike2] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2492), - [anon_sym_PLUS_PLUS2] = ACTIONS(2492), - [anon_sym_SLASH2] = ACTIONS(2494), - [anon_sym_mod2] = ACTIONS(2492), - [anon_sym_SLASH_SLASH2] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_bit_DASHshl2] = ACTIONS(2492), - [anon_sym_bit_DASHshr2] = ACTIONS(2492), - [anon_sym_bit_DASHand2] = ACTIONS(2492), - [anon_sym_bit_DASHxor2] = ACTIONS(2492), - [anon_sym_bit_DASHor2] = ACTIONS(2492), - [anon_sym_err_GT] = ACTIONS(2494), - [anon_sym_out_GT] = ACTIONS(2494), - [anon_sym_e_GT] = ACTIONS(2494), - [anon_sym_o_GT] = ACTIONS(2494), - [anon_sym_err_PLUSout_GT] = ACTIONS(2494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), - [anon_sym_o_PLUSe_GT] = ACTIONS(2494), - [anon_sym_e_PLUSo_GT] = ACTIONS(2494), - [anon_sym_err_GT_GT] = ACTIONS(2492), - [anon_sym_out_GT_GT] = ACTIONS(2492), - [anon_sym_e_GT_GT] = ACTIONS(2492), - [anon_sym_o_GT_GT] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(811)] = { - [sym_comment] = STATE(811), - [ts_builtin_sym_end] = ACTIONS(1788), - [anon_sym_in] = ACTIONS(1788), - [sym__newline] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_PIPE] = ACTIONS(1788), - [anon_sym_err_GT_PIPE] = ACTIONS(1788), - [anon_sym_out_GT_PIPE] = ACTIONS(1788), - [anon_sym_e_GT_PIPE] = ACTIONS(1788), - [anon_sym_o_GT_PIPE] = ACTIONS(1788), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), - [anon_sym_GT2] = ACTIONS(1790), - [anon_sym_DASH2] = ACTIONS(1788), - [anon_sym_STAR2] = ACTIONS(1790), - [anon_sym_and2] = ACTIONS(1788), - [anon_sym_xor2] = ACTIONS(1788), - [anon_sym_or2] = ACTIONS(1788), - [anon_sym_not_DASHin2] = ACTIONS(1788), - [anon_sym_has2] = ACTIONS(1788), - [anon_sym_not_DASHhas2] = ACTIONS(1788), - [anon_sym_starts_DASHwith2] = ACTIONS(1788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1788), - [anon_sym_ends_DASHwith2] = ACTIONS(1788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1788), - [anon_sym_EQ_EQ2] = ACTIONS(1788), - [anon_sym_BANG_EQ2] = ACTIONS(1788), - [anon_sym_LT2] = ACTIONS(1790), - [anon_sym_LT_EQ2] = ACTIONS(1788), - [anon_sym_GT_EQ2] = ACTIONS(1788), - [anon_sym_EQ_TILDE2] = ACTIONS(1788), - [anon_sym_BANG_TILDE2] = ACTIONS(1788), - [anon_sym_like2] = ACTIONS(1788), - [anon_sym_not_DASHlike2] = ACTIONS(1788), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_STAR_STAR2] = ACTIONS(1788), - [anon_sym_PLUS_PLUS2] = ACTIONS(1788), - [anon_sym_SLASH2] = ACTIONS(1790), - [anon_sym_mod2] = ACTIONS(1788), - [anon_sym_SLASH_SLASH2] = ACTIONS(1788), - [anon_sym_PLUS2] = ACTIONS(1790), - [anon_sym_bit_DASHshl2] = ACTIONS(1788), - [anon_sym_bit_DASHshr2] = ACTIONS(1788), - [anon_sym_bit_DASHand2] = ACTIONS(1788), - [anon_sym_bit_DASHxor2] = ACTIONS(1788), - [anon_sym_bit_DASHor2] = ACTIONS(1788), - [anon_sym_DOT] = ACTIONS(2500), - [aux_sym__immediate_decimal_token5] = ACTIONS(2502), - [anon_sym_err_GT] = ACTIONS(1790), - [anon_sym_out_GT] = ACTIONS(1790), - [anon_sym_e_GT] = ACTIONS(1790), - [anon_sym_o_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT] = ACTIONS(1790), - [anon_sym_err_GT_GT] = ACTIONS(1788), - [anon_sym_out_GT_GT] = ACTIONS(1788), - [anon_sym_e_GT_GT] = ACTIONS(1788), - [anon_sym_o_GT_GT] = ACTIONS(1788), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1788), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1788), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1788), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1788), - [sym__unquoted_pattern] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(812)] = { - [aux_sym__repeat_newline] = STATE(1041), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(812), - [anon_sym_in] = ACTIONS(2492), - [sym__newline] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_err_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_GT_PIPE] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_GT2] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_STAR2] = ACTIONS(2494), - [anon_sym_and2] = ACTIONS(2492), - [anon_sym_xor2] = ACTIONS(2492), - [anon_sym_or2] = ACTIONS(2492), - [anon_sym_not_DASHin2] = ACTIONS(2492), - [anon_sym_has2] = ACTIONS(2492), - [anon_sym_not_DASHhas2] = ACTIONS(2492), - [anon_sym_starts_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), - [anon_sym_ends_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), - [anon_sym_EQ_EQ2] = ACTIONS(2492), - [anon_sym_BANG_EQ2] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2494), - [anon_sym_LT_EQ2] = ACTIONS(2492), - [anon_sym_GT_EQ2] = ACTIONS(2492), - [anon_sym_EQ_TILDE2] = ACTIONS(2492), - [anon_sym_BANG_TILDE2] = ACTIONS(2492), - [anon_sym_like2] = ACTIONS(2492), - [anon_sym_not_DASHlike2] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2492), - [anon_sym_PLUS_PLUS2] = ACTIONS(2492), - [anon_sym_SLASH2] = ACTIONS(2494), - [anon_sym_mod2] = ACTIONS(2492), - [anon_sym_SLASH_SLASH2] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_bit_DASHshl2] = ACTIONS(2492), - [anon_sym_bit_DASHshr2] = ACTIONS(2492), - [anon_sym_bit_DASHand2] = ACTIONS(2492), - [anon_sym_bit_DASHxor2] = ACTIONS(2492), - [anon_sym_bit_DASHor2] = ACTIONS(2492), - [anon_sym_err_GT] = ACTIONS(2494), - [anon_sym_out_GT] = ACTIONS(2494), - [anon_sym_e_GT] = ACTIONS(2494), - [anon_sym_o_GT] = ACTIONS(2494), - [anon_sym_err_PLUSout_GT] = ACTIONS(2494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), - [anon_sym_o_PLUSe_GT] = ACTIONS(2494), - [anon_sym_e_PLUSo_GT] = ACTIONS(2494), - [anon_sym_err_GT_GT] = ACTIONS(2492), - [anon_sym_out_GT_GT] = ACTIONS(2492), - [anon_sym_e_GT_GT] = ACTIONS(2492), - [anon_sym_o_GT_GT] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(813)] = { - [aux_sym__repeat_newline] = STATE(1042), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(813), - [anon_sym_in] = ACTIONS(2492), - [sym__newline] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_err_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_GT_PIPE] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_GT2] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_STAR2] = ACTIONS(2494), - [anon_sym_and2] = ACTIONS(2492), - [anon_sym_xor2] = ACTIONS(2492), - [anon_sym_or2] = ACTIONS(2492), - [anon_sym_not_DASHin2] = ACTIONS(2492), - [anon_sym_has2] = ACTIONS(2492), - [anon_sym_not_DASHhas2] = ACTIONS(2492), - [anon_sym_starts_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), - [anon_sym_ends_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), - [anon_sym_EQ_EQ2] = ACTIONS(2492), - [anon_sym_BANG_EQ2] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2494), - [anon_sym_LT_EQ2] = ACTIONS(2492), - [anon_sym_GT_EQ2] = ACTIONS(2492), - [anon_sym_EQ_TILDE2] = ACTIONS(2492), - [anon_sym_BANG_TILDE2] = ACTIONS(2492), - [anon_sym_like2] = ACTIONS(2492), - [anon_sym_not_DASHlike2] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2492), - [anon_sym_PLUS_PLUS2] = ACTIONS(2492), - [anon_sym_SLASH2] = ACTIONS(2494), - [anon_sym_mod2] = ACTIONS(2492), - [anon_sym_SLASH_SLASH2] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_bit_DASHshl2] = ACTIONS(2492), - [anon_sym_bit_DASHshr2] = ACTIONS(2492), - [anon_sym_bit_DASHand2] = ACTIONS(2492), - [anon_sym_bit_DASHxor2] = ACTIONS(2492), - [anon_sym_bit_DASHor2] = ACTIONS(2492), - [anon_sym_err_GT] = ACTIONS(2494), - [anon_sym_out_GT] = ACTIONS(2494), - [anon_sym_e_GT] = ACTIONS(2494), - [anon_sym_o_GT] = ACTIONS(2494), - [anon_sym_err_PLUSout_GT] = ACTIONS(2494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), - [anon_sym_o_PLUSe_GT] = ACTIONS(2494), - [anon_sym_e_PLUSo_GT] = ACTIONS(2494), - [anon_sym_err_GT_GT] = ACTIONS(2492), - [anon_sym_out_GT_GT] = ACTIONS(2492), - [anon_sym_e_GT_GT] = ACTIONS(2492), - [anon_sym_o_GT_GT] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(814)] = { - [aux_sym__repeat_newline] = STATE(1043), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(814), - [anon_sym_in] = ACTIONS(2492), - [sym__newline] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_err_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_GT_PIPE] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_GT2] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_STAR2] = ACTIONS(2494), - [anon_sym_and2] = ACTIONS(2492), - [anon_sym_xor2] = ACTIONS(2492), - [anon_sym_or2] = ACTIONS(2492), - [anon_sym_not_DASHin2] = ACTIONS(2492), - [anon_sym_has2] = ACTIONS(2492), - [anon_sym_not_DASHhas2] = ACTIONS(2492), - [anon_sym_starts_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), - [anon_sym_ends_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), - [anon_sym_EQ_EQ2] = ACTIONS(2492), - [anon_sym_BANG_EQ2] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2494), - [anon_sym_LT_EQ2] = ACTIONS(2492), - [anon_sym_GT_EQ2] = ACTIONS(2492), - [anon_sym_EQ_TILDE2] = ACTIONS(2492), - [anon_sym_BANG_TILDE2] = ACTIONS(2492), - [anon_sym_like2] = ACTIONS(2492), - [anon_sym_not_DASHlike2] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2492), - [anon_sym_PLUS_PLUS2] = ACTIONS(2492), - [anon_sym_SLASH2] = ACTIONS(2494), - [anon_sym_mod2] = ACTIONS(2492), - [anon_sym_SLASH_SLASH2] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_bit_DASHshl2] = ACTIONS(2492), - [anon_sym_bit_DASHshr2] = ACTIONS(2492), - [anon_sym_bit_DASHand2] = ACTIONS(2492), - [anon_sym_bit_DASHxor2] = ACTIONS(2492), - [anon_sym_bit_DASHor2] = ACTIONS(2492), - [anon_sym_err_GT] = ACTIONS(2494), - [anon_sym_out_GT] = ACTIONS(2494), - [anon_sym_e_GT] = ACTIONS(2494), - [anon_sym_o_GT] = ACTIONS(2494), - [anon_sym_err_PLUSout_GT] = ACTIONS(2494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), - [anon_sym_o_PLUSe_GT] = ACTIONS(2494), - [anon_sym_e_PLUSo_GT] = ACTIONS(2494), - [anon_sym_err_GT_GT] = ACTIONS(2492), - [anon_sym_out_GT_GT] = ACTIONS(2492), - [anon_sym_e_GT_GT] = ACTIONS(2492), - [anon_sym_o_GT_GT] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(815)] = { - [sym_comment] = STATE(815), - [anon_sym_in] = ACTIONS(1788), - [sym__newline] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_PIPE] = ACTIONS(1788), - [anon_sym_err_GT_PIPE] = ACTIONS(1788), - [anon_sym_out_GT_PIPE] = ACTIONS(1788), - [anon_sym_e_GT_PIPE] = ACTIONS(1788), - [anon_sym_o_GT_PIPE] = ACTIONS(1788), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), - [anon_sym_RPAREN] = ACTIONS(1788), - [anon_sym_GT2] = ACTIONS(1790), - [anon_sym_DASH2] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1788), - [anon_sym_STAR2] = ACTIONS(1790), - [anon_sym_and2] = ACTIONS(1788), - [anon_sym_xor2] = ACTIONS(1788), - [anon_sym_or2] = ACTIONS(1788), - [anon_sym_not_DASHin2] = ACTIONS(1788), - [anon_sym_has2] = ACTIONS(1788), - [anon_sym_not_DASHhas2] = ACTIONS(1788), - [anon_sym_starts_DASHwith2] = ACTIONS(1788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1788), - [anon_sym_ends_DASHwith2] = ACTIONS(1788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1788), - [anon_sym_EQ_EQ2] = ACTIONS(1788), - [anon_sym_BANG_EQ2] = ACTIONS(1788), - [anon_sym_LT2] = ACTIONS(1790), - [anon_sym_LT_EQ2] = ACTIONS(1788), - [anon_sym_GT_EQ2] = ACTIONS(1788), - [anon_sym_EQ_TILDE2] = ACTIONS(1788), - [anon_sym_BANG_TILDE2] = ACTIONS(1788), - [anon_sym_like2] = ACTIONS(1788), - [anon_sym_not_DASHlike2] = ACTIONS(1788), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_STAR_STAR2] = ACTIONS(1788), - [anon_sym_PLUS_PLUS2] = ACTIONS(1788), - [anon_sym_SLASH2] = ACTIONS(1790), - [anon_sym_mod2] = ACTIONS(1788), - [anon_sym_SLASH_SLASH2] = ACTIONS(1788), - [anon_sym_PLUS2] = ACTIONS(1790), - [anon_sym_bit_DASHshl2] = ACTIONS(1788), - [anon_sym_bit_DASHshr2] = ACTIONS(1788), - [anon_sym_bit_DASHand2] = ACTIONS(1788), - [anon_sym_bit_DASHxor2] = ACTIONS(1788), - [anon_sym_bit_DASHor2] = ACTIONS(1788), - [aux_sym__immediate_decimal_token5] = ACTIONS(2164), - [anon_sym_err_GT] = ACTIONS(1790), - [anon_sym_out_GT] = ACTIONS(1790), - [anon_sym_e_GT] = ACTIONS(1790), - [anon_sym_o_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT] = ACTIONS(1790), - [anon_sym_err_GT_GT] = ACTIONS(1788), - [anon_sym_out_GT_GT] = ACTIONS(1788), - [anon_sym_e_GT_GT] = ACTIONS(1788), - [anon_sym_o_GT_GT] = ACTIONS(1788), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1788), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1788), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1788), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1788), - [sym__unquoted_pattern] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(816)] = { - [sym_comment] = STATE(816), - [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_RBRACE] = 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_LPAREN2] = 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), - [aux_sym__immediate_decimal_token5] = ACTIONS(2504), - [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), - [sym__unquoted_pattern] = ACTIONS(1868), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(817)] = { - [aux_sym__repeat_newline] = STATE(1044), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(817), - [anon_sym_in] = ACTIONS(2492), - [sym__newline] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_err_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_GT_PIPE] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_GT2] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_STAR2] = ACTIONS(2494), - [anon_sym_and2] = ACTIONS(2492), - [anon_sym_xor2] = ACTIONS(2492), - [anon_sym_or2] = ACTIONS(2492), - [anon_sym_not_DASHin2] = ACTIONS(2492), - [anon_sym_has2] = ACTIONS(2492), - [anon_sym_not_DASHhas2] = ACTIONS(2492), - [anon_sym_starts_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), - [anon_sym_ends_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), - [anon_sym_EQ_EQ2] = ACTIONS(2492), - [anon_sym_BANG_EQ2] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2494), - [anon_sym_LT_EQ2] = ACTIONS(2492), - [anon_sym_GT_EQ2] = ACTIONS(2492), - [anon_sym_EQ_TILDE2] = ACTIONS(2492), - [anon_sym_BANG_TILDE2] = ACTIONS(2492), - [anon_sym_like2] = ACTIONS(2492), - [anon_sym_not_DASHlike2] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2492), - [anon_sym_PLUS_PLUS2] = ACTIONS(2492), - [anon_sym_SLASH2] = ACTIONS(2494), - [anon_sym_mod2] = ACTIONS(2492), - [anon_sym_SLASH_SLASH2] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_bit_DASHshl2] = ACTIONS(2492), - [anon_sym_bit_DASHshr2] = ACTIONS(2492), - [anon_sym_bit_DASHand2] = ACTIONS(2492), - [anon_sym_bit_DASHxor2] = ACTIONS(2492), - [anon_sym_bit_DASHor2] = ACTIONS(2492), - [anon_sym_err_GT] = ACTIONS(2494), - [anon_sym_out_GT] = ACTIONS(2494), - [anon_sym_e_GT] = ACTIONS(2494), - [anon_sym_o_GT] = ACTIONS(2494), - [anon_sym_err_PLUSout_GT] = ACTIONS(2494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), - [anon_sym_o_PLUSe_GT] = ACTIONS(2494), - [anon_sym_e_PLUSo_GT] = ACTIONS(2494), - [anon_sym_err_GT_GT] = ACTIONS(2492), - [anon_sym_out_GT_GT] = ACTIONS(2492), - [anon_sym_e_GT_GT] = ACTIONS(2492), - [anon_sym_o_GT_GT] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(818)] = { - [aux_sym__repeat_newline] = STATE(1045), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(818), - [anon_sym_in] = ACTIONS(2492), - [sym__newline] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_err_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_GT_PIPE] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_GT2] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_STAR2] = ACTIONS(2494), - [anon_sym_and2] = ACTIONS(2492), - [anon_sym_xor2] = ACTIONS(2492), - [anon_sym_or2] = ACTIONS(2492), - [anon_sym_not_DASHin2] = ACTIONS(2492), - [anon_sym_has2] = ACTIONS(2492), - [anon_sym_not_DASHhas2] = ACTIONS(2492), - [anon_sym_starts_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), - [anon_sym_ends_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), - [anon_sym_EQ_EQ2] = ACTIONS(2492), - [anon_sym_BANG_EQ2] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2494), - [anon_sym_LT_EQ2] = ACTIONS(2492), - [anon_sym_GT_EQ2] = ACTIONS(2492), - [anon_sym_EQ_TILDE2] = ACTIONS(2492), - [anon_sym_BANG_TILDE2] = ACTIONS(2492), - [anon_sym_like2] = ACTIONS(2492), - [anon_sym_not_DASHlike2] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2492), - [anon_sym_PLUS_PLUS2] = ACTIONS(2492), - [anon_sym_SLASH2] = ACTIONS(2494), - [anon_sym_mod2] = ACTIONS(2492), - [anon_sym_SLASH_SLASH2] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_bit_DASHshl2] = ACTIONS(2492), - [anon_sym_bit_DASHshr2] = ACTIONS(2492), - [anon_sym_bit_DASHand2] = ACTIONS(2492), - [anon_sym_bit_DASHxor2] = ACTIONS(2492), - [anon_sym_bit_DASHor2] = ACTIONS(2492), - [anon_sym_err_GT] = ACTIONS(2494), - [anon_sym_out_GT] = ACTIONS(2494), - [anon_sym_e_GT] = ACTIONS(2494), - [anon_sym_o_GT] = ACTIONS(2494), - [anon_sym_err_PLUSout_GT] = ACTIONS(2494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), - [anon_sym_o_PLUSe_GT] = ACTIONS(2494), - [anon_sym_e_PLUSo_GT] = ACTIONS(2494), - [anon_sym_err_GT_GT] = ACTIONS(2492), - [anon_sym_out_GT_GT] = ACTIONS(2492), - [anon_sym_e_GT_GT] = ACTIONS(2492), - [anon_sym_o_GT_GT] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(819)] = { - [aux_sym__repeat_newline] = STATE(1047), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(819), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(820)] = { - [aux_sym__repeat_newline] = STATE(1049), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(820), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(821)] = { - [aux_sym__repeat_newline] = STATE(1051), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(821), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(822)] = { - [sym_expr_unary] = STATE(1362), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1362), - [sym__expr_binary_expression] = STATE(1364), - [sym_expr_parenthesized] = STATE(962), - [sym_val_range] = STATE(1362), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(1362), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1137), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), + [810] = { + [sym_expr_unary] = STATE(1328), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1328), + [sym__expr_binary_expression] = STATE(1305), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1328), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(1328), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1130), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), [sym__val_number_decimal] = STATE(490), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(1089), - [sym__unquoted_with_expr] = STATE(1314), - [sym__unquoted_anonymous_prefix] = STATE(4915), - [sym_comment] = STATE(822), - [anon_sym_true] = ACTIONS(2510), - [anon_sym_false] = ACTIONS(2510), - [anon_sym_null] = ACTIONS(2512), - [aux_sym_cmd_identifier_token3] = ACTIONS(2514), - [aux_sym_cmd_identifier_token4] = ACTIONS(2514), - [aux_sym_cmd_identifier_token5] = ACTIONS(2514), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(1105), + [sym__unquoted_with_expr] = STATE(1303), + [sym__unquoted_anonymous_prefix] = STATE(4847), + [sym_comment] = STATE(810), + [anon_sym_true] = ACTIONS(2423), + [anon_sym_false] = ACTIONS(2423), + [anon_sym_null] = ACTIONS(2425), + [aux_sym_cmd_identifier_token3] = ACTIONS(2427), + [aux_sym_cmd_identifier_token4] = ACTIONS(2427), + [aux_sym_cmd_identifier_token5] = ACTIONS(2427), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1314), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2516), + [anon_sym_DOT_DOT] = ACTIONS(2429), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2518), - [anon_sym_DOT_DOT_LT] = ACTIONS(2518), - [aux_sym__val_number_decimal_token1] = ACTIONS(2520), - [aux_sym__val_number_decimal_token2] = ACTIONS(2522), - [aux_sym__val_number_decimal_token3] = ACTIONS(2524), - [aux_sym__val_number_decimal_token4] = ACTIONS(2524), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), [aux_sym__val_number_token1] = ACTIONS(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(2526), + [sym_val_date] = ACTIONS(2439), [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(2528), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(823)] = { - [aux_sym__repeat_newline] = STATE(1053), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(823), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(824)] = { - [sym_expr_unary] = STATE(1362), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1362), - [sym__expr_binary_expression] = STATE(1318), - [sym_expr_parenthesized] = STATE(962), - [sym_val_range] = STATE(1362), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(1362), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1137), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), + [811] = { + [aux_sym__repeat_newline] = STATE(1146), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(811), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [812] = { + [sym_comment] = STATE(812), + [anon_sym_if] = ACTIONS(2553), + [anon_sym_in] = ACTIONS(2553), + [sym__newline] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2553), + [anon_sym_err_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_GT_PIPE] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_GT2] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_RBRACE] = ACTIONS(2553), + [anon_sym_EQ_GT] = ACTIONS(2553), + [anon_sym_STAR2] = ACTIONS(2555), + [anon_sym_and2] = ACTIONS(2553), + [anon_sym_xor2] = ACTIONS(2553), + [anon_sym_or2] = ACTIONS(2553), + [anon_sym_not_DASHin2] = ACTIONS(2553), + [anon_sym_has2] = ACTIONS(2553), + [anon_sym_not_DASHhas2] = ACTIONS(2553), + [anon_sym_starts_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2553), + [anon_sym_ends_DASHwith2] = ACTIONS(2553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2553), + [anon_sym_EQ_EQ2] = ACTIONS(2553), + [anon_sym_BANG_EQ2] = ACTIONS(2553), + [anon_sym_LT2] = ACTIONS(2555), + [anon_sym_LT_EQ2] = ACTIONS(2553), + [anon_sym_GT_EQ2] = ACTIONS(2553), + [anon_sym_EQ_TILDE2] = ACTIONS(2553), + [anon_sym_BANG_TILDE2] = ACTIONS(2553), + [anon_sym_like2] = ACTIONS(2553), + [anon_sym_not_DASHlike2] = ACTIONS(2553), + [anon_sym_STAR_STAR2] = ACTIONS(2553), + [anon_sym_PLUS_PLUS2] = ACTIONS(2553), + [anon_sym_SLASH2] = ACTIONS(2555), + [anon_sym_mod2] = ACTIONS(2553), + [anon_sym_SLASH_SLASH2] = ACTIONS(2553), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_bit_DASHshl2] = ACTIONS(2553), + [anon_sym_bit_DASHshr2] = ACTIONS(2553), + [anon_sym_bit_DASHand2] = ACTIONS(2553), + [anon_sym_bit_DASHxor2] = ACTIONS(2553), + [anon_sym_bit_DASHor2] = ACTIONS(2553), + [anon_sym_err_GT] = ACTIONS(2555), + [anon_sym_out_GT] = ACTIONS(2555), + [anon_sym_e_GT] = ACTIONS(2555), + [anon_sym_o_GT] = ACTIONS(2555), + [anon_sym_err_PLUSout_GT] = ACTIONS(2555), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2555), + [anon_sym_o_PLUSe_GT] = ACTIONS(2555), + [anon_sym_e_PLUSo_GT] = ACTIONS(2555), + [anon_sym_err_GT_GT] = ACTIONS(2553), + [anon_sym_out_GT_GT] = ACTIONS(2553), + [anon_sym_e_GT_GT] = ACTIONS(2553), + [anon_sym_o_GT_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2553), + [anon_sym_POUND] = ACTIONS(3), + }, + [813] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2224), + [sym_expr_parenthesized] = STATE(2003), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(2127), + [sym_val_variable] = STATE(2006), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1825), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(707), + [sym__unquoted_with_expr] = STATE(947), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(813), + [anon_sym_true] = ACTIONS(2501), + [anon_sym_false] = ACTIONS(2501), + [anon_sym_null] = ACTIONS(2503), + [aux_sym_cmd_identifier_token3] = ACTIONS(2505), + [aux_sym_cmd_identifier_token4] = ACTIONS(2505), + [aux_sym_cmd_identifier_token5] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2507), + [aux_sym_expr_unary_token1] = ACTIONS(2509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2511), + [anon_sym_DOT_DOT_LT] = ACTIONS(2511), + [aux_sym__val_number_decimal_token1] = ACTIONS(2513), + [aux_sym__val_number_decimal_token2] = ACTIONS(2515), + [aux_sym__val_number_decimal_token3] = ACTIONS(2517), + [aux_sym__val_number_decimal_token4] = ACTIONS(2517), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2519), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [814] = { + [sym_expr_unary] = STATE(1328), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1328), + [sym__expr_binary_expression] = STATE(1307), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1328), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(1328), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1130), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), [sym__val_number_decimal] = STATE(490), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(1090), - [sym__unquoted_with_expr] = STATE(1321), - [sym__unquoted_anonymous_prefix] = STATE(4915), - [sym_comment] = STATE(824), - [anon_sym_true] = ACTIONS(2510), - [anon_sym_false] = ACTIONS(2510), - [anon_sym_null] = ACTIONS(2512), - [aux_sym_cmd_identifier_token3] = ACTIONS(2514), - [aux_sym_cmd_identifier_token4] = ACTIONS(2514), - [aux_sym_cmd_identifier_token5] = ACTIONS(2514), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(1110), + [sym__unquoted_with_expr] = STATE(1306), + [sym__unquoted_anonymous_prefix] = STATE(4847), + [sym_comment] = STATE(814), + [anon_sym_true] = ACTIONS(2423), + [anon_sym_false] = ACTIONS(2423), + [anon_sym_null] = ACTIONS(2425), + [aux_sym_cmd_identifier_token3] = ACTIONS(2427), + [aux_sym_cmd_identifier_token4] = ACTIONS(2427), + [aux_sym_cmd_identifier_token5] = ACTIONS(2427), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1314), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2516), + [anon_sym_DOT_DOT] = ACTIONS(2429), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2518), - [anon_sym_DOT_DOT_LT] = ACTIONS(2518), - [aux_sym__val_number_decimal_token1] = ACTIONS(2520), - [aux_sym__val_number_decimal_token2] = ACTIONS(2522), - [aux_sym__val_number_decimal_token3] = ACTIONS(2524), - [aux_sym__val_number_decimal_token4] = ACTIONS(2524), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), [aux_sym__val_number_token1] = ACTIONS(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(2526), + [sym_val_date] = ACTIONS(2439), [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(2528), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(825)] = { - [aux_sym__repeat_newline] = STATE(1055), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(825), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(826)] = { - [aux_sym__repeat_newline] = STATE(1057), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(826), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(827)] = { - [aux_sym__repeat_newline] = STATE(1059), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(827), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(828)] = { - [sym_cell_path] = STATE(1340), - [sym_path] = STATE(737), - [sym_comment] = STATE(828), - [aux_sym__where_predicate_lhs_repeat1] = STATE(586), - [ts_builtin_sym_end] = ACTIONS(1909), - [anon_sym_in] = ACTIONS(1909), - [sym__newline] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(1909), - [anon_sym_PIPE] = ACTIONS(1909), - [anon_sym_err_GT_PIPE] = ACTIONS(1909), - [anon_sym_out_GT_PIPE] = ACTIONS(1909), - [anon_sym_e_GT_PIPE] = ACTIONS(1909), - [anon_sym_o_GT_PIPE] = ACTIONS(1909), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1909), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1909), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1909), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1909), - [anon_sym_GT2] = ACTIONS(1911), - [anon_sym_DASH2] = ACTIONS(1909), - [anon_sym_STAR2] = ACTIONS(1911), - [anon_sym_and2] = ACTIONS(1909), - [anon_sym_xor2] = ACTIONS(1909), - [anon_sym_or2] = ACTIONS(1909), - [anon_sym_not_DASHin2] = ACTIONS(1909), - [anon_sym_has2] = ACTIONS(1909), - [anon_sym_not_DASHhas2] = ACTIONS(1909), - [anon_sym_starts_DASHwith2] = ACTIONS(1909), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1909), - [anon_sym_ends_DASHwith2] = ACTIONS(1909), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1909), - [anon_sym_EQ_EQ2] = ACTIONS(1909), - [anon_sym_BANG_EQ2] = ACTIONS(1909), - [anon_sym_LT2] = ACTIONS(1911), - [anon_sym_LT_EQ2] = ACTIONS(1909), - [anon_sym_GT_EQ2] = ACTIONS(1909), - [anon_sym_EQ_TILDE2] = ACTIONS(1909), - [anon_sym_BANG_TILDE2] = ACTIONS(1909), - [anon_sym_like2] = ACTIONS(1909), - [anon_sym_not_DASHlike2] = ACTIONS(1909), - [anon_sym_STAR_STAR2] = ACTIONS(1909), - [anon_sym_PLUS_PLUS2] = ACTIONS(1909), - [anon_sym_SLASH2] = ACTIONS(1911), - [anon_sym_mod2] = ACTIONS(1909), - [anon_sym_SLASH_SLASH2] = ACTIONS(1909), - [anon_sym_PLUS2] = ACTIONS(1911), - [anon_sym_bit_DASHshl2] = ACTIONS(1909), - [anon_sym_bit_DASHshr2] = ACTIONS(1909), - [anon_sym_bit_DASHand2] = ACTIONS(1909), - [anon_sym_bit_DASHxor2] = ACTIONS(1909), - [anon_sym_bit_DASHor2] = ACTIONS(1909), - [anon_sym_DOT2] = ACTIONS(2417), - [anon_sym_err_GT] = ACTIONS(1911), - [anon_sym_out_GT] = ACTIONS(1911), - [anon_sym_e_GT] = ACTIONS(1911), - [anon_sym_o_GT] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT] = ACTIONS(1911), - [anon_sym_err_GT_GT] = ACTIONS(1909), - [anon_sym_out_GT_GT] = ACTIONS(1909), - [anon_sym_e_GT_GT] = ACTIONS(1909), - [anon_sym_o_GT_GT] = ACTIONS(1909), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1909), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1909), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1909), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1909), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(829)] = { - [aux_sym__repeat_newline] = STATE(1061), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(829), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(830)] = { - [sym_expr_unary] = STATE(1362), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1362), - [sym__expr_binary_expression] = STATE(1324), - [sym_expr_parenthesized] = STATE(962), - [sym_val_range] = STATE(1362), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(1362), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1137), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), + [815] = { + [aux_sym__repeat_newline] = STATE(1151), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(815), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [816] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1221), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(988), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(473), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(714), + [sym__unquoted_with_expr] = STATE(948), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(816), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1981), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1991), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [817] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2237), + [sym_expr_parenthesized] = STATE(2003), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(2127), + [sym_val_variable] = STATE(2006), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1825), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(724), + [sym__unquoted_with_expr] = STATE(971), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(817), + [anon_sym_true] = ACTIONS(2501), + [anon_sym_false] = ACTIONS(2501), + [anon_sym_null] = ACTIONS(2503), + [aux_sym_cmd_identifier_token3] = ACTIONS(2505), + [aux_sym_cmd_identifier_token4] = ACTIONS(2505), + [aux_sym_cmd_identifier_token5] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2507), + [aux_sym_expr_unary_token1] = ACTIONS(2509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2511), + [anon_sym_DOT_DOT_LT] = ACTIONS(2511), + [aux_sym__val_number_decimal_token1] = ACTIONS(2513), + [aux_sym__val_number_decimal_token2] = ACTIONS(2515), + [aux_sym__val_number_decimal_token3] = ACTIONS(2517), + [aux_sym__val_number_decimal_token4] = ACTIONS(2517), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2519), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [818] = { + [aux_sym__repeat_newline] = STATE(1076), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(818), + [anon_sym_in] = ACTIONS(2557), + [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [819] = { + [aux_sym__repeat_newline] = STATE(1148), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(819), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [820] = { + [sym_comment] = STATE(820), + [anon_sym_in] = ACTIONS(2493), + [sym__newline] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2564), + [anon_sym_PIPE] = ACTIONS(2564), + [anon_sym_err_GT_PIPE] = ACTIONS(2564), + [anon_sym_out_GT_PIPE] = ACTIONS(2564), + [anon_sym_e_GT_PIPE] = ACTIONS(2564), + [anon_sym_o_GT_PIPE] = ACTIONS(2564), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2564), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2564), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2564), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(2564), + [anon_sym_GT2] = ACTIONS(2495), + [anon_sym_DASH2] = ACTIONS(2493), + [anon_sym_LBRACE] = ACTIONS(2564), + [anon_sym_STAR2] = ACTIONS(2495), + [anon_sym_and2] = ACTIONS(2493), + [anon_sym_xor2] = ACTIONS(2493), + [anon_sym_or2] = ACTIONS(2493), + [anon_sym_not_DASHin2] = ACTIONS(2493), + [anon_sym_has2] = ACTIONS(2493), + [anon_sym_not_DASHhas2] = ACTIONS(2493), + [anon_sym_starts_DASHwith2] = ACTIONS(2493), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2493), + [anon_sym_ends_DASHwith2] = ACTIONS(2493), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2493), + [anon_sym_EQ_EQ2] = ACTIONS(2493), + [anon_sym_BANG_EQ2] = ACTIONS(2493), + [anon_sym_LT2] = ACTIONS(2495), + [anon_sym_LT_EQ2] = ACTIONS(2493), + [anon_sym_GT_EQ2] = ACTIONS(2493), + [anon_sym_EQ_TILDE2] = ACTIONS(2493), + [anon_sym_BANG_TILDE2] = ACTIONS(2493), + [anon_sym_like2] = ACTIONS(2493), + [anon_sym_not_DASHlike2] = ACTIONS(2493), + [anon_sym_STAR_STAR2] = ACTIONS(2493), + [anon_sym_PLUS_PLUS2] = ACTIONS(2493), + [anon_sym_SLASH2] = ACTIONS(2495), + [anon_sym_mod2] = ACTIONS(2493), + [anon_sym_SLASH_SLASH2] = ACTIONS(2493), + [anon_sym_PLUS2] = ACTIONS(2495), + [anon_sym_bit_DASHshl2] = ACTIONS(2493), + [anon_sym_bit_DASHshr2] = ACTIONS(2493), + [anon_sym_bit_DASHand2] = ACTIONS(2493), + [anon_sym_bit_DASHxor2] = ACTIONS(2493), + [anon_sym_bit_DASHor2] = ACTIONS(2493), + [anon_sym_DOT_DOT2] = ACTIONS(1614), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1616), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1616), + [anon_sym_err_GT] = ACTIONS(2566), + [anon_sym_out_GT] = ACTIONS(2566), + [anon_sym_e_GT] = ACTIONS(2566), + [anon_sym_o_GT] = ACTIONS(2566), + [anon_sym_err_PLUSout_GT] = ACTIONS(2566), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2566), + [anon_sym_o_PLUSe_GT] = ACTIONS(2566), + [anon_sym_e_PLUSo_GT] = ACTIONS(2566), + [anon_sym_err_GT_GT] = ACTIONS(2564), + [anon_sym_out_GT_GT] = ACTIONS(2564), + [anon_sym_e_GT_GT] = ACTIONS(2564), + [anon_sym_o_GT_GT] = ACTIONS(2564), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2564), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2564), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2564), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(3), + }, + [821] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2238), + [sym_expr_parenthesized] = STATE(2003), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(2127), + [sym_val_variable] = STATE(2006), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1825), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(728), + [sym__unquoted_with_expr] = STATE(945), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(821), + [anon_sym_true] = ACTIONS(2501), + [anon_sym_false] = ACTIONS(2501), + [anon_sym_null] = ACTIONS(2503), + [aux_sym_cmd_identifier_token3] = ACTIONS(2505), + [aux_sym_cmd_identifier_token4] = ACTIONS(2505), + [aux_sym_cmd_identifier_token5] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2507), + [aux_sym_expr_unary_token1] = ACTIONS(2509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2511), + [anon_sym_DOT_DOT_LT] = ACTIONS(2511), + [aux_sym__val_number_decimal_token1] = ACTIONS(2513), + [aux_sym__val_number_decimal_token2] = ACTIONS(2515), + [aux_sym__val_number_decimal_token3] = ACTIONS(2517), + [aux_sym__val_number_decimal_token4] = ACTIONS(2517), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2519), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [822] = { + [aux_sym__repeat_newline] = STATE(1071), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(822), + [anon_sym_in] = ACTIONS(2557), + [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [823] = { + [aux_sym__repeat_newline] = STATE(1143), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(823), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [824] = { + [sym_expr_unary] = STATE(1328), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1328), + [sym__expr_binary_expression] = STATE(1310), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1328), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(1328), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1130), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), [sym__val_number_decimal] = STATE(490), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(1091), - [sym__unquoted_with_expr] = STATE(1326), - [sym__unquoted_anonymous_prefix] = STATE(4915), - [sym_comment] = STATE(830), - [anon_sym_true] = ACTIONS(2510), - [anon_sym_false] = ACTIONS(2510), - [anon_sym_null] = ACTIONS(2512), - [aux_sym_cmd_identifier_token3] = ACTIONS(2514), - [aux_sym_cmd_identifier_token4] = ACTIONS(2514), - [aux_sym_cmd_identifier_token5] = ACTIONS(2514), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(1115), + [sym__unquoted_with_expr] = STATE(1308), + [sym__unquoted_anonymous_prefix] = STATE(4847), + [sym_comment] = STATE(824), + [anon_sym_true] = ACTIONS(2423), + [anon_sym_false] = ACTIONS(2423), + [anon_sym_null] = ACTIONS(2425), + [aux_sym_cmd_identifier_token3] = ACTIONS(2427), + [aux_sym_cmd_identifier_token4] = ACTIONS(2427), + [aux_sym_cmd_identifier_token5] = ACTIONS(2427), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1314), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2516), + [anon_sym_DOT_DOT] = ACTIONS(2429), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2518), - [anon_sym_DOT_DOT_LT] = ACTIONS(2518), - [aux_sym__val_number_decimal_token1] = ACTIONS(2520), - [aux_sym__val_number_decimal_token2] = ACTIONS(2522), - [aux_sym__val_number_decimal_token3] = ACTIONS(2524), - [aux_sym__val_number_decimal_token4] = ACTIONS(2524), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), [aux_sym__val_number_token1] = ACTIONS(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(2526), + [sym_val_date] = ACTIONS(2439), [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(2528), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(831)] = { - [aux_sym__repeat_newline] = STATE(1066), - [sym__expr_parenthesized_immediate] = STATE(5069), + [825] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(940), + [sym_expr_parenthesized] = STATE(2003), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(2127), + [sym_val_variable] = STATE(2006), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1825), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(698), + [sym__unquoted_with_expr] = STATE(941), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(825), + [anon_sym_true] = ACTIONS(2501), + [anon_sym_false] = ACTIONS(2501), + [anon_sym_null] = ACTIONS(2503), + [aux_sym_cmd_identifier_token3] = ACTIONS(2505), + [aux_sym_cmd_identifier_token4] = ACTIONS(2505), + [aux_sym_cmd_identifier_token5] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2507), + [aux_sym_expr_unary_token1] = ACTIONS(2509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2511), + [anon_sym_DOT_DOT_LT] = ACTIONS(2511), + [aux_sym__val_number_decimal_token1] = ACTIONS(2513), + [aux_sym__val_number_decimal_token2] = ACTIONS(2515), + [aux_sym__val_number_decimal_token3] = ACTIONS(2517), + [aux_sym__val_number_decimal_token4] = ACTIONS(2517), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2519), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [826] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2240), + [sym_expr_parenthesized] = STATE(2003), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(2127), + [sym_val_variable] = STATE(2006), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1825), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(735), + [sym__unquoted_with_expr] = STATE(939), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(826), + [anon_sym_true] = ACTIONS(2501), + [anon_sym_false] = ACTIONS(2501), + [anon_sym_null] = ACTIONS(2503), + [aux_sym_cmd_identifier_token3] = ACTIONS(2505), + [aux_sym_cmd_identifier_token4] = ACTIONS(2505), + [aux_sym_cmd_identifier_token5] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2507), + [aux_sym_expr_unary_token1] = ACTIONS(2509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2511), + [anon_sym_DOT_DOT_LT] = ACTIONS(2511), + [aux_sym__val_number_decimal_token1] = ACTIONS(2513), + [aux_sym__val_number_decimal_token2] = ACTIONS(2515), + [aux_sym__val_number_decimal_token3] = ACTIONS(2517), + [aux_sym__val_number_decimal_token4] = ACTIONS(2517), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2519), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [827] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2257), + [sym_expr_parenthesized] = STATE(2003), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(2127), + [sym_val_variable] = STATE(2006), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1825), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(727), + [sym__unquoted_with_expr] = STATE(931), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(827), + [anon_sym_true] = ACTIONS(2501), + [anon_sym_false] = ACTIONS(2501), + [anon_sym_null] = ACTIONS(2503), + [aux_sym_cmd_identifier_token3] = ACTIONS(2505), + [aux_sym_cmd_identifier_token4] = ACTIONS(2505), + [aux_sym_cmd_identifier_token5] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2507), + [aux_sym_expr_unary_token1] = ACTIONS(2509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2511), + [anon_sym_DOT_DOT_LT] = ACTIONS(2511), + [aux_sym__val_number_decimal_token1] = ACTIONS(2513), + [aux_sym__val_number_decimal_token2] = ACTIONS(2515), + [aux_sym__val_number_decimal_token3] = ACTIONS(2517), + [aux_sym__val_number_decimal_token4] = ACTIONS(2517), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2519), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [828] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2241), + [sym_expr_parenthesized] = STATE(2003), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(2127), + [sym_val_variable] = STATE(2006), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1825), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(720), + [sym__unquoted_with_expr] = STATE(929), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(828), + [anon_sym_true] = ACTIONS(2501), + [anon_sym_false] = ACTIONS(2501), + [anon_sym_null] = ACTIONS(2503), + [aux_sym_cmd_identifier_token3] = ACTIONS(2505), + [aux_sym_cmd_identifier_token4] = ACTIONS(2505), + [aux_sym_cmd_identifier_token5] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2507), + [aux_sym_expr_unary_token1] = ACTIONS(2509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2511), + [anon_sym_DOT_DOT_LT] = ACTIONS(2511), + [aux_sym__val_number_decimal_token1] = ACTIONS(2513), + [aux_sym__val_number_decimal_token2] = ACTIONS(2515), + [aux_sym__val_number_decimal_token3] = ACTIONS(2517), + [aux_sym__val_number_decimal_token4] = ACTIONS(2517), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2519), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [829] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2254), + [sym_expr_parenthesized] = STATE(2003), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(2127), + [sym_val_variable] = STATE(2006), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1825), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(711), + [sym__unquoted_with_expr] = STATE(928), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(829), + [anon_sym_true] = ACTIONS(2501), + [anon_sym_false] = ACTIONS(2501), + [anon_sym_null] = ACTIONS(2503), + [aux_sym_cmd_identifier_token3] = ACTIONS(2505), + [aux_sym_cmd_identifier_token4] = ACTIONS(2505), + [aux_sym_cmd_identifier_token5] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2507), + [aux_sym_expr_unary_token1] = ACTIONS(2509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2511), + [anon_sym_DOT_DOT_LT] = ACTIONS(2511), + [aux_sym__val_number_decimal_token1] = ACTIONS(2513), + [aux_sym__val_number_decimal_token2] = ACTIONS(2515), + [aux_sym__val_number_decimal_token3] = ACTIONS(2517), + [aux_sym__val_number_decimal_token4] = ACTIONS(2517), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2519), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [830] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2251), + [sym_expr_parenthesized] = STATE(2003), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(2127), + [sym_val_variable] = STATE(2006), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1825), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(721), + [sym__unquoted_with_expr] = STATE(933), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(830), + [anon_sym_true] = ACTIONS(2501), + [anon_sym_false] = ACTIONS(2501), + [anon_sym_null] = ACTIONS(2503), + [aux_sym_cmd_identifier_token3] = ACTIONS(2505), + [aux_sym_cmd_identifier_token4] = ACTIONS(2505), + [aux_sym_cmd_identifier_token5] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2507), + [aux_sym_expr_unary_token1] = ACTIONS(2509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2511), + [anon_sym_DOT_DOT_LT] = ACTIONS(2511), + [aux_sym__val_number_decimal_token1] = ACTIONS(2513), + [aux_sym__val_number_decimal_token2] = ACTIONS(2515), + [aux_sym__val_number_decimal_token3] = ACTIONS(2517), + [aux_sym__val_number_decimal_token4] = ACTIONS(2517), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2519), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [831] = { + [aux_sym__repeat_newline] = STATE(1029), + [sym__expr_parenthesized_immediate] = STATE(5101), [sym_comment] = STATE(831), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(832)] = { - [sym_expr_unary] = STATE(1362), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1362), - [sym__expr_binary_expression] = STATE(1328), - [sym_expr_parenthesized] = STATE(962), - [sym_val_range] = STATE(1362), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(1362), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1137), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(490), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), - [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(1092), - [sym__unquoted_with_expr] = STATE(1331), - [sym__unquoted_anonymous_prefix] = STATE(4915), + [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_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_LPAREN2] = ACTIONS(1830), + [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_POUND] = ACTIONS(3), + }, + [832] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2245), + [sym_expr_parenthesized] = STATE(2003), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(2127), + [sym_val_variable] = STATE(2006), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1825), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(703), + [sym__unquoted_with_expr] = STATE(943), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(832), - [anon_sym_true] = ACTIONS(2510), - [anon_sym_false] = ACTIONS(2510), - [anon_sym_null] = ACTIONS(2512), - [aux_sym_cmd_identifier_token3] = ACTIONS(2514), - [aux_sym_cmd_identifier_token4] = ACTIONS(2514), - [aux_sym_cmd_identifier_token5] = ACTIONS(2514), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1322), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2516), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2518), - [anon_sym_DOT_DOT_LT] = ACTIONS(2518), - [aux_sym__val_number_decimal_token1] = ACTIONS(2520), - [aux_sym__val_number_decimal_token2] = ACTIONS(2522), - [aux_sym__val_number_decimal_token3] = ACTIONS(2524), - [aux_sym__val_number_decimal_token4] = ACTIONS(2524), - [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(2526), - [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(2528), + [anon_sym_true] = ACTIONS(2501), + [anon_sym_false] = ACTIONS(2501), + [anon_sym_null] = ACTIONS(2503), + [aux_sym_cmd_identifier_token3] = ACTIONS(2505), + [aux_sym_cmd_identifier_token4] = ACTIONS(2505), + [aux_sym_cmd_identifier_token5] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2507), + [aux_sym_expr_unary_token1] = ACTIONS(2509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2511), + [anon_sym_DOT_DOT_LT] = ACTIONS(2511), + [aux_sym__val_number_decimal_token1] = ACTIONS(2513), + [aux_sym__val_number_decimal_token2] = ACTIONS(2515), + [aux_sym__val_number_decimal_token3] = ACTIONS(2517), + [aux_sym__val_number_decimal_token4] = ACTIONS(2517), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2519), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(107), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(833)] = { - [aux_sym__repeat_newline] = STATE(1068), - [sym__expr_parenthesized_immediate] = STATE(5069), + [833] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2244), + [sym_expr_parenthesized] = STATE(2003), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(2127), + [sym_val_variable] = STATE(2006), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1825), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(708), + [sym__unquoted_with_expr] = STATE(951), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(833), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(834)] = { - [aux_sym__repeat_newline] = STATE(1070), - [sym__expr_parenthesized_immediate] = STATE(5069), + [anon_sym_true] = ACTIONS(2501), + [anon_sym_false] = ACTIONS(2501), + [anon_sym_null] = ACTIONS(2503), + [aux_sym_cmd_identifier_token3] = ACTIONS(2505), + [aux_sym_cmd_identifier_token4] = ACTIONS(2505), + [aux_sym_cmd_identifier_token5] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2507), + [aux_sym_expr_unary_token1] = ACTIONS(2509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2511), + [anon_sym_DOT_DOT_LT] = ACTIONS(2511), + [aux_sym__val_number_decimal_token1] = ACTIONS(2513), + [aux_sym__val_number_decimal_token2] = ACTIONS(2515), + [aux_sym__val_number_decimal_token3] = ACTIONS(2517), + [aux_sym__val_number_decimal_token4] = ACTIONS(2517), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2519), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [834] = { + [aux_sym__repeat_newline] = STATE(1066), + [sym__expr_parenthesized_immediate] = STATE(5101), [sym_comment] = STATE(834), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(835)] = { - [sym_expr_unary] = STATE(1362), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1362), - [sym__expr_binary_expression] = STATE(1289), - [sym_expr_parenthesized] = STATE(962), - [sym_val_range] = STATE(1362), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(1362), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1137), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), + [anon_sym_in] = ACTIONS(2557), + [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [835] = { + [sym_expr_unary] = STATE(1328), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1328), + [sym__expr_binary_expression] = STATE(1312), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1328), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(1328), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1130), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), [sym__val_number_decimal] = STATE(490), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(1096), - [sym__unquoted_with_expr] = STATE(1342), - [sym__unquoted_anonymous_prefix] = STATE(4915), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(1117), + [sym__unquoted_with_expr] = STATE(1311), + [sym__unquoted_anonymous_prefix] = STATE(4847), [sym_comment] = STATE(835), - [anon_sym_true] = ACTIONS(2510), - [anon_sym_false] = ACTIONS(2510), - [anon_sym_null] = ACTIONS(2512), - [aux_sym_cmd_identifier_token3] = ACTIONS(2514), - [aux_sym_cmd_identifier_token4] = ACTIONS(2514), - [aux_sym_cmd_identifier_token5] = ACTIONS(2514), + [anon_sym_true] = ACTIONS(2423), + [anon_sym_false] = ACTIONS(2423), + [anon_sym_null] = ACTIONS(2425), + [aux_sym_cmd_identifier_token3] = ACTIONS(2427), + [aux_sym_cmd_identifier_token4] = ACTIONS(2427), + [aux_sym_cmd_identifier_token5] = ACTIONS(2427), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1314), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2516), + [anon_sym_DOT_DOT] = ACTIONS(2429), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2518), - [anon_sym_DOT_DOT_LT] = ACTIONS(2518), - [aux_sym__val_number_decimal_token1] = ACTIONS(2520), - [aux_sym__val_number_decimal_token2] = ACTIONS(2522), - [aux_sym__val_number_decimal_token3] = ACTIONS(2524), - [aux_sym__val_number_decimal_token4] = ACTIONS(2524), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), [aux_sym__val_number_token1] = ACTIONS(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(2526), + [sym_val_date] = ACTIONS(2439), [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(2528), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(836)] = { - [aux_sym__repeat_newline] = STATE(1072), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(836), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(837)] = { - [sym_expr_unary] = STATE(1362), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1362), - [sym__expr_binary_expression] = STATE(1344), - [sym_expr_parenthesized] = STATE(962), - [sym_val_range] = STATE(1362), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(1362), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1137), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), + [836] = { + [sym_expr_unary] = STATE(1328), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1328), + [sym__expr_binary_expression] = STATE(1315), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1328), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(1328), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1130), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), [sym__val_number_decimal] = STATE(490), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(1098), - [sym__unquoted_with_expr] = STATE(1346), - [sym__unquoted_anonymous_prefix] = STATE(4915), - [sym_comment] = STATE(837), - [anon_sym_true] = ACTIONS(2510), - [anon_sym_false] = ACTIONS(2510), - [anon_sym_null] = ACTIONS(2512), - [aux_sym_cmd_identifier_token3] = ACTIONS(2514), - [aux_sym_cmd_identifier_token4] = ACTIONS(2514), - [aux_sym_cmd_identifier_token5] = ACTIONS(2514), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(1120), + [sym__unquoted_with_expr] = STATE(1313), + [sym__unquoted_anonymous_prefix] = STATE(4847), + [sym_comment] = STATE(836), + [anon_sym_true] = ACTIONS(2423), + [anon_sym_false] = ACTIONS(2423), + [anon_sym_null] = ACTIONS(2425), + [aux_sym_cmd_identifier_token3] = ACTIONS(2427), + [aux_sym_cmd_identifier_token4] = ACTIONS(2427), + [aux_sym_cmd_identifier_token5] = ACTIONS(2427), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1314), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2516), + [anon_sym_DOT_DOT] = ACTIONS(2429), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2518), - [anon_sym_DOT_DOT_LT] = ACTIONS(2518), - [aux_sym__val_number_decimal_token1] = ACTIONS(2520), - [aux_sym__val_number_decimal_token2] = ACTIONS(2522), - [aux_sym__val_number_decimal_token3] = ACTIONS(2524), - [aux_sym__val_number_decimal_token4] = ACTIONS(2524), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), [aux_sym__val_number_token1] = ACTIONS(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(2526), + [sym_val_date] = ACTIONS(2439), [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(2528), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(838)] = { - [aux_sym__repeat_newline] = STATE(1074), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(838), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(839)] = { - [sym_expr_unary] = STATE(1362), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1362), - [sym__expr_binary_expression] = STATE(1709), - [sym_expr_parenthesized] = STATE(962), - [sym_val_range] = STATE(1362), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(1362), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1524), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(1437), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), + [837] = { + [sym_comment] = STATE(837), + [anon_sym_in] = ACTIONS(1874), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_GT2] = ACTIONS(1876), + [anon_sym_DASH2] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_STAR2] = ACTIONS(1876), + [anon_sym_and2] = ACTIONS(1874), + [anon_sym_xor2] = ACTIONS(1874), + [anon_sym_or2] = ACTIONS(1874), + [anon_sym_not_DASHin2] = ACTIONS(1874), + [anon_sym_has2] = ACTIONS(1874), + [anon_sym_not_DASHhas2] = ACTIONS(1874), + [anon_sym_starts_DASHwith2] = ACTIONS(1874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1874), + [anon_sym_ends_DASHwith2] = ACTIONS(1874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1874), + [anon_sym_EQ_EQ2] = ACTIONS(1874), + [anon_sym_BANG_EQ2] = ACTIONS(1874), + [anon_sym_LT2] = ACTIONS(1876), + [anon_sym_LT_EQ2] = ACTIONS(1874), + [anon_sym_GT_EQ2] = ACTIONS(1874), + [anon_sym_EQ_TILDE2] = ACTIONS(1874), + [anon_sym_BANG_TILDE2] = ACTIONS(1874), + [anon_sym_like2] = ACTIONS(1874), + [anon_sym_not_DASHlike2] = ACTIONS(1874), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_STAR_STAR2] = ACTIONS(1874), + [anon_sym_PLUS_PLUS2] = ACTIONS(1874), + [anon_sym_SLASH2] = ACTIONS(1876), + [anon_sym_mod2] = ACTIONS(1874), + [anon_sym_SLASH_SLASH2] = ACTIONS(1874), + [anon_sym_PLUS2] = ACTIONS(1876), + [anon_sym_bit_DASHshl2] = ACTIONS(1874), + [anon_sym_bit_DASHshr2] = ACTIONS(1874), + [anon_sym_bit_DASHand2] = ACTIONS(1874), + [anon_sym_bit_DASHxor2] = ACTIONS(1874), + [anon_sym_bit_DASHor2] = ACTIONS(1874), + [aux_sym__immediate_decimal_token5] = ACTIONS(2568), + [anon_sym_err_GT] = ACTIONS(1876), + [anon_sym_out_GT] = ACTIONS(1876), + [anon_sym_e_GT] = ACTIONS(1876), + [anon_sym_o_GT] = ACTIONS(1876), + [anon_sym_err_PLUSout_GT] = ACTIONS(1876), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1876), + [anon_sym_o_PLUSe_GT] = ACTIONS(1876), + [anon_sym_e_PLUSo_GT] = ACTIONS(1876), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [sym__unquoted_pattern] = ACTIONS(1876), + [anon_sym_POUND] = ACTIONS(3), + }, + [838] = { + [sym_expr_unary] = STATE(1328), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1328), + [sym__expr_binary_expression] = STATE(1317), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1328), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(1328), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1130), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(490), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(1089), - [sym__unquoted_with_expr] = STATE(1314), - [sym__unquoted_anonymous_prefix] = STATE(4915), - [sym_comment] = STATE(839), - [anon_sym_true] = ACTIONS(2530), - [anon_sym_false] = ACTIONS(2530), - [anon_sym_null] = ACTIONS(2532), - [aux_sym_cmd_identifier_token3] = ACTIONS(2534), - [aux_sym_cmd_identifier_token4] = ACTIONS(2534), - [aux_sym_cmd_identifier_token5] = ACTIONS(2534), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(1125), + [sym__unquoted_with_expr] = STATE(1316), + [sym__unquoted_anonymous_prefix] = STATE(4847), + [sym_comment] = STATE(838), + [anon_sym_true] = ACTIONS(2423), + [anon_sym_false] = ACTIONS(2423), + [anon_sym_null] = ACTIONS(2425), + [aux_sym_cmd_identifier_token3] = ACTIONS(2427), + [aux_sym_cmd_identifier_token4] = ACTIONS(2427), + [aux_sym_cmd_identifier_token5] = ACTIONS(2427), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1314), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2536), + [anon_sym_DOT_DOT] = ACTIONS(2429), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), - [anon_sym_DOT_DOT_LT] = ACTIONS(2538), - [aux_sym__val_number_decimal_token1] = ACTIONS(2540), - [aux_sym__val_number_decimal_token2] = ACTIONS(2542), - [aux_sym__val_number_decimal_token3] = ACTIONS(2544), - [aux_sym__val_number_decimal_token4] = ACTIONS(2544), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), [aux_sym__val_number_token1] = ACTIONS(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(2546), + [sym_val_date] = ACTIONS(2439), [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(2528), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(840)] = { - [sym_expr_unary] = STATE(1362), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1362), - [sym__expr_binary_expression] = STATE(1711), - [sym_expr_parenthesized] = STATE(962), - [sym_val_range] = STATE(1362), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(1362), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1524), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(1437), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), + [839] = { + [aux_sym__repeat_newline] = STATE(1061), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(839), + [anon_sym_in] = ACTIONS(2557), + [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [840] = { + [sym_expr_unary] = STATE(1328), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1328), + [sym__expr_binary_expression] = STATE(1319), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1328), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(1328), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1130), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(490), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(1090), - [sym__unquoted_with_expr] = STATE(1321), - [sym__unquoted_anonymous_prefix] = STATE(4915), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(1127), + [sym__unquoted_with_expr] = STATE(1318), + [sym__unquoted_anonymous_prefix] = STATE(4847), [sym_comment] = STATE(840), - [anon_sym_true] = ACTIONS(2530), - [anon_sym_false] = ACTIONS(2530), - [anon_sym_null] = ACTIONS(2532), - [aux_sym_cmd_identifier_token3] = ACTIONS(2534), - [aux_sym_cmd_identifier_token4] = ACTIONS(2534), - [aux_sym_cmd_identifier_token5] = ACTIONS(2534), + [anon_sym_true] = ACTIONS(2423), + [anon_sym_false] = ACTIONS(2423), + [anon_sym_null] = ACTIONS(2425), + [aux_sym_cmd_identifier_token3] = ACTIONS(2427), + [aux_sym_cmd_identifier_token4] = ACTIONS(2427), + [aux_sym_cmd_identifier_token5] = ACTIONS(2427), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1314), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2536), + [anon_sym_DOT_DOT] = ACTIONS(2429), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), - [anon_sym_DOT_DOT_LT] = ACTIONS(2538), - [aux_sym__val_number_decimal_token1] = ACTIONS(2540), - [aux_sym__val_number_decimal_token2] = ACTIONS(2542), - [aux_sym__val_number_decimal_token3] = ACTIONS(2544), - [aux_sym__val_number_decimal_token4] = ACTIONS(2544), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), [aux_sym__val_number_token1] = ACTIONS(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(2546), + [sym_val_date] = ACTIONS(2439), [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(2528), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(841)] = { - [sym_expr_unary] = STATE(1362), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1362), - [sym__expr_binary_expression] = STATE(1712), - [sym_expr_parenthesized] = STATE(962), - [sym_val_range] = STATE(1362), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(1362), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1524), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(1437), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), - [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(1091), - [sym__unquoted_with_expr] = STATE(1326), - [sym__unquoted_anonymous_prefix] = STATE(4915), + [841] = { + [aux_sym__repeat_newline] = STATE(1043), + [sym__expr_parenthesized_immediate] = STATE(5101), [sym_comment] = STATE(841), - [anon_sym_true] = ACTIONS(2530), - [anon_sym_false] = ACTIONS(2530), - [anon_sym_null] = ACTIONS(2532), - [aux_sym_cmd_identifier_token3] = ACTIONS(2534), - [aux_sym_cmd_identifier_token4] = ACTIONS(2534), - [aux_sym_cmd_identifier_token5] = ACTIONS(2534), + [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_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_LPAREN2] = ACTIONS(1830), + [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_POUND] = ACTIONS(3), + }, + [842] = { + [sym_expr_unary] = STATE(1328), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1328), + [sym__expr_binary_expression] = STATE(1321), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1328), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(1328), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1130), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(490), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(1133), + [sym__unquoted_with_expr] = STATE(1320), + [sym__unquoted_anonymous_prefix] = STATE(4847), + [sym_comment] = STATE(842), + [anon_sym_true] = ACTIONS(2423), + [anon_sym_false] = ACTIONS(2423), + [anon_sym_null] = ACTIONS(2425), + [aux_sym_cmd_identifier_token3] = ACTIONS(2427), + [aux_sym_cmd_identifier_token4] = ACTIONS(2427), + [aux_sym_cmd_identifier_token5] = ACTIONS(2427), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1314), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2536), + [anon_sym_DOT_DOT] = ACTIONS(2429), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), - [anon_sym_DOT_DOT_LT] = ACTIONS(2538), - [aux_sym__val_number_decimal_token1] = ACTIONS(2540), - [aux_sym__val_number_decimal_token2] = ACTIONS(2542), - [aux_sym__val_number_decimal_token3] = ACTIONS(2544), - [aux_sym__val_number_decimal_token4] = ACTIONS(2544), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), [aux_sym__val_number_token1] = ACTIONS(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(2546), + [sym_val_date] = ACTIONS(2439), [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(2528), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(842)] = { - [sym_expr_unary] = STATE(1362), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1362), - [sym__expr_binary_expression] = STATE(1714), - [sym_expr_parenthesized] = STATE(962), - [sym_val_range] = STATE(1362), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(1362), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1524), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(1437), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), + [843] = { + [aux_sym__repeat_newline] = STATE(1054), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(843), + [anon_sym_in] = ACTIONS(2557), + [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [844] = { + [aux_sym__repeat_newline] = STATE(1028), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(844), + [anon_sym_in] = ACTIONS(2557), + [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [845] = { + [aux_sym__repeat_newline] = STATE(1015), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(845), + [anon_sym_in] = ACTIONS(2557), + [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [846] = { + [aux_sym__repeat_newline] = STATE(993), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(846), + [anon_sym_in] = ACTIONS(2557), + [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [847] = { + [sym_expr_unary] = STATE(1328), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1328), + [sym__expr_binary_expression] = STATE(1323), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1328), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(1328), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1130), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(490), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(1092), - [sym__unquoted_with_expr] = STATE(1331), - [sym__unquoted_anonymous_prefix] = STATE(4915), - [sym_comment] = STATE(842), - [anon_sym_true] = ACTIONS(2530), - [anon_sym_false] = ACTIONS(2530), - [anon_sym_null] = ACTIONS(2532), - [aux_sym_cmd_identifier_token3] = ACTIONS(2534), - [aux_sym_cmd_identifier_token4] = ACTIONS(2534), - [aux_sym_cmd_identifier_token5] = ACTIONS(2534), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(1135), + [sym__unquoted_with_expr] = STATE(1322), + [sym__unquoted_anonymous_prefix] = STATE(4847), + [sym_comment] = STATE(847), + [anon_sym_true] = ACTIONS(2423), + [anon_sym_false] = ACTIONS(2423), + [anon_sym_null] = ACTIONS(2425), + [aux_sym_cmd_identifier_token3] = ACTIONS(2427), + [aux_sym_cmd_identifier_token4] = ACTIONS(2427), + [aux_sym_cmd_identifier_token5] = ACTIONS(2427), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1314), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2536), + [anon_sym_DOT_DOT] = ACTIONS(2429), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), - [anon_sym_DOT_DOT_LT] = ACTIONS(2538), - [aux_sym__val_number_decimal_token1] = ACTIONS(2540), - [aux_sym__val_number_decimal_token2] = ACTIONS(2542), - [aux_sym__val_number_decimal_token3] = ACTIONS(2544), - [aux_sym__val_number_decimal_token4] = ACTIONS(2544), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), [aux_sym__val_number_token1] = ACTIONS(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(2546), + [sym_val_date] = ACTIONS(2439), [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(2528), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(843)] = { - [sym_expr_unary] = STATE(1362), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1362), - [sym__expr_binary_expression] = STATE(1706), - [sym_expr_parenthesized] = STATE(962), - [sym_val_range] = STATE(1362), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(1362), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1524), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(1437), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), + [848] = { + [aux_sym__repeat_newline] = STATE(997), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(848), + [anon_sym_in] = ACTIONS(2557), + [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [849] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2232), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(714), + [sym__unquoted_with_expr] = STATE(948), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(849), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(1961), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [850] = { + [aux_sym__repeat_newline] = STATE(1005), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(850), + [anon_sym_in] = ACTIONS(2557), + [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [851] = { + [sym_comment] = STATE(851), + [anon_sym_if] = ACTIONS(2271), + [anon_sym_in] = ACTIONS(2271), + [sym__newline] = ACTIONS(2271), + [anon_sym_SEMI] = ACTIONS(2271), + [anon_sym_PIPE] = ACTIONS(2271), + [anon_sym_err_GT_PIPE] = ACTIONS(2271), + [anon_sym_out_GT_PIPE] = ACTIONS(2271), + [anon_sym_e_GT_PIPE] = ACTIONS(2271), + [anon_sym_o_GT_PIPE] = ACTIONS(2271), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2271), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2271), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2271), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2271), + [anon_sym_RPAREN] = ACTIONS(2271), + [anon_sym_GT2] = ACTIONS(2273), + [anon_sym_DASH2] = ACTIONS(2271), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_RBRACE] = ACTIONS(2271), + [anon_sym_EQ_GT] = ACTIONS(2271), + [anon_sym_STAR2] = ACTIONS(2273), + [anon_sym_and2] = ACTIONS(2271), + [anon_sym_xor2] = ACTIONS(2271), + [anon_sym_or2] = ACTIONS(2271), + [anon_sym_not_DASHin2] = ACTIONS(2271), + [anon_sym_has2] = ACTIONS(2271), + [anon_sym_not_DASHhas2] = ACTIONS(2271), + [anon_sym_starts_DASHwith2] = ACTIONS(2271), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2271), + [anon_sym_ends_DASHwith2] = ACTIONS(2271), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2271), + [anon_sym_EQ_EQ2] = ACTIONS(2271), + [anon_sym_BANG_EQ2] = ACTIONS(2271), + [anon_sym_LT2] = ACTIONS(2273), + [anon_sym_LT_EQ2] = ACTIONS(2271), + [anon_sym_GT_EQ2] = ACTIONS(2271), + [anon_sym_EQ_TILDE2] = ACTIONS(2271), + [anon_sym_BANG_TILDE2] = ACTIONS(2271), + [anon_sym_like2] = ACTIONS(2271), + [anon_sym_not_DASHlike2] = ACTIONS(2271), + [anon_sym_STAR_STAR2] = ACTIONS(2271), + [anon_sym_PLUS_PLUS2] = ACTIONS(2271), + [anon_sym_SLASH2] = ACTIONS(2273), + [anon_sym_mod2] = ACTIONS(2271), + [anon_sym_SLASH_SLASH2] = ACTIONS(2271), + [anon_sym_PLUS2] = ACTIONS(2273), + [anon_sym_bit_DASHshl2] = ACTIONS(2271), + [anon_sym_bit_DASHshr2] = ACTIONS(2271), + [anon_sym_bit_DASHand2] = ACTIONS(2271), + [anon_sym_bit_DASHxor2] = ACTIONS(2271), + [anon_sym_bit_DASHor2] = ACTIONS(2271), + [anon_sym_err_GT] = ACTIONS(2273), + [anon_sym_out_GT] = ACTIONS(2273), + [anon_sym_e_GT] = ACTIONS(2273), + [anon_sym_o_GT] = ACTIONS(2273), + [anon_sym_err_PLUSout_GT] = ACTIONS(2273), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2273), + [anon_sym_o_PLUSe_GT] = ACTIONS(2273), + [anon_sym_e_PLUSo_GT] = ACTIONS(2273), + [anon_sym_err_GT_GT] = ACTIONS(2271), + [anon_sym_out_GT_GT] = ACTIONS(2271), + [anon_sym_e_GT_GT] = ACTIONS(2271), + [anon_sym_o_GT_GT] = ACTIONS(2271), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2271), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2271), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2271), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2271), + [anon_sym_POUND] = ACTIONS(3), + }, + [852] = { + [aux_sym__repeat_newline] = STATE(1012), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(852), + [anon_sym_in] = ACTIONS(2557), + [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [853] = { + [sym_cell_path] = STATE(1334), + [sym_path] = STATE(712), + [sym_comment] = STATE(853), + [aux_sym__where_predicate_lhs_repeat1] = STATE(580), + [ts_builtin_sym_end] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(1912), + [sym__newline] = ACTIONS(1912), + [anon_sym_SEMI] = ACTIONS(1912), + [anon_sym_PIPE] = ACTIONS(1912), + [anon_sym_err_GT_PIPE] = ACTIONS(1912), + [anon_sym_out_GT_PIPE] = ACTIONS(1912), + [anon_sym_e_GT_PIPE] = ACTIONS(1912), + [anon_sym_o_GT_PIPE] = ACTIONS(1912), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1912), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1912), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1912), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1912), + [anon_sym_GT2] = ACTIONS(1915), + [anon_sym_DASH2] = ACTIONS(1912), + [anon_sym_STAR2] = ACTIONS(1915), + [anon_sym_and2] = ACTIONS(1912), + [anon_sym_xor2] = ACTIONS(1912), + [anon_sym_or2] = ACTIONS(1912), + [anon_sym_not_DASHin2] = ACTIONS(1912), + [anon_sym_has2] = ACTIONS(1912), + [anon_sym_not_DASHhas2] = ACTIONS(1912), + [anon_sym_starts_DASHwith2] = ACTIONS(1912), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1912), + [anon_sym_ends_DASHwith2] = ACTIONS(1912), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1912), + [anon_sym_EQ_EQ2] = ACTIONS(1912), + [anon_sym_BANG_EQ2] = ACTIONS(1912), + [anon_sym_LT2] = ACTIONS(1915), + [anon_sym_LT_EQ2] = ACTIONS(1912), + [anon_sym_GT_EQ2] = ACTIONS(1912), + [anon_sym_EQ_TILDE2] = ACTIONS(1912), + [anon_sym_BANG_TILDE2] = ACTIONS(1912), + [anon_sym_like2] = ACTIONS(1912), + [anon_sym_not_DASHlike2] = ACTIONS(1912), + [anon_sym_STAR_STAR2] = ACTIONS(1912), + [anon_sym_PLUS_PLUS2] = ACTIONS(1912), + [anon_sym_SLASH2] = ACTIONS(1915), + [anon_sym_mod2] = ACTIONS(1912), + [anon_sym_SLASH_SLASH2] = ACTIONS(1912), + [anon_sym_PLUS2] = ACTIONS(1915), + [anon_sym_bit_DASHshl2] = ACTIONS(1912), + [anon_sym_bit_DASHshr2] = ACTIONS(1912), + [anon_sym_bit_DASHand2] = ACTIONS(1912), + [anon_sym_bit_DASHxor2] = ACTIONS(1912), + [anon_sym_bit_DASHor2] = ACTIONS(1912), + [anon_sym_DOT2] = ACTIONS(2417), + [anon_sym_err_GT] = ACTIONS(1915), + [anon_sym_out_GT] = ACTIONS(1915), + [anon_sym_e_GT] = ACTIONS(1915), + [anon_sym_o_GT] = ACTIONS(1915), + [anon_sym_err_PLUSout_GT] = ACTIONS(1915), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1915), + [anon_sym_o_PLUSe_GT] = ACTIONS(1915), + [anon_sym_e_PLUSo_GT] = ACTIONS(1915), + [anon_sym_err_GT_GT] = ACTIONS(1912), + [anon_sym_out_GT_GT] = ACTIONS(1912), + [anon_sym_e_GT_GT] = ACTIONS(1912), + [anon_sym_o_GT_GT] = ACTIONS(1912), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1912), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1912), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1912), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + }, + [854] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1694), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(714), + [sym__unquoted_with_expr] = STATE(948), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(854), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2007), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2017), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [855] = { + [sym_expr_unary] = STATE(1328), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1328), + [sym__expr_binary_expression] = STATE(1709), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1328), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(1328), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1539), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(1441), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(1096), - [sym__unquoted_with_expr] = STATE(1342), - [sym__unquoted_anonymous_prefix] = STATE(4915), - [sym_comment] = STATE(843), - [anon_sym_true] = ACTIONS(2530), - [anon_sym_false] = ACTIONS(2530), - [anon_sym_null] = ACTIONS(2532), - [aux_sym_cmd_identifier_token3] = ACTIONS(2534), - [aux_sym_cmd_identifier_token4] = ACTIONS(2534), - [aux_sym_cmd_identifier_token5] = ACTIONS(2534), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(1147), + [sym__unquoted_with_expr] = STATE(1326), + [sym__unquoted_anonymous_prefix] = STATE(4847), + [sym_comment] = STATE(855), + [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(1322), + [anon_sym_DOLLAR] = ACTIONS(1314), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2536), + [anon_sym_DOT_DOT] = ACTIONS(2391), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), - [anon_sym_DOT_DOT_LT] = ACTIONS(2538), - [aux_sym__val_number_decimal_token1] = ACTIONS(2540), - [aux_sym__val_number_decimal_token2] = ACTIONS(2542), - [aux_sym__val_number_decimal_token3] = ACTIONS(2544), - [aux_sym__val_number_decimal_token4] = ACTIONS(2544), + [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(2546), + [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(2528), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(844)] = { - [sym_expr_unary] = STATE(1362), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1362), - [sym__expr_binary_expression] = STATE(1716), - [sym_expr_parenthesized] = STATE(962), - [sym_val_range] = STATE(1362), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(1362), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1524), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(1437), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), + [856] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1692), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(707), + [sym__unquoted_with_expr] = STATE(947), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(856), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2007), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2017), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [857] = { + [aux_sym__repeat_newline] = STATE(1017), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(857), + [anon_sym_in] = ACTIONS(2557), + [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [858] = { + [sym_expr_unary] = STATE(1328), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1328), + [sym__expr_binary_expression] = STATE(1325), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1328), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(1328), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1130), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(490), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(1098), - [sym__unquoted_with_expr] = STATE(1346), - [sym__unquoted_anonymous_prefix] = STATE(4915), - [sym_comment] = STATE(844), - [anon_sym_true] = ACTIONS(2530), - [anon_sym_false] = ACTIONS(2530), - [anon_sym_null] = ACTIONS(2532), - [aux_sym_cmd_identifier_token3] = ACTIONS(2534), - [aux_sym_cmd_identifier_token4] = ACTIONS(2534), - [aux_sym_cmd_identifier_token5] = ACTIONS(2534), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(1138), + [sym__unquoted_with_expr] = STATE(1324), + [sym__unquoted_anonymous_prefix] = STATE(4847), + [sym_comment] = STATE(858), + [anon_sym_true] = ACTIONS(2423), + [anon_sym_false] = ACTIONS(2423), + [anon_sym_null] = ACTIONS(2425), + [aux_sym_cmd_identifier_token3] = ACTIONS(2427), + [aux_sym_cmd_identifier_token4] = ACTIONS(2427), + [aux_sym_cmd_identifier_token5] = ACTIONS(2427), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1314), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2536), + [anon_sym_DOT_DOT] = ACTIONS(2429), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), - [anon_sym_DOT_DOT_LT] = ACTIONS(2538), - [aux_sym__val_number_decimal_token1] = ACTIONS(2540), - [aux_sym__val_number_decimal_token2] = ACTIONS(2542), - [aux_sym__val_number_decimal_token3] = ACTIONS(2544), - [aux_sym__val_number_decimal_token4] = ACTIONS(2544), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), [aux_sym__val_number_token1] = ACTIONS(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(2546), + [sym_val_date] = ACTIONS(2439), [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(2528), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(845)] = { - [sym_expr_unary] = STATE(1362), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1362), - [sym__expr_binary_expression] = STATE(1717), - [sym_expr_parenthesized] = STATE(962), - [sym_val_range] = STATE(1362), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(1362), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1524), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(1437), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), + [859] = { + [sym_expr_unary] = STATE(1328), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1328), + [sym__expr_binary_expression] = STATE(1713), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1328), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(1328), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1539), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(1441), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(1099), - [sym__unquoted_with_expr] = STATE(1348), - [sym__unquoted_anonymous_prefix] = STATE(4915), - [sym_comment] = STATE(845), - [anon_sym_true] = ACTIONS(2530), - [anon_sym_false] = ACTIONS(2530), - [anon_sym_null] = ACTIONS(2532), - [aux_sym_cmd_identifier_token3] = ACTIONS(2534), - [aux_sym_cmd_identifier_token4] = ACTIONS(2534), - [aux_sym_cmd_identifier_token5] = ACTIONS(2534), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(1138), + [sym__unquoted_with_expr] = STATE(1324), + [sym__unquoted_anonymous_prefix] = STATE(4847), + [sym_comment] = STATE(859), + [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(1322), + [anon_sym_DOLLAR] = ACTIONS(1314), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2536), + [anon_sym_DOT_DOT] = ACTIONS(2391), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), - [anon_sym_DOT_DOT_LT] = ACTIONS(2538), - [aux_sym__val_number_decimal_token1] = ACTIONS(2540), - [aux_sym__val_number_decimal_token2] = ACTIONS(2542), - [aux_sym__val_number_decimal_token3] = ACTIONS(2544), - [aux_sym__val_number_decimal_token4] = ACTIONS(2544), + [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(2546), + [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(2528), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(846)] = { - [sym_expr_unary] = STATE(1362), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1362), - [sym__expr_binary_expression] = STATE(1720), - [sym_expr_parenthesized] = STATE(962), - [sym_val_range] = STATE(1362), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(1362), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1524), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(1437), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), - [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(1101), - [sym__unquoted_with_expr] = STATE(1352), - [sym__unquoted_anonymous_prefix] = STATE(4915), - [sym_comment] = STATE(846), - [anon_sym_true] = ACTIONS(2530), - [anon_sym_false] = ACTIONS(2530), - [anon_sym_null] = ACTIONS(2532), - [aux_sym_cmd_identifier_token3] = ACTIONS(2534), - [aux_sym_cmd_identifier_token4] = ACTIONS(2534), - [aux_sym_cmd_identifier_token5] = ACTIONS(2534), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1322), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2536), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), - [anon_sym_DOT_DOT_LT] = ACTIONS(2538), - [aux_sym__val_number_decimal_token1] = ACTIONS(2540), - [aux_sym__val_number_decimal_token2] = ACTIONS(2542), - [aux_sym__val_number_decimal_token3] = ACTIONS(2544), - [aux_sym__val_number_decimal_token4] = ACTIONS(2544), - [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(2546), - [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(2528), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(107), - }, - [STATE(847)] = { - [sym_expr_unary] = STATE(1362), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1362), - [sym__expr_binary_expression] = STATE(1356), - [sym_expr_parenthesized] = STATE(962), - [sym_val_range] = STATE(1362), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(1362), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1524), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(1437), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), - [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(1102), - [sym__unquoted_with_expr] = STATE(1357), - [sym__unquoted_anonymous_prefix] = STATE(4915), - [sym_comment] = STATE(847), - [anon_sym_true] = ACTIONS(2530), - [anon_sym_false] = ACTIONS(2530), - [anon_sym_null] = ACTIONS(2532), - [aux_sym_cmd_identifier_token3] = ACTIONS(2534), - [aux_sym_cmd_identifier_token4] = ACTIONS(2534), - [aux_sym_cmd_identifier_token5] = ACTIONS(2534), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1322), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2536), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), - [anon_sym_DOT_DOT_LT] = ACTIONS(2538), - [aux_sym__val_number_decimal_token1] = ACTIONS(2540), - [aux_sym__val_number_decimal_token2] = ACTIONS(2542), - [aux_sym__val_number_decimal_token3] = ACTIONS(2544), - [aux_sym__val_number_decimal_token4] = ACTIONS(2544), - [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(2546), - [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(2528), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(107), - }, - [STATE(848)] = { - [sym_expr_unary] = STATE(1362), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1362), - [sym__expr_binary_expression] = STATE(1721), - [sym_expr_parenthesized] = STATE(962), - [sym_val_range] = STATE(1362), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(1362), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1524), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(1437), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), - [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(1104), - [sym__unquoted_with_expr] = STATE(1367), - [sym__unquoted_anonymous_prefix] = STATE(4915), - [sym_comment] = STATE(848), - [anon_sym_true] = ACTIONS(2530), - [anon_sym_false] = ACTIONS(2530), - [anon_sym_null] = ACTIONS(2532), - [aux_sym_cmd_identifier_token3] = ACTIONS(2534), - [aux_sym_cmd_identifier_token4] = ACTIONS(2534), - [aux_sym_cmd_identifier_token5] = ACTIONS(2534), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1322), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2536), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), - [anon_sym_DOT_DOT_LT] = ACTIONS(2538), - [aux_sym__val_number_decimal_token1] = ACTIONS(2540), - [aux_sym__val_number_decimal_token2] = ACTIONS(2542), - [aux_sym__val_number_decimal_token3] = ACTIONS(2544), - [aux_sym__val_number_decimal_token4] = ACTIONS(2544), - [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(2546), - [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(2528), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(107), - }, - [STATE(849)] = { - [sym_expr_unary] = STATE(1362), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1362), - [sym__expr_binary_expression] = STATE(1722), - [sym_expr_parenthesized] = STATE(962), - [sym_val_range] = STATE(1362), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(1362), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1524), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(1437), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), - [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(1106), - [sym__unquoted_with_expr] = STATE(1310), - [sym__unquoted_anonymous_prefix] = STATE(4915), - [sym_comment] = STATE(849), - [anon_sym_true] = ACTIONS(2530), - [anon_sym_false] = ACTIONS(2530), - [anon_sym_null] = ACTIONS(2532), - [aux_sym_cmd_identifier_token3] = ACTIONS(2534), - [aux_sym_cmd_identifier_token4] = ACTIONS(2534), - [aux_sym_cmd_identifier_token5] = ACTIONS(2534), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1322), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2536), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), - [anon_sym_DOT_DOT_LT] = ACTIONS(2538), - [aux_sym__val_number_decimal_token1] = ACTIONS(2540), - [aux_sym__val_number_decimal_token2] = ACTIONS(2542), - [aux_sym__val_number_decimal_token3] = ACTIONS(2544), - [aux_sym__val_number_decimal_token4] = ACTIONS(2544), - [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(2546), - [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(2528), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(107), - }, - [STATE(850)] = { - [sym_expr_unary] = STATE(1362), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1362), - [sym__expr_binary_expression] = STATE(1723), - [sym_expr_parenthesized] = STATE(962), - [sym_val_range] = STATE(1362), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(1362), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1524), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(1437), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), - [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(1118), - [sym__unquoted_with_expr] = STATE(1312), - [sym__unquoted_anonymous_prefix] = STATE(4915), - [sym_comment] = STATE(850), - [anon_sym_true] = ACTIONS(2530), - [anon_sym_false] = ACTIONS(2530), - [anon_sym_null] = ACTIONS(2532), - [aux_sym_cmd_identifier_token3] = ACTIONS(2534), - [aux_sym_cmd_identifier_token4] = ACTIONS(2534), - [aux_sym_cmd_identifier_token5] = ACTIONS(2534), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1322), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2536), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), - [anon_sym_DOT_DOT_LT] = ACTIONS(2538), - [aux_sym__val_number_decimal_token1] = ACTIONS(2540), - [aux_sym__val_number_decimal_token2] = ACTIONS(2542), - [aux_sym__val_number_decimal_token3] = ACTIONS(2544), - [aux_sym__val_number_decimal_token4] = ACTIONS(2544), - [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(2546), - [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(2528), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(107), - }, - [STATE(851)] = { - [sym_expr_unary] = STATE(1362), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1362), - [sym__expr_binary_expression] = STATE(1724), - [sym_expr_parenthesized] = STATE(962), - [sym_val_range] = STATE(1362), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(1362), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1524), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(1437), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), - [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(1119), - [sym__unquoted_with_expr] = STATE(1315), - [sym__unquoted_anonymous_prefix] = STATE(4915), - [sym_comment] = STATE(851), - [anon_sym_true] = ACTIONS(2530), - [anon_sym_false] = ACTIONS(2530), - [anon_sym_null] = ACTIONS(2532), - [aux_sym_cmd_identifier_token3] = ACTIONS(2534), - [aux_sym_cmd_identifier_token4] = ACTIONS(2534), - [aux_sym_cmd_identifier_token5] = ACTIONS(2534), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1322), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2536), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), - [anon_sym_DOT_DOT_LT] = ACTIONS(2538), - [aux_sym__val_number_decimal_token1] = ACTIONS(2540), - [aux_sym__val_number_decimal_token2] = ACTIONS(2542), - [aux_sym__val_number_decimal_token3] = ACTIONS(2544), - [aux_sym__val_number_decimal_token4] = ACTIONS(2544), - [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(2546), - [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(2528), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(107), - }, - [STATE(852)] = { - [sym_expr_unary] = STATE(1362), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1362), - [sym__expr_binary_expression] = STATE(1347), - [sym_expr_parenthesized] = STATE(962), - [sym_val_range] = STATE(1362), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(1362), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1137), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(490), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), - [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(1099), - [sym__unquoted_with_expr] = STATE(1348), - [sym__unquoted_anonymous_prefix] = STATE(4915), - [sym_comment] = STATE(852), - [anon_sym_true] = ACTIONS(2510), - [anon_sym_false] = ACTIONS(2510), - [anon_sym_null] = ACTIONS(2512), - [aux_sym_cmd_identifier_token3] = ACTIONS(2514), - [aux_sym_cmd_identifier_token4] = ACTIONS(2514), - [aux_sym_cmd_identifier_token5] = ACTIONS(2514), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1322), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2516), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2518), - [anon_sym_DOT_DOT_LT] = ACTIONS(2518), - [aux_sym__val_number_decimal_token1] = ACTIONS(2520), - [aux_sym__val_number_decimal_token2] = ACTIONS(2522), - [aux_sym__val_number_decimal_token3] = ACTIONS(2524), - [aux_sym__val_number_decimal_token4] = ACTIONS(2524), - [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(2526), - [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(2528), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(107), - }, - [STATE(853)] = { - [sym_expr_unary] = STATE(1362), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1362), - [sym__expr_binary_expression] = STATE(1349), - [sym_expr_parenthesized] = STATE(962), - [sym_val_range] = STATE(1362), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(1362), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1137), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(490), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), - [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(1101), - [sym__unquoted_with_expr] = STATE(1352), - [sym__unquoted_anonymous_prefix] = STATE(4915), - [sym_comment] = STATE(853), - [anon_sym_true] = ACTIONS(2510), - [anon_sym_false] = ACTIONS(2510), - [anon_sym_null] = ACTIONS(2512), - [aux_sym_cmd_identifier_token3] = ACTIONS(2514), - [aux_sym_cmd_identifier_token4] = ACTIONS(2514), - [aux_sym_cmd_identifier_token5] = ACTIONS(2514), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1322), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2516), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2518), - [anon_sym_DOT_DOT_LT] = ACTIONS(2518), - [aux_sym__val_number_decimal_token1] = ACTIONS(2520), - [aux_sym__val_number_decimal_token2] = ACTIONS(2522), - [aux_sym__val_number_decimal_token3] = ACTIONS(2524), - [aux_sym__val_number_decimal_token4] = ACTIONS(2524), - [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(2526), - [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(2528), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(107), - }, - [STATE(854)] = { - [sym_expr_unary] = STATE(1362), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1362), - [sym__expr_binary_expression] = STATE(1356), - [sym_expr_parenthesized] = STATE(962), - [sym_val_range] = STATE(1362), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(1362), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1137), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(490), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), - [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(1102), - [sym__unquoted_with_expr] = STATE(1357), - [sym__unquoted_anonymous_prefix] = STATE(4915), - [sym_comment] = STATE(854), - [anon_sym_true] = ACTIONS(2510), - [anon_sym_false] = ACTIONS(2510), - [anon_sym_null] = ACTIONS(2512), - [aux_sym_cmd_identifier_token3] = ACTIONS(2514), - [aux_sym_cmd_identifier_token4] = ACTIONS(2514), - [aux_sym_cmd_identifier_token5] = ACTIONS(2514), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1322), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2516), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2518), - [anon_sym_DOT_DOT_LT] = ACTIONS(2518), - [aux_sym__val_number_decimal_token1] = ACTIONS(2520), - [aux_sym__val_number_decimal_token2] = ACTIONS(2522), - [aux_sym__val_number_decimal_token3] = ACTIONS(2524), - [aux_sym__val_number_decimal_token4] = ACTIONS(2524), - [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(2526), - [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(2528), + [860] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1690), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(724), + [sym__unquoted_with_expr] = STATE(971), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(860), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(2007), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2017), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(107), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(855)] = { - [sym_expr_unary] = STATE(1362), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1362), - [sym__expr_binary_expression] = STATE(1360), - [sym_expr_parenthesized] = STATE(962), - [sym_val_range] = STATE(1362), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(1362), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1137), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), + [861] = { + [aux_sym__repeat_newline] = STATE(1024), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(861), + [anon_sym_in] = ACTIONS(2557), + [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [862] = { + [aux_sym__repeat_newline] = STATE(1030), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(862), + [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_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(1830), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [863] = { + [aux_sym__repeat_newline] = STATE(1032), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(863), + [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_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(1830), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [864] = { + [sym_expr_unary] = STATE(1328), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1328), + [sym__expr_binary_expression] = STATE(1327), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1328), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(1328), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1130), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), [sym__val_number_decimal] = STATE(490), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(1104), - [sym__unquoted_with_expr] = STATE(1367), - [sym__unquoted_anonymous_prefix] = STATE(4915), - [sym_comment] = STATE(855), - [anon_sym_true] = ACTIONS(2510), - [anon_sym_false] = ACTIONS(2510), - [anon_sym_null] = ACTIONS(2512), - [aux_sym_cmd_identifier_token3] = ACTIONS(2514), - [aux_sym_cmd_identifier_token4] = ACTIONS(2514), - [aux_sym_cmd_identifier_token5] = ACTIONS(2514), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(1147), + [sym__unquoted_with_expr] = STATE(1326), + [sym__unquoted_anonymous_prefix] = STATE(4847), + [sym_comment] = STATE(864), + [anon_sym_true] = ACTIONS(2423), + [anon_sym_false] = ACTIONS(2423), + [anon_sym_null] = ACTIONS(2425), + [aux_sym_cmd_identifier_token3] = ACTIONS(2427), + [aux_sym_cmd_identifier_token4] = ACTIONS(2427), + [aux_sym_cmd_identifier_token5] = ACTIONS(2427), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1314), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2516), + [anon_sym_DOT_DOT] = ACTIONS(2429), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2518), - [anon_sym_DOT_DOT_LT] = ACTIONS(2518), - [aux_sym__val_number_decimal_token1] = ACTIONS(2520), - [aux_sym__val_number_decimal_token2] = ACTIONS(2522), - [aux_sym__val_number_decimal_token3] = ACTIONS(2524), - [aux_sym__val_number_decimal_token4] = ACTIONS(2524), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), [aux_sym__val_number_token1] = ACTIONS(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(2526), + [sym_val_date] = ACTIONS(2439), [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(2528), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(856)] = { - [sym_expr_unary] = STATE(1362), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1362), - [sym__expr_binary_expression] = STATE(1368), - [sym_expr_parenthesized] = STATE(962), - [sym_val_range] = STATE(1362), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(1362), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1137), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(490), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), + [865] = { + [sym_expr_unary] = STATE(1328), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1328), + [sym__expr_binary_expression] = STATE(1720), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1328), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(1328), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1539), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(1441), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(1106), - [sym__unquoted_with_expr] = STATE(1310), - [sym__unquoted_anonymous_prefix] = STATE(4915), - [sym_comment] = STATE(856), - [anon_sym_true] = ACTIONS(2510), - [anon_sym_false] = ACTIONS(2510), - [anon_sym_null] = ACTIONS(2512), - [aux_sym_cmd_identifier_token3] = ACTIONS(2514), - [aux_sym_cmd_identifier_token4] = ACTIONS(2514), - [aux_sym_cmd_identifier_token5] = ACTIONS(2514), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(1135), + [sym__unquoted_with_expr] = STATE(1322), + [sym__unquoted_anonymous_prefix] = STATE(4847), + [sym_comment] = STATE(865), + [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(1322), + [anon_sym_DOLLAR] = ACTIONS(1314), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2516), + [anon_sym_DOT_DOT] = ACTIONS(2391), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2518), - [anon_sym_DOT_DOT_LT] = ACTIONS(2518), - [aux_sym__val_number_decimal_token1] = ACTIONS(2520), - [aux_sym__val_number_decimal_token2] = ACTIONS(2522), - [aux_sym__val_number_decimal_token3] = ACTIONS(2524), - [aux_sym__val_number_decimal_token4] = ACTIONS(2524), + [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(2526), + [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(2528), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(857)] = { - [sym_expr_unary] = STATE(1362), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1362), - [sym__expr_binary_expression] = STATE(1311), - [sym_expr_parenthesized] = STATE(962), - [sym_val_range] = STATE(1362), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(1362), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1137), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(490), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), + [866] = { + [sym_expr_unary] = STATE(1328), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1328), + [sym__expr_binary_expression] = STATE(1728), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1328), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(1328), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1539), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(1441), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(1118), - [sym__unquoted_with_expr] = STATE(1312), - [sym__unquoted_anonymous_prefix] = STATE(4915), - [sym_comment] = STATE(857), - [anon_sym_true] = ACTIONS(2510), - [anon_sym_false] = ACTIONS(2510), - [anon_sym_null] = ACTIONS(2512), - [aux_sym_cmd_identifier_token3] = ACTIONS(2514), - [aux_sym_cmd_identifier_token4] = ACTIONS(2514), - [aux_sym_cmd_identifier_token5] = ACTIONS(2514), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(1133), + [sym__unquoted_with_expr] = STATE(1320), + [sym__unquoted_anonymous_prefix] = STATE(4847), + [sym_comment] = STATE(866), + [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(1322), + [anon_sym_DOLLAR] = ACTIONS(1314), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2516), + [anon_sym_DOT_DOT] = ACTIONS(2391), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2518), - [anon_sym_DOT_DOT_LT] = ACTIONS(2518), - [aux_sym__val_number_decimal_token1] = ACTIONS(2520), - [aux_sym__val_number_decimal_token2] = ACTIONS(2522), - [aux_sym__val_number_decimal_token3] = ACTIONS(2524), - [aux_sym__val_number_decimal_token4] = ACTIONS(2524), + [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(2526), + [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(2528), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(858)] = { - [aux_sym__repeat_newline] = STATE(1075), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(858), - [anon_sym_in] = ACTIONS(2548), - [sym__newline] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_GT2] = ACTIONS(2550), - [anon_sym_DASH2] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_STAR2] = ACTIONS(2550), - [anon_sym_and2] = ACTIONS(2548), - [anon_sym_xor2] = ACTIONS(2548), - [anon_sym_or2] = ACTIONS(2548), - [anon_sym_not_DASHin2] = ACTIONS(2548), - [anon_sym_has2] = ACTIONS(2548), - [anon_sym_not_DASHhas2] = ACTIONS(2548), - [anon_sym_starts_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), - [anon_sym_ends_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), - [anon_sym_EQ_EQ2] = ACTIONS(2548), - [anon_sym_BANG_EQ2] = ACTIONS(2548), - [anon_sym_LT2] = ACTIONS(2550), - [anon_sym_LT_EQ2] = ACTIONS(2548), - [anon_sym_GT_EQ2] = ACTIONS(2548), - [anon_sym_EQ_TILDE2] = ACTIONS(2548), - [anon_sym_BANG_TILDE2] = ACTIONS(2548), - [anon_sym_like2] = ACTIONS(2548), - [anon_sym_not_DASHlike2] = ACTIONS(2548), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2548), - [anon_sym_PLUS_PLUS2] = ACTIONS(2548), - [anon_sym_SLASH2] = ACTIONS(2550), - [anon_sym_mod2] = ACTIONS(2548), - [anon_sym_SLASH_SLASH2] = ACTIONS(2548), - [anon_sym_PLUS2] = ACTIONS(2550), - [anon_sym_bit_DASHshl2] = ACTIONS(2548), - [anon_sym_bit_DASHshr2] = ACTIONS(2548), - [anon_sym_bit_DASHand2] = ACTIONS(2548), - [anon_sym_bit_DASHxor2] = ACTIONS(2548), - [anon_sym_bit_DASHor2] = ACTIONS(2548), - [anon_sym_err_GT] = ACTIONS(2550), - [anon_sym_out_GT] = ACTIONS(2550), - [anon_sym_e_GT] = ACTIONS(2550), - [anon_sym_o_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT] = ACTIONS(2550), - [anon_sym_err_GT_GT] = ACTIONS(2548), - [anon_sym_out_GT_GT] = ACTIONS(2548), - [anon_sym_e_GT_GT] = ACTIONS(2548), - [anon_sym_o_GT_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(859)] = { - [aux_sym__repeat_newline] = STATE(1076), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(859), - [anon_sym_in] = ACTIONS(2548), - [sym__newline] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_GT2] = ACTIONS(2550), - [anon_sym_DASH2] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_STAR2] = ACTIONS(2550), - [anon_sym_and2] = ACTIONS(2548), - [anon_sym_xor2] = ACTIONS(2548), - [anon_sym_or2] = ACTIONS(2548), - [anon_sym_not_DASHin2] = ACTIONS(2548), - [anon_sym_has2] = ACTIONS(2548), - [anon_sym_not_DASHhas2] = ACTIONS(2548), - [anon_sym_starts_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), - [anon_sym_ends_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), - [anon_sym_EQ_EQ2] = ACTIONS(2548), - [anon_sym_BANG_EQ2] = ACTIONS(2548), - [anon_sym_LT2] = ACTIONS(2550), - [anon_sym_LT_EQ2] = ACTIONS(2548), - [anon_sym_GT_EQ2] = ACTIONS(2548), - [anon_sym_EQ_TILDE2] = ACTIONS(2548), - [anon_sym_BANG_TILDE2] = ACTIONS(2548), - [anon_sym_like2] = ACTIONS(2548), - [anon_sym_not_DASHlike2] = ACTIONS(2548), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2548), - [anon_sym_PLUS_PLUS2] = ACTIONS(2548), - [anon_sym_SLASH2] = ACTIONS(2550), - [anon_sym_mod2] = ACTIONS(2548), - [anon_sym_SLASH_SLASH2] = ACTIONS(2548), - [anon_sym_PLUS2] = ACTIONS(2550), - [anon_sym_bit_DASHshl2] = ACTIONS(2548), - [anon_sym_bit_DASHshr2] = ACTIONS(2548), - [anon_sym_bit_DASHand2] = ACTIONS(2548), - [anon_sym_bit_DASHxor2] = ACTIONS(2548), - [anon_sym_bit_DASHor2] = ACTIONS(2548), - [anon_sym_err_GT] = ACTIONS(2550), - [anon_sym_out_GT] = ACTIONS(2550), - [anon_sym_e_GT] = ACTIONS(2550), - [anon_sym_o_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT] = ACTIONS(2550), - [anon_sym_err_GT_GT] = ACTIONS(2548), - [anon_sym_out_GT_GT] = ACTIONS(2548), - [anon_sym_e_GT_GT] = ACTIONS(2548), - [anon_sym_o_GT_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(860)] = { - [aux_sym__repeat_newline] = STATE(1077), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(860), - [anon_sym_in] = ACTIONS(2548), - [sym__newline] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_GT2] = ACTIONS(2550), - [anon_sym_DASH2] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_STAR2] = ACTIONS(2550), - [anon_sym_and2] = ACTIONS(2548), - [anon_sym_xor2] = ACTIONS(2548), - [anon_sym_or2] = ACTIONS(2548), - [anon_sym_not_DASHin2] = ACTIONS(2548), - [anon_sym_has2] = ACTIONS(2548), - [anon_sym_not_DASHhas2] = ACTIONS(2548), - [anon_sym_starts_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), - [anon_sym_ends_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), - [anon_sym_EQ_EQ2] = ACTIONS(2548), - [anon_sym_BANG_EQ2] = ACTIONS(2548), - [anon_sym_LT2] = ACTIONS(2550), - [anon_sym_LT_EQ2] = ACTIONS(2548), - [anon_sym_GT_EQ2] = ACTIONS(2548), - [anon_sym_EQ_TILDE2] = ACTIONS(2548), - [anon_sym_BANG_TILDE2] = ACTIONS(2548), - [anon_sym_like2] = ACTIONS(2548), - [anon_sym_not_DASHlike2] = ACTIONS(2548), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2548), - [anon_sym_PLUS_PLUS2] = ACTIONS(2548), - [anon_sym_SLASH2] = ACTIONS(2550), - [anon_sym_mod2] = ACTIONS(2548), - [anon_sym_SLASH_SLASH2] = ACTIONS(2548), - [anon_sym_PLUS2] = ACTIONS(2550), - [anon_sym_bit_DASHshl2] = ACTIONS(2548), - [anon_sym_bit_DASHshr2] = ACTIONS(2548), - [anon_sym_bit_DASHand2] = ACTIONS(2548), - [anon_sym_bit_DASHxor2] = ACTIONS(2548), - [anon_sym_bit_DASHor2] = ACTIONS(2548), - [anon_sym_err_GT] = ACTIONS(2550), - [anon_sym_out_GT] = ACTIONS(2550), - [anon_sym_e_GT] = ACTIONS(2550), - [anon_sym_o_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT] = ACTIONS(2550), - [anon_sym_err_GT_GT] = ACTIONS(2548), - [anon_sym_out_GT_GT] = ACTIONS(2548), - [anon_sym_e_GT_GT] = ACTIONS(2548), - [anon_sym_o_GT_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(861)] = { - [aux_sym__repeat_newline] = STATE(1151), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(861), - [anon_sym_in] = ACTIONS(2548), - [sym__newline] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_GT2] = ACTIONS(2550), - [anon_sym_DASH2] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_STAR2] = ACTIONS(2550), - [anon_sym_and2] = ACTIONS(2548), - [anon_sym_xor2] = ACTIONS(2548), - [anon_sym_or2] = ACTIONS(2548), - [anon_sym_not_DASHin2] = ACTIONS(2548), - [anon_sym_has2] = ACTIONS(2548), - [anon_sym_not_DASHhas2] = ACTIONS(2548), - [anon_sym_starts_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), - [anon_sym_ends_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), - [anon_sym_EQ_EQ2] = ACTIONS(2548), - [anon_sym_BANG_EQ2] = ACTIONS(2548), - [anon_sym_LT2] = ACTIONS(2550), - [anon_sym_LT_EQ2] = ACTIONS(2548), - [anon_sym_GT_EQ2] = ACTIONS(2548), - [anon_sym_EQ_TILDE2] = ACTIONS(2548), - [anon_sym_BANG_TILDE2] = ACTIONS(2548), - [anon_sym_like2] = ACTIONS(2548), - [anon_sym_not_DASHlike2] = ACTIONS(2548), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2548), - [anon_sym_PLUS_PLUS2] = ACTIONS(2548), - [anon_sym_SLASH2] = ACTIONS(2550), - [anon_sym_mod2] = ACTIONS(2548), - [anon_sym_SLASH_SLASH2] = ACTIONS(2548), - [anon_sym_PLUS2] = ACTIONS(2550), - [anon_sym_bit_DASHshl2] = ACTIONS(2548), - [anon_sym_bit_DASHshr2] = ACTIONS(2548), - [anon_sym_bit_DASHand2] = ACTIONS(2548), - [anon_sym_bit_DASHxor2] = ACTIONS(2548), - [anon_sym_bit_DASHor2] = ACTIONS(2548), - [anon_sym_err_GT] = ACTIONS(2550), - [anon_sym_out_GT] = ACTIONS(2550), - [anon_sym_e_GT] = ACTIONS(2550), - [anon_sym_o_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT] = ACTIONS(2550), - [anon_sym_err_GT_GT] = ACTIONS(2548), - [anon_sym_out_GT_GT] = ACTIONS(2548), - [anon_sym_e_GT_GT] = ACTIONS(2548), - [anon_sym_o_GT_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(862)] = { - [aux_sym__repeat_newline] = STATE(1079), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(862), - [anon_sym_in] = ACTIONS(2548), - [sym__newline] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_GT2] = ACTIONS(2550), - [anon_sym_DASH2] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_STAR2] = ACTIONS(2550), - [anon_sym_and2] = ACTIONS(2548), - [anon_sym_xor2] = ACTIONS(2548), - [anon_sym_or2] = ACTIONS(2548), - [anon_sym_not_DASHin2] = ACTIONS(2548), - [anon_sym_has2] = ACTIONS(2548), - [anon_sym_not_DASHhas2] = ACTIONS(2548), - [anon_sym_starts_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), - [anon_sym_ends_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), - [anon_sym_EQ_EQ2] = ACTIONS(2548), - [anon_sym_BANG_EQ2] = ACTIONS(2548), - [anon_sym_LT2] = ACTIONS(2550), - [anon_sym_LT_EQ2] = ACTIONS(2548), - [anon_sym_GT_EQ2] = ACTIONS(2548), - [anon_sym_EQ_TILDE2] = ACTIONS(2548), - [anon_sym_BANG_TILDE2] = ACTIONS(2548), - [anon_sym_like2] = ACTIONS(2548), - [anon_sym_not_DASHlike2] = ACTIONS(2548), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2548), - [anon_sym_PLUS_PLUS2] = ACTIONS(2548), - [anon_sym_SLASH2] = ACTIONS(2550), - [anon_sym_mod2] = ACTIONS(2548), - [anon_sym_SLASH_SLASH2] = ACTIONS(2548), - [anon_sym_PLUS2] = ACTIONS(2550), - [anon_sym_bit_DASHshl2] = ACTIONS(2548), - [anon_sym_bit_DASHshr2] = ACTIONS(2548), - [anon_sym_bit_DASHand2] = ACTIONS(2548), - [anon_sym_bit_DASHxor2] = ACTIONS(2548), - [anon_sym_bit_DASHor2] = ACTIONS(2548), - [anon_sym_err_GT] = ACTIONS(2550), - [anon_sym_out_GT] = ACTIONS(2550), - [anon_sym_e_GT] = ACTIONS(2550), - [anon_sym_o_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT] = ACTIONS(2550), - [anon_sym_err_GT_GT] = ACTIONS(2548), - [anon_sym_out_GT_GT] = ACTIONS(2548), - [anon_sym_e_GT_GT] = ACTIONS(2548), - [anon_sym_o_GT_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(863)] = { - [aux_sym__repeat_newline] = STATE(1080), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(863), - [anon_sym_in] = ACTIONS(2548), - [sym__newline] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_GT2] = ACTIONS(2550), - [anon_sym_DASH2] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_STAR2] = ACTIONS(2550), - [anon_sym_and2] = ACTIONS(2548), - [anon_sym_xor2] = ACTIONS(2548), - [anon_sym_or2] = ACTIONS(2548), - [anon_sym_not_DASHin2] = ACTIONS(2548), - [anon_sym_has2] = ACTIONS(2548), - [anon_sym_not_DASHhas2] = ACTIONS(2548), - [anon_sym_starts_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), - [anon_sym_ends_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), - [anon_sym_EQ_EQ2] = ACTIONS(2548), - [anon_sym_BANG_EQ2] = ACTIONS(2548), - [anon_sym_LT2] = ACTIONS(2550), - [anon_sym_LT_EQ2] = ACTIONS(2548), - [anon_sym_GT_EQ2] = ACTIONS(2548), - [anon_sym_EQ_TILDE2] = ACTIONS(2548), - [anon_sym_BANG_TILDE2] = ACTIONS(2548), - [anon_sym_like2] = ACTIONS(2548), - [anon_sym_not_DASHlike2] = ACTIONS(2548), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2548), - [anon_sym_PLUS_PLUS2] = ACTIONS(2548), - [anon_sym_SLASH2] = ACTIONS(2550), - [anon_sym_mod2] = ACTIONS(2548), - [anon_sym_SLASH_SLASH2] = ACTIONS(2548), - [anon_sym_PLUS2] = ACTIONS(2550), - [anon_sym_bit_DASHshl2] = ACTIONS(2548), - [anon_sym_bit_DASHshr2] = ACTIONS(2548), - [anon_sym_bit_DASHand2] = ACTIONS(2548), - [anon_sym_bit_DASHxor2] = ACTIONS(2548), - [anon_sym_bit_DASHor2] = ACTIONS(2548), - [anon_sym_err_GT] = ACTIONS(2550), - [anon_sym_out_GT] = ACTIONS(2550), - [anon_sym_e_GT] = ACTIONS(2550), - [anon_sym_o_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT] = ACTIONS(2550), - [anon_sym_err_GT_GT] = ACTIONS(2548), - [anon_sym_out_GT_GT] = ACTIONS(2548), - [anon_sym_e_GT_GT] = ACTIONS(2548), - [anon_sym_o_GT_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(864)] = { - [aux_sym__repeat_newline] = STATE(1081), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(864), - [anon_sym_in] = ACTIONS(2548), - [sym__newline] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_GT2] = ACTIONS(2550), - [anon_sym_DASH2] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_STAR2] = ACTIONS(2550), - [anon_sym_and2] = ACTIONS(2548), - [anon_sym_xor2] = ACTIONS(2548), - [anon_sym_or2] = ACTIONS(2548), - [anon_sym_not_DASHin2] = ACTIONS(2548), - [anon_sym_has2] = ACTIONS(2548), - [anon_sym_not_DASHhas2] = ACTIONS(2548), - [anon_sym_starts_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), - [anon_sym_ends_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), - [anon_sym_EQ_EQ2] = ACTIONS(2548), - [anon_sym_BANG_EQ2] = ACTIONS(2548), - [anon_sym_LT2] = ACTIONS(2550), - [anon_sym_LT_EQ2] = ACTIONS(2548), - [anon_sym_GT_EQ2] = ACTIONS(2548), - [anon_sym_EQ_TILDE2] = ACTIONS(2548), - [anon_sym_BANG_TILDE2] = ACTIONS(2548), - [anon_sym_like2] = ACTIONS(2548), - [anon_sym_not_DASHlike2] = ACTIONS(2548), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2548), - [anon_sym_PLUS_PLUS2] = ACTIONS(2548), - [anon_sym_SLASH2] = ACTIONS(2550), - [anon_sym_mod2] = ACTIONS(2548), - [anon_sym_SLASH_SLASH2] = ACTIONS(2548), - [anon_sym_PLUS2] = ACTIONS(2550), - [anon_sym_bit_DASHshl2] = ACTIONS(2548), - [anon_sym_bit_DASHshr2] = ACTIONS(2548), - [anon_sym_bit_DASHand2] = ACTIONS(2548), - [anon_sym_bit_DASHxor2] = ACTIONS(2548), - [anon_sym_bit_DASHor2] = ACTIONS(2548), - [anon_sym_err_GT] = ACTIONS(2550), - [anon_sym_out_GT] = ACTIONS(2550), - [anon_sym_e_GT] = ACTIONS(2550), - [anon_sym_o_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT] = ACTIONS(2550), - [anon_sym_err_GT_GT] = ACTIONS(2548), - [anon_sym_out_GT_GT] = ACTIONS(2548), - [anon_sym_e_GT_GT] = ACTIONS(2548), - [anon_sym_o_GT_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(865)] = { - [aux_sym__repeat_newline] = STATE(1082), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(865), - [anon_sym_in] = ACTIONS(2548), - [sym__newline] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_GT2] = ACTIONS(2550), - [anon_sym_DASH2] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_STAR2] = ACTIONS(2550), - [anon_sym_and2] = ACTIONS(2548), - [anon_sym_xor2] = ACTIONS(2548), - [anon_sym_or2] = ACTIONS(2548), - [anon_sym_not_DASHin2] = ACTIONS(2548), - [anon_sym_has2] = ACTIONS(2548), - [anon_sym_not_DASHhas2] = ACTIONS(2548), - [anon_sym_starts_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), - [anon_sym_ends_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), - [anon_sym_EQ_EQ2] = ACTIONS(2548), - [anon_sym_BANG_EQ2] = ACTIONS(2548), - [anon_sym_LT2] = ACTIONS(2550), - [anon_sym_LT_EQ2] = ACTIONS(2548), - [anon_sym_GT_EQ2] = ACTIONS(2548), - [anon_sym_EQ_TILDE2] = ACTIONS(2548), - [anon_sym_BANG_TILDE2] = ACTIONS(2548), - [anon_sym_like2] = ACTIONS(2548), - [anon_sym_not_DASHlike2] = ACTIONS(2548), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2548), - [anon_sym_PLUS_PLUS2] = ACTIONS(2548), - [anon_sym_SLASH2] = ACTIONS(2550), - [anon_sym_mod2] = ACTIONS(2548), - [anon_sym_SLASH_SLASH2] = ACTIONS(2548), - [anon_sym_PLUS2] = ACTIONS(2550), - [anon_sym_bit_DASHshl2] = ACTIONS(2548), - [anon_sym_bit_DASHshr2] = ACTIONS(2548), - [anon_sym_bit_DASHand2] = ACTIONS(2548), - [anon_sym_bit_DASHxor2] = ACTIONS(2548), - [anon_sym_bit_DASHor2] = ACTIONS(2548), - [anon_sym_err_GT] = ACTIONS(2550), - [anon_sym_out_GT] = ACTIONS(2550), - [anon_sym_e_GT] = ACTIONS(2550), - [anon_sym_o_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT] = ACTIONS(2550), - [anon_sym_err_GT_GT] = ACTIONS(2548), - [anon_sym_out_GT_GT] = ACTIONS(2548), - [anon_sym_e_GT_GT] = ACTIONS(2548), - [anon_sym_o_GT_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(866)] = { - [aux_sym__repeat_newline] = STATE(1084), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(866), - [anon_sym_in] = ACTIONS(2548), - [sym__newline] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_GT2] = ACTIONS(2550), - [anon_sym_DASH2] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_STAR2] = ACTIONS(2550), - [anon_sym_and2] = ACTIONS(2548), - [anon_sym_xor2] = ACTIONS(2548), - [anon_sym_or2] = ACTIONS(2548), - [anon_sym_not_DASHin2] = ACTIONS(2548), - [anon_sym_has2] = ACTIONS(2548), - [anon_sym_not_DASHhas2] = ACTIONS(2548), - [anon_sym_starts_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), - [anon_sym_ends_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), - [anon_sym_EQ_EQ2] = ACTIONS(2548), - [anon_sym_BANG_EQ2] = ACTIONS(2548), - [anon_sym_LT2] = ACTIONS(2550), - [anon_sym_LT_EQ2] = ACTIONS(2548), - [anon_sym_GT_EQ2] = ACTIONS(2548), - [anon_sym_EQ_TILDE2] = ACTIONS(2548), - [anon_sym_BANG_TILDE2] = ACTIONS(2548), - [anon_sym_like2] = ACTIONS(2548), - [anon_sym_not_DASHlike2] = ACTIONS(2548), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2548), - [anon_sym_PLUS_PLUS2] = ACTIONS(2548), - [anon_sym_SLASH2] = ACTIONS(2550), - [anon_sym_mod2] = ACTIONS(2548), - [anon_sym_SLASH_SLASH2] = ACTIONS(2548), - [anon_sym_PLUS2] = ACTIONS(2550), - [anon_sym_bit_DASHshl2] = ACTIONS(2548), - [anon_sym_bit_DASHshr2] = ACTIONS(2548), - [anon_sym_bit_DASHand2] = ACTIONS(2548), - [anon_sym_bit_DASHxor2] = ACTIONS(2548), - [anon_sym_bit_DASHor2] = ACTIONS(2548), - [anon_sym_err_GT] = ACTIONS(2550), - [anon_sym_out_GT] = ACTIONS(2550), - [anon_sym_e_GT] = ACTIONS(2550), - [anon_sym_o_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT] = ACTIONS(2550), - [anon_sym_err_GT_GT] = ACTIONS(2548), - [anon_sym_out_GT_GT] = ACTIONS(2548), - [anon_sym_e_GT_GT] = ACTIONS(2548), - [anon_sym_o_GT_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(867)] = { - [aux_sym__repeat_newline] = STATE(1085), - [sym__expr_parenthesized_immediate] = STATE(5069), + [867] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1689), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(728), + [sym__unquoted_with_expr] = STATE(945), + [sym__unquoted_anonymous_prefix] = STATE(4839), [sym_comment] = STATE(867), - [anon_sym_in] = ACTIONS(2548), - [sym__newline] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_GT2] = ACTIONS(2550), - [anon_sym_DASH2] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_STAR2] = ACTIONS(2550), - [anon_sym_and2] = ACTIONS(2548), - [anon_sym_xor2] = ACTIONS(2548), - [anon_sym_or2] = ACTIONS(2548), - [anon_sym_not_DASHin2] = ACTIONS(2548), - [anon_sym_has2] = ACTIONS(2548), - [anon_sym_not_DASHhas2] = ACTIONS(2548), - [anon_sym_starts_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), - [anon_sym_ends_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), - [anon_sym_EQ_EQ2] = ACTIONS(2548), - [anon_sym_BANG_EQ2] = ACTIONS(2548), - [anon_sym_LT2] = ACTIONS(2550), - [anon_sym_LT_EQ2] = ACTIONS(2548), - [anon_sym_GT_EQ2] = ACTIONS(2548), - [anon_sym_EQ_TILDE2] = ACTIONS(2548), - [anon_sym_BANG_TILDE2] = ACTIONS(2548), - [anon_sym_like2] = ACTIONS(2548), - [anon_sym_not_DASHlike2] = ACTIONS(2548), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2548), - [anon_sym_PLUS_PLUS2] = ACTIONS(2548), - [anon_sym_SLASH2] = ACTIONS(2550), - [anon_sym_mod2] = ACTIONS(2548), - [anon_sym_SLASH_SLASH2] = ACTIONS(2548), - [anon_sym_PLUS2] = ACTIONS(2550), - [anon_sym_bit_DASHshl2] = ACTIONS(2548), - [anon_sym_bit_DASHshr2] = ACTIONS(2548), - [anon_sym_bit_DASHand2] = ACTIONS(2548), - [anon_sym_bit_DASHxor2] = ACTIONS(2548), - [anon_sym_bit_DASHor2] = ACTIONS(2548), - [anon_sym_err_GT] = ACTIONS(2550), - [anon_sym_out_GT] = ACTIONS(2550), - [anon_sym_e_GT] = ACTIONS(2550), - [anon_sym_o_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT] = ACTIONS(2550), - [anon_sym_err_GT_GT] = ACTIONS(2548), - [anon_sym_out_GT_GT] = ACTIONS(2548), - [anon_sym_e_GT_GT] = ACTIONS(2548), - [anon_sym_o_GT_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(868)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(2254), - [sym_expr_parenthesized] = STATE(2011), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(2089), - [sym_val_variable] = STATE(1975), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1813), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(700), - [sym__unquoted_with_expr] = STATE(964), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(868), - [anon_sym_true] = ACTIONS(2552), - [anon_sym_false] = ACTIONS(2552), - [anon_sym_null] = ACTIONS(2554), - [aux_sym_cmd_identifier_token3] = ACTIONS(2556), - [aux_sym_cmd_identifier_token4] = ACTIONS(2556), - [aux_sym_cmd_identifier_token5] = ACTIONS(2556), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2558), - [aux_sym_expr_unary_token1] = ACTIONS(2560), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), - [anon_sym_DOT_DOT_LT] = ACTIONS(2562), - [aux_sym__val_number_decimal_token1] = ACTIONS(2564), - [aux_sym__val_number_decimal_token2] = ACTIONS(2566), - [aux_sym__val_number_decimal_token3] = ACTIONS(2568), - [aux_sym__val_number_decimal_token4] = ACTIONS(2568), + [anon_sym_DOT_DOT] = ACTIONS(2007), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2570), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(869)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(2257), - [sym_expr_parenthesized] = STATE(2011), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(2089), - [sym_val_variable] = STATE(1975), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1813), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(701), - [sym__unquoted_with_expr] = STATE(965), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(869), - [anon_sym_true] = ACTIONS(2552), - [anon_sym_false] = ACTIONS(2552), - [anon_sym_null] = ACTIONS(2554), - [aux_sym_cmd_identifier_token3] = ACTIONS(2556), - [aux_sym_cmd_identifier_token4] = ACTIONS(2556), - [aux_sym_cmd_identifier_token5] = ACTIONS(2556), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2558), - [aux_sym_expr_unary_token1] = ACTIONS(2560), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), - [anon_sym_DOT_DOT_LT] = ACTIONS(2562), - [aux_sym__val_number_decimal_token1] = ACTIONS(2564), - [aux_sym__val_number_decimal_token2] = ACTIONS(2566), - [aux_sym__val_number_decimal_token3] = ACTIONS(2568), - [aux_sym__val_number_decimal_token4] = ACTIONS(2568), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2570), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [868] = { + [aux_sym__repeat_newline] = STATE(1013), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(868), + [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_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_LPAREN2] = ACTIONS(1830), + [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_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(870)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(2221), - [sym_expr_parenthesized] = STATE(2011), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(2089), - [sym_val_variable] = STATE(1975), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1813), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(702), - [sym__unquoted_with_expr] = STATE(966), - [sym__unquoted_anonymous_prefix] = STATE(4859), + [869] = { + [sym_comment] = STATE(869), + [anon_sym_export] = ACTIONS(2574), + [anon_sym_alias] = ACTIONS(2576), + [anon_sym_let] = ACTIONS(2576), + [anon_sym_mut] = ACTIONS(2576), + [anon_sym_const] = ACTIONS(2576), + [aux_sym_cmd_identifier_token1] = ACTIONS(2574), + [anon_sym_def] = ACTIONS(2576), + [anon_sym_use] = ACTIONS(2576), + [anon_sym_export_DASHenv] = ACTIONS(2576), + [anon_sym_extern] = ACTIONS(2576), + [anon_sym_module] = ACTIONS(2576), + [anon_sym_for] = ACTIONS(2576), + [anon_sym_loop] = ACTIONS(2576), + [anon_sym_while] = ACTIONS(2576), + [anon_sym_if] = ACTIONS(2576), + [anon_sym_else] = ACTIONS(2576), + [anon_sym_try] = ACTIONS(2576), + [anon_sym_catch] = ACTIONS(2576), + [anon_sym_finally] = ACTIONS(2576), + [anon_sym_match] = ACTIONS(2576), + [anon_sym_in] = ACTIONS(2574), + [anon_sym_true] = ACTIONS(2576), + [anon_sym_false] = ACTIONS(2576), + [anon_sym_null] = ACTIONS(2576), + [aux_sym_cmd_identifier_token3] = ACTIONS(2576), + [aux_sym_cmd_identifier_token4] = ACTIONS(2576), + [aux_sym_cmd_identifier_token5] = ACTIONS(2576), + [sym__newline] = ACTIONS(2111), + [anon_sym_PIPE] = ACTIONS(2111), + [anon_sym_err_GT_PIPE] = ACTIONS(2111), + [anon_sym_out_GT_PIPE] = ACTIONS(2111), + [anon_sym_e_GT_PIPE] = ACTIONS(2111), + [anon_sym_o_GT_PIPE] = ACTIONS(2111), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2111), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2111), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2111), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2576), + [anon_sym_LPAREN] = ACTIONS(2576), + [anon_sym_DOLLAR] = ACTIONS(2574), + [anon_sym_DASH2] = ACTIONS(2574), + [anon_sym_LBRACE] = ACTIONS(2576), + [anon_sym_DOT_DOT] = ACTIONS(2574), + [anon_sym_where] = ACTIONS(2576), + [aux_sym_expr_unary_token1] = ACTIONS(2576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2576), + [anon_sym_DOT_DOT_LT] = ACTIONS(2576), + [aux_sym__val_number_decimal_token1] = ACTIONS(2574), + [aux_sym__val_number_decimal_token2] = ACTIONS(2576), + [aux_sym__val_number_decimal_token3] = ACTIONS(2576), + [aux_sym__val_number_decimal_token4] = ACTIONS(2576), + [aux_sym__val_number_token1] = ACTIONS(2576), + [aux_sym__val_number_token2] = ACTIONS(2576), + [aux_sym__val_number_token3] = ACTIONS(2576), + [anon_sym_0b] = ACTIONS(2574), + [anon_sym_0o] = ACTIONS(2574), + [anon_sym_0x] = ACTIONS(2574), + [sym_val_date] = ACTIONS(2576), + [anon_sym_DQUOTE] = ACTIONS(2576), + [anon_sym_SQUOTE] = ACTIONS(2576), + [anon_sym_BQUOTE] = ACTIONS(2576), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2576), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_CARET] = ACTIONS(2576), + [anon_sym_PERCENT] = ACTIONS(2576), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2576), + }, + [870] = { [sym_comment] = STATE(870), - [anon_sym_true] = ACTIONS(2552), - [anon_sym_false] = ACTIONS(2552), - [anon_sym_null] = ACTIONS(2554), - [aux_sym_cmd_identifier_token3] = ACTIONS(2556), - [aux_sym_cmd_identifier_token4] = ACTIONS(2556), - [aux_sym_cmd_identifier_token5] = ACTIONS(2556), + [anon_sym_export] = ACTIONS(2115), + [anon_sym_alias] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_mut] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [aux_sym_cmd_identifier_token1] = ACTIONS(2115), + [anon_sym_def] = ACTIONS(2117), + [anon_sym_use] = ACTIONS(2117), + [anon_sym_export_DASHenv] = ACTIONS(2117), + [anon_sym_extern] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_loop] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_catch] = ACTIONS(2117), + [anon_sym_finally] = ACTIONS(2117), + [anon_sym_match] = ACTIONS(2117), + [anon_sym_in] = ACTIONS(2115), + [anon_sym_true] = ACTIONS(2117), + [anon_sym_false] = ACTIONS(2117), + [anon_sym_null] = ACTIONS(2117), + [aux_sym_cmd_identifier_token3] = ACTIONS(2117), + [aux_sym_cmd_identifier_token4] = ACTIONS(2117), + [aux_sym_cmd_identifier_token5] = ACTIONS(2117), + [sym__newline] = ACTIONS(2117), + [anon_sym_PIPE] = ACTIONS(2117), + [anon_sym_err_GT_PIPE] = ACTIONS(2117), + [anon_sym_out_GT_PIPE] = ACTIONS(2117), + [anon_sym_e_GT_PIPE] = ACTIONS(2117), + [anon_sym_o_GT_PIPE] = ACTIONS(2117), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2117), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2117), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2117), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_DOLLAR] = ACTIONS(2115), + [anon_sym_DASH2] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2115), + [anon_sym_where] = ACTIONS(2117), + [aux_sym_expr_unary_token1] = ACTIONS(2117), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2117), + [anon_sym_DOT_DOT_LT] = ACTIONS(2117), + [aux_sym__val_number_decimal_token1] = ACTIONS(2115), + [aux_sym__val_number_decimal_token2] = ACTIONS(2117), + [aux_sym__val_number_decimal_token3] = ACTIONS(2117), + [aux_sym__val_number_decimal_token4] = ACTIONS(2117), + [aux_sym__val_number_token1] = ACTIONS(2117), + [aux_sym__val_number_token2] = ACTIONS(2117), + [aux_sym__val_number_token3] = ACTIONS(2117), + [anon_sym_0b] = ACTIONS(2115), + [anon_sym_0o] = ACTIONS(2115), + [anon_sym_0x] = ACTIONS(2115), + [sym_val_date] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2117), + [anon_sym_SQUOTE] = ACTIONS(2117), + [anon_sym_BQUOTE] = ACTIONS(2117), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2117), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_PERCENT] = ACTIONS(2117), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2117), + }, + [871] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(940), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(698), + [sym__unquoted_with_expr] = STATE(941), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(871), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2558), - [aux_sym_expr_unary_token1] = ACTIONS(2560), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), - [anon_sym_DOT_DOT_LT] = ACTIONS(2562), - [aux_sym__val_number_decimal_token1] = ACTIONS(2564), - [aux_sym__val_number_decimal_token2] = ACTIONS(2566), - [aux_sym__val_number_decimal_token3] = ACTIONS(2568), - [aux_sym__val_number_decimal_token4] = ACTIONS(2568), + [anon_sym_DOT_DOT] = ACTIONS(2007), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2570), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(871)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(2222), - [sym_expr_parenthesized] = STATE(2011), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(2089), - [sym_val_variable] = STATE(1975), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1813), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(703), - [sym__unquoted_with_expr] = STATE(967), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(871), - [anon_sym_true] = ACTIONS(2552), - [anon_sym_false] = ACTIONS(2552), - [anon_sym_null] = ACTIONS(2554), - [aux_sym_cmd_identifier_token3] = ACTIONS(2556), - [aux_sym_cmd_identifier_token4] = ACTIONS(2556), - [aux_sym_cmd_identifier_token5] = ACTIONS(2556), + [872] = { + [sym_expr_unary] = STATE(1328), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1328), + [sym__expr_binary_expression] = STATE(1707), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1328), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(1328), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1539), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(1441), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(1125), + [sym__unquoted_with_expr] = STATE(1316), + [sym__unquoted_anonymous_prefix] = STATE(4847), + [sym_comment] = STATE(872), + [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(1314), + [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_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), + }, + [873] = { + [aux_sym__repeat_newline] = STATE(1034), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(873), + [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_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(1830), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [874] = { + [aux_sym__repeat_newline] = STATE(1038), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(874), + [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_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(1830), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [875] = { + [aux_sym__repeat_newline] = STATE(1040), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(875), + [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_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(1830), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [876] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1688), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(735), + [sym__unquoted_with_expr] = STATE(939), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(876), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2558), - [aux_sym_expr_unary_token1] = ACTIONS(2560), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), - [anon_sym_DOT_DOT_LT] = ACTIONS(2562), - [aux_sym__val_number_decimal_token1] = ACTIONS(2564), - [aux_sym__val_number_decimal_token2] = ACTIONS(2566), - [aux_sym__val_number_decimal_token3] = ACTIONS(2568), - [aux_sym__val_number_decimal_token4] = ACTIONS(2568), + [anon_sym_DOT_DOT] = ACTIONS(2007), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2570), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(872)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(2223), - [sym_expr_parenthesized] = STATE(2011), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(2089), - [sym_val_variable] = STATE(1975), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1813), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(704), - [sym__unquoted_with_expr] = STATE(968), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(872), - [anon_sym_true] = ACTIONS(2552), - [anon_sym_false] = ACTIONS(2552), - [anon_sym_null] = ACTIONS(2554), - [aux_sym_cmd_identifier_token3] = ACTIONS(2556), - [aux_sym_cmd_identifier_token4] = ACTIONS(2556), - [aux_sym_cmd_identifier_token5] = ACTIONS(2556), + [877] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1686), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(727), + [sym__unquoted_with_expr] = STATE(931), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(877), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2558), - [aux_sym_expr_unary_token1] = ACTIONS(2560), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), - [anon_sym_DOT_DOT_LT] = ACTIONS(2562), - [aux_sym__val_number_decimal_token1] = ACTIONS(2564), - [aux_sym__val_number_decimal_token2] = ACTIONS(2566), - [aux_sym__val_number_decimal_token3] = ACTIONS(2568), - [aux_sym__val_number_decimal_token4] = ACTIONS(2568), + [anon_sym_DOT_DOT] = ACTIONS(2007), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2570), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(873)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(2224), - [sym_expr_parenthesized] = STATE(2011), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(2089), - [sym_val_variable] = STATE(1975), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1813), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(705), - [sym__unquoted_with_expr] = STATE(970), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(873), - [anon_sym_true] = ACTIONS(2552), - [anon_sym_false] = ACTIONS(2552), - [anon_sym_null] = ACTIONS(2554), - [aux_sym_cmd_identifier_token3] = ACTIONS(2556), - [aux_sym_cmd_identifier_token4] = ACTIONS(2556), - [aux_sym_cmd_identifier_token5] = ACTIONS(2556), + [878] = { + [aux_sym__repeat_newline] = STATE(1042), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(878), + [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_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(1830), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [879] = { + [aux_sym__repeat_newline] = STATE(1044), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(879), + [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_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(1830), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [880] = { + [aux_sym__repeat_newline] = STATE(1046), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(880), + [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_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(1830), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [881] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1685), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(720), + [sym__unquoted_with_expr] = STATE(929), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(881), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2558), - [aux_sym_expr_unary_token1] = ACTIONS(2560), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), - [anon_sym_DOT_DOT_LT] = ACTIONS(2562), - [aux_sym__val_number_decimal_token1] = ACTIONS(2564), - [aux_sym__val_number_decimal_token2] = ACTIONS(2566), - [aux_sym__val_number_decimal_token3] = ACTIONS(2568), - [aux_sym__val_number_decimal_token4] = ACTIONS(2568), + [anon_sym_DOT_DOT] = ACTIONS(2007), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2570), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(874)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(2227), - [sym_expr_parenthesized] = STATE(2011), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(2089), - [sym_val_variable] = STATE(1975), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1813), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(706), - [sym__unquoted_with_expr] = STATE(971), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(874), - [anon_sym_true] = ACTIONS(2552), - [anon_sym_false] = ACTIONS(2552), - [anon_sym_null] = ACTIONS(2554), - [aux_sym_cmd_identifier_token3] = ACTIONS(2556), - [aux_sym_cmd_identifier_token4] = ACTIONS(2556), - [aux_sym_cmd_identifier_token5] = ACTIONS(2556), + [882] = { + [aux_sym__repeat_newline] = STATE(1048), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(882), + [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_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(1830), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [883] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1684), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(711), + [sym__unquoted_with_expr] = STATE(928), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(883), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2558), - [aux_sym_expr_unary_token1] = ACTIONS(2560), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), - [anon_sym_DOT_DOT_LT] = ACTIONS(2562), - [aux_sym__val_number_decimal_token1] = ACTIONS(2564), - [aux_sym__val_number_decimal_token2] = ACTIONS(2566), - [aux_sym__val_number_decimal_token3] = ACTIONS(2568), - [aux_sym__val_number_decimal_token4] = ACTIONS(2568), + [anon_sym_DOT_DOT] = ACTIONS(2007), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2570), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(875)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(2229), - [sym_expr_parenthesized] = STATE(2011), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(2089), - [sym_val_variable] = STATE(1975), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1813), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(707), - [sym__unquoted_with_expr] = STATE(972), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(875), - [anon_sym_true] = ACTIONS(2552), - [anon_sym_false] = ACTIONS(2552), - [anon_sym_null] = ACTIONS(2554), - [aux_sym_cmd_identifier_token3] = ACTIONS(2556), - [aux_sym_cmd_identifier_token4] = ACTIONS(2556), - [aux_sym_cmd_identifier_token5] = ACTIONS(2556), + [884] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1678), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(721), + [sym__unquoted_with_expr] = STATE(933), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(884), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2558), - [aux_sym_expr_unary_token1] = ACTIONS(2560), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), - [anon_sym_DOT_DOT_LT] = ACTIONS(2562), - [aux_sym__val_number_decimal_token1] = ACTIONS(2564), - [aux_sym__val_number_decimal_token2] = ACTIONS(2566), - [aux_sym__val_number_decimal_token3] = ACTIONS(2568), - [aux_sym__val_number_decimal_token4] = ACTIONS(2568), + [anon_sym_DOT_DOT] = ACTIONS(2007), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2570), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(876)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(973), - [sym_expr_parenthesized] = STATE(2011), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(2089), - [sym_val_variable] = STATE(1975), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1813), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(710), - [sym__unquoted_with_expr] = STATE(974), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(876), - [anon_sym_true] = ACTIONS(2552), - [anon_sym_false] = ACTIONS(2552), - [anon_sym_null] = ACTIONS(2554), - [aux_sym_cmd_identifier_token3] = ACTIONS(2556), - [aux_sym_cmd_identifier_token4] = ACTIONS(2556), - [aux_sym_cmd_identifier_token5] = ACTIONS(2556), + [885] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1677), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(700), + [sym__unquoted_with_expr] = STATE(942), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(885), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2558), - [aux_sym_expr_unary_token1] = ACTIONS(2560), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), - [anon_sym_DOT_DOT_LT] = ACTIONS(2562), - [aux_sym__val_number_decimal_token1] = ACTIONS(2564), - [aux_sym__val_number_decimal_token2] = ACTIONS(2566), - [aux_sym__val_number_decimal_token3] = ACTIONS(2568), - [aux_sym__val_number_decimal_token4] = ACTIONS(2568), + [anon_sym_DOT_DOT] = ACTIONS(2007), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2570), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(877)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(2230), - [sym_expr_parenthesized] = STATE(2011), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(2089), - [sym_val_variable] = STATE(1975), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1813), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(975), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(877), - [anon_sym_true] = ACTIONS(2552), - [anon_sym_false] = ACTIONS(2552), - [anon_sym_null] = ACTIONS(2554), - [aux_sym_cmd_identifier_token3] = ACTIONS(2556), - [aux_sym_cmd_identifier_token4] = ACTIONS(2556), - [aux_sym_cmd_identifier_token5] = ACTIONS(2556), + [886] = { + [aux_sym__repeat_newline] = STATE(1050), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(886), + [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_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(1830), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [887] = { + [aux_sym__repeat_newline] = STATE(1053), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(887), + [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_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(1830), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [888] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1627), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(703), + [sym__unquoted_with_expr] = STATE(943), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(888), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2558), - [aux_sym_expr_unary_token1] = ACTIONS(2560), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), - [anon_sym_DOT_DOT_LT] = ACTIONS(2562), - [aux_sym__val_number_decimal_token1] = ACTIONS(2564), - [aux_sym__val_number_decimal_token2] = ACTIONS(2566), - [aux_sym__val_number_decimal_token3] = ACTIONS(2568), - [aux_sym__val_number_decimal_token4] = ACTIONS(2568), + [anon_sym_DOT_DOT] = ACTIONS(2007), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2570), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(878)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(2232), - [sym_expr_parenthesized] = STATE(2011), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(2089), - [sym_val_variable] = STATE(1975), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1813), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(712), - [sym__unquoted_with_expr] = STATE(976), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(878), - [anon_sym_true] = ACTIONS(2552), - [anon_sym_false] = ACTIONS(2552), - [anon_sym_null] = ACTIONS(2554), - [aux_sym_cmd_identifier_token3] = ACTIONS(2556), - [aux_sym_cmd_identifier_token4] = ACTIONS(2556), - [aux_sym_cmd_identifier_token5] = ACTIONS(2556), + [889] = { + [aux_sym__repeat_newline] = STATE(1056), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(889), + [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_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(1830), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [890] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(1626), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1507), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1432), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(708), + [sym__unquoted_with_expr] = STATE(951), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(890), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2558), - [aux_sym_expr_unary_token1] = ACTIONS(2560), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), - [anon_sym_DOT_DOT_LT] = ACTIONS(2562), - [aux_sym__val_number_decimal_token1] = ACTIONS(2564), - [aux_sym__val_number_decimal_token2] = ACTIONS(2566), - [aux_sym__val_number_decimal_token3] = ACTIONS(2568), - [aux_sym__val_number_decimal_token4] = ACTIONS(2568), + [anon_sym_DOT_DOT] = ACTIONS(2007), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2570), + [sym_val_date] = ACTIONS(2017), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(879)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(2011), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(2089), - [sym_val_variable] = STATE(1975), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1813), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(713), - [sym__unquoted_with_expr] = STATE(977), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(879), - [anon_sym_true] = ACTIONS(2552), - [anon_sym_false] = ACTIONS(2552), - [anon_sym_null] = ACTIONS(2554), - [aux_sym_cmd_identifier_token3] = ACTIONS(2556), - [aux_sym_cmd_identifier_token4] = ACTIONS(2556), - [aux_sym_cmd_identifier_token5] = ACTIONS(2556), + [891] = { + [aux_sym__repeat_newline] = STATE(1055), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(891), + [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_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_LPAREN2] = ACTIONS(1830), + [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_POUND] = ACTIONS(3), + }, + [892] = { + [aux_sym__repeat_newline] = STATE(1064), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(892), + [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_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(1830), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [893] = { + [sym_comment] = STATE(893), + [anon_sym_in] = ACTIONS(2233), + [sym__newline] = ACTIONS(2235), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_PIPE] = ACTIONS(2235), + [anon_sym_err_GT_PIPE] = ACTIONS(2235), + [anon_sym_out_GT_PIPE] = ACTIONS(2235), + [anon_sym_e_GT_PIPE] = ACTIONS(2235), + [anon_sym_o_GT_PIPE] = ACTIONS(2235), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2235), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2235), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2235), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2235), + [anon_sym_GT2] = ACTIONS(2237), + [anon_sym_DASH2] = ACTIONS(2233), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_STAR2] = ACTIONS(2237), + [anon_sym_and2] = ACTIONS(2233), + [anon_sym_xor2] = ACTIONS(2233), + [anon_sym_or2] = ACTIONS(2233), + [anon_sym_not_DASHin2] = ACTIONS(2233), + [anon_sym_has2] = ACTIONS(2233), + [anon_sym_not_DASHhas2] = ACTIONS(2233), + [anon_sym_starts_DASHwith2] = ACTIONS(2233), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2233), + [anon_sym_ends_DASHwith2] = ACTIONS(2233), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2233), + [anon_sym_EQ_EQ2] = ACTIONS(2233), + [anon_sym_BANG_EQ2] = ACTIONS(2233), + [anon_sym_LT2] = ACTIONS(2237), + [anon_sym_LT_EQ2] = ACTIONS(2233), + [anon_sym_GT_EQ2] = ACTIONS(2233), + [anon_sym_EQ_TILDE2] = ACTIONS(2233), + [anon_sym_BANG_TILDE2] = ACTIONS(2233), + [anon_sym_like2] = ACTIONS(2233), + [anon_sym_not_DASHlike2] = ACTIONS(2233), + [anon_sym_STAR_STAR2] = ACTIONS(2233), + [anon_sym_PLUS_PLUS2] = ACTIONS(2233), + [anon_sym_SLASH2] = ACTIONS(2237), + [anon_sym_mod2] = ACTIONS(2233), + [anon_sym_SLASH_SLASH2] = ACTIONS(2233), + [anon_sym_PLUS2] = ACTIONS(2237), + [anon_sym_bit_DASHshl2] = ACTIONS(2233), + [anon_sym_bit_DASHshr2] = ACTIONS(2233), + [anon_sym_bit_DASHand2] = ACTIONS(2233), + [anon_sym_bit_DASHxor2] = ACTIONS(2233), + [anon_sym_bit_DASHor2] = ACTIONS(2233), + [anon_sym_DOT_DOT2] = ACTIONS(1614), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1616), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1616), + [anon_sym_COLON2] = ACTIONS(1738), + [anon_sym_err_GT] = ACTIONS(2239), + [anon_sym_out_GT] = ACTIONS(2239), + [anon_sym_e_GT] = ACTIONS(2239), + [anon_sym_o_GT] = ACTIONS(2239), + [anon_sym_err_PLUSout_GT] = ACTIONS(2239), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2239), + [anon_sym_o_PLUSe_GT] = ACTIONS(2239), + [anon_sym_e_PLUSo_GT] = ACTIONS(2239), + [anon_sym_err_GT_GT] = ACTIONS(2235), + [anon_sym_out_GT_GT] = ACTIONS(2235), + [anon_sym_e_GT_GT] = ACTIONS(2235), + [anon_sym_o_GT_GT] = ACTIONS(2235), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2235), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2235), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2235), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2235), + [anon_sym_POUND] = ACTIONS(3), + }, + [894] = { + [sym_comment] = STATE(894), + [anon_sym_export] = ACTIONS(2113), + [anon_sym_alias] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_mut] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [aux_sym_cmd_identifier_token1] = ACTIONS(2113), + [anon_sym_def] = ACTIONS(2111), + [anon_sym_use] = ACTIONS(2111), + [anon_sym_export_DASHenv] = ACTIONS(2111), + [anon_sym_extern] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_loop] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_catch] = ACTIONS(2111), + [anon_sym_finally] = ACTIONS(2111), + [anon_sym_match] = ACTIONS(2111), + [anon_sym_in] = ACTIONS(2113), + [anon_sym_true] = ACTIONS(2111), + [anon_sym_false] = ACTIONS(2111), + [anon_sym_null] = ACTIONS(2111), + [aux_sym_cmd_identifier_token3] = ACTIONS(2111), + [aux_sym_cmd_identifier_token4] = ACTIONS(2111), + [aux_sym_cmd_identifier_token5] = ACTIONS(2111), + [sym__newline] = ACTIONS(2111), + [anon_sym_PIPE] = ACTIONS(2111), + [anon_sym_err_GT_PIPE] = ACTIONS(2111), + [anon_sym_out_GT_PIPE] = ACTIONS(2111), + [anon_sym_e_GT_PIPE] = ACTIONS(2111), + [anon_sym_o_GT_PIPE] = ACTIONS(2111), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2111), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2111), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2111), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_DOLLAR] = ACTIONS(2113), + [anon_sym_DASH2] = ACTIONS(2113), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2113), + [anon_sym_where] = ACTIONS(2111), + [aux_sym_expr_unary_token1] = ACTIONS(2111), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2111), + [anon_sym_DOT_DOT_LT] = ACTIONS(2111), + [aux_sym__val_number_decimal_token1] = ACTIONS(2113), + [aux_sym__val_number_decimal_token2] = ACTIONS(2111), + [aux_sym__val_number_decimal_token3] = ACTIONS(2111), + [aux_sym__val_number_decimal_token4] = ACTIONS(2111), + [aux_sym__val_number_token1] = ACTIONS(2111), + [aux_sym__val_number_token2] = ACTIONS(2111), + [aux_sym__val_number_token3] = ACTIONS(2111), + [anon_sym_0b] = ACTIONS(2113), + [anon_sym_0o] = ACTIONS(2113), + [anon_sym_0x] = ACTIONS(2113), + [sym_val_date] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_BQUOTE] = ACTIONS(2111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2111), + [anon_sym_CARET] = ACTIONS(2111), + [anon_sym_PERCENT] = ACTIONS(2111), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2111), + }, + [895] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2234), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(707), + [sym__unquoted_with_expr] = STATE(947), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(895), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2558), - [aux_sym_expr_unary_token1] = ACTIONS(2560), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), - [anon_sym_DOT_DOT_LT] = ACTIONS(2562), - [aux_sym__val_number_decimal_token1] = ACTIONS(2564), - [aux_sym__val_number_decimal_token2] = ACTIONS(2566), - [aux_sym__val_number_decimal_token3] = ACTIONS(2568), - [aux_sym__val_number_decimal_token4] = ACTIONS(2568), + [anon_sym_DOT_DOT] = ACTIONS(1961), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2570), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(880)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(2233), - [sym_expr_parenthesized] = STATE(2011), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(2089), - [sym_val_variable] = STATE(1975), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1813), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(714), - [sym__unquoted_with_expr] = STATE(978), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(880), - [anon_sym_true] = ACTIONS(2552), - [anon_sym_false] = ACTIONS(2552), - [anon_sym_null] = ACTIONS(2554), - [aux_sym_cmd_identifier_token3] = ACTIONS(2556), - [aux_sym_cmd_identifier_token4] = ACTIONS(2556), - [aux_sym_cmd_identifier_token5] = ACTIONS(2556), + [896] = { + [sym_comment] = STATE(896), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_in] = ACTIONS(2146), + [sym__newline] = ACTIONS(2146), + [anon_sym_SEMI] = ACTIONS(2146), + [anon_sym_PIPE] = ACTIONS(2146), + [anon_sym_err_GT_PIPE] = ACTIONS(2146), + [anon_sym_out_GT_PIPE] = ACTIONS(2146), + [anon_sym_e_GT_PIPE] = ACTIONS(2146), + [anon_sym_o_GT_PIPE] = ACTIONS(2146), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2146), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2146), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2146), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2146), + [anon_sym_RPAREN] = ACTIONS(2146), + [anon_sym_GT2] = ACTIONS(2148), + [anon_sym_DASH2] = ACTIONS(2146), + [anon_sym_LBRACE] = ACTIONS(2146), + [anon_sym_RBRACE] = ACTIONS(2146), + [anon_sym_EQ_GT] = ACTIONS(2146), + [anon_sym_STAR2] = ACTIONS(2148), + [anon_sym_and2] = ACTIONS(2146), + [anon_sym_xor2] = ACTIONS(2146), + [anon_sym_or2] = ACTIONS(2146), + [anon_sym_not_DASHin2] = ACTIONS(2146), + [anon_sym_has2] = ACTIONS(2146), + [anon_sym_not_DASHhas2] = ACTIONS(2146), + [anon_sym_starts_DASHwith2] = ACTIONS(2146), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2146), + [anon_sym_ends_DASHwith2] = ACTIONS(2146), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2146), + [anon_sym_EQ_EQ2] = ACTIONS(2146), + [anon_sym_BANG_EQ2] = ACTIONS(2146), + [anon_sym_LT2] = ACTIONS(2148), + [anon_sym_LT_EQ2] = ACTIONS(2146), + [anon_sym_GT_EQ2] = ACTIONS(2146), + [anon_sym_EQ_TILDE2] = ACTIONS(2146), + [anon_sym_BANG_TILDE2] = ACTIONS(2146), + [anon_sym_like2] = ACTIONS(2146), + [anon_sym_not_DASHlike2] = ACTIONS(2146), + [anon_sym_STAR_STAR2] = ACTIONS(2146), + [anon_sym_PLUS_PLUS2] = ACTIONS(2146), + [anon_sym_SLASH2] = ACTIONS(2148), + [anon_sym_mod2] = ACTIONS(2146), + [anon_sym_SLASH_SLASH2] = ACTIONS(2146), + [anon_sym_PLUS2] = ACTIONS(2148), + [anon_sym_bit_DASHshl2] = ACTIONS(2146), + [anon_sym_bit_DASHshr2] = ACTIONS(2146), + [anon_sym_bit_DASHand2] = ACTIONS(2146), + [anon_sym_bit_DASHxor2] = ACTIONS(2146), + [anon_sym_bit_DASHor2] = ACTIONS(2146), + [anon_sym_err_GT] = ACTIONS(2148), + [anon_sym_out_GT] = ACTIONS(2148), + [anon_sym_e_GT] = ACTIONS(2148), + [anon_sym_o_GT] = ACTIONS(2148), + [anon_sym_err_PLUSout_GT] = ACTIONS(2148), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2148), + [anon_sym_o_PLUSe_GT] = ACTIONS(2148), + [anon_sym_e_PLUSo_GT] = ACTIONS(2148), + [anon_sym_err_GT_GT] = ACTIONS(2146), + [anon_sym_out_GT_GT] = ACTIONS(2146), + [anon_sym_e_GT_GT] = ACTIONS(2146), + [anon_sym_o_GT_GT] = ACTIONS(2146), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2146), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2146), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2146), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2146), + [anon_sym_POUND] = ACTIONS(3), + }, + [897] = { + [sym_comment] = STATE(897), + [anon_sym_if] = ACTIONS(2251), + [anon_sym_in] = ACTIONS(2251), + [sym__newline] = ACTIONS(2251), + [anon_sym_SEMI] = ACTIONS(2251), + [anon_sym_PIPE] = ACTIONS(2251), + [anon_sym_err_GT_PIPE] = ACTIONS(2251), + [anon_sym_out_GT_PIPE] = ACTIONS(2251), + [anon_sym_e_GT_PIPE] = ACTIONS(2251), + [anon_sym_o_GT_PIPE] = ACTIONS(2251), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2251), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2251), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2251), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2251), + [anon_sym_RPAREN] = ACTIONS(2251), + [anon_sym_GT2] = ACTIONS(2253), + [anon_sym_DASH2] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(2251), + [anon_sym_RBRACE] = ACTIONS(2251), + [anon_sym_EQ_GT] = ACTIONS(2251), + [anon_sym_STAR2] = ACTIONS(2253), + [anon_sym_and2] = ACTIONS(2251), + [anon_sym_xor2] = ACTIONS(2251), + [anon_sym_or2] = ACTIONS(2251), + [anon_sym_not_DASHin2] = ACTIONS(2251), + [anon_sym_has2] = ACTIONS(2251), + [anon_sym_not_DASHhas2] = ACTIONS(2251), + [anon_sym_starts_DASHwith2] = ACTIONS(2251), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2251), + [anon_sym_ends_DASHwith2] = ACTIONS(2251), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2251), + [anon_sym_EQ_EQ2] = ACTIONS(2251), + [anon_sym_BANG_EQ2] = ACTIONS(2251), + [anon_sym_LT2] = ACTIONS(2253), + [anon_sym_LT_EQ2] = ACTIONS(2251), + [anon_sym_GT_EQ2] = ACTIONS(2251), + [anon_sym_EQ_TILDE2] = ACTIONS(2251), + [anon_sym_BANG_TILDE2] = ACTIONS(2251), + [anon_sym_like2] = ACTIONS(2251), + [anon_sym_not_DASHlike2] = ACTIONS(2251), + [anon_sym_STAR_STAR2] = ACTIONS(2251), + [anon_sym_PLUS_PLUS2] = ACTIONS(2251), + [anon_sym_SLASH2] = ACTIONS(2253), + [anon_sym_mod2] = ACTIONS(2251), + [anon_sym_SLASH_SLASH2] = ACTIONS(2251), + [anon_sym_PLUS2] = ACTIONS(2253), + [anon_sym_bit_DASHshl2] = ACTIONS(2251), + [anon_sym_bit_DASHshr2] = ACTIONS(2251), + [anon_sym_bit_DASHand2] = ACTIONS(2251), + [anon_sym_bit_DASHxor2] = ACTIONS(2251), + [anon_sym_bit_DASHor2] = ACTIONS(2251), + [anon_sym_err_GT] = ACTIONS(2253), + [anon_sym_out_GT] = ACTIONS(2253), + [anon_sym_e_GT] = ACTIONS(2253), + [anon_sym_o_GT] = ACTIONS(2253), + [anon_sym_err_PLUSout_GT] = ACTIONS(2253), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2253), + [anon_sym_o_PLUSe_GT] = ACTIONS(2253), + [anon_sym_e_PLUSo_GT] = ACTIONS(2253), + [anon_sym_err_GT_GT] = ACTIONS(2251), + [anon_sym_out_GT_GT] = ACTIONS(2251), + [anon_sym_e_GT_GT] = ACTIONS(2251), + [anon_sym_o_GT_GT] = ACTIONS(2251), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2251), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2251), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2251), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2251), + [anon_sym_POUND] = ACTIONS(3), + }, + [898] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2239), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(724), + [sym__unquoted_with_expr] = STATE(971), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(898), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2558), - [aux_sym_expr_unary_token1] = ACTIONS(2560), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), - [anon_sym_DOT_DOT_LT] = ACTIONS(2562), - [aux_sym__val_number_decimal_token1] = ACTIONS(2564), - [aux_sym__val_number_decimal_token2] = ACTIONS(2566), - [aux_sym__val_number_decimal_token3] = ACTIONS(2568), - [aux_sym__val_number_decimal_token4] = ACTIONS(2568), + [anon_sym_DOT_DOT] = ACTIONS(1961), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2570), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(881)] = { - [aux_sym__repeat_newline] = STATE(1086), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(881), - [anon_sym_in] = ACTIONS(2548), - [sym__newline] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_GT2] = ACTIONS(2550), - [anon_sym_DASH2] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_STAR2] = ACTIONS(2550), - [anon_sym_and2] = ACTIONS(2548), - [anon_sym_xor2] = ACTIONS(2548), - [anon_sym_or2] = ACTIONS(2548), - [anon_sym_not_DASHin2] = ACTIONS(2548), - [anon_sym_has2] = ACTIONS(2548), - [anon_sym_not_DASHhas2] = ACTIONS(2548), - [anon_sym_starts_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), - [anon_sym_ends_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), - [anon_sym_EQ_EQ2] = ACTIONS(2548), - [anon_sym_BANG_EQ2] = ACTIONS(2548), - [anon_sym_LT2] = ACTIONS(2550), - [anon_sym_LT_EQ2] = ACTIONS(2548), - [anon_sym_GT_EQ2] = ACTIONS(2548), - [anon_sym_EQ_TILDE2] = ACTIONS(2548), - [anon_sym_BANG_TILDE2] = ACTIONS(2548), - [anon_sym_like2] = ACTIONS(2548), - [anon_sym_not_DASHlike2] = ACTIONS(2548), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2548), - [anon_sym_PLUS_PLUS2] = ACTIONS(2548), - [anon_sym_SLASH2] = ACTIONS(2550), - [anon_sym_mod2] = ACTIONS(2548), - [anon_sym_SLASH_SLASH2] = ACTIONS(2548), - [anon_sym_PLUS2] = ACTIONS(2550), - [anon_sym_bit_DASHshl2] = ACTIONS(2548), - [anon_sym_bit_DASHshr2] = ACTIONS(2548), - [anon_sym_bit_DASHand2] = ACTIONS(2548), - [anon_sym_bit_DASHxor2] = ACTIONS(2548), - [anon_sym_bit_DASHor2] = ACTIONS(2548), - [anon_sym_err_GT] = ACTIONS(2550), - [anon_sym_out_GT] = ACTIONS(2550), - [anon_sym_e_GT] = ACTIONS(2550), - [anon_sym_o_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT] = ACTIONS(2550), - [anon_sym_err_GT_GT] = ACTIONS(2548), - [anon_sym_out_GT_GT] = ACTIONS(2548), - [anon_sym_e_GT_GT] = ACTIONS(2548), - [anon_sym_o_GT_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(882)] = { - [aux_sym__repeat_newline] = STATE(1087), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(882), - [anon_sym_in] = ACTIONS(2548), - [sym__newline] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_GT2] = ACTIONS(2550), - [anon_sym_DASH2] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_STAR2] = ACTIONS(2550), - [anon_sym_and2] = ACTIONS(2548), - [anon_sym_xor2] = ACTIONS(2548), - [anon_sym_or2] = ACTIONS(2548), - [anon_sym_not_DASHin2] = ACTIONS(2548), - [anon_sym_has2] = ACTIONS(2548), - [anon_sym_not_DASHhas2] = ACTIONS(2548), - [anon_sym_starts_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), - [anon_sym_ends_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), - [anon_sym_EQ_EQ2] = ACTIONS(2548), - [anon_sym_BANG_EQ2] = ACTIONS(2548), - [anon_sym_LT2] = ACTIONS(2550), - [anon_sym_LT_EQ2] = ACTIONS(2548), - [anon_sym_GT_EQ2] = ACTIONS(2548), - [anon_sym_EQ_TILDE2] = ACTIONS(2548), - [anon_sym_BANG_TILDE2] = ACTIONS(2548), - [anon_sym_like2] = ACTIONS(2548), - [anon_sym_not_DASHlike2] = ACTIONS(2548), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2548), - [anon_sym_PLUS_PLUS2] = ACTIONS(2548), - [anon_sym_SLASH2] = ACTIONS(2550), - [anon_sym_mod2] = ACTIONS(2548), - [anon_sym_SLASH_SLASH2] = ACTIONS(2548), - [anon_sym_PLUS2] = ACTIONS(2550), - [anon_sym_bit_DASHshl2] = ACTIONS(2548), - [anon_sym_bit_DASHshr2] = ACTIONS(2548), - [anon_sym_bit_DASHand2] = ACTIONS(2548), - [anon_sym_bit_DASHxor2] = ACTIONS(2548), - [anon_sym_bit_DASHor2] = ACTIONS(2548), - [anon_sym_err_GT] = ACTIONS(2550), - [anon_sym_out_GT] = ACTIONS(2550), - [anon_sym_e_GT] = ACTIONS(2550), - [anon_sym_o_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT] = ACTIONS(2550), - [anon_sym_err_GT_GT] = ACTIONS(2548), - [anon_sym_out_GT_GT] = ACTIONS(2548), - [anon_sym_e_GT_GT] = ACTIONS(2548), - [anon_sym_o_GT_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(883)] = { - [aux_sym__repeat_newline] = STATE(1088), - [sym__expr_parenthesized_immediate] = STATE(5069), - [sym_comment] = STATE(883), - [anon_sym_in] = ACTIONS(2548), - [sym__newline] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_GT2] = ACTIONS(2550), - [anon_sym_DASH2] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_STAR2] = ACTIONS(2550), - [anon_sym_and2] = ACTIONS(2548), - [anon_sym_xor2] = ACTIONS(2548), - [anon_sym_or2] = ACTIONS(2548), - [anon_sym_not_DASHin2] = ACTIONS(2548), - [anon_sym_has2] = ACTIONS(2548), - [anon_sym_not_DASHhas2] = ACTIONS(2548), - [anon_sym_starts_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), - [anon_sym_ends_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), - [anon_sym_EQ_EQ2] = ACTIONS(2548), - [anon_sym_BANG_EQ2] = ACTIONS(2548), - [anon_sym_LT2] = ACTIONS(2550), - [anon_sym_LT_EQ2] = ACTIONS(2548), - [anon_sym_GT_EQ2] = ACTIONS(2548), - [anon_sym_EQ_TILDE2] = ACTIONS(2548), - [anon_sym_BANG_TILDE2] = ACTIONS(2548), - [anon_sym_like2] = ACTIONS(2548), - [anon_sym_not_DASHlike2] = ACTIONS(2548), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2548), - [anon_sym_PLUS_PLUS2] = ACTIONS(2548), - [anon_sym_SLASH2] = ACTIONS(2550), - [anon_sym_mod2] = ACTIONS(2548), - [anon_sym_SLASH_SLASH2] = ACTIONS(2548), - [anon_sym_PLUS2] = ACTIONS(2550), - [anon_sym_bit_DASHshl2] = ACTIONS(2548), - [anon_sym_bit_DASHshr2] = ACTIONS(2548), - [anon_sym_bit_DASHand2] = ACTIONS(2548), - [anon_sym_bit_DASHxor2] = ACTIONS(2548), - [anon_sym_bit_DASHor2] = ACTIONS(2548), - [anon_sym_err_GT] = ACTIONS(2550), - [anon_sym_out_GT] = ACTIONS(2550), - [anon_sym_e_GT] = ACTIONS(2550), - [anon_sym_o_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT] = ACTIONS(2550), - [anon_sym_err_GT_GT] = ACTIONS(2548), - [anon_sym_out_GT_GT] = ACTIONS(2548), - [anon_sym_e_GT_GT] = ACTIONS(2548), - [anon_sym_o_GT_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(884)] = { - [sym_expr_unary] = STATE(1362), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_binary] = STATE(1362), - [sym__expr_binary_expression] = STATE(1313), - [sym_expr_parenthesized] = STATE(962), - [sym_val_range] = STATE(1362), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(1362), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(1137), - [sym_val_variable] = STATE(941), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(490), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), - [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(1119), - [sym__unquoted_with_expr] = STATE(1315), - [sym__unquoted_anonymous_prefix] = STATE(4915), - [sym_comment] = STATE(884), - [anon_sym_true] = ACTIONS(2510), - [anon_sym_false] = ACTIONS(2510), - [anon_sym_null] = ACTIONS(2512), - [aux_sym_cmd_identifier_token3] = ACTIONS(2514), - [aux_sym_cmd_identifier_token4] = ACTIONS(2514), - [aux_sym_cmd_identifier_token5] = ACTIONS(2514), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1322), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2516), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2518), - [anon_sym_DOT_DOT_LT] = ACTIONS(2518), - [aux_sym__val_number_decimal_token1] = ACTIONS(2520), - [aux_sym__val_number_decimal_token2] = ACTIONS(2522), - [aux_sym__val_number_decimal_token3] = ACTIONS(2524), - [aux_sym__val_number_decimal_token4] = ACTIONS(2524), - [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(2526), - [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(2528), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(107), - }, - [STATE(885)] = { - [sym_comment] = STATE(885), - [anon_sym_export] = ACTIONS(2130), - [anon_sym_alias] = ACTIONS(2132), - [anon_sym_let] = ACTIONS(2132), - [anon_sym_mut] = ACTIONS(2132), - [anon_sym_const] = ACTIONS(2132), - [aux_sym_cmd_identifier_token1] = ACTIONS(2130), - [anon_sym_def] = ACTIONS(2132), - [anon_sym_use] = ACTIONS(2132), - [anon_sym_export_DASHenv] = ACTIONS(2132), - [anon_sym_extern] = ACTIONS(2132), - [anon_sym_module] = ACTIONS(2132), - [anon_sym_for] = ACTIONS(2132), - [anon_sym_loop] = ACTIONS(2132), - [anon_sym_while] = ACTIONS(2132), - [anon_sym_if] = ACTIONS(2132), - [anon_sym_else] = ACTIONS(2132), - [anon_sym_try] = ACTIONS(2132), - [anon_sym_catch] = ACTIONS(2132), - [anon_sym_finally] = ACTIONS(2132), - [anon_sym_match] = ACTIONS(2132), - [anon_sym_in] = ACTIONS(2130), - [anon_sym_true] = ACTIONS(2132), - [anon_sym_false] = ACTIONS(2132), - [anon_sym_null] = ACTIONS(2132), - [aux_sym_cmd_identifier_token3] = ACTIONS(2132), - [aux_sym_cmd_identifier_token4] = ACTIONS(2132), - [aux_sym_cmd_identifier_token5] = ACTIONS(2132), - [sym__newline] = 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_LBRACK] = ACTIONS(2132), - [anon_sym_LPAREN] = ACTIONS(2132), - [anon_sym_DOLLAR] = ACTIONS(2130), - [anon_sym_DASH2] = ACTIONS(2130), - [anon_sym_LBRACE] = ACTIONS(2132), - [anon_sym_DOT_DOT] = ACTIONS(2130), - [anon_sym_where] = ACTIONS(2132), - [aux_sym_expr_unary_token1] = ACTIONS(2132), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2132), - [anon_sym_DOT_DOT_LT] = ACTIONS(2132), - [aux_sym__val_number_decimal_token1] = ACTIONS(2130), - [aux_sym__val_number_decimal_token2] = ACTIONS(2132), - [aux_sym__val_number_decimal_token3] = ACTIONS(2132), - [aux_sym__val_number_decimal_token4] = ACTIONS(2132), - [aux_sym__val_number_token1] = ACTIONS(2132), - [aux_sym__val_number_token2] = ACTIONS(2132), - [aux_sym__val_number_token3] = ACTIONS(2132), - [anon_sym_0b] = ACTIONS(2130), - [anon_sym_0o] = ACTIONS(2130), - [anon_sym_0x] = ACTIONS(2130), - [sym_val_date] = ACTIONS(2132), - [anon_sym_DQUOTE] = ACTIONS(2132), - [anon_sym_SQUOTE] = ACTIONS(2132), - [anon_sym_BQUOTE] = ACTIONS(2132), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2132), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2132), - [anon_sym_CARET] = ACTIONS(2132), - [anon_sym_PERCENT] = ACTIONS(2132), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2132), - }, - [STATE(886)] = { - [sym_comment] = STATE(886), - [anon_sym_export] = ACTIONS(2572), - [anon_sym_alias] = ACTIONS(2574), - [anon_sym_let] = ACTIONS(2574), - [anon_sym_mut] = ACTIONS(2574), - [anon_sym_const] = ACTIONS(2574), - [aux_sym_cmd_identifier_token1] = ACTIONS(2572), - [anon_sym_def] = ACTIONS(2574), - [anon_sym_use] = ACTIONS(2574), - [anon_sym_export_DASHenv] = ACTIONS(2574), - [anon_sym_extern] = ACTIONS(2574), - [anon_sym_module] = ACTIONS(2574), - [anon_sym_for] = ACTIONS(2574), - [anon_sym_loop] = ACTIONS(2574), - [anon_sym_while] = ACTIONS(2574), - [anon_sym_if] = ACTIONS(2574), - [anon_sym_else] = ACTIONS(2574), - [anon_sym_try] = ACTIONS(2574), - [anon_sym_catch] = ACTIONS(2574), - [anon_sym_finally] = ACTIONS(2574), - [anon_sym_match] = ACTIONS(2574), - [anon_sym_in] = ACTIONS(2572), - [anon_sym_true] = ACTIONS(2574), - [anon_sym_false] = ACTIONS(2574), - [anon_sym_null] = ACTIONS(2574), - [aux_sym_cmd_identifier_token3] = ACTIONS(2574), - [aux_sym_cmd_identifier_token4] = ACTIONS(2574), - [aux_sym_cmd_identifier_token5] = ACTIONS(2574), - [sym__newline] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_err_GT_PIPE] = ACTIONS(2126), - [anon_sym_out_GT_PIPE] = ACTIONS(2126), - [anon_sym_e_GT_PIPE] = ACTIONS(2126), - [anon_sym_o_GT_PIPE] = ACTIONS(2126), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2126), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2126), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2126), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2574), - [anon_sym_LPAREN] = ACTIONS(2574), - [anon_sym_DOLLAR] = ACTIONS(2572), - [anon_sym_DASH2] = ACTIONS(2572), - [anon_sym_LBRACE] = ACTIONS(2574), - [anon_sym_DOT_DOT] = ACTIONS(2572), - [anon_sym_where] = ACTIONS(2574), - [aux_sym_expr_unary_token1] = ACTIONS(2574), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2574), - [anon_sym_DOT_DOT_LT] = ACTIONS(2574), - [aux_sym__val_number_decimal_token1] = ACTIONS(2572), - [aux_sym__val_number_decimal_token2] = ACTIONS(2574), - [aux_sym__val_number_decimal_token3] = ACTIONS(2574), - [aux_sym__val_number_decimal_token4] = ACTIONS(2574), - [aux_sym__val_number_token1] = ACTIONS(2574), - [aux_sym__val_number_token2] = ACTIONS(2574), - [aux_sym__val_number_token3] = ACTIONS(2574), - [anon_sym_0b] = ACTIONS(2572), - [anon_sym_0o] = ACTIONS(2572), - [anon_sym_0x] = ACTIONS(2572), - [sym_val_date] = ACTIONS(2574), - [anon_sym_DQUOTE] = ACTIONS(2574), - [anon_sym_SQUOTE] = ACTIONS(2574), - [anon_sym_BQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2574), - [anon_sym_CARET] = ACTIONS(2574), - [anon_sym_PERCENT] = ACTIONS(2574), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2574), - }, - [STATE(887)] = { - [sym_comment] = STATE(887), - [anon_sym_in] = ACTIONS(2576), - [sym__newline] = ACTIONS(2576), - [anon_sym_SEMI] = ACTIONS(2576), - [anon_sym_PIPE] = ACTIONS(2576), - [anon_sym_err_GT_PIPE] = ACTIONS(2576), - [anon_sym_out_GT_PIPE] = ACTIONS(2576), - [anon_sym_e_GT_PIPE] = ACTIONS(2576), - [anon_sym_o_GT_PIPE] = ACTIONS(2576), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2576), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2576), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2576), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2576), - [anon_sym_RPAREN] = ACTIONS(2576), - [anon_sym_GT2] = ACTIONS(2578), - [anon_sym_DASH2] = ACTIONS(2576), - [anon_sym_LBRACE] = ACTIONS(2576), - [anon_sym_RBRACE] = ACTIONS(2576), - [anon_sym_STAR2] = ACTIONS(2578), - [anon_sym_and2] = ACTIONS(2576), - [anon_sym_xor2] = ACTIONS(2576), - [anon_sym_or2] = ACTIONS(2576), - [anon_sym_not_DASHin2] = ACTIONS(2576), - [anon_sym_has2] = ACTIONS(2576), - [anon_sym_not_DASHhas2] = ACTIONS(2576), - [anon_sym_starts_DASHwith2] = ACTIONS(2576), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2576), - [anon_sym_ends_DASHwith2] = ACTIONS(2576), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2576), - [anon_sym_EQ_EQ2] = ACTIONS(2576), - [anon_sym_BANG_EQ2] = ACTIONS(2576), - [anon_sym_LT2] = ACTIONS(2578), - [anon_sym_LT_EQ2] = ACTIONS(2576), - [anon_sym_GT_EQ2] = ACTIONS(2576), - [anon_sym_EQ_TILDE2] = ACTIONS(2576), - [anon_sym_BANG_TILDE2] = ACTIONS(2576), - [anon_sym_like2] = ACTIONS(2576), - [anon_sym_not_DASHlike2] = ACTIONS(2576), - [anon_sym_LPAREN2] = ACTIONS(2576), - [anon_sym_STAR_STAR2] = ACTIONS(2576), - [anon_sym_PLUS_PLUS2] = ACTIONS(2576), - [anon_sym_SLASH2] = ACTIONS(2578), - [anon_sym_mod2] = ACTIONS(2576), - [anon_sym_SLASH_SLASH2] = ACTIONS(2576), - [anon_sym_PLUS2] = ACTIONS(2578), - [anon_sym_bit_DASHshl2] = ACTIONS(2576), - [anon_sym_bit_DASHshr2] = ACTIONS(2576), - [anon_sym_bit_DASHand2] = ACTIONS(2576), - [anon_sym_bit_DASHxor2] = ACTIONS(2576), - [anon_sym_bit_DASHor2] = ACTIONS(2576), - [anon_sym_err_GT] = ACTIONS(2578), - [anon_sym_out_GT] = ACTIONS(2578), - [anon_sym_e_GT] = ACTIONS(2578), - [anon_sym_o_GT] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT] = ACTIONS(2578), - [anon_sym_err_GT_GT] = ACTIONS(2576), - [anon_sym_out_GT_GT] = ACTIONS(2576), - [anon_sym_e_GT_GT] = ACTIONS(2576), - [anon_sym_o_GT_GT] = ACTIONS(2576), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2576), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2576), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2576), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2576), - [sym__unquoted_pattern] = ACTIONS(2578), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(888)] = { - [sym_comment] = STATE(888), + [899] = { + [sym_comment] = STATE(899), + [anon_sym_export] = ACTIONS(2578), + [anon_sym_alias] = ACTIONS(2580), + [anon_sym_let] = ACTIONS(2580), + [anon_sym_mut] = ACTIONS(2580), + [anon_sym_const] = ACTIONS(2580), + [aux_sym_cmd_identifier_token1] = ACTIONS(2578), + [anon_sym_def] = ACTIONS(2580), + [anon_sym_use] = ACTIONS(2580), + [anon_sym_export_DASHenv] = ACTIONS(2580), + [anon_sym_extern] = ACTIONS(2580), + [anon_sym_module] = ACTIONS(2580), + [anon_sym_for] = ACTIONS(2580), + [anon_sym_loop] = ACTIONS(2580), + [anon_sym_while] = ACTIONS(2580), [anon_sym_if] = ACTIONS(2580), - [anon_sym_in] = ACTIONS(2580), + [anon_sym_else] = ACTIONS(2580), + [anon_sym_try] = ACTIONS(2580), + [anon_sym_catch] = ACTIONS(2580), + [anon_sym_finally] = ACTIONS(2580), + [anon_sym_match] = ACTIONS(2580), + [anon_sym_in] = ACTIONS(2578), + [anon_sym_true] = ACTIONS(2580), + [anon_sym_false] = ACTIONS(2580), + [anon_sym_null] = ACTIONS(2580), + [aux_sym_cmd_identifier_token3] = ACTIONS(2580), + [aux_sym_cmd_identifier_token4] = ACTIONS(2580), + [aux_sym_cmd_identifier_token5] = ACTIONS(2580), [sym__newline] = ACTIONS(2580), - [anon_sym_SEMI] = ACTIONS(2580), [anon_sym_PIPE] = ACTIONS(2580), [anon_sym_err_GT_PIPE] = ACTIONS(2580), [anon_sym_out_GT_PIPE] = ACTIONS(2580), @@ -115915,2862 +116657,2137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2580), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2580), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2580), - [anon_sym_RPAREN] = ACTIONS(2580), - [anon_sym_GT2] = ACTIONS(2582), - [anon_sym_DASH2] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(2580), + [anon_sym_LPAREN] = ACTIONS(2580), + [anon_sym_DOLLAR] = ACTIONS(2578), + [anon_sym_DASH2] = ACTIONS(2578), [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_RBRACE] = ACTIONS(2580), - [anon_sym_EQ_GT] = ACTIONS(2580), - [anon_sym_STAR2] = ACTIONS(2582), - [anon_sym_and2] = ACTIONS(2580), - [anon_sym_xor2] = ACTIONS(2580), - [anon_sym_or2] = ACTIONS(2580), - [anon_sym_not_DASHin2] = ACTIONS(2580), - [anon_sym_has2] = ACTIONS(2580), - [anon_sym_not_DASHhas2] = ACTIONS(2580), - [anon_sym_starts_DASHwith2] = ACTIONS(2580), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2580), - [anon_sym_ends_DASHwith2] = ACTIONS(2580), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2580), - [anon_sym_EQ_EQ2] = ACTIONS(2580), - [anon_sym_BANG_EQ2] = ACTIONS(2580), - [anon_sym_LT2] = ACTIONS(2582), - [anon_sym_LT_EQ2] = ACTIONS(2580), - [anon_sym_GT_EQ2] = ACTIONS(2580), - [anon_sym_EQ_TILDE2] = ACTIONS(2580), - [anon_sym_BANG_TILDE2] = ACTIONS(2580), - [anon_sym_like2] = ACTIONS(2580), - [anon_sym_not_DASHlike2] = ACTIONS(2580), - [anon_sym_STAR_STAR2] = ACTIONS(2580), - [anon_sym_PLUS_PLUS2] = ACTIONS(2580), - [anon_sym_SLASH2] = ACTIONS(2582), - [anon_sym_mod2] = ACTIONS(2580), - [anon_sym_SLASH_SLASH2] = ACTIONS(2580), - [anon_sym_PLUS2] = ACTIONS(2582), - [anon_sym_bit_DASHshl2] = ACTIONS(2580), - [anon_sym_bit_DASHshr2] = ACTIONS(2580), - [anon_sym_bit_DASHand2] = ACTIONS(2580), - [anon_sym_bit_DASHxor2] = ACTIONS(2580), - [anon_sym_bit_DASHor2] = ACTIONS(2580), - [anon_sym_err_GT] = ACTIONS(2582), - [anon_sym_out_GT] = ACTIONS(2582), - [anon_sym_e_GT] = ACTIONS(2582), - [anon_sym_o_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT] = ACTIONS(2582), - [anon_sym_err_GT_GT] = ACTIONS(2580), - [anon_sym_out_GT_GT] = ACTIONS(2580), - [anon_sym_e_GT_GT] = ACTIONS(2580), - [anon_sym_o_GT_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2580), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(889)] = { - [sym_comment] = STATE(889), - [anon_sym_if] = ACTIONS(2154), - [anon_sym_in] = ACTIONS(2154), - [sym__newline] = ACTIONS(2154), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_PIPE] = ACTIONS(2154), - [anon_sym_err_GT_PIPE] = ACTIONS(2154), - [anon_sym_out_GT_PIPE] = ACTIONS(2154), - [anon_sym_e_GT_PIPE] = ACTIONS(2154), - [anon_sym_o_GT_PIPE] = ACTIONS(2154), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), - [anon_sym_RPAREN] = ACTIONS(2154), - [anon_sym_GT2] = ACTIONS(2156), - [anon_sym_DASH2] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_EQ_GT] = ACTIONS(2154), - [anon_sym_STAR2] = ACTIONS(2156), - [anon_sym_and2] = ACTIONS(2154), - [anon_sym_xor2] = ACTIONS(2154), - [anon_sym_or2] = ACTIONS(2154), - [anon_sym_not_DASHin2] = ACTIONS(2154), - [anon_sym_has2] = ACTIONS(2154), - [anon_sym_not_DASHhas2] = ACTIONS(2154), - [anon_sym_starts_DASHwith2] = ACTIONS(2154), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), - [anon_sym_ends_DASHwith2] = ACTIONS(2154), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), - [anon_sym_EQ_EQ2] = ACTIONS(2154), - [anon_sym_BANG_EQ2] = ACTIONS(2154), - [anon_sym_LT2] = ACTIONS(2156), - [anon_sym_LT_EQ2] = ACTIONS(2154), - [anon_sym_GT_EQ2] = ACTIONS(2154), - [anon_sym_EQ_TILDE2] = ACTIONS(2154), - [anon_sym_BANG_TILDE2] = ACTIONS(2154), - [anon_sym_like2] = ACTIONS(2154), - [anon_sym_not_DASHlike2] = ACTIONS(2154), - [anon_sym_STAR_STAR2] = ACTIONS(2154), - [anon_sym_PLUS_PLUS2] = ACTIONS(2154), - [anon_sym_SLASH2] = ACTIONS(2156), - [anon_sym_mod2] = ACTIONS(2154), - [anon_sym_SLASH_SLASH2] = ACTIONS(2154), - [anon_sym_PLUS2] = ACTIONS(2156), - [anon_sym_bit_DASHshl2] = ACTIONS(2154), - [anon_sym_bit_DASHshr2] = ACTIONS(2154), - [anon_sym_bit_DASHand2] = ACTIONS(2154), - [anon_sym_bit_DASHxor2] = ACTIONS(2154), - [anon_sym_bit_DASHor2] = ACTIONS(2154), - [anon_sym_err_GT] = ACTIONS(2156), - [anon_sym_out_GT] = ACTIONS(2156), - [anon_sym_e_GT] = ACTIONS(2156), - [anon_sym_o_GT] = ACTIONS(2156), - [anon_sym_err_PLUSout_GT] = ACTIONS(2156), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), - [anon_sym_o_PLUSe_GT] = ACTIONS(2156), - [anon_sym_e_PLUSo_GT] = ACTIONS(2156), - [anon_sym_err_GT_GT] = ACTIONS(2154), - [anon_sym_out_GT_GT] = ACTIONS(2154), - [anon_sym_e_GT_GT] = ACTIONS(2154), - [anon_sym_o_GT_GT] = ACTIONS(2154), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_DOT_DOT] = ACTIONS(2578), + [anon_sym_where] = ACTIONS(2580), + [aux_sym_expr_unary_token1] = ACTIONS(2580), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2580), + [anon_sym_DOT_DOT_LT] = ACTIONS(2580), + [aux_sym__val_number_decimal_token1] = ACTIONS(2578), + [aux_sym__val_number_decimal_token2] = ACTIONS(2580), + [aux_sym__val_number_decimal_token3] = ACTIONS(2580), + [aux_sym__val_number_decimal_token4] = ACTIONS(2580), + [aux_sym__val_number_token1] = ACTIONS(2580), + [aux_sym__val_number_token2] = ACTIONS(2580), + [aux_sym__val_number_token3] = ACTIONS(2580), + [anon_sym_0b] = ACTIONS(2578), + [anon_sym_0o] = ACTIONS(2578), + [anon_sym_0x] = ACTIONS(2578), + [sym_val_date] = ACTIONS(2580), + [anon_sym_DQUOTE] = ACTIONS(2580), + [anon_sym_SQUOTE] = ACTIONS(2580), + [anon_sym_BQUOTE] = ACTIONS(2580), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2580), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2580), + [anon_sym_CARET] = ACTIONS(2580), + [anon_sym_PERCENT] = ACTIONS(2580), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2580), + }, + [900] = { + [aux_sym__repeat_newline] = STATE(1060), + [sym__expr_parenthesized_immediate] = STATE(5101), + [sym_comment] = STATE(900), + [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_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_LPAREN2] = ACTIONS(1830), + [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_POUND] = ACTIONS(3), }, - [STATE(890)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(2237), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(700), - [sym__unquoted_with_expr] = STATE(964), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(890), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [901] = { + [sym_comment] = STATE(901), + [anon_sym_if] = ACTIONS(2582), + [anon_sym_in] = ACTIONS(2582), + [sym__newline] = ACTIONS(2582), + [anon_sym_SEMI] = ACTIONS(2582), + [anon_sym_PIPE] = ACTIONS(2582), + [anon_sym_err_GT_PIPE] = ACTIONS(2582), + [anon_sym_out_GT_PIPE] = ACTIONS(2582), + [anon_sym_e_GT_PIPE] = ACTIONS(2582), + [anon_sym_o_GT_PIPE] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2582), + [anon_sym_RPAREN] = ACTIONS(2582), + [anon_sym_GT2] = ACTIONS(2584), + [anon_sym_DASH2] = ACTIONS(2582), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_RBRACE] = ACTIONS(2582), + [anon_sym_EQ_GT] = ACTIONS(2582), + [anon_sym_STAR2] = ACTIONS(2584), + [anon_sym_and2] = ACTIONS(2582), + [anon_sym_xor2] = ACTIONS(2582), + [anon_sym_or2] = ACTIONS(2582), + [anon_sym_not_DASHin2] = ACTIONS(2582), + [anon_sym_has2] = ACTIONS(2582), + [anon_sym_not_DASHhas2] = ACTIONS(2582), + [anon_sym_starts_DASHwith2] = ACTIONS(2582), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2582), + [anon_sym_ends_DASHwith2] = ACTIONS(2582), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2582), + [anon_sym_EQ_EQ2] = ACTIONS(2582), + [anon_sym_BANG_EQ2] = ACTIONS(2582), + [anon_sym_LT2] = ACTIONS(2584), + [anon_sym_LT_EQ2] = ACTIONS(2582), + [anon_sym_GT_EQ2] = ACTIONS(2582), + [anon_sym_EQ_TILDE2] = ACTIONS(2582), + [anon_sym_BANG_TILDE2] = ACTIONS(2582), + [anon_sym_like2] = ACTIONS(2582), + [anon_sym_not_DASHlike2] = ACTIONS(2582), + [anon_sym_STAR_STAR2] = ACTIONS(2582), + [anon_sym_PLUS_PLUS2] = ACTIONS(2582), + [anon_sym_SLASH2] = ACTIONS(2584), + [anon_sym_mod2] = ACTIONS(2582), + [anon_sym_SLASH_SLASH2] = ACTIONS(2582), + [anon_sym_PLUS2] = ACTIONS(2584), + [anon_sym_bit_DASHshl2] = ACTIONS(2582), + [anon_sym_bit_DASHshr2] = ACTIONS(2582), + [anon_sym_bit_DASHand2] = ACTIONS(2582), + [anon_sym_bit_DASHxor2] = ACTIONS(2582), + [anon_sym_bit_DASHor2] = ACTIONS(2582), + [anon_sym_err_GT] = ACTIONS(2584), + [anon_sym_out_GT] = ACTIONS(2584), + [anon_sym_e_GT] = ACTIONS(2584), + [anon_sym_o_GT] = ACTIONS(2584), + [anon_sym_err_PLUSout_GT] = ACTIONS(2584), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2584), + [anon_sym_o_PLUSe_GT] = ACTIONS(2584), + [anon_sym_e_PLUSo_GT] = ACTIONS(2584), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), + [anon_sym_POUND] = ACTIONS(3), + }, + [902] = { + [sym_cell_path] = STATE(1369), + [sym_path] = STATE(712), + [sym_comment] = STATE(902), + [aux_sym__where_predicate_lhs_repeat1] = STATE(580), + [ts_builtin_sym_end] = ACTIONS(1894), + [anon_sym_in] = ACTIONS(1894), + [sym__newline] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_err_GT_PIPE] = ACTIONS(1894), + [anon_sym_out_GT_PIPE] = ACTIONS(1894), + [anon_sym_e_GT_PIPE] = ACTIONS(1894), + [anon_sym_o_GT_PIPE] = ACTIONS(1894), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1894), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1894), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1894), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1894), + [anon_sym_GT2] = ACTIONS(1896), + [anon_sym_DASH2] = ACTIONS(1894), + [anon_sym_STAR2] = ACTIONS(1896), + [anon_sym_and2] = ACTIONS(1894), + [anon_sym_xor2] = ACTIONS(1894), + [anon_sym_or2] = ACTIONS(1894), + [anon_sym_not_DASHin2] = ACTIONS(1894), + [anon_sym_has2] = ACTIONS(1894), + [anon_sym_not_DASHhas2] = ACTIONS(1894), + [anon_sym_starts_DASHwith2] = ACTIONS(1894), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1894), + [anon_sym_ends_DASHwith2] = ACTIONS(1894), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1894), + [anon_sym_EQ_EQ2] = ACTIONS(1894), + [anon_sym_BANG_EQ2] = ACTIONS(1894), + [anon_sym_LT2] = ACTIONS(1896), + [anon_sym_LT_EQ2] = ACTIONS(1894), + [anon_sym_GT_EQ2] = ACTIONS(1894), + [anon_sym_EQ_TILDE2] = ACTIONS(1894), + [anon_sym_BANG_TILDE2] = ACTIONS(1894), + [anon_sym_like2] = ACTIONS(1894), + [anon_sym_not_DASHlike2] = ACTIONS(1894), + [anon_sym_STAR_STAR2] = ACTIONS(1894), + [anon_sym_PLUS_PLUS2] = ACTIONS(1894), + [anon_sym_SLASH2] = ACTIONS(1896), + [anon_sym_mod2] = ACTIONS(1894), + [anon_sym_SLASH_SLASH2] = ACTIONS(1894), + [anon_sym_PLUS2] = ACTIONS(1896), + [anon_sym_bit_DASHshl2] = ACTIONS(1894), + [anon_sym_bit_DASHshr2] = ACTIONS(1894), + [anon_sym_bit_DASHand2] = ACTIONS(1894), + [anon_sym_bit_DASHxor2] = ACTIONS(1894), + [anon_sym_bit_DASHor2] = ACTIONS(1894), + [anon_sym_DOT2] = ACTIONS(2417), + [anon_sym_err_GT] = ACTIONS(1896), + [anon_sym_out_GT] = ACTIONS(1896), + [anon_sym_e_GT] = ACTIONS(1896), + [anon_sym_o_GT] = ACTIONS(1896), + [anon_sym_err_PLUSout_GT] = ACTIONS(1896), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1896), + [anon_sym_o_PLUSe_GT] = ACTIONS(1896), + [anon_sym_e_PLUSo_GT] = ACTIONS(1896), + [anon_sym_err_GT_GT] = ACTIONS(1894), + [anon_sym_out_GT_GT] = ACTIONS(1894), + [anon_sym_e_GT_GT] = ACTIONS(1894), + [anon_sym_o_GT_GT] = ACTIONS(1894), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1894), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1894), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1894), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1894), + [anon_sym_POUND] = ACTIONS(3), + }, + [903] = { + [sym_comment] = STATE(903), + [anon_sym_in] = ACTIONS(1810), + [sym__newline] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_err_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_GT_PIPE] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_GT2] = ACTIONS(1812), + [anon_sym_DASH2] = ACTIONS(1810), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_STAR2] = ACTIONS(1812), + [anon_sym_and2] = ACTIONS(1810), + [anon_sym_xor2] = ACTIONS(1810), + [anon_sym_or2] = ACTIONS(1810), + [anon_sym_not_DASHin2] = ACTIONS(1810), + [anon_sym_has2] = ACTIONS(1810), + [anon_sym_not_DASHhas2] = ACTIONS(1810), + [anon_sym_starts_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1810), + [anon_sym_ends_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1810), + [anon_sym_EQ_EQ2] = ACTIONS(1810), + [anon_sym_BANG_EQ2] = ACTIONS(1810), + [anon_sym_LT2] = ACTIONS(1812), + [anon_sym_LT_EQ2] = ACTIONS(1810), + [anon_sym_GT_EQ2] = ACTIONS(1810), + [anon_sym_EQ_TILDE2] = ACTIONS(1810), + [anon_sym_BANG_TILDE2] = ACTIONS(1810), + [anon_sym_like2] = ACTIONS(1810), + [anon_sym_not_DASHlike2] = ACTIONS(1810), + [anon_sym_STAR_STAR2] = ACTIONS(1810), + [anon_sym_PLUS_PLUS2] = ACTIONS(1810), + [anon_sym_SLASH2] = ACTIONS(1812), + [anon_sym_mod2] = ACTIONS(1810), + [anon_sym_SLASH_SLASH2] = ACTIONS(1810), + [anon_sym_PLUS2] = ACTIONS(1812), + [anon_sym_bit_DASHshl2] = ACTIONS(1810), + [anon_sym_bit_DASHshr2] = ACTIONS(1810), + [anon_sym_bit_DASHand2] = ACTIONS(1810), + [anon_sym_bit_DASHxor2] = ACTIONS(1810), + [anon_sym_bit_DASHor2] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(2586), + [aux_sym__immediate_decimal_token5] = ACTIONS(1816), + [anon_sym_err_GT] = ACTIONS(1812), + [anon_sym_out_GT] = ACTIONS(1812), + [anon_sym_e_GT] = ACTIONS(1812), + [anon_sym_o_GT] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT] = ACTIONS(1812), + [anon_sym_err_GT_GT] = ACTIONS(1810), + [anon_sym_out_GT_GT] = ACTIONS(1810), + [anon_sym_e_GT_GT] = ACTIONS(1810), + [anon_sym_o_GT_GT] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), + [anon_sym_POUND] = ACTIONS(3), + }, + [904] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2243), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(728), + [sym__unquoted_with_expr] = STATE(945), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(904), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(891)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(2252), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(701), - [sym__unquoted_with_expr] = STATE(965), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(891), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [905] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(940), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(698), + [sym__unquoted_with_expr] = STATE(941), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(905), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(892)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(2256), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(702), - [sym__unquoted_with_expr] = STATE(966), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(892), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [906] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2248), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(735), + [sym__unquoted_with_expr] = STATE(939), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(906), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(893)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(2245), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(703), - [sym__unquoted_with_expr] = STATE(967), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(893), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [907] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2250), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(727), + [sym__unquoted_with_expr] = STATE(931), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(907), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(894)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(1692), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(700), - [sym__unquoted_with_expr] = STATE(964), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(894), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [908] = { + [sym_cell_path] = STATE(1347), + [sym_path] = STATE(712), + [sym_comment] = STATE(908), + [aux_sym__where_predicate_lhs_repeat1] = STATE(580), + [ts_builtin_sym_end] = ACTIONS(1904), + [anon_sym_in] = ACTIONS(1904), + [sym__newline] = ACTIONS(1904), + [anon_sym_SEMI] = ACTIONS(1904), + [anon_sym_PIPE] = ACTIONS(1904), + [anon_sym_err_GT_PIPE] = ACTIONS(1904), + [anon_sym_out_GT_PIPE] = ACTIONS(1904), + [anon_sym_e_GT_PIPE] = ACTIONS(1904), + [anon_sym_o_GT_PIPE] = ACTIONS(1904), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1904), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1904), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1904), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1904), + [anon_sym_GT2] = ACTIONS(1906), + [anon_sym_DASH2] = ACTIONS(1904), + [anon_sym_STAR2] = ACTIONS(1906), + [anon_sym_and2] = ACTIONS(1904), + [anon_sym_xor2] = ACTIONS(1904), + [anon_sym_or2] = ACTIONS(1904), + [anon_sym_not_DASHin2] = ACTIONS(1904), + [anon_sym_has2] = ACTIONS(1904), + [anon_sym_not_DASHhas2] = ACTIONS(1904), + [anon_sym_starts_DASHwith2] = ACTIONS(1904), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1904), + [anon_sym_ends_DASHwith2] = ACTIONS(1904), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1904), + [anon_sym_EQ_EQ2] = ACTIONS(1904), + [anon_sym_BANG_EQ2] = ACTIONS(1904), + [anon_sym_LT2] = ACTIONS(1906), + [anon_sym_LT_EQ2] = ACTIONS(1904), + [anon_sym_GT_EQ2] = ACTIONS(1904), + [anon_sym_EQ_TILDE2] = ACTIONS(1904), + [anon_sym_BANG_TILDE2] = ACTIONS(1904), + [anon_sym_like2] = ACTIONS(1904), + [anon_sym_not_DASHlike2] = ACTIONS(1904), + [anon_sym_STAR_STAR2] = ACTIONS(1904), + [anon_sym_PLUS_PLUS2] = ACTIONS(1904), + [anon_sym_SLASH2] = ACTIONS(1906), + [anon_sym_mod2] = ACTIONS(1904), + [anon_sym_SLASH_SLASH2] = ACTIONS(1904), + [anon_sym_PLUS2] = ACTIONS(1906), + [anon_sym_bit_DASHshl2] = ACTIONS(1904), + [anon_sym_bit_DASHshr2] = ACTIONS(1904), + [anon_sym_bit_DASHand2] = ACTIONS(1904), + [anon_sym_bit_DASHxor2] = ACTIONS(1904), + [anon_sym_bit_DASHor2] = ACTIONS(1904), + [anon_sym_DOT2] = ACTIONS(2417), + [anon_sym_err_GT] = ACTIONS(1906), + [anon_sym_out_GT] = ACTIONS(1906), + [anon_sym_e_GT] = ACTIONS(1906), + [anon_sym_o_GT] = ACTIONS(1906), + [anon_sym_err_PLUSout_GT] = ACTIONS(1906), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1906), + [anon_sym_o_PLUSe_GT] = ACTIONS(1906), + [anon_sym_e_PLUSo_GT] = ACTIONS(1906), + [anon_sym_err_GT_GT] = ACTIONS(1904), + [anon_sym_out_GT_GT] = ACTIONS(1904), + [anon_sym_e_GT_GT] = ACTIONS(1904), + [anon_sym_o_GT_GT] = ACTIONS(1904), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1904), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1904), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1904), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1904), + [anon_sym_POUND] = ACTIONS(3), + }, + [909] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2252), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(720), + [sym__unquoted_with_expr] = STATE(929), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(909), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(895)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(1693), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(701), - [sym__unquoted_with_expr] = STATE(965), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(895), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [910] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2253), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(711), + [sym__unquoted_with_expr] = STATE(928), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(910), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(896)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(1694), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(702), - [sym__unquoted_with_expr] = STATE(966), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(896), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [911] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2255), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(721), + [sym__unquoted_with_expr] = STATE(933), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(911), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(897)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(1695), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(703), - [sym__unquoted_with_expr] = STATE(967), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(897), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [912] = { + [sym_comment] = STATE(912), + [anon_sym_in] = ACTIONS(2588), + [sym__newline] = ACTIONS(2588), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2588), + [anon_sym_err_GT_PIPE] = ACTIONS(2588), + [anon_sym_out_GT_PIPE] = ACTIONS(2588), + [anon_sym_e_GT_PIPE] = ACTIONS(2588), + [anon_sym_o_GT_PIPE] = ACTIONS(2588), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2588), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2588), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2588), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2588), + [anon_sym_RPAREN] = ACTIONS(2588), + [anon_sym_GT2] = ACTIONS(2590), + [anon_sym_DASH2] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_RBRACE] = ACTIONS(2588), + [anon_sym_EQ_GT] = ACTIONS(2588), + [anon_sym_STAR2] = ACTIONS(2590), + [anon_sym_and2] = ACTIONS(2588), + [anon_sym_xor2] = ACTIONS(2588), + [anon_sym_or2] = ACTIONS(2588), + [anon_sym_not_DASHin2] = ACTIONS(2588), + [anon_sym_has2] = ACTIONS(2588), + [anon_sym_not_DASHhas2] = ACTIONS(2588), + [anon_sym_starts_DASHwith2] = ACTIONS(2588), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2588), + [anon_sym_ends_DASHwith2] = ACTIONS(2588), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2588), + [anon_sym_EQ_EQ2] = ACTIONS(2588), + [anon_sym_BANG_EQ2] = ACTIONS(2588), + [anon_sym_LT2] = ACTIONS(2590), + [anon_sym_LT_EQ2] = ACTIONS(2588), + [anon_sym_GT_EQ2] = ACTIONS(2588), + [anon_sym_EQ_TILDE2] = ACTIONS(2588), + [anon_sym_BANG_TILDE2] = ACTIONS(2588), + [anon_sym_like2] = ACTIONS(2588), + [anon_sym_not_DASHlike2] = ACTIONS(2588), + [anon_sym_STAR_STAR2] = ACTIONS(2588), + [anon_sym_PLUS_PLUS2] = ACTIONS(2588), + [anon_sym_SLASH2] = ACTIONS(2590), + [anon_sym_mod2] = ACTIONS(2588), + [anon_sym_SLASH_SLASH2] = ACTIONS(2588), + [anon_sym_PLUS2] = ACTIONS(2590), + [anon_sym_bit_DASHshl2] = ACTIONS(2588), + [anon_sym_bit_DASHshr2] = ACTIONS(2588), + [anon_sym_bit_DASHand2] = ACTIONS(2588), + [anon_sym_bit_DASHxor2] = ACTIONS(2588), + [anon_sym_bit_DASHor2] = ACTIONS(2588), + [anon_sym_COLON2] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2588), + [anon_sym_out_GT_GT] = ACTIONS(2588), + [anon_sym_e_GT_GT] = ACTIONS(2588), + [anon_sym_o_GT_GT] = ACTIONS(2588), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2588), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2588), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2588), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2588), + [anon_sym_POUND] = ACTIONS(3), + }, + [913] = { + [sym_cell_path] = STATE(1349), + [sym_path] = STATE(712), + [sym_comment] = STATE(913), + [aux_sym__where_predicate_lhs_repeat1] = STATE(580), + [ts_builtin_sym_end] = ACTIONS(1930), + [anon_sym_in] = ACTIONS(1930), + [sym__newline] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_PIPE] = ACTIONS(1930), + [anon_sym_err_GT_PIPE] = ACTIONS(1930), + [anon_sym_out_GT_PIPE] = ACTIONS(1930), + [anon_sym_e_GT_PIPE] = ACTIONS(1930), + [anon_sym_o_GT_PIPE] = ACTIONS(1930), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1930), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1930), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1930), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1930), + [anon_sym_GT2] = ACTIONS(1932), + [anon_sym_DASH2] = ACTIONS(1930), + [anon_sym_STAR2] = ACTIONS(1932), + [anon_sym_and2] = ACTIONS(1930), + [anon_sym_xor2] = ACTIONS(1930), + [anon_sym_or2] = ACTIONS(1930), + [anon_sym_not_DASHin2] = ACTIONS(1930), + [anon_sym_has2] = ACTIONS(1930), + [anon_sym_not_DASHhas2] = ACTIONS(1930), + [anon_sym_starts_DASHwith2] = ACTIONS(1930), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1930), + [anon_sym_ends_DASHwith2] = ACTIONS(1930), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1930), + [anon_sym_EQ_EQ2] = ACTIONS(1930), + [anon_sym_BANG_EQ2] = ACTIONS(1930), + [anon_sym_LT2] = ACTIONS(1932), + [anon_sym_LT_EQ2] = ACTIONS(1930), + [anon_sym_GT_EQ2] = ACTIONS(1930), + [anon_sym_EQ_TILDE2] = ACTIONS(1930), + [anon_sym_BANG_TILDE2] = ACTIONS(1930), + [anon_sym_like2] = ACTIONS(1930), + [anon_sym_not_DASHlike2] = ACTIONS(1930), + [anon_sym_STAR_STAR2] = ACTIONS(1930), + [anon_sym_PLUS_PLUS2] = ACTIONS(1930), + [anon_sym_SLASH2] = ACTIONS(1932), + [anon_sym_mod2] = ACTIONS(1930), + [anon_sym_SLASH_SLASH2] = ACTIONS(1930), + [anon_sym_PLUS2] = ACTIONS(1932), + [anon_sym_bit_DASHshl2] = ACTIONS(1930), + [anon_sym_bit_DASHshr2] = ACTIONS(1930), + [anon_sym_bit_DASHand2] = ACTIONS(1930), + [anon_sym_bit_DASHxor2] = ACTIONS(1930), + [anon_sym_bit_DASHor2] = ACTIONS(1930), + [anon_sym_DOT2] = ACTIONS(2417), + [anon_sym_err_GT] = ACTIONS(1932), + [anon_sym_out_GT] = ACTIONS(1932), + [anon_sym_e_GT] = ACTIONS(1932), + [anon_sym_o_GT] = ACTIONS(1932), + [anon_sym_err_PLUSout_GT] = ACTIONS(1932), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1932), + [anon_sym_o_PLUSe_GT] = ACTIONS(1932), + [anon_sym_e_PLUSo_GT] = ACTIONS(1932), + [anon_sym_err_GT_GT] = ACTIONS(1930), + [anon_sym_out_GT_GT] = ACTIONS(1930), + [anon_sym_e_GT_GT] = ACTIONS(1930), + [anon_sym_o_GT_GT] = ACTIONS(1930), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1930), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1930), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1930), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1930), + [anon_sym_POUND] = ACTIONS(3), + }, + [914] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2256), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(700), + [sym__unquoted_with_expr] = STATE(942), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(914), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(898)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(1696), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(704), - [sym__unquoted_with_expr] = STATE(968), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(898), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [915] = { + [sym_comment] = STATE(915), + [anon_sym_in] = ACTIONS(2592), + [sym__newline] = ACTIONS(2592), + [anon_sym_SEMI] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_err_GT_PIPE] = ACTIONS(2592), + [anon_sym_out_GT_PIPE] = ACTIONS(2592), + [anon_sym_e_GT_PIPE] = ACTIONS(2592), + [anon_sym_o_GT_PIPE] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2592), + [anon_sym_RPAREN] = ACTIONS(2592), + [anon_sym_GT2] = ACTIONS(2594), + [anon_sym_DASH2] = ACTIONS(2592), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_EQ_GT] = ACTIONS(2592), + [anon_sym_STAR2] = ACTIONS(2594), + [anon_sym_and2] = ACTIONS(2592), + [anon_sym_xor2] = ACTIONS(2592), + [anon_sym_or2] = ACTIONS(2592), + [anon_sym_not_DASHin2] = ACTIONS(2592), + [anon_sym_has2] = ACTIONS(2592), + [anon_sym_not_DASHhas2] = ACTIONS(2592), + [anon_sym_starts_DASHwith2] = ACTIONS(2592), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2592), + [anon_sym_ends_DASHwith2] = ACTIONS(2592), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2592), + [anon_sym_EQ_EQ2] = ACTIONS(2592), + [anon_sym_BANG_EQ2] = ACTIONS(2592), + [anon_sym_LT2] = ACTIONS(2594), + [anon_sym_LT_EQ2] = ACTIONS(2592), + [anon_sym_GT_EQ2] = ACTIONS(2592), + [anon_sym_EQ_TILDE2] = ACTIONS(2592), + [anon_sym_BANG_TILDE2] = ACTIONS(2592), + [anon_sym_like2] = ACTIONS(2592), + [anon_sym_not_DASHlike2] = ACTIONS(2592), + [anon_sym_STAR_STAR2] = ACTIONS(2592), + [anon_sym_PLUS_PLUS2] = ACTIONS(2592), + [anon_sym_SLASH2] = ACTIONS(2594), + [anon_sym_mod2] = ACTIONS(2592), + [anon_sym_SLASH_SLASH2] = ACTIONS(2592), + [anon_sym_PLUS2] = ACTIONS(2594), + [anon_sym_bit_DASHshl2] = ACTIONS(2592), + [anon_sym_bit_DASHshr2] = ACTIONS(2592), + [anon_sym_bit_DASHand2] = ACTIONS(2592), + [anon_sym_bit_DASHxor2] = ACTIONS(2592), + [anon_sym_bit_DASHor2] = ACTIONS(2592), + [anon_sym_COLON2] = ACTIONS(2592), + [anon_sym_err_GT] = ACTIONS(2594), + [anon_sym_out_GT] = ACTIONS(2594), + [anon_sym_e_GT] = ACTIONS(2594), + [anon_sym_o_GT] = ACTIONS(2594), + [anon_sym_err_PLUSout_GT] = ACTIONS(2594), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2594), + [anon_sym_o_PLUSe_GT] = ACTIONS(2594), + [anon_sym_e_PLUSo_GT] = ACTIONS(2594), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_POUND] = ACTIONS(3), + }, + [916] = { + [sym_comment] = STATE(916), + [anon_sym_in] = ACTIONS(2596), + [sym__newline] = ACTIONS(2596), + [anon_sym_SEMI] = ACTIONS(2596), + [anon_sym_PIPE] = ACTIONS(2596), + [anon_sym_err_GT_PIPE] = ACTIONS(2596), + [anon_sym_out_GT_PIPE] = ACTIONS(2596), + [anon_sym_e_GT_PIPE] = ACTIONS(2596), + [anon_sym_o_GT_PIPE] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2596), + [anon_sym_RPAREN] = ACTIONS(2596), + [anon_sym_GT2] = ACTIONS(2598), + [anon_sym_DASH2] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2596), + [anon_sym_RBRACE] = ACTIONS(2596), + [anon_sym_STAR2] = ACTIONS(2598), + [anon_sym_and2] = ACTIONS(2596), + [anon_sym_xor2] = ACTIONS(2596), + [anon_sym_or2] = ACTIONS(2596), + [anon_sym_not_DASHin2] = ACTIONS(2596), + [anon_sym_has2] = ACTIONS(2596), + [anon_sym_not_DASHhas2] = ACTIONS(2596), + [anon_sym_starts_DASHwith2] = ACTIONS(2596), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2596), + [anon_sym_ends_DASHwith2] = ACTIONS(2596), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2596), + [anon_sym_EQ_EQ2] = ACTIONS(2596), + [anon_sym_BANG_EQ2] = ACTIONS(2596), + [anon_sym_LT2] = ACTIONS(2598), + [anon_sym_LT_EQ2] = ACTIONS(2596), + [anon_sym_GT_EQ2] = ACTIONS(2596), + [anon_sym_EQ_TILDE2] = ACTIONS(2596), + [anon_sym_BANG_TILDE2] = ACTIONS(2596), + [anon_sym_like2] = ACTIONS(2596), + [anon_sym_not_DASHlike2] = ACTIONS(2596), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_STAR_STAR2] = ACTIONS(2596), + [anon_sym_PLUS_PLUS2] = ACTIONS(2596), + [anon_sym_SLASH2] = ACTIONS(2598), + [anon_sym_mod2] = ACTIONS(2596), + [anon_sym_SLASH_SLASH2] = ACTIONS(2596), + [anon_sym_PLUS2] = ACTIONS(2598), + [anon_sym_bit_DASHshl2] = ACTIONS(2596), + [anon_sym_bit_DASHshr2] = ACTIONS(2596), + [anon_sym_bit_DASHand2] = ACTIONS(2596), + [anon_sym_bit_DASHxor2] = ACTIONS(2596), + [anon_sym_bit_DASHor2] = ACTIONS(2596), + [anon_sym_err_GT] = ACTIONS(2598), + [anon_sym_out_GT] = ACTIONS(2598), + [anon_sym_e_GT] = ACTIONS(2598), + [anon_sym_o_GT] = ACTIONS(2598), + [anon_sym_err_PLUSout_GT] = ACTIONS(2598), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2598), + [anon_sym_o_PLUSe_GT] = ACTIONS(2598), + [anon_sym_e_PLUSo_GT] = ACTIONS(2598), + [anon_sym_err_GT_GT] = ACTIONS(2596), + [anon_sym_out_GT_GT] = ACTIONS(2596), + [anon_sym_e_GT_GT] = ACTIONS(2596), + [anon_sym_o_GT_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2596), + [sym__unquoted_pattern] = ACTIONS(2598), + [anon_sym_POUND] = ACTIONS(3), + }, + [917] = { + [sym_expr_unary] = STATE(1328), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1328), + [sym__expr_binary_expression] = STATE(1710), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1328), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(1328), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1539), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(1441), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(1120), + [sym__unquoted_with_expr] = STATE(1313), + [sym__unquoted_anonymous_prefix] = STATE(4847), + [sym_comment] = STATE(917), + [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(1314), + [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_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), + }, + [918] = { + [sym_expr_unary] = STATE(1328), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1328), + [sym__expr_binary_expression] = STATE(1716), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1328), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(1328), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1539), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(1441), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(1117), + [sym__unquoted_with_expr] = STATE(1311), + [sym__unquoted_anonymous_prefix] = STATE(4847), + [sym_comment] = STATE(918), + [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(1314), + [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_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), + }, + [919] = { + [sym_expr_unary] = STATE(1328), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1328), + [sym__expr_binary_expression] = STATE(1310), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1328), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(1328), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1539), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(1441), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(1115), + [sym__unquoted_with_expr] = STATE(1308), + [sym__unquoted_anonymous_prefix] = STATE(4847), + [sym_comment] = STATE(919), + [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(1314), + [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_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), + }, + [920] = { + [sym_comment] = STATE(920), + [anon_sym_if] = ACTIONS(2600), + [anon_sym_in] = ACTIONS(2600), + [sym__newline] = ACTIONS(2600), + [anon_sym_SEMI] = ACTIONS(2600), + [anon_sym_PIPE] = ACTIONS(2600), + [anon_sym_err_GT_PIPE] = ACTIONS(2600), + [anon_sym_out_GT_PIPE] = ACTIONS(2600), + [anon_sym_e_GT_PIPE] = ACTIONS(2600), + [anon_sym_o_GT_PIPE] = ACTIONS(2600), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2600), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2600), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2600), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2600), + [anon_sym_RPAREN] = ACTIONS(2600), + [anon_sym_GT2] = ACTIONS(2602), + [anon_sym_DASH2] = ACTIONS(2600), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_RBRACE] = ACTIONS(2600), + [anon_sym_EQ_GT] = ACTIONS(2600), + [anon_sym_STAR2] = ACTIONS(2602), + [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(2600), + [anon_sym_BANG_EQ2] = ACTIONS(2600), + [anon_sym_LT2] = ACTIONS(2602), + [anon_sym_LT_EQ2] = ACTIONS(2600), + [anon_sym_GT_EQ2] = ACTIONS(2600), + [anon_sym_EQ_TILDE2] = ACTIONS(2600), + [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(2602), + [anon_sym_mod2] = ACTIONS(2600), + [anon_sym_SLASH_SLASH2] = ACTIONS(2600), + [anon_sym_PLUS2] = ACTIONS(2602), + [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(2602), + [anon_sym_out_GT] = ACTIONS(2602), + [anon_sym_e_GT] = ACTIONS(2602), + [anon_sym_o_GT] = ACTIONS(2602), + [anon_sym_err_PLUSout_GT] = ACTIONS(2602), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2602), + [anon_sym_o_PLUSe_GT] = ACTIONS(2602), + [anon_sym_e_PLUSo_GT] = ACTIONS(2602), + [anon_sym_err_GT_GT] = ACTIONS(2600), + [anon_sym_out_GT_GT] = ACTIONS(2600), + [anon_sym_e_GT_GT] = ACTIONS(2600), + [anon_sym_o_GT_GT] = ACTIONS(2600), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2600), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2600), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2600), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2600), + [anon_sym_POUND] = ACTIONS(3), + }, + [921] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(703), + [sym__unquoted_with_expr] = STATE(943), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(921), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(899)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(1697), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(705), - [sym__unquoted_with_expr] = STATE(970), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(899), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), + [922] = { + [sym_expr_unary] = STATE(955), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(955), + [sym__expr_binary_expression] = STATE(2249), + [sym_expr_parenthesized] = STATE(745), + [sym_val_range] = STATE(955), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(955), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(1981), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1769), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(708), + [sym__unquoted_with_expr] = STATE(951), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(922), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(1961), [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), + [sym_val_date] = ACTIONS(1971), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(900)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(1698), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(706), - [sym__unquoted_with_expr] = STATE(971), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(900), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(901)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(1699), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(707), - [sym__unquoted_with_expr] = STATE(972), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(901), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(902)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(973), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(710), - [sym__unquoted_with_expr] = STATE(974), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(902), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(903)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(1700), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(975), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(903), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(904)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(1701), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(712), - [sym__unquoted_with_expr] = STATE(976), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(904), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(905)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(1702), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(713), - [sym__unquoted_with_expr] = STATE(977), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(905), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(906)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(1703), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1509), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1431), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(714), - [sym__unquoted_with_expr] = STATE(978), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(906), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(2083), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(907)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(2239), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(704), - [sym__unquoted_with_expr] = STATE(968), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(907), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [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(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(908)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(2228), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(705), - [sym__unquoted_with_expr] = STATE(970), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(908), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [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(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(909)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(2235), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(706), - [sym__unquoted_with_expr] = STATE(971), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(909), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [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(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(910)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(2253), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(707), - [sym__unquoted_with_expr] = STATE(972), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(910), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [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(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(911)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(973), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(710), - [sym__unquoted_with_expr] = STATE(974), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(911), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [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(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(912)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(2225), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(975), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(912), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [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(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(913)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(2231), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(712), - [sym__unquoted_with_expr] = STATE(976), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(913), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [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(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(914)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(2234), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(713), - [sym__unquoted_with_expr] = STATE(977), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(914), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [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(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(915)] = { - [sym_expr_unary] = STATE(963), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(963), - [sym__expr_binary_expression] = STATE(2240), - [sym_expr_parenthesized] = STATE(699), - [sym_val_range] = STATE(963), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(963), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(1998), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1752), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(714), - [sym__unquoted_with_expr] = STATE(978), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(915), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1973), - [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(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(1987), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(916)] = { - [sym_comment] = STATE(916), - [anon_sym_finally] = 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_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(917)] = { - [sym_comment] = STATE(917), - [anon_sym_finally] = ACTIONS(2588), - [anon_sym_in] = ACTIONS(2588), - [sym__newline] = ACTIONS(2588), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_PIPE] = ACTIONS(2588), - [anon_sym_err_GT_PIPE] = ACTIONS(2588), - [anon_sym_out_GT_PIPE] = ACTIONS(2588), - [anon_sym_e_GT_PIPE] = ACTIONS(2588), - [anon_sym_o_GT_PIPE] = ACTIONS(2588), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2588), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2588), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2588), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2588), - [anon_sym_RPAREN] = ACTIONS(2588), - [anon_sym_GT2] = ACTIONS(2590), - [anon_sym_DASH2] = ACTIONS(2588), - [anon_sym_LBRACE] = ACTIONS(2588), - [anon_sym_RBRACE] = ACTIONS(2588), - [anon_sym_EQ_GT] = ACTIONS(2588), - [anon_sym_STAR2] = ACTIONS(2590), - [anon_sym_and2] = ACTIONS(2588), - [anon_sym_xor2] = ACTIONS(2588), - [anon_sym_or2] = ACTIONS(2588), - [anon_sym_not_DASHin2] = ACTIONS(2588), - [anon_sym_has2] = ACTIONS(2588), - [anon_sym_not_DASHhas2] = ACTIONS(2588), - [anon_sym_starts_DASHwith2] = ACTIONS(2588), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2588), - [anon_sym_ends_DASHwith2] = ACTIONS(2588), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2588), - [anon_sym_EQ_EQ2] = ACTIONS(2588), - [anon_sym_BANG_EQ2] = ACTIONS(2588), - [anon_sym_LT2] = ACTIONS(2590), - [anon_sym_LT_EQ2] = ACTIONS(2588), - [anon_sym_GT_EQ2] = ACTIONS(2588), - [anon_sym_EQ_TILDE2] = ACTIONS(2588), - [anon_sym_BANG_TILDE2] = ACTIONS(2588), - [anon_sym_like2] = ACTIONS(2588), - [anon_sym_not_DASHlike2] = ACTIONS(2588), - [anon_sym_STAR_STAR2] = ACTIONS(2588), - [anon_sym_PLUS_PLUS2] = ACTIONS(2588), - [anon_sym_SLASH2] = ACTIONS(2590), - [anon_sym_mod2] = ACTIONS(2588), - [anon_sym_SLASH_SLASH2] = ACTIONS(2588), - [anon_sym_PLUS2] = ACTIONS(2590), - [anon_sym_bit_DASHshl2] = ACTIONS(2588), - [anon_sym_bit_DASHshr2] = ACTIONS(2588), - [anon_sym_bit_DASHand2] = ACTIONS(2588), - [anon_sym_bit_DASHxor2] = ACTIONS(2588), - [anon_sym_bit_DASHor2] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2588), - [anon_sym_out_GT_GT] = ACTIONS(2588), - [anon_sym_e_GT_GT] = ACTIONS(2588), - [anon_sym_o_GT_GT] = ACTIONS(2588), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2588), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2588), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2588), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2588), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(918)] = { - [sym_comment] = STATE(918), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_in] = ACTIONS(2592), - [sym__newline] = ACTIONS(2592), - [anon_sym_SEMI] = ACTIONS(2592), - [anon_sym_PIPE] = ACTIONS(2592), - [anon_sym_err_GT_PIPE] = ACTIONS(2592), - [anon_sym_out_GT_PIPE] = ACTIONS(2592), - [anon_sym_e_GT_PIPE] = ACTIONS(2592), - [anon_sym_o_GT_PIPE] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2592), - [anon_sym_RPAREN] = ACTIONS(2592), - [anon_sym_GT2] = ACTIONS(2594), - [anon_sym_DASH2] = ACTIONS(2592), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_RBRACE] = ACTIONS(2592), - [anon_sym_EQ_GT] = ACTIONS(2592), - [anon_sym_STAR2] = ACTIONS(2594), - [anon_sym_and2] = ACTIONS(2592), - [anon_sym_xor2] = ACTIONS(2592), - [anon_sym_or2] = ACTIONS(2592), - [anon_sym_not_DASHin2] = ACTIONS(2592), - [anon_sym_has2] = ACTIONS(2592), - [anon_sym_not_DASHhas2] = ACTIONS(2592), - [anon_sym_starts_DASHwith2] = ACTIONS(2592), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2592), - [anon_sym_ends_DASHwith2] = ACTIONS(2592), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2592), - [anon_sym_EQ_EQ2] = ACTIONS(2592), - [anon_sym_BANG_EQ2] = ACTIONS(2592), - [anon_sym_LT2] = ACTIONS(2594), - [anon_sym_LT_EQ2] = ACTIONS(2592), - [anon_sym_GT_EQ2] = ACTIONS(2592), - [anon_sym_EQ_TILDE2] = ACTIONS(2592), - [anon_sym_BANG_TILDE2] = ACTIONS(2592), - [anon_sym_like2] = ACTIONS(2592), - [anon_sym_not_DASHlike2] = ACTIONS(2592), - [anon_sym_STAR_STAR2] = ACTIONS(2592), - [anon_sym_PLUS_PLUS2] = ACTIONS(2592), - [anon_sym_SLASH2] = ACTIONS(2594), - [anon_sym_mod2] = ACTIONS(2592), - [anon_sym_SLASH_SLASH2] = ACTIONS(2592), - [anon_sym_PLUS2] = ACTIONS(2594), - [anon_sym_bit_DASHshl2] = ACTIONS(2592), - [anon_sym_bit_DASHshr2] = ACTIONS(2592), - [anon_sym_bit_DASHand2] = ACTIONS(2592), - [anon_sym_bit_DASHxor2] = ACTIONS(2592), - [anon_sym_bit_DASHor2] = ACTIONS(2592), - [anon_sym_err_GT] = ACTIONS(2594), - [anon_sym_out_GT] = ACTIONS(2594), - [anon_sym_e_GT] = ACTIONS(2594), - [anon_sym_o_GT] = ACTIONS(2594), - [anon_sym_err_PLUSout_GT] = ACTIONS(2594), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2594), - [anon_sym_o_PLUSe_GT] = ACTIONS(2594), - [anon_sym_e_PLUSo_GT] = ACTIONS(2594), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(919)] = { - [sym_cell_path] = STATE(1309), - [sym_path] = STATE(737), - [sym_comment] = STATE(919), - [aux_sym__where_predicate_lhs_repeat1] = STATE(586), - [ts_builtin_sym_end] = ACTIONS(1925), - [anon_sym_in] = ACTIONS(1925), - [sym__newline] = ACTIONS(1925), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_err_GT_PIPE] = ACTIONS(1925), - [anon_sym_out_GT_PIPE] = ACTIONS(1925), - [anon_sym_e_GT_PIPE] = ACTIONS(1925), - [anon_sym_o_GT_PIPE] = ACTIONS(1925), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1925), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1925), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1925), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1925), - [anon_sym_GT2] = ACTIONS(1927), - [anon_sym_DASH2] = ACTIONS(1925), - [anon_sym_STAR2] = ACTIONS(1927), - [anon_sym_and2] = ACTIONS(1925), - [anon_sym_xor2] = ACTIONS(1925), - [anon_sym_or2] = ACTIONS(1925), - [anon_sym_not_DASHin2] = ACTIONS(1925), - [anon_sym_has2] = ACTIONS(1925), - [anon_sym_not_DASHhas2] = ACTIONS(1925), - [anon_sym_starts_DASHwith2] = ACTIONS(1925), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1925), - [anon_sym_ends_DASHwith2] = ACTIONS(1925), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1925), - [anon_sym_EQ_EQ2] = ACTIONS(1925), - [anon_sym_BANG_EQ2] = ACTIONS(1925), - [anon_sym_LT2] = ACTIONS(1927), - [anon_sym_LT_EQ2] = ACTIONS(1925), - [anon_sym_GT_EQ2] = ACTIONS(1925), - [anon_sym_EQ_TILDE2] = ACTIONS(1925), - [anon_sym_BANG_TILDE2] = ACTIONS(1925), - [anon_sym_like2] = ACTIONS(1925), - [anon_sym_not_DASHlike2] = ACTIONS(1925), - [anon_sym_STAR_STAR2] = ACTIONS(1925), - [anon_sym_PLUS_PLUS2] = ACTIONS(1925), - [anon_sym_SLASH2] = ACTIONS(1927), - [anon_sym_mod2] = ACTIONS(1925), - [anon_sym_SLASH_SLASH2] = ACTIONS(1925), - [anon_sym_PLUS2] = ACTIONS(1927), - [anon_sym_bit_DASHshl2] = ACTIONS(1925), - [anon_sym_bit_DASHshr2] = ACTIONS(1925), - [anon_sym_bit_DASHand2] = ACTIONS(1925), - [anon_sym_bit_DASHxor2] = ACTIONS(1925), - [anon_sym_bit_DASHor2] = ACTIONS(1925), - [anon_sym_DOT2] = ACTIONS(2417), - [anon_sym_err_GT] = ACTIONS(1927), - [anon_sym_out_GT] = ACTIONS(1927), - [anon_sym_e_GT] = ACTIONS(1927), - [anon_sym_o_GT] = ACTIONS(1927), - [anon_sym_err_PLUSout_GT] = ACTIONS(1927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1927), - [anon_sym_o_PLUSe_GT] = ACTIONS(1927), - [anon_sym_e_PLUSo_GT] = ACTIONS(1927), - [anon_sym_err_GT_GT] = ACTIONS(1925), - [anon_sym_out_GT_GT] = ACTIONS(1925), - [anon_sym_e_GT_GT] = ACTIONS(1925), - [anon_sym_o_GT_GT] = ACTIONS(1925), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1925), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1925), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1925), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1925), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(920)] = { - [sym_comment] = STATE(920), - [anon_sym_if] = ACTIONS(2596), - [anon_sym_in] = ACTIONS(2596), - [sym__newline] = ACTIONS(2596), - [anon_sym_SEMI] = ACTIONS(2596), - [anon_sym_PIPE] = ACTIONS(2596), - [anon_sym_err_GT_PIPE] = ACTIONS(2596), - [anon_sym_out_GT_PIPE] = ACTIONS(2596), - [anon_sym_e_GT_PIPE] = ACTIONS(2596), - [anon_sym_o_GT_PIPE] = ACTIONS(2596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2596), - [anon_sym_RPAREN] = ACTIONS(2596), - [anon_sym_GT2] = ACTIONS(2598), - [anon_sym_DASH2] = ACTIONS(2596), - [anon_sym_LBRACE] = ACTIONS(2596), - [anon_sym_RBRACE] = ACTIONS(2596), - [anon_sym_EQ_GT] = ACTIONS(2596), - [anon_sym_STAR2] = ACTIONS(2598), - [anon_sym_and2] = ACTIONS(2596), - [anon_sym_xor2] = ACTIONS(2596), - [anon_sym_or2] = ACTIONS(2596), - [anon_sym_not_DASHin2] = ACTIONS(2596), - [anon_sym_has2] = ACTIONS(2596), - [anon_sym_not_DASHhas2] = ACTIONS(2596), - [anon_sym_starts_DASHwith2] = ACTIONS(2596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2596), - [anon_sym_ends_DASHwith2] = ACTIONS(2596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2596), - [anon_sym_EQ_EQ2] = ACTIONS(2596), - [anon_sym_BANG_EQ2] = ACTIONS(2596), - [anon_sym_LT2] = ACTIONS(2598), - [anon_sym_LT_EQ2] = ACTIONS(2596), - [anon_sym_GT_EQ2] = ACTIONS(2596), - [anon_sym_EQ_TILDE2] = ACTIONS(2596), - [anon_sym_BANG_TILDE2] = ACTIONS(2596), - [anon_sym_like2] = ACTIONS(2596), - [anon_sym_not_DASHlike2] = ACTIONS(2596), - [anon_sym_STAR_STAR2] = ACTIONS(2596), - [anon_sym_PLUS_PLUS2] = ACTIONS(2596), - [anon_sym_SLASH2] = ACTIONS(2598), - [anon_sym_mod2] = ACTIONS(2596), - [anon_sym_SLASH_SLASH2] = ACTIONS(2596), - [anon_sym_PLUS2] = ACTIONS(2598), - [anon_sym_bit_DASHshl2] = ACTIONS(2596), - [anon_sym_bit_DASHshr2] = ACTIONS(2596), - [anon_sym_bit_DASHand2] = ACTIONS(2596), - [anon_sym_bit_DASHxor2] = ACTIONS(2596), - [anon_sym_bit_DASHor2] = ACTIONS(2596), - [anon_sym_err_GT] = ACTIONS(2598), - [anon_sym_out_GT] = ACTIONS(2598), - [anon_sym_e_GT] = ACTIONS(2598), - [anon_sym_o_GT] = ACTIONS(2598), - [anon_sym_err_PLUSout_GT] = ACTIONS(2598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2598), - [anon_sym_o_PLUSe_GT] = ACTIONS(2598), - [anon_sym_e_PLUSo_GT] = ACTIONS(2598), - [anon_sym_err_GT_GT] = ACTIONS(2596), - [anon_sym_out_GT_GT] = ACTIONS(2596), - [anon_sym_e_GT_GT] = ACTIONS(2596), - [anon_sym_o_GT_GT] = ACTIONS(2596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2596), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(921)] = { - [sym_comment] = STATE(921), - [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(2484), - [anon_sym_DASH2] = ACTIONS(2477), - [anon_sym_LBRACE] = ACTIONS(2477), - [anon_sym_STAR2] = ACTIONS(2484), - [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(2484), - [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(2484), - [anon_sym_mod2] = ACTIONS(2477), - [anon_sym_SLASH_SLASH2] = ACTIONS(2477), - [anon_sym_PLUS2] = ACTIONS(2484), - [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_DOT_DOT2] = ACTIONS(1620), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), - [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(2477), - [anon_sym_out_GT_GT] = ACTIONS(2477), - [anon_sym_e_GT_GT] = ACTIONS(2477), - [anon_sym_o_GT_GT] = ACTIONS(2477), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2477), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2477), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2477), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2477), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(922)] = { - [sym_comment] = STATE(922), - [anon_sym_if] = ACTIONS(2166), - [anon_sym_in] = ACTIONS(2166), - [sym__newline] = ACTIONS(2166), - [anon_sym_SEMI] = ACTIONS(2166), - [anon_sym_PIPE] = ACTIONS(2166), - [anon_sym_err_GT_PIPE] = ACTIONS(2166), - [anon_sym_out_GT_PIPE] = ACTIONS(2166), - [anon_sym_e_GT_PIPE] = ACTIONS(2166), - [anon_sym_o_GT_PIPE] = ACTIONS(2166), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2166), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2166), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2166), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2166), - [anon_sym_RPAREN] = ACTIONS(2166), - [anon_sym_GT2] = ACTIONS(2168), - [anon_sym_DASH2] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(2166), - [anon_sym_RBRACE] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(2166), - [anon_sym_STAR2] = ACTIONS(2168), - [anon_sym_and2] = ACTIONS(2166), - [anon_sym_xor2] = ACTIONS(2166), - [anon_sym_or2] = ACTIONS(2166), - [anon_sym_not_DASHin2] = ACTIONS(2166), - [anon_sym_has2] = ACTIONS(2166), - [anon_sym_not_DASHhas2] = ACTIONS(2166), - [anon_sym_starts_DASHwith2] = ACTIONS(2166), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2166), - [anon_sym_ends_DASHwith2] = ACTIONS(2166), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2166), - [anon_sym_EQ_EQ2] = ACTIONS(2166), - [anon_sym_BANG_EQ2] = ACTIONS(2166), - [anon_sym_LT2] = ACTIONS(2168), - [anon_sym_LT_EQ2] = ACTIONS(2166), - [anon_sym_GT_EQ2] = ACTIONS(2166), - [anon_sym_EQ_TILDE2] = ACTIONS(2166), - [anon_sym_BANG_TILDE2] = ACTIONS(2166), - [anon_sym_like2] = ACTIONS(2166), - [anon_sym_not_DASHlike2] = ACTIONS(2166), - [anon_sym_STAR_STAR2] = ACTIONS(2166), - [anon_sym_PLUS_PLUS2] = ACTIONS(2166), - [anon_sym_SLASH2] = ACTIONS(2168), - [anon_sym_mod2] = ACTIONS(2166), - [anon_sym_SLASH_SLASH2] = ACTIONS(2166), - [anon_sym_PLUS2] = ACTIONS(2168), - [anon_sym_bit_DASHshl2] = ACTIONS(2166), - [anon_sym_bit_DASHshr2] = ACTIONS(2166), - [anon_sym_bit_DASHand2] = ACTIONS(2166), - [anon_sym_bit_DASHxor2] = ACTIONS(2166), - [anon_sym_bit_DASHor2] = ACTIONS(2166), - [anon_sym_err_GT] = ACTIONS(2168), - [anon_sym_out_GT] = ACTIONS(2168), - [anon_sym_e_GT] = ACTIONS(2168), - [anon_sym_o_GT] = ACTIONS(2168), - [anon_sym_err_PLUSout_GT] = ACTIONS(2168), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2168), - [anon_sym_o_PLUSe_GT] = ACTIONS(2168), - [anon_sym_e_PLUSo_GT] = ACTIONS(2168), - [anon_sym_err_GT_GT] = ACTIONS(2166), - [anon_sym_out_GT_GT] = ACTIONS(2166), - [anon_sym_e_GT_GT] = ACTIONS(2166), - [anon_sym_o_GT_GT] = ACTIONS(2166), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2166), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2166), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2166), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2166), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(923)] = { + [923] = { [sym_comment] = STATE(923), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [sym__newline] = ACTIONS(2174), - [anon_sym_SEMI] = ACTIONS(2174), - [anon_sym_PIPE] = ACTIONS(2174), - [anon_sym_err_GT_PIPE] = ACTIONS(2174), - [anon_sym_out_GT_PIPE] = ACTIONS(2174), - [anon_sym_e_GT_PIPE] = ACTIONS(2174), - [anon_sym_o_GT_PIPE] = ACTIONS(2174), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2174), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2174), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2174), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2174), - [anon_sym_RPAREN] = ACTIONS(2174), - [anon_sym_GT2] = ACTIONS(2176), - [anon_sym_DASH2] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2174), - [anon_sym_RBRACE] = ACTIONS(2174), - [anon_sym_EQ_GT] = ACTIONS(2174), - [anon_sym_STAR2] = ACTIONS(2176), - [anon_sym_and2] = ACTIONS(2174), - [anon_sym_xor2] = ACTIONS(2174), - [anon_sym_or2] = ACTIONS(2174), - [anon_sym_not_DASHin2] = ACTIONS(2174), - [anon_sym_has2] = ACTIONS(2174), - [anon_sym_not_DASHhas2] = ACTIONS(2174), - [anon_sym_starts_DASHwith2] = ACTIONS(2174), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2174), - [anon_sym_ends_DASHwith2] = ACTIONS(2174), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2174), - [anon_sym_EQ_EQ2] = ACTIONS(2174), - [anon_sym_BANG_EQ2] = ACTIONS(2174), - [anon_sym_LT2] = ACTIONS(2176), - [anon_sym_LT_EQ2] = ACTIONS(2174), - [anon_sym_GT_EQ2] = ACTIONS(2174), - [anon_sym_EQ_TILDE2] = ACTIONS(2174), - [anon_sym_BANG_TILDE2] = ACTIONS(2174), - [anon_sym_like2] = ACTIONS(2174), - [anon_sym_not_DASHlike2] = ACTIONS(2174), - [anon_sym_STAR_STAR2] = ACTIONS(2174), - [anon_sym_PLUS_PLUS2] = ACTIONS(2174), - [anon_sym_SLASH2] = ACTIONS(2176), - [anon_sym_mod2] = ACTIONS(2174), - [anon_sym_SLASH_SLASH2] = ACTIONS(2174), - [anon_sym_PLUS2] = ACTIONS(2176), - [anon_sym_bit_DASHshl2] = ACTIONS(2174), - [anon_sym_bit_DASHshr2] = ACTIONS(2174), - [anon_sym_bit_DASHand2] = ACTIONS(2174), - [anon_sym_bit_DASHxor2] = ACTIONS(2174), - [anon_sym_bit_DASHor2] = ACTIONS(2174), - [anon_sym_err_GT] = ACTIONS(2176), - [anon_sym_out_GT] = ACTIONS(2176), - [anon_sym_e_GT] = ACTIONS(2176), - [anon_sym_o_GT] = ACTIONS(2176), - [anon_sym_err_PLUSout_GT] = ACTIONS(2176), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2176), - [anon_sym_o_PLUSe_GT] = ACTIONS(2176), - [anon_sym_e_PLUSo_GT] = ACTIONS(2176), - [anon_sym_err_GT_GT] = ACTIONS(2174), - [anon_sym_out_GT_GT] = ACTIONS(2174), - [anon_sym_e_GT_GT] = ACTIONS(2174), - [anon_sym_o_GT_GT] = ACTIONS(2174), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2174), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2174), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2174), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2174), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(924)] = { - [aux_sym__repeat_newline] = STATE(1105), - [sym__expr_parenthesized_immediate] = STATE(5069), + [anon_sym_if] = ACTIONS(2314), + [anon_sym_in] = ACTIONS(2314), + [sym__newline] = ACTIONS(2314), + [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym_PIPE] = ACTIONS(2314), + [anon_sym_err_GT_PIPE] = ACTIONS(2314), + [anon_sym_out_GT_PIPE] = ACTIONS(2314), + [anon_sym_e_GT_PIPE] = ACTIONS(2314), + [anon_sym_o_GT_PIPE] = ACTIONS(2314), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2314), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2314), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2314), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2314), + [anon_sym_RPAREN] = ACTIONS(2314), + [anon_sym_GT2] = ACTIONS(2316), + [anon_sym_DASH2] = ACTIONS(2314), + [anon_sym_LBRACE] = ACTIONS(2314), + [anon_sym_RBRACE] = ACTIONS(2314), + [anon_sym_EQ_GT] = ACTIONS(2314), + [anon_sym_STAR2] = ACTIONS(2316), + [anon_sym_and2] = ACTIONS(2314), + [anon_sym_xor2] = ACTIONS(2314), + [anon_sym_or2] = ACTIONS(2314), + [anon_sym_not_DASHin2] = ACTIONS(2314), + [anon_sym_has2] = ACTIONS(2314), + [anon_sym_not_DASHhas2] = ACTIONS(2314), + [anon_sym_starts_DASHwith2] = ACTIONS(2314), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2314), + [anon_sym_ends_DASHwith2] = ACTIONS(2314), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2314), + [anon_sym_EQ_EQ2] = ACTIONS(2314), + [anon_sym_BANG_EQ2] = ACTIONS(2314), + [anon_sym_LT2] = ACTIONS(2316), + [anon_sym_LT_EQ2] = ACTIONS(2314), + [anon_sym_GT_EQ2] = ACTIONS(2314), + [anon_sym_EQ_TILDE2] = ACTIONS(2314), + [anon_sym_BANG_TILDE2] = ACTIONS(2314), + [anon_sym_like2] = ACTIONS(2314), + [anon_sym_not_DASHlike2] = ACTIONS(2314), + [anon_sym_STAR_STAR2] = ACTIONS(2314), + [anon_sym_PLUS_PLUS2] = ACTIONS(2314), + [anon_sym_SLASH2] = ACTIONS(2316), + [anon_sym_mod2] = ACTIONS(2314), + [anon_sym_SLASH_SLASH2] = ACTIONS(2314), + [anon_sym_PLUS2] = ACTIONS(2316), + [anon_sym_bit_DASHshl2] = ACTIONS(2314), + [anon_sym_bit_DASHshr2] = ACTIONS(2314), + [anon_sym_bit_DASHand2] = ACTIONS(2314), + [anon_sym_bit_DASHxor2] = ACTIONS(2314), + [anon_sym_bit_DASHor2] = ACTIONS(2314), + [anon_sym_err_GT] = ACTIONS(2316), + [anon_sym_out_GT] = ACTIONS(2316), + [anon_sym_e_GT] = ACTIONS(2316), + [anon_sym_o_GT] = ACTIONS(2316), + [anon_sym_err_PLUSout_GT] = ACTIONS(2316), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2316), + [anon_sym_o_PLUSe_GT] = ACTIONS(2316), + [anon_sym_e_PLUSo_GT] = ACTIONS(2316), + [anon_sym_err_GT_GT] = ACTIONS(2314), + [anon_sym_out_GT_GT] = ACTIONS(2314), + [anon_sym_e_GT_GT] = ACTIONS(2314), + [anon_sym_o_GT_GT] = ACTIONS(2314), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2314), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2314), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2314), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2314), + [anon_sym_POUND] = ACTIONS(3), + }, + [924] = { + [sym_expr_unary] = STATE(1328), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1328), + [sym__expr_binary_expression] = STATE(1723), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1328), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(1328), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1539), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(1441), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(1094), + [sym__unquoted_with_expr] = STATE(1299), + [sym__unquoted_anonymous_prefix] = STATE(4847), [sym_comment] = STATE(924), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [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(1314), + [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_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(925)] = { + [925] = { + [sym_expr_unary] = STATE(1328), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1328), + [sym__expr_binary_expression] = STATE(1711), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1328), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(1328), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1539), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(1441), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(1110), + [sym__unquoted_with_expr] = STATE(1306), + [sym__unquoted_anonymous_prefix] = STATE(4847), [sym_comment] = STATE(925), - [anon_sym_if] = ACTIONS(2186), - [anon_sym_in] = ACTIONS(2186), - [sym__newline] = ACTIONS(2186), - [anon_sym_SEMI] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(2186), - [anon_sym_err_GT_PIPE] = ACTIONS(2186), - [anon_sym_out_GT_PIPE] = ACTIONS(2186), - [anon_sym_e_GT_PIPE] = ACTIONS(2186), - [anon_sym_o_GT_PIPE] = ACTIONS(2186), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2186), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2186), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2186), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_GT2] = ACTIONS(2188), - [anon_sym_DASH2] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_RBRACE] = ACTIONS(2186), - [anon_sym_EQ_GT] = ACTIONS(2186), - [anon_sym_STAR2] = ACTIONS(2188), - [anon_sym_and2] = ACTIONS(2186), - [anon_sym_xor2] = ACTIONS(2186), - [anon_sym_or2] = ACTIONS(2186), - [anon_sym_not_DASHin2] = ACTIONS(2186), - [anon_sym_has2] = ACTIONS(2186), - [anon_sym_not_DASHhas2] = ACTIONS(2186), - [anon_sym_starts_DASHwith2] = ACTIONS(2186), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2186), - [anon_sym_ends_DASHwith2] = ACTIONS(2186), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2186), - [anon_sym_EQ_EQ2] = ACTIONS(2186), - [anon_sym_BANG_EQ2] = ACTIONS(2186), - [anon_sym_LT2] = ACTIONS(2188), - [anon_sym_LT_EQ2] = ACTIONS(2186), - [anon_sym_GT_EQ2] = ACTIONS(2186), - [anon_sym_EQ_TILDE2] = ACTIONS(2186), - [anon_sym_BANG_TILDE2] = ACTIONS(2186), - [anon_sym_like2] = ACTIONS(2186), - [anon_sym_not_DASHlike2] = ACTIONS(2186), - [anon_sym_STAR_STAR2] = ACTIONS(2186), - [anon_sym_PLUS_PLUS2] = ACTIONS(2186), - [anon_sym_SLASH2] = ACTIONS(2188), - [anon_sym_mod2] = ACTIONS(2186), - [anon_sym_SLASH_SLASH2] = ACTIONS(2186), - [anon_sym_PLUS2] = ACTIONS(2188), - [anon_sym_bit_DASHshl2] = ACTIONS(2186), - [anon_sym_bit_DASHshr2] = ACTIONS(2186), - [anon_sym_bit_DASHand2] = ACTIONS(2186), - [anon_sym_bit_DASHxor2] = ACTIONS(2186), - [anon_sym_bit_DASHor2] = ACTIONS(2186), - [anon_sym_err_GT] = ACTIONS(2188), - [anon_sym_out_GT] = ACTIONS(2188), - [anon_sym_e_GT] = ACTIONS(2188), - [anon_sym_o_GT] = ACTIONS(2188), - [anon_sym_err_PLUSout_GT] = ACTIONS(2188), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2188), - [anon_sym_o_PLUSe_GT] = ACTIONS(2188), - [anon_sym_e_PLUSo_GT] = ACTIONS(2188), - [anon_sym_err_GT_GT] = ACTIONS(2186), - [anon_sym_out_GT_GT] = ACTIONS(2186), - [anon_sym_e_GT_GT] = ACTIONS(2186), - [anon_sym_o_GT_GT] = ACTIONS(2186), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2186), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2186), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2186), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2186), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(926)] = { - [aux_sym__repeat_newline] = STATE(1108), - [sym__expr_parenthesized_immediate] = STATE(5069), + [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(1314), + [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_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), + }, + [926] = { + [sym_expr_unary] = STATE(1328), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1328), + [sym__expr_binary_expression] = STATE(1706), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1328), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(1328), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1539), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(1441), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(1105), + [sym__unquoted_with_expr] = STATE(1303), + [sym__unquoted_anonymous_prefix] = STATE(4847), [sym_comment] = STATE(926), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [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(1314), + [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_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(927)] = { - [aux_sym__repeat_newline] = STATE(1113), - [sym__expr_parenthesized_immediate] = STATE(5069), + [927] = { + [sym_expr_unary] = STATE(1328), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_binary] = STATE(1328), + [sym__expr_binary_expression] = STATE(1717), + [sym_expr_parenthesized] = STATE(957), + [sym_val_range] = STATE(1328), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(1328), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(1539), + [sym_val_variable] = STATE(982), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(1441), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(1100), + [sym__unquoted_with_expr] = STATE(1301), + [sym__unquoted_anonymous_prefix] = STATE(4847), [sym_comment] = STATE(927), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [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(1314), + [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_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(928)] = { + [928] = { [sym_comment] = STATE(928), - [ts_builtin_sym_end] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [sym__newline] = ACTIONS(2174), - [anon_sym_SEMI] = ACTIONS(2174), - [anon_sym_PIPE] = ACTIONS(2174), - [anon_sym_err_GT_PIPE] = ACTIONS(2174), - [anon_sym_out_GT_PIPE] = ACTIONS(2174), - [anon_sym_e_GT_PIPE] = ACTIONS(2174), - [anon_sym_o_GT_PIPE] = ACTIONS(2174), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2174), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2174), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2174), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2174), - [anon_sym_GT2] = ACTIONS(2176), - [anon_sym_DASH2] = ACTIONS(2174), - [anon_sym_STAR2] = ACTIONS(2176), - [anon_sym_and2] = ACTIONS(2174), - [anon_sym_xor2] = ACTIONS(2174), - [anon_sym_or2] = ACTIONS(2174), - [anon_sym_not_DASHin2] = ACTIONS(2174), - [anon_sym_has2] = ACTIONS(2174), - [anon_sym_not_DASHhas2] = ACTIONS(2174), - [anon_sym_starts_DASHwith2] = ACTIONS(2174), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2174), - [anon_sym_ends_DASHwith2] = ACTIONS(2174), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2174), - [anon_sym_EQ_EQ2] = ACTIONS(2174), - [anon_sym_BANG_EQ2] = ACTIONS(2174), - [anon_sym_LT2] = ACTIONS(2176), - [anon_sym_LT_EQ2] = ACTIONS(2174), - [anon_sym_GT_EQ2] = ACTIONS(2174), - [anon_sym_EQ_TILDE2] = ACTIONS(2174), - [anon_sym_BANG_TILDE2] = ACTIONS(2174), - [anon_sym_like2] = ACTIONS(2174), - [anon_sym_not_DASHlike2] = ACTIONS(2174), - [anon_sym_STAR_STAR2] = ACTIONS(2174), - [anon_sym_PLUS_PLUS2] = ACTIONS(2174), - [anon_sym_SLASH2] = ACTIONS(2176), - [anon_sym_mod2] = ACTIONS(2174), - [anon_sym_SLASH_SLASH2] = ACTIONS(2174), - [anon_sym_PLUS2] = ACTIONS(2176), - [anon_sym_bit_DASHshl2] = ACTIONS(2174), - [anon_sym_bit_DASHshr2] = ACTIONS(2174), - [anon_sym_bit_DASHand2] = ACTIONS(2174), - [anon_sym_bit_DASHxor2] = ACTIONS(2174), - [anon_sym_bit_DASHor2] = ACTIONS(2174), - [anon_sym_DOT_DOT2] = ACTIONS(2600), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2602), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2602), - [anon_sym_err_GT] = ACTIONS(2176), - [anon_sym_out_GT] = ACTIONS(2176), - [anon_sym_e_GT] = ACTIONS(2176), - [anon_sym_o_GT] = ACTIONS(2176), - [anon_sym_err_PLUSout_GT] = ACTIONS(2176), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2176), - [anon_sym_o_PLUSe_GT] = ACTIONS(2176), - [anon_sym_e_PLUSo_GT] = ACTIONS(2176), - [anon_sym_err_GT_GT] = ACTIONS(2174), - [anon_sym_out_GT_GT] = ACTIONS(2174), - [anon_sym_e_GT_GT] = ACTIONS(2174), - [anon_sym_o_GT_GT] = ACTIONS(2174), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2174), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2174), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2174), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2174), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(929)] = { + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [929] = { [sym_comment] = STATE(929), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [930] = { + [sym_comment] = STATE(930), [anon_sym_in] = ACTIONS(2604), [sym__newline] = ACTIONS(2604), [anon_sym_SEMI] = ACTIONS(2604), @@ -118786,7 +118803,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(2604), [anon_sym_GT2] = ACTIONS(2606), [anon_sym_DASH2] = ACTIONS(2604), + [anon_sym_LBRACE] = ACTIONS(2604), [anon_sym_RBRACE] = ACTIONS(2604), + [anon_sym_EQ_GT] = ACTIONS(2604), [anon_sym_STAR2] = ACTIONS(2606), [anon_sym_and2] = ACTIONS(2604), [anon_sym_xor2] = ACTIONS(2604), @@ -118807,7 +118826,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2604), [anon_sym_like2] = ACTIONS(2604), [anon_sym_not_DASHlike2] = ACTIONS(2604), - [anon_sym_LPAREN2] = ACTIONS(2608), [anon_sym_STAR_STAR2] = ACTIONS(2604), [anon_sym_PLUS_PLUS2] = ACTIONS(2604), [anon_sym_SLASH2] = ACTIONS(2606), @@ -118835,426 +118853,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2604), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2604), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2604), - [sym__unquoted_pattern] = ACTIONS(2610), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(930)] = { - [sym_comment] = STATE(930), - [anon_sym_export] = ACTIONS(2612), - [anon_sym_alias] = ACTIONS(2616), - [anon_sym_let] = ACTIONS(2616), - [anon_sym_mut] = ACTIONS(2616), - [anon_sym_const] = ACTIONS(2616), - [aux_sym_cmd_identifier_token1] = ACTIONS(2612), - [anon_sym_def] = ACTIONS(2616), - [anon_sym_use] = ACTIONS(2616), - [anon_sym_export_DASHenv] = ACTIONS(2616), - [anon_sym_extern] = ACTIONS(2616), - [anon_sym_module] = ACTIONS(2616), - [anon_sym_for] = ACTIONS(2616), - [anon_sym_loop] = ACTIONS(2616), - [anon_sym_while] = ACTIONS(2616), - [anon_sym_if] = ACTIONS(2616), - [anon_sym_else] = ACTIONS(2616), - [anon_sym_try] = ACTIONS(2616), - [anon_sym_catch] = ACTIONS(2616), - [anon_sym_finally] = ACTIONS(2616), - [anon_sym_match] = ACTIONS(2616), - [anon_sym_in] = ACTIONS(2612), - [anon_sym_true] = ACTIONS(2616), - [anon_sym_false] = ACTIONS(2616), - [anon_sym_null] = ACTIONS(2616), - [aux_sym_cmd_identifier_token3] = ACTIONS(2616), - [aux_sym_cmd_identifier_token4] = ACTIONS(2616), - [aux_sym_cmd_identifier_token5] = ACTIONS(2616), - [sym__newline] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2620), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2620), - [anon_sym_LBRACK] = ACTIONS(2620), - [anon_sym_LPAREN] = ACTIONS(2616), - [anon_sym_DOLLAR] = ACTIONS(2612), - [anon_sym_DASH2] = ACTIONS(2612), - [anon_sym_LBRACE] = ACTIONS(2620), - [anon_sym_RBRACE] = ACTIONS(2620), - [anon_sym_DOT_DOT] = ACTIONS(2623), - [anon_sym_where] = ACTIONS(2620), - [aux_sym_expr_unary_token1] = ACTIONS(2620), - [anon_sym_PLUS2] = ACTIONS(2626), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2628), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2620), - [anon_sym_DOT_DOT_LT] = ACTIONS(2620), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2628), - [aux_sym__val_number_decimal_token1] = ACTIONS(2612), - [aux_sym__val_number_decimal_token2] = ACTIONS(2616), - [aux_sym__val_number_decimal_token3] = ACTIONS(2616), - [aux_sym__val_number_decimal_token4] = ACTIONS(2616), - [aux_sym__val_number_token1] = ACTIONS(2616), - [aux_sym__val_number_token2] = ACTIONS(2616), - [aux_sym__val_number_token3] = ACTIONS(2616), - [anon_sym_0b] = ACTIONS(2623), - [anon_sym_0o] = ACTIONS(2623), - [anon_sym_0x] = ACTIONS(2623), - [sym_val_date] = ACTIONS(2620), - [anon_sym_DQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_BQUOTE] = ACTIONS(2616), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2616), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2628), - [anon_sym_CARET] = ACTIONS(2620), - [anon_sym_PERCENT] = ACTIONS(2620), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2616), - }, - [STATE(931)] = { + [931] = { [sym_comment] = STATE(931), - [anon_sym_in] = ACTIONS(1258), - [sym__newline] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_err_GT_PIPE] = ACTIONS(1258), - [anon_sym_out_GT_PIPE] = ACTIONS(1258), - [anon_sym_e_GT_PIPE] = ACTIONS(1258), - [anon_sym_o_GT_PIPE] = ACTIONS(1258), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1258), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1258), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1258), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1258), - [anon_sym_RPAREN] = ACTIONS(1258), - [anon_sym_GT2] = ACTIONS(1242), - [anon_sym_DASH2] = ACTIONS(1258), - [anon_sym_RBRACE] = ACTIONS(1258), - [anon_sym_STAR2] = ACTIONS(1242), - [anon_sym_and2] = ACTIONS(1258), - [anon_sym_xor2] = ACTIONS(1258), - [anon_sym_or2] = ACTIONS(1258), - [anon_sym_not_DASHin2] = ACTIONS(1258), - [anon_sym_has2] = ACTIONS(1258), - [anon_sym_not_DASHhas2] = ACTIONS(1258), - [anon_sym_starts_DASHwith2] = ACTIONS(1258), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1258), - [anon_sym_ends_DASHwith2] = ACTIONS(1258), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1258), - [anon_sym_EQ_EQ2] = ACTIONS(1258), - [anon_sym_BANG_EQ2] = ACTIONS(1258), - [anon_sym_LT2] = ACTIONS(1242), - [anon_sym_LT_EQ2] = ACTIONS(1258), - [anon_sym_GT_EQ2] = ACTIONS(1258), - [anon_sym_EQ_TILDE2] = ACTIONS(1258), - [anon_sym_BANG_TILDE2] = ACTIONS(1258), - [anon_sym_like2] = ACTIONS(1258), - [anon_sym_not_DASHlike2] = ACTIONS(1258), - [anon_sym_LPAREN2] = ACTIONS(2630), - [anon_sym_STAR_STAR2] = ACTIONS(1258), - [anon_sym_PLUS_PLUS2] = ACTIONS(1258), - [anon_sym_SLASH2] = ACTIONS(1242), - [anon_sym_mod2] = ACTIONS(1258), - [anon_sym_SLASH_SLASH2] = ACTIONS(1258), - [anon_sym_PLUS2] = ACTIONS(1242), - [anon_sym_bit_DASHshl2] = ACTIONS(1258), - [anon_sym_bit_DASHshr2] = ACTIONS(1258), - [anon_sym_bit_DASHand2] = ACTIONS(1258), - [anon_sym_bit_DASHxor2] = ACTIONS(1258), - [anon_sym_bit_DASHor2] = ACTIONS(1258), - [anon_sym_err_GT] = ACTIONS(1242), - [anon_sym_out_GT] = ACTIONS(1242), - [anon_sym_e_GT] = ACTIONS(1242), - [anon_sym_o_GT] = ACTIONS(1242), - [anon_sym_err_PLUSout_GT] = ACTIONS(1242), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1242), - [anon_sym_o_PLUSe_GT] = ACTIONS(1242), - [anon_sym_e_PLUSo_GT] = ACTIONS(1242), - [anon_sym_err_GT_GT] = ACTIONS(1258), - [anon_sym_out_GT_GT] = ACTIONS(1258), - [anon_sym_e_GT_GT] = ACTIONS(1258), - [anon_sym_o_GT_GT] = ACTIONS(1258), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1258), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1258), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1258), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1258), - [sym__unquoted_pattern] = ACTIONS(2632), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(932)] = { - [sym_comment] = STATE(932), - [anon_sym_in] = ACTIONS(1250), - [sym__newline] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1250), - [anon_sym_PIPE] = ACTIONS(1250), - [anon_sym_err_GT_PIPE] = ACTIONS(1250), - [anon_sym_out_GT_PIPE] = ACTIONS(1250), - [anon_sym_e_GT_PIPE] = ACTIONS(1250), - [anon_sym_o_GT_PIPE] = ACTIONS(1250), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1250), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1250), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1250), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1250), - [anon_sym_RPAREN] = ACTIONS(1250), - [anon_sym_GT2] = ACTIONS(1234), - [anon_sym_DASH2] = ACTIONS(1250), - [anon_sym_RBRACE] = ACTIONS(1250), - [anon_sym_STAR2] = ACTIONS(1234), - [anon_sym_and2] = ACTIONS(1250), - [anon_sym_xor2] = ACTIONS(1250), - [anon_sym_or2] = ACTIONS(1250), - [anon_sym_not_DASHin2] = ACTIONS(1250), - [anon_sym_has2] = ACTIONS(1250), - [anon_sym_not_DASHhas2] = ACTIONS(1250), - [anon_sym_starts_DASHwith2] = ACTIONS(1250), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1250), - [anon_sym_ends_DASHwith2] = ACTIONS(1250), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1250), - [anon_sym_EQ_EQ2] = ACTIONS(1250), - [anon_sym_BANG_EQ2] = ACTIONS(1250), - [anon_sym_LT2] = ACTIONS(1234), - [anon_sym_LT_EQ2] = ACTIONS(1250), - [anon_sym_GT_EQ2] = ACTIONS(1250), - [anon_sym_EQ_TILDE2] = ACTIONS(1250), - [anon_sym_BANG_TILDE2] = ACTIONS(1250), - [anon_sym_like2] = ACTIONS(1250), - [anon_sym_not_DASHlike2] = ACTIONS(1250), - [anon_sym_LPAREN2] = ACTIONS(2630), - [anon_sym_STAR_STAR2] = ACTIONS(1250), - [anon_sym_PLUS_PLUS2] = ACTIONS(1250), - [anon_sym_SLASH2] = ACTIONS(1234), - [anon_sym_mod2] = ACTIONS(1250), - [anon_sym_SLASH_SLASH2] = ACTIONS(1250), - [anon_sym_PLUS2] = ACTIONS(1234), - [anon_sym_bit_DASHshl2] = ACTIONS(1250), - [anon_sym_bit_DASHshr2] = ACTIONS(1250), - [anon_sym_bit_DASHand2] = ACTIONS(1250), - [anon_sym_bit_DASHxor2] = ACTIONS(1250), - [anon_sym_bit_DASHor2] = ACTIONS(1250), - [anon_sym_err_GT] = ACTIONS(1234), - [anon_sym_out_GT] = ACTIONS(1234), - [anon_sym_e_GT] = ACTIONS(1234), - [anon_sym_o_GT] = ACTIONS(1234), - [anon_sym_err_PLUSout_GT] = ACTIONS(1234), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1234), - [anon_sym_o_PLUSe_GT] = ACTIONS(1234), - [anon_sym_e_PLUSo_GT] = ACTIONS(1234), - [anon_sym_err_GT_GT] = ACTIONS(1250), - [anon_sym_out_GT_GT] = ACTIONS(1250), - [anon_sym_e_GT_GT] = ACTIONS(1250), - [anon_sym_o_GT_GT] = ACTIONS(1250), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1250), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1250), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1250), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1250), - [sym__unquoted_pattern] = ACTIONS(2632), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(933)] = { - [sym_comment] = STATE(933), - [ts_builtin_sym_end] = ACTIONS(1913), - [anon_sym_in] = ACTIONS(1913), - [sym__newline] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_PIPE] = ACTIONS(1913), - [anon_sym_err_GT_PIPE] = ACTIONS(1913), - [anon_sym_out_GT_PIPE] = ACTIONS(1913), - [anon_sym_e_GT_PIPE] = ACTIONS(1913), - [anon_sym_o_GT_PIPE] = ACTIONS(1913), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1913), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1913), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1913), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1913), - [anon_sym_GT2] = ACTIONS(1915), - [anon_sym_DASH2] = ACTIONS(1913), - [anon_sym_STAR2] = ACTIONS(1915), - [anon_sym_and2] = ACTIONS(1913), - [anon_sym_xor2] = ACTIONS(1913), - [anon_sym_or2] = ACTIONS(1913), - [anon_sym_not_DASHin2] = ACTIONS(1913), - [anon_sym_has2] = ACTIONS(1913), - [anon_sym_not_DASHhas2] = ACTIONS(1913), - [anon_sym_starts_DASHwith2] = ACTIONS(1913), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1913), - [anon_sym_ends_DASHwith2] = ACTIONS(1913), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1913), - [anon_sym_EQ_EQ2] = ACTIONS(1913), - [anon_sym_BANG_EQ2] = ACTIONS(1913), - [anon_sym_LT2] = ACTIONS(1915), - [anon_sym_LT_EQ2] = ACTIONS(1913), - [anon_sym_GT_EQ2] = ACTIONS(1913), - [anon_sym_EQ_TILDE2] = ACTIONS(1913), - [anon_sym_BANG_TILDE2] = ACTIONS(1913), - [anon_sym_like2] = ACTIONS(1913), - [anon_sym_not_DASHlike2] = ACTIONS(1913), - [anon_sym_STAR_STAR2] = ACTIONS(1913), - [anon_sym_PLUS_PLUS2] = ACTIONS(1913), - [anon_sym_SLASH2] = ACTIONS(1915), - [anon_sym_mod2] = ACTIONS(1913), - [anon_sym_SLASH_SLASH2] = ACTIONS(1913), - [anon_sym_PLUS2] = ACTIONS(1915), - [anon_sym_bit_DASHshl2] = ACTIONS(1913), - [anon_sym_bit_DASHshr2] = ACTIONS(1913), - [anon_sym_bit_DASHand2] = ACTIONS(1913), - [anon_sym_bit_DASHxor2] = ACTIONS(1913), - [anon_sym_bit_DASHor2] = ACTIONS(1913), - [anon_sym_DOT_DOT2] = ACTIONS(1915), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1913), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1913), - [anon_sym_err_GT] = ACTIONS(1915), - [anon_sym_out_GT] = ACTIONS(1915), - [anon_sym_e_GT] = ACTIONS(1915), - [anon_sym_o_GT] = ACTIONS(1915), - [anon_sym_err_PLUSout_GT] = ACTIONS(1915), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1915), - [anon_sym_o_PLUSe_GT] = ACTIONS(1915), - [anon_sym_e_PLUSo_GT] = ACTIONS(1915), - [anon_sym_err_GT_GT] = ACTIONS(1913), - [anon_sym_out_GT_GT] = ACTIONS(1913), - [anon_sym_e_GT_GT] = ACTIONS(1913), - [anon_sym_o_GT_GT] = ACTIONS(1913), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1913), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1913), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1913), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1913), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(934)] = { - [sym_comment] = STATE(934), - [ts_builtin_sym_end] = ACTIONS(2265), - [anon_sym_in] = ACTIONS(2146), - [sym__newline] = ACTIONS(2265), - [anon_sym_SEMI] = ACTIONS(2265), - [anon_sym_PIPE] = ACTIONS(2265), - [anon_sym_err_GT_PIPE] = ACTIONS(2265), - [anon_sym_out_GT_PIPE] = ACTIONS(2265), - [anon_sym_e_GT_PIPE] = ACTIONS(2265), - [anon_sym_o_GT_PIPE] = ACTIONS(2265), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2265), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2265), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2265), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2265), - [anon_sym_GT2] = ACTIONS(2148), - [anon_sym_DASH2] = ACTIONS(2146), - [anon_sym_STAR2] = ACTIONS(2148), - [anon_sym_and2] = ACTIONS(2146), - [anon_sym_xor2] = ACTIONS(2146), - [anon_sym_or2] = ACTIONS(2146), - [anon_sym_not_DASHin2] = ACTIONS(2146), - [anon_sym_has2] = ACTIONS(2146), - [anon_sym_not_DASHhas2] = ACTIONS(2146), - [anon_sym_starts_DASHwith2] = ACTIONS(2146), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2146), - [anon_sym_ends_DASHwith2] = ACTIONS(2146), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2146), - [anon_sym_EQ_EQ2] = ACTIONS(2146), - [anon_sym_BANG_EQ2] = ACTIONS(2146), - [anon_sym_LT2] = ACTIONS(2148), - [anon_sym_LT_EQ2] = ACTIONS(2146), - [anon_sym_GT_EQ2] = ACTIONS(2146), - [anon_sym_EQ_TILDE2] = ACTIONS(2146), - [anon_sym_BANG_TILDE2] = ACTIONS(2146), - [anon_sym_like2] = ACTIONS(2146), - [anon_sym_not_DASHlike2] = ACTIONS(2146), - [anon_sym_STAR_STAR2] = ACTIONS(2146), - [anon_sym_PLUS_PLUS2] = ACTIONS(2146), - [anon_sym_SLASH2] = ACTIONS(2148), - [anon_sym_mod2] = ACTIONS(2146), - [anon_sym_SLASH_SLASH2] = ACTIONS(2146), - [anon_sym_PLUS2] = ACTIONS(2148), - [anon_sym_bit_DASHshl2] = ACTIONS(2146), - [anon_sym_bit_DASHshr2] = ACTIONS(2146), - [anon_sym_bit_DASHand2] = ACTIONS(2146), - [anon_sym_bit_DASHxor2] = ACTIONS(2146), - [anon_sym_bit_DASHor2] = ACTIONS(2146), - [anon_sym_DOT_DOT2] = ACTIONS(1826), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), - [anon_sym_err_GT] = ACTIONS(2267), - [anon_sym_out_GT] = ACTIONS(2267), - [anon_sym_e_GT] = ACTIONS(2267), - [anon_sym_o_GT] = ACTIONS(2267), - [anon_sym_err_PLUSout_GT] = ACTIONS(2267), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2267), - [anon_sym_o_PLUSe_GT] = ACTIONS(2267), - [anon_sym_e_PLUSo_GT] = ACTIONS(2267), - [anon_sym_err_GT_GT] = ACTIONS(2265), - [anon_sym_out_GT_GT] = ACTIONS(2265), - [anon_sym_e_GT_GT] = ACTIONS(2265), - [anon_sym_o_GT_GT] = ACTIONS(2265), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2265), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2265), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2265), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2265), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(935)] = { - [aux_sym__repeat_newline] = STATE(1018), - [sym__expression_parenthesized] = STATE(4390), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2204), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1878), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_comment] = STATE(935), - [aux_sym_cmd_identifier_token2] = ACTIONS(2634), - [anon_sym_true] = ACTIONS(2636), - [anon_sym_false] = ACTIONS(2636), - [anon_sym_null] = ACTIONS(2638), - [aux_sym_cmd_identifier_token3] = ACTIONS(2640), - [aux_sym_cmd_identifier_token4] = ACTIONS(2640), - [aux_sym_cmd_identifier_token5] = ACTIONS(2640), - [sym__newline] = ACTIONS(2642), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(181), - [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1981), - [aux_sym__val_number_decimal_token3] = ACTIONS(2644), - [aux_sym__val_number_decimal_token4] = ACTIONS(2644), - [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(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2646), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(105), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(936)] = { - [sym_comment] = STATE(936), - [ts_builtin_sym_end] = ACTIONS(2154), + [932] = { + [sym_comment] = STATE(932), + [anon_sym_in] = ACTIONS(2125), + [sym__newline] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(2125), + [anon_sym_err_GT_PIPE] = ACTIONS(2125), + [anon_sym_out_GT_PIPE] = ACTIONS(2125), + [anon_sym_e_GT_PIPE] = ACTIONS(2125), + [anon_sym_o_GT_PIPE] = ACTIONS(2125), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2125), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2125), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2125), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2125), + [anon_sym_RPAREN] = ACTIONS(2125), + [anon_sym_GT2] = ACTIONS(2127), + [anon_sym_DASH2] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_EQ_GT] = ACTIONS(2125), + [anon_sym_STAR2] = ACTIONS(2127), + [anon_sym_and2] = ACTIONS(2125), + [anon_sym_xor2] = ACTIONS(2125), + [anon_sym_or2] = ACTIONS(2125), + [anon_sym_not_DASHin2] = ACTIONS(2125), + [anon_sym_has2] = ACTIONS(2125), + [anon_sym_not_DASHhas2] = ACTIONS(2125), + [anon_sym_starts_DASHwith2] = ACTIONS(2125), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2125), + [anon_sym_ends_DASHwith2] = ACTIONS(2125), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2125), + [anon_sym_EQ_EQ2] = ACTIONS(2125), + [anon_sym_BANG_EQ2] = ACTIONS(2125), + [anon_sym_LT2] = ACTIONS(2127), + [anon_sym_LT_EQ2] = ACTIONS(2125), + [anon_sym_GT_EQ2] = ACTIONS(2125), + [anon_sym_EQ_TILDE2] = ACTIONS(2125), + [anon_sym_BANG_TILDE2] = ACTIONS(2125), + [anon_sym_like2] = ACTIONS(2125), + [anon_sym_not_DASHlike2] = ACTIONS(2125), + [anon_sym_STAR_STAR2] = ACTIONS(2125), + [anon_sym_PLUS_PLUS2] = ACTIONS(2125), + [anon_sym_SLASH2] = ACTIONS(2127), + [anon_sym_mod2] = ACTIONS(2125), + [anon_sym_SLASH_SLASH2] = ACTIONS(2125), + [anon_sym_PLUS2] = ACTIONS(2127), + [anon_sym_bit_DASHshl2] = ACTIONS(2125), + [anon_sym_bit_DASHshr2] = ACTIONS(2125), + [anon_sym_bit_DASHand2] = ACTIONS(2125), + [anon_sym_bit_DASHxor2] = ACTIONS(2125), + [anon_sym_bit_DASHor2] = ACTIONS(2125), + [anon_sym_err_GT] = ACTIONS(2127), + [anon_sym_out_GT] = ACTIONS(2127), + [anon_sym_e_GT] = ACTIONS(2127), + [anon_sym_o_GT] = ACTIONS(2127), + [anon_sym_err_PLUSout_GT] = ACTIONS(2127), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2127), + [anon_sym_o_PLUSe_GT] = ACTIONS(2127), + [anon_sym_e_PLUSo_GT] = ACTIONS(2127), + [anon_sym_err_GT_GT] = ACTIONS(2125), + [anon_sym_out_GT_GT] = ACTIONS(2125), + [anon_sym_e_GT_GT] = ACTIONS(2125), + [anon_sym_o_GT_GT] = ACTIONS(2125), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2125), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2125), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2125), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2125), + [anon_sym_POUND] = ACTIONS(3), + }, + [933] = { + [sym_comment] = STATE(933), [anon_sym_in] = ACTIONS(2154), [sym__newline] = ACTIONS(2154), [anon_sym_SEMI] = ACTIONS(2154), @@ -119267,8 +119007,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), [anon_sym_GT2] = ACTIONS(2156), [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), [anon_sym_STAR2] = ACTIONS(2156), [anon_sym_and2] = ACTIONS(2154), [anon_sym_xor2] = ACTIONS(2154), @@ -119300,9 +119044,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2154), [anon_sym_bit_DASHxor2] = ACTIONS(2154), [anon_sym_bit_DASHor2] = ACTIONS(2154), - [anon_sym_DOT_DOT2] = ACTIONS(2648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2650), [anon_sym_err_GT] = ACTIONS(2156), [anon_sym_out_GT] = ACTIONS(2156), [anon_sym_e_GT] = ACTIONS(2156), @@ -119321,1802 +119062,2010 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(937)] = { + [934] = { + [sym_comment] = STATE(934), + [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_POUND] = ACTIONS(3), + }, + [935] = { + [sym_comment] = STATE(935), + [ts_builtin_sym_end] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [sym__newline] = ACTIONS(1667), + [anon_sym_SEMI] = ACTIONS(1667), + [anon_sym_PIPE] = ACTIONS(1667), + [anon_sym_err_GT_PIPE] = ACTIONS(1667), + [anon_sym_out_GT_PIPE] = ACTIONS(1667), + [anon_sym_e_GT_PIPE] = ACTIONS(1667), + [anon_sym_o_GT_PIPE] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1667), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1667), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1667), + [anon_sym_xor2] = ACTIONS(1667), + [anon_sym_or2] = ACTIONS(1667), + [anon_sym_not_DASHin2] = ACTIONS(1667), + [anon_sym_has2] = ACTIONS(1667), + [anon_sym_not_DASHhas2] = ACTIONS(1667), + [anon_sym_starts_DASHwith2] = ACTIONS(1667), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1667), + [anon_sym_ends_DASHwith2] = ACTIONS(1667), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1667), + [anon_sym_EQ_EQ2] = ACTIONS(1667), + [anon_sym_BANG_EQ2] = ACTIONS(1667), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1667), + [anon_sym_GT_EQ2] = ACTIONS(1667), + [anon_sym_EQ_TILDE2] = ACTIONS(1667), + [anon_sym_BANG_TILDE2] = ACTIONS(1667), + [anon_sym_like2] = ACTIONS(1667), + [anon_sym_not_DASHlike2] = ACTIONS(1667), + [anon_sym_STAR_STAR2] = ACTIONS(1667), + [anon_sym_PLUS_PLUS2] = ACTIONS(1667), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1667), + [anon_sym_SLASH_SLASH2] = ACTIONS(1667), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1667), + [anon_sym_bit_DASHshr2] = ACTIONS(1667), + [anon_sym_bit_DASHand2] = ACTIONS(1667), + [anon_sym_bit_DASHxor2] = ACTIONS(1667), + [anon_sym_bit_DASHor2] = ACTIONS(1667), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1667), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1667), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(1667), + [anon_sym_out_GT_GT] = ACTIONS(1667), + [anon_sym_e_GT_GT] = ACTIONS(1667), + [anon_sym_o_GT_GT] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(3), + }, + [936] = { + [sym_comment] = STATE(936), + [anon_sym_in] = ACTIONS(2616), + [sym__newline] = ACTIONS(2616), + [anon_sym_SEMI] = ACTIONS(2616), + [anon_sym_PIPE] = ACTIONS(2616), + [anon_sym_err_GT_PIPE] = ACTIONS(2616), + [anon_sym_out_GT_PIPE] = ACTIONS(2616), + [anon_sym_e_GT_PIPE] = ACTIONS(2616), + [anon_sym_o_GT_PIPE] = ACTIONS(2616), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2616), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2616), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2616), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2616), + [anon_sym_RPAREN] = ACTIONS(2616), + [anon_sym_GT2] = ACTIONS(2618), + [anon_sym_DASH2] = ACTIONS(2616), + [anon_sym_LBRACE] = ACTIONS(2616), + [anon_sym_RBRACE] = ACTIONS(2616), + [anon_sym_EQ_GT] = ACTIONS(2616), + [anon_sym_STAR2] = ACTIONS(2618), + [anon_sym_and2] = ACTIONS(2616), + [anon_sym_xor2] = ACTIONS(2616), + [anon_sym_or2] = ACTIONS(2616), + [anon_sym_not_DASHin2] = ACTIONS(2616), + [anon_sym_has2] = ACTIONS(2616), + [anon_sym_not_DASHhas2] = ACTIONS(2616), + [anon_sym_starts_DASHwith2] = ACTIONS(2616), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2616), + [anon_sym_ends_DASHwith2] = ACTIONS(2616), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2616), + [anon_sym_EQ_EQ2] = ACTIONS(2616), + [anon_sym_BANG_EQ2] = ACTIONS(2616), + [anon_sym_LT2] = ACTIONS(2618), + [anon_sym_LT_EQ2] = ACTIONS(2616), + [anon_sym_GT_EQ2] = ACTIONS(2616), + [anon_sym_EQ_TILDE2] = ACTIONS(2616), + [anon_sym_BANG_TILDE2] = ACTIONS(2616), + [anon_sym_like2] = ACTIONS(2616), + [anon_sym_not_DASHlike2] = ACTIONS(2616), + [anon_sym_STAR_STAR2] = ACTIONS(2616), + [anon_sym_PLUS_PLUS2] = ACTIONS(2616), + [anon_sym_SLASH2] = ACTIONS(2618), + [anon_sym_mod2] = ACTIONS(2616), + [anon_sym_SLASH_SLASH2] = ACTIONS(2616), + [anon_sym_PLUS2] = ACTIONS(2618), + [anon_sym_bit_DASHshl2] = ACTIONS(2616), + [anon_sym_bit_DASHshr2] = ACTIONS(2616), + [anon_sym_bit_DASHand2] = ACTIONS(2616), + [anon_sym_bit_DASHxor2] = ACTIONS(2616), + [anon_sym_bit_DASHor2] = ACTIONS(2616), + [anon_sym_err_GT] = ACTIONS(2618), + [anon_sym_out_GT] = ACTIONS(2618), + [anon_sym_e_GT] = ACTIONS(2618), + [anon_sym_o_GT] = ACTIONS(2618), + [anon_sym_err_PLUSout_GT] = ACTIONS(2618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2618), + [anon_sym_o_PLUSe_GT] = ACTIONS(2618), + [anon_sym_e_PLUSo_GT] = ACTIONS(2618), + [anon_sym_err_GT_GT] = ACTIONS(2616), + [anon_sym_out_GT_GT] = ACTIONS(2616), + [anon_sym_e_GT_GT] = ACTIONS(2616), + [anon_sym_o_GT_GT] = ACTIONS(2616), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2616), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2616), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2616), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2616), + [anon_sym_POUND] = ACTIONS(3), + }, + [937] = { [sym_comment] = STATE(937), - [ts_builtin_sym_end] = ACTIONS(1872), - [anon_sym_in] = ACTIONS(1872), - [sym__newline] = ACTIONS(1872), - [anon_sym_SEMI] = ACTIONS(1872), - [anon_sym_PIPE] = ACTIONS(1872), - [anon_sym_err_GT_PIPE] = ACTIONS(1872), - [anon_sym_out_GT_PIPE] = ACTIONS(1872), - [anon_sym_e_GT_PIPE] = ACTIONS(1872), - [anon_sym_o_GT_PIPE] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1872), - [anon_sym_GT2] = ACTIONS(1874), - [anon_sym_DASH2] = ACTIONS(1872), - [anon_sym_STAR2] = ACTIONS(1874), - [anon_sym_and2] = ACTIONS(1872), - [anon_sym_xor2] = ACTIONS(1872), - [anon_sym_or2] = ACTIONS(1872), - [anon_sym_not_DASHin2] = ACTIONS(1872), - [anon_sym_has2] = ACTIONS(1872), - [anon_sym_not_DASHhas2] = ACTIONS(1872), - [anon_sym_starts_DASHwith2] = ACTIONS(1872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1872), - [anon_sym_ends_DASHwith2] = ACTIONS(1872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1872), - [anon_sym_EQ_EQ2] = ACTIONS(1872), - [anon_sym_BANG_EQ2] = ACTIONS(1872), - [anon_sym_LT2] = ACTIONS(1874), - [anon_sym_LT_EQ2] = ACTIONS(1872), - [anon_sym_GT_EQ2] = ACTIONS(1872), - [anon_sym_EQ_TILDE2] = ACTIONS(1872), - [anon_sym_BANG_TILDE2] = ACTIONS(1872), - [anon_sym_like2] = ACTIONS(1872), - [anon_sym_not_DASHlike2] = ACTIONS(1872), - [anon_sym_STAR_STAR2] = ACTIONS(1872), - [anon_sym_PLUS_PLUS2] = ACTIONS(1872), - [anon_sym_SLASH2] = ACTIONS(1874), - [anon_sym_mod2] = ACTIONS(1872), - [anon_sym_SLASH_SLASH2] = ACTIONS(1872), - [anon_sym_PLUS2] = ACTIONS(1874), - [anon_sym_bit_DASHshl2] = ACTIONS(1872), - [anon_sym_bit_DASHshr2] = ACTIONS(1872), - [anon_sym_bit_DASHand2] = ACTIONS(1872), - [anon_sym_bit_DASHxor2] = ACTIONS(1872), - [anon_sym_bit_DASHor2] = ACTIONS(1872), - [anon_sym_DOT_DOT2] = ACTIONS(1874), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1872), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1872), - [anon_sym_err_GT] = ACTIONS(1874), - [anon_sym_out_GT] = ACTIONS(1874), - [anon_sym_e_GT] = ACTIONS(1874), - [anon_sym_o_GT] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT] = ACTIONS(1874), - [anon_sym_err_GT_GT] = ACTIONS(1872), - [anon_sym_out_GT_GT] = ACTIONS(1872), - [anon_sym_e_GT_GT] = ACTIONS(1872), - [anon_sym_o_GT_GT] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1872), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(938)] = { + [anon_sym_in] = ACTIONS(2620), + [sym__newline] = ACTIONS(2620), + [anon_sym_SEMI] = ACTIONS(2620), + [anon_sym_PIPE] = ACTIONS(2620), + [anon_sym_err_GT_PIPE] = ACTIONS(2620), + [anon_sym_out_GT_PIPE] = ACTIONS(2620), + [anon_sym_e_GT_PIPE] = ACTIONS(2620), + [anon_sym_o_GT_PIPE] = ACTIONS(2620), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2620), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2620), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2620), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2620), + [anon_sym_RPAREN] = ACTIONS(2620), + [anon_sym_GT2] = ACTIONS(2622), + [anon_sym_DASH2] = ACTIONS(2620), + [anon_sym_LBRACE] = ACTIONS(2620), + [anon_sym_RBRACE] = ACTIONS(2620), + [anon_sym_EQ_GT] = ACTIONS(2620), + [anon_sym_STAR2] = ACTIONS(2622), + [anon_sym_and2] = ACTIONS(2620), + [anon_sym_xor2] = ACTIONS(2620), + [anon_sym_or2] = ACTIONS(2620), + [anon_sym_not_DASHin2] = ACTIONS(2620), + [anon_sym_has2] = ACTIONS(2620), + [anon_sym_not_DASHhas2] = ACTIONS(2620), + [anon_sym_starts_DASHwith2] = ACTIONS(2620), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2620), + [anon_sym_ends_DASHwith2] = ACTIONS(2620), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2620), + [anon_sym_EQ_EQ2] = ACTIONS(2620), + [anon_sym_BANG_EQ2] = ACTIONS(2620), + [anon_sym_LT2] = ACTIONS(2622), + [anon_sym_LT_EQ2] = ACTIONS(2620), + [anon_sym_GT_EQ2] = ACTIONS(2620), + [anon_sym_EQ_TILDE2] = ACTIONS(2620), + [anon_sym_BANG_TILDE2] = ACTIONS(2620), + [anon_sym_like2] = ACTIONS(2620), + [anon_sym_not_DASHlike2] = ACTIONS(2620), + [anon_sym_STAR_STAR2] = ACTIONS(2620), + [anon_sym_PLUS_PLUS2] = ACTIONS(2620), + [anon_sym_SLASH2] = ACTIONS(2622), + [anon_sym_mod2] = ACTIONS(2620), + [anon_sym_SLASH_SLASH2] = ACTIONS(2620), + [anon_sym_PLUS2] = ACTIONS(2622), + [anon_sym_bit_DASHshl2] = ACTIONS(2620), + [anon_sym_bit_DASHshr2] = ACTIONS(2620), + [anon_sym_bit_DASHand2] = ACTIONS(2620), + [anon_sym_bit_DASHxor2] = ACTIONS(2620), + [anon_sym_bit_DASHor2] = ACTIONS(2620), + [anon_sym_err_GT] = ACTIONS(2622), + [anon_sym_out_GT] = ACTIONS(2622), + [anon_sym_e_GT] = ACTIONS(2622), + [anon_sym_o_GT] = ACTIONS(2622), + [anon_sym_err_PLUSout_GT] = ACTIONS(2622), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2622), + [anon_sym_o_PLUSe_GT] = ACTIONS(2622), + [anon_sym_e_PLUSo_GT] = ACTIONS(2622), + [anon_sym_err_GT_GT] = ACTIONS(2620), + [anon_sym_out_GT_GT] = ACTIONS(2620), + [anon_sym_e_GT_GT] = ACTIONS(2620), + [anon_sym_o_GT_GT] = ACTIONS(2620), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2620), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2620), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2620), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2620), + [anon_sym_POUND] = ACTIONS(3), + }, + [938] = { [sym_comment] = STATE(938), - [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(2652), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2654), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2654), - [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_POUND] = ACTIONS(3), - }, - [STATE(939)] = { + [anon_sym_in] = ACTIONS(2233), + [sym__newline] = ACTIONS(2235), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_PIPE] = ACTIONS(2235), + [anon_sym_err_GT_PIPE] = ACTIONS(2235), + [anon_sym_out_GT_PIPE] = ACTIONS(2235), + [anon_sym_e_GT_PIPE] = ACTIONS(2235), + [anon_sym_o_GT_PIPE] = ACTIONS(2235), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2235), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2235), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2235), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2235), + [anon_sym_RPAREN] = ACTIONS(2235), + [anon_sym_GT2] = ACTIONS(2237), + [anon_sym_DASH2] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_EQ_GT] = ACTIONS(2235), + [anon_sym_STAR2] = ACTIONS(2237), + [anon_sym_and2] = ACTIONS(2233), + [anon_sym_xor2] = ACTIONS(2233), + [anon_sym_or2] = ACTIONS(2233), + [anon_sym_not_DASHin2] = ACTIONS(2233), + [anon_sym_has2] = ACTIONS(2233), + [anon_sym_not_DASHhas2] = ACTIONS(2233), + [anon_sym_starts_DASHwith2] = ACTIONS(2233), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2233), + [anon_sym_ends_DASHwith2] = ACTIONS(2233), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2233), + [anon_sym_EQ_EQ2] = ACTIONS(2233), + [anon_sym_BANG_EQ2] = ACTIONS(2233), + [anon_sym_LT2] = ACTIONS(2237), + [anon_sym_LT_EQ2] = ACTIONS(2233), + [anon_sym_GT_EQ2] = ACTIONS(2233), + [anon_sym_EQ_TILDE2] = ACTIONS(2233), + [anon_sym_BANG_TILDE2] = ACTIONS(2233), + [anon_sym_like2] = ACTIONS(2233), + [anon_sym_not_DASHlike2] = ACTIONS(2233), + [anon_sym_STAR_STAR2] = ACTIONS(2233), + [anon_sym_PLUS_PLUS2] = ACTIONS(2233), + [anon_sym_SLASH2] = ACTIONS(2237), + [anon_sym_mod2] = ACTIONS(2233), + [anon_sym_SLASH_SLASH2] = ACTIONS(2233), + [anon_sym_PLUS2] = ACTIONS(2237), + [anon_sym_bit_DASHshl2] = ACTIONS(2233), + [anon_sym_bit_DASHshr2] = ACTIONS(2233), + [anon_sym_bit_DASHand2] = ACTIONS(2233), + [anon_sym_bit_DASHxor2] = ACTIONS(2233), + [anon_sym_bit_DASHor2] = ACTIONS(2233), + [anon_sym_err_GT] = ACTIONS(2239), + [anon_sym_out_GT] = ACTIONS(2239), + [anon_sym_e_GT] = ACTIONS(2239), + [anon_sym_o_GT] = ACTIONS(2239), + [anon_sym_err_PLUSout_GT] = ACTIONS(2239), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2239), + [anon_sym_o_PLUSe_GT] = ACTIONS(2239), + [anon_sym_e_PLUSo_GT] = ACTIONS(2239), + [anon_sym_err_GT_GT] = ACTIONS(2235), + [anon_sym_out_GT_GT] = ACTIONS(2235), + [anon_sym_e_GT_GT] = ACTIONS(2235), + [anon_sym_o_GT_GT] = ACTIONS(2235), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2235), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2235), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2235), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2235), + [anon_sym_POUND] = ACTIONS(3), + }, + [939] = { [sym_comment] = STATE(939), - [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), - [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(940)] = { + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [940] = { [sym_comment] = STATE(940), - [ts_builtin_sym_end] = ACTIONS(1933), - [anon_sym_in] = ACTIONS(1933), - [sym__newline] = ACTIONS(1933), - [anon_sym_SEMI] = ACTIONS(1933), - [anon_sym_PIPE] = ACTIONS(1933), - [anon_sym_err_GT_PIPE] = ACTIONS(1933), - [anon_sym_out_GT_PIPE] = ACTIONS(1933), - [anon_sym_e_GT_PIPE] = ACTIONS(1933), - [anon_sym_o_GT_PIPE] = ACTIONS(1933), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1933), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1933), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1933), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1933), - [anon_sym_GT2] = ACTIONS(1935), - [anon_sym_DASH2] = ACTIONS(1933), - [anon_sym_STAR2] = ACTIONS(1935), - [anon_sym_and2] = ACTIONS(1933), - [anon_sym_xor2] = ACTIONS(1933), - [anon_sym_or2] = ACTIONS(1933), - [anon_sym_not_DASHin2] = ACTIONS(1933), - [anon_sym_has2] = ACTIONS(1933), - [anon_sym_not_DASHhas2] = ACTIONS(1933), - [anon_sym_starts_DASHwith2] = ACTIONS(1933), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1933), - [anon_sym_ends_DASHwith2] = ACTIONS(1933), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1933), - [anon_sym_EQ_EQ2] = ACTIONS(1933), - [anon_sym_BANG_EQ2] = ACTIONS(1933), - [anon_sym_LT2] = ACTIONS(1935), - [anon_sym_LT_EQ2] = ACTIONS(1933), - [anon_sym_GT_EQ2] = ACTIONS(1933), - [anon_sym_EQ_TILDE2] = ACTIONS(1933), - [anon_sym_BANG_TILDE2] = ACTIONS(1933), - [anon_sym_like2] = ACTIONS(1933), - [anon_sym_not_DASHlike2] = ACTIONS(1933), - [anon_sym_STAR_STAR2] = ACTIONS(1933), - [anon_sym_PLUS_PLUS2] = ACTIONS(1933), - [anon_sym_SLASH2] = ACTIONS(1935), - [anon_sym_mod2] = ACTIONS(1933), - [anon_sym_SLASH_SLASH2] = ACTIONS(1933), - [anon_sym_PLUS2] = ACTIONS(1935), - [anon_sym_bit_DASHshl2] = ACTIONS(1933), - [anon_sym_bit_DASHshr2] = ACTIONS(1933), - [anon_sym_bit_DASHand2] = ACTIONS(1933), - [anon_sym_bit_DASHxor2] = ACTIONS(1933), - [anon_sym_bit_DASHor2] = ACTIONS(1933), - [anon_sym_DOT_DOT2] = ACTIONS(1935), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1933), - [anon_sym_err_GT] = ACTIONS(1935), - [anon_sym_out_GT] = ACTIONS(1935), - [anon_sym_e_GT] = ACTIONS(1935), - [anon_sym_o_GT] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT] = ACTIONS(1935), - [anon_sym_err_GT_GT] = ACTIONS(1933), - [anon_sym_out_GT_GT] = ACTIONS(1933), - [anon_sym_e_GT_GT] = ACTIONS(1933), - [anon_sym_o_GT_GT] = ACTIONS(1933), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1933), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1933), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1933), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1933), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(941)] = { + [anon_sym_in] = ACTIONS(2624), + [sym__newline] = ACTIONS(2624), + [anon_sym_SEMI] = ACTIONS(2624), + [anon_sym_PIPE] = ACTIONS(2624), + [anon_sym_err_GT_PIPE] = ACTIONS(2624), + [anon_sym_out_GT_PIPE] = ACTIONS(2624), + [anon_sym_e_GT_PIPE] = ACTIONS(2624), + [anon_sym_o_GT_PIPE] = ACTIONS(2624), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2624), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2624), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2624), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2624), + [anon_sym_RPAREN] = ACTIONS(2624), + [anon_sym_GT2] = ACTIONS(2626), + [anon_sym_DASH2] = ACTIONS(2624), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_EQ_GT] = ACTIONS(2624), + [anon_sym_STAR2] = ACTIONS(2626), + [anon_sym_and2] = ACTIONS(2624), + [anon_sym_xor2] = ACTIONS(2624), + [anon_sym_or2] = ACTIONS(2624), + [anon_sym_not_DASHin2] = ACTIONS(2624), + [anon_sym_has2] = ACTIONS(2624), + [anon_sym_not_DASHhas2] = ACTIONS(2624), + [anon_sym_starts_DASHwith2] = ACTIONS(2624), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2624), + [anon_sym_ends_DASHwith2] = ACTIONS(2624), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2624), + [anon_sym_EQ_EQ2] = ACTIONS(2624), + [anon_sym_BANG_EQ2] = ACTIONS(2624), + [anon_sym_LT2] = ACTIONS(2626), + [anon_sym_LT_EQ2] = ACTIONS(2624), + [anon_sym_GT_EQ2] = ACTIONS(2624), + [anon_sym_EQ_TILDE2] = ACTIONS(2624), + [anon_sym_BANG_TILDE2] = ACTIONS(2624), + [anon_sym_like2] = ACTIONS(2624), + [anon_sym_not_DASHlike2] = ACTIONS(2624), + [anon_sym_STAR_STAR2] = ACTIONS(2624), + [anon_sym_PLUS_PLUS2] = ACTIONS(2624), + [anon_sym_SLASH2] = ACTIONS(2626), + [anon_sym_mod2] = ACTIONS(2624), + [anon_sym_SLASH_SLASH2] = ACTIONS(2624), + [anon_sym_PLUS2] = ACTIONS(2626), + [anon_sym_bit_DASHshl2] = ACTIONS(2624), + [anon_sym_bit_DASHshr2] = ACTIONS(2624), + [anon_sym_bit_DASHand2] = ACTIONS(2624), + [anon_sym_bit_DASHxor2] = ACTIONS(2624), + [anon_sym_bit_DASHor2] = ACTIONS(2624), + [anon_sym_err_GT] = ACTIONS(2626), + [anon_sym_out_GT] = ACTIONS(2626), + [anon_sym_e_GT] = ACTIONS(2626), + [anon_sym_o_GT] = ACTIONS(2626), + [anon_sym_err_PLUSout_GT] = ACTIONS(2626), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2626), + [anon_sym_o_PLUSe_GT] = ACTIONS(2626), + [anon_sym_e_PLUSo_GT] = ACTIONS(2626), + [anon_sym_err_GT_GT] = ACTIONS(2624), + [anon_sym_out_GT_GT] = ACTIONS(2624), + [anon_sym_e_GT_GT] = ACTIONS(2624), + [anon_sym_o_GT_GT] = ACTIONS(2624), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2624), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2624), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2624), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2624), + [anon_sym_POUND] = ACTIONS(3), + }, + [941] = { [sym_comment] = STATE(941), - [ts_builtin_sym_end] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [sym__newline] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_err_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_GT_PIPE] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), - [anon_sym_GT2] = ACTIONS(1616), - [anon_sym_DASH2] = ACTIONS(1738), - [anon_sym_STAR2] = ACTIONS(1616), - [anon_sym_and2] = ACTIONS(1738), - [anon_sym_xor2] = ACTIONS(1738), - [anon_sym_or2] = ACTIONS(1738), - [anon_sym_not_DASHin2] = ACTIONS(1738), - [anon_sym_has2] = ACTIONS(1738), - [anon_sym_not_DASHhas2] = ACTIONS(1738), - [anon_sym_starts_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), - [anon_sym_ends_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), - [anon_sym_EQ_EQ2] = ACTIONS(1738), - [anon_sym_BANG_EQ2] = ACTIONS(1738), - [anon_sym_LT2] = ACTIONS(1616), - [anon_sym_LT_EQ2] = ACTIONS(1738), - [anon_sym_GT_EQ2] = ACTIONS(1738), - [anon_sym_EQ_TILDE2] = ACTIONS(1738), - [anon_sym_BANG_TILDE2] = ACTIONS(1738), - [anon_sym_like2] = ACTIONS(1738), - [anon_sym_not_DASHlike2] = ACTIONS(1738), - [anon_sym_STAR_STAR2] = ACTIONS(1738), - [anon_sym_PLUS_PLUS2] = ACTIONS(1738), - [anon_sym_SLASH2] = ACTIONS(1616), - [anon_sym_mod2] = ACTIONS(1738), - [anon_sym_SLASH_SLASH2] = ACTIONS(1738), - [anon_sym_PLUS2] = ACTIONS(1616), - [anon_sym_bit_DASHshl2] = ACTIONS(1738), - [anon_sym_bit_DASHshr2] = ACTIONS(1738), - [anon_sym_bit_DASHand2] = ACTIONS(1738), - [anon_sym_bit_DASHxor2] = ACTIONS(1738), - [anon_sym_bit_DASHor2] = ACTIONS(1738), - [anon_sym_DOT_DOT2] = ACTIONS(1826), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), - [anon_sym_err_GT] = ACTIONS(1616), - [anon_sym_out_GT] = ACTIONS(1616), - [anon_sym_e_GT] = ACTIONS(1616), - [anon_sym_o_GT] = ACTIONS(1616), - [anon_sym_err_PLUSout_GT] = ACTIONS(1616), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), - [anon_sym_o_PLUSe_GT] = ACTIONS(1616), - [anon_sym_e_PLUSo_GT] = ACTIONS(1616), - [anon_sym_err_GT_GT] = ACTIONS(1738), - [anon_sym_out_GT_GT] = ACTIONS(1738), - [anon_sym_e_GT_GT] = ACTIONS(1738), - [anon_sym_o_GT_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(942)] = { + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [942] = { [sym_comment] = STATE(942), - [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(943)] = { + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [943] = { [sym_comment] = STATE(943), - [anon_sym_in] = ACTIONS(1774), - [sym__newline] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_err_GT_PIPE] = ACTIONS(1774), - [anon_sym_out_GT_PIPE] = ACTIONS(1774), - [anon_sym_e_GT_PIPE] = ACTIONS(1774), - [anon_sym_o_GT_PIPE] = ACTIONS(1774), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), - [anon_sym_RPAREN] = ACTIONS(1774), - [anon_sym_GT2] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(1774), - [anon_sym_RBRACE] = ACTIONS(1774), - [anon_sym_STAR2] = ACTIONS(1776), - [anon_sym_and2] = ACTIONS(1774), - [anon_sym_xor2] = ACTIONS(1774), - [anon_sym_or2] = ACTIONS(1774), - [anon_sym_not_DASHin2] = ACTIONS(1774), - [anon_sym_has2] = ACTIONS(1774), - [anon_sym_not_DASHhas2] = ACTIONS(1774), - [anon_sym_starts_DASHwith2] = ACTIONS(1774), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1774), - [anon_sym_ends_DASHwith2] = ACTIONS(1774), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1774), - [anon_sym_EQ_EQ2] = ACTIONS(1774), - [anon_sym_BANG_EQ2] = ACTIONS(1774), - [anon_sym_LT2] = ACTIONS(1776), - [anon_sym_LT_EQ2] = ACTIONS(1774), - [anon_sym_GT_EQ2] = ACTIONS(1774), - [anon_sym_EQ_TILDE2] = ACTIONS(1774), - [anon_sym_BANG_TILDE2] = ACTIONS(1774), - [anon_sym_like2] = ACTIONS(1774), - [anon_sym_not_DASHlike2] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_STAR_STAR2] = ACTIONS(1774), - [anon_sym_PLUS_PLUS2] = ACTIONS(1774), - [anon_sym_SLASH2] = ACTIONS(1776), - [anon_sym_mod2] = ACTIONS(1774), - [anon_sym_SLASH_SLASH2] = ACTIONS(1774), - [anon_sym_PLUS2] = ACTIONS(1776), - [anon_sym_bit_DASHshl2] = ACTIONS(1774), - [anon_sym_bit_DASHshr2] = ACTIONS(1774), - [anon_sym_bit_DASHand2] = ACTIONS(1774), - [anon_sym_bit_DASHxor2] = ACTIONS(1774), - [anon_sym_bit_DASHor2] = ACTIONS(1774), - [anon_sym_err_GT] = ACTIONS(1776), - [anon_sym_out_GT] = ACTIONS(1776), - [anon_sym_e_GT] = ACTIONS(1776), - [anon_sym_o_GT] = ACTIONS(1776), - [anon_sym_err_PLUSout_GT] = ACTIONS(1776), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), - [anon_sym_o_PLUSe_GT] = ACTIONS(1776), - [anon_sym_e_PLUSo_GT] = ACTIONS(1776), - [anon_sym_err_GT_GT] = ACTIONS(1774), - [anon_sym_out_GT_GT] = ACTIONS(1774), - [anon_sym_e_GT_GT] = ACTIONS(1774), - [anon_sym_o_GT_GT] = ACTIONS(1774), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), - [sym__unquoted_pattern] = ACTIONS(1776), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(944)] = { + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [944] = { [sym_comment] = STATE(944), - [anon_sym_in] = ACTIONS(2664), - [sym__newline] = ACTIONS(2664), - [anon_sym_SEMI] = ACTIONS(2664), - [anon_sym_PIPE] = ACTIONS(2664), - [anon_sym_err_GT_PIPE] = ACTIONS(2664), - [anon_sym_out_GT_PIPE] = ACTIONS(2664), - [anon_sym_e_GT_PIPE] = ACTIONS(2664), - [anon_sym_o_GT_PIPE] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2664), - [anon_sym_RPAREN] = ACTIONS(2664), - [anon_sym_GT2] = ACTIONS(2666), - [anon_sym_DASH2] = ACTIONS(2664), - [anon_sym_LBRACE] = ACTIONS(2664), - [anon_sym_RBRACE] = ACTIONS(2664), - [anon_sym_EQ_GT] = ACTIONS(2664), - [anon_sym_STAR2] = ACTIONS(2666), - [anon_sym_and2] = ACTIONS(2664), - [anon_sym_xor2] = ACTIONS(2664), - [anon_sym_or2] = ACTIONS(2664), - [anon_sym_not_DASHin2] = ACTIONS(2664), - [anon_sym_has2] = ACTIONS(2664), - [anon_sym_not_DASHhas2] = ACTIONS(2664), - [anon_sym_starts_DASHwith2] = ACTIONS(2664), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2664), - [anon_sym_ends_DASHwith2] = ACTIONS(2664), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2664), - [anon_sym_EQ_EQ2] = ACTIONS(2664), - [anon_sym_BANG_EQ2] = ACTIONS(2664), - [anon_sym_LT2] = ACTIONS(2666), - [anon_sym_LT_EQ2] = ACTIONS(2664), - [anon_sym_GT_EQ2] = ACTIONS(2664), - [anon_sym_EQ_TILDE2] = ACTIONS(2664), - [anon_sym_BANG_TILDE2] = ACTIONS(2664), - [anon_sym_like2] = ACTIONS(2664), - [anon_sym_not_DASHlike2] = ACTIONS(2664), - [anon_sym_STAR_STAR2] = ACTIONS(2664), - [anon_sym_PLUS_PLUS2] = ACTIONS(2664), - [anon_sym_SLASH2] = ACTIONS(2666), - [anon_sym_mod2] = ACTIONS(2664), - [anon_sym_SLASH_SLASH2] = ACTIONS(2664), - [anon_sym_PLUS2] = ACTIONS(2666), - [anon_sym_bit_DASHshl2] = ACTIONS(2664), - [anon_sym_bit_DASHshr2] = ACTIONS(2664), - [anon_sym_bit_DASHand2] = ACTIONS(2664), - [anon_sym_bit_DASHxor2] = ACTIONS(2664), - [anon_sym_bit_DASHor2] = ACTIONS(2664), - [anon_sym_err_GT] = ACTIONS(2666), - [anon_sym_out_GT] = ACTIONS(2666), - [anon_sym_e_GT] = ACTIONS(2666), - [anon_sym_o_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT] = ACTIONS(2666), - [anon_sym_err_GT_GT] = ACTIONS(2664), - [anon_sym_out_GT_GT] = ACTIONS(2664), - [anon_sym_e_GT_GT] = ACTIONS(2664), - [anon_sym_o_GT_GT] = ACTIONS(2664), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2664), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2664), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2664), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2664), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(945)] = { + [anon_sym_in] = ACTIONS(1736), + [sym__newline] = ACTIONS(1736), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_PIPE] = ACTIONS(1736), + [anon_sym_err_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_GT_PIPE] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_GT2] = ACTIONS(1610), + [anon_sym_DASH2] = ACTIONS(1736), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_EQ_GT] = ACTIONS(1736), + [anon_sym_STAR2] = ACTIONS(1610), + [anon_sym_and2] = ACTIONS(1736), + [anon_sym_xor2] = ACTIONS(1736), + [anon_sym_or2] = ACTIONS(1736), + [anon_sym_not_DASHin2] = ACTIONS(1736), + [anon_sym_has2] = ACTIONS(1736), + [anon_sym_not_DASHhas2] = ACTIONS(1736), + [anon_sym_starts_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), + [anon_sym_ends_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), + [anon_sym_EQ_EQ2] = ACTIONS(1736), + [anon_sym_BANG_EQ2] = ACTIONS(1736), + [anon_sym_LT2] = ACTIONS(1610), + [anon_sym_LT_EQ2] = ACTIONS(1736), + [anon_sym_GT_EQ2] = ACTIONS(1736), + [anon_sym_EQ_TILDE2] = ACTIONS(1736), + [anon_sym_BANG_TILDE2] = ACTIONS(1736), + [anon_sym_like2] = ACTIONS(1736), + [anon_sym_not_DASHlike2] = ACTIONS(1736), + [anon_sym_STAR_STAR2] = ACTIONS(1736), + [anon_sym_PLUS_PLUS2] = ACTIONS(1736), + [anon_sym_SLASH2] = ACTIONS(1610), + [anon_sym_mod2] = ACTIONS(1736), + [anon_sym_SLASH_SLASH2] = ACTIONS(1736), + [anon_sym_PLUS2] = ACTIONS(1610), + [anon_sym_bit_DASHshl2] = ACTIONS(1736), + [anon_sym_bit_DASHshr2] = ACTIONS(1736), + [anon_sym_bit_DASHand2] = ACTIONS(1736), + [anon_sym_bit_DASHxor2] = ACTIONS(1736), + [anon_sym_bit_DASHor2] = ACTIONS(1736), + [anon_sym_err_GT] = ACTIONS(1610), + [anon_sym_out_GT] = ACTIONS(1610), + [anon_sym_e_GT] = ACTIONS(1610), + [anon_sym_o_GT] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT] = ACTIONS(1610), + [anon_sym_err_GT_GT] = ACTIONS(1736), + [anon_sym_out_GT_GT] = ACTIONS(1736), + [anon_sym_e_GT_GT] = ACTIONS(1736), + [anon_sym_o_GT_GT] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), + [anon_sym_POUND] = ACTIONS(3), + }, + [945] = { [sym_comment] = STATE(945), - [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_RBRACE] = 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_LPAREN2] = ACTIONS(1866), - [anon_sym_STAR_STAR2] = ACTIONS(1866), - [anon_sym_PLUS_PLUS2] = ACTIONS(1866), - [anon_sym_SLASH2] = ACTIONS(1868), - [anon_sym_mod2] = ACTIONS(1866), - [anon_sym_SLASH_SLASH2] = ACTIONS(1866), - [anon_sym_PLUS2] = ACTIONS(1868), - [anon_sym_bit_DASHshl2] = ACTIONS(1866), - [anon_sym_bit_DASHshr2] = ACTIONS(1866), - [anon_sym_bit_DASHand2] = ACTIONS(1866), - [anon_sym_bit_DASHxor2] = ACTIONS(1866), - [anon_sym_bit_DASHor2] = ACTIONS(1866), - [anon_sym_err_GT] = ACTIONS(1868), - [anon_sym_out_GT] = ACTIONS(1868), - [anon_sym_e_GT] = ACTIONS(1868), - [anon_sym_o_GT] = ACTIONS(1868), - [anon_sym_err_PLUSout_GT] = ACTIONS(1868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), - [anon_sym_o_PLUSe_GT] = ACTIONS(1868), - [anon_sym_e_PLUSo_GT] = ACTIONS(1868), - [anon_sym_err_GT_GT] = ACTIONS(1866), - [anon_sym_out_GT_GT] = ACTIONS(1866), - [anon_sym_e_GT_GT] = ACTIONS(1866), - [anon_sym_o_GT_GT] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), - [sym__unquoted_pattern] = ACTIONS(1868), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(946)] = { + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [946] = { [sym_comment] = STATE(946), - [anon_sym_in] = ACTIONS(1921), - [sym__newline] = ACTIONS(1921), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_err_GT_PIPE] = ACTIONS(1921), - [anon_sym_out_GT_PIPE] = ACTIONS(1921), - [anon_sym_e_GT_PIPE] = ACTIONS(1921), - [anon_sym_o_GT_PIPE] = ACTIONS(1921), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1921), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1921), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1921), - [anon_sym_GT2] = ACTIONS(1923), - [anon_sym_DASH2] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1921), - [anon_sym_STAR2] = ACTIONS(1923), - [anon_sym_and2] = ACTIONS(1921), - [anon_sym_xor2] = ACTIONS(1921), - [anon_sym_or2] = ACTIONS(1921), - [anon_sym_not_DASHin2] = ACTIONS(1921), - [anon_sym_has2] = ACTIONS(1921), - [anon_sym_not_DASHhas2] = ACTIONS(1921), - [anon_sym_starts_DASHwith2] = ACTIONS(1921), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1921), - [anon_sym_ends_DASHwith2] = ACTIONS(1921), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1921), - [anon_sym_EQ_EQ2] = ACTIONS(1921), - [anon_sym_BANG_EQ2] = ACTIONS(1921), - [anon_sym_LT2] = ACTIONS(1923), - [anon_sym_LT_EQ2] = ACTIONS(1921), - [anon_sym_GT_EQ2] = ACTIONS(1921), - [anon_sym_EQ_TILDE2] = ACTIONS(1921), - [anon_sym_BANG_TILDE2] = ACTIONS(1921), - [anon_sym_like2] = ACTIONS(1921), - [anon_sym_not_DASHlike2] = ACTIONS(1921), - [anon_sym_LPAREN2] = ACTIONS(1921), - [anon_sym_STAR_STAR2] = ACTIONS(1921), - [anon_sym_PLUS_PLUS2] = ACTIONS(1921), - [anon_sym_SLASH2] = ACTIONS(1923), - [anon_sym_mod2] = ACTIONS(1921), - [anon_sym_SLASH_SLASH2] = ACTIONS(1921), - [anon_sym_PLUS2] = ACTIONS(1923), - [anon_sym_bit_DASHshl2] = ACTIONS(1921), - [anon_sym_bit_DASHshr2] = ACTIONS(1921), - [anon_sym_bit_DASHand2] = ACTIONS(1921), - [anon_sym_bit_DASHxor2] = ACTIONS(1921), - [anon_sym_bit_DASHor2] = ACTIONS(1921), - [anon_sym_err_GT] = ACTIONS(1923), - [anon_sym_out_GT] = ACTIONS(1923), - [anon_sym_e_GT] = ACTIONS(1923), - [anon_sym_o_GT] = ACTIONS(1923), - [anon_sym_err_PLUSout_GT] = ACTIONS(1923), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1923), - [anon_sym_o_PLUSe_GT] = ACTIONS(1923), - [anon_sym_e_PLUSo_GT] = ACTIONS(1923), - [anon_sym_err_GT_GT] = ACTIONS(1921), - [anon_sym_out_GT_GT] = ACTIONS(1921), - [anon_sym_e_GT_GT] = ACTIONS(1921), - [anon_sym_o_GT_GT] = ACTIONS(1921), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1921), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1921), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1921), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1921), - [sym__unquoted_pattern] = ACTIONS(1923), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(947)] = { + [anon_sym_in] = ACTIONS(2099), + [sym__newline] = ACTIONS(2099), + [anon_sym_SEMI] = ACTIONS(2099), + [anon_sym_PIPE] = ACTIONS(2099), + [anon_sym_err_GT_PIPE] = ACTIONS(2099), + [anon_sym_out_GT_PIPE] = ACTIONS(2099), + [anon_sym_e_GT_PIPE] = ACTIONS(2099), + [anon_sym_o_GT_PIPE] = ACTIONS(2099), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2099), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2099), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2099), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2099), + [anon_sym_RPAREN] = ACTIONS(2099), + [anon_sym_GT2] = ACTIONS(2101), + [anon_sym_DASH2] = ACTIONS(2099), + [anon_sym_RBRACE] = ACTIONS(2099), + [anon_sym_STAR2] = ACTIONS(2101), + [anon_sym_and2] = ACTIONS(2099), + [anon_sym_xor2] = ACTIONS(2099), + [anon_sym_or2] = ACTIONS(2099), + [anon_sym_not_DASHin2] = ACTIONS(2099), + [anon_sym_has2] = ACTIONS(2099), + [anon_sym_not_DASHhas2] = ACTIONS(2099), + [anon_sym_starts_DASHwith2] = ACTIONS(2099), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2099), + [anon_sym_ends_DASHwith2] = ACTIONS(2099), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2099), + [anon_sym_EQ_EQ2] = ACTIONS(2099), + [anon_sym_BANG_EQ2] = ACTIONS(2099), + [anon_sym_LT2] = ACTIONS(2101), + [anon_sym_LT_EQ2] = ACTIONS(2099), + [anon_sym_GT_EQ2] = ACTIONS(2099), + [anon_sym_EQ_TILDE2] = ACTIONS(2099), + [anon_sym_BANG_TILDE2] = ACTIONS(2099), + [anon_sym_like2] = ACTIONS(2099), + [anon_sym_not_DASHlike2] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(2103), + [anon_sym_STAR_STAR2] = ACTIONS(2099), + [anon_sym_PLUS_PLUS2] = ACTIONS(2099), + [anon_sym_SLASH2] = ACTIONS(2101), + [anon_sym_mod2] = ACTIONS(2099), + [anon_sym_SLASH_SLASH2] = ACTIONS(2099), + [anon_sym_PLUS2] = ACTIONS(2101), + [anon_sym_bit_DASHshl2] = ACTIONS(2099), + [anon_sym_bit_DASHshr2] = ACTIONS(2099), + [anon_sym_bit_DASHand2] = ACTIONS(2099), + [anon_sym_bit_DASHxor2] = ACTIONS(2099), + [anon_sym_bit_DASHor2] = ACTIONS(2099), + [anon_sym_err_GT] = ACTIONS(2101), + [anon_sym_out_GT] = ACTIONS(2101), + [anon_sym_e_GT] = ACTIONS(2101), + [anon_sym_o_GT] = ACTIONS(2101), + [anon_sym_err_PLUSout_GT] = ACTIONS(2101), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2101), + [anon_sym_o_PLUSe_GT] = ACTIONS(2101), + [anon_sym_e_PLUSo_GT] = ACTIONS(2101), + [anon_sym_err_GT_GT] = ACTIONS(2099), + [anon_sym_out_GT_GT] = ACTIONS(2099), + [anon_sym_e_GT_GT] = ACTIONS(2099), + [anon_sym_o_GT_GT] = ACTIONS(2099), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2099), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2099), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2099), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2099), + [sym__unquoted_pattern] = ACTIONS(2109), + [anon_sym_POUND] = ACTIONS(3), + }, + [947] = { [sym_comment] = STATE(947), - [ts_builtin_sym_end] = ACTIONS(1602), - [anon_sym_in] = ACTIONS(1602), - [sym__newline] = ACTIONS(1602), - [anon_sym_SEMI] = ACTIONS(1602), - [anon_sym_PIPE] = ACTIONS(1602), - [anon_sym_err_GT_PIPE] = ACTIONS(1602), - [anon_sym_out_GT_PIPE] = ACTIONS(1602), - [anon_sym_e_GT_PIPE] = ACTIONS(1602), - [anon_sym_o_GT_PIPE] = ACTIONS(1602), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1602), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1602), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1602), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1602), - [anon_sym_GT2] = ACTIONS(1600), - [anon_sym_DASH2] = ACTIONS(1602), - [anon_sym_STAR2] = ACTIONS(1600), - [anon_sym_and2] = ACTIONS(1602), - [anon_sym_xor2] = ACTIONS(1602), - [anon_sym_or2] = ACTIONS(1602), - [anon_sym_not_DASHin2] = ACTIONS(1602), - [anon_sym_has2] = ACTIONS(1602), - [anon_sym_not_DASHhas2] = ACTIONS(1602), - [anon_sym_starts_DASHwith2] = ACTIONS(1602), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1602), - [anon_sym_ends_DASHwith2] = ACTIONS(1602), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1602), - [anon_sym_EQ_EQ2] = ACTIONS(1602), - [anon_sym_BANG_EQ2] = ACTIONS(1602), - [anon_sym_LT2] = ACTIONS(1600), - [anon_sym_LT_EQ2] = ACTIONS(1602), - [anon_sym_GT_EQ2] = ACTIONS(1602), - [anon_sym_EQ_TILDE2] = ACTIONS(1602), - [anon_sym_BANG_TILDE2] = ACTIONS(1602), - [anon_sym_like2] = ACTIONS(1602), - [anon_sym_not_DASHlike2] = ACTIONS(1602), - [anon_sym_STAR_STAR2] = ACTIONS(1602), - [anon_sym_PLUS_PLUS2] = ACTIONS(1602), - [anon_sym_SLASH2] = ACTIONS(1600), - [anon_sym_mod2] = ACTIONS(1602), - [anon_sym_SLASH_SLASH2] = ACTIONS(1602), - [anon_sym_PLUS2] = ACTIONS(1600), - [anon_sym_bit_DASHshl2] = ACTIONS(1602), - [anon_sym_bit_DASHshr2] = ACTIONS(1602), - [anon_sym_bit_DASHand2] = ACTIONS(1602), - [anon_sym_bit_DASHxor2] = ACTIONS(1602), - [anon_sym_bit_DASHor2] = ACTIONS(1602), - [anon_sym_DOT_DOT2] = ACTIONS(1600), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1602), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1602), - [anon_sym_err_GT] = ACTIONS(1600), - [anon_sym_out_GT] = ACTIONS(1600), - [anon_sym_e_GT] = ACTIONS(1600), - [anon_sym_o_GT] = ACTIONS(1600), - [anon_sym_err_PLUSout_GT] = ACTIONS(1600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1600), - [anon_sym_o_PLUSe_GT] = ACTIONS(1600), - [anon_sym_e_PLUSo_GT] = ACTIONS(1600), - [anon_sym_err_GT_GT] = ACTIONS(1602), - [anon_sym_out_GT_GT] = ACTIONS(1602), - [anon_sym_e_GT_GT] = ACTIONS(1602), - [anon_sym_o_GT_GT] = ACTIONS(1602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1602), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(948)] = { + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [948] = { [sym_comment] = STATE(948), - [anon_sym_in] = ACTIONS(2668), - [sym__newline] = ACTIONS(2668), - [anon_sym_SEMI] = ACTIONS(2668), - [anon_sym_PIPE] = ACTIONS(2668), - [anon_sym_err_GT_PIPE] = ACTIONS(2668), - [anon_sym_out_GT_PIPE] = ACTIONS(2668), - [anon_sym_e_GT_PIPE] = ACTIONS(2668), - [anon_sym_o_GT_PIPE] = ACTIONS(2668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2668), - [anon_sym_RPAREN] = ACTIONS(2668), - [anon_sym_GT2] = ACTIONS(2670), - [anon_sym_DASH2] = ACTIONS(2668), - [anon_sym_LBRACE] = ACTIONS(2668), - [anon_sym_RBRACE] = ACTIONS(2668), - [anon_sym_EQ_GT] = ACTIONS(2668), - [anon_sym_STAR2] = ACTIONS(2670), - [anon_sym_and2] = ACTIONS(2668), - [anon_sym_xor2] = ACTIONS(2668), - [anon_sym_or2] = ACTIONS(2668), - [anon_sym_not_DASHin2] = ACTIONS(2668), - [anon_sym_has2] = ACTIONS(2668), - [anon_sym_not_DASHhas2] = ACTIONS(2668), - [anon_sym_starts_DASHwith2] = ACTIONS(2668), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2668), - [anon_sym_ends_DASHwith2] = ACTIONS(2668), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2668), - [anon_sym_EQ_EQ2] = ACTIONS(2668), - [anon_sym_BANG_EQ2] = ACTIONS(2668), - [anon_sym_LT2] = ACTIONS(2670), - [anon_sym_LT_EQ2] = ACTIONS(2668), - [anon_sym_GT_EQ2] = ACTIONS(2668), - [anon_sym_EQ_TILDE2] = ACTIONS(2668), - [anon_sym_BANG_TILDE2] = ACTIONS(2668), - [anon_sym_like2] = ACTIONS(2668), - [anon_sym_not_DASHlike2] = ACTIONS(2668), - [anon_sym_STAR_STAR2] = ACTIONS(2668), - [anon_sym_PLUS_PLUS2] = ACTIONS(2668), - [anon_sym_SLASH2] = ACTIONS(2670), - [anon_sym_mod2] = ACTIONS(2668), - [anon_sym_SLASH_SLASH2] = ACTIONS(2668), - [anon_sym_PLUS2] = ACTIONS(2670), - [anon_sym_bit_DASHshl2] = ACTIONS(2668), - [anon_sym_bit_DASHshr2] = ACTIONS(2668), - [anon_sym_bit_DASHand2] = ACTIONS(2668), - [anon_sym_bit_DASHxor2] = ACTIONS(2668), - [anon_sym_bit_DASHor2] = ACTIONS(2668), - [anon_sym_err_GT] = ACTIONS(2670), - [anon_sym_out_GT] = ACTIONS(2670), - [anon_sym_e_GT] = ACTIONS(2670), - [anon_sym_o_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT] = ACTIONS(2670), - [anon_sym_err_GT_GT] = ACTIONS(2668), - [anon_sym_out_GT_GT] = ACTIONS(2668), - [anon_sym_e_GT_GT] = ACTIONS(2668), - [anon_sym_o_GT_GT] = ACTIONS(2668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2668), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(949)] = { + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [949] = { [sym_comment] = STATE(949), - [anon_sym_in] = ACTIONS(1738), - [sym__newline] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_err_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_GT_PIPE] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), - [anon_sym_RPAREN] = ACTIONS(1738), - [anon_sym_GT2] = ACTIONS(1616), - [anon_sym_DASH2] = ACTIONS(1738), - [anon_sym_RBRACE] = ACTIONS(1738), - [anon_sym_STAR2] = ACTIONS(1616), - [anon_sym_and2] = ACTIONS(1738), - [anon_sym_xor2] = ACTIONS(1738), - [anon_sym_or2] = ACTIONS(1738), - [anon_sym_not_DASHin2] = ACTIONS(1738), - [anon_sym_has2] = ACTIONS(1738), - [anon_sym_not_DASHhas2] = ACTIONS(1738), - [anon_sym_starts_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), - [anon_sym_ends_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), - [anon_sym_EQ_EQ2] = ACTIONS(1738), - [anon_sym_BANG_EQ2] = ACTIONS(1738), - [anon_sym_LT2] = ACTIONS(1616), - [anon_sym_LT_EQ2] = ACTIONS(1738), - [anon_sym_GT_EQ2] = ACTIONS(1738), - [anon_sym_EQ_TILDE2] = ACTIONS(1738), - [anon_sym_BANG_TILDE2] = ACTIONS(1738), - [anon_sym_like2] = ACTIONS(1738), - [anon_sym_not_DASHlike2] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(2672), - [anon_sym_STAR_STAR2] = ACTIONS(1738), - [anon_sym_PLUS_PLUS2] = ACTIONS(1738), - [anon_sym_SLASH2] = ACTIONS(1616), - [anon_sym_mod2] = ACTIONS(1738), - [anon_sym_SLASH_SLASH2] = ACTIONS(1738), - [anon_sym_PLUS2] = ACTIONS(1616), - [anon_sym_bit_DASHshl2] = ACTIONS(1738), - [anon_sym_bit_DASHshr2] = ACTIONS(1738), - [anon_sym_bit_DASHand2] = ACTIONS(1738), - [anon_sym_bit_DASHxor2] = ACTIONS(1738), - [anon_sym_bit_DASHor2] = ACTIONS(1738), - [anon_sym_err_GT] = ACTIONS(1616), - [anon_sym_out_GT] = ACTIONS(1616), - [anon_sym_e_GT] = ACTIONS(1616), - [anon_sym_o_GT] = ACTIONS(1616), - [anon_sym_err_PLUSout_GT] = ACTIONS(1616), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), - [anon_sym_o_PLUSe_GT] = ACTIONS(1616), - [anon_sym_e_PLUSo_GT] = ACTIONS(1616), - [anon_sym_err_GT_GT] = ACTIONS(1738), - [anon_sym_out_GT_GT] = ACTIONS(1738), - [anon_sym_e_GT_GT] = ACTIONS(1738), - [anon_sym_o_GT_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), - [sym__unquoted_pattern] = ACTIONS(2674), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(950)] = { + [ts_builtin_sym_end] = ACTIONS(1900), + [anon_sym_in] = ACTIONS(1900), + [sym__newline] = ACTIONS(1900), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_PIPE] = ACTIONS(1900), + [anon_sym_err_GT_PIPE] = ACTIONS(1900), + [anon_sym_out_GT_PIPE] = ACTIONS(1900), + [anon_sym_e_GT_PIPE] = ACTIONS(1900), + [anon_sym_o_GT_PIPE] = ACTIONS(1900), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1900), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1900), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1900), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1900), + [anon_sym_GT2] = ACTIONS(1902), + [anon_sym_DASH2] = ACTIONS(1900), + [anon_sym_STAR2] = ACTIONS(1902), + [anon_sym_and2] = ACTIONS(1900), + [anon_sym_xor2] = ACTIONS(1900), + [anon_sym_or2] = ACTIONS(1900), + [anon_sym_not_DASHin2] = ACTIONS(1900), + [anon_sym_has2] = ACTIONS(1900), + [anon_sym_not_DASHhas2] = ACTIONS(1900), + [anon_sym_starts_DASHwith2] = ACTIONS(1900), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1900), + [anon_sym_ends_DASHwith2] = ACTIONS(1900), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1900), + [anon_sym_EQ_EQ2] = ACTIONS(1900), + [anon_sym_BANG_EQ2] = ACTIONS(1900), + [anon_sym_LT2] = ACTIONS(1902), + [anon_sym_LT_EQ2] = ACTIONS(1900), + [anon_sym_GT_EQ2] = ACTIONS(1900), + [anon_sym_EQ_TILDE2] = ACTIONS(1900), + [anon_sym_BANG_TILDE2] = ACTIONS(1900), + [anon_sym_like2] = ACTIONS(1900), + [anon_sym_not_DASHlike2] = ACTIONS(1900), + [anon_sym_STAR_STAR2] = ACTIONS(1900), + [anon_sym_PLUS_PLUS2] = ACTIONS(1900), + [anon_sym_SLASH2] = ACTIONS(1902), + [anon_sym_mod2] = ACTIONS(1900), + [anon_sym_SLASH_SLASH2] = ACTIONS(1900), + [anon_sym_PLUS2] = ACTIONS(1902), + [anon_sym_bit_DASHshl2] = ACTIONS(1900), + [anon_sym_bit_DASHshr2] = ACTIONS(1900), + [anon_sym_bit_DASHand2] = ACTIONS(1900), + [anon_sym_bit_DASHxor2] = ACTIONS(1900), + [anon_sym_bit_DASHor2] = ACTIONS(1900), + [anon_sym_DOT_DOT2] = ACTIONS(1902), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1900), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1900), + [anon_sym_err_GT] = ACTIONS(1902), + [anon_sym_out_GT] = ACTIONS(1902), + [anon_sym_e_GT] = ACTIONS(1902), + [anon_sym_o_GT] = ACTIONS(1902), + [anon_sym_err_PLUSout_GT] = ACTIONS(1902), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1902), + [anon_sym_o_PLUSe_GT] = ACTIONS(1902), + [anon_sym_e_PLUSo_GT] = ACTIONS(1902), + [anon_sym_err_GT_GT] = ACTIONS(1900), + [anon_sym_out_GT_GT] = ACTIONS(1900), + [anon_sym_e_GT_GT] = ACTIONS(1900), + [anon_sym_o_GT_GT] = ACTIONS(1900), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1900), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1900), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1900), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1900), + [anon_sym_POUND] = ACTIONS(3), + }, + [950] = { [sym_comment] = STATE(950), - [ts_builtin_sym_end] = ACTIONS(1788), - [anon_sym_in] = ACTIONS(1788), - [sym__newline] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_PIPE] = ACTIONS(1788), - [anon_sym_err_GT_PIPE] = ACTIONS(1788), - [anon_sym_out_GT_PIPE] = ACTIONS(1788), - [anon_sym_e_GT_PIPE] = ACTIONS(1788), - [anon_sym_o_GT_PIPE] = ACTIONS(1788), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), - [anon_sym_GT2] = ACTIONS(1790), - [anon_sym_DASH2] = ACTIONS(1788), - [anon_sym_STAR2] = ACTIONS(1790), - [anon_sym_and2] = ACTIONS(1788), - [anon_sym_xor2] = ACTIONS(1788), - [anon_sym_or2] = ACTIONS(1788), - [anon_sym_not_DASHin2] = ACTIONS(1788), - [anon_sym_has2] = ACTIONS(1788), - [anon_sym_not_DASHhas2] = ACTIONS(1788), - [anon_sym_starts_DASHwith2] = ACTIONS(1788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1788), - [anon_sym_ends_DASHwith2] = ACTIONS(1788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1788), - [anon_sym_EQ_EQ2] = ACTIONS(1788), - [anon_sym_BANG_EQ2] = ACTIONS(1788), - [anon_sym_LT2] = ACTIONS(1790), - [anon_sym_LT_EQ2] = ACTIONS(1788), - [anon_sym_GT_EQ2] = ACTIONS(1788), - [anon_sym_EQ_TILDE2] = ACTIONS(1788), - [anon_sym_BANG_TILDE2] = ACTIONS(1788), - [anon_sym_like2] = ACTIONS(1788), - [anon_sym_not_DASHlike2] = ACTIONS(1788), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_STAR_STAR2] = ACTIONS(1788), - [anon_sym_PLUS_PLUS2] = ACTIONS(1788), - [anon_sym_SLASH2] = ACTIONS(1790), - [anon_sym_mod2] = ACTIONS(1788), - [anon_sym_SLASH_SLASH2] = ACTIONS(1788), - [anon_sym_PLUS2] = ACTIONS(1790), - [anon_sym_bit_DASHshl2] = ACTIONS(1788), - [anon_sym_bit_DASHshr2] = ACTIONS(1788), - [anon_sym_bit_DASHand2] = ACTIONS(1788), - [anon_sym_bit_DASHxor2] = ACTIONS(1788), - [anon_sym_bit_DASHor2] = ACTIONS(1788), - [aux_sym__immediate_decimal_token5] = ACTIONS(2502), - [anon_sym_err_GT] = ACTIONS(1790), - [anon_sym_out_GT] = ACTIONS(1790), - [anon_sym_e_GT] = ACTIONS(1790), - [anon_sym_o_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT] = ACTIONS(1790), - [anon_sym_err_GT_GT] = ACTIONS(1788), - [anon_sym_out_GT_GT] = ACTIONS(1788), - [anon_sym_e_GT_GT] = ACTIONS(1788), - [anon_sym_o_GT_GT] = ACTIONS(1788), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1788), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1788), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1788), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1788), - [sym__unquoted_pattern] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(951)] = { - [aux_sym__repeat_newline] = STATE(1124), - [sym__expression_parenthesized] = STATE(4668), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2204), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1878), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), + [anon_sym_in] = ACTIONS(1802), + [sym__newline] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1802), + [anon_sym_err_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_GT_PIPE] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), + [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_GT2] = ACTIONS(1804), + [anon_sym_DASH2] = ACTIONS(1802), + [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_STAR2] = ACTIONS(1804), + [anon_sym_and2] = ACTIONS(1802), + [anon_sym_xor2] = ACTIONS(1802), + [anon_sym_or2] = ACTIONS(1802), + [anon_sym_not_DASHin2] = ACTIONS(1802), + [anon_sym_has2] = ACTIONS(1802), + [anon_sym_not_DASHhas2] = ACTIONS(1802), + [anon_sym_starts_DASHwith2] = ACTIONS(1802), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), + [anon_sym_ends_DASHwith2] = ACTIONS(1802), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), + [anon_sym_EQ_EQ2] = ACTIONS(1802), + [anon_sym_BANG_EQ2] = ACTIONS(1802), + [anon_sym_LT2] = ACTIONS(1804), + [anon_sym_LT_EQ2] = ACTIONS(1802), + [anon_sym_GT_EQ2] = ACTIONS(1802), + [anon_sym_EQ_TILDE2] = ACTIONS(1802), + [anon_sym_BANG_TILDE2] = ACTIONS(1802), + [anon_sym_like2] = ACTIONS(1802), + [anon_sym_not_DASHlike2] = ACTIONS(1802), + [anon_sym_LPAREN2] = ACTIONS(1802), + [anon_sym_STAR_STAR2] = ACTIONS(1802), + [anon_sym_PLUS_PLUS2] = ACTIONS(1802), + [anon_sym_SLASH2] = ACTIONS(1804), + [anon_sym_mod2] = ACTIONS(1802), + [anon_sym_SLASH_SLASH2] = ACTIONS(1802), + [anon_sym_PLUS2] = ACTIONS(1804), + [anon_sym_bit_DASHshl2] = ACTIONS(1802), + [anon_sym_bit_DASHshr2] = ACTIONS(1802), + [anon_sym_bit_DASHand2] = ACTIONS(1802), + [anon_sym_bit_DASHxor2] = ACTIONS(1802), + [anon_sym_bit_DASHor2] = ACTIONS(1802), + [anon_sym_err_GT] = ACTIONS(1804), + [anon_sym_out_GT] = ACTIONS(1804), + [anon_sym_e_GT] = ACTIONS(1804), + [anon_sym_o_GT] = ACTIONS(1804), + [anon_sym_err_PLUSout_GT] = ACTIONS(1804), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), + [anon_sym_o_PLUSe_GT] = ACTIONS(1804), + [anon_sym_e_PLUSo_GT] = ACTIONS(1804), + [anon_sym_err_GT_GT] = ACTIONS(1802), + [anon_sym_out_GT_GT] = ACTIONS(1802), + [anon_sym_e_GT_GT] = ACTIONS(1802), + [anon_sym_o_GT_GT] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), + [sym__unquoted_pattern] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(3), + }, + [951] = { [sym_comment] = STATE(951), - [aux_sym_cmd_identifier_token2] = ACTIONS(2634), - [anon_sym_true] = ACTIONS(2636), - [anon_sym_false] = ACTIONS(2636), - [anon_sym_null] = ACTIONS(2638), - [aux_sym_cmd_identifier_token3] = ACTIONS(2640), - [aux_sym_cmd_identifier_token4] = ACTIONS(2640), - [aux_sym_cmd_identifier_token5] = ACTIONS(2640), - [sym__newline] = ACTIONS(2642), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(181), - [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1981), - [aux_sym__val_number_decimal_token3] = ACTIONS(2644), - [aux_sym__val_number_decimal_token4] = ACTIONS(2644), - [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(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2646), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(105), - [sym_raw_string_begin] = ACTIONS(215), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(952)] = { + [952] = { [sym_comment] = STATE(952), - [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_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_LPAREN2] = ACTIONS(2108), - [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), - [sym__unquoted_pattern] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(953)] = { + [ts_builtin_sym_end] = ACTIONS(2125), + [anon_sym_in] = ACTIONS(2125), + [sym__newline] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(2125), + [anon_sym_err_GT_PIPE] = ACTIONS(2125), + [anon_sym_out_GT_PIPE] = ACTIONS(2125), + [anon_sym_e_GT_PIPE] = ACTIONS(2125), + [anon_sym_o_GT_PIPE] = ACTIONS(2125), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2125), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2125), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2125), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2125), + [anon_sym_GT2] = ACTIONS(2127), + [anon_sym_DASH2] = ACTIONS(2125), + [anon_sym_STAR2] = ACTIONS(2127), + [anon_sym_and2] = ACTIONS(2125), + [anon_sym_xor2] = ACTIONS(2125), + [anon_sym_or2] = ACTIONS(2125), + [anon_sym_not_DASHin2] = ACTIONS(2125), + [anon_sym_has2] = ACTIONS(2125), + [anon_sym_not_DASHhas2] = ACTIONS(2125), + [anon_sym_starts_DASHwith2] = ACTIONS(2125), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2125), + [anon_sym_ends_DASHwith2] = ACTIONS(2125), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2125), + [anon_sym_EQ_EQ2] = ACTIONS(2125), + [anon_sym_BANG_EQ2] = ACTIONS(2125), + [anon_sym_LT2] = ACTIONS(2127), + [anon_sym_LT_EQ2] = ACTIONS(2125), + [anon_sym_GT_EQ2] = ACTIONS(2125), + [anon_sym_EQ_TILDE2] = ACTIONS(2125), + [anon_sym_BANG_TILDE2] = ACTIONS(2125), + [anon_sym_like2] = ACTIONS(2125), + [anon_sym_not_DASHlike2] = ACTIONS(2125), + [anon_sym_STAR_STAR2] = ACTIONS(2125), + [anon_sym_PLUS_PLUS2] = ACTIONS(2125), + [anon_sym_SLASH2] = ACTIONS(2127), + [anon_sym_mod2] = ACTIONS(2125), + [anon_sym_SLASH_SLASH2] = ACTIONS(2125), + [anon_sym_PLUS2] = ACTIONS(2127), + [anon_sym_bit_DASHshl2] = ACTIONS(2125), + [anon_sym_bit_DASHshr2] = ACTIONS(2125), + [anon_sym_bit_DASHand2] = ACTIONS(2125), + [anon_sym_bit_DASHxor2] = ACTIONS(2125), + [anon_sym_bit_DASHor2] = ACTIONS(2125), + [anon_sym_DOT_DOT2] = ACTIONS(2628), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2630), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2630), + [anon_sym_err_GT] = ACTIONS(2127), + [anon_sym_out_GT] = ACTIONS(2127), + [anon_sym_e_GT] = ACTIONS(2127), + [anon_sym_o_GT] = ACTIONS(2127), + [anon_sym_err_PLUSout_GT] = ACTIONS(2127), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2127), + [anon_sym_o_PLUSe_GT] = ACTIONS(2127), + [anon_sym_e_PLUSo_GT] = ACTIONS(2127), + [anon_sym_err_GT_GT] = ACTIONS(2125), + [anon_sym_out_GT_GT] = ACTIONS(2125), + [anon_sym_e_GT_GT] = ACTIONS(2125), + [anon_sym_o_GT_GT] = ACTIONS(2125), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2125), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2125), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2125), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2125), + [anon_sym_POUND] = ACTIONS(3), + }, + [953] = { [sym_comment] = STATE(953), - [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_RBRACE] = ACTIONS(2676), - [anon_sym_EQ_GT] = 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(954)] = { + [ts_builtin_sym_end] = ACTIONS(2314), + [anon_sym_in] = ACTIONS(2314), + [sym__newline] = ACTIONS(2314), + [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym_PIPE] = ACTIONS(2314), + [anon_sym_err_GT_PIPE] = ACTIONS(2314), + [anon_sym_out_GT_PIPE] = ACTIONS(2314), + [anon_sym_e_GT_PIPE] = ACTIONS(2314), + [anon_sym_o_GT_PIPE] = ACTIONS(2314), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2314), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2314), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2314), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2314), + [anon_sym_GT2] = ACTIONS(2316), + [anon_sym_DASH2] = ACTIONS(2314), + [anon_sym_STAR2] = ACTIONS(2316), + [anon_sym_and2] = ACTIONS(2314), + [anon_sym_xor2] = ACTIONS(2314), + [anon_sym_or2] = ACTIONS(2314), + [anon_sym_not_DASHin2] = ACTIONS(2314), + [anon_sym_has2] = ACTIONS(2314), + [anon_sym_not_DASHhas2] = ACTIONS(2314), + [anon_sym_starts_DASHwith2] = ACTIONS(2314), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2314), + [anon_sym_ends_DASHwith2] = ACTIONS(2314), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2314), + [anon_sym_EQ_EQ2] = ACTIONS(2314), + [anon_sym_BANG_EQ2] = ACTIONS(2314), + [anon_sym_LT2] = ACTIONS(2316), + [anon_sym_LT_EQ2] = ACTIONS(2314), + [anon_sym_GT_EQ2] = ACTIONS(2314), + [anon_sym_EQ_TILDE2] = ACTIONS(2314), + [anon_sym_BANG_TILDE2] = ACTIONS(2314), + [anon_sym_like2] = ACTIONS(2314), + [anon_sym_not_DASHlike2] = ACTIONS(2314), + [anon_sym_STAR_STAR2] = ACTIONS(2314), + [anon_sym_PLUS_PLUS2] = ACTIONS(2314), + [anon_sym_SLASH2] = ACTIONS(2316), + [anon_sym_mod2] = ACTIONS(2314), + [anon_sym_SLASH_SLASH2] = ACTIONS(2314), + [anon_sym_PLUS2] = ACTIONS(2316), + [anon_sym_bit_DASHshl2] = ACTIONS(2314), + [anon_sym_bit_DASHshr2] = ACTIONS(2314), + [anon_sym_bit_DASHand2] = ACTIONS(2314), + [anon_sym_bit_DASHxor2] = ACTIONS(2314), + [anon_sym_bit_DASHor2] = ACTIONS(2314), + [anon_sym_DOT_DOT2] = ACTIONS(2632), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2634), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2634), + [anon_sym_err_GT] = ACTIONS(2316), + [anon_sym_out_GT] = ACTIONS(2316), + [anon_sym_e_GT] = ACTIONS(2316), + [anon_sym_o_GT] = ACTIONS(2316), + [anon_sym_err_PLUSout_GT] = ACTIONS(2316), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2316), + [anon_sym_o_PLUSe_GT] = ACTIONS(2316), + [anon_sym_e_PLUSo_GT] = ACTIONS(2316), + [anon_sym_err_GT_GT] = ACTIONS(2314), + [anon_sym_out_GT_GT] = ACTIONS(2314), + [anon_sym_e_GT_GT] = ACTIONS(2314), + [anon_sym_o_GT_GT] = ACTIONS(2314), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2314), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2314), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2314), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2314), + [anon_sym_POUND] = ACTIONS(3), + }, + [954] = { [sym_comment] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2166), - [anon_sym_in] = ACTIONS(2166), - [sym__newline] = ACTIONS(2166), - [anon_sym_SEMI] = ACTIONS(2166), - [anon_sym_PIPE] = ACTIONS(2166), - [anon_sym_err_GT_PIPE] = ACTIONS(2166), - [anon_sym_out_GT_PIPE] = ACTIONS(2166), - [anon_sym_e_GT_PIPE] = ACTIONS(2166), - [anon_sym_o_GT_PIPE] = ACTIONS(2166), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2166), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2166), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2166), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2166), - [anon_sym_GT2] = ACTIONS(2168), - [anon_sym_DASH2] = ACTIONS(2166), - [anon_sym_STAR2] = ACTIONS(2168), - [anon_sym_and2] = ACTIONS(2166), - [anon_sym_xor2] = ACTIONS(2166), - [anon_sym_or2] = ACTIONS(2166), - [anon_sym_not_DASHin2] = ACTIONS(2166), - [anon_sym_has2] = ACTIONS(2166), - [anon_sym_not_DASHhas2] = ACTIONS(2166), - [anon_sym_starts_DASHwith2] = ACTIONS(2166), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2166), - [anon_sym_ends_DASHwith2] = ACTIONS(2166), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2166), - [anon_sym_EQ_EQ2] = ACTIONS(2166), - [anon_sym_BANG_EQ2] = ACTIONS(2166), - [anon_sym_LT2] = ACTIONS(2168), - [anon_sym_LT_EQ2] = ACTIONS(2166), - [anon_sym_GT_EQ2] = ACTIONS(2166), - [anon_sym_EQ_TILDE2] = ACTIONS(2166), - [anon_sym_BANG_TILDE2] = ACTIONS(2166), - [anon_sym_like2] = ACTIONS(2166), - [anon_sym_not_DASHlike2] = ACTIONS(2166), - [anon_sym_STAR_STAR2] = ACTIONS(2166), - [anon_sym_PLUS_PLUS2] = ACTIONS(2166), - [anon_sym_SLASH2] = ACTIONS(2168), - [anon_sym_mod2] = ACTIONS(2166), - [anon_sym_SLASH_SLASH2] = ACTIONS(2166), - [anon_sym_PLUS2] = ACTIONS(2168), - [anon_sym_bit_DASHshl2] = ACTIONS(2166), - [anon_sym_bit_DASHshr2] = ACTIONS(2166), - [anon_sym_bit_DASHand2] = ACTIONS(2166), - [anon_sym_bit_DASHxor2] = ACTIONS(2166), - [anon_sym_bit_DASHor2] = ACTIONS(2166), - [anon_sym_DOT_DOT2] = ACTIONS(2680), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2682), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2682), - [anon_sym_err_GT] = ACTIONS(2168), - [anon_sym_out_GT] = ACTIONS(2168), - [anon_sym_e_GT] = ACTIONS(2168), - [anon_sym_o_GT] = ACTIONS(2168), - [anon_sym_err_PLUSout_GT] = ACTIONS(2168), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2168), - [anon_sym_o_PLUSe_GT] = ACTIONS(2168), - [anon_sym_e_PLUSo_GT] = ACTIONS(2168), - [anon_sym_err_GT_GT] = ACTIONS(2166), - [anon_sym_out_GT_GT] = ACTIONS(2166), - [anon_sym_e_GT_GT] = ACTIONS(2166), - [anon_sym_o_GT_GT] = ACTIONS(2166), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2166), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2166), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2166), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2166), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(955)] = { + [anon_sym_in] = ACTIONS(1254), + [sym__newline] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym_PIPE] = ACTIONS(1254), + [anon_sym_err_GT_PIPE] = ACTIONS(1254), + [anon_sym_out_GT_PIPE] = ACTIONS(1254), + [anon_sym_e_GT_PIPE] = ACTIONS(1254), + [anon_sym_o_GT_PIPE] = ACTIONS(1254), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1254), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1254), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1254), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1254), + [anon_sym_RPAREN] = ACTIONS(1254), + [anon_sym_GT2] = ACTIONS(1238), + [anon_sym_DASH2] = ACTIONS(1254), + [anon_sym_RBRACE] = ACTIONS(1254), + [anon_sym_STAR2] = ACTIONS(1238), + [anon_sym_and2] = ACTIONS(1254), + [anon_sym_xor2] = ACTIONS(1254), + [anon_sym_or2] = ACTIONS(1254), + [anon_sym_not_DASHin2] = ACTIONS(1254), + [anon_sym_has2] = ACTIONS(1254), + [anon_sym_not_DASHhas2] = ACTIONS(1254), + [anon_sym_starts_DASHwith2] = ACTIONS(1254), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1254), + [anon_sym_ends_DASHwith2] = ACTIONS(1254), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1254), + [anon_sym_EQ_EQ2] = ACTIONS(1254), + [anon_sym_BANG_EQ2] = ACTIONS(1254), + [anon_sym_LT2] = ACTIONS(1238), + [anon_sym_LT_EQ2] = ACTIONS(1254), + [anon_sym_GT_EQ2] = ACTIONS(1254), + [anon_sym_EQ_TILDE2] = ACTIONS(1254), + [anon_sym_BANG_TILDE2] = ACTIONS(1254), + [anon_sym_like2] = ACTIONS(1254), + [anon_sym_not_DASHlike2] = ACTIONS(1254), + [anon_sym_LPAREN2] = ACTIONS(2636), + [anon_sym_STAR_STAR2] = ACTIONS(1254), + [anon_sym_PLUS_PLUS2] = ACTIONS(1254), + [anon_sym_SLASH2] = ACTIONS(1238), + [anon_sym_mod2] = ACTIONS(1254), + [anon_sym_SLASH_SLASH2] = ACTIONS(1254), + [anon_sym_PLUS2] = ACTIONS(1238), + [anon_sym_bit_DASHshl2] = ACTIONS(1254), + [anon_sym_bit_DASHshr2] = ACTIONS(1254), + [anon_sym_bit_DASHand2] = ACTIONS(1254), + [anon_sym_bit_DASHxor2] = ACTIONS(1254), + [anon_sym_bit_DASHor2] = ACTIONS(1254), + [anon_sym_err_GT] = ACTIONS(1238), + [anon_sym_out_GT] = ACTIONS(1238), + [anon_sym_e_GT] = ACTIONS(1238), + [anon_sym_o_GT] = ACTIONS(1238), + [anon_sym_err_PLUSout_GT] = ACTIONS(1238), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1238), + [anon_sym_o_PLUSe_GT] = ACTIONS(1238), + [anon_sym_e_PLUSo_GT] = ACTIONS(1238), + [anon_sym_err_GT_GT] = ACTIONS(1254), + [anon_sym_out_GT_GT] = ACTIONS(1254), + [anon_sym_e_GT_GT] = ACTIONS(1254), + [anon_sym_o_GT_GT] = ACTIONS(1254), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1254), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1254), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1254), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1254), + [sym__unquoted_pattern] = ACTIONS(2638), + [anon_sym_POUND] = ACTIONS(3), + }, + [955] = { [sym_comment] = STATE(955), - [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_POUND] = ACTIONS(3), - }, - [STATE(956)] = { + [anon_sym_in] = ACTIONS(2233), + [sym__newline] = ACTIONS(2233), + [anon_sym_SEMI] = ACTIONS(2233), + [anon_sym_PIPE] = ACTIONS(2233), + [anon_sym_err_GT_PIPE] = ACTIONS(2233), + [anon_sym_out_GT_PIPE] = ACTIONS(2233), + [anon_sym_e_GT_PIPE] = ACTIONS(2233), + [anon_sym_o_GT_PIPE] = ACTIONS(2233), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2233), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2233), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2233), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2233), + [anon_sym_RPAREN] = ACTIONS(2233), + [anon_sym_GT2] = ACTIONS(2237), + [anon_sym_DASH2] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_RBRACE] = ACTIONS(2233), + [anon_sym_EQ_GT] = ACTIONS(2233), + [anon_sym_STAR2] = ACTIONS(2237), + [anon_sym_and2] = ACTIONS(2233), + [anon_sym_xor2] = ACTIONS(2233), + [anon_sym_or2] = ACTIONS(2233), + [anon_sym_not_DASHin2] = ACTIONS(2233), + [anon_sym_has2] = ACTIONS(2233), + [anon_sym_not_DASHhas2] = ACTIONS(2233), + [anon_sym_starts_DASHwith2] = ACTIONS(2233), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2233), + [anon_sym_ends_DASHwith2] = ACTIONS(2233), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2233), + [anon_sym_EQ_EQ2] = ACTIONS(2233), + [anon_sym_BANG_EQ2] = ACTIONS(2233), + [anon_sym_LT2] = ACTIONS(2237), + [anon_sym_LT_EQ2] = ACTIONS(2233), + [anon_sym_GT_EQ2] = ACTIONS(2233), + [anon_sym_EQ_TILDE2] = ACTIONS(2233), + [anon_sym_BANG_TILDE2] = ACTIONS(2233), + [anon_sym_like2] = ACTIONS(2233), + [anon_sym_not_DASHlike2] = ACTIONS(2233), + [anon_sym_STAR_STAR2] = ACTIONS(2233), + [anon_sym_PLUS_PLUS2] = ACTIONS(2233), + [anon_sym_SLASH2] = ACTIONS(2237), + [anon_sym_mod2] = ACTIONS(2233), + [anon_sym_SLASH_SLASH2] = ACTIONS(2233), + [anon_sym_PLUS2] = ACTIONS(2237), + [anon_sym_bit_DASHshl2] = ACTIONS(2233), + [anon_sym_bit_DASHshr2] = ACTIONS(2233), + [anon_sym_bit_DASHand2] = ACTIONS(2233), + [anon_sym_bit_DASHxor2] = ACTIONS(2233), + [anon_sym_bit_DASHor2] = ACTIONS(2233), + [anon_sym_err_GT] = ACTIONS(2237), + [anon_sym_out_GT] = ACTIONS(2237), + [anon_sym_e_GT] = ACTIONS(2237), + [anon_sym_o_GT] = ACTIONS(2237), + [anon_sym_err_PLUSout_GT] = ACTIONS(2237), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2237), + [anon_sym_o_PLUSe_GT] = ACTIONS(2237), + [anon_sym_e_PLUSo_GT] = ACTIONS(2237), + [anon_sym_err_GT_GT] = ACTIONS(2233), + [anon_sym_out_GT_GT] = ACTIONS(2233), + [anon_sym_e_GT_GT] = ACTIONS(2233), + [anon_sym_o_GT_GT] = ACTIONS(2233), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2233), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2233), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2233), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2233), + [anon_sym_POUND] = ACTIONS(3), + }, + [956] = { [sym_comment] = STATE(956), - [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_RBRACE] = 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_LPAREN2] = ACTIONS(2684), - [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), - [sym__unquoted_pattern] = ACTIONS(2686), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(957)] = { + [ts_builtin_sym_end] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [sym__newline] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_err_GT_PIPE] = ACTIONS(1908), + [anon_sym_out_GT_PIPE] = ACTIONS(1908), + [anon_sym_e_GT_PIPE] = ACTIONS(1908), + [anon_sym_o_GT_PIPE] = ACTIONS(1908), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1908), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1908), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1908), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1908), + [anon_sym_GT2] = ACTIONS(1910), + [anon_sym_DASH2] = ACTIONS(1908), + [anon_sym_STAR2] = ACTIONS(1910), + [anon_sym_and2] = ACTIONS(1908), + [anon_sym_xor2] = ACTIONS(1908), + [anon_sym_or2] = ACTIONS(1908), + [anon_sym_not_DASHin2] = ACTIONS(1908), + [anon_sym_has2] = ACTIONS(1908), + [anon_sym_not_DASHhas2] = ACTIONS(1908), + [anon_sym_starts_DASHwith2] = ACTIONS(1908), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1908), + [anon_sym_ends_DASHwith2] = ACTIONS(1908), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1908), + [anon_sym_EQ_EQ2] = ACTIONS(1908), + [anon_sym_BANG_EQ2] = ACTIONS(1908), + [anon_sym_LT2] = ACTIONS(1910), + [anon_sym_LT_EQ2] = ACTIONS(1908), + [anon_sym_GT_EQ2] = ACTIONS(1908), + [anon_sym_EQ_TILDE2] = ACTIONS(1908), + [anon_sym_BANG_TILDE2] = ACTIONS(1908), + [anon_sym_like2] = ACTIONS(1908), + [anon_sym_not_DASHlike2] = ACTIONS(1908), + [anon_sym_STAR_STAR2] = ACTIONS(1908), + [anon_sym_PLUS_PLUS2] = ACTIONS(1908), + [anon_sym_SLASH2] = ACTIONS(1910), + [anon_sym_mod2] = ACTIONS(1908), + [anon_sym_SLASH_SLASH2] = ACTIONS(1908), + [anon_sym_PLUS2] = ACTIONS(1910), + [anon_sym_bit_DASHshl2] = ACTIONS(1908), + [anon_sym_bit_DASHshr2] = ACTIONS(1908), + [anon_sym_bit_DASHand2] = ACTIONS(1908), + [anon_sym_bit_DASHxor2] = ACTIONS(1908), + [anon_sym_bit_DASHor2] = ACTIONS(1908), + [anon_sym_DOT_DOT2] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1908), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1908), + [anon_sym_err_GT] = ACTIONS(1910), + [anon_sym_out_GT] = ACTIONS(1910), + [anon_sym_e_GT] = ACTIONS(1910), + [anon_sym_o_GT] = ACTIONS(1910), + [anon_sym_err_PLUSout_GT] = ACTIONS(1910), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1910), + [anon_sym_o_PLUSe_GT] = ACTIONS(1910), + [anon_sym_e_PLUSo_GT] = ACTIONS(1910), + [anon_sym_err_GT_GT] = ACTIONS(1908), + [anon_sym_out_GT_GT] = ACTIONS(1908), + [anon_sym_e_GT_GT] = ACTIONS(1908), + [anon_sym_o_GT_GT] = ACTIONS(1908), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1908), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1908), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1908), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1908), + [anon_sym_POUND] = ACTIONS(3), + }, + [957] = { [sym_comment] = STATE(957), - [ts_builtin_sym_end] = ACTIONS(2186), - [anon_sym_in] = ACTIONS(2186), - [sym__newline] = ACTIONS(2186), - [anon_sym_SEMI] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(2186), - [anon_sym_err_GT_PIPE] = ACTIONS(2186), - [anon_sym_out_GT_PIPE] = ACTIONS(2186), - [anon_sym_e_GT_PIPE] = ACTIONS(2186), - [anon_sym_o_GT_PIPE] = ACTIONS(2186), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2186), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2186), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2186), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2186), - [anon_sym_GT2] = ACTIONS(2188), - [anon_sym_DASH2] = ACTIONS(2186), - [anon_sym_STAR2] = ACTIONS(2188), - [anon_sym_and2] = ACTIONS(2186), - [anon_sym_xor2] = ACTIONS(2186), - [anon_sym_or2] = ACTIONS(2186), - [anon_sym_not_DASHin2] = ACTIONS(2186), - [anon_sym_has2] = ACTIONS(2186), - [anon_sym_not_DASHhas2] = ACTIONS(2186), - [anon_sym_starts_DASHwith2] = ACTIONS(2186), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2186), - [anon_sym_ends_DASHwith2] = ACTIONS(2186), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2186), - [anon_sym_EQ_EQ2] = ACTIONS(2186), - [anon_sym_BANG_EQ2] = ACTIONS(2186), - [anon_sym_LT2] = ACTIONS(2188), - [anon_sym_LT_EQ2] = ACTIONS(2186), - [anon_sym_GT_EQ2] = ACTIONS(2186), - [anon_sym_EQ_TILDE2] = ACTIONS(2186), - [anon_sym_BANG_TILDE2] = ACTIONS(2186), - [anon_sym_like2] = ACTIONS(2186), - [anon_sym_not_DASHlike2] = ACTIONS(2186), - [anon_sym_STAR_STAR2] = ACTIONS(2186), - [anon_sym_PLUS_PLUS2] = ACTIONS(2186), - [anon_sym_SLASH2] = ACTIONS(2188), - [anon_sym_mod2] = ACTIONS(2186), - [anon_sym_SLASH_SLASH2] = ACTIONS(2186), - [anon_sym_PLUS2] = ACTIONS(2188), - [anon_sym_bit_DASHshl2] = ACTIONS(2186), - [anon_sym_bit_DASHshr2] = ACTIONS(2186), - [anon_sym_bit_DASHand2] = ACTIONS(2186), - [anon_sym_bit_DASHxor2] = ACTIONS(2186), - [anon_sym_bit_DASHor2] = ACTIONS(2186), - [anon_sym_DOT_DOT2] = ACTIONS(2688), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2690), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2690), - [anon_sym_err_GT] = ACTIONS(2188), - [anon_sym_out_GT] = ACTIONS(2188), - [anon_sym_e_GT] = ACTIONS(2188), - [anon_sym_o_GT] = ACTIONS(2188), - [anon_sym_err_PLUSout_GT] = ACTIONS(2188), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2188), - [anon_sym_o_PLUSe_GT] = ACTIONS(2188), - [anon_sym_e_PLUSo_GT] = ACTIONS(2188), - [anon_sym_err_GT_GT] = ACTIONS(2186), - [anon_sym_out_GT_GT] = ACTIONS(2186), - [anon_sym_e_GT_GT] = ACTIONS(2186), - [anon_sym_o_GT_GT] = ACTIONS(2186), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2186), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2186), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2186), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2186), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(958)] = { + [ts_builtin_sym_end] = ACTIONS(2233), + [anon_sym_in] = ACTIONS(2233), + [sym__newline] = ACTIONS(2233), + [anon_sym_SEMI] = ACTIONS(2233), + [anon_sym_PIPE] = ACTIONS(2233), + [anon_sym_err_GT_PIPE] = ACTIONS(2233), + [anon_sym_out_GT_PIPE] = ACTIONS(2233), + [anon_sym_e_GT_PIPE] = ACTIONS(2233), + [anon_sym_o_GT_PIPE] = ACTIONS(2233), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2233), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2233), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2233), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2233), + [anon_sym_GT2] = ACTIONS(2237), + [anon_sym_DASH2] = ACTIONS(2233), + [anon_sym_STAR2] = ACTIONS(2237), + [anon_sym_and2] = ACTIONS(2233), + [anon_sym_xor2] = ACTIONS(2233), + [anon_sym_or2] = ACTIONS(2233), + [anon_sym_not_DASHin2] = ACTIONS(2233), + [anon_sym_has2] = ACTIONS(2233), + [anon_sym_not_DASHhas2] = ACTIONS(2233), + [anon_sym_starts_DASHwith2] = ACTIONS(2233), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2233), + [anon_sym_ends_DASHwith2] = ACTIONS(2233), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2233), + [anon_sym_EQ_EQ2] = ACTIONS(2233), + [anon_sym_BANG_EQ2] = ACTIONS(2233), + [anon_sym_LT2] = ACTIONS(2237), + [anon_sym_LT_EQ2] = ACTIONS(2233), + [anon_sym_GT_EQ2] = ACTIONS(2233), + [anon_sym_EQ_TILDE2] = ACTIONS(2233), + [anon_sym_BANG_TILDE2] = ACTIONS(2233), + [anon_sym_like2] = ACTIONS(2233), + [anon_sym_not_DASHlike2] = ACTIONS(2233), + [anon_sym_STAR_STAR2] = ACTIONS(2233), + [anon_sym_PLUS_PLUS2] = ACTIONS(2233), + [anon_sym_SLASH2] = ACTIONS(2237), + [anon_sym_mod2] = ACTIONS(2233), + [anon_sym_SLASH_SLASH2] = ACTIONS(2233), + [anon_sym_PLUS2] = ACTIONS(2237), + [anon_sym_bit_DASHshl2] = ACTIONS(2233), + [anon_sym_bit_DASHshr2] = ACTIONS(2233), + [anon_sym_bit_DASHand2] = ACTIONS(2233), + [anon_sym_bit_DASHxor2] = ACTIONS(2233), + [anon_sym_bit_DASHor2] = ACTIONS(2233), + [anon_sym_DOT_DOT2] = ACTIONS(1826), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), + [anon_sym_err_GT] = ACTIONS(2237), + [anon_sym_out_GT] = ACTIONS(2237), + [anon_sym_e_GT] = ACTIONS(2237), + [anon_sym_o_GT] = ACTIONS(2237), + [anon_sym_err_PLUSout_GT] = ACTIONS(2237), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2237), + [anon_sym_o_PLUSe_GT] = ACTIONS(2237), + [anon_sym_e_PLUSo_GT] = ACTIONS(2237), + [anon_sym_err_GT_GT] = ACTIONS(2233), + [anon_sym_out_GT_GT] = ACTIONS(2233), + [anon_sym_e_GT_GT] = ACTIONS(2233), + [anon_sym_o_GT_GT] = ACTIONS(2233), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2233), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2233), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2233), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2233), + [anon_sym_POUND] = ACTIONS(3), + }, + [958] = { [sym_comment] = STATE(958), - [ts_builtin_sym_end] = ACTIONS(2114), - [anon_sym_in] = ACTIONS(2114), - [sym__newline] = ACTIONS(2114), - [anon_sym_SEMI] = ACTIONS(2114), - [anon_sym_PIPE] = ACTIONS(2114), - [anon_sym_err_GT_PIPE] = ACTIONS(2114), - [anon_sym_out_GT_PIPE] = ACTIONS(2114), - [anon_sym_e_GT_PIPE] = ACTIONS(2114), - [anon_sym_o_GT_PIPE] = ACTIONS(2114), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2114), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2114), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2114), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2114), - [anon_sym_GT2] = ACTIONS(2116), - [anon_sym_DASH2] = ACTIONS(2114), - [anon_sym_STAR2] = ACTIONS(2116), - [anon_sym_and2] = ACTIONS(2114), - [anon_sym_xor2] = ACTIONS(2114), - [anon_sym_or2] = ACTIONS(2114), - [anon_sym_not_DASHin2] = ACTIONS(2114), - [anon_sym_has2] = ACTIONS(2114), - [anon_sym_not_DASHhas2] = ACTIONS(2114), - [anon_sym_starts_DASHwith2] = ACTIONS(2114), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2114), - [anon_sym_ends_DASHwith2] = ACTIONS(2114), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2114), - [anon_sym_EQ_EQ2] = ACTIONS(2114), - [anon_sym_BANG_EQ2] = ACTIONS(2114), - [anon_sym_LT2] = ACTIONS(2116), - [anon_sym_LT_EQ2] = ACTIONS(2114), - [anon_sym_GT_EQ2] = ACTIONS(2114), - [anon_sym_EQ_TILDE2] = ACTIONS(2114), - [anon_sym_BANG_TILDE2] = ACTIONS(2114), - [anon_sym_like2] = ACTIONS(2114), - [anon_sym_not_DASHlike2] = ACTIONS(2114), - [anon_sym_STAR_STAR2] = ACTIONS(2114), - [anon_sym_PLUS_PLUS2] = ACTIONS(2114), - [anon_sym_SLASH2] = ACTIONS(2116), - [anon_sym_mod2] = ACTIONS(2114), - [anon_sym_SLASH_SLASH2] = ACTIONS(2114), - [anon_sym_PLUS2] = ACTIONS(2116), - [anon_sym_bit_DASHshl2] = ACTIONS(2114), - [anon_sym_bit_DASHshr2] = ACTIONS(2114), - [anon_sym_bit_DASHand2] = ACTIONS(2114), - [anon_sym_bit_DASHxor2] = ACTIONS(2114), - [anon_sym_bit_DASHor2] = ACTIONS(2114), - [anon_sym_DOT_DOT2] = ACTIONS(2692), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2694), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2694), - [anon_sym_err_GT] = ACTIONS(2116), - [anon_sym_out_GT] = ACTIONS(2116), - [anon_sym_e_GT] = ACTIONS(2116), - [anon_sym_o_GT] = ACTIONS(2116), - [anon_sym_err_PLUSout_GT] = ACTIONS(2116), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2116), - [anon_sym_o_PLUSe_GT] = ACTIONS(2116), - [anon_sym_e_PLUSo_GT] = ACTIONS(2116), - [anon_sym_err_GT_GT] = ACTIONS(2114), - [anon_sym_out_GT_GT] = ACTIONS(2114), - [anon_sym_e_GT_GT] = ACTIONS(2114), - [anon_sym_o_GT_GT] = ACTIONS(2114), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2114), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2114), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2114), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2114), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(959)] = { + [anon_sym_in] = ACTIONS(2640), + [sym__newline] = ACTIONS(2640), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_PIPE] = ACTIONS(2640), + [anon_sym_err_GT_PIPE] = ACTIONS(2640), + [anon_sym_out_GT_PIPE] = ACTIONS(2640), + [anon_sym_e_GT_PIPE] = ACTIONS(2640), + [anon_sym_o_GT_PIPE] = ACTIONS(2640), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2640), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2640), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2640), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2640), + [anon_sym_RPAREN] = ACTIONS(2640), + [anon_sym_GT2] = ACTIONS(2642), + [anon_sym_DASH2] = ACTIONS(2640), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_RBRACE] = ACTIONS(2640), + [anon_sym_EQ_GT] = ACTIONS(2640), + [anon_sym_STAR2] = ACTIONS(2642), + [anon_sym_and2] = ACTIONS(2640), + [anon_sym_xor2] = ACTIONS(2640), + [anon_sym_or2] = ACTIONS(2640), + [anon_sym_not_DASHin2] = ACTIONS(2640), + [anon_sym_has2] = ACTIONS(2640), + [anon_sym_not_DASHhas2] = ACTIONS(2640), + [anon_sym_starts_DASHwith2] = ACTIONS(2640), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2640), + [anon_sym_ends_DASHwith2] = ACTIONS(2640), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2640), + [anon_sym_EQ_EQ2] = ACTIONS(2640), + [anon_sym_BANG_EQ2] = ACTIONS(2640), + [anon_sym_LT2] = ACTIONS(2642), + [anon_sym_LT_EQ2] = ACTIONS(2640), + [anon_sym_GT_EQ2] = ACTIONS(2640), + [anon_sym_EQ_TILDE2] = ACTIONS(2640), + [anon_sym_BANG_TILDE2] = ACTIONS(2640), + [anon_sym_like2] = ACTIONS(2640), + [anon_sym_not_DASHlike2] = ACTIONS(2640), + [anon_sym_STAR_STAR2] = ACTIONS(2640), + [anon_sym_PLUS_PLUS2] = ACTIONS(2640), + [anon_sym_SLASH2] = ACTIONS(2642), + [anon_sym_mod2] = ACTIONS(2640), + [anon_sym_SLASH_SLASH2] = ACTIONS(2640), + [anon_sym_PLUS2] = ACTIONS(2642), + [anon_sym_bit_DASHshl2] = ACTIONS(2640), + [anon_sym_bit_DASHshr2] = ACTIONS(2640), + [anon_sym_bit_DASHand2] = ACTIONS(2640), + [anon_sym_bit_DASHxor2] = ACTIONS(2640), + [anon_sym_bit_DASHor2] = ACTIONS(2640), + [anon_sym_err_GT] = ACTIONS(2642), + [anon_sym_out_GT] = ACTIONS(2642), + [anon_sym_e_GT] = ACTIONS(2642), + [anon_sym_o_GT] = ACTIONS(2642), + [anon_sym_err_PLUSout_GT] = ACTIONS(2642), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2642), + [anon_sym_o_PLUSe_GT] = ACTIONS(2642), + [anon_sym_e_PLUSo_GT] = ACTIONS(2642), + [anon_sym_err_GT_GT] = ACTIONS(2640), + [anon_sym_out_GT_GT] = ACTIONS(2640), + [anon_sym_e_GT_GT] = ACTIONS(2640), + [anon_sym_o_GT_GT] = ACTIONS(2640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2640), + [anon_sym_POUND] = ACTIONS(3), + }, + [959] = { [sym_comment] = STATE(959), - [anon_sym_in] = ACTIONS(1909), - [sym__newline] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(1909), - [anon_sym_PIPE] = ACTIONS(1909), - [anon_sym_err_GT_PIPE] = ACTIONS(1909), - [anon_sym_out_GT_PIPE] = ACTIONS(1909), - [anon_sym_e_GT_PIPE] = ACTIONS(1909), - [anon_sym_o_GT_PIPE] = ACTIONS(1909), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1909), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1909), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1909), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1909), - [anon_sym_RPAREN] = ACTIONS(1909), - [anon_sym_GT2] = ACTIONS(1911), - [anon_sym_DASH2] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1909), - [anon_sym_RBRACE] = ACTIONS(1909), - [anon_sym_EQ_GT] = ACTIONS(1909), - [anon_sym_STAR2] = ACTIONS(1911), - [anon_sym_and2] = ACTIONS(1909), - [anon_sym_xor2] = ACTIONS(1909), - [anon_sym_or2] = ACTIONS(1909), - [anon_sym_not_DASHin2] = ACTIONS(1909), - [anon_sym_has2] = ACTIONS(1909), - [anon_sym_not_DASHhas2] = ACTIONS(1909), - [anon_sym_starts_DASHwith2] = ACTIONS(1909), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1909), - [anon_sym_ends_DASHwith2] = ACTIONS(1909), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1909), - [anon_sym_EQ_EQ2] = ACTIONS(1909), - [anon_sym_BANG_EQ2] = ACTIONS(1909), - [anon_sym_LT2] = ACTIONS(1911), - [anon_sym_LT_EQ2] = ACTIONS(1909), - [anon_sym_GT_EQ2] = ACTIONS(1909), - [anon_sym_EQ_TILDE2] = ACTIONS(1909), - [anon_sym_BANG_TILDE2] = ACTIONS(1909), - [anon_sym_like2] = ACTIONS(1909), - [anon_sym_not_DASHlike2] = ACTIONS(1909), - [anon_sym_STAR_STAR2] = ACTIONS(1909), - [anon_sym_PLUS_PLUS2] = ACTIONS(1909), - [anon_sym_SLASH2] = ACTIONS(1911), - [anon_sym_mod2] = ACTIONS(1909), - [anon_sym_SLASH_SLASH2] = ACTIONS(1909), - [anon_sym_PLUS2] = ACTIONS(1911), - [anon_sym_bit_DASHshl2] = ACTIONS(1909), - [anon_sym_bit_DASHshr2] = ACTIONS(1909), - [anon_sym_bit_DASHand2] = ACTIONS(1909), - [anon_sym_bit_DASHxor2] = ACTIONS(1909), - [anon_sym_bit_DASHor2] = ACTIONS(1909), - [anon_sym_err_GT] = ACTIONS(1911), - [anon_sym_out_GT] = ACTIONS(1911), - [anon_sym_e_GT] = ACTIONS(1911), - [anon_sym_o_GT] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT] = ACTIONS(1911), - [anon_sym_err_GT_GT] = ACTIONS(1909), - [anon_sym_out_GT_GT] = ACTIONS(1909), - [anon_sym_e_GT_GT] = ACTIONS(1909), - [anon_sym_o_GT_GT] = ACTIONS(1909), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1909), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1909), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1909), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1909), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(960)] = { + [anon_sym_export] = ACTIONS(2644), + [anon_sym_alias] = ACTIONS(2648), + [anon_sym_let] = ACTIONS(2648), + [anon_sym_mut] = ACTIONS(2648), + [anon_sym_const] = ACTIONS(2648), + [aux_sym_cmd_identifier_token1] = ACTIONS(2644), + [anon_sym_def] = ACTIONS(2648), + [anon_sym_use] = ACTIONS(2648), + [anon_sym_export_DASHenv] = ACTIONS(2648), + [anon_sym_extern] = ACTIONS(2648), + [anon_sym_module] = ACTIONS(2648), + [anon_sym_for] = ACTIONS(2648), + [anon_sym_loop] = ACTIONS(2648), + [anon_sym_while] = ACTIONS(2648), + [anon_sym_if] = ACTIONS(2648), + [anon_sym_else] = ACTIONS(2648), + [anon_sym_try] = ACTIONS(2648), + [anon_sym_catch] = ACTIONS(2648), + [anon_sym_finally] = ACTIONS(2648), + [anon_sym_match] = ACTIONS(2648), + [anon_sym_in] = ACTIONS(2644), + [anon_sym_true] = ACTIONS(2648), + [anon_sym_false] = ACTIONS(2648), + [anon_sym_null] = ACTIONS(2648), + [aux_sym_cmd_identifier_token3] = ACTIONS(2648), + [aux_sym_cmd_identifier_token4] = ACTIONS(2648), + [aux_sym_cmd_identifier_token5] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2648), + [anon_sym_DOLLAR] = ACTIONS(2644), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_RBRACE] = ACTIONS(2652), + [anon_sym_DOT_DOT] = ACTIONS(2655), + [anon_sym_where] = ACTIONS(2652), + [aux_sym_expr_unary_token1] = ACTIONS(2652), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2660), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2652), + [anon_sym_DOT_DOT_LT] = ACTIONS(2652), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2660), + [aux_sym__val_number_decimal_token1] = ACTIONS(2644), + [aux_sym__val_number_decimal_token2] = ACTIONS(2648), + [aux_sym__val_number_decimal_token3] = ACTIONS(2648), + [aux_sym__val_number_decimal_token4] = ACTIONS(2648), + [aux_sym__val_number_token1] = ACTIONS(2648), + [aux_sym__val_number_token2] = ACTIONS(2648), + [aux_sym__val_number_token3] = ACTIONS(2648), + [anon_sym_0b] = ACTIONS(2655), + [anon_sym_0o] = ACTIONS(2655), + [anon_sym_0x] = ACTIONS(2655), + [sym_val_date] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2648), + [anon_sym_SQUOTE] = ACTIONS(2648), + [anon_sym_BQUOTE] = ACTIONS(2648), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2648), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2648), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2660), + [anon_sym_CARET] = ACTIONS(2652), + [anon_sym_PERCENT] = ACTIONS(2652), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2648), + }, + [960] = { [sym_comment] = STATE(960), - [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_RBRACE] = 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_LPAREN2] = ACTIONS(2118), - [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), - [sym__unquoted_pattern] = ACTIONS(2124), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(961)] = { + [anon_sym_in] = ACTIONS(2099), + [sym__newline] = ACTIONS(2099), + [anon_sym_SEMI] = ACTIONS(2099), + [anon_sym_PIPE] = ACTIONS(2099), + [anon_sym_err_GT_PIPE] = ACTIONS(2099), + [anon_sym_out_GT_PIPE] = ACTIONS(2099), + [anon_sym_e_GT_PIPE] = ACTIONS(2099), + [anon_sym_o_GT_PIPE] = ACTIONS(2099), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2099), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2099), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2099), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2099), + [anon_sym_RPAREN] = ACTIONS(2099), + [anon_sym_GT2] = ACTIONS(2101), + [anon_sym_DASH2] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_RBRACE] = ACTIONS(2099), + [anon_sym_EQ_GT] = ACTIONS(2099), + [anon_sym_STAR2] = ACTIONS(2101), + [anon_sym_and2] = ACTIONS(2099), + [anon_sym_xor2] = ACTIONS(2099), + [anon_sym_or2] = ACTIONS(2099), + [anon_sym_not_DASHin2] = ACTIONS(2099), + [anon_sym_has2] = ACTIONS(2099), + [anon_sym_not_DASHhas2] = ACTIONS(2099), + [anon_sym_starts_DASHwith2] = ACTIONS(2099), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2099), + [anon_sym_ends_DASHwith2] = ACTIONS(2099), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2099), + [anon_sym_EQ_EQ2] = ACTIONS(2099), + [anon_sym_BANG_EQ2] = ACTIONS(2099), + [anon_sym_LT2] = ACTIONS(2101), + [anon_sym_LT_EQ2] = ACTIONS(2099), + [anon_sym_GT_EQ2] = ACTIONS(2099), + [anon_sym_EQ_TILDE2] = ACTIONS(2099), + [anon_sym_BANG_TILDE2] = ACTIONS(2099), + [anon_sym_like2] = ACTIONS(2099), + [anon_sym_not_DASHlike2] = ACTIONS(2099), + [anon_sym_STAR_STAR2] = ACTIONS(2099), + [anon_sym_PLUS_PLUS2] = ACTIONS(2099), + [anon_sym_SLASH2] = ACTIONS(2101), + [anon_sym_mod2] = ACTIONS(2099), + [anon_sym_SLASH_SLASH2] = ACTIONS(2099), + [anon_sym_PLUS2] = ACTIONS(2101), + [anon_sym_bit_DASHshl2] = ACTIONS(2099), + [anon_sym_bit_DASHshr2] = ACTIONS(2099), + [anon_sym_bit_DASHand2] = ACTIONS(2099), + [anon_sym_bit_DASHxor2] = ACTIONS(2099), + [anon_sym_bit_DASHor2] = ACTIONS(2099), + [anon_sym_err_GT] = ACTIONS(2101), + [anon_sym_out_GT] = ACTIONS(2101), + [anon_sym_e_GT] = ACTIONS(2101), + [anon_sym_o_GT] = ACTIONS(2101), + [anon_sym_err_PLUSout_GT] = ACTIONS(2101), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2101), + [anon_sym_o_PLUSe_GT] = ACTIONS(2101), + [anon_sym_e_PLUSo_GT] = ACTIONS(2101), + [anon_sym_err_GT_GT] = ACTIONS(2099), + [anon_sym_out_GT_GT] = ACTIONS(2099), + [anon_sym_e_GT_GT] = ACTIONS(2099), + [anon_sym_o_GT_GT] = ACTIONS(2099), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2099), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2099), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2099), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2099), + [anon_sym_POUND] = ACTIONS(3), + }, + [961] = { [sym_comment] = STATE(961), - [anon_sym_in] = ACTIONS(2114), - [sym__newline] = ACTIONS(2114), - [anon_sym_SEMI] = ACTIONS(2114), - [anon_sym_PIPE] = ACTIONS(2114), - [anon_sym_err_GT_PIPE] = ACTIONS(2114), - [anon_sym_out_GT_PIPE] = ACTIONS(2114), - [anon_sym_e_GT_PIPE] = ACTIONS(2114), - [anon_sym_o_GT_PIPE] = ACTIONS(2114), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2114), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2114), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2114), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2114), - [anon_sym_RPAREN] = ACTIONS(2114), - [anon_sym_GT2] = ACTIONS(2116), - [anon_sym_DASH2] = ACTIONS(2114), - [anon_sym_RBRACE] = ACTIONS(2114), - [anon_sym_STAR2] = ACTIONS(2116), - [anon_sym_and2] = ACTIONS(2114), - [anon_sym_xor2] = ACTIONS(2114), - [anon_sym_or2] = ACTIONS(2114), - [anon_sym_not_DASHin2] = ACTIONS(2114), - [anon_sym_has2] = ACTIONS(2114), - [anon_sym_not_DASHhas2] = ACTIONS(2114), - [anon_sym_starts_DASHwith2] = ACTIONS(2114), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2114), - [anon_sym_ends_DASHwith2] = ACTIONS(2114), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2114), - [anon_sym_EQ_EQ2] = ACTIONS(2114), - [anon_sym_BANG_EQ2] = ACTIONS(2114), - [anon_sym_LT2] = ACTIONS(2116), - [anon_sym_LT_EQ2] = ACTIONS(2114), - [anon_sym_GT_EQ2] = ACTIONS(2114), - [anon_sym_EQ_TILDE2] = ACTIONS(2114), - [anon_sym_BANG_TILDE2] = ACTIONS(2114), - [anon_sym_like2] = ACTIONS(2114), - [anon_sym_not_DASHlike2] = ACTIONS(2114), - [anon_sym_LPAREN2] = ACTIONS(2118), - [anon_sym_STAR_STAR2] = ACTIONS(2114), - [anon_sym_PLUS_PLUS2] = ACTIONS(2114), - [anon_sym_SLASH2] = ACTIONS(2116), - [anon_sym_mod2] = ACTIONS(2114), - [anon_sym_SLASH_SLASH2] = ACTIONS(2114), - [anon_sym_PLUS2] = ACTIONS(2116), - [anon_sym_bit_DASHshl2] = ACTIONS(2114), - [anon_sym_bit_DASHshr2] = ACTIONS(2114), - [anon_sym_bit_DASHand2] = ACTIONS(2114), - [anon_sym_bit_DASHxor2] = ACTIONS(2114), - [anon_sym_bit_DASHor2] = ACTIONS(2114), - [anon_sym_err_GT] = ACTIONS(2116), - [anon_sym_out_GT] = ACTIONS(2116), - [anon_sym_e_GT] = ACTIONS(2116), - [anon_sym_o_GT] = ACTIONS(2116), - [anon_sym_err_PLUSout_GT] = ACTIONS(2116), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2116), - [anon_sym_o_PLUSe_GT] = ACTIONS(2116), - [anon_sym_e_PLUSo_GT] = ACTIONS(2116), - [anon_sym_err_GT_GT] = ACTIONS(2114), - [anon_sym_out_GT_GT] = ACTIONS(2114), - [anon_sym_e_GT_GT] = ACTIONS(2114), - [anon_sym_o_GT_GT] = ACTIONS(2114), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2114), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2114), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2114), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2114), - [sym__unquoted_pattern] = ACTIONS(2124), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(962)] = { + [anon_sym_in] = ACTIONS(2640), + [sym__newline] = ACTIONS(2640), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_PIPE] = ACTIONS(2640), + [anon_sym_err_GT_PIPE] = ACTIONS(2640), + [anon_sym_out_GT_PIPE] = ACTIONS(2640), + [anon_sym_e_GT_PIPE] = ACTIONS(2640), + [anon_sym_o_GT_PIPE] = ACTIONS(2640), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2640), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2640), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2640), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2640), + [anon_sym_RPAREN] = ACTIONS(2640), + [anon_sym_GT2] = ACTIONS(2642), + [anon_sym_DASH2] = ACTIONS(2640), + [anon_sym_RBRACE] = ACTIONS(2640), + [anon_sym_STAR2] = ACTIONS(2642), + [anon_sym_and2] = ACTIONS(2640), + [anon_sym_xor2] = ACTIONS(2640), + [anon_sym_or2] = ACTIONS(2640), + [anon_sym_not_DASHin2] = ACTIONS(2640), + [anon_sym_has2] = ACTIONS(2640), + [anon_sym_not_DASHhas2] = ACTIONS(2640), + [anon_sym_starts_DASHwith2] = ACTIONS(2640), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2640), + [anon_sym_ends_DASHwith2] = ACTIONS(2640), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2640), + [anon_sym_EQ_EQ2] = ACTIONS(2640), + [anon_sym_BANG_EQ2] = ACTIONS(2640), + [anon_sym_LT2] = ACTIONS(2642), + [anon_sym_LT_EQ2] = ACTIONS(2640), + [anon_sym_GT_EQ2] = ACTIONS(2640), + [anon_sym_EQ_TILDE2] = ACTIONS(2640), + [anon_sym_BANG_TILDE2] = ACTIONS(2640), + [anon_sym_like2] = ACTIONS(2640), + [anon_sym_not_DASHlike2] = ACTIONS(2640), + [anon_sym_LPAREN2] = ACTIONS(2103), + [anon_sym_STAR_STAR2] = ACTIONS(2640), + [anon_sym_PLUS_PLUS2] = ACTIONS(2640), + [anon_sym_SLASH2] = ACTIONS(2642), + [anon_sym_mod2] = ACTIONS(2640), + [anon_sym_SLASH_SLASH2] = ACTIONS(2640), + [anon_sym_PLUS2] = ACTIONS(2642), + [anon_sym_bit_DASHshl2] = ACTIONS(2640), + [anon_sym_bit_DASHshr2] = ACTIONS(2640), + [anon_sym_bit_DASHand2] = ACTIONS(2640), + [anon_sym_bit_DASHxor2] = ACTIONS(2640), + [anon_sym_bit_DASHor2] = ACTIONS(2640), + [anon_sym_err_GT] = ACTIONS(2642), + [anon_sym_out_GT] = ACTIONS(2642), + [anon_sym_e_GT] = ACTIONS(2642), + [anon_sym_o_GT] = ACTIONS(2642), + [anon_sym_err_PLUSout_GT] = ACTIONS(2642), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2642), + [anon_sym_o_PLUSe_GT] = ACTIONS(2642), + [anon_sym_e_PLUSo_GT] = ACTIONS(2642), + [anon_sym_err_GT_GT] = ACTIONS(2640), + [anon_sym_out_GT_GT] = ACTIONS(2640), + [anon_sym_e_GT_GT] = ACTIONS(2640), + [anon_sym_o_GT_GT] = ACTIONS(2640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2640), + [sym__unquoted_pattern] = ACTIONS(2109), + [anon_sym_POUND] = ACTIONS(3), + }, + [962] = { [sym_comment] = STATE(962), - [ts_builtin_sym_end] = ACTIONS(2146), - [anon_sym_in] = ACTIONS(2146), - [sym__newline] = ACTIONS(2146), - [anon_sym_SEMI] = ACTIONS(2146), - [anon_sym_PIPE] = ACTIONS(2146), - [anon_sym_err_GT_PIPE] = ACTIONS(2146), - [anon_sym_out_GT_PIPE] = ACTIONS(2146), - [anon_sym_e_GT_PIPE] = ACTIONS(2146), - [anon_sym_o_GT_PIPE] = ACTIONS(2146), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2146), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2146), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2146), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2146), - [anon_sym_GT2] = ACTIONS(2148), - [anon_sym_DASH2] = ACTIONS(2146), - [anon_sym_STAR2] = ACTIONS(2148), - [anon_sym_and2] = ACTIONS(2146), - [anon_sym_xor2] = ACTIONS(2146), - [anon_sym_or2] = ACTIONS(2146), - [anon_sym_not_DASHin2] = ACTIONS(2146), - [anon_sym_has2] = ACTIONS(2146), - [anon_sym_not_DASHhas2] = ACTIONS(2146), - [anon_sym_starts_DASHwith2] = ACTIONS(2146), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2146), - [anon_sym_ends_DASHwith2] = ACTIONS(2146), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2146), - [anon_sym_EQ_EQ2] = ACTIONS(2146), - [anon_sym_BANG_EQ2] = ACTIONS(2146), - [anon_sym_LT2] = ACTIONS(2148), - [anon_sym_LT_EQ2] = ACTIONS(2146), - [anon_sym_GT_EQ2] = ACTIONS(2146), - [anon_sym_EQ_TILDE2] = ACTIONS(2146), - [anon_sym_BANG_TILDE2] = ACTIONS(2146), - [anon_sym_like2] = ACTIONS(2146), - [anon_sym_not_DASHlike2] = ACTIONS(2146), - [anon_sym_STAR_STAR2] = ACTIONS(2146), - [anon_sym_PLUS_PLUS2] = ACTIONS(2146), - [anon_sym_SLASH2] = ACTIONS(2148), - [anon_sym_mod2] = ACTIONS(2146), - [anon_sym_SLASH_SLASH2] = ACTIONS(2146), - [anon_sym_PLUS2] = ACTIONS(2148), - [anon_sym_bit_DASHshl2] = ACTIONS(2146), - [anon_sym_bit_DASHshr2] = ACTIONS(2146), - [anon_sym_bit_DASHand2] = ACTIONS(2146), - [anon_sym_bit_DASHxor2] = ACTIONS(2146), - [anon_sym_bit_DASHor2] = ACTIONS(2146), - [anon_sym_DOT_DOT2] = ACTIONS(1826), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), - [anon_sym_err_GT] = ACTIONS(2148), - [anon_sym_out_GT] = ACTIONS(2148), - [anon_sym_e_GT] = ACTIONS(2148), - [anon_sym_o_GT] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT] = ACTIONS(2148), - [anon_sym_err_GT_GT] = ACTIONS(2146), - [anon_sym_out_GT_GT] = ACTIONS(2146), - [anon_sym_e_GT_GT] = ACTIONS(2146), - [anon_sym_o_GT_GT] = ACTIONS(2146), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2146), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2146), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2146), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2146), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(963)] = { + [ts_builtin_sym_end] = ACTIONS(2251), + [anon_sym_in] = ACTIONS(2251), + [sym__newline] = ACTIONS(2251), + [anon_sym_SEMI] = ACTIONS(2251), + [anon_sym_PIPE] = ACTIONS(2251), + [anon_sym_err_GT_PIPE] = ACTIONS(2251), + [anon_sym_out_GT_PIPE] = ACTIONS(2251), + [anon_sym_e_GT_PIPE] = ACTIONS(2251), + [anon_sym_o_GT_PIPE] = ACTIONS(2251), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2251), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2251), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2251), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2251), + [anon_sym_GT2] = ACTIONS(2253), + [anon_sym_DASH2] = ACTIONS(2251), + [anon_sym_STAR2] = ACTIONS(2253), + [anon_sym_and2] = ACTIONS(2251), + [anon_sym_xor2] = ACTIONS(2251), + [anon_sym_or2] = ACTIONS(2251), + [anon_sym_not_DASHin2] = ACTIONS(2251), + [anon_sym_has2] = ACTIONS(2251), + [anon_sym_not_DASHhas2] = ACTIONS(2251), + [anon_sym_starts_DASHwith2] = ACTIONS(2251), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2251), + [anon_sym_ends_DASHwith2] = ACTIONS(2251), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2251), + [anon_sym_EQ_EQ2] = ACTIONS(2251), + [anon_sym_BANG_EQ2] = ACTIONS(2251), + [anon_sym_LT2] = ACTIONS(2253), + [anon_sym_LT_EQ2] = ACTIONS(2251), + [anon_sym_GT_EQ2] = ACTIONS(2251), + [anon_sym_EQ_TILDE2] = ACTIONS(2251), + [anon_sym_BANG_TILDE2] = ACTIONS(2251), + [anon_sym_like2] = ACTIONS(2251), + [anon_sym_not_DASHlike2] = ACTIONS(2251), + [anon_sym_STAR_STAR2] = ACTIONS(2251), + [anon_sym_PLUS_PLUS2] = ACTIONS(2251), + [anon_sym_SLASH2] = ACTIONS(2253), + [anon_sym_mod2] = ACTIONS(2251), + [anon_sym_SLASH_SLASH2] = ACTIONS(2251), + [anon_sym_PLUS2] = ACTIONS(2253), + [anon_sym_bit_DASHshl2] = ACTIONS(2251), + [anon_sym_bit_DASHshr2] = ACTIONS(2251), + [anon_sym_bit_DASHand2] = ACTIONS(2251), + [anon_sym_bit_DASHxor2] = ACTIONS(2251), + [anon_sym_bit_DASHor2] = ACTIONS(2251), + [anon_sym_DOT_DOT2] = ACTIONS(2662), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2664), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2664), + [anon_sym_err_GT] = ACTIONS(2253), + [anon_sym_out_GT] = ACTIONS(2253), + [anon_sym_e_GT] = ACTIONS(2253), + [anon_sym_o_GT] = ACTIONS(2253), + [anon_sym_err_PLUSout_GT] = ACTIONS(2253), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2253), + [anon_sym_o_PLUSe_GT] = ACTIONS(2253), + [anon_sym_e_PLUSo_GT] = ACTIONS(2253), + [anon_sym_err_GT_GT] = ACTIONS(2251), + [anon_sym_out_GT_GT] = ACTIONS(2251), + [anon_sym_e_GT_GT] = ACTIONS(2251), + [anon_sym_o_GT_GT] = ACTIONS(2251), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2251), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2251), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2251), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2251), + [anon_sym_POUND] = ACTIONS(3), + }, + [963] = { [sym_comment] = STATE(963), + [ts_builtin_sym_end] = ACTIONS(2146), [anon_sym_in] = ACTIONS(2146), [sym__newline] = ACTIONS(2146), [anon_sym_SEMI] = ACTIONS(2146), @@ -121129,12 +121078,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2146), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2146), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2146), - [anon_sym_RPAREN] = ACTIONS(2146), [anon_sym_GT2] = ACTIONS(2148), [anon_sym_DASH2] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2146), - [anon_sym_RBRACE] = ACTIONS(2146), - [anon_sym_EQ_GT] = ACTIONS(2146), [anon_sym_STAR2] = ACTIONS(2148), [anon_sym_and2] = ACTIONS(2146), [anon_sym_xor2] = ACTIONS(2146), @@ -121166,6 +121111,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2146), [anon_sym_bit_DASHxor2] = ACTIONS(2146), [anon_sym_bit_DASHor2] = ACTIONS(2146), + [anon_sym_DOT_DOT2] = ACTIONS(2666), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2668), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2668), [anon_sym_err_GT] = ACTIONS(2148), [anon_sym_out_GT] = ACTIONS(2148), [anon_sym_e_GT] = ACTIONS(2148), @@ -121184,1723 +121132,1654 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2146), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(964)] = { + [964] = { [sym_comment] = STATE(964), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(965)] = { + [ts_builtin_sym_end] = ACTIONS(1856), + [anon_sym_in] = ACTIONS(1856), + [sym__newline] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_err_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_GT_PIPE] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1856), + [anon_sym_GT2] = ACTIONS(1858), + [anon_sym_DASH2] = ACTIONS(1856), + [anon_sym_STAR2] = ACTIONS(1858), + [anon_sym_and2] = ACTIONS(1856), + [anon_sym_xor2] = ACTIONS(1856), + [anon_sym_or2] = ACTIONS(1856), + [anon_sym_not_DASHin2] = ACTIONS(1856), + [anon_sym_has2] = ACTIONS(1856), + [anon_sym_not_DASHhas2] = ACTIONS(1856), + [anon_sym_starts_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1856), + [anon_sym_ends_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1856), + [anon_sym_EQ_EQ2] = ACTIONS(1856), + [anon_sym_BANG_EQ2] = ACTIONS(1856), + [anon_sym_LT2] = ACTIONS(1858), + [anon_sym_LT_EQ2] = ACTIONS(1856), + [anon_sym_GT_EQ2] = ACTIONS(1856), + [anon_sym_EQ_TILDE2] = ACTIONS(1856), + [anon_sym_BANG_TILDE2] = ACTIONS(1856), + [anon_sym_like2] = ACTIONS(1856), + [anon_sym_not_DASHlike2] = ACTIONS(1856), + [anon_sym_STAR_STAR2] = ACTIONS(1856), + [anon_sym_PLUS_PLUS2] = ACTIONS(1856), + [anon_sym_SLASH2] = ACTIONS(1858), + [anon_sym_mod2] = ACTIONS(1856), + [anon_sym_SLASH_SLASH2] = ACTIONS(1856), + [anon_sym_PLUS2] = ACTIONS(1858), + [anon_sym_bit_DASHshl2] = ACTIONS(1856), + [anon_sym_bit_DASHshr2] = ACTIONS(1856), + [anon_sym_bit_DASHand2] = ACTIONS(1856), + [anon_sym_bit_DASHxor2] = ACTIONS(1856), + [anon_sym_bit_DASHor2] = ACTIONS(1856), + [anon_sym_DOT_DOT2] = ACTIONS(1858), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1856), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1856), + [anon_sym_err_GT] = ACTIONS(1858), + [anon_sym_out_GT] = ACTIONS(1858), + [anon_sym_e_GT] = ACTIONS(1858), + [anon_sym_o_GT] = ACTIONS(1858), + [anon_sym_err_PLUSout_GT] = ACTIONS(1858), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1858), + [anon_sym_o_PLUSe_GT] = ACTIONS(1858), + [anon_sym_e_PLUSo_GT] = ACTIONS(1858), + [anon_sym_err_GT_GT] = ACTIONS(1856), + [anon_sym_out_GT_GT] = ACTIONS(1856), + [anon_sym_e_GT_GT] = ACTIONS(1856), + [anon_sym_o_GT_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(3), + }, + [965] = { [sym_comment] = STATE(965), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(966)] = { + [ts_builtin_sym_end] = ACTIONS(2271), + [anon_sym_in] = ACTIONS(2271), + [sym__newline] = ACTIONS(2271), + [anon_sym_SEMI] = ACTIONS(2271), + [anon_sym_PIPE] = ACTIONS(2271), + [anon_sym_err_GT_PIPE] = ACTIONS(2271), + [anon_sym_out_GT_PIPE] = ACTIONS(2271), + [anon_sym_e_GT_PIPE] = ACTIONS(2271), + [anon_sym_o_GT_PIPE] = ACTIONS(2271), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2271), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2271), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2271), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2271), + [anon_sym_GT2] = ACTIONS(2273), + [anon_sym_DASH2] = ACTIONS(2271), + [anon_sym_STAR2] = ACTIONS(2273), + [anon_sym_and2] = ACTIONS(2271), + [anon_sym_xor2] = ACTIONS(2271), + [anon_sym_or2] = ACTIONS(2271), + [anon_sym_not_DASHin2] = ACTIONS(2271), + [anon_sym_has2] = ACTIONS(2271), + [anon_sym_not_DASHhas2] = ACTIONS(2271), + [anon_sym_starts_DASHwith2] = ACTIONS(2271), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2271), + [anon_sym_ends_DASHwith2] = ACTIONS(2271), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2271), + [anon_sym_EQ_EQ2] = ACTIONS(2271), + [anon_sym_BANG_EQ2] = ACTIONS(2271), + [anon_sym_LT2] = ACTIONS(2273), + [anon_sym_LT_EQ2] = ACTIONS(2271), + [anon_sym_GT_EQ2] = ACTIONS(2271), + [anon_sym_EQ_TILDE2] = ACTIONS(2271), + [anon_sym_BANG_TILDE2] = ACTIONS(2271), + [anon_sym_like2] = ACTIONS(2271), + [anon_sym_not_DASHlike2] = ACTIONS(2271), + [anon_sym_STAR_STAR2] = ACTIONS(2271), + [anon_sym_PLUS_PLUS2] = ACTIONS(2271), + [anon_sym_SLASH2] = ACTIONS(2273), + [anon_sym_mod2] = ACTIONS(2271), + [anon_sym_SLASH_SLASH2] = ACTIONS(2271), + [anon_sym_PLUS2] = ACTIONS(2273), + [anon_sym_bit_DASHshl2] = ACTIONS(2271), + [anon_sym_bit_DASHshr2] = ACTIONS(2271), + [anon_sym_bit_DASHand2] = ACTIONS(2271), + [anon_sym_bit_DASHxor2] = ACTIONS(2271), + [anon_sym_bit_DASHor2] = ACTIONS(2271), + [anon_sym_DOT_DOT2] = ACTIONS(2670), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2672), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2672), + [anon_sym_err_GT] = ACTIONS(2273), + [anon_sym_out_GT] = ACTIONS(2273), + [anon_sym_e_GT] = ACTIONS(2273), + [anon_sym_o_GT] = ACTIONS(2273), + [anon_sym_err_PLUSout_GT] = ACTIONS(2273), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2273), + [anon_sym_o_PLUSe_GT] = ACTIONS(2273), + [anon_sym_e_PLUSo_GT] = ACTIONS(2273), + [anon_sym_err_GT_GT] = ACTIONS(2271), + [anon_sym_out_GT_GT] = ACTIONS(2271), + [anon_sym_e_GT_GT] = ACTIONS(2271), + [anon_sym_o_GT_GT] = ACTIONS(2271), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2271), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2271), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2271), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2271), + [anon_sym_POUND] = ACTIONS(3), + }, + [966] = { [sym_comment] = STATE(966), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(967)] = { + [ts_builtin_sym_end] = ACTIONS(2099), + [anon_sym_in] = ACTIONS(2099), + [sym__newline] = ACTIONS(2099), + [anon_sym_SEMI] = ACTIONS(2099), + [anon_sym_PIPE] = ACTIONS(2099), + [anon_sym_err_GT_PIPE] = ACTIONS(2099), + [anon_sym_out_GT_PIPE] = ACTIONS(2099), + [anon_sym_e_GT_PIPE] = ACTIONS(2099), + [anon_sym_o_GT_PIPE] = ACTIONS(2099), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2099), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2099), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2099), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2099), + [anon_sym_GT2] = ACTIONS(2101), + [anon_sym_DASH2] = ACTIONS(2099), + [anon_sym_STAR2] = ACTIONS(2101), + [anon_sym_and2] = ACTIONS(2099), + [anon_sym_xor2] = ACTIONS(2099), + [anon_sym_or2] = ACTIONS(2099), + [anon_sym_not_DASHin2] = ACTIONS(2099), + [anon_sym_has2] = ACTIONS(2099), + [anon_sym_not_DASHhas2] = ACTIONS(2099), + [anon_sym_starts_DASHwith2] = ACTIONS(2099), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2099), + [anon_sym_ends_DASHwith2] = ACTIONS(2099), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2099), + [anon_sym_EQ_EQ2] = ACTIONS(2099), + [anon_sym_BANG_EQ2] = ACTIONS(2099), + [anon_sym_LT2] = ACTIONS(2101), + [anon_sym_LT_EQ2] = ACTIONS(2099), + [anon_sym_GT_EQ2] = ACTIONS(2099), + [anon_sym_EQ_TILDE2] = ACTIONS(2099), + [anon_sym_BANG_TILDE2] = ACTIONS(2099), + [anon_sym_like2] = ACTIONS(2099), + [anon_sym_not_DASHlike2] = ACTIONS(2099), + [anon_sym_STAR_STAR2] = ACTIONS(2099), + [anon_sym_PLUS_PLUS2] = ACTIONS(2099), + [anon_sym_SLASH2] = ACTIONS(2101), + [anon_sym_mod2] = ACTIONS(2099), + [anon_sym_SLASH_SLASH2] = ACTIONS(2099), + [anon_sym_PLUS2] = ACTIONS(2101), + [anon_sym_bit_DASHshl2] = ACTIONS(2099), + [anon_sym_bit_DASHshr2] = ACTIONS(2099), + [anon_sym_bit_DASHand2] = ACTIONS(2099), + [anon_sym_bit_DASHxor2] = ACTIONS(2099), + [anon_sym_bit_DASHor2] = ACTIONS(2099), + [anon_sym_DOT_DOT2] = ACTIONS(2674), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2676), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2676), + [anon_sym_err_GT] = ACTIONS(2101), + [anon_sym_out_GT] = ACTIONS(2101), + [anon_sym_e_GT] = ACTIONS(2101), + [anon_sym_o_GT] = ACTIONS(2101), + [anon_sym_err_PLUSout_GT] = ACTIONS(2101), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2101), + [anon_sym_o_PLUSe_GT] = ACTIONS(2101), + [anon_sym_e_PLUSo_GT] = ACTIONS(2101), + [anon_sym_err_GT_GT] = ACTIONS(2099), + [anon_sym_out_GT_GT] = ACTIONS(2099), + [anon_sym_e_GT_GT] = ACTIONS(2099), + [anon_sym_o_GT_GT] = ACTIONS(2099), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2099), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2099), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2099), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2099), + [anon_sym_POUND] = ACTIONS(3), + }, + [967] = { [sym_comment] = STATE(967), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(968)] = { + [anon_sym_in] = ACTIONS(1262), + [sym__newline] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_PIPE] = ACTIONS(1262), + [anon_sym_err_GT_PIPE] = ACTIONS(1262), + [anon_sym_out_GT_PIPE] = ACTIONS(1262), + [anon_sym_e_GT_PIPE] = ACTIONS(1262), + [anon_sym_o_GT_PIPE] = ACTIONS(1262), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1262), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1262), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1262), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1262), + [anon_sym_RPAREN] = ACTIONS(1262), + [anon_sym_GT2] = ACTIONS(1246), + [anon_sym_DASH2] = ACTIONS(1262), + [anon_sym_RBRACE] = ACTIONS(1262), + [anon_sym_STAR2] = ACTIONS(1246), + [anon_sym_and2] = ACTIONS(1262), + [anon_sym_xor2] = ACTIONS(1262), + [anon_sym_or2] = ACTIONS(1262), + [anon_sym_not_DASHin2] = ACTIONS(1262), + [anon_sym_has2] = ACTIONS(1262), + [anon_sym_not_DASHhas2] = ACTIONS(1262), + [anon_sym_starts_DASHwith2] = ACTIONS(1262), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1262), + [anon_sym_ends_DASHwith2] = ACTIONS(1262), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1262), + [anon_sym_EQ_EQ2] = ACTIONS(1262), + [anon_sym_BANG_EQ2] = ACTIONS(1262), + [anon_sym_LT2] = ACTIONS(1246), + [anon_sym_LT_EQ2] = ACTIONS(1262), + [anon_sym_GT_EQ2] = ACTIONS(1262), + [anon_sym_EQ_TILDE2] = ACTIONS(1262), + [anon_sym_BANG_TILDE2] = ACTIONS(1262), + [anon_sym_like2] = ACTIONS(1262), + [anon_sym_not_DASHlike2] = ACTIONS(1262), + [anon_sym_LPAREN2] = ACTIONS(2636), + [anon_sym_STAR_STAR2] = ACTIONS(1262), + [anon_sym_PLUS_PLUS2] = ACTIONS(1262), + [anon_sym_SLASH2] = ACTIONS(1246), + [anon_sym_mod2] = ACTIONS(1262), + [anon_sym_SLASH_SLASH2] = ACTIONS(1262), + [anon_sym_PLUS2] = ACTIONS(1246), + [anon_sym_bit_DASHshl2] = ACTIONS(1262), + [anon_sym_bit_DASHshr2] = ACTIONS(1262), + [anon_sym_bit_DASHand2] = ACTIONS(1262), + [anon_sym_bit_DASHxor2] = ACTIONS(1262), + [anon_sym_bit_DASHor2] = ACTIONS(1262), + [anon_sym_err_GT] = ACTIONS(1246), + [anon_sym_out_GT] = ACTIONS(1246), + [anon_sym_e_GT] = ACTIONS(1246), + [anon_sym_o_GT] = ACTIONS(1246), + [anon_sym_err_PLUSout_GT] = ACTIONS(1246), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1246), + [anon_sym_o_PLUSe_GT] = ACTIONS(1246), + [anon_sym_e_PLUSo_GT] = ACTIONS(1246), + [anon_sym_err_GT_GT] = ACTIONS(1262), + [anon_sym_out_GT_GT] = ACTIONS(1262), + [anon_sym_e_GT_GT] = ACTIONS(1262), + [anon_sym_o_GT_GT] = ACTIONS(1262), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1262), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1262), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1262), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1262), + [sym__unquoted_pattern] = ACTIONS(2638), + [anon_sym_POUND] = ACTIONS(3), + }, + [968] = { [sym_comment] = STATE(968), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(969)] = { + [anon_sym_in] = ACTIONS(1874), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_GT2] = ACTIONS(1876), + [anon_sym_DASH2] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_STAR2] = ACTIONS(1876), + [anon_sym_and2] = ACTIONS(1874), + [anon_sym_xor2] = ACTIONS(1874), + [anon_sym_or2] = ACTIONS(1874), + [anon_sym_not_DASHin2] = ACTIONS(1874), + [anon_sym_has2] = ACTIONS(1874), + [anon_sym_not_DASHhas2] = ACTIONS(1874), + [anon_sym_starts_DASHwith2] = ACTIONS(1874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1874), + [anon_sym_ends_DASHwith2] = ACTIONS(1874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1874), + [anon_sym_EQ_EQ2] = ACTIONS(1874), + [anon_sym_BANG_EQ2] = ACTIONS(1874), + [anon_sym_LT2] = ACTIONS(1876), + [anon_sym_LT_EQ2] = ACTIONS(1874), + [anon_sym_GT_EQ2] = ACTIONS(1874), + [anon_sym_EQ_TILDE2] = ACTIONS(1874), + [anon_sym_BANG_TILDE2] = ACTIONS(1874), + [anon_sym_like2] = ACTIONS(1874), + [anon_sym_not_DASHlike2] = ACTIONS(1874), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_STAR_STAR2] = ACTIONS(1874), + [anon_sym_PLUS_PLUS2] = ACTIONS(1874), + [anon_sym_SLASH2] = ACTIONS(1876), + [anon_sym_mod2] = ACTIONS(1874), + [anon_sym_SLASH_SLASH2] = ACTIONS(1874), + [anon_sym_PLUS2] = ACTIONS(1876), + [anon_sym_bit_DASHshl2] = ACTIONS(1874), + [anon_sym_bit_DASHshr2] = ACTIONS(1874), + [anon_sym_bit_DASHand2] = ACTIONS(1874), + [anon_sym_bit_DASHxor2] = ACTIONS(1874), + [anon_sym_bit_DASHor2] = ACTIONS(1874), + [anon_sym_err_GT] = ACTIONS(1876), + [anon_sym_out_GT] = ACTIONS(1876), + [anon_sym_e_GT] = ACTIONS(1876), + [anon_sym_o_GT] = ACTIONS(1876), + [anon_sym_err_PLUSout_GT] = ACTIONS(1876), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1876), + [anon_sym_o_PLUSe_GT] = ACTIONS(1876), + [anon_sym_e_PLUSo_GT] = ACTIONS(1876), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [sym__unquoted_pattern] = ACTIONS(1876), + [anon_sym_POUND] = ACTIONS(3), + }, + [969] = { [sym_comment] = STATE(969), - [anon_sym_in] = ACTIONS(1738), - [sym__newline] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_err_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_GT_PIPE] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), - [anon_sym_RPAREN] = ACTIONS(1738), - [anon_sym_GT2] = ACTIONS(1616), - [anon_sym_DASH2] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1738), - [anon_sym_RBRACE] = ACTIONS(1738), - [anon_sym_EQ_GT] = ACTIONS(1738), - [anon_sym_STAR2] = ACTIONS(1616), - [anon_sym_and2] = ACTIONS(1738), - [anon_sym_xor2] = ACTIONS(1738), - [anon_sym_or2] = ACTIONS(1738), - [anon_sym_not_DASHin2] = ACTIONS(1738), - [anon_sym_has2] = ACTIONS(1738), - [anon_sym_not_DASHhas2] = ACTIONS(1738), - [anon_sym_starts_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), - [anon_sym_ends_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), - [anon_sym_EQ_EQ2] = ACTIONS(1738), - [anon_sym_BANG_EQ2] = ACTIONS(1738), - [anon_sym_LT2] = ACTIONS(1616), - [anon_sym_LT_EQ2] = ACTIONS(1738), - [anon_sym_GT_EQ2] = ACTIONS(1738), - [anon_sym_EQ_TILDE2] = ACTIONS(1738), - [anon_sym_BANG_TILDE2] = ACTIONS(1738), - [anon_sym_like2] = ACTIONS(1738), - [anon_sym_not_DASHlike2] = ACTIONS(1738), - [anon_sym_STAR_STAR2] = ACTIONS(1738), - [anon_sym_PLUS_PLUS2] = ACTIONS(1738), - [anon_sym_SLASH2] = ACTIONS(1616), - [anon_sym_mod2] = ACTIONS(1738), - [anon_sym_SLASH_SLASH2] = ACTIONS(1738), - [anon_sym_PLUS2] = ACTIONS(1616), - [anon_sym_bit_DASHshl2] = ACTIONS(1738), - [anon_sym_bit_DASHshr2] = ACTIONS(1738), - [anon_sym_bit_DASHand2] = ACTIONS(1738), - [anon_sym_bit_DASHxor2] = ACTIONS(1738), - [anon_sym_bit_DASHor2] = ACTIONS(1738), - [anon_sym_err_GT] = ACTIONS(1616), - [anon_sym_out_GT] = ACTIONS(1616), - [anon_sym_e_GT] = ACTIONS(1616), - [anon_sym_o_GT] = ACTIONS(1616), - [anon_sym_err_PLUSout_GT] = ACTIONS(1616), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), - [anon_sym_o_PLUSe_GT] = ACTIONS(1616), - [anon_sym_e_PLUSo_GT] = ACTIONS(1616), - [anon_sym_err_GT_GT] = ACTIONS(1738), - [anon_sym_out_GT_GT] = ACTIONS(1738), - [anon_sym_e_GT_GT] = ACTIONS(1738), - [anon_sym_o_GT_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(970)] = { + [anon_sym_in] = ACTIONS(2678), + [sym__newline] = ACTIONS(2678), + [anon_sym_SEMI] = ACTIONS(2678), + [anon_sym_PIPE] = ACTIONS(2678), + [anon_sym_err_GT_PIPE] = ACTIONS(2678), + [anon_sym_out_GT_PIPE] = ACTIONS(2678), + [anon_sym_e_GT_PIPE] = ACTIONS(2678), + [anon_sym_o_GT_PIPE] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2678), + [anon_sym_RPAREN] = ACTIONS(2678), + [anon_sym_GT2] = ACTIONS(2680), + [anon_sym_DASH2] = ACTIONS(2678), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_RBRACE] = ACTIONS(2678), + [anon_sym_EQ_GT] = ACTIONS(2678), + [anon_sym_STAR2] = ACTIONS(2680), + [anon_sym_and2] = ACTIONS(2678), + [anon_sym_xor2] = ACTIONS(2678), + [anon_sym_or2] = ACTIONS(2678), + [anon_sym_not_DASHin2] = ACTIONS(2678), + [anon_sym_has2] = ACTIONS(2678), + [anon_sym_not_DASHhas2] = ACTIONS(2678), + [anon_sym_starts_DASHwith2] = ACTIONS(2678), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2678), + [anon_sym_ends_DASHwith2] = ACTIONS(2678), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2678), + [anon_sym_EQ_EQ2] = ACTIONS(2678), + [anon_sym_BANG_EQ2] = ACTIONS(2678), + [anon_sym_LT2] = ACTIONS(2680), + [anon_sym_LT_EQ2] = ACTIONS(2678), + [anon_sym_GT_EQ2] = ACTIONS(2678), + [anon_sym_EQ_TILDE2] = ACTIONS(2678), + [anon_sym_BANG_TILDE2] = ACTIONS(2678), + [anon_sym_like2] = ACTIONS(2678), + [anon_sym_not_DASHlike2] = ACTIONS(2678), + [anon_sym_STAR_STAR2] = ACTIONS(2678), + [anon_sym_PLUS_PLUS2] = ACTIONS(2678), + [anon_sym_SLASH2] = ACTIONS(2680), + [anon_sym_mod2] = ACTIONS(2678), + [anon_sym_SLASH_SLASH2] = ACTIONS(2678), + [anon_sym_PLUS2] = ACTIONS(2680), + [anon_sym_bit_DASHshl2] = ACTIONS(2678), + [anon_sym_bit_DASHshr2] = ACTIONS(2678), + [anon_sym_bit_DASHand2] = ACTIONS(2678), + [anon_sym_bit_DASHxor2] = ACTIONS(2678), + [anon_sym_bit_DASHor2] = ACTIONS(2678), + [anon_sym_err_GT] = ACTIONS(2680), + [anon_sym_out_GT] = ACTIONS(2680), + [anon_sym_e_GT] = ACTIONS(2680), + [anon_sym_o_GT] = ACTIONS(2680), + [anon_sym_err_PLUSout_GT] = ACTIONS(2680), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2680), + [anon_sym_o_PLUSe_GT] = ACTIONS(2680), + [anon_sym_e_PLUSo_GT] = ACTIONS(2680), + [anon_sym_err_GT_GT] = ACTIONS(2678), + [anon_sym_out_GT_GT] = ACTIONS(2678), + [anon_sym_e_GT_GT] = ACTIONS(2678), + [anon_sym_o_GT_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2678), + [anon_sym_POUND] = ACTIONS(3), + }, + [970] = { [sym_comment] = STATE(970), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(971)] = { + [anon_sym_in] = ACTIONS(1945), + [sym__newline] = ACTIONS(1945), + [anon_sym_SEMI] = ACTIONS(1945), + [anon_sym_PIPE] = ACTIONS(1945), + [anon_sym_err_GT_PIPE] = ACTIONS(1945), + [anon_sym_out_GT_PIPE] = ACTIONS(1945), + [anon_sym_e_GT_PIPE] = ACTIONS(1945), + [anon_sym_o_GT_PIPE] = ACTIONS(1945), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1945), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1945), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1945), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1945), + [anon_sym_RPAREN] = ACTIONS(1945), + [anon_sym_GT2] = ACTIONS(1947), + [anon_sym_DASH2] = ACTIONS(1945), + [anon_sym_RBRACE] = ACTIONS(1945), + [anon_sym_STAR2] = ACTIONS(1947), + [anon_sym_and2] = ACTIONS(1945), + [anon_sym_xor2] = ACTIONS(1945), + [anon_sym_or2] = ACTIONS(1945), + [anon_sym_not_DASHin2] = ACTIONS(1945), + [anon_sym_has2] = ACTIONS(1945), + [anon_sym_not_DASHhas2] = ACTIONS(1945), + [anon_sym_starts_DASHwith2] = ACTIONS(1945), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1945), + [anon_sym_ends_DASHwith2] = ACTIONS(1945), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1945), + [anon_sym_EQ_EQ2] = ACTIONS(1945), + [anon_sym_BANG_EQ2] = ACTIONS(1945), + [anon_sym_LT2] = ACTIONS(1947), + [anon_sym_LT_EQ2] = ACTIONS(1945), + [anon_sym_GT_EQ2] = ACTIONS(1945), + [anon_sym_EQ_TILDE2] = ACTIONS(1945), + [anon_sym_BANG_TILDE2] = ACTIONS(1945), + [anon_sym_like2] = ACTIONS(1945), + [anon_sym_not_DASHlike2] = ACTIONS(1945), + [anon_sym_LPAREN2] = ACTIONS(1945), + [anon_sym_STAR_STAR2] = ACTIONS(1945), + [anon_sym_PLUS_PLUS2] = ACTIONS(1945), + [anon_sym_SLASH2] = ACTIONS(1947), + [anon_sym_mod2] = ACTIONS(1945), + [anon_sym_SLASH_SLASH2] = ACTIONS(1945), + [anon_sym_PLUS2] = ACTIONS(1947), + [anon_sym_bit_DASHshl2] = ACTIONS(1945), + [anon_sym_bit_DASHshr2] = ACTIONS(1945), + [anon_sym_bit_DASHand2] = ACTIONS(1945), + [anon_sym_bit_DASHxor2] = ACTIONS(1945), + [anon_sym_bit_DASHor2] = ACTIONS(1945), + [anon_sym_err_GT] = ACTIONS(1947), + [anon_sym_out_GT] = ACTIONS(1947), + [anon_sym_e_GT] = ACTIONS(1947), + [anon_sym_o_GT] = ACTIONS(1947), + [anon_sym_err_PLUSout_GT] = ACTIONS(1947), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1947), + [anon_sym_o_PLUSe_GT] = ACTIONS(1947), + [anon_sym_e_PLUSo_GT] = ACTIONS(1947), + [anon_sym_err_GT_GT] = ACTIONS(1945), + [anon_sym_out_GT_GT] = ACTIONS(1945), + [anon_sym_e_GT_GT] = ACTIONS(1945), + [anon_sym_o_GT_GT] = ACTIONS(1945), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1945), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1945), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1945), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1945), + [sym__unquoted_pattern] = ACTIONS(1947), + [anon_sym_POUND] = ACTIONS(3), + }, + [971] = { [sym_comment] = STATE(971), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(972)] = { + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [972] = { [sym_comment] = STATE(972), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(973)] = { + [anon_sym_in] = ACTIONS(2682), + [sym__newline] = ACTIONS(2682), + [anon_sym_SEMI] = ACTIONS(2682), + [anon_sym_PIPE] = ACTIONS(2682), + [anon_sym_err_GT_PIPE] = ACTIONS(2682), + [anon_sym_out_GT_PIPE] = ACTIONS(2682), + [anon_sym_e_GT_PIPE] = ACTIONS(2682), + [anon_sym_o_GT_PIPE] = ACTIONS(2682), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2682), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2682), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2682), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2682), + [anon_sym_RPAREN] = ACTIONS(2682), + [anon_sym_GT2] = ACTIONS(2684), + [anon_sym_DASH2] = ACTIONS(2682), + [anon_sym_LBRACE] = ACTIONS(2682), + [anon_sym_RBRACE] = ACTIONS(2682), + [anon_sym_EQ_GT] = ACTIONS(2682), + [anon_sym_STAR2] = ACTIONS(2684), + [anon_sym_and2] = ACTIONS(2682), + [anon_sym_xor2] = ACTIONS(2682), + [anon_sym_or2] = ACTIONS(2682), + [anon_sym_not_DASHin2] = ACTIONS(2682), + [anon_sym_has2] = ACTIONS(2682), + [anon_sym_not_DASHhas2] = ACTIONS(2682), + [anon_sym_starts_DASHwith2] = ACTIONS(2682), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2682), + [anon_sym_ends_DASHwith2] = ACTIONS(2682), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2682), + [anon_sym_EQ_EQ2] = ACTIONS(2682), + [anon_sym_BANG_EQ2] = ACTIONS(2682), + [anon_sym_LT2] = ACTIONS(2684), + [anon_sym_LT_EQ2] = ACTIONS(2682), + [anon_sym_GT_EQ2] = ACTIONS(2682), + [anon_sym_EQ_TILDE2] = ACTIONS(2682), + [anon_sym_BANG_TILDE2] = ACTIONS(2682), + [anon_sym_like2] = ACTIONS(2682), + [anon_sym_not_DASHlike2] = ACTIONS(2682), + [anon_sym_STAR_STAR2] = ACTIONS(2682), + [anon_sym_PLUS_PLUS2] = ACTIONS(2682), + [anon_sym_SLASH2] = ACTIONS(2684), + [anon_sym_mod2] = ACTIONS(2682), + [anon_sym_SLASH_SLASH2] = ACTIONS(2682), + [anon_sym_PLUS2] = ACTIONS(2684), + [anon_sym_bit_DASHshl2] = ACTIONS(2682), + [anon_sym_bit_DASHshr2] = ACTIONS(2682), + [anon_sym_bit_DASHand2] = ACTIONS(2682), + [anon_sym_bit_DASHxor2] = ACTIONS(2682), + [anon_sym_bit_DASHor2] = ACTIONS(2682), + [anon_sym_err_GT] = ACTIONS(2684), + [anon_sym_out_GT] = ACTIONS(2684), + [anon_sym_e_GT] = ACTIONS(2684), + [anon_sym_o_GT] = ACTIONS(2684), + [anon_sym_err_PLUSout_GT] = ACTIONS(2684), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2684), + [anon_sym_o_PLUSe_GT] = ACTIONS(2684), + [anon_sym_e_PLUSo_GT] = ACTIONS(2684), + [anon_sym_err_GT_GT] = ACTIONS(2682), + [anon_sym_out_GT_GT] = ACTIONS(2682), + [anon_sym_e_GT_GT] = ACTIONS(2682), + [anon_sym_o_GT_GT] = ACTIONS(2682), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2682), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2682), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2682), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2682), + [anon_sym_POUND] = ACTIONS(3), + }, + [973] = { [sym_comment] = STATE(973), - [anon_sym_in] = ACTIONS(2700), - [sym__newline] = ACTIONS(2700), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_err_GT_PIPE] = ACTIONS(2700), - [anon_sym_out_GT_PIPE] = ACTIONS(2700), - [anon_sym_e_GT_PIPE] = ACTIONS(2700), - [anon_sym_o_GT_PIPE] = ACTIONS(2700), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2700), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2700), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2700), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2700), - [anon_sym_RPAREN] = ACTIONS(2700), - [anon_sym_GT2] = ACTIONS(2702), - [anon_sym_DASH2] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_EQ_GT] = ACTIONS(2700), - [anon_sym_STAR2] = ACTIONS(2702), - [anon_sym_and2] = ACTIONS(2700), - [anon_sym_xor2] = ACTIONS(2700), - [anon_sym_or2] = ACTIONS(2700), - [anon_sym_not_DASHin2] = ACTIONS(2700), - [anon_sym_has2] = ACTIONS(2700), - [anon_sym_not_DASHhas2] = ACTIONS(2700), - [anon_sym_starts_DASHwith2] = ACTIONS(2700), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2700), - [anon_sym_ends_DASHwith2] = ACTIONS(2700), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2700), - [anon_sym_EQ_EQ2] = ACTIONS(2700), - [anon_sym_BANG_EQ2] = ACTIONS(2700), - [anon_sym_LT2] = ACTIONS(2702), - [anon_sym_LT_EQ2] = ACTIONS(2700), - [anon_sym_GT_EQ2] = ACTIONS(2700), - [anon_sym_EQ_TILDE2] = ACTIONS(2700), - [anon_sym_BANG_TILDE2] = ACTIONS(2700), - [anon_sym_like2] = ACTIONS(2700), - [anon_sym_not_DASHlike2] = ACTIONS(2700), - [anon_sym_STAR_STAR2] = ACTIONS(2700), - [anon_sym_PLUS_PLUS2] = ACTIONS(2700), - [anon_sym_SLASH2] = ACTIONS(2702), - [anon_sym_mod2] = ACTIONS(2700), - [anon_sym_SLASH_SLASH2] = ACTIONS(2700), - [anon_sym_PLUS2] = ACTIONS(2702), - [anon_sym_bit_DASHshl2] = ACTIONS(2700), - [anon_sym_bit_DASHshr2] = ACTIONS(2700), - [anon_sym_bit_DASHand2] = ACTIONS(2700), - [anon_sym_bit_DASHxor2] = ACTIONS(2700), - [anon_sym_bit_DASHor2] = ACTIONS(2700), - [anon_sym_err_GT] = ACTIONS(2702), - [anon_sym_out_GT] = ACTIONS(2702), - [anon_sym_e_GT] = ACTIONS(2702), - [anon_sym_o_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT] = ACTIONS(2702), - [anon_sym_err_GT_GT] = ACTIONS(2700), - [anon_sym_out_GT_GT] = ACTIONS(2700), - [anon_sym_e_GT_GT] = ACTIONS(2700), - [anon_sym_o_GT_GT] = ACTIONS(2700), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2700), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2700), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2700), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(974)] = { + [anon_sym_in] = ACTIONS(2686), + [sym__newline] = ACTIONS(2686), + [anon_sym_SEMI] = ACTIONS(2686), + [anon_sym_PIPE] = ACTIONS(2686), + [anon_sym_err_GT_PIPE] = ACTIONS(2686), + [anon_sym_out_GT_PIPE] = ACTIONS(2686), + [anon_sym_e_GT_PIPE] = ACTIONS(2686), + [anon_sym_o_GT_PIPE] = ACTIONS(2686), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2686), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2686), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2686), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2686), + [anon_sym_RPAREN] = ACTIONS(2686), + [anon_sym_GT2] = ACTIONS(2688), + [anon_sym_DASH2] = ACTIONS(2686), + [anon_sym_LBRACE] = ACTIONS(2686), + [anon_sym_RBRACE] = ACTIONS(2686), + [anon_sym_EQ_GT] = ACTIONS(2686), + [anon_sym_STAR2] = ACTIONS(2688), + [anon_sym_and2] = ACTIONS(2686), + [anon_sym_xor2] = ACTIONS(2686), + [anon_sym_or2] = ACTIONS(2686), + [anon_sym_not_DASHin2] = ACTIONS(2686), + [anon_sym_has2] = ACTIONS(2686), + [anon_sym_not_DASHhas2] = ACTIONS(2686), + [anon_sym_starts_DASHwith2] = ACTIONS(2686), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2686), + [anon_sym_ends_DASHwith2] = ACTIONS(2686), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2686), + [anon_sym_EQ_EQ2] = ACTIONS(2686), + [anon_sym_BANG_EQ2] = ACTIONS(2686), + [anon_sym_LT2] = ACTIONS(2688), + [anon_sym_LT_EQ2] = ACTIONS(2686), + [anon_sym_GT_EQ2] = ACTIONS(2686), + [anon_sym_EQ_TILDE2] = ACTIONS(2686), + [anon_sym_BANG_TILDE2] = ACTIONS(2686), + [anon_sym_like2] = ACTIONS(2686), + [anon_sym_not_DASHlike2] = ACTIONS(2686), + [anon_sym_STAR_STAR2] = ACTIONS(2686), + [anon_sym_PLUS_PLUS2] = ACTIONS(2686), + [anon_sym_SLASH2] = ACTIONS(2688), + [anon_sym_mod2] = ACTIONS(2686), + [anon_sym_SLASH_SLASH2] = ACTIONS(2686), + [anon_sym_PLUS2] = ACTIONS(2688), + [anon_sym_bit_DASHshl2] = ACTIONS(2686), + [anon_sym_bit_DASHshr2] = ACTIONS(2686), + [anon_sym_bit_DASHand2] = ACTIONS(2686), + [anon_sym_bit_DASHxor2] = ACTIONS(2686), + [anon_sym_bit_DASHor2] = ACTIONS(2686), + [anon_sym_err_GT] = ACTIONS(2688), + [anon_sym_out_GT] = ACTIONS(2688), + [anon_sym_e_GT] = ACTIONS(2688), + [anon_sym_o_GT] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT] = ACTIONS(2688), + [anon_sym_err_GT_GT] = ACTIONS(2686), + [anon_sym_out_GT_GT] = ACTIONS(2686), + [anon_sym_e_GT_GT] = ACTIONS(2686), + [anon_sym_o_GT_GT] = ACTIONS(2686), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2686), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2686), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2686), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2686), + [anon_sym_POUND] = ACTIONS(3), + }, + [974] = { + [aux_sym__repeat_newline] = STATE(1078), + [sym__expression_parenthesized] = STATE(4555), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2200), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1905), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), [sym_comment] = STATE(974), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(975)] = { + [aux_sym_cmd_identifier_token2] = ACTIONS(2690), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_null] = ACTIONS(2694), + [aux_sym_cmd_identifier_token3] = ACTIONS(2696), + [aux_sym_cmd_identifier_token4] = ACTIONS(2696), + [aux_sym_cmd_identifier_token5] = ACTIONS(2696), + [sym__newline] = ACTIONS(2698), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1965), + [aux_sym__val_number_decimal_token3] = ACTIONS(2700), + [aux_sym__val_number_decimal_token4] = ACTIONS(2700), + [aux_sym__val_number_token1] = ACTIONS(2696), + [aux_sym__val_number_token2] = ACTIONS(2696), + [aux_sym__val_number_token3] = ACTIONS(2696), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(215), + }, + [975] = { [sym_comment] = STATE(975), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(976)] = { + [ts_builtin_sym_end] = ACTIONS(1874), + [anon_sym_in] = ACTIONS(1874), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_GT2] = ACTIONS(1876), + [anon_sym_DASH2] = ACTIONS(1874), + [anon_sym_STAR2] = ACTIONS(1876), + [anon_sym_and2] = ACTIONS(1874), + [anon_sym_xor2] = ACTIONS(1874), + [anon_sym_or2] = ACTIONS(1874), + [anon_sym_not_DASHin2] = ACTIONS(1874), + [anon_sym_has2] = ACTIONS(1874), + [anon_sym_not_DASHhas2] = ACTIONS(1874), + [anon_sym_starts_DASHwith2] = ACTIONS(1874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1874), + [anon_sym_ends_DASHwith2] = ACTIONS(1874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1874), + [anon_sym_EQ_EQ2] = ACTIONS(1874), + [anon_sym_BANG_EQ2] = ACTIONS(1874), + [anon_sym_LT2] = ACTIONS(1876), + [anon_sym_LT_EQ2] = ACTIONS(1874), + [anon_sym_GT_EQ2] = ACTIONS(1874), + [anon_sym_EQ_TILDE2] = ACTIONS(1874), + [anon_sym_BANG_TILDE2] = ACTIONS(1874), + [anon_sym_like2] = ACTIONS(1874), + [anon_sym_not_DASHlike2] = ACTIONS(1874), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_STAR_STAR2] = ACTIONS(1874), + [anon_sym_PLUS_PLUS2] = ACTIONS(1874), + [anon_sym_SLASH2] = ACTIONS(1876), + [anon_sym_mod2] = ACTIONS(1874), + [anon_sym_SLASH_SLASH2] = ACTIONS(1874), + [anon_sym_PLUS2] = ACTIONS(1876), + [anon_sym_bit_DASHshl2] = ACTIONS(1874), + [anon_sym_bit_DASHshr2] = ACTIONS(1874), + [anon_sym_bit_DASHand2] = ACTIONS(1874), + [anon_sym_bit_DASHxor2] = ACTIONS(1874), + [anon_sym_bit_DASHor2] = ACTIONS(1874), + [aux_sym__immediate_decimal_token5] = ACTIONS(2704), + [anon_sym_err_GT] = ACTIONS(1876), + [anon_sym_out_GT] = ACTIONS(1876), + [anon_sym_e_GT] = ACTIONS(1876), + [anon_sym_o_GT] = ACTIONS(1876), + [anon_sym_err_PLUSout_GT] = ACTIONS(1876), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1876), + [anon_sym_o_PLUSe_GT] = ACTIONS(1876), + [anon_sym_e_PLUSo_GT] = ACTIONS(1876), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [sym__unquoted_pattern] = ACTIONS(1876), + [anon_sym_POUND] = ACTIONS(3), + }, + [976] = { [sym_comment] = STATE(976), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(977)] = { + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_RBRACE] = ACTIONS(2706), + [anon_sym_EQ_GT] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_POUND] = ACTIONS(3), + }, + [977] = { [sym_comment] = STATE(977), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(978)] = { + [anon_sym_in] = ACTIONS(2125), + [sym__newline] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(2125), + [anon_sym_err_GT_PIPE] = ACTIONS(2125), + [anon_sym_out_GT_PIPE] = ACTIONS(2125), + [anon_sym_e_GT_PIPE] = ACTIONS(2125), + [anon_sym_o_GT_PIPE] = ACTIONS(2125), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2125), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2125), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2125), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2125), + [anon_sym_RPAREN] = ACTIONS(2125), + [anon_sym_GT2] = ACTIONS(2127), + [anon_sym_DASH2] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_STAR2] = ACTIONS(2127), + [anon_sym_and2] = ACTIONS(2125), + [anon_sym_xor2] = ACTIONS(2125), + [anon_sym_or2] = ACTIONS(2125), + [anon_sym_not_DASHin2] = ACTIONS(2125), + [anon_sym_has2] = ACTIONS(2125), + [anon_sym_not_DASHhas2] = ACTIONS(2125), + [anon_sym_starts_DASHwith2] = ACTIONS(2125), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2125), + [anon_sym_ends_DASHwith2] = ACTIONS(2125), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2125), + [anon_sym_EQ_EQ2] = ACTIONS(2125), + [anon_sym_BANG_EQ2] = ACTIONS(2125), + [anon_sym_LT2] = ACTIONS(2127), + [anon_sym_LT_EQ2] = ACTIONS(2125), + [anon_sym_GT_EQ2] = ACTIONS(2125), + [anon_sym_EQ_TILDE2] = ACTIONS(2125), + [anon_sym_BANG_TILDE2] = ACTIONS(2125), + [anon_sym_like2] = ACTIONS(2125), + [anon_sym_not_DASHlike2] = ACTIONS(2125), + [anon_sym_LPAREN2] = ACTIONS(2129), + [anon_sym_STAR_STAR2] = ACTIONS(2125), + [anon_sym_PLUS_PLUS2] = ACTIONS(2125), + [anon_sym_SLASH2] = ACTIONS(2127), + [anon_sym_mod2] = ACTIONS(2125), + [anon_sym_SLASH_SLASH2] = ACTIONS(2125), + [anon_sym_PLUS2] = ACTIONS(2127), + [anon_sym_bit_DASHshl2] = ACTIONS(2125), + [anon_sym_bit_DASHshr2] = ACTIONS(2125), + [anon_sym_bit_DASHand2] = ACTIONS(2125), + [anon_sym_bit_DASHxor2] = ACTIONS(2125), + [anon_sym_bit_DASHor2] = ACTIONS(2125), + [anon_sym_err_GT] = ACTIONS(2127), + [anon_sym_out_GT] = ACTIONS(2127), + [anon_sym_e_GT] = ACTIONS(2127), + [anon_sym_o_GT] = ACTIONS(2127), + [anon_sym_err_PLUSout_GT] = ACTIONS(2127), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2127), + [anon_sym_o_PLUSe_GT] = ACTIONS(2127), + [anon_sym_e_PLUSo_GT] = ACTIONS(2127), + [anon_sym_err_GT_GT] = ACTIONS(2125), + [anon_sym_out_GT_GT] = ACTIONS(2125), + [anon_sym_e_GT_GT] = ACTIONS(2125), + [anon_sym_o_GT_GT] = ACTIONS(2125), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2125), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2125), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2125), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2125), + [sym__unquoted_pattern] = ACTIONS(1636), + [anon_sym_POUND] = ACTIONS(3), + }, + [978] = { [sym_comment] = STATE(978), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(979)] = { + [ts_builtin_sym_end] = ACTIONS(1598), + [anon_sym_in] = ACTIONS(1598), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_GT2] = ACTIONS(1596), + [anon_sym_DASH2] = ACTIONS(1598), + [anon_sym_STAR2] = ACTIONS(1596), + [anon_sym_and2] = ACTIONS(1598), + [anon_sym_xor2] = ACTIONS(1598), + [anon_sym_or2] = ACTIONS(1598), + [anon_sym_not_DASHin2] = ACTIONS(1598), + [anon_sym_has2] = ACTIONS(1598), + [anon_sym_not_DASHhas2] = ACTIONS(1598), + [anon_sym_starts_DASHwith2] = ACTIONS(1598), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1598), + [anon_sym_ends_DASHwith2] = ACTIONS(1598), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1598), + [anon_sym_EQ_EQ2] = ACTIONS(1598), + [anon_sym_BANG_EQ2] = ACTIONS(1598), + [anon_sym_LT2] = ACTIONS(1596), + [anon_sym_LT_EQ2] = ACTIONS(1598), + [anon_sym_GT_EQ2] = ACTIONS(1598), + [anon_sym_EQ_TILDE2] = ACTIONS(1598), + [anon_sym_BANG_TILDE2] = ACTIONS(1598), + [anon_sym_like2] = ACTIONS(1598), + [anon_sym_not_DASHlike2] = ACTIONS(1598), + [anon_sym_STAR_STAR2] = ACTIONS(1598), + [anon_sym_PLUS_PLUS2] = ACTIONS(1598), + [anon_sym_SLASH2] = ACTIONS(1596), + [anon_sym_mod2] = ACTIONS(1598), + [anon_sym_SLASH_SLASH2] = ACTIONS(1598), + [anon_sym_PLUS2] = ACTIONS(1596), + [anon_sym_bit_DASHshl2] = ACTIONS(1598), + [anon_sym_bit_DASHshr2] = ACTIONS(1598), + [anon_sym_bit_DASHand2] = ACTIONS(1598), + [anon_sym_bit_DASHxor2] = ACTIONS(1598), + [anon_sym_bit_DASHor2] = ACTIONS(1598), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [anon_sym_err_GT] = ACTIONS(1596), + [anon_sym_out_GT] = ACTIONS(1596), + [anon_sym_e_GT] = ACTIONS(1596), + [anon_sym_o_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT] = ACTIONS(1596), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(3), + }, + [979] = { [sym_comment] = STATE(979), - [anon_sym_in] = ACTIONS(2146), - [sym__newline] = ACTIONS(2265), - [anon_sym_SEMI] = ACTIONS(2265), - [anon_sym_PIPE] = ACTIONS(2265), - [anon_sym_err_GT_PIPE] = ACTIONS(2265), - [anon_sym_out_GT_PIPE] = ACTIONS(2265), - [anon_sym_e_GT_PIPE] = ACTIONS(2265), - [anon_sym_o_GT_PIPE] = ACTIONS(2265), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2265), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2265), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2265), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2265), - [anon_sym_RPAREN] = ACTIONS(2265), - [anon_sym_GT2] = ACTIONS(2148), - [anon_sym_DASH2] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2265), - [anon_sym_RBRACE] = ACTIONS(2265), - [anon_sym_EQ_GT] = ACTIONS(2265), - [anon_sym_STAR2] = ACTIONS(2148), - [anon_sym_and2] = ACTIONS(2146), - [anon_sym_xor2] = ACTIONS(2146), - [anon_sym_or2] = ACTIONS(2146), - [anon_sym_not_DASHin2] = ACTIONS(2146), - [anon_sym_has2] = ACTIONS(2146), - [anon_sym_not_DASHhas2] = ACTIONS(2146), - [anon_sym_starts_DASHwith2] = ACTIONS(2146), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2146), - [anon_sym_ends_DASHwith2] = ACTIONS(2146), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2146), - [anon_sym_EQ_EQ2] = ACTIONS(2146), - [anon_sym_BANG_EQ2] = ACTIONS(2146), - [anon_sym_LT2] = ACTIONS(2148), - [anon_sym_LT_EQ2] = ACTIONS(2146), - [anon_sym_GT_EQ2] = ACTIONS(2146), - [anon_sym_EQ_TILDE2] = ACTIONS(2146), - [anon_sym_BANG_TILDE2] = ACTIONS(2146), - [anon_sym_like2] = ACTIONS(2146), - [anon_sym_not_DASHlike2] = ACTIONS(2146), - [anon_sym_STAR_STAR2] = ACTIONS(2146), - [anon_sym_PLUS_PLUS2] = ACTIONS(2146), - [anon_sym_SLASH2] = ACTIONS(2148), - [anon_sym_mod2] = ACTIONS(2146), - [anon_sym_SLASH_SLASH2] = ACTIONS(2146), - [anon_sym_PLUS2] = ACTIONS(2148), - [anon_sym_bit_DASHshl2] = ACTIONS(2146), - [anon_sym_bit_DASHshr2] = ACTIONS(2146), - [anon_sym_bit_DASHand2] = ACTIONS(2146), - [anon_sym_bit_DASHxor2] = ACTIONS(2146), - [anon_sym_bit_DASHor2] = ACTIONS(2146), - [anon_sym_err_GT] = ACTIONS(2267), - [anon_sym_out_GT] = ACTIONS(2267), - [anon_sym_e_GT] = ACTIONS(2267), - [anon_sym_o_GT] = ACTIONS(2267), - [anon_sym_err_PLUSout_GT] = ACTIONS(2267), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2267), - [anon_sym_o_PLUSe_GT] = ACTIONS(2267), - [anon_sym_e_PLUSo_GT] = ACTIONS(2267), - [anon_sym_err_GT_GT] = ACTIONS(2265), - [anon_sym_out_GT_GT] = ACTIONS(2265), - [anon_sym_e_GT_GT] = ACTIONS(2265), - [anon_sym_o_GT_GT] = ACTIONS(2265), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2265), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2265), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2265), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2265), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(980)] = { + [ts_builtin_sym_end] = ACTIONS(2235), + [anon_sym_in] = ACTIONS(2233), + [sym__newline] = ACTIONS(2235), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_PIPE] = ACTIONS(2235), + [anon_sym_err_GT_PIPE] = ACTIONS(2235), + [anon_sym_out_GT_PIPE] = ACTIONS(2235), + [anon_sym_e_GT_PIPE] = ACTIONS(2235), + [anon_sym_o_GT_PIPE] = ACTIONS(2235), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2235), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2235), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2235), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2235), + [anon_sym_GT2] = ACTIONS(2237), + [anon_sym_DASH2] = ACTIONS(2233), + [anon_sym_STAR2] = ACTIONS(2237), + [anon_sym_and2] = ACTIONS(2233), + [anon_sym_xor2] = ACTIONS(2233), + [anon_sym_or2] = ACTIONS(2233), + [anon_sym_not_DASHin2] = ACTIONS(2233), + [anon_sym_has2] = ACTIONS(2233), + [anon_sym_not_DASHhas2] = ACTIONS(2233), + [anon_sym_starts_DASHwith2] = ACTIONS(2233), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2233), + [anon_sym_ends_DASHwith2] = ACTIONS(2233), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2233), + [anon_sym_EQ_EQ2] = ACTIONS(2233), + [anon_sym_BANG_EQ2] = ACTIONS(2233), + [anon_sym_LT2] = ACTIONS(2237), + [anon_sym_LT_EQ2] = ACTIONS(2233), + [anon_sym_GT_EQ2] = ACTIONS(2233), + [anon_sym_EQ_TILDE2] = ACTIONS(2233), + [anon_sym_BANG_TILDE2] = ACTIONS(2233), + [anon_sym_like2] = ACTIONS(2233), + [anon_sym_not_DASHlike2] = ACTIONS(2233), + [anon_sym_STAR_STAR2] = ACTIONS(2233), + [anon_sym_PLUS_PLUS2] = ACTIONS(2233), + [anon_sym_SLASH2] = ACTIONS(2237), + [anon_sym_mod2] = ACTIONS(2233), + [anon_sym_SLASH_SLASH2] = ACTIONS(2233), + [anon_sym_PLUS2] = ACTIONS(2237), + [anon_sym_bit_DASHshl2] = ACTIONS(2233), + [anon_sym_bit_DASHshr2] = ACTIONS(2233), + [anon_sym_bit_DASHand2] = ACTIONS(2233), + [anon_sym_bit_DASHxor2] = ACTIONS(2233), + [anon_sym_bit_DASHor2] = ACTIONS(2233), + [anon_sym_DOT_DOT2] = ACTIONS(1826), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), + [anon_sym_err_GT] = ACTIONS(2239), + [anon_sym_out_GT] = ACTIONS(2239), + [anon_sym_e_GT] = ACTIONS(2239), + [anon_sym_o_GT] = ACTIONS(2239), + [anon_sym_err_PLUSout_GT] = ACTIONS(2239), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2239), + [anon_sym_o_PLUSe_GT] = ACTIONS(2239), + [anon_sym_e_PLUSo_GT] = ACTIONS(2239), + [anon_sym_err_GT_GT] = ACTIONS(2235), + [anon_sym_out_GT_GT] = ACTIONS(2235), + [anon_sym_e_GT_GT] = ACTIONS(2235), + [anon_sym_o_GT_GT] = ACTIONS(2235), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2235), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2235), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2235), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2235), + [anon_sym_POUND] = ACTIONS(3), + }, + [980] = { [sym_comment] = STATE(980), - [anon_sym_in] = ACTIONS(2704), - [sym__newline] = ACTIONS(2704), - [anon_sym_SEMI] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_err_GT_PIPE] = ACTIONS(2704), - [anon_sym_out_GT_PIPE] = ACTIONS(2704), - [anon_sym_e_GT_PIPE] = ACTIONS(2704), - [anon_sym_o_GT_PIPE] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2704), - [anon_sym_RPAREN] = ACTIONS(2704), - [anon_sym_GT2] = ACTIONS(2706), - [anon_sym_DASH2] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_EQ_GT] = ACTIONS(2704), - [anon_sym_STAR2] = ACTIONS(2706), - [anon_sym_and2] = ACTIONS(2704), - [anon_sym_xor2] = ACTIONS(2704), - [anon_sym_or2] = ACTIONS(2704), - [anon_sym_not_DASHin2] = ACTIONS(2704), - [anon_sym_has2] = ACTIONS(2704), - [anon_sym_not_DASHhas2] = ACTIONS(2704), - [anon_sym_starts_DASHwith2] = ACTIONS(2704), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2704), - [anon_sym_ends_DASHwith2] = ACTIONS(2704), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2704), - [anon_sym_EQ_EQ2] = ACTIONS(2704), - [anon_sym_BANG_EQ2] = ACTIONS(2704), - [anon_sym_LT2] = ACTIONS(2706), - [anon_sym_LT_EQ2] = ACTIONS(2704), - [anon_sym_GT_EQ2] = ACTIONS(2704), - [anon_sym_EQ_TILDE2] = ACTIONS(2704), - [anon_sym_BANG_TILDE2] = ACTIONS(2704), - [anon_sym_like2] = ACTIONS(2704), - [anon_sym_not_DASHlike2] = ACTIONS(2704), - [anon_sym_STAR_STAR2] = ACTIONS(2704), - [anon_sym_PLUS_PLUS2] = ACTIONS(2704), - [anon_sym_SLASH2] = ACTIONS(2706), - [anon_sym_mod2] = ACTIONS(2704), - [anon_sym_SLASH_SLASH2] = ACTIONS(2704), - [anon_sym_PLUS2] = ACTIONS(2706), - [anon_sym_bit_DASHshl2] = ACTIONS(2704), - [anon_sym_bit_DASHshr2] = ACTIONS(2704), - [anon_sym_bit_DASHand2] = ACTIONS(2704), - [anon_sym_bit_DASHxor2] = ACTIONS(2704), - [anon_sym_bit_DASHor2] = ACTIONS(2704), - [anon_sym_err_GT] = ACTIONS(2706), - [anon_sym_out_GT] = ACTIONS(2706), - [anon_sym_e_GT] = ACTIONS(2706), - [anon_sym_o_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT] = ACTIONS(2706), - [anon_sym_err_GT_GT] = ACTIONS(2704), - [anon_sym_out_GT_GT] = ACTIONS(2704), - [anon_sym_e_GT_GT] = ACTIONS(2704), - [anon_sym_o_GT_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2704), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(981)] = { + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_RBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_LPAREN2] = ACTIONS(2710), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [sym__unquoted_pattern] = ACTIONS(1697), + [anon_sym_POUND] = ACTIONS(3), + }, + [981] = { [sym_comment] = STATE(981), - [ts_builtin_sym_end] = ACTIONS(1669), - [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_GT2] = ACTIONS(1671), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1671), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_has2] = ACTIONS(1669), - [anon_sym_not_DASHhas2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1671), - [anon_sym_LT_EQ2] = ACTIONS(1669), - [anon_sym_GT_EQ2] = ACTIONS(1669), - [anon_sym_EQ_TILDE2] = ACTIONS(1669), - [anon_sym_BANG_TILDE2] = ACTIONS(1669), - [anon_sym_like2] = ACTIONS(1669), - [anon_sym_not_DASHlike2] = ACTIONS(1669), - [anon_sym_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1671), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1671), - [anon_sym_bit_DASHshl2] = ACTIONS(1669), - [anon_sym_bit_DASHshr2] = ACTIONS(1669), - [anon_sym_bit_DASHand2] = ACTIONS(1669), - [anon_sym_bit_DASHxor2] = ACTIONS(1669), - [anon_sym_bit_DASHor2] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1671), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1671), - [anon_sym_out_GT] = ACTIONS(1671), - [anon_sym_e_GT] = ACTIONS(1671), - [anon_sym_o_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT] = ACTIONS(1671), - [anon_sym_err_GT_GT] = ACTIONS(1669), - [anon_sym_out_GT_GT] = ACTIONS(1669), - [anon_sym_e_GT_GT] = ACTIONS(1669), - [anon_sym_o_GT_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(982)] = { + [anon_sym_in] = ACTIONS(2712), + [sym__newline] = ACTIONS(2712), + [anon_sym_SEMI] = ACTIONS(2712), + [anon_sym_PIPE] = ACTIONS(2712), + [anon_sym_err_GT_PIPE] = ACTIONS(2712), + [anon_sym_out_GT_PIPE] = ACTIONS(2712), + [anon_sym_e_GT_PIPE] = ACTIONS(2712), + [anon_sym_o_GT_PIPE] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), + [anon_sym_RPAREN] = ACTIONS(2712), + [anon_sym_GT2] = ACTIONS(2714), + [anon_sym_DASH2] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2712), + [anon_sym_RBRACE] = ACTIONS(2712), + [anon_sym_EQ_GT] = ACTIONS(2712), + [anon_sym_STAR2] = ACTIONS(2714), + [anon_sym_and2] = ACTIONS(2712), + [anon_sym_xor2] = ACTIONS(2712), + [anon_sym_or2] = ACTIONS(2712), + [anon_sym_not_DASHin2] = ACTIONS(2712), + [anon_sym_has2] = ACTIONS(2712), + [anon_sym_not_DASHhas2] = ACTIONS(2712), + [anon_sym_starts_DASHwith2] = ACTIONS(2712), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), + [anon_sym_ends_DASHwith2] = ACTIONS(2712), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), + [anon_sym_EQ_EQ2] = ACTIONS(2712), + [anon_sym_BANG_EQ2] = ACTIONS(2712), + [anon_sym_LT2] = ACTIONS(2714), + [anon_sym_LT_EQ2] = ACTIONS(2712), + [anon_sym_GT_EQ2] = ACTIONS(2712), + [anon_sym_EQ_TILDE2] = ACTIONS(2712), + [anon_sym_BANG_TILDE2] = ACTIONS(2712), + [anon_sym_like2] = ACTIONS(2712), + [anon_sym_not_DASHlike2] = ACTIONS(2712), + [anon_sym_STAR_STAR2] = ACTIONS(2712), + [anon_sym_PLUS_PLUS2] = ACTIONS(2712), + [anon_sym_SLASH2] = ACTIONS(2714), + [anon_sym_mod2] = ACTIONS(2712), + [anon_sym_SLASH_SLASH2] = ACTIONS(2712), + [anon_sym_PLUS2] = ACTIONS(2714), + [anon_sym_bit_DASHshl2] = ACTIONS(2712), + [anon_sym_bit_DASHshr2] = ACTIONS(2712), + [anon_sym_bit_DASHand2] = ACTIONS(2712), + [anon_sym_bit_DASHxor2] = ACTIONS(2712), + [anon_sym_bit_DASHor2] = ACTIONS(2712), + [anon_sym_err_GT] = ACTIONS(2714), + [anon_sym_out_GT] = ACTIONS(2714), + [anon_sym_e_GT] = ACTIONS(2714), + [anon_sym_o_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT] = ACTIONS(2714), + [anon_sym_err_GT_GT] = ACTIONS(2712), + [anon_sym_out_GT_GT] = ACTIONS(2712), + [anon_sym_e_GT_GT] = ACTIONS(2712), + [anon_sym_o_GT_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_POUND] = ACTIONS(3), + }, + [982] = { [sym_comment] = STATE(982), - [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_LPAREN2] = 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), - [aux_sym__immediate_decimal_token5] = ACTIONS(2708), - [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), - [sym__unquoted_pattern] = ACTIONS(1868), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(983)] = { + [ts_builtin_sym_end] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1736), + [sym__newline] = ACTIONS(1736), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_PIPE] = ACTIONS(1736), + [anon_sym_err_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_GT_PIPE] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), + [anon_sym_GT2] = ACTIONS(1610), + [anon_sym_DASH2] = ACTIONS(1736), + [anon_sym_STAR2] = ACTIONS(1610), + [anon_sym_and2] = ACTIONS(1736), + [anon_sym_xor2] = ACTIONS(1736), + [anon_sym_or2] = ACTIONS(1736), + [anon_sym_not_DASHin2] = ACTIONS(1736), + [anon_sym_has2] = ACTIONS(1736), + [anon_sym_not_DASHhas2] = ACTIONS(1736), + [anon_sym_starts_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), + [anon_sym_ends_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), + [anon_sym_EQ_EQ2] = ACTIONS(1736), + [anon_sym_BANG_EQ2] = ACTIONS(1736), + [anon_sym_LT2] = ACTIONS(1610), + [anon_sym_LT_EQ2] = ACTIONS(1736), + [anon_sym_GT_EQ2] = ACTIONS(1736), + [anon_sym_EQ_TILDE2] = ACTIONS(1736), + [anon_sym_BANG_TILDE2] = ACTIONS(1736), + [anon_sym_like2] = ACTIONS(1736), + [anon_sym_not_DASHlike2] = ACTIONS(1736), + [anon_sym_STAR_STAR2] = ACTIONS(1736), + [anon_sym_PLUS_PLUS2] = ACTIONS(1736), + [anon_sym_SLASH2] = ACTIONS(1610), + [anon_sym_mod2] = ACTIONS(1736), + [anon_sym_SLASH_SLASH2] = ACTIONS(1736), + [anon_sym_PLUS2] = ACTIONS(1610), + [anon_sym_bit_DASHshl2] = ACTIONS(1736), + [anon_sym_bit_DASHshr2] = ACTIONS(1736), + [anon_sym_bit_DASHand2] = ACTIONS(1736), + [anon_sym_bit_DASHxor2] = ACTIONS(1736), + [anon_sym_bit_DASHor2] = ACTIONS(1736), + [anon_sym_DOT_DOT2] = ACTIONS(1826), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), + [anon_sym_err_GT] = ACTIONS(1610), + [anon_sym_out_GT] = ACTIONS(1610), + [anon_sym_e_GT] = ACTIONS(1610), + [anon_sym_o_GT] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT] = ACTIONS(1610), + [anon_sym_err_GT_GT] = ACTIONS(1736), + [anon_sym_out_GT_GT] = ACTIONS(1736), + [anon_sym_e_GT_GT] = ACTIONS(1736), + [anon_sym_o_GT_GT] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), + [anon_sym_POUND] = ACTIONS(3), + }, + [983] = { [sym_comment] = STATE(983), - [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_RBRACE] = ACTIONS(2696), - [anon_sym_EQ_GT] = 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(984)] = { + [ts_builtin_sym_end] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1810), + [sym__newline] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_err_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_GT_PIPE] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), + [anon_sym_GT2] = ACTIONS(1812), + [anon_sym_DASH2] = ACTIONS(1810), + [anon_sym_STAR2] = ACTIONS(1812), + [anon_sym_and2] = ACTIONS(1810), + [anon_sym_xor2] = ACTIONS(1810), + [anon_sym_or2] = ACTIONS(1810), + [anon_sym_not_DASHin2] = ACTIONS(1810), + [anon_sym_has2] = ACTIONS(1810), + [anon_sym_not_DASHhas2] = ACTIONS(1810), + [anon_sym_starts_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1810), + [anon_sym_ends_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1810), + [anon_sym_EQ_EQ2] = ACTIONS(1810), + [anon_sym_BANG_EQ2] = ACTIONS(1810), + [anon_sym_LT2] = ACTIONS(1812), + [anon_sym_LT_EQ2] = ACTIONS(1810), + [anon_sym_GT_EQ2] = ACTIONS(1810), + [anon_sym_EQ_TILDE2] = ACTIONS(1810), + [anon_sym_BANG_TILDE2] = ACTIONS(1810), + [anon_sym_like2] = ACTIONS(1810), + [anon_sym_not_DASHlike2] = ACTIONS(1810), + [anon_sym_LPAREN2] = ACTIONS(1810), + [anon_sym_STAR_STAR2] = ACTIONS(1810), + [anon_sym_PLUS_PLUS2] = ACTIONS(1810), + [anon_sym_SLASH2] = ACTIONS(1812), + [anon_sym_mod2] = ACTIONS(1810), + [anon_sym_SLASH_SLASH2] = ACTIONS(1810), + [anon_sym_PLUS2] = ACTIONS(1812), + [anon_sym_bit_DASHshl2] = ACTIONS(1810), + [anon_sym_bit_DASHshr2] = ACTIONS(1810), + [anon_sym_bit_DASHand2] = ACTIONS(1810), + [anon_sym_bit_DASHxor2] = ACTIONS(1810), + [anon_sym_bit_DASHor2] = ACTIONS(1810), + [aux_sym__immediate_decimal_token5] = ACTIONS(2547), + [anon_sym_err_GT] = ACTIONS(1812), + [anon_sym_out_GT] = ACTIONS(1812), + [anon_sym_e_GT] = ACTIONS(1812), + [anon_sym_o_GT] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT] = ACTIONS(1812), + [anon_sym_err_GT_GT] = ACTIONS(1810), + [anon_sym_out_GT_GT] = ACTIONS(1810), + [anon_sym_e_GT_GT] = ACTIONS(1810), + [anon_sym_o_GT_GT] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), + [sym__unquoted_pattern] = ACTIONS(1812), + [anon_sym_POUND] = ACTIONS(3), + }, + [984] = { [sym_comment] = STATE(984), - [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_RBRACE] = ACTIONS(2710), - [anon_sym_EQ_GT] = 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), - }, - [STATE(985)] = { + [anon_sym_in] = ACTIONS(1904), + [sym__newline] = ACTIONS(1904), + [anon_sym_SEMI] = ACTIONS(1904), + [anon_sym_PIPE] = ACTIONS(1904), + [anon_sym_err_GT_PIPE] = ACTIONS(1904), + [anon_sym_out_GT_PIPE] = ACTIONS(1904), + [anon_sym_e_GT_PIPE] = ACTIONS(1904), + [anon_sym_o_GT_PIPE] = ACTIONS(1904), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1904), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1904), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1904), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1904), + [anon_sym_RPAREN] = ACTIONS(1904), + [anon_sym_GT2] = ACTIONS(1906), + [anon_sym_DASH2] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(1904), + [anon_sym_EQ_GT] = ACTIONS(1904), + [anon_sym_STAR2] = ACTIONS(1906), + [anon_sym_and2] = ACTIONS(1904), + [anon_sym_xor2] = ACTIONS(1904), + [anon_sym_or2] = ACTIONS(1904), + [anon_sym_not_DASHin2] = ACTIONS(1904), + [anon_sym_has2] = ACTIONS(1904), + [anon_sym_not_DASHhas2] = ACTIONS(1904), + [anon_sym_starts_DASHwith2] = ACTIONS(1904), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1904), + [anon_sym_ends_DASHwith2] = ACTIONS(1904), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1904), + [anon_sym_EQ_EQ2] = ACTIONS(1904), + [anon_sym_BANG_EQ2] = ACTIONS(1904), + [anon_sym_LT2] = ACTIONS(1906), + [anon_sym_LT_EQ2] = ACTIONS(1904), + [anon_sym_GT_EQ2] = ACTIONS(1904), + [anon_sym_EQ_TILDE2] = ACTIONS(1904), + [anon_sym_BANG_TILDE2] = ACTIONS(1904), + [anon_sym_like2] = ACTIONS(1904), + [anon_sym_not_DASHlike2] = ACTIONS(1904), + [anon_sym_STAR_STAR2] = ACTIONS(1904), + [anon_sym_PLUS_PLUS2] = ACTIONS(1904), + [anon_sym_SLASH2] = ACTIONS(1906), + [anon_sym_mod2] = ACTIONS(1904), + [anon_sym_SLASH_SLASH2] = ACTIONS(1904), + [anon_sym_PLUS2] = ACTIONS(1906), + [anon_sym_bit_DASHshl2] = ACTIONS(1904), + [anon_sym_bit_DASHshr2] = ACTIONS(1904), + [anon_sym_bit_DASHand2] = ACTIONS(1904), + [anon_sym_bit_DASHxor2] = ACTIONS(1904), + [anon_sym_bit_DASHor2] = ACTIONS(1904), + [anon_sym_err_GT] = ACTIONS(1906), + [anon_sym_out_GT] = ACTIONS(1906), + [anon_sym_e_GT] = ACTIONS(1906), + [anon_sym_o_GT] = ACTIONS(1906), + [anon_sym_err_PLUSout_GT] = ACTIONS(1906), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1906), + [anon_sym_o_PLUSe_GT] = ACTIONS(1906), + [anon_sym_e_PLUSo_GT] = ACTIONS(1906), + [anon_sym_err_GT_GT] = ACTIONS(1904), + [anon_sym_out_GT_GT] = ACTIONS(1904), + [anon_sym_e_GT_GT] = ACTIONS(1904), + [anon_sym_o_GT_GT] = ACTIONS(1904), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1904), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1904), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1904), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1904), + [anon_sym_POUND] = ACTIONS(3), + }, + [985] = { [sym_comment] = STATE(985), - [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_RBRACE] = ACTIONS(2714), - [anon_sym_EQ_GT] = 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(986)] = { + [anon_sym_in] = ACTIONS(2712), + [sym__newline] = ACTIONS(2712), + [anon_sym_SEMI] = ACTIONS(2712), + [anon_sym_PIPE] = ACTIONS(2712), + [anon_sym_err_GT_PIPE] = ACTIONS(2712), + [anon_sym_out_GT_PIPE] = ACTIONS(2712), + [anon_sym_e_GT_PIPE] = ACTIONS(2712), + [anon_sym_o_GT_PIPE] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), + [anon_sym_RPAREN] = ACTIONS(2712), + [anon_sym_GT2] = ACTIONS(2714), + [anon_sym_DASH2] = ACTIONS(2712), + [anon_sym_RBRACE] = ACTIONS(2712), + [anon_sym_STAR2] = ACTIONS(2714), + [anon_sym_and2] = ACTIONS(2712), + [anon_sym_xor2] = ACTIONS(2712), + [anon_sym_or2] = ACTIONS(2712), + [anon_sym_not_DASHin2] = ACTIONS(2712), + [anon_sym_has2] = ACTIONS(2712), + [anon_sym_not_DASHhas2] = ACTIONS(2712), + [anon_sym_starts_DASHwith2] = ACTIONS(2712), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), + [anon_sym_ends_DASHwith2] = ACTIONS(2712), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), + [anon_sym_EQ_EQ2] = ACTIONS(2712), + [anon_sym_BANG_EQ2] = ACTIONS(2712), + [anon_sym_LT2] = ACTIONS(2714), + [anon_sym_LT_EQ2] = ACTIONS(2712), + [anon_sym_GT_EQ2] = ACTIONS(2712), + [anon_sym_EQ_TILDE2] = ACTIONS(2712), + [anon_sym_BANG_TILDE2] = ACTIONS(2712), + [anon_sym_like2] = ACTIONS(2712), + [anon_sym_not_DASHlike2] = ACTIONS(2712), + [anon_sym_LPAREN2] = ACTIONS(2716), + [anon_sym_STAR_STAR2] = ACTIONS(2712), + [anon_sym_PLUS_PLUS2] = ACTIONS(2712), + [anon_sym_SLASH2] = ACTIONS(2714), + [anon_sym_mod2] = ACTIONS(2712), + [anon_sym_SLASH_SLASH2] = ACTIONS(2712), + [anon_sym_PLUS2] = ACTIONS(2714), + [anon_sym_bit_DASHshl2] = ACTIONS(2712), + [anon_sym_bit_DASHshr2] = ACTIONS(2712), + [anon_sym_bit_DASHand2] = ACTIONS(2712), + [anon_sym_bit_DASHxor2] = ACTIONS(2712), + [anon_sym_bit_DASHor2] = ACTIONS(2712), + [anon_sym_err_GT] = ACTIONS(2714), + [anon_sym_out_GT] = ACTIONS(2714), + [anon_sym_e_GT] = ACTIONS(2714), + [anon_sym_o_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT] = ACTIONS(2714), + [anon_sym_err_GT_GT] = ACTIONS(2712), + [anon_sym_out_GT_GT] = ACTIONS(2712), + [anon_sym_e_GT_GT] = ACTIONS(2712), + [anon_sym_o_GT_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [sym__unquoted_pattern] = ACTIONS(2718), + [anon_sym_POUND] = ACTIONS(3), + }, + [986] = { [sym_comment] = STATE(986), - [anon_sym_in] = ACTIONS(2114), - [sym__newline] = ACTIONS(2114), - [anon_sym_SEMI] = ACTIONS(2114), - [anon_sym_PIPE] = ACTIONS(2114), - [anon_sym_err_GT_PIPE] = ACTIONS(2114), - [anon_sym_out_GT_PIPE] = ACTIONS(2114), - [anon_sym_e_GT_PIPE] = ACTIONS(2114), - [anon_sym_o_GT_PIPE] = ACTIONS(2114), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2114), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2114), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2114), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2114), - [anon_sym_RPAREN] = ACTIONS(2114), - [anon_sym_GT2] = ACTIONS(2116), - [anon_sym_DASH2] = ACTIONS(2114), - [anon_sym_LBRACE] = ACTIONS(2114), - [anon_sym_RBRACE] = ACTIONS(2114), - [anon_sym_EQ_GT] = ACTIONS(2114), - [anon_sym_STAR2] = ACTIONS(2116), - [anon_sym_and2] = ACTIONS(2114), - [anon_sym_xor2] = ACTIONS(2114), - [anon_sym_or2] = ACTIONS(2114), - [anon_sym_not_DASHin2] = ACTIONS(2114), - [anon_sym_has2] = ACTIONS(2114), - [anon_sym_not_DASHhas2] = ACTIONS(2114), - [anon_sym_starts_DASHwith2] = ACTIONS(2114), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2114), - [anon_sym_ends_DASHwith2] = ACTIONS(2114), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2114), - [anon_sym_EQ_EQ2] = ACTIONS(2114), - [anon_sym_BANG_EQ2] = ACTIONS(2114), - [anon_sym_LT2] = ACTIONS(2116), - [anon_sym_LT_EQ2] = ACTIONS(2114), - [anon_sym_GT_EQ2] = ACTIONS(2114), - [anon_sym_EQ_TILDE2] = ACTIONS(2114), - [anon_sym_BANG_TILDE2] = ACTIONS(2114), - [anon_sym_like2] = ACTIONS(2114), - [anon_sym_not_DASHlike2] = ACTIONS(2114), - [anon_sym_STAR_STAR2] = ACTIONS(2114), - [anon_sym_PLUS_PLUS2] = ACTIONS(2114), - [anon_sym_SLASH2] = ACTIONS(2116), - [anon_sym_mod2] = ACTIONS(2114), - [anon_sym_SLASH_SLASH2] = ACTIONS(2114), - [anon_sym_PLUS2] = ACTIONS(2116), - [anon_sym_bit_DASHshl2] = ACTIONS(2114), - [anon_sym_bit_DASHshr2] = ACTIONS(2114), - [anon_sym_bit_DASHand2] = ACTIONS(2114), - [anon_sym_bit_DASHxor2] = ACTIONS(2114), - [anon_sym_bit_DASHor2] = ACTIONS(2114), - [anon_sym_err_GT] = ACTIONS(2116), - [anon_sym_out_GT] = ACTIONS(2116), - [anon_sym_e_GT] = ACTIONS(2116), - [anon_sym_o_GT] = ACTIONS(2116), - [anon_sym_err_PLUSout_GT] = ACTIONS(2116), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2116), - [anon_sym_o_PLUSe_GT] = ACTIONS(2116), - [anon_sym_e_PLUSo_GT] = ACTIONS(2116), - [anon_sym_err_GT_GT] = ACTIONS(2114), - [anon_sym_out_GT_GT] = ACTIONS(2114), - [anon_sym_e_GT_GT] = ACTIONS(2114), - [anon_sym_o_GT_GT] = ACTIONS(2114), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2114), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2114), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2114), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2114), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(987)] = { + [anon_sym_in] = ACTIONS(1894), + [sym__newline] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_err_GT_PIPE] = ACTIONS(1894), + [anon_sym_out_GT_PIPE] = ACTIONS(1894), + [anon_sym_e_GT_PIPE] = ACTIONS(1894), + [anon_sym_o_GT_PIPE] = ACTIONS(1894), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1894), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1894), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1894), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1894), + [anon_sym_RPAREN] = ACTIONS(1894), + [anon_sym_GT2] = ACTIONS(1896), + [anon_sym_DASH2] = ACTIONS(1894), + [anon_sym_LBRACE] = ACTIONS(1894), + [anon_sym_RBRACE] = ACTIONS(1894), + [anon_sym_EQ_GT] = ACTIONS(1894), + [anon_sym_STAR2] = ACTIONS(1896), + [anon_sym_and2] = ACTIONS(1894), + [anon_sym_xor2] = ACTIONS(1894), + [anon_sym_or2] = ACTIONS(1894), + [anon_sym_not_DASHin2] = ACTIONS(1894), + [anon_sym_has2] = ACTIONS(1894), + [anon_sym_not_DASHhas2] = ACTIONS(1894), + [anon_sym_starts_DASHwith2] = ACTIONS(1894), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1894), + [anon_sym_ends_DASHwith2] = ACTIONS(1894), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1894), + [anon_sym_EQ_EQ2] = ACTIONS(1894), + [anon_sym_BANG_EQ2] = ACTIONS(1894), + [anon_sym_LT2] = ACTIONS(1896), + [anon_sym_LT_EQ2] = ACTIONS(1894), + [anon_sym_GT_EQ2] = ACTIONS(1894), + [anon_sym_EQ_TILDE2] = ACTIONS(1894), + [anon_sym_BANG_TILDE2] = ACTIONS(1894), + [anon_sym_like2] = ACTIONS(1894), + [anon_sym_not_DASHlike2] = ACTIONS(1894), + [anon_sym_STAR_STAR2] = ACTIONS(1894), + [anon_sym_PLUS_PLUS2] = ACTIONS(1894), + [anon_sym_SLASH2] = ACTIONS(1896), + [anon_sym_mod2] = ACTIONS(1894), + [anon_sym_SLASH_SLASH2] = ACTIONS(1894), + [anon_sym_PLUS2] = ACTIONS(1896), + [anon_sym_bit_DASHshl2] = ACTIONS(1894), + [anon_sym_bit_DASHshr2] = ACTIONS(1894), + [anon_sym_bit_DASHand2] = ACTIONS(1894), + [anon_sym_bit_DASHxor2] = ACTIONS(1894), + [anon_sym_bit_DASHor2] = ACTIONS(1894), + [anon_sym_err_GT] = ACTIONS(1896), + [anon_sym_out_GT] = ACTIONS(1896), + [anon_sym_e_GT] = ACTIONS(1896), + [anon_sym_o_GT] = ACTIONS(1896), + [anon_sym_err_PLUSout_GT] = ACTIONS(1896), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1896), + [anon_sym_o_PLUSe_GT] = ACTIONS(1896), + [anon_sym_e_PLUSo_GT] = ACTIONS(1896), + [anon_sym_err_GT_GT] = ACTIONS(1894), + [anon_sym_out_GT_GT] = ACTIONS(1894), + [anon_sym_e_GT_GT] = ACTIONS(1894), + [anon_sym_o_GT_GT] = ACTIONS(1894), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1894), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1894), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1894), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1894), + [anon_sym_POUND] = ACTIONS(3), + }, + [987] = { + [aux_sym__repeat_newline] = STATE(996), + [sym__expression_parenthesized] = STATE(4408), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2200), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1905), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), [sym_comment] = STATE(987), - [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_RBRACE] = 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_LPAREN2] = ACTIONS(2718), - [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), - [sym__unquoted_pattern] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(988)] = { - [aux_sym__repeat_newline] = STATE(1078), - [sym__expression_parenthesized] = STATE(4658), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2204), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1878), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_comment] = STATE(988), - [aux_sym_cmd_identifier_token2] = ACTIONS(2634), - [anon_sym_true] = ACTIONS(2636), - [anon_sym_false] = ACTIONS(2636), - [anon_sym_null] = ACTIONS(2638), - [aux_sym_cmd_identifier_token3] = ACTIONS(2640), - [aux_sym_cmd_identifier_token4] = ACTIONS(2640), - [aux_sym_cmd_identifier_token5] = ACTIONS(2640), - [sym__newline] = ACTIONS(2642), + [aux_sym_cmd_identifier_token2] = ACTIONS(2690), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_null] = ACTIONS(2694), + [aux_sym_cmd_identifier_token3] = ACTIONS(2696), + [aux_sym_cmd_identifier_token4] = ACTIONS(2696), + [aux_sym_cmd_identifier_token5] = ACTIONS(2696), + [sym__newline] = ACTIONS(2698), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1981), - [aux_sym__val_number_decimal_token3] = ACTIONS(2644), - [aux_sym__val_number_decimal_token4] = ACTIONS(2644), - [aux_sym__val_number_token1] = ACTIONS(2640), - [aux_sym__val_number_token2] = ACTIONS(2640), - [aux_sym__val_number_token3] = ACTIONS(2640), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1965), + [aux_sym__val_number_decimal_token3] = ACTIONS(2700), + [aux_sym__val_number_decimal_token4] = ACTIONS(2700), + [aux_sym__val_number_token1] = ACTIONS(2696), + [aux_sym__val_number_token2] = ACTIONS(2696), + [aux_sym__val_number_token3] = ACTIONS(2696), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2646), + [sym_val_date] = ACTIONS(2702), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), @@ -122909,282 +122788,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(105), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(989)] = { + [988] = { + [sym_comment] = STATE(988), + [anon_sym_in] = ACTIONS(1736), + [sym__newline] = ACTIONS(1736), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_PIPE] = ACTIONS(1736), + [anon_sym_err_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_GT_PIPE] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_GT2] = ACTIONS(1610), + [anon_sym_DASH2] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_STAR2] = ACTIONS(1610), + [anon_sym_and2] = ACTIONS(1736), + [anon_sym_xor2] = ACTIONS(1736), + [anon_sym_or2] = ACTIONS(1736), + [anon_sym_not_DASHin2] = ACTIONS(1736), + [anon_sym_has2] = ACTIONS(1736), + [anon_sym_not_DASHhas2] = ACTIONS(1736), + [anon_sym_starts_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), + [anon_sym_ends_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), + [anon_sym_EQ_EQ2] = ACTIONS(1736), + [anon_sym_BANG_EQ2] = ACTIONS(1736), + [anon_sym_LT2] = ACTIONS(1610), + [anon_sym_LT_EQ2] = ACTIONS(1736), + [anon_sym_GT_EQ2] = ACTIONS(1736), + [anon_sym_EQ_TILDE2] = ACTIONS(1736), + [anon_sym_BANG_TILDE2] = ACTIONS(1736), + [anon_sym_like2] = ACTIONS(1736), + [anon_sym_not_DASHlike2] = ACTIONS(1736), + [anon_sym_LPAREN2] = ACTIONS(2720), + [anon_sym_STAR_STAR2] = ACTIONS(1736), + [anon_sym_PLUS_PLUS2] = ACTIONS(1736), + [anon_sym_SLASH2] = ACTIONS(1610), + [anon_sym_mod2] = ACTIONS(1736), + [anon_sym_SLASH_SLASH2] = ACTIONS(1736), + [anon_sym_PLUS2] = ACTIONS(1610), + [anon_sym_bit_DASHshl2] = ACTIONS(1736), + [anon_sym_bit_DASHshr2] = ACTIONS(1736), + [anon_sym_bit_DASHand2] = ACTIONS(1736), + [anon_sym_bit_DASHxor2] = ACTIONS(1736), + [anon_sym_bit_DASHor2] = ACTIONS(1736), + [anon_sym_err_GT] = ACTIONS(1610), + [anon_sym_out_GT] = ACTIONS(1610), + [anon_sym_e_GT] = ACTIONS(1610), + [anon_sym_o_GT] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT] = ACTIONS(1610), + [anon_sym_err_GT_GT] = ACTIONS(1736), + [anon_sym_out_GT_GT] = ACTIONS(1736), + [anon_sym_e_GT_GT] = ACTIONS(1736), + [anon_sym_o_GT_GT] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), + [sym__unquoted_pattern] = ACTIONS(2722), + [anon_sym_POUND] = ACTIONS(3), + }, + [989] = { + [aux_sym__repeat_newline] = STATE(1031), + [sym__expression_parenthesized] = STATE(4376), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2200), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1905), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), [sym_comment] = STATE(989), - [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_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(990)] = { - [aux_sym__repeat_newline] = STATE(501), + [aux_sym_cmd_identifier_token2] = ACTIONS(2690), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_null] = ACTIONS(2694), + [aux_sym_cmd_identifier_token3] = ACTIONS(2696), + [aux_sym_cmd_identifier_token4] = ACTIONS(2696), + [aux_sym_cmd_identifier_token5] = ACTIONS(2696), + [sym__newline] = ACTIONS(2698), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1965), + [aux_sym__val_number_decimal_token3] = ACTIONS(2700), + [aux_sym__val_number_decimal_token4] = ACTIONS(2700), + [aux_sym__val_number_token1] = ACTIONS(2696), + [aux_sym__val_number_token2] = ACTIONS(2696), + [aux_sym__val_number_token3] = ACTIONS(2696), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(215), + }, + [990] = { + [aux_sym__repeat_newline] = STATE(1020), [sym_comment] = STATE(990), - [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(991)] = { - [aux_sym__repeat_newline] = STATE(1147), - [sym_comment] = STATE(991), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [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_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_POUND] = ACTIONS(3), }, - [STATE(992)] = { - [aux_sym__repeat_newline] = STATE(1117), + [991] = { + [aux_sym__repeat_newline] = STATE(1040), + [sym_comment] = STATE(991), + [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_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_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), + [anon_sym_POUND] = ACTIONS(3), + }, + [992] = { + [aux_sym__repeat_newline] = STATE(522), [sym_comment] = STATE(992), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(993)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(993), [anon_sym_in] = ACTIONS(2724), [sym__newline] = ACTIONS(2724), [anon_sym_SEMI] = ACTIONS(2724), @@ -123250,145 +123130,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(994)] = { + [993] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(993), + [anon_sym_in] = ACTIONS(2728), + [sym__newline] = ACTIONS(2728), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2730), + [anon_sym_DASH2] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_STAR2] = ACTIONS(2730), + [anon_sym_and2] = ACTIONS(2728), + [anon_sym_xor2] = ACTIONS(2728), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2728), + [anon_sym_has2] = ACTIONS(2728), + [anon_sym_not_DASHhas2] = ACTIONS(2728), + [anon_sym_starts_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), + [anon_sym_ends_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), + [anon_sym_EQ_EQ2] = ACTIONS(2728), + [anon_sym_BANG_EQ2] = ACTIONS(2728), + [anon_sym_LT2] = ACTIONS(2730), + [anon_sym_LT_EQ2] = ACTIONS(2728), + [anon_sym_GT_EQ2] = ACTIONS(2728), + [anon_sym_EQ_TILDE2] = ACTIONS(2728), + [anon_sym_BANG_TILDE2] = ACTIONS(2728), + [anon_sym_like2] = ACTIONS(2728), + [anon_sym_not_DASHlike2] = ACTIONS(2728), + [anon_sym_STAR_STAR2] = ACTIONS(2728), + [anon_sym_PLUS_PLUS2] = ACTIONS(2728), + [anon_sym_SLASH2] = ACTIONS(2730), + [anon_sym_mod2] = ACTIONS(2728), + [anon_sym_SLASH_SLASH2] = ACTIONS(2728), + [anon_sym_PLUS2] = ACTIONS(2730), + [anon_sym_bit_DASHshl2] = ACTIONS(2728), + [anon_sym_bit_DASHshr2] = ACTIONS(2728), + [anon_sym_bit_DASHand2] = ACTIONS(2728), + [anon_sym_bit_DASHxor2] = ACTIONS(2728), + [anon_sym_bit_DASHor2] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2730), + [anon_sym_out_GT] = ACTIONS(2730), + [anon_sym_e_GT] = ACTIONS(2730), + [anon_sym_o_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT] = ACTIONS(2730), + [anon_sym_err_GT_GT] = ACTIONS(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(3), + }, + [994] = { [sym_comment] = STATE(994), - [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_LPAREN2] = ACTIONS(2108), - [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), - [sym__unquoted_pattern] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(995)] = { - [aux_sym__repeat_newline] = STATE(1044), + [anon_sym_in] = ACTIONS(910), + [sym__newline] = ACTIONS(910), + [anon_sym_SEMI] = ACTIONS(910), + [anon_sym_PIPE] = ACTIONS(910), + [anon_sym_err_GT_PIPE] = ACTIONS(910), + [anon_sym_out_GT_PIPE] = ACTIONS(910), + [anon_sym_e_GT_PIPE] = ACTIONS(910), + [anon_sym_o_GT_PIPE] = ACTIONS(910), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(910), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(910), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(910), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(910), + [anon_sym_RPAREN] = ACTIONS(910), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(910), + [anon_sym_RBRACE] = ACTIONS(910), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(910), + [anon_sym_xor2] = ACTIONS(910), + [anon_sym_or2] = ACTIONS(910), + [anon_sym_not_DASHin2] = ACTIONS(910), + [anon_sym_has2] = ACTIONS(910), + [anon_sym_not_DASHhas2] = ACTIONS(910), + [anon_sym_starts_DASHwith2] = ACTIONS(910), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(910), + [anon_sym_ends_DASHwith2] = ACTIONS(910), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(910), + [anon_sym_EQ_EQ2] = ACTIONS(910), + [anon_sym_BANG_EQ2] = ACTIONS(910), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(910), + [anon_sym_GT_EQ2] = ACTIONS(910), + [anon_sym_EQ_TILDE2] = ACTIONS(910), + [anon_sym_BANG_TILDE2] = ACTIONS(910), + [anon_sym_like2] = ACTIONS(910), + [anon_sym_not_DASHlike2] = ACTIONS(910), + [anon_sym_STAR_STAR2] = ACTIONS(910), + [anon_sym_PLUS_PLUS2] = ACTIONS(910), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(910), + [anon_sym_SLASH_SLASH2] = ACTIONS(910), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(910), + [anon_sym_bit_DASHshr2] = ACTIONS(910), + [anon_sym_bit_DASHand2] = ACTIONS(910), + [anon_sym_bit_DASHxor2] = ACTIONS(910), + [anon_sym_bit_DASHor2] = ACTIONS(910), + [anon_sym_err_GT] = ACTIONS(811), + [anon_sym_out_GT] = ACTIONS(811), + [anon_sym_e_GT] = ACTIONS(811), + [anon_sym_o_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT] = ACTIONS(811), + [anon_sym_err_GT_GT] = ACTIONS(910), + [anon_sym_out_GT_GT] = ACTIONS(910), + [anon_sym_e_GT_GT] = ACTIONS(910), + [anon_sym_o_GT_GT] = ACTIONS(910), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(910), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(910), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(910), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(910), + [sym__unquoted_pattern] = ACTIONS(1840), + [anon_sym_POUND] = ACTIONS(3), + }, + [995] = { + [aux_sym__repeat_newline] = STATE(1004), [sym_comment] = STATE(995), - [anon_sym_in] = ACTIONS(2492), - [sym__newline] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_err_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_GT_PIPE] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_GT2] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_STAR2] = ACTIONS(2494), - [anon_sym_and2] = ACTIONS(2492), - [anon_sym_xor2] = ACTIONS(2492), - [anon_sym_or2] = ACTIONS(2492), - [anon_sym_not_DASHin2] = ACTIONS(2492), - [anon_sym_has2] = ACTIONS(2492), - [anon_sym_not_DASHhas2] = ACTIONS(2492), - [anon_sym_starts_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), - [anon_sym_ends_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), - [anon_sym_EQ_EQ2] = ACTIONS(2492), - [anon_sym_BANG_EQ2] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2494), - [anon_sym_LT_EQ2] = ACTIONS(2492), - [anon_sym_GT_EQ2] = ACTIONS(2492), - [anon_sym_EQ_TILDE2] = ACTIONS(2492), - [anon_sym_BANG_TILDE2] = ACTIONS(2492), - [anon_sym_like2] = ACTIONS(2492), - [anon_sym_not_DASHlike2] = ACTIONS(2492), - [anon_sym_STAR_STAR2] = ACTIONS(2492), - [anon_sym_PLUS_PLUS2] = ACTIONS(2492), - [anon_sym_SLASH2] = ACTIONS(2494), - [anon_sym_mod2] = ACTIONS(2492), - [anon_sym_SLASH_SLASH2] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_bit_DASHshl2] = ACTIONS(2492), - [anon_sym_bit_DASHshr2] = ACTIONS(2492), - [anon_sym_bit_DASHand2] = ACTIONS(2492), - [anon_sym_bit_DASHxor2] = ACTIONS(2492), - [anon_sym_bit_DASHor2] = ACTIONS(2492), - [anon_sym_err_GT] = ACTIONS(2494), - [anon_sym_out_GT] = ACTIONS(2494), - [anon_sym_e_GT] = ACTIONS(2494), - [anon_sym_o_GT] = ACTIONS(2494), - [anon_sym_err_PLUSout_GT] = ACTIONS(2494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), - [anon_sym_o_PLUSe_GT] = ACTIONS(2494), - [anon_sym_e_PLUSo_GT] = ACTIONS(2494), - [anon_sym_err_GT_GT] = ACTIONS(2492), - [anon_sym_out_GT_GT] = ACTIONS(2492), - [anon_sym_e_GT_GT] = ACTIONS(2492), - [anon_sym_o_GT_GT] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(996)] = { - [aux_sym__repeat_newline] = STATE(501), + [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_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_POUND] = ACTIONS(3), + }, + [996] = { + [aux_sym__repeat_newline] = STATE(1292), + [sym__expression_parenthesized] = STATE(4407), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2200), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1905), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), [sym_comment] = STATE(996), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(2732), + [aux_sym_cmd_identifier_token3] = ACTIONS(191), + [aux_sym_cmd_identifier_token4] = ACTIONS(191), + [aux_sym_cmd_identifier_token5] = ACTIONS(191), + [sym__newline] = ACTIONS(2698), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [997] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(997), + [anon_sym_in] = ACTIONS(2728), + [sym__newline] = ACTIONS(2728), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2730), + [anon_sym_DASH2] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_STAR2] = ACTIONS(2730), + [anon_sym_and2] = ACTIONS(2728), + [anon_sym_xor2] = ACTIONS(2728), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2728), + [anon_sym_has2] = ACTIONS(2728), + [anon_sym_not_DASHhas2] = ACTIONS(2728), + [anon_sym_starts_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), + [anon_sym_ends_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), + [anon_sym_EQ_EQ2] = ACTIONS(2728), + [anon_sym_BANG_EQ2] = ACTIONS(2728), + [anon_sym_LT2] = ACTIONS(2730), + [anon_sym_LT_EQ2] = ACTIONS(2728), + [anon_sym_GT_EQ2] = ACTIONS(2728), + [anon_sym_EQ_TILDE2] = ACTIONS(2728), + [anon_sym_BANG_TILDE2] = ACTIONS(2728), + [anon_sym_like2] = ACTIONS(2728), + [anon_sym_not_DASHlike2] = ACTIONS(2728), + [anon_sym_STAR_STAR2] = ACTIONS(2728), + [anon_sym_PLUS_PLUS2] = ACTIONS(2728), + [anon_sym_SLASH2] = ACTIONS(2730), + [anon_sym_mod2] = ACTIONS(2728), + [anon_sym_SLASH_SLASH2] = ACTIONS(2728), + [anon_sym_PLUS2] = ACTIONS(2730), + [anon_sym_bit_DASHshl2] = ACTIONS(2728), + [anon_sym_bit_DASHshr2] = ACTIONS(2728), + [anon_sym_bit_DASHand2] = ACTIONS(2728), + [anon_sym_bit_DASHxor2] = ACTIONS(2728), + [anon_sym_bit_DASHor2] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2730), + [anon_sym_out_GT] = ACTIONS(2730), + [anon_sym_e_GT] = ACTIONS(2730), + [anon_sym_o_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT] = ACTIONS(2730), + [anon_sym_err_GT_GT] = ACTIONS(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(3), + }, + [998] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(998), [anon_sym_in] = ACTIONS(2724), [sym__newline] = ACTIONS(2724), [anon_sym_SEMI] = ACTIONS(2724), @@ -123454,77 +123538,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(997)] = { - [aux_sym__repeat_newline] = STATE(1045), - [sym_comment] = STATE(997), - [anon_sym_in] = ACTIONS(2492), - [sym__newline] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_err_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_GT_PIPE] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_GT2] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_STAR2] = ACTIONS(2494), - [anon_sym_and2] = ACTIONS(2492), - [anon_sym_xor2] = ACTIONS(2492), - [anon_sym_or2] = ACTIONS(2492), - [anon_sym_not_DASHin2] = ACTIONS(2492), - [anon_sym_has2] = ACTIONS(2492), - [anon_sym_not_DASHhas2] = ACTIONS(2492), - [anon_sym_starts_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), - [anon_sym_ends_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), - [anon_sym_EQ_EQ2] = ACTIONS(2492), - [anon_sym_BANG_EQ2] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2494), - [anon_sym_LT_EQ2] = ACTIONS(2492), - [anon_sym_GT_EQ2] = ACTIONS(2492), - [anon_sym_EQ_TILDE2] = ACTIONS(2492), - [anon_sym_BANG_TILDE2] = ACTIONS(2492), - [anon_sym_like2] = ACTIONS(2492), - [anon_sym_not_DASHlike2] = ACTIONS(2492), - [anon_sym_STAR_STAR2] = ACTIONS(2492), - [anon_sym_PLUS_PLUS2] = ACTIONS(2492), - [anon_sym_SLASH2] = ACTIONS(2494), - [anon_sym_mod2] = ACTIONS(2492), - [anon_sym_SLASH_SLASH2] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_bit_DASHshl2] = ACTIONS(2492), - [anon_sym_bit_DASHshr2] = ACTIONS(2492), - [anon_sym_bit_DASHand2] = ACTIONS(2492), - [anon_sym_bit_DASHxor2] = ACTIONS(2492), - [anon_sym_bit_DASHor2] = ACTIONS(2492), - [anon_sym_err_GT] = ACTIONS(2494), - [anon_sym_out_GT] = ACTIONS(2494), - [anon_sym_e_GT] = ACTIONS(2494), - [anon_sym_o_GT] = ACTIONS(2494), - [anon_sym_err_PLUSout_GT] = ACTIONS(2494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), - [anon_sym_o_PLUSe_GT] = ACTIONS(2494), - [anon_sym_e_PLUSo_GT] = ACTIONS(2494), - [anon_sym_err_GT_GT] = ACTIONS(2492), - [anon_sym_out_GT_GT] = ACTIONS(2492), - [anon_sym_e_GT_GT] = ACTIONS(2492), - [anon_sym_o_GT_GT] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(998)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(998), + [999] = { + [sym_comment] = STATE(999), + [ts_builtin_sym_end] = ACTIONS(1945), + [anon_sym_in] = ACTIONS(1945), + [sym__newline] = ACTIONS(1945), + [anon_sym_SEMI] = ACTIONS(1945), + [anon_sym_PIPE] = ACTIONS(1945), + [anon_sym_err_GT_PIPE] = ACTIONS(1945), + [anon_sym_out_GT_PIPE] = ACTIONS(1945), + [anon_sym_e_GT_PIPE] = ACTIONS(1945), + [anon_sym_o_GT_PIPE] = ACTIONS(1945), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1945), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1945), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1945), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1945), + [anon_sym_GT2] = ACTIONS(1947), + [anon_sym_DASH2] = ACTIONS(1945), + [anon_sym_STAR2] = ACTIONS(1947), + [anon_sym_and2] = ACTIONS(1945), + [anon_sym_xor2] = ACTIONS(1945), + [anon_sym_or2] = ACTIONS(1945), + [anon_sym_not_DASHin2] = ACTIONS(1945), + [anon_sym_has2] = ACTIONS(1945), + [anon_sym_not_DASHhas2] = ACTIONS(1945), + [anon_sym_starts_DASHwith2] = ACTIONS(1945), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1945), + [anon_sym_ends_DASHwith2] = ACTIONS(1945), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1945), + [anon_sym_EQ_EQ2] = ACTIONS(1945), + [anon_sym_BANG_EQ2] = ACTIONS(1945), + [anon_sym_LT2] = ACTIONS(1947), + [anon_sym_LT_EQ2] = ACTIONS(1945), + [anon_sym_GT_EQ2] = ACTIONS(1945), + [anon_sym_EQ_TILDE2] = ACTIONS(1945), + [anon_sym_BANG_TILDE2] = ACTIONS(1945), + [anon_sym_like2] = ACTIONS(1945), + [anon_sym_not_DASHlike2] = ACTIONS(1945), + [anon_sym_LPAREN2] = ACTIONS(1945), + [anon_sym_STAR_STAR2] = ACTIONS(1945), + [anon_sym_PLUS_PLUS2] = ACTIONS(1945), + [anon_sym_SLASH2] = ACTIONS(1947), + [anon_sym_mod2] = ACTIONS(1945), + [anon_sym_SLASH_SLASH2] = ACTIONS(1945), + [anon_sym_PLUS2] = ACTIONS(1947), + [anon_sym_bit_DASHshl2] = ACTIONS(1945), + [anon_sym_bit_DASHshr2] = ACTIONS(1945), + [anon_sym_bit_DASHand2] = ACTIONS(1945), + [anon_sym_bit_DASHxor2] = ACTIONS(1945), + [anon_sym_bit_DASHor2] = ACTIONS(1945), + [anon_sym_err_GT] = ACTIONS(1947), + [anon_sym_out_GT] = ACTIONS(1947), + [anon_sym_e_GT] = ACTIONS(1947), + [anon_sym_o_GT] = ACTIONS(1947), + [anon_sym_err_PLUSout_GT] = ACTIONS(1947), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1947), + [anon_sym_o_PLUSe_GT] = ACTIONS(1947), + [anon_sym_e_PLUSo_GT] = ACTIONS(1947), + [anon_sym_err_GT_GT] = ACTIONS(1945), + [anon_sym_out_GT_GT] = ACTIONS(1945), + [anon_sym_e_GT_GT] = ACTIONS(1945), + [anon_sym_o_GT_GT] = ACTIONS(1945), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1945), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1945), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1945), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1945), + [sym__unquoted_pattern] = ACTIONS(1947), + [anon_sym_POUND] = ACTIONS(3), + }, + [1000] = { + [aux_sym__repeat_newline] = STATE(1013), + [sym_comment] = STATE(1000), + [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_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_POUND] = ACTIONS(3), + }, + [1001] = { + [sym_expr_unary] = STATE(2832), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_parenthesized] = STATE(2562), + [sym_val_range] = STATE(2832), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(2832), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(2587), + [sym_val_variable] = STATE(2536), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(2374), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [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(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(2596), + [sym__unquoted_with_expr] = STATE(2831), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(1001), + [anon_sym_true] = ACTIONS(2734), + [anon_sym_false] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2736), + [aux_sym_cmd_identifier_token3] = ACTIONS(2738), + [aux_sym_cmd_identifier_token4] = ACTIONS(2738), + [aux_sym_cmd_identifier_token5] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_DOLLAR] = ACTIONS(2744), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_DOT_DOT] = ACTIONS(2748), + [aux_sym_expr_unary_token1] = ACTIONS(2750), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2752), + [anon_sym_DOT_DOT_LT] = ACTIONS(2752), + [aux_sym__val_number_decimal_token1] = ACTIONS(2754), + [aux_sym__val_number_decimal_token2] = ACTIONS(2756), + [aux_sym__val_number_decimal_token3] = ACTIONS(2758), + [aux_sym__val_number_decimal_token4] = ACTIONS(2758), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2760), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1770), + }, + [1002] = { + [sym_expr_unary] = STATE(2830), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_parenthesized] = STATE(2563), + [sym_val_range] = STATE(2830), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(2830), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(2587), + [sym_val_variable] = STATE(2536), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(2374), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [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(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(2604), + [sym__unquoted_with_expr] = STATE(2828), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(1002), + [anon_sym_true] = ACTIONS(2734), + [anon_sym_false] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2736), + [aux_sym_cmd_identifier_token3] = ACTIONS(2738), + [aux_sym_cmd_identifier_token4] = ACTIONS(2738), + [aux_sym_cmd_identifier_token5] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_DOLLAR] = ACTIONS(2744), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_DOT_DOT] = ACTIONS(2748), + [aux_sym_expr_unary_token1] = ACTIONS(2750), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2752), + [anon_sym_DOT_DOT_LT] = ACTIONS(2752), + [aux_sym__val_number_decimal_token1] = ACTIONS(2754), + [aux_sym__val_number_decimal_token2] = ACTIONS(2756), + [aux_sym__val_number_decimal_token3] = ACTIONS(2758), + [aux_sym__val_number_decimal_token4] = ACTIONS(2758), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2760), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1770), + }, + [1003] = { + [sym_expr_unary] = STATE(2827), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_parenthesized] = STATE(2572), + [sym_val_range] = STATE(2827), + [sym__val_range] = STATE(4839), + [sym__value] = STATE(2827), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(2587), + [sym_val_variable] = STATE(2536), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(2374), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [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(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_unquoted] = STATE(2608), + [sym__unquoted_with_expr] = STATE(2826), + [sym__unquoted_anonymous_prefix] = STATE(4839), + [sym_comment] = STATE(1003), + [anon_sym_true] = ACTIONS(2734), + [anon_sym_false] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2736), + [aux_sym_cmd_identifier_token3] = ACTIONS(2738), + [aux_sym_cmd_identifier_token4] = ACTIONS(2738), + [aux_sym_cmd_identifier_token5] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_DOLLAR] = ACTIONS(2744), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_DOT_DOT] = ACTIONS(2748), + [aux_sym_expr_unary_token1] = ACTIONS(2750), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2752), + [anon_sym_DOT_DOT_LT] = ACTIONS(2752), + [aux_sym__val_number_decimal_token1] = ACTIONS(2754), + [aux_sym__val_number_decimal_token2] = ACTIONS(2756), + [aux_sym__val_number_decimal_token3] = ACTIONS(2758), + [aux_sym__val_number_decimal_token4] = ACTIONS(2758), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2760), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1770), + }, + [1004] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1004), [anon_sym_in] = ACTIONS(2724), [sym__newline] = ACTIONS(2724), [anon_sym_SEMI] = ACTIONS(2724), @@ -123590,961 +123946,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(999)] = { - [aux_sym__repeat_newline] = STATE(1047), - [sym_comment] = STATE(999), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1000)] = { - [sym_comment] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(1258), - [anon_sym_in] = ACTIONS(1258), - [sym__newline] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_err_GT_PIPE] = ACTIONS(1258), - [anon_sym_out_GT_PIPE] = ACTIONS(1258), - [anon_sym_e_GT_PIPE] = ACTIONS(1258), - [anon_sym_o_GT_PIPE] = ACTIONS(1258), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1258), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1258), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1258), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1258), - [anon_sym_GT2] = ACTIONS(1242), - [anon_sym_DASH2] = ACTIONS(1258), - [anon_sym_STAR2] = ACTIONS(1242), - [anon_sym_and2] = ACTIONS(1258), - [anon_sym_xor2] = ACTIONS(1258), - [anon_sym_or2] = ACTIONS(1258), - [anon_sym_not_DASHin2] = ACTIONS(1258), - [anon_sym_has2] = ACTIONS(1258), - [anon_sym_not_DASHhas2] = ACTIONS(1258), - [anon_sym_starts_DASHwith2] = ACTIONS(1258), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1258), - [anon_sym_ends_DASHwith2] = ACTIONS(1258), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1258), - [anon_sym_EQ_EQ2] = ACTIONS(1258), - [anon_sym_BANG_EQ2] = ACTIONS(1258), - [anon_sym_LT2] = ACTIONS(1242), - [anon_sym_LT_EQ2] = ACTIONS(1258), - [anon_sym_GT_EQ2] = ACTIONS(1258), - [anon_sym_EQ_TILDE2] = ACTIONS(1258), - [anon_sym_BANG_TILDE2] = ACTIONS(1258), - [anon_sym_like2] = ACTIONS(1258), - [anon_sym_not_DASHlike2] = ACTIONS(1258), - [anon_sym_LPAREN2] = ACTIONS(2630), - [anon_sym_STAR_STAR2] = ACTIONS(1258), - [anon_sym_PLUS_PLUS2] = ACTIONS(1258), - [anon_sym_SLASH2] = ACTIONS(1242), - [anon_sym_mod2] = ACTIONS(1258), - [anon_sym_SLASH_SLASH2] = ACTIONS(1258), - [anon_sym_PLUS2] = ACTIONS(1242), - [anon_sym_bit_DASHshl2] = ACTIONS(1258), - [anon_sym_bit_DASHshr2] = ACTIONS(1258), - [anon_sym_bit_DASHand2] = ACTIONS(1258), - [anon_sym_bit_DASHxor2] = ACTIONS(1258), - [anon_sym_bit_DASHor2] = ACTIONS(1258), - [anon_sym_err_GT] = ACTIONS(1242), - [anon_sym_out_GT] = ACTIONS(1242), - [anon_sym_e_GT] = ACTIONS(1242), - [anon_sym_o_GT] = ACTIONS(1242), - [anon_sym_err_PLUSout_GT] = ACTIONS(1242), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1242), - [anon_sym_o_PLUSe_GT] = ACTIONS(1242), - [anon_sym_e_PLUSo_GT] = ACTIONS(1242), - [anon_sym_err_GT_GT] = ACTIONS(1258), - [anon_sym_out_GT_GT] = ACTIONS(1258), - [anon_sym_e_GT_GT] = ACTIONS(1258), - [anon_sym_o_GT_GT] = ACTIONS(1258), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1258), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1258), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1258), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1258), - [sym__unquoted_pattern] = ACTIONS(2632), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1001)] = { - [aux_sym__repeat_newline] = STATE(1049), - [sym_comment] = STATE(1001), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1002)] = { - [sym_comment] = STATE(1002), - [ts_builtin_sym_end] = ACTIONS(1250), - [anon_sym_in] = ACTIONS(1250), - [sym__newline] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1250), - [anon_sym_PIPE] = ACTIONS(1250), - [anon_sym_err_GT_PIPE] = ACTIONS(1250), - [anon_sym_out_GT_PIPE] = ACTIONS(1250), - [anon_sym_e_GT_PIPE] = ACTIONS(1250), - [anon_sym_o_GT_PIPE] = ACTIONS(1250), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1250), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1250), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1250), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1250), - [anon_sym_GT2] = ACTIONS(1234), - [anon_sym_DASH2] = ACTIONS(1250), - [anon_sym_STAR2] = ACTIONS(1234), - [anon_sym_and2] = ACTIONS(1250), - [anon_sym_xor2] = ACTIONS(1250), - [anon_sym_or2] = ACTIONS(1250), - [anon_sym_not_DASHin2] = ACTIONS(1250), - [anon_sym_has2] = ACTIONS(1250), - [anon_sym_not_DASHhas2] = ACTIONS(1250), - [anon_sym_starts_DASHwith2] = ACTIONS(1250), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1250), - [anon_sym_ends_DASHwith2] = ACTIONS(1250), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1250), - [anon_sym_EQ_EQ2] = ACTIONS(1250), - [anon_sym_BANG_EQ2] = ACTIONS(1250), - [anon_sym_LT2] = ACTIONS(1234), - [anon_sym_LT_EQ2] = ACTIONS(1250), - [anon_sym_GT_EQ2] = ACTIONS(1250), - [anon_sym_EQ_TILDE2] = ACTIONS(1250), - [anon_sym_BANG_TILDE2] = ACTIONS(1250), - [anon_sym_like2] = ACTIONS(1250), - [anon_sym_not_DASHlike2] = ACTIONS(1250), - [anon_sym_LPAREN2] = ACTIONS(2630), - [anon_sym_STAR_STAR2] = ACTIONS(1250), - [anon_sym_PLUS_PLUS2] = ACTIONS(1250), - [anon_sym_SLASH2] = ACTIONS(1234), - [anon_sym_mod2] = ACTIONS(1250), - [anon_sym_SLASH_SLASH2] = ACTIONS(1250), - [anon_sym_PLUS2] = ACTIONS(1234), - [anon_sym_bit_DASHshl2] = ACTIONS(1250), - [anon_sym_bit_DASHshr2] = ACTIONS(1250), - [anon_sym_bit_DASHand2] = ACTIONS(1250), - [anon_sym_bit_DASHxor2] = ACTIONS(1250), - [anon_sym_bit_DASHor2] = ACTIONS(1250), - [anon_sym_err_GT] = ACTIONS(1234), - [anon_sym_out_GT] = ACTIONS(1234), - [anon_sym_e_GT] = ACTIONS(1234), - [anon_sym_o_GT] = ACTIONS(1234), - [anon_sym_err_PLUSout_GT] = ACTIONS(1234), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1234), - [anon_sym_o_PLUSe_GT] = ACTIONS(1234), - [anon_sym_e_PLUSo_GT] = ACTIONS(1234), - [anon_sym_err_GT_GT] = ACTIONS(1250), - [anon_sym_out_GT_GT] = ACTIONS(1250), - [anon_sym_e_GT_GT] = ACTIONS(1250), - [anon_sym_o_GT_GT] = ACTIONS(1250), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1250), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1250), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1250), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1250), - [sym__unquoted_pattern] = ACTIONS(2632), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1003)] = { - [aux_sym__repeat_newline] = STATE(1051), - [sym_comment] = STATE(1003), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1004)] = { - [aux_sym__repeat_newline] = STATE(993), - [sym_comment] = STATE(1004), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1005)] = { - [aux_sym__repeat_newline] = STATE(1053), + [1005] = { + [aux_sym__repeat_newline] = STATE(522), [sym_comment] = STATE(1005), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1006)] = { - [aux_sym__repeat_newline] = STATE(1113), - [sym_comment] = STATE(1006), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_in] = ACTIONS(2728), + [sym__newline] = ACTIONS(2728), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2730), + [anon_sym_DASH2] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_STAR2] = ACTIONS(2730), + [anon_sym_and2] = ACTIONS(2728), + [anon_sym_xor2] = ACTIONS(2728), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2728), + [anon_sym_has2] = ACTIONS(2728), + [anon_sym_not_DASHhas2] = ACTIONS(2728), + [anon_sym_starts_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), + [anon_sym_ends_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), + [anon_sym_EQ_EQ2] = ACTIONS(2728), + [anon_sym_BANG_EQ2] = ACTIONS(2728), + [anon_sym_LT2] = ACTIONS(2730), + [anon_sym_LT_EQ2] = ACTIONS(2728), + [anon_sym_GT_EQ2] = ACTIONS(2728), + [anon_sym_EQ_TILDE2] = ACTIONS(2728), + [anon_sym_BANG_TILDE2] = ACTIONS(2728), + [anon_sym_like2] = ACTIONS(2728), + [anon_sym_not_DASHlike2] = ACTIONS(2728), + [anon_sym_STAR_STAR2] = ACTIONS(2728), + [anon_sym_PLUS_PLUS2] = ACTIONS(2728), + [anon_sym_SLASH2] = ACTIONS(2730), + [anon_sym_mod2] = ACTIONS(2728), + [anon_sym_SLASH_SLASH2] = ACTIONS(2728), + [anon_sym_PLUS2] = ACTIONS(2730), + [anon_sym_bit_DASHshl2] = ACTIONS(2728), + [anon_sym_bit_DASHshr2] = ACTIONS(2728), + [anon_sym_bit_DASHand2] = ACTIONS(2728), + [anon_sym_bit_DASHxor2] = ACTIONS(2728), + [anon_sym_bit_DASHor2] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2730), + [anon_sym_out_GT] = ACTIONS(2730), + [anon_sym_e_GT] = ACTIONS(2730), + [anon_sym_o_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT] = ACTIONS(2730), + [anon_sym_err_GT_GT] = ACTIONS(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1007)] = { - [aux_sym__repeat_newline] = STATE(1055), + [1006] = { + [aux_sym__repeat_newline] = STATE(1142), + [sym_comment] = STATE(1006), + [anon_sym_in] = ACTIONS(2762), + [sym__newline] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2764), + [anon_sym_DASH2] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2762), + [anon_sym_STAR2] = ACTIONS(2764), + [anon_sym_and2] = ACTIONS(2762), + [anon_sym_xor2] = ACTIONS(2762), + [anon_sym_or2] = ACTIONS(2762), + [anon_sym_not_DASHin2] = ACTIONS(2762), + [anon_sym_has2] = ACTIONS(2762), + [anon_sym_not_DASHhas2] = ACTIONS(2762), + [anon_sym_starts_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2762), + [anon_sym_ends_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2762), + [anon_sym_EQ_EQ2] = ACTIONS(2762), + [anon_sym_BANG_EQ2] = ACTIONS(2762), + [anon_sym_LT2] = ACTIONS(2764), + [anon_sym_LT_EQ2] = ACTIONS(2762), + [anon_sym_GT_EQ2] = ACTIONS(2762), + [anon_sym_EQ_TILDE2] = ACTIONS(2762), + [anon_sym_BANG_TILDE2] = ACTIONS(2762), + [anon_sym_like2] = ACTIONS(2762), + [anon_sym_not_DASHlike2] = ACTIONS(2762), + [anon_sym_STAR_STAR2] = ACTIONS(2762), + [anon_sym_PLUS_PLUS2] = ACTIONS(2762), + [anon_sym_SLASH2] = ACTIONS(2764), + [anon_sym_mod2] = ACTIONS(2762), + [anon_sym_SLASH_SLASH2] = ACTIONS(2762), + [anon_sym_PLUS2] = ACTIONS(2764), + [anon_sym_bit_DASHshl2] = ACTIONS(2762), + [anon_sym_bit_DASHshr2] = ACTIONS(2762), + [anon_sym_bit_DASHand2] = ACTIONS(2762), + [anon_sym_bit_DASHxor2] = ACTIONS(2762), + [anon_sym_bit_DASHor2] = ACTIONS(2762), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_POUND] = ACTIONS(3), + }, + [1007] = { + [aux_sym__repeat_newline] = STATE(4441), + [sym__match_pattern_expression] = STATE(4653), + [sym__match_pattern_value] = STATE(4894), + [sym__match_pattern_list_body] = STATE(4914), + [sym__match_pattern_list] = STATE(4906), + [sym__match_pattern_rest] = STATE(5325), + [sym__match_pattern_record] = STATE(4932), + [sym_expr_parenthesized] = STATE(4084), + [sym_val_range] = STATE(4894), + [sym__val_range] = STATE(5490), + [sym_val_nothing] = STATE(4932), + [sym_val_bool] = STATE(4451), + [sym_val_variable] = STATE(4085), + [sym_val_number] = STATE(4932), + [sym__val_number_decimal] = STATE(3772), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4932), + [sym_val_filesize] = STATE(4932), + [sym_val_binary] = STATE(4932), + [sym_val_string] = STATE(4932), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_list] = STATE(5492), + [sym__table_head] = STATE(3964), + [sym_val_table] = STATE(4932), + [sym__unquoted_in_list] = STATE(4653), + [sym__unquoted_anonymous_prefix] = STATE(5490), [sym_comment] = STATE(1007), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1008)] = { - [aux_sym__repeat_newline] = STATE(996), + [aux_sym__types_body_repeat1] = STATE(1425), + [aux_sym_parameter_repeat2] = STATE(4282), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1443), + [anon_sym_true] = ACTIONS(1406), + [anon_sym_false] = ACTIONS(1406), + [anon_sym_null] = ACTIONS(1408), + [aux_sym_cmd_identifier_token3] = ACTIONS(1410), + [aux_sym_cmd_identifier_token4] = ACTIONS(1410), + [aux_sym_cmd_identifier_token5] = ACTIONS(1410), + [sym__newline] = ACTIONS(2766), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_RBRACK] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1420), + [anon_sym_DOLLAR] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_DOT_DOT] = ACTIONS(1426), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1428), + [anon_sym_DOT_DOT_LT] = ACTIONS(1428), + [aux_sym__val_number_decimal_token1] = ACTIONS(1430), + [aux_sym__val_number_decimal_token2] = ACTIONS(1432), + [aux_sym__val_number_decimal_token3] = ACTIONS(1434), + [aux_sym__val_number_decimal_token4] = ACTIONS(1434), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(2776), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [1008] = { + [aux_sym__repeat_newline] = STATE(998), [sym_comment] = STATE(1008), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [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_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_POUND] = ACTIONS(3), }, - [STATE(1009)] = { - [aux_sym__repeat_newline] = STATE(1057), + [1009] = { + [aux_sym__repeat_newline] = STATE(1016), [sym_comment] = STATE(1009), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1010)] = { - [aux_sym__repeat_newline] = STATE(1059), + [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_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_POUND] = ACTIONS(3), + }, + [1010] = { + [sym__expr_parenthesized_immediate] = STATE(5375), [sym_comment] = STATE(1010), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1011)] = { + [ts_builtin_sym_end] = ACTIONS(2298), + [anon_sym_in] = ACTIONS(2298), + [sym__newline] = ACTIONS(2298), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_PIPE] = ACTIONS(2298), + [anon_sym_err_GT_PIPE] = ACTIONS(2298), + [anon_sym_out_GT_PIPE] = ACTIONS(2298), + [anon_sym_e_GT_PIPE] = ACTIONS(2298), + [anon_sym_o_GT_PIPE] = ACTIONS(2298), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2298), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2298), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2298), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2298), + [anon_sym_GT2] = ACTIONS(2300), + [anon_sym_DASH2] = ACTIONS(2298), + [anon_sym_STAR2] = ACTIONS(2300), + [anon_sym_and2] = ACTIONS(2298), + [anon_sym_xor2] = ACTIONS(2298), + [anon_sym_or2] = ACTIONS(2298), + [anon_sym_not_DASHin2] = ACTIONS(2298), + [anon_sym_has2] = ACTIONS(2298), + [anon_sym_not_DASHhas2] = ACTIONS(2298), + [anon_sym_starts_DASHwith2] = ACTIONS(2298), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2298), + [anon_sym_ends_DASHwith2] = ACTIONS(2298), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2298), + [anon_sym_EQ_EQ2] = ACTIONS(2298), + [anon_sym_BANG_EQ2] = ACTIONS(2298), + [anon_sym_LT2] = ACTIONS(2300), + [anon_sym_LT_EQ2] = ACTIONS(2298), + [anon_sym_GT_EQ2] = ACTIONS(2298), + [anon_sym_EQ_TILDE2] = ACTIONS(2298), + [anon_sym_BANG_TILDE2] = ACTIONS(2298), + [anon_sym_like2] = ACTIONS(2298), + [anon_sym_not_DASHlike2] = ACTIONS(2298), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2298), + [anon_sym_PLUS_PLUS2] = ACTIONS(2298), + [anon_sym_SLASH2] = ACTIONS(2300), + [anon_sym_mod2] = ACTIONS(2298), + [anon_sym_SLASH_SLASH2] = ACTIONS(2298), + [anon_sym_PLUS2] = ACTIONS(2300), + [anon_sym_bit_DASHshl2] = ACTIONS(2298), + [anon_sym_bit_DASHshr2] = ACTIONS(2298), + [anon_sym_bit_DASHand2] = ACTIONS(2298), + [anon_sym_bit_DASHxor2] = ACTIONS(2298), + [anon_sym_bit_DASHor2] = ACTIONS(2298), + [anon_sym_err_GT] = ACTIONS(2300), + [anon_sym_out_GT] = ACTIONS(2300), + [anon_sym_e_GT] = ACTIONS(2300), + [anon_sym_o_GT] = ACTIONS(2300), + [anon_sym_err_PLUSout_GT] = ACTIONS(2300), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2300), + [anon_sym_o_PLUSe_GT] = ACTIONS(2300), + [anon_sym_e_PLUSo_GT] = ACTIONS(2300), + [anon_sym_err_GT_GT] = ACTIONS(2298), + [anon_sym_out_GT_GT] = ACTIONS(2298), + [anon_sym_e_GT_GT] = ACTIONS(2298), + [anon_sym_o_GT_GT] = ACTIONS(2298), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2298), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2298), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2298), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2298), + [anon_sym_POUND] = ACTIONS(3), + }, + [1011] = { + [sym__expr_parenthesized_immediate] = STATE(5375), [sym_comment] = STATE(1011), - [ts_builtin_sym_end] = ACTIONS(2696), - [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_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_LPAREN2] = ACTIONS(2118), - [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), - [sym__unquoted_pattern] = ACTIONS(2124), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1012)] = { - [aux_sym__repeat_newline] = STATE(1061), + [ts_builtin_sym_end] = ACTIONS(2283), + [anon_sym_in] = ACTIONS(2283), + [sym__newline] = ACTIONS(2283), + [anon_sym_SEMI] = ACTIONS(2283), + [anon_sym_PIPE] = ACTIONS(2283), + [anon_sym_err_GT_PIPE] = ACTIONS(2283), + [anon_sym_out_GT_PIPE] = ACTIONS(2283), + [anon_sym_e_GT_PIPE] = ACTIONS(2283), + [anon_sym_o_GT_PIPE] = ACTIONS(2283), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2283), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2283), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2283), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2283), + [anon_sym_GT2] = ACTIONS(2285), + [anon_sym_DASH2] = ACTIONS(2283), + [anon_sym_STAR2] = ACTIONS(2285), + [anon_sym_and2] = ACTIONS(2283), + [anon_sym_xor2] = ACTIONS(2283), + [anon_sym_or2] = ACTIONS(2283), + [anon_sym_not_DASHin2] = ACTIONS(2283), + [anon_sym_has2] = ACTIONS(2283), + [anon_sym_not_DASHhas2] = ACTIONS(2283), + [anon_sym_starts_DASHwith2] = ACTIONS(2283), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2283), + [anon_sym_ends_DASHwith2] = ACTIONS(2283), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2283), + [anon_sym_EQ_EQ2] = ACTIONS(2283), + [anon_sym_BANG_EQ2] = ACTIONS(2283), + [anon_sym_LT2] = ACTIONS(2285), + [anon_sym_LT_EQ2] = ACTIONS(2283), + [anon_sym_GT_EQ2] = ACTIONS(2283), + [anon_sym_EQ_TILDE2] = ACTIONS(2283), + [anon_sym_BANG_TILDE2] = ACTIONS(2283), + [anon_sym_like2] = ACTIONS(2283), + [anon_sym_not_DASHlike2] = ACTIONS(2283), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2283), + [anon_sym_PLUS_PLUS2] = ACTIONS(2283), + [anon_sym_SLASH2] = ACTIONS(2285), + [anon_sym_mod2] = ACTIONS(2283), + [anon_sym_SLASH_SLASH2] = ACTIONS(2283), + [anon_sym_PLUS2] = ACTIONS(2285), + [anon_sym_bit_DASHshl2] = ACTIONS(2283), + [anon_sym_bit_DASHshr2] = ACTIONS(2283), + [anon_sym_bit_DASHand2] = ACTIONS(2283), + [anon_sym_bit_DASHxor2] = ACTIONS(2283), + [anon_sym_bit_DASHor2] = ACTIONS(2283), + [anon_sym_err_GT] = ACTIONS(2285), + [anon_sym_out_GT] = ACTIONS(2285), + [anon_sym_e_GT] = ACTIONS(2285), + [anon_sym_o_GT] = ACTIONS(2285), + [anon_sym_err_PLUSout_GT] = ACTIONS(2285), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2285), + [anon_sym_o_PLUSe_GT] = ACTIONS(2285), + [anon_sym_e_PLUSo_GT] = ACTIONS(2285), + [anon_sym_err_GT_GT] = ACTIONS(2283), + [anon_sym_out_GT_GT] = ACTIONS(2283), + [anon_sym_e_GT_GT] = ACTIONS(2283), + [anon_sym_o_GT_GT] = ACTIONS(2283), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2283), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2283), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2283), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2283), + [anon_sym_POUND] = ACTIONS(3), + }, + [1012] = { + [aux_sym__repeat_newline] = STATE(522), [sym_comment] = STATE(1012), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1013)] = { - [aux_sym__repeat_newline] = STATE(1065), - [sym_comment] = STATE(1013), [anon_sym_in] = ACTIONS(2728), [sym__newline] = ACTIONS(2728), [anon_sym_SEMI] = ACTIONS(2728), @@ -124610,331 +124490,1283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1014)] = { + [1013] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1013), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_STAR2] = ACTIONS(2726), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2724), + [anon_sym_PLUS_PLUS2] = ACTIONS(2724), + [anon_sym_SLASH2] = ACTIONS(2726), + [anon_sym_mod2] = ACTIONS(2724), + [anon_sym_SLASH_SLASH2] = ACTIONS(2724), + [anon_sym_PLUS2] = ACTIONS(2726), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(3), + }, + [1014] = { + [aux_sym__repeat_newline] = STATE(1018), [sym_comment] = STATE(1014), - [ts_builtin_sym_end] = ACTIONS(2114), - [anon_sym_in] = ACTIONS(2114), - [sym__newline] = ACTIONS(2114), - [anon_sym_SEMI] = ACTIONS(2114), - [anon_sym_PIPE] = ACTIONS(2114), - [anon_sym_err_GT_PIPE] = ACTIONS(2114), - [anon_sym_out_GT_PIPE] = ACTIONS(2114), - [anon_sym_e_GT_PIPE] = ACTIONS(2114), - [anon_sym_o_GT_PIPE] = ACTIONS(2114), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2114), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2114), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2114), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2114), - [anon_sym_GT2] = ACTIONS(2116), - [anon_sym_DASH2] = ACTIONS(2114), - [anon_sym_STAR2] = ACTIONS(2116), - [anon_sym_and2] = ACTIONS(2114), - [anon_sym_xor2] = ACTIONS(2114), - [anon_sym_or2] = ACTIONS(2114), - [anon_sym_not_DASHin2] = ACTIONS(2114), - [anon_sym_has2] = ACTIONS(2114), - [anon_sym_not_DASHhas2] = ACTIONS(2114), - [anon_sym_starts_DASHwith2] = ACTIONS(2114), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2114), - [anon_sym_ends_DASHwith2] = ACTIONS(2114), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2114), - [anon_sym_EQ_EQ2] = ACTIONS(2114), - [anon_sym_BANG_EQ2] = ACTIONS(2114), - [anon_sym_LT2] = ACTIONS(2116), - [anon_sym_LT_EQ2] = ACTIONS(2114), - [anon_sym_GT_EQ2] = ACTIONS(2114), - [anon_sym_EQ_TILDE2] = ACTIONS(2114), - [anon_sym_BANG_TILDE2] = ACTIONS(2114), - [anon_sym_like2] = ACTIONS(2114), - [anon_sym_not_DASHlike2] = ACTIONS(2114), - [anon_sym_LPAREN2] = ACTIONS(2118), - [anon_sym_STAR_STAR2] = ACTIONS(2114), - [anon_sym_PLUS_PLUS2] = ACTIONS(2114), - [anon_sym_SLASH2] = ACTIONS(2116), - [anon_sym_mod2] = ACTIONS(2114), - [anon_sym_SLASH_SLASH2] = ACTIONS(2114), - [anon_sym_PLUS2] = ACTIONS(2116), - [anon_sym_bit_DASHshl2] = ACTIONS(2114), - [anon_sym_bit_DASHshr2] = ACTIONS(2114), - [anon_sym_bit_DASHand2] = ACTIONS(2114), - [anon_sym_bit_DASHxor2] = ACTIONS(2114), - [anon_sym_bit_DASHor2] = ACTIONS(2114), - [anon_sym_err_GT] = ACTIONS(2116), - [anon_sym_out_GT] = ACTIONS(2116), - [anon_sym_e_GT] = ACTIONS(2116), - [anon_sym_o_GT] = ACTIONS(2116), - [anon_sym_err_PLUSout_GT] = ACTIONS(2116), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2116), - [anon_sym_o_PLUSe_GT] = ACTIONS(2116), - [anon_sym_e_PLUSo_GT] = ACTIONS(2116), - [anon_sym_err_GT_GT] = ACTIONS(2114), - [anon_sym_out_GT_GT] = ACTIONS(2114), - [anon_sym_e_GT_GT] = ACTIONS(2114), - [anon_sym_o_GT_GT] = ACTIONS(2114), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2114), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2114), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2114), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2114), - [sym__unquoted_pattern] = ACTIONS(2124), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1015)] = { - [aux_sym__repeat_newline] = STATE(1066), - [sym_comment] = STATE(1015), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1016)] = { - [aux_sym__repeat_newline] = STATE(998), - [sym_comment] = STATE(1016), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [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_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_POUND] = ACTIONS(3), + }, + [1015] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1015), + [anon_sym_in] = ACTIONS(2728), + [sym__newline] = ACTIONS(2728), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2730), + [anon_sym_DASH2] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_STAR2] = ACTIONS(2730), + [anon_sym_and2] = ACTIONS(2728), + [anon_sym_xor2] = ACTIONS(2728), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2728), + [anon_sym_has2] = ACTIONS(2728), + [anon_sym_not_DASHhas2] = ACTIONS(2728), + [anon_sym_starts_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), + [anon_sym_ends_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), + [anon_sym_EQ_EQ2] = ACTIONS(2728), + [anon_sym_BANG_EQ2] = ACTIONS(2728), + [anon_sym_LT2] = ACTIONS(2730), + [anon_sym_LT_EQ2] = ACTIONS(2728), + [anon_sym_GT_EQ2] = ACTIONS(2728), + [anon_sym_EQ_TILDE2] = ACTIONS(2728), + [anon_sym_BANG_TILDE2] = ACTIONS(2728), + [anon_sym_like2] = ACTIONS(2728), + [anon_sym_not_DASHlike2] = ACTIONS(2728), + [anon_sym_STAR_STAR2] = ACTIONS(2728), + [anon_sym_PLUS_PLUS2] = ACTIONS(2728), + [anon_sym_SLASH2] = ACTIONS(2730), + [anon_sym_mod2] = ACTIONS(2728), + [anon_sym_SLASH_SLASH2] = ACTIONS(2728), + [anon_sym_PLUS2] = ACTIONS(2730), + [anon_sym_bit_DASHshl2] = ACTIONS(2728), + [anon_sym_bit_DASHshr2] = ACTIONS(2728), + [anon_sym_bit_DASHand2] = ACTIONS(2728), + [anon_sym_bit_DASHxor2] = ACTIONS(2728), + [anon_sym_bit_DASHor2] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2730), + [anon_sym_out_GT] = ACTIONS(2730), + [anon_sym_e_GT] = ACTIONS(2730), + [anon_sym_o_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT] = ACTIONS(2730), + [anon_sym_err_GT_GT] = ACTIONS(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(3), + }, + [1016] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1016), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_STAR2] = ACTIONS(2726), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2724), + [anon_sym_PLUS_PLUS2] = ACTIONS(2724), + [anon_sym_SLASH2] = ACTIONS(2726), + [anon_sym_mod2] = ACTIONS(2724), + [anon_sym_SLASH_SLASH2] = ACTIONS(2724), + [anon_sym_PLUS2] = ACTIONS(2726), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1017)] = { - [aux_sym__repeat_newline] = STATE(1068), + [1017] = { + [aux_sym__repeat_newline] = STATE(522), [sym_comment] = STATE(1017), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1018)] = { - [aux_sym__repeat_newline] = STATE(1338), - [sym__expression_parenthesized] = STATE(4420), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2204), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1878), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), + [anon_sym_in] = ACTIONS(2728), + [sym__newline] = ACTIONS(2728), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2730), + [anon_sym_DASH2] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_STAR2] = ACTIONS(2730), + [anon_sym_and2] = ACTIONS(2728), + [anon_sym_xor2] = ACTIONS(2728), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2728), + [anon_sym_has2] = ACTIONS(2728), + [anon_sym_not_DASHhas2] = ACTIONS(2728), + [anon_sym_starts_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), + [anon_sym_ends_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), + [anon_sym_EQ_EQ2] = ACTIONS(2728), + [anon_sym_BANG_EQ2] = ACTIONS(2728), + [anon_sym_LT2] = ACTIONS(2730), + [anon_sym_LT_EQ2] = ACTIONS(2728), + [anon_sym_GT_EQ2] = ACTIONS(2728), + [anon_sym_EQ_TILDE2] = ACTIONS(2728), + [anon_sym_BANG_TILDE2] = ACTIONS(2728), + [anon_sym_like2] = ACTIONS(2728), + [anon_sym_not_DASHlike2] = ACTIONS(2728), + [anon_sym_STAR_STAR2] = ACTIONS(2728), + [anon_sym_PLUS_PLUS2] = ACTIONS(2728), + [anon_sym_SLASH2] = ACTIONS(2730), + [anon_sym_mod2] = ACTIONS(2728), + [anon_sym_SLASH_SLASH2] = ACTIONS(2728), + [anon_sym_PLUS2] = ACTIONS(2730), + [anon_sym_bit_DASHshl2] = ACTIONS(2728), + [anon_sym_bit_DASHshr2] = ACTIONS(2728), + [anon_sym_bit_DASHand2] = ACTIONS(2728), + [anon_sym_bit_DASHxor2] = ACTIONS(2728), + [anon_sym_bit_DASHor2] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2730), + [anon_sym_out_GT] = ACTIONS(2730), + [anon_sym_e_GT] = ACTIONS(2730), + [anon_sym_o_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT] = ACTIONS(2730), + [anon_sym_err_GT_GT] = ACTIONS(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(3), + }, + [1018] = { + [aux_sym__repeat_newline] = STATE(522), [sym_comment] = STATE(1018), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_STAR2] = ACTIONS(2726), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2724), + [anon_sym_PLUS_PLUS2] = ACTIONS(2724), + [anon_sym_SLASH2] = ACTIONS(2726), + [anon_sym_mod2] = ACTIONS(2724), + [anon_sym_SLASH_SLASH2] = ACTIONS(2724), + [anon_sym_PLUS2] = ACTIONS(2726), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(3), + }, + [1019] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1019), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_STAR2] = ACTIONS(2726), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2724), + [anon_sym_PLUS_PLUS2] = ACTIONS(2724), + [anon_sym_SLASH2] = ACTIONS(2726), + [anon_sym_mod2] = ACTIONS(2724), + [anon_sym_SLASH_SLASH2] = ACTIONS(2724), + [anon_sym_PLUS2] = ACTIONS(2726), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(3), + }, + [1020] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1020), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_STAR2] = ACTIONS(2726), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2724), + [anon_sym_PLUS_PLUS2] = ACTIONS(2724), + [anon_sym_SLASH2] = ACTIONS(2726), + [anon_sym_mod2] = ACTIONS(2724), + [anon_sym_SLASH_SLASH2] = ACTIONS(2724), + [anon_sym_PLUS2] = ACTIONS(2726), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(3), + }, + [1021] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1021), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_STAR2] = ACTIONS(2726), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2724), + [anon_sym_PLUS_PLUS2] = ACTIONS(2724), + [anon_sym_SLASH2] = ACTIONS(2726), + [anon_sym_mod2] = ACTIONS(2724), + [anon_sym_SLASH_SLASH2] = ACTIONS(2724), + [anon_sym_PLUS2] = ACTIONS(2726), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(3), + }, + [1022] = { + [sym_comment] = STATE(1022), + [ts_builtin_sym_end] = ACTIONS(1874), + [anon_sym_in] = ACTIONS(1874), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_GT2] = ACTIONS(1876), + [anon_sym_DASH2] = ACTIONS(1874), + [anon_sym_STAR2] = ACTIONS(1876), + [anon_sym_and2] = ACTIONS(1874), + [anon_sym_xor2] = ACTIONS(1874), + [anon_sym_or2] = ACTIONS(1874), + [anon_sym_not_DASHin2] = ACTIONS(1874), + [anon_sym_has2] = ACTIONS(1874), + [anon_sym_not_DASHhas2] = ACTIONS(1874), + [anon_sym_starts_DASHwith2] = ACTIONS(1874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1874), + [anon_sym_ends_DASHwith2] = ACTIONS(1874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1874), + [anon_sym_EQ_EQ2] = ACTIONS(1874), + [anon_sym_BANG_EQ2] = ACTIONS(1874), + [anon_sym_LT2] = ACTIONS(1876), + [anon_sym_LT_EQ2] = ACTIONS(1874), + [anon_sym_GT_EQ2] = ACTIONS(1874), + [anon_sym_EQ_TILDE2] = ACTIONS(1874), + [anon_sym_BANG_TILDE2] = ACTIONS(1874), + [anon_sym_like2] = ACTIONS(1874), + [anon_sym_not_DASHlike2] = ACTIONS(1874), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_STAR_STAR2] = ACTIONS(1874), + [anon_sym_PLUS_PLUS2] = ACTIONS(1874), + [anon_sym_SLASH2] = ACTIONS(1876), + [anon_sym_mod2] = ACTIONS(1874), + [anon_sym_SLASH_SLASH2] = ACTIONS(1874), + [anon_sym_PLUS2] = ACTIONS(1876), + [anon_sym_bit_DASHshl2] = ACTIONS(1874), + [anon_sym_bit_DASHshr2] = ACTIONS(1874), + [anon_sym_bit_DASHand2] = ACTIONS(1874), + [anon_sym_bit_DASHxor2] = ACTIONS(1874), + [anon_sym_bit_DASHor2] = ACTIONS(1874), + [anon_sym_err_GT] = ACTIONS(1876), + [anon_sym_out_GT] = ACTIONS(1876), + [anon_sym_e_GT] = ACTIONS(1876), + [anon_sym_o_GT] = ACTIONS(1876), + [anon_sym_err_PLUSout_GT] = ACTIONS(1876), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1876), + [anon_sym_o_PLUSe_GT] = ACTIONS(1876), + [anon_sym_e_PLUSo_GT] = ACTIONS(1876), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [sym__unquoted_pattern] = ACTIONS(1876), + [anon_sym_POUND] = ACTIONS(3), + }, + [1023] = { + [aux_sym__repeat_newline] = STATE(992), + [sym_comment] = STATE(1023), + [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_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_POUND] = ACTIONS(3), + }, + [1024] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1024), + [anon_sym_in] = ACTIONS(2728), + [sym__newline] = ACTIONS(2728), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2730), + [anon_sym_DASH2] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_STAR2] = ACTIONS(2730), + [anon_sym_and2] = ACTIONS(2728), + [anon_sym_xor2] = ACTIONS(2728), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2728), + [anon_sym_has2] = ACTIONS(2728), + [anon_sym_not_DASHhas2] = ACTIONS(2728), + [anon_sym_starts_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), + [anon_sym_ends_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), + [anon_sym_EQ_EQ2] = ACTIONS(2728), + [anon_sym_BANG_EQ2] = ACTIONS(2728), + [anon_sym_LT2] = ACTIONS(2730), + [anon_sym_LT_EQ2] = ACTIONS(2728), + [anon_sym_GT_EQ2] = ACTIONS(2728), + [anon_sym_EQ_TILDE2] = ACTIONS(2728), + [anon_sym_BANG_TILDE2] = ACTIONS(2728), + [anon_sym_like2] = ACTIONS(2728), + [anon_sym_not_DASHlike2] = ACTIONS(2728), + [anon_sym_STAR_STAR2] = ACTIONS(2728), + [anon_sym_PLUS_PLUS2] = ACTIONS(2728), + [anon_sym_SLASH2] = ACTIONS(2730), + [anon_sym_mod2] = ACTIONS(2728), + [anon_sym_SLASH_SLASH2] = ACTIONS(2728), + [anon_sym_PLUS2] = ACTIONS(2730), + [anon_sym_bit_DASHshl2] = ACTIONS(2728), + [anon_sym_bit_DASHshr2] = ACTIONS(2728), + [anon_sym_bit_DASHand2] = ACTIONS(2728), + [anon_sym_bit_DASHxor2] = ACTIONS(2728), + [anon_sym_bit_DASHor2] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2730), + [anon_sym_out_GT] = ACTIONS(2730), + [anon_sym_e_GT] = ACTIONS(2730), + [anon_sym_o_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT] = ACTIONS(2730), + [anon_sym_err_GT_GT] = ACTIONS(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(3), + }, + [1025] = { + [sym__expr_parenthesized_immediate] = STATE(5375), + [sym_comment] = STATE(1025), + [ts_builtin_sym_end] = ACTIONS(2265), + [anon_sym_in] = ACTIONS(2265), + [sym__newline] = ACTIONS(2265), + [anon_sym_SEMI] = ACTIONS(2265), + [anon_sym_PIPE] = ACTIONS(2265), + [anon_sym_err_GT_PIPE] = ACTIONS(2265), + [anon_sym_out_GT_PIPE] = ACTIONS(2265), + [anon_sym_e_GT_PIPE] = ACTIONS(2265), + [anon_sym_o_GT_PIPE] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2265), + [anon_sym_GT2] = ACTIONS(2267), + [anon_sym_DASH2] = ACTIONS(2265), + [anon_sym_STAR2] = ACTIONS(2267), + [anon_sym_and2] = ACTIONS(2265), + [anon_sym_xor2] = ACTIONS(2265), + [anon_sym_or2] = ACTIONS(2265), + [anon_sym_not_DASHin2] = ACTIONS(2265), + [anon_sym_has2] = ACTIONS(2265), + [anon_sym_not_DASHhas2] = ACTIONS(2265), + [anon_sym_starts_DASHwith2] = ACTIONS(2265), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2265), + [anon_sym_ends_DASHwith2] = ACTIONS(2265), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2265), + [anon_sym_EQ_EQ2] = ACTIONS(2265), + [anon_sym_BANG_EQ2] = ACTIONS(2265), + [anon_sym_LT2] = ACTIONS(2267), + [anon_sym_LT_EQ2] = ACTIONS(2265), + [anon_sym_GT_EQ2] = ACTIONS(2265), + [anon_sym_EQ_TILDE2] = ACTIONS(2265), + [anon_sym_BANG_TILDE2] = ACTIONS(2265), + [anon_sym_like2] = ACTIONS(2265), + [anon_sym_not_DASHlike2] = ACTIONS(2265), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2265), + [anon_sym_PLUS_PLUS2] = ACTIONS(2265), + [anon_sym_SLASH2] = ACTIONS(2267), + [anon_sym_mod2] = ACTIONS(2265), + [anon_sym_SLASH_SLASH2] = ACTIONS(2265), + [anon_sym_PLUS2] = ACTIONS(2267), + [anon_sym_bit_DASHshl2] = ACTIONS(2265), + [anon_sym_bit_DASHshr2] = ACTIONS(2265), + [anon_sym_bit_DASHand2] = ACTIONS(2265), + [anon_sym_bit_DASHxor2] = ACTIONS(2265), + [anon_sym_bit_DASHor2] = ACTIONS(2265), + [anon_sym_err_GT] = ACTIONS(2267), + [anon_sym_out_GT] = ACTIONS(2267), + [anon_sym_e_GT] = ACTIONS(2267), + [anon_sym_o_GT] = ACTIONS(2267), + [anon_sym_err_PLUSout_GT] = ACTIONS(2267), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2267), + [anon_sym_o_PLUSe_GT] = ACTIONS(2267), + [anon_sym_e_PLUSo_GT] = ACTIONS(2267), + [anon_sym_err_GT_GT] = ACTIONS(2265), + [anon_sym_out_GT_GT] = ACTIONS(2265), + [anon_sym_e_GT_GT] = ACTIONS(2265), + [anon_sym_o_GT_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2265), + [anon_sym_POUND] = ACTIONS(3), + }, + [1026] = { + [aux_sym__repeat_newline] = STATE(1021), + [sym_comment] = STATE(1026), + [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_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_POUND] = ACTIONS(3), + }, + [1027] = { + [sym__expr_parenthesized_immediate] = STATE(5375), + [sym_comment] = STATE(1027), + [ts_builtin_sym_end] = ACTIONS(2287), + [anon_sym_in] = ACTIONS(2287), + [sym__newline] = ACTIONS(2287), + [anon_sym_SEMI] = ACTIONS(2287), + [anon_sym_PIPE] = ACTIONS(2287), + [anon_sym_err_GT_PIPE] = ACTIONS(2287), + [anon_sym_out_GT_PIPE] = ACTIONS(2287), + [anon_sym_e_GT_PIPE] = ACTIONS(2287), + [anon_sym_o_GT_PIPE] = ACTIONS(2287), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2287), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2287), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2287), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2287), + [anon_sym_GT2] = ACTIONS(2289), + [anon_sym_DASH2] = ACTIONS(2287), + [anon_sym_STAR2] = ACTIONS(2289), + [anon_sym_and2] = ACTIONS(2287), + [anon_sym_xor2] = ACTIONS(2287), + [anon_sym_or2] = ACTIONS(2287), + [anon_sym_not_DASHin2] = ACTIONS(2287), + [anon_sym_has2] = ACTIONS(2287), + [anon_sym_not_DASHhas2] = ACTIONS(2287), + [anon_sym_starts_DASHwith2] = ACTIONS(2287), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2287), + [anon_sym_ends_DASHwith2] = ACTIONS(2287), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2287), + [anon_sym_EQ_EQ2] = ACTIONS(2287), + [anon_sym_BANG_EQ2] = ACTIONS(2287), + [anon_sym_LT2] = ACTIONS(2289), + [anon_sym_LT_EQ2] = ACTIONS(2287), + [anon_sym_GT_EQ2] = ACTIONS(2287), + [anon_sym_EQ_TILDE2] = ACTIONS(2287), + [anon_sym_BANG_TILDE2] = ACTIONS(2287), + [anon_sym_like2] = ACTIONS(2287), + [anon_sym_not_DASHlike2] = ACTIONS(2287), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2287), + [anon_sym_PLUS_PLUS2] = ACTIONS(2287), + [anon_sym_SLASH2] = ACTIONS(2289), + [anon_sym_mod2] = ACTIONS(2287), + [anon_sym_SLASH_SLASH2] = ACTIONS(2287), + [anon_sym_PLUS2] = ACTIONS(2289), + [anon_sym_bit_DASHshl2] = ACTIONS(2287), + [anon_sym_bit_DASHshr2] = ACTIONS(2287), + [anon_sym_bit_DASHand2] = ACTIONS(2287), + [anon_sym_bit_DASHxor2] = ACTIONS(2287), + [anon_sym_bit_DASHor2] = ACTIONS(2287), + [anon_sym_err_GT] = ACTIONS(2289), + [anon_sym_out_GT] = ACTIONS(2289), + [anon_sym_e_GT] = ACTIONS(2289), + [anon_sym_o_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT] = ACTIONS(2289), + [anon_sym_err_GT_GT] = ACTIONS(2287), + [anon_sym_out_GT_GT] = ACTIONS(2287), + [anon_sym_e_GT_GT] = ACTIONS(2287), + [anon_sym_o_GT_GT] = ACTIONS(2287), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2287), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2287), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2287), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2287), + [anon_sym_POUND] = ACTIONS(3), + }, + [1028] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1028), + [anon_sym_in] = ACTIONS(2728), + [sym__newline] = ACTIONS(2728), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2730), + [anon_sym_DASH2] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_STAR2] = ACTIONS(2730), + [anon_sym_and2] = ACTIONS(2728), + [anon_sym_xor2] = ACTIONS(2728), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2728), + [anon_sym_has2] = ACTIONS(2728), + [anon_sym_not_DASHhas2] = ACTIONS(2728), + [anon_sym_starts_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), + [anon_sym_ends_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), + [anon_sym_EQ_EQ2] = ACTIONS(2728), + [anon_sym_BANG_EQ2] = ACTIONS(2728), + [anon_sym_LT2] = ACTIONS(2730), + [anon_sym_LT_EQ2] = ACTIONS(2728), + [anon_sym_GT_EQ2] = ACTIONS(2728), + [anon_sym_EQ_TILDE2] = ACTIONS(2728), + [anon_sym_BANG_TILDE2] = ACTIONS(2728), + [anon_sym_like2] = ACTIONS(2728), + [anon_sym_not_DASHlike2] = ACTIONS(2728), + [anon_sym_STAR_STAR2] = ACTIONS(2728), + [anon_sym_PLUS_PLUS2] = ACTIONS(2728), + [anon_sym_SLASH2] = ACTIONS(2730), + [anon_sym_mod2] = ACTIONS(2728), + [anon_sym_SLASH_SLASH2] = ACTIONS(2728), + [anon_sym_PLUS2] = ACTIONS(2730), + [anon_sym_bit_DASHshl2] = ACTIONS(2728), + [anon_sym_bit_DASHshr2] = ACTIONS(2728), + [anon_sym_bit_DASHand2] = ACTIONS(2728), + [anon_sym_bit_DASHxor2] = ACTIONS(2728), + [anon_sym_bit_DASHor2] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2730), + [anon_sym_out_GT] = ACTIONS(2730), + [anon_sym_e_GT] = ACTIONS(2730), + [anon_sym_o_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT] = ACTIONS(2730), + [anon_sym_err_GT_GT] = ACTIONS(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(3), + }, + [1029] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1029), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_STAR2] = ACTIONS(2726), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2724), + [anon_sym_PLUS_PLUS2] = ACTIONS(2724), + [anon_sym_SLASH2] = ACTIONS(2726), + [anon_sym_mod2] = ACTIONS(2724), + [anon_sym_SLASH_SLASH2] = ACTIONS(2724), + [anon_sym_PLUS2] = ACTIONS(2726), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(3), + }, + [1030] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1030), + [anon_sym_in] = ACTIONS(2778), + [sym__newline] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2778), + [anon_sym_err_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_GT_PIPE] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2778), + [anon_sym_RPAREN] = ACTIONS(2778), + [anon_sym_GT2] = ACTIONS(2780), + [anon_sym_DASH2] = ACTIONS(2778), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_STAR2] = ACTIONS(2780), + [anon_sym_and2] = ACTIONS(2778), + [anon_sym_xor2] = ACTIONS(2778), + [anon_sym_or2] = ACTIONS(2778), + [anon_sym_not_DASHin2] = ACTIONS(2778), + [anon_sym_has2] = ACTIONS(2778), + [anon_sym_not_DASHhas2] = ACTIONS(2778), + [anon_sym_starts_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2778), + [anon_sym_ends_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2778), + [anon_sym_EQ_EQ2] = ACTIONS(2778), + [anon_sym_BANG_EQ2] = ACTIONS(2778), + [anon_sym_LT2] = ACTIONS(2780), + [anon_sym_LT_EQ2] = ACTIONS(2778), + [anon_sym_GT_EQ2] = ACTIONS(2778), + [anon_sym_EQ_TILDE2] = ACTIONS(2778), + [anon_sym_BANG_TILDE2] = ACTIONS(2778), + [anon_sym_like2] = ACTIONS(2778), + [anon_sym_not_DASHlike2] = ACTIONS(2778), + [anon_sym_STAR_STAR2] = ACTIONS(2778), + [anon_sym_PLUS_PLUS2] = ACTIONS(2778), + [anon_sym_SLASH2] = ACTIONS(2780), + [anon_sym_mod2] = ACTIONS(2778), + [anon_sym_SLASH_SLASH2] = ACTIONS(2778), + [anon_sym_PLUS2] = ACTIONS(2780), + [anon_sym_bit_DASHshl2] = ACTIONS(2778), + [anon_sym_bit_DASHshr2] = ACTIONS(2778), + [anon_sym_bit_DASHand2] = ACTIONS(2778), + [anon_sym_bit_DASHxor2] = ACTIONS(2778), + [anon_sym_bit_DASHor2] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2778), + [anon_sym_out_GT_GT] = ACTIONS(2778), + [anon_sym_e_GT_GT] = ACTIONS(2778), + [anon_sym_o_GT_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), + [anon_sym_POUND] = ACTIONS(3), + }, + [1031] = { + [aux_sym__repeat_newline] = STATE(1292), + [sym__expression_parenthesized] = STATE(4375), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2200), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1905), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_comment] = STATE(1031), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), [anon_sym_null] = ACTIONS(2732), [aux_sym_cmd_identifier_token3] = ACTIONS(191), [aux_sym_cmd_identifier_token4] = ACTIONS(191), [aux_sym_cmd_identifier_token5] = ACTIONS(191), - [sym__newline] = ACTIONS(2642), + [sym__newline] = ACTIONS(2698), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), [aux_sym__val_number_token1] = ACTIONS(191), [aux_sym__val_number_token2] = ACTIONS(191), [aux_sym__val_number_token3] = ACTIONS(191), @@ -124950,1913 +125782,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(1019)] = { - [aux_sym__repeat_newline] = STATE(1070), - [sym_comment] = STATE(1019), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1020)] = { - [sym_comment] = STATE(1020), - [ts_builtin_sym_end] = ACTIONS(2660), - [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_GT2] = ACTIONS(2662), - [anon_sym_DASH2] = 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_LPAREN2] = ACTIONS(2718), - [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), - [sym__unquoted_pattern] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1021)] = { - [aux_sym__repeat_newline] = STATE(1072), - [sym_comment] = STATE(1021), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1022)] = { - [sym_comment] = STATE(1022), - [ts_builtin_sym_end] = ACTIONS(2676), - [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_GT2] = ACTIONS(2678), - [anon_sym_DASH2] = ACTIONS(2676), - [anon_sym_STAR2] = ACTIONS(2678), - [anon_sym_and2] = ACTIONS(2676), - [anon_sym_xor2] = ACTIONS(2676), - [anon_sym_or2] = ACTIONS(2676), - [anon_sym_not_DASHin2] = ACTIONS(2676), - [anon_sym_has2] = ACTIONS(2676), - [anon_sym_not_DASHhas2] = ACTIONS(2676), - [anon_sym_starts_DASHwith2] = ACTIONS(2676), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2676), - [anon_sym_ends_DASHwith2] = ACTIONS(2676), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2676), - [anon_sym_EQ_EQ2] = ACTIONS(2676), - [anon_sym_BANG_EQ2] = ACTIONS(2676), - [anon_sym_LT2] = ACTIONS(2678), - [anon_sym_LT_EQ2] = ACTIONS(2676), - [anon_sym_GT_EQ2] = ACTIONS(2676), - [anon_sym_EQ_TILDE2] = ACTIONS(2676), - [anon_sym_BANG_TILDE2] = ACTIONS(2676), - [anon_sym_like2] = ACTIONS(2676), - [anon_sym_not_DASHlike2] = ACTIONS(2676), - [anon_sym_LPAREN2] = ACTIONS(2684), - [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), - [sym__unquoted_pattern] = ACTIONS(2686), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1023)] = { - [aux_sym__repeat_newline] = STATE(1074), - [sym_comment] = STATE(1023), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1024)] = { - [aux_sym__repeat_newline] = STATE(1108), - [sym_comment] = STATE(1024), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1025)] = { - [sym__expr_parenthesized_immediate] = STATE(5283), - [sym_comment] = STATE(1025), - [ts_builtin_sym_end] = ACTIONS(2369), - [anon_sym_in] = ACTIONS(2369), - [sym__newline] = ACTIONS(2369), - [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_GT2] = ACTIONS(2371), - [anon_sym_DASH2] = ACTIONS(2369), - [anon_sym_STAR2] = ACTIONS(2371), - [anon_sym_and2] = ACTIONS(2369), - [anon_sym_xor2] = ACTIONS(2369), - [anon_sym_or2] = ACTIONS(2369), - [anon_sym_not_DASHin2] = ACTIONS(2369), - [anon_sym_has2] = ACTIONS(2369), - [anon_sym_not_DASHhas2] = ACTIONS(2369), - [anon_sym_starts_DASHwith2] = ACTIONS(2369), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2369), - [anon_sym_ends_DASHwith2] = ACTIONS(2369), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2369), - [anon_sym_EQ_EQ2] = ACTIONS(2369), - [anon_sym_BANG_EQ2] = ACTIONS(2369), - [anon_sym_LT2] = ACTIONS(2371), - [anon_sym_LT_EQ2] = ACTIONS(2369), - [anon_sym_GT_EQ2] = ACTIONS(2369), - [anon_sym_EQ_TILDE2] = ACTIONS(2369), - [anon_sym_BANG_TILDE2] = ACTIONS(2369), - [anon_sym_like2] = ACTIONS(2369), - [anon_sym_not_DASHlike2] = ACTIONS(2369), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2369), - [anon_sym_PLUS_PLUS2] = ACTIONS(2369), - [anon_sym_SLASH2] = ACTIONS(2371), - [anon_sym_mod2] = ACTIONS(2369), - [anon_sym_SLASH_SLASH2] = ACTIONS(2369), - [anon_sym_PLUS2] = ACTIONS(2371), - [anon_sym_bit_DASHshl2] = ACTIONS(2369), - [anon_sym_bit_DASHshr2] = ACTIONS(2369), - [anon_sym_bit_DASHand2] = ACTIONS(2369), - [anon_sym_bit_DASHxor2] = ACTIONS(2369), - [anon_sym_bit_DASHor2] = ACTIONS(2369), - [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(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(1026)] = { - [aux_sym__repeat_newline] = STATE(1122), - [sym_comment] = STATE(1026), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1027)] = { - [sym__expr_parenthesized_immediate] = STATE(5283), - [sym_comment] = STATE(1027), - [ts_builtin_sym_end] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2142), - [sym__newline] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_PIPE] = ACTIONS(2142), - [anon_sym_err_GT_PIPE] = ACTIONS(2142), - [anon_sym_out_GT_PIPE] = ACTIONS(2142), - [anon_sym_e_GT_PIPE] = ACTIONS(2142), - [anon_sym_o_GT_PIPE] = ACTIONS(2142), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2142), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2142), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2142), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2142), - [anon_sym_GT2] = ACTIONS(2144), - [anon_sym_DASH2] = ACTIONS(2142), - [anon_sym_STAR2] = ACTIONS(2144), - [anon_sym_and2] = ACTIONS(2142), - [anon_sym_xor2] = ACTIONS(2142), - [anon_sym_or2] = ACTIONS(2142), - [anon_sym_not_DASHin2] = ACTIONS(2142), - [anon_sym_has2] = ACTIONS(2142), - [anon_sym_not_DASHhas2] = ACTIONS(2142), - [anon_sym_starts_DASHwith2] = ACTIONS(2142), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2142), - [anon_sym_ends_DASHwith2] = ACTIONS(2142), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2142), - [anon_sym_EQ_EQ2] = ACTIONS(2142), - [anon_sym_BANG_EQ2] = ACTIONS(2142), - [anon_sym_LT2] = ACTIONS(2144), - [anon_sym_LT_EQ2] = ACTIONS(2142), - [anon_sym_GT_EQ2] = ACTIONS(2142), - [anon_sym_EQ_TILDE2] = ACTIONS(2142), - [anon_sym_BANG_TILDE2] = ACTIONS(2142), - [anon_sym_like2] = ACTIONS(2142), - [anon_sym_not_DASHlike2] = ACTIONS(2142), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2142), - [anon_sym_PLUS_PLUS2] = ACTIONS(2142), - [anon_sym_SLASH2] = ACTIONS(2144), - [anon_sym_mod2] = ACTIONS(2142), - [anon_sym_SLASH_SLASH2] = ACTIONS(2142), - [anon_sym_PLUS2] = ACTIONS(2144), - [anon_sym_bit_DASHshl2] = ACTIONS(2142), - [anon_sym_bit_DASHshr2] = ACTIONS(2142), - [anon_sym_bit_DASHand2] = ACTIONS(2142), - [anon_sym_bit_DASHxor2] = ACTIONS(2142), - [anon_sym_bit_DASHor2] = ACTIONS(2142), - [anon_sym_err_GT] = ACTIONS(2144), - [anon_sym_out_GT] = ACTIONS(2144), - [anon_sym_e_GT] = ACTIONS(2144), - [anon_sym_o_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT] = ACTIONS(2144), - [anon_sym_err_GT_GT] = ACTIONS(2142), - [anon_sym_out_GT_GT] = ACTIONS(2142), - [anon_sym_e_GT_GT] = ACTIONS(2142), - [anon_sym_o_GT_GT] = ACTIONS(2142), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2142), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2142), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2142), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2142), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1028)] = { - [aux_sym__repeat_newline] = STATE(1128), - [sym_comment] = STATE(1028), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1029)] = { - [sym_expr_unary] = STATE(3047), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_parenthesized] = STATE(2582), - [sym_val_range] = STATE(3047), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(3047), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(2673), - [sym_val_variable] = STATE(2650), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(2388), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), - [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(2670), - [sym__unquoted_with_expr] = STATE(3048), - [sym__unquoted_anonymous_prefix] = STATE(4915), - [sym_comment] = STATE(1029), - [anon_sym_true] = ACTIONS(2734), - [anon_sym_false] = ACTIONS(2734), - [anon_sym_null] = ACTIONS(2736), - [aux_sym_cmd_identifier_token3] = ACTIONS(2738), - [aux_sym_cmd_identifier_token4] = ACTIONS(2738), - [aux_sym_cmd_identifier_token5] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2742), - [anon_sym_DOLLAR] = ACTIONS(2744), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2746), - [anon_sym_DOT_DOT] = ACTIONS(2748), - [aux_sym_expr_unary_token1] = ACTIONS(2750), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2752), - [anon_sym_DOT_DOT_LT] = ACTIONS(2752), - [aux_sym__val_number_decimal_token1] = ACTIONS(2754), - [aux_sym__val_number_decimal_token2] = ACTIONS(2756), - [aux_sym__val_number_decimal_token3] = ACTIONS(2758), - [aux_sym__val_number_decimal_token4] = ACTIONS(2758), - [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(2760), - [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(2528), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(107), - }, - [STATE(1030)] = { - [sym_expr_unary] = STATE(2950), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_parenthesized] = STATE(2583), - [sym_val_range] = STATE(2950), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(2950), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(2673), - [sym_val_variable] = STATE(2650), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(2388), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), - [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(2674), - [sym__unquoted_with_expr] = STATE(3000), - [sym__unquoted_anonymous_prefix] = STATE(4915), - [sym_comment] = STATE(1030), - [anon_sym_true] = ACTIONS(2734), - [anon_sym_false] = ACTIONS(2734), - [anon_sym_null] = ACTIONS(2736), - [aux_sym_cmd_identifier_token3] = ACTIONS(2738), - [aux_sym_cmd_identifier_token4] = ACTIONS(2738), - [aux_sym_cmd_identifier_token5] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2742), - [anon_sym_DOLLAR] = ACTIONS(2744), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2746), - [anon_sym_DOT_DOT] = ACTIONS(2748), - [aux_sym_expr_unary_token1] = ACTIONS(2750), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2752), - [anon_sym_DOT_DOT_LT] = ACTIONS(2752), - [aux_sym__val_number_decimal_token1] = ACTIONS(2754), - [aux_sym__val_number_decimal_token2] = ACTIONS(2756), - [aux_sym__val_number_decimal_token3] = ACTIONS(2758), - [aux_sym__val_number_decimal_token4] = ACTIONS(2758), - [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(2760), - [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(2528), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(107), - }, - [STATE(1031)] = { - [sym_expr_unary] = STATE(3041), - [sym__expr_unary_minus] = STATE(1293), - [sym_expr_parenthesized] = STATE(2585), - [sym_val_range] = STATE(3041), - [sym__val_range] = STATE(4915), - [sym__value] = STATE(3041), - [sym_val_nothing] = STATE(1369), - [sym_val_bool] = STATE(2673), - [sym_val_variable] = STATE(2650), - [sym_val_cellpath] = STATE(1369), - [sym_val_number] = STATE(1369), - [sym__val_number_decimal] = STATE(2388), - [sym__val_number] = STATE(1345), - [sym_val_duration] = STATE(1369), - [sym_val_filesize] = STATE(1369), - [sym_val_binary] = STATE(1369), - [sym_val_string] = STATE(1369), - [sym__raw_str] = STATE(504), - [sym__str_double_quotes] = STATE(504), - [sym__str_single_quotes] = STATE(504), - [sym__str_back_ticks] = STATE(504), - [sym_val_interpolated] = STATE(1369), - [sym__inter_single_quotes] = STATE(1359), - [sym__inter_double_quotes] = STATE(1361), - [sym_val_list] = STATE(1369), - [sym_val_record] = STATE(1369), - [sym_val_table] = STATE(1369), - [sym_val_closure] = STATE(1369), - [sym_unquoted] = STATE(2680), - [sym__unquoted_with_expr] = STATE(2947), - [sym__unquoted_anonymous_prefix] = STATE(4915), - [sym_comment] = STATE(1031), - [anon_sym_true] = ACTIONS(2734), - [anon_sym_false] = ACTIONS(2734), - [anon_sym_null] = ACTIONS(2736), - [aux_sym_cmd_identifier_token3] = ACTIONS(2738), - [aux_sym_cmd_identifier_token4] = ACTIONS(2738), - [aux_sym_cmd_identifier_token5] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2742), - [anon_sym_DOLLAR] = ACTIONS(2744), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2746), - [anon_sym_DOT_DOT] = ACTIONS(2748), - [aux_sym_expr_unary_token1] = ACTIONS(2750), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2752), - [anon_sym_DOT_DOT_LT] = ACTIONS(2752), - [aux_sym__val_number_decimal_token1] = ACTIONS(2754), - [aux_sym__val_number_decimal_token2] = ACTIONS(2756), - [aux_sym__val_number_decimal_token3] = ACTIONS(2758), - [aux_sym__val_number_decimal_token4] = ACTIONS(2758), - [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(2760), - [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(2528), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(107), - }, - [STATE(1032)] = { - [aux_sym__repeat_newline] = STATE(4464), - [sym__match_pattern_expression] = STATE(4534), - [sym__match_pattern_value] = STATE(4712), - [sym__match_pattern_list_body] = STATE(4677), - [sym__match_pattern_list] = STATE(4713), - [sym__match_pattern_rest] = STATE(5185), - [sym__match_pattern_record] = STATE(4714), - [sym_expr_parenthesized] = STATE(4000), - [sym_val_range] = STATE(4712), - [sym__val_range] = STATE(5257), - [sym_val_nothing] = STATE(4714), - [sym_val_bool] = STATE(4442), - [sym_val_variable] = STATE(4001), - [sym_val_number] = STATE(4714), - [sym__val_number_decimal] = STATE(3789), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4714), - [sym_val_filesize] = STATE(4714), - [sym_val_binary] = STATE(4714), - [sym_val_string] = STATE(4714), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_list] = STATE(5494), - [sym__table_head] = STATE(3893), - [sym_val_table] = STATE(4714), - [sym__unquoted_in_list] = STATE(4534), - [sym__unquoted_anonymous_prefix] = STATE(5257), + [1032] = { + [aux_sym__repeat_newline] = STATE(522), [sym_comment] = STATE(1032), - [aux_sym__types_body_repeat1] = STATE(1423), - [aux_sym_parameter_repeat2] = STATE(4206), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1440), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [anon_sym_null] = ACTIONS(1404), - [aux_sym_cmd_identifier_token3] = ACTIONS(1406), - [aux_sym_cmd_identifier_token4] = ACTIONS(1406), - [aux_sym_cmd_identifier_token5] = ACTIONS(1406), - [sym__newline] = ACTIONS(2762), - [anon_sym_LBRACK] = ACTIONS(2764), - [anon_sym_RBRACK] = ACTIONS(2766), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1416), - [anon_sym_DOLLAR] = ACTIONS(2768), - [anon_sym_LBRACE] = ACTIONS(2770), - [anon_sym_DOT_DOT] = ACTIONS(1422), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1424), - [anon_sym_DOT_DOT_LT] = ACTIONS(1424), - [aux_sym__val_number_decimal_token1] = ACTIONS(1426), - [aux_sym__val_number_decimal_token2] = ACTIONS(1428), - [aux_sym__val_number_decimal_token3] = ACTIONS(1430), - [aux_sym__val_number_decimal_token4] = ACTIONS(1430), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(2772), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(1033)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1033), - [anon_sym_in] = ACTIONS(2774), - [sym__newline] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2774), - [anon_sym_PIPE] = ACTIONS(2774), - [anon_sym_err_GT_PIPE] = ACTIONS(2774), - [anon_sym_out_GT_PIPE] = ACTIONS(2774), - [anon_sym_e_GT_PIPE] = ACTIONS(2774), - [anon_sym_o_GT_PIPE] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2774), - [anon_sym_RPAREN] = ACTIONS(2774), - [anon_sym_GT2] = ACTIONS(2776), - [anon_sym_DASH2] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_STAR2] = ACTIONS(2776), - [anon_sym_and2] = ACTIONS(2774), - [anon_sym_xor2] = ACTIONS(2774), - [anon_sym_or2] = ACTIONS(2774), - [anon_sym_not_DASHin2] = ACTIONS(2774), - [anon_sym_has2] = ACTIONS(2774), - [anon_sym_not_DASHhas2] = ACTIONS(2774), - [anon_sym_starts_DASHwith2] = ACTIONS(2774), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2774), - [anon_sym_ends_DASHwith2] = ACTIONS(2774), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2774), - [anon_sym_EQ_EQ2] = ACTIONS(2774), - [anon_sym_BANG_EQ2] = ACTIONS(2774), - [anon_sym_LT2] = ACTIONS(2776), - [anon_sym_LT_EQ2] = ACTIONS(2774), - [anon_sym_GT_EQ2] = ACTIONS(2774), - [anon_sym_EQ_TILDE2] = ACTIONS(2774), - [anon_sym_BANG_TILDE2] = ACTIONS(2774), - [anon_sym_like2] = ACTIONS(2774), - [anon_sym_not_DASHlike2] = ACTIONS(2774), - [anon_sym_STAR_STAR2] = ACTIONS(2774), - [anon_sym_PLUS_PLUS2] = ACTIONS(2774), - [anon_sym_SLASH2] = ACTIONS(2776), - [anon_sym_mod2] = ACTIONS(2774), - [anon_sym_SLASH_SLASH2] = ACTIONS(2774), - [anon_sym_PLUS2] = ACTIONS(2776), - [anon_sym_bit_DASHshl2] = ACTIONS(2774), - [anon_sym_bit_DASHshr2] = ACTIONS(2774), - [anon_sym_bit_DASHand2] = ACTIONS(2774), - [anon_sym_bit_DASHxor2] = ACTIONS(2774), - [anon_sym_bit_DASHor2] = ACTIONS(2774), - [anon_sym_err_GT] = ACTIONS(2776), - [anon_sym_out_GT] = ACTIONS(2776), - [anon_sym_e_GT] = ACTIONS(2776), - [anon_sym_o_GT] = ACTIONS(2776), - [anon_sym_err_PLUSout_GT] = ACTIONS(2776), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2776), - [anon_sym_o_PLUSe_GT] = ACTIONS(2776), - [anon_sym_e_PLUSo_GT] = ACTIONS(2776), - [anon_sym_err_GT_GT] = ACTIONS(2774), - [anon_sym_out_GT_GT] = ACTIONS(2774), - [anon_sym_e_GT_GT] = ACTIONS(2774), - [anon_sym_o_GT_GT] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2774), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1034)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1034), - [anon_sym_in] = ACTIONS(2774), - [sym__newline] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2774), - [anon_sym_PIPE] = ACTIONS(2774), - [anon_sym_err_GT_PIPE] = ACTIONS(2774), - [anon_sym_out_GT_PIPE] = ACTIONS(2774), - [anon_sym_e_GT_PIPE] = ACTIONS(2774), - [anon_sym_o_GT_PIPE] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2774), - [anon_sym_RPAREN] = ACTIONS(2774), - [anon_sym_GT2] = ACTIONS(2776), - [anon_sym_DASH2] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_STAR2] = ACTIONS(2776), - [anon_sym_and2] = ACTIONS(2774), - [anon_sym_xor2] = ACTIONS(2774), - [anon_sym_or2] = ACTIONS(2774), - [anon_sym_not_DASHin2] = ACTIONS(2774), - [anon_sym_has2] = ACTIONS(2774), - [anon_sym_not_DASHhas2] = ACTIONS(2774), - [anon_sym_starts_DASHwith2] = ACTIONS(2774), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2774), - [anon_sym_ends_DASHwith2] = ACTIONS(2774), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2774), - [anon_sym_EQ_EQ2] = ACTIONS(2774), - [anon_sym_BANG_EQ2] = ACTIONS(2774), - [anon_sym_LT2] = ACTIONS(2776), - [anon_sym_LT_EQ2] = ACTIONS(2774), - [anon_sym_GT_EQ2] = ACTIONS(2774), - [anon_sym_EQ_TILDE2] = ACTIONS(2774), - [anon_sym_BANG_TILDE2] = ACTIONS(2774), - [anon_sym_like2] = ACTIONS(2774), - [anon_sym_not_DASHlike2] = ACTIONS(2774), - [anon_sym_STAR_STAR2] = ACTIONS(2774), - [anon_sym_PLUS_PLUS2] = ACTIONS(2774), - [anon_sym_SLASH2] = ACTIONS(2776), - [anon_sym_mod2] = ACTIONS(2774), - [anon_sym_SLASH_SLASH2] = ACTIONS(2774), - [anon_sym_PLUS2] = ACTIONS(2776), - [anon_sym_bit_DASHshl2] = ACTIONS(2774), - [anon_sym_bit_DASHshr2] = ACTIONS(2774), - [anon_sym_bit_DASHand2] = ACTIONS(2774), - [anon_sym_bit_DASHxor2] = ACTIONS(2774), - [anon_sym_bit_DASHor2] = ACTIONS(2774), - [anon_sym_err_GT] = ACTIONS(2776), - [anon_sym_out_GT] = ACTIONS(2776), - [anon_sym_e_GT] = ACTIONS(2776), - [anon_sym_o_GT] = ACTIONS(2776), - [anon_sym_err_PLUSout_GT] = ACTIONS(2776), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2776), - [anon_sym_o_PLUSe_GT] = ACTIONS(2776), - [anon_sym_e_PLUSo_GT] = ACTIONS(2776), - [anon_sym_err_GT_GT] = ACTIONS(2774), - [anon_sym_out_GT_GT] = ACTIONS(2774), - [anon_sym_e_GT_GT] = ACTIONS(2774), - [anon_sym_o_GT_GT] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2774), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1035)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1035), - [anon_sym_in] = ACTIONS(2774), - [sym__newline] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2774), - [anon_sym_PIPE] = ACTIONS(2774), - [anon_sym_err_GT_PIPE] = ACTIONS(2774), - [anon_sym_out_GT_PIPE] = ACTIONS(2774), - [anon_sym_e_GT_PIPE] = ACTIONS(2774), - [anon_sym_o_GT_PIPE] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2774), - [anon_sym_RPAREN] = ACTIONS(2774), - [anon_sym_GT2] = ACTIONS(2776), - [anon_sym_DASH2] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_STAR2] = ACTIONS(2776), - [anon_sym_and2] = ACTIONS(2774), - [anon_sym_xor2] = ACTIONS(2774), - [anon_sym_or2] = ACTIONS(2774), - [anon_sym_not_DASHin2] = ACTIONS(2774), - [anon_sym_has2] = ACTIONS(2774), - [anon_sym_not_DASHhas2] = ACTIONS(2774), - [anon_sym_starts_DASHwith2] = ACTIONS(2774), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2774), - [anon_sym_ends_DASHwith2] = ACTIONS(2774), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2774), - [anon_sym_EQ_EQ2] = ACTIONS(2774), - [anon_sym_BANG_EQ2] = ACTIONS(2774), - [anon_sym_LT2] = ACTIONS(2776), - [anon_sym_LT_EQ2] = ACTIONS(2774), - [anon_sym_GT_EQ2] = ACTIONS(2774), - [anon_sym_EQ_TILDE2] = ACTIONS(2774), - [anon_sym_BANG_TILDE2] = ACTIONS(2774), - [anon_sym_like2] = ACTIONS(2774), - [anon_sym_not_DASHlike2] = ACTIONS(2774), - [anon_sym_STAR_STAR2] = ACTIONS(2774), - [anon_sym_PLUS_PLUS2] = ACTIONS(2774), - [anon_sym_SLASH2] = ACTIONS(2776), - [anon_sym_mod2] = ACTIONS(2774), - [anon_sym_SLASH_SLASH2] = ACTIONS(2774), - [anon_sym_PLUS2] = ACTIONS(2776), - [anon_sym_bit_DASHshl2] = ACTIONS(2774), - [anon_sym_bit_DASHshr2] = ACTIONS(2774), - [anon_sym_bit_DASHand2] = ACTIONS(2774), - [anon_sym_bit_DASHxor2] = ACTIONS(2774), - [anon_sym_bit_DASHor2] = ACTIONS(2774), - [anon_sym_err_GT] = ACTIONS(2776), - [anon_sym_out_GT] = ACTIONS(2776), - [anon_sym_e_GT] = ACTIONS(2776), - [anon_sym_o_GT] = ACTIONS(2776), - [anon_sym_err_PLUSout_GT] = ACTIONS(2776), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2776), - [anon_sym_o_PLUSe_GT] = ACTIONS(2776), - [anon_sym_e_PLUSo_GT] = ACTIONS(2776), - [anon_sym_err_GT_GT] = ACTIONS(2774), - [anon_sym_out_GT_GT] = ACTIONS(2774), - [anon_sym_e_GT_GT] = ACTIONS(2774), - [anon_sym_o_GT_GT] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2774), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1036)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1036), - [anon_sym_in] = ACTIONS(2774), - [sym__newline] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2774), - [anon_sym_PIPE] = ACTIONS(2774), - [anon_sym_err_GT_PIPE] = ACTIONS(2774), - [anon_sym_out_GT_PIPE] = ACTIONS(2774), - [anon_sym_e_GT_PIPE] = ACTIONS(2774), - [anon_sym_o_GT_PIPE] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2774), - [anon_sym_RPAREN] = ACTIONS(2774), - [anon_sym_GT2] = ACTIONS(2776), - [anon_sym_DASH2] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_STAR2] = ACTIONS(2776), - [anon_sym_and2] = ACTIONS(2774), - [anon_sym_xor2] = ACTIONS(2774), - [anon_sym_or2] = ACTIONS(2774), - [anon_sym_not_DASHin2] = ACTIONS(2774), - [anon_sym_has2] = ACTIONS(2774), - [anon_sym_not_DASHhas2] = ACTIONS(2774), - [anon_sym_starts_DASHwith2] = ACTIONS(2774), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2774), - [anon_sym_ends_DASHwith2] = ACTIONS(2774), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2774), - [anon_sym_EQ_EQ2] = ACTIONS(2774), - [anon_sym_BANG_EQ2] = ACTIONS(2774), - [anon_sym_LT2] = ACTIONS(2776), - [anon_sym_LT_EQ2] = ACTIONS(2774), - [anon_sym_GT_EQ2] = ACTIONS(2774), - [anon_sym_EQ_TILDE2] = ACTIONS(2774), - [anon_sym_BANG_TILDE2] = ACTIONS(2774), - [anon_sym_like2] = ACTIONS(2774), - [anon_sym_not_DASHlike2] = ACTIONS(2774), - [anon_sym_STAR_STAR2] = ACTIONS(2774), - [anon_sym_PLUS_PLUS2] = ACTIONS(2774), - [anon_sym_SLASH2] = ACTIONS(2776), - [anon_sym_mod2] = ACTIONS(2774), - [anon_sym_SLASH_SLASH2] = ACTIONS(2774), - [anon_sym_PLUS2] = ACTIONS(2776), - [anon_sym_bit_DASHshl2] = ACTIONS(2774), - [anon_sym_bit_DASHshr2] = ACTIONS(2774), - [anon_sym_bit_DASHand2] = ACTIONS(2774), - [anon_sym_bit_DASHxor2] = ACTIONS(2774), - [anon_sym_bit_DASHor2] = ACTIONS(2774), - [anon_sym_err_GT] = ACTIONS(2776), - [anon_sym_out_GT] = ACTIONS(2776), - [anon_sym_e_GT] = ACTIONS(2776), - [anon_sym_o_GT] = ACTIONS(2776), - [anon_sym_err_PLUSout_GT] = ACTIONS(2776), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2776), - [anon_sym_o_PLUSe_GT] = ACTIONS(2776), - [anon_sym_e_PLUSo_GT] = ACTIONS(2776), - [anon_sym_err_GT_GT] = ACTIONS(2774), - [anon_sym_out_GT_GT] = ACTIONS(2774), - [anon_sym_e_GT_GT] = ACTIONS(2774), - [anon_sym_o_GT_GT] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2774), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1037)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1037), - [anon_sym_in] = ACTIONS(2774), - [sym__newline] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2774), - [anon_sym_PIPE] = ACTIONS(2774), - [anon_sym_err_GT_PIPE] = ACTIONS(2774), - [anon_sym_out_GT_PIPE] = ACTIONS(2774), - [anon_sym_e_GT_PIPE] = ACTIONS(2774), - [anon_sym_o_GT_PIPE] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2774), - [anon_sym_RPAREN] = ACTIONS(2774), - [anon_sym_GT2] = ACTIONS(2776), - [anon_sym_DASH2] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_STAR2] = ACTIONS(2776), - [anon_sym_and2] = ACTIONS(2774), - [anon_sym_xor2] = ACTIONS(2774), - [anon_sym_or2] = ACTIONS(2774), - [anon_sym_not_DASHin2] = ACTIONS(2774), - [anon_sym_has2] = ACTIONS(2774), - [anon_sym_not_DASHhas2] = ACTIONS(2774), - [anon_sym_starts_DASHwith2] = ACTIONS(2774), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2774), - [anon_sym_ends_DASHwith2] = ACTIONS(2774), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2774), - [anon_sym_EQ_EQ2] = ACTIONS(2774), - [anon_sym_BANG_EQ2] = ACTIONS(2774), - [anon_sym_LT2] = ACTIONS(2776), - [anon_sym_LT_EQ2] = ACTIONS(2774), - [anon_sym_GT_EQ2] = ACTIONS(2774), - [anon_sym_EQ_TILDE2] = ACTIONS(2774), - [anon_sym_BANG_TILDE2] = ACTIONS(2774), - [anon_sym_like2] = ACTIONS(2774), - [anon_sym_not_DASHlike2] = ACTIONS(2774), - [anon_sym_STAR_STAR2] = ACTIONS(2774), - [anon_sym_PLUS_PLUS2] = ACTIONS(2774), - [anon_sym_SLASH2] = ACTIONS(2776), - [anon_sym_mod2] = ACTIONS(2774), - [anon_sym_SLASH_SLASH2] = ACTIONS(2774), - [anon_sym_PLUS2] = ACTIONS(2776), - [anon_sym_bit_DASHshl2] = ACTIONS(2774), - [anon_sym_bit_DASHshr2] = ACTIONS(2774), - [anon_sym_bit_DASHand2] = ACTIONS(2774), - [anon_sym_bit_DASHxor2] = ACTIONS(2774), - [anon_sym_bit_DASHor2] = ACTIONS(2774), - [anon_sym_err_GT] = ACTIONS(2776), - [anon_sym_out_GT] = ACTIONS(2776), - [anon_sym_e_GT] = ACTIONS(2776), - [anon_sym_o_GT] = ACTIONS(2776), - [anon_sym_err_PLUSout_GT] = ACTIONS(2776), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2776), - [anon_sym_o_PLUSe_GT] = ACTIONS(2776), - [anon_sym_e_PLUSo_GT] = ACTIONS(2776), - [anon_sym_err_GT_GT] = ACTIONS(2774), - [anon_sym_out_GT_GT] = ACTIONS(2774), - [anon_sym_e_GT_GT] = ACTIONS(2774), - [anon_sym_o_GT_GT] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2774), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1038)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1038), - [anon_sym_in] = ACTIONS(2774), - [sym__newline] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2774), - [anon_sym_PIPE] = ACTIONS(2774), - [anon_sym_err_GT_PIPE] = ACTIONS(2774), - [anon_sym_out_GT_PIPE] = ACTIONS(2774), - [anon_sym_e_GT_PIPE] = ACTIONS(2774), - [anon_sym_o_GT_PIPE] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2774), - [anon_sym_RPAREN] = ACTIONS(2774), - [anon_sym_GT2] = ACTIONS(2776), - [anon_sym_DASH2] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_STAR2] = ACTIONS(2776), - [anon_sym_and2] = ACTIONS(2774), - [anon_sym_xor2] = ACTIONS(2774), - [anon_sym_or2] = ACTIONS(2774), - [anon_sym_not_DASHin2] = ACTIONS(2774), - [anon_sym_has2] = ACTIONS(2774), - [anon_sym_not_DASHhas2] = ACTIONS(2774), - [anon_sym_starts_DASHwith2] = ACTIONS(2774), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2774), - [anon_sym_ends_DASHwith2] = ACTIONS(2774), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2774), - [anon_sym_EQ_EQ2] = ACTIONS(2774), - [anon_sym_BANG_EQ2] = ACTIONS(2774), - [anon_sym_LT2] = ACTIONS(2776), - [anon_sym_LT_EQ2] = ACTIONS(2774), - [anon_sym_GT_EQ2] = ACTIONS(2774), - [anon_sym_EQ_TILDE2] = ACTIONS(2774), - [anon_sym_BANG_TILDE2] = ACTIONS(2774), - [anon_sym_like2] = ACTIONS(2774), - [anon_sym_not_DASHlike2] = ACTIONS(2774), - [anon_sym_STAR_STAR2] = ACTIONS(2774), - [anon_sym_PLUS_PLUS2] = ACTIONS(2774), - [anon_sym_SLASH2] = ACTIONS(2776), - [anon_sym_mod2] = ACTIONS(2774), - [anon_sym_SLASH_SLASH2] = ACTIONS(2774), - [anon_sym_PLUS2] = ACTIONS(2776), - [anon_sym_bit_DASHshl2] = ACTIONS(2774), - [anon_sym_bit_DASHshr2] = ACTIONS(2774), - [anon_sym_bit_DASHand2] = ACTIONS(2774), - [anon_sym_bit_DASHxor2] = ACTIONS(2774), - [anon_sym_bit_DASHor2] = ACTIONS(2774), - [anon_sym_err_GT] = ACTIONS(2776), - [anon_sym_out_GT] = ACTIONS(2776), - [anon_sym_e_GT] = ACTIONS(2776), - [anon_sym_o_GT] = ACTIONS(2776), - [anon_sym_err_PLUSout_GT] = ACTIONS(2776), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2776), - [anon_sym_o_PLUSe_GT] = ACTIONS(2776), - [anon_sym_e_PLUSo_GT] = ACTIONS(2776), - [anon_sym_err_GT_GT] = ACTIONS(2774), - [anon_sym_out_GT_GT] = ACTIONS(2774), - [anon_sym_e_GT_GT] = ACTIONS(2774), - [anon_sym_o_GT_GT] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2774), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1039)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1039), - [anon_sym_in] = ACTIONS(2774), - [sym__newline] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2774), - [anon_sym_PIPE] = ACTIONS(2774), - [anon_sym_err_GT_PIPE] = ACTIONS(2774), - [anon_sym_out_GT_PIPE] = ACTIONS(2774), - [anon_sym_e_GT_PIPE] = ACTIONS(2774), - [anon_sym_o_GT_PIPE] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2774), - [anon_sym_RPAREN] = ACTIONS(2774), - [anon_sym_GT2] = ACTIONS(2776), - [anon_sym_DASH2] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_STAR2] = ACTIONS(2776), - [anon_sym_and2] = ACTIONS(2774), - [anon_sym_xor2] = ACTIONS(2774), - [anon_sym_or2] = ACTIONS(2774), - [anon_sym_not_DASHin2] = ACTIONS(2774), - [anon_sym_has2] = ACTIONS(2774), - [anon_sym_not_DASHhas2] = ACTIONS(2774), - [anon_sym_starts_DASHwith2] = ACTIONS(2774), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2774), - [anon_sym_ends_DASHwith2] = ACTIONS(2774), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2774), - [anon_sym_EQ_EQ2] = ACTIONS(2774), - [anon_sym_BANG_EQ2] = ACTIONS(2774), - [anon_sym_LT2] = ACTIONS(2776), - [anon_sym_LT_EQ2] = ACTIONS(2774), - [anon_sym_GT_EQ2] = ACTIONS(2774), - [anon_sym_EQ_TILDE2] = ACTIONS(2774), - [anon_sym_BANG_TILDE2] = ACTIONS(2774), - [anon_sym_like2] = ACTIONS(2774), - [anon_sym_not_DASHlike2] = ACTIONS(2774), - [anon_sym_STAR_STAR2] = ACTIONS(2774), - [anon_sym_PLUS_PLUS2] = ACTIONS(2774), - [anon_sym_SLASH2] = ACTIONS(2776), - [anon_sym_mod2] = ACTIONS(2774), - [anon_sym_SLASH_SLASH2] = ACTIONS(2774), - [anon_sym_PLUS2] = ACTIONS(2776), - [anon_sym_bit_DASHshl2] = ACTIONS(2774), - [anon_sym_bit_DASHshr2] = ACTIONS(2774), - [anon_sym_bit_DASHand2] = ACTIONS(2774), - [anon_sym_bit_DASHxor2] = ACTIONS(2774), - [anon_sym_bit_DASHor2] = ACTIONS(2774), - [anon_sym_err_GT] = ACTIONS(2776), - [anon_sym_out_GT] = ACTIONS(2776), - [anon_sym_e_GT] = ACTIONS(2776), - [anon_sym_o_GT] = ACTIONS(2776), - [anon_sym_err_PLUSout_GT] = ACTIONS(2776), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2776), - [anon_sym_o_PLUSe_GT] = ACTIONS(2776), - [anon_sym_e_PLUSo_GT] = ACTIONS(2776), - [anon_sym_err_GT_GT] = ACTIONS(2774), - [anon_sym_out_GT_GT] = ACTIONS(2774), - [anon_sym_e_GT_GT] = ACTIONS(2774), - [anon_sym_o_GT_GT] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2774), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1040)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1040), - [anon_sym_in] = ACTIONS(2774), - [sym__newline] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2774), - [anon_sym_PIPE] = ACTIONS(2774), - [anon_sym_err_GT_PIPE] = ACTIONS(2774), - [anon_sym_out_GT_PIPE] = ACTIONS(2774), - [anon_sym_e_GT_PIPE] = ACTIONS(2774), - [anon_sym_o_GT_PIPE] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2774), - [anon_sym_RPAREN] = ACTIONS(2774), - [anon_sym_GT2] = ACTIONS(2776), - [anon_sym_DASH2] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_STAR2] = ACTIONS(2776), - [anon_sym_and2] = ACTIONS(2774), - [anon_sym_xor2] = ACTIONS(2774), - [anon_sym_or2] = ACTIONS(2774), - [anon_sym_not_DASHin2] = ACTIONS(2774), - [anon_sym_has2] = ACTIONS(2774), - [anon_sym_not_DASHhas2] = ACTIONS(2774), - [anon_sym_starts_DASHwith2] = ACTIONS(2774), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2774), - [anon_sym_ends_DASHwith2] = ACTIONS(2774), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2774), - [anon_sym_EQ_EQ2] = ACTIONS(2774), - [anon_sym_BANG_EQ2] = ACTIONS(2774), - [anon_sym_LT2] = ACTIONS(2776), - [anon_sym_LT_EQ2] = ACTIONS(2774), - [anon_sym_GT_EQ2] = ACTIONS(2774), - [anon_sym_EQ_TILDE2] = ACTIONS(2774), - [anon_sym_BANG_TILDE2] = ACTIONS(2774), - [anon_sym_like2] = ACTIONS(2774), - [anon_sym_not_DASHlike2] = ACTIONS(2774), - [anon_sym_STAR_STAR2] = ACTIONS(2774), - [anon_sym_PLUS_PLUS2] = ACTIONS(2774), - [anon_sym_SLASH2] = ACTIONS(2776), - [anon_sym_mod2] = ACTIONS(2774), - [anon_sym_SLASH_SLASH2] = ACTIONS(2774), - [anon_sym_PLUS2] = ACTIONS(2776), - [anon_sym_bit_DASHshl2] = ACTIONS(2774), - [anon_sym_bit_DASHshr2] = ACTIONS(2774), - [anon_sym_bit_DASHand2] = ACTIONS(2774), - [anon_sym_bit_DASHxor2] = ACTIONS(2774), - [anon_sym_bit_DASHor2] = ACTIONS(2774), - [anon_sym_err_GT] = ACTIONS(2776), - [anon_sym_out_GT] = ACTIONS(2776), - [anon_sym_e_GT] = ACTIONS(2776), - [anon_sym_o_GT] = ACTIONS(2776), - [anon_sym_err_PLUSout_GT] = ACTIONS(2776), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2776), - [anon_sym_o_PLUSe_GT] = ACTIONS(2776), - [anon_sym_e_PLUSo_GT] = ACTIONS(2776), - [anon_sym_err_GT_GT] = ACTIONS(2774), - [anon_sym_out_GT_GT] = ACTIONS(2774), - [anon_sym_e_GT_GT] = ACTIONS(2774), - [anon_sym_o_GT_GT] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2774), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1041)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1041), - [anon_sym_in] = ACTIONS(2774), - [sym__newline] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2774), - [anon_sym_PIPE] = ACTIONS(2774), - [anon_sym_err_GT_PIPE] = ACTIONS(2774), - [anon_sym_out_GT_PIPE] = ACTIONS(2774), - [anon_sym_e_GT_PIPE] = ACTIONS(2774), - [anon_sym_o_GT_PIPE] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2774), - [anon_sym_RPAREN] = ACTIONS(2774), - [anon_sym_GT2] = ACTIONS(2776), - [anon_sym_DASH2] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_STAR2] = ACTIONS(2776), - [anon_sym_and2] = ACTIONS(2774), - [anon_sym_xor2] = ACTIONS(2774), - [anon_sym_or2] = ACTIONS(2774), - [anon_sym_not_DASHin2] = ACTIONS(2774), - [anon_sym_has2] = ACTIONS(2774), - [anon_sym_not_DASHhas2] = ACTIONS(2774), - [anon_sym_starts_DASHwith2] = ACTIONS(2774), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2774), - [anon_sym_ends_DASHwith2] = ACTIONS(2774), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2774), - [anon_sym_EQ_EQ2] = ACTIONS(2774), - [anon_sym_BANG_EQ2] = ACTIONS(2774), - [anon_sym_LT2] = ACTIONS(2776), - [anon_sym_LT_EQ2] = ACTIONS(2774), - [anon_sym_GT_EQ2] = ACTIONS(2774), - [anon_sym_EQ_TILDE2] = ACTIONS(2774), - [anon_sym_BANG_TILDE2] = ACTIONS(2774), - [anon_sym_like2] = ACTIONS(2774), - [anon_sym_not_DASHlike2] = ACTIONS(2774), - [anon_sym_STAR_STAR2] = ACTIONS(2774), - [anon_sym_PLUS_PLUS2] = ACTIONS(2774), - [anon_sym_SLASH2] = ACTIONS(2776), - [anon_sym_mod2] = ACTIONS(2774), - [anon_sym_SLASH_SLASH2] = ACTIONS(2774), - [anon_sym_PLUS2] = ACTIONS(2776), - [anon_sym_bit_DASHshl2] = ACTIONS(2774), - [anon_sym_bit_DASHshr2] = ACTIONS(2774), - [anon_sym_bit_DASHand2] = ACTIONS(2774), - [anon_sym_bit_DASHxor2] = ACTIONS(2774), - [anon_sym_bit_DASHor2] = ACTIONS(2774), - [anon_sym_err_GT] = ACTIONS(2776), - [anon_sym_out_GT] = ACTIONS(2776), - [anon_sym_e_GT] = ACTIONS(2776), - [anon_sym_o_GT] = ACTIONS(2776), - [anon_sym_err_PLUSout_GT] = ACTIONS(2776), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2776), - [anon_sym_o_PLUSe_GT] = ACTIONS(2776), - [anon_sym_e_PLUSo_GT] = ACTIONS(2776), - [anon_sym_err_GT_GT] = ACTIONS(2774), - [anon_sym_out_GT_GT] = ACTIONS(2774), - [anon_sym_e_GT_GT] = ACTIONS(2774), - [anon_sym_o_GT_GT] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2774), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1042)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1042), - [anon_sym_in] = ACTIONS(2774), - [sym__newline] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2774), - [anon_sym_PIPE] = ACTIONS(2774), - [anon_sym_err_GT_PIPE] = ACTIONS(2774), - [anon_sym_out_GT_PIPE] = ACTIONS(2774), - [anon_sym_e_GT_PIPE] = ACTIONS(2774), - [anon_sym_o_GT_PIPE] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2774), - [anon_sym_RPAREN] = ACTIONS(2774), - [anon_sym_GT2] = ACTIONS(2776), - [anon_sym_DASH2] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_STAR2] = ACTIONS(2776), - [anon_sym_and2] = ACTIONS(2774), - [anon_sym_xor2] = ACTIONS(2774), - [anon_sym_or2] = ACTIONS(2774), - [anon_sym_not_DASHin2] = ACTIONS(2774), - [anon_sym_has2] = ACTIONS(2774), - [anon_sym_not_DASHhas2] = ACTIONS(2774), - [anon_sym_starts_DASHwith2] = ACTIONS(2774), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2774), - [anon_sym_ends_DASHwith2] = ACTIONS(2774), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2774), - [anon_sym_EQ_EQ2] = ACTIONS(2774), - [anon_sym_BANG_EQ2] = ACTIONS(2774), - [anon_sym_LT2] = ACTIONS(2776), - [anon_sym_LT_EQ2] = ACTIONS(2774), - [anon_sym_GT_EQ2] = ACTIONS(2774), - [anon_sym_EQ_TILDE2] = ACTIONS(2774), - [anon_sym_BANG_TILDE2] = ACTIONS(2774), - [anon_sym_like2] = ACTIONS(2774), - [anon_sym_not_DASHlike2] = ACTIONS(2774), - [anon_sym_STAR_STAR2] = ACTIONS(2774), - [anon_sym_PLUS_PLUS2] = ACTIONS(2774), - [anon_sym_SLASH2] = ACTIONS(2776), - [anon_sym_mod2] = ACTIONS(2774), - [anon_sym_SLASH_SLASH2] = ACTIONS(2774), - [anon_sym_PLUS2] = ACTIONS(2776), - [anon_sym_bit_DASHshl2] = ACTIONS(2774), - [anon_sym_bit_DASHshr2] = ACTIONS(2774), - [anon_sym_bit_DASHand2] = ACTIONS(2774), - [anon_sym_bit_DASHxor2] = ACTIONS(2774), - [anon_sym_bit_DASHor2] = ACTIONS(2774), - [anon_sym_err_GT] = ACTIONS(2776), - [anon_sym_out_GT] = ACTIONS(2776), - [anon_sym_e_GT] = ACTIONS(2776), - [anon_sym_o_GT] = ACTIONS(2776), - [anon_sym_err_PLUSout_GT] = ACTIONS(2776), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2776), - [anon_sym_o_PLUSe_GT] = ACTIONS(2776), - [anon_sym_e_PLUSo_GT] = ACTIONS(2776), - [anon_sym_err_GT_GT] = ACTIONS(2774), - [anon_sym_out_GT_GT] = ACTIONS(2774), - [anon_sym_e_GT_GT] = ACTIONS(2774), - [anon_sym_o_GT_GT] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2774), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1043)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1043), - [anon_sym_in] = ACTIONS(2774), - [sym__newline] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2774), - [anon_sym_PIPE] = ACTIONS(2774), - [anon_sym_err_GT_PIPE] = ACTIONS(2774), - [anon_sym_out_GT_PIPE] = ACTIONS(2774), - [anon_sym_e_GT_PIPE] = ACTIONS(2774), - [anon_sym_o_GT_PIPE] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2774), - [anon_sym_RPAREN] = ACTIONS(2774), - [anon_sym_GT2] = ACTIONS(2776), - [anon_sym_DASH2] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_STAR2] = ACTIONS(2776), - [anon_sym_and2] = ACTIONS(2774), - [anon_sym_xor2] = ACTIONS(2774), - [anon_sym_or2] = ACTIONS(2774), - [anon_sym_not_DASHin2] = ACTIONS(2774), - [anon_sym_has2] = ACTIONS(2774), - [anon_sym_not_DASHhas2] = ACTIONS(2774), - [anon_sym_starts_DASHwith2] = ACTIONS(2774), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2774), - [anon_sym_ends_DASHwith2] = ACTIONS(2774), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2774), - [anon_sym_EQ_EQ2] = ACTIONS(2774), - [anon_sym_BANG_EQ2] = ACTIONS(2774), - [anon_sym_LT2] = ACTIONS(2776), - [anon_sym_LT_EQ2] = ACTIONS(2774), - [anon_sym_GT_EQ2] = ACTIONS(2774), - [anon_sym_EQ_TILDE2] = ACTIONS(2774), - [anon_sym_BANG_TILDE2] = ACTIONS(2774), - [anon_sym_like2] = ACTIONS(2774), - [anon_sym_not_DASHlike2] = ACTIONS(2774), - [anon_sym_STAR_STAR2] = ACTIONS(2774), - [anon_sym_PLUS_PLUS2] = ACTIONS(2774), - [anon_sym_SLASH2] = ACTIONS(2776), - [anon_sym_mod2] = ACTIONS(2774), - [anon_sym_SLASH_SLASH2] = ACTIONS(2774), - [anon_sym_PLUS2] = ACTIONS(2776), - [anon_sym_bit_DASHshl2] = ACTIONS(2774), - [anon_sym_bit_DASHshr2] = ACTIONS(2774), - [anon_sym_bit_DASHand2] = ACTIONS(2774), - [anon_sym_bit_DASHxor2] = ACTIONS(2774), - [anon_sym_bit_DASHor2] = ACTIONS(2774), - [anon_sym_err_GT] = ACTIONS(2776), - [anon_sym_out_GT] = ACTIONS(2776), - [anon_sym_e_GT] = ACTIONS(2776), - [anon_sym_o_GT] = ACTIONS(2776), - [anon_sym_err_PLUSout_GT] = ACTIONS(2776), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2776), - [anon_sym_o_PLUSe_GT] = ACTIONS(2776), - [anon_sym_e_PLUSo_GT] = ACTIONS(2776), - [anon_sym_err_GT_GT] = ACTIONS(2774), - [anon_sym_out_GT_GT] = ACTIONS(2774), - [anon_sym_e_GT_GT] = ACTIONS(2774), - [anon_sym_o_GT_GT] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2774), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1044)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1044), - [anon_sym_in] = ACTIONS(2774), - [sym__newline] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2774), - [anon_sym_PIPE] = ACTIONS(2774), - [anon_sym_err_GT_PIPE] = ACTIONS(2774), - [anon_sym_out_GT_PIPE] = ACTIONS(2774), - [anon_sym_e_GT_PIPE] = ACTIONS(2774), - [anon_sym_o_GT_PIPE] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2774), - [anon_sym_RPAREN] = ACTIONS(2774), - [anon_sym_GT2] = ACTIONS(2776), - [anon_sym_DASH2] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_STAR2] = ACTIONS(2776), - [anon_sym_and2] = ACTIONS(2774), - [anon_sym_xor2] = ACTIONS(2774), - [anon_sym_or2] = ACTIONS(2774), - [anon_sym_not_DASHin2] = ACTIONS(2774), - [anon_sym_has2] = ACTIONS(2774), - [anon_sym_not_DASHhas2] = ACTIONS(2774), - [anon_sym_starts_DASHwith2] = ACTIONS(2774), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2774), - [anon_sym_ends_DASHwith2] = ACTIONS(2774), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2774), - [anon_sym_EQ_EQ2] = ACTIONS(2774), - [anon_sym_BANG_EQ2] = ACTIONS(2774), - [anon_sym_LT2] = ACTIONS(2776), - [anon_sym_LT_EQ2] = ACTIONS(2774), - [anon_sym_GT_EQ2] = ACTIONS(2774), - [anon_sym_EQ_TILDE2] = ACTIONS(2774), - [anon_sym_BANG_TILDE2] = ACTIONS(2774), - [anon_sym_like2] = ACTIONS(2774), - [anon_sym_not_DASHlike2] = ACTIONS(2774), - [anon_sym_STAR_STAR2] = ACTIONS(2774), - [anon_sym_PLUS_PLUS2] = ACTIONS(2774), - [anon_sym_SLASH2] = ACTIONS(2776), - [anon_sym_mod2] = ACTIONS(2774), - [anon_sym_SLASH_SLASH2] = ACTIONS(2774), - [anon_sym_PLUS2] = ACTIONS(2776), - [anon_sym_bit_DASHshl2] = ACTIONS(2774), - [anon_sym_bit_DASHshr2] = ACTIONS(2774), - [anon_sym_bit_DASHand2] = ACTIONS(2774), - [anon_sym_bit_DASHxor2] = ACTIONS(2774), - [anon_sym_bit_DASHor2] = ACTIONS(2774), - [anon_sym_err_GT] = ACTIONS(2776), - [anon_sym_out_GT] = ACTIONS(2776), - [anon_sym_e_GT] = ACTIONS(2776), - [anon_sym_o_GT] = ACTIONS(2776), - [anon_sym_err_PLUSout_GT] = ACTIONS(2776), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2776), - [anon_sym_o_PLUSe_GT] = ACTIONS(2776), - [anon_sym_e_PLUSo_GT] = ACTIONS(2776), - [anon_sym_err_GT_GT] = ACTIONS(2774), - [anon_sym_out_GT_GT] = ACTIONS(2774), - [anon_sym_e_GT_GT] = ACTIONS(2774), - [anon_sym_o_GT_GT] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2774), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1045)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1045), - [anon_sym_in] = ACTIONS(2774), - [sym__newline] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2774), - [anon_sym_PIPE] = ACTIONS(2774), - [anon_sym_err_GT_PIPE] = ACTIONS(2774), - [anon_sym_out_GT_PIPE] = ACTIONS(2774), - [anon_sym_e_GT_PIPE] = ACTIONS(2774), - [anon_sym_o_GT_PIPE] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2774), - [anon_sym_RPAREN] = ACTIONS(2774), - [anon_sym_GT2] = ACTIONS(2776), - [anon_sym_DASH2] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_STAR2] = ACTIONS(2776), - [anon_sym_and2] = ACTIONS(2774), - [anon_sym_xor2] = ACTIONS(2774), - [anon_sym_or2] = ACTIONS(2774), - [anon_sym_not_DASHin2] = ACTIONS(2774), - [anon_sym_has2] = ACTIONS(2774), - [anon_sym_not_DASHhas2] = ACTIONS(2774), - [anon_sym_starts_DASHwith2] = ACTIONS(2774), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2774), - [anon_sym_ends_DASHwith2] = ACTIONS(2774), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2774), - [anon_sym_EQ_EQ2] = ACTIONS(2774), - [anon_sym_BANG_EQ2] = ACTIONS(2774), - [anon_sym_LT2] = ACTIONS(2776), - [anon_sym_LT_EQ2] = ACTIONS(2774), - [anon_sym_GT_EQ2] = ACTIONS(2774), - [anon_sym_EQ_TILDE2] = ACTIONS(2774), - [anon_sym_BANG_TILDE2] = ACTIONS(2774), - [anon_sym_like2] = ACTIONS(2774), - [anon_sym_not_DASHlike2] = ACTIONS(2774), - [anon_sym_STAR_STAR2] = ACTIONS(2774), - [anon_sym_PLUS_PLUS2] = ACTIONS(2774), - [anon_sym_SLASH2] = ACTIONS(2776), - [anon_sym_mod2] = ACTIONS(2774), - [anon_sym_SLASH_SLASH2] = ACTIONS(2774), - [anon_sym_PLUS2] = ACTIONS(2776), - [anon_sym_bit_DASHshl2] = ACTIONS(2774), - [anon_sym_bit_DASHshr2] = ACTIONS(2774), - [anon_sym_bit_DASHand2] = ACTIONS(2774), - [anon_sym_bit_DASHxor2] = ACTIONS(2774), - [anon_sym_bit_DASHor2] = ACTIONS(2774), - [anon_sym_err_GT] = ACTIONS(2776), - [anon_sym_out_GT] = ACTIONS(2776), - [anon_sym_e_GT] = ACTIONS(2776), - [anon_sym_o_GT] = ACTIONS(2776), - [anon_sym_err_PLUSout_GT] = ACTIONS(2776), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2776), - [anon_sym_o_PLUSe_GT] = ACTIONS(2776), - [anon_sym_e_PLUSo_GT] = ACTIONS(2776), - [anon_sym_err_GT_GT] = ACTIONS(2774), - [anon_sym_out_GT_GT] = ACTIONS(2774), - [anon_sym_e_GT_GT] = ACTIONS(2774), - [anon_sym_o_GT_GT] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2774), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1046)] = { - [aux_sym__repeat_newline] = STATE(1075), - [sym_comment] = STATE(1046), - [anon_sym_in] = ACTIONS(2548), - [sym__newline] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_GT2] = ACTIONS(2550), - [anon_sym_DASH2] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_STAR2] = ACTIONS(2550), - [anon_sym_and2] = ACTIONS(2548), - [anon_sym_xor2] = ACTIONS(2548), - [anon_sym_or2] = ACTIONS(2548), - [anon_sym_not_DASHin2] = ACTIONS(2548), - [anon_sym_has2] = ACTIONS(2548), - [anon_sym_not_DASHhas2] = ACTIONS(2548), - [anon_sym_starts_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), - [anon_sym_ends_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), - [anon_sym_EQ_EQ2] = ACTIONS(2548), - [anon_sym_BANG_EQ2] = ACTIONS(2548), - [anon_sym_LT2] = ACTIONS(2550), - [anon_sym_LT_EQ2] = ACTIONS(2548), - [anon_sym_GT_EQ2] = ACTIONS(2548), - [anon_sym_EQ_TILDE2] = ACTIONS(2548), - [anon_sym_BANG_TILDE2] = ACTIONS(2548), - [anon_sym_like2] = ACTIONS(2548), - [anon_sym_not_DASHlike2] = ACTIONS(2548), - [anon_sym_STAR_STAR2] = ACTIONS(2548), - [anon_sym_PLUS_PLUS2] = ACTIONS(2548), - [anon_sym_SLASH2] = ACTIONS(2550), - [anon_sym_mod2] = ACTIONS(2548), - [anon_sym_SLASH_SLASH2] = ACTIONS(2548), - [anon_sym_PLUS2] = ACTIONS(2550), - [anon_sym_bit_DASHshl2] = ACTIONS(2548), - [anon_sym_bit_DASHshr2] = ACTIONS(2548), - [anon_sym_bit_DASHand2] = ACTIONS(2548), - [anon_sym_bit_DASHxor2] = ACTIONS(2548), - [anon_sym_bit_DASHor2] = ACTIONS(2548), - [anon_sym_err_GT] = ACTIONS(2550), - [anon_sym_out_GT] = ACTIONS(2550), - [anon_sym_e_GT] = ACTIONS(2550), - [anon_sym_o_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT] = ACTIONS(2550), - [anon_sym_err_GT_GT] = ACTIONS(2548), - [anon_sym_out_GT_GT] = ACTIONS(2548), - [anon_sym_e_GT_GT] = ACTIONS(2548), - [anon_sym_o_GT_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1047)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1047), [anon_sym_in] = ACTIONS(2778), [sym__newline] = ACTIONS(2778), [anon_sym_SEMI] = ACTIONS(2778), @@ -126922,77 +125850,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1048)] = { - [aux_sym__repeat_newline] = STATE(1076), - [sym_comment] = STATE(1048), - [anon_sym_in] = ACTIONS(2548), - [sym__newline] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_GT2] = ACTIONS(2550), - [anon_sym_DASH2] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_STAR2] = ACTIONS(2550), - [anon_sym_and2] = ACTIONS(2548), - [anon_sym_xor2] = ACTIONS(2548), - [anon_sym_or2] = ACTIONS(2548), - [anon_sym_not_DASHin2] = ACTIONS(2548), - [anon_sym_has2] = ACTIONS(2548), - [anon_sym_not_DASHhas2] = ACTIONS(2548), - [anon_sym_starts_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), - [anon_sym_ends_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), - [anon_sym_EQ_EQ2] = ACTIONS(2548), - [anon_sym_BANG_EQ2] = ACTIONS(2548), - [anon_sym_LT2] = ACTIONS(2550), - [anon_sym_LT_EQ2] = ACTIONS(2548), - [anon_sym_GT_EQ2] = ACTIONS(2548), - [anon_sym_EQ_TILDE2] = ACTIONS(2548), - [anon_sym_BANG_TILDE2] = ACTIONS(2548), - [anon_sym_like2] = ACTIONS(2548), - [anon_sym_not_DASHlike2] = ACTIONS(2548), - [anon_sym_STAR_STAR2] = ACTIONS(2548), - [anon_sym_PLUS_PLUS2] = ACTIONS(2548), - [anon_sym_SLASH2] = ACTIONS(2550), - [anon_sym_mod2] = ACTIONS(2548), - [anon_sym_SLASH_SLASH2] = ACTIONS(2548), - [anon_sym_PLUS2] = ACTIONS(2550), - [anon_sym_bit_DASHshl2] = ACTIONS(2548), - [anon_sym_bit_DASHshr2] = ACTIONS(2548), - [anon_sym_bit_DASHand2] = ACTIONS(2548), - [anon_sym_bit_DASHxor2] = ACTIONS(2548), - [anon_sym_bit_DASHor2] = ACTIONS(2548), - [anon_sym_err_GT] = ACTIONS(2550), - [anon_sym_out_GT] = ACTIONS(2550), - [anon_sym_e_GT] = ACTIONS(2550), - [anon_sym_o_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT] = ACTIONS(2550), - [anon_sym_err_GT_GT] = ACTIONS(2548), - [anon_sym_out_GT_GT] = ACTIONS(2548), - [anon_sym_e_GT_GT] = ACTIONS(2548), - [anon_sym_o_GT_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1049)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1049), + [1033] = { + [aux_sym__repeat_newline] = STATE(1101), + [sym_comment] = STATE(1033), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [1034] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1034), [anon_sym_in] = ACTIONS(2778), [sym__newline] = ACTIONS(2778), [anon_sym_SEMI] = ACTIONS(2778), @@ -127058,213 +125986,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1050)] = { - [aux_sym__repeat_newline] = STATE(1077), - [sym_comment] = STATE(1050), - [anon_sym_in] = ACTIONS(2548), - [sym__newline] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_GT2] = ACTIONS(2550), - [anon_sym_DASH2] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_STAR2] = ACTIONS(2550), - [anon_sym_and2] = ACTIONS(2548), - [anon_sym_xor2] = ACTIONS(2548), - [anon_sym_or2] = ACTIONS(2548), - [anon_sym_not_DASHin2] = ACTIONS(2548), - [anon_sym_has2] = ACTIONS(2548), - [anon_sym_not_DASHhas2] = ACTIONS(2548), - [anon_sym_starts_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), - [anon_sym_ends_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), - [anon_sym_EQ_EQ2] = ACTIONS(2548), - [anon_sym_BANG_EQ2] = ACTIONS(2548), - [anon_sym_LT2] = ACTIONS(2550), - [anon_sym_LT_EQ2] = ACTIONS(2548), - [anon_sym_GT_EQ2] = ACTIONS(2548), - [anon_sym_EQ_TILDE2] = ACTIONS(2548), - [anon_sym_BANG_TILDE2] = ACTIONS(2548), - [anon_sym_like2] = ACTIONS(2548), - [anon_sym_not_DASHlike2] = ACTIONS(2548), - [anon_sym_STAR_STAR2] = ACTIONS(2548), - [anon_sym_PLUS_PLUS2] = ACTIONS(2548), - [anon_sym_SLASH2] = ACTIONS(2550), - [anon_sym_mod2] = ACTIONS(2548), - [anon_sym_SLASH_SLASH2] = ACTIONS(2548), - [anon_sym_PLUS2] = ACTIONS(2550), - [anon_sym_bit_DASHshl2] = ACTIONS(2548), - [anon_sym_bit_DASHshr2] = ACTIONS(2548), - [anon_sym_bit_DASHand2] = ACTIONS(2548), - [anon_sym_bit_DASHxor2] = ACTIONS(2548), - [anon_sym_bit_DASHor2] = ACTIONS(2548), - [anon_sym_err_GT] = ACTIONS(2550), - [anon_sym_out_GT] = ACTIONS(2550), - [anon_sym_e_GT] = ACTIONS(2550), - [anon_sym_o_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT] = ACTIONS(2550), - [anon_sym_err_GT_GT] = ACTIONS(2548), - [anon_sym_out_GT_GT] = ACTIONS(2548), - [anon_sym_e_GT_GT] = ACTIONS(2548), - [anon_sym_o_GT_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1051)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1051), - [anon_sym_in] = ACTIONS(2778), - [sym__newline] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2778), - [anon_sym_PIPE] = ACTIONS(2778), - [anon_sym_err_GT_PIPE] = ACTIONS(2778), - [anon_sym_out_GT_PIPE] = ACTIONS(2778), - [anon_sym_e_GT_PIPE] = ACTIONS(2778), - [anon_sym_o_GT_PIPE] = ACTIONS(2778), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2778), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2778), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2778), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2778), - [anon_sym_RPAREN] = ACTIONS(2778), - [anon_sym_GT2] = ACTIONS(2780), - [anon_sym_DASH2] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_STAR2] = ACTIONS(2780), - [anon_sym_and2] = ACTIONS(2778), - [anon_sym_xor2] = ACTIONS(2778), - [anon_sym_or2] = ACTIONS(2778), - [anon_sym_not_DASHin2] = ACTIONS(2778), - [anon_sym_has2] = ACTIONS(2778), - [anon_sym_not_DASHhas2] = ACTIONS(2778), - [anon_sym_starts_DASHwith2] = ACTIONS(2778), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2778), - [anon_sym_ends_DASHwith2] = ACTIONS(2778), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2778), - [anon_sym_EQ_EQ2] = ACTIONS(2778), - [anon_sym_BANG_EQ2] = ACTIONS(2778), - [anon_sym_LT2] = ACTIONS(2780), - [anon_sym_LT_EQ2] = ACTIONS(2778), - [anon_sym_GT_EQ2] = ACTIONS(2778), - [anon_sym_EQ_TILDE2] = ACTIONS(2778), - [anon_sym_BANG_TILDE2] = ACTIONS(2778), - [anon_sym_like2] = ACTIONS(2778), - [anon_sym_not_DASHlike2] = ACTIONS(2778), - [anon_sym_STAR_STAR2] = ACTIONS(2778), - [anon_sym_PLUS_PLUS2] = ACTIONS(2778), - [anon_sym_SLASH2] = ACTIONS(2780), - [anon_sym_mod2] = ACTIONS(2778), - [anon_sym_SLASH_SLASH2] = ACTIONS(2778), - [anon_sym_PLUS2] = ACTIONS(2780), - [anon_sym_bit_DASHshl2] = ACTIONS(2778), - [anon_sym_bit_DASHshr2] = ACTIONS(2778), - [anon_sym_bit_DASHand2] = ACTIONS(2778), - [anon_sym_bit_DASHxor2] = ACTIONS(2778), - [anon_sym_bit_DASHor2] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2778), - [anon_sym_out_GT_GT] = ACTIONS(2778), - [anon_sym_e_GT_GT] = ACTIONS(2778), - [anon_sym_o_GT_GT] = ACTIONS(2778), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2778), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2778), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2778), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), + [1035] = { + [aux_sym__repeat_newline] = STATE(1106), + [sym_comment] = STATE(1035), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [1036] = { + [aux_sym__repeat_newline] = STATE(1111), + [sym_comment] = STATE(1036), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [1037] = { + [aux_sym__repeat_newline] = STATE(1019), + [sym_comment] = STATE(1037), + [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_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_POUND] = ACTIONS(3), }, - [STATE(1052)] = { - [aux_sym__repeat_newline] = STATE(1151), - [sym_comment] = STATE(1052), - [anon_sym_in] = ACTIONS(2548), - [sym__newline] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_GT2] = ACTIONS(2550), - [anon_sym_DASH2] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_STAR2] = ACTIONS(2550), - [anon_sym_and2] = ACTIONS(2548), - [anon_sym_xor2] = ACTIONS(2548), - [anon_sym_or2] = ACTIONS(2548), - [anon_sym_not_DASHin2] = ACTIONS(2548), - [anon_sym_has2] = ACTIONS(2548), - [anon_sym_not_DASHhas2] = ACTIONS(2548), - [anon_sym_starts_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), - [anon_sym_ends_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), - [anon_sym_EQ_EQ2] = ACTIONS(2548), - [anon_sym_BANG_EQ2] = ACTIONS(2548), - [anon_sym_LT2] = ACTIONS(2550), - [anon_sym_LT_EQ2] = ACTIONS(2548), - [anon_sym_GT_EQ2] = ACTIONS(2548), - [anon_sym_EQ_TILDE2] = ACTIONS(2548), - [anon_sym_BANG_TILDE2] = ACTIONS(2548), - [anon_sym_like2] = ACTIONS(2548), - [anon_sym_not_DASHlike2] = ACTIONS(2548), - [anon_sym_STAR_STAR2] = ACTIONS(2548), - [anon_sym_PLUS_PLUS2] = ACTIONS(2548), - [anon_sym_SLASH2] = ACTIONS(2550), - [anon_sym_mod2] = ACTIONS(2548), - [anon_sym_SLASH_SLASH2] = ACTIONS(2548), - [anon_sym_PLUS2] = ACTIONS(2550), - [anon_sym_bit_DASHshl2] = ACTIONS(2548), - [anon_sym_bit_DASHshr2] = ACTIONS(2548), - [anon_sym_bit_DASHand2] = ACTIONS(2548), - [anon_sym_bit_DASHxor2] = ACTIONS(2548), - [anon_sym_bit_DASHor2] = ACTIONS(2548), - [anon_sym_err_GT] = ACTIONS(2550), - [anon_sym_out_GT] = ACTIONS(2550), - [anon_sym_e_GT] = ACTIONS(2550), - [anon_sym_o_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT] = ACTIONS(2550), - [anon_sym_err_GT_GT] = ACTIONS(2548), - [anon_sym_out_GT_GT] = ACTIONS(2548), - [anon_sym_e_GT_GT] = ACTIONS(2548), - [anon_sym_o_GT_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1053)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1053), + [1038] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1038), [anon_sym_in] = ACTIONS(2778), [sym__newline] = ACTIONS(2778), [anon_sym_SEMI] = ACTIONS(2778), @@ -127330,77 +126258,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1054)] = { - [aux_sym__repeat_newline] = STATE(1079), - [sym_comment] = STATE(1054), - [anon_sym_in] = ACTIONS(2548), - [sym__newline] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_GT2] = ACTIONS(2550), - [anon_sym_DASH2] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_STAR2] = ACTIONS(2550), - [anon_sym_and2] = ACTIONS(2548), - [anon_sym_xor2] = ACTIONS(2548), - [anon_sym_or2] = ACTIONS(2548), - [anon_sym_not_DASHin2] = ACTIONS(2548), - [anon_sym_has2] = ACTIONS(2548), - [anon_sym_not_DASHhas2] = ACTIONS(2548), - [anon_sym_starts_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), - [anon_sym_ends_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), - [anon_sym_EQ_EQ2] = ACTIONS(2548), - [anon_sym_BANG_EQ2] = ACTIONS(2548), - [anon_sym_LT2] = ACTIONS(2550), - [anon_sym_LT_EQ2] = ACTIONS(2548), - [anon_sym_GT_EQ2] = ACTIONS(2548), - [anon_sym_EQ_TILDE2] = ACTIONS(2548), - [anon_sym_BANG_TILDE2] = ACTIONS(2548), - [anon_sym_like2] = ACTIONS(2548), - [anon_sym_not_DASHlike2] = ACTIONS(2548), - [anon_sym_STAR_STAR2] = ACTIONS(2548), - [anon_sym_PLUS_PLUS2] = ACTIONS(2548), - [anon_sym_SLASH2] = ACTIONS(2550), - [anon_sym_mod2] = ACTIONS(2548), - [anon_sym_SLASH_SLASH2] = ACTIONS(2548), - [anon_sym_PLUS2] = ACTIONS(2550), - [anon_sym_bit_DASHshl2] = ACTIONS(2548), - [anon_sym_bit_DASHshr2] = ACTIONS(2548), - [anon_sym_bit_DASHand2] = ACTIONS(2548), - [anon_sym_bit_DASHxor2] = ACTIONS(2548), - [anon_sym_bit_DASHor2] = ACTIONS(2548), - [anon_sym_err_GT] = ACTIONS(2550), - [anon_sym_out_GT] = ACTIONS(2550), - [anon_sym_e_GT] = ACTIONS(2550), - [anon_sym_o_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT] = ACTIONS(2550), - [anon_sym_err_GT_GT] = ACTIONS(2548), - [anon_sym_out_GT_GT] = ACTIONS(2548), - [anon_sym_e_GT_GT] = ACTIONS(2548), - [anon_sym_o_GT_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1055)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1055), + [1039] = { + [sym_comment] = STATE(1039), + [ts_builtin_sym_end] = ACTIONS(2640), + [anon_sym_in] = ACTIONS(2640), + [sym__newline] = ACTIONS(2640), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_PIPE] = ACTIONS(2640), + [anon_sym_err_GT_PIPE] = ACTIONS(2640), + [anon_sym_out_GT_PIPE] = ACTIONS(2640), + [anon_sym_e_GT_PIPE] = ACTIONS(2640), + [anon_sym_o_GT_PIPE] = ACTIONS(2640), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2640), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2640), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2640), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2640), + [anon_sym_GT2] = ACTIONS(2642), + [anon_sym_DASH2] = ACTIONS(2640), + [anon_sym_STAR2] = ACTIONS(2642), + [anon_sym_and2] = ACTIONS(2640), + [anon_sym_xor2] = ACTIONS(2640), + [anon_sym_or2] = ACTIONS(2640), + [anon_sym_not_DASHin2] = ACTIONS(2640), + [anon_sym_has2] = ACTIONS(2640), + [anon_sym_not_DASHhas2] = ACTIONS(2640), + [anon_sym_starts_DASHwith2] = ACTIONS(2640), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2640), + [anon_sym_ends_DASHwith2] = ACTIONS(2640), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2640), + [anon_sym_EQ_EQ2] = ACTIONS(2640), + [anon_sym_BANG_EQ2] = ACTIONS(2640), + [anon_sym_LT2] = ACTIONS(2642), + [anon_sym_LT_EQ2] = ACTIONS(2640), + [anon_sym_GT_EQ2] = ACTIONS(2640), + [anon_sym_EQ_TILDE2] = ACTIONS(2640), + [anon_sym_BANG_TILDE2] = ACTIONS(2640), + [anon_sym_like2] = ACTIONS(2640), + [anon_sym_not_DASHlike2] = ACTIONS(2640), + [anon_sym_LPAREN2] = ACTIONS(2103), + [anon_sym_STAR_STAR2] = ACTIONS(2640), + [anon_sym_PLUS_PLUS2] = ACTIONS(2640), + [anon_sym_SLASH2] = ACTIONS(2642), + [anon_sym_mod2] = ACTIONS(2640), + [anon_sym_SLASH_SLASH2] = ACTIONS(2640), + [anon_sym_PLUS2] = ACTIONS(2642), + [anon_sym_bit_DASHshl2] = ACTIONS(2640), + [anon_sym_bit_DASHshr2] = ACTIONS(2640), + [anon_sym_bit_DASHand2] = ACTIONS(2640), + [anon_sym_bit_DASHxor2] = ACTIONS(2640), + [anon_sym_bit_DASHor2] = ACTIONS(2640), + [anon_sym_err_GT] = ACTIONS(2642), + [anon_sym_out_GT] = ACTIONS(2642), + [anon_sym_e_GT] = ACTIONS(2642), + [anon_sym_o_GT] = ACTIONS(2642), + [anon_sym_err_PLUSout_GT] = ACTIONS(2642), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2642), + [anon_sym_o_PLUSe_GT] = ACTIONS(2642), + [anon_sym_e_PLUSo_GT] = ACTIONS(2642), + [anon_sym_err_GT_GT] = ACTIONS(2640), + [anon_sym_out_GT_GT] = ACTIONS(2640), + [anon_sym_e_GT_GT] = ACTIONS(2640), + [anon_sym_o_GT_GT] = ACTIONS(2640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2640), + [sym__unquoted_pattern] = ACTIONS(2109), + [anon_sym_POUND] = ACTIONS(3), + }, + [1040] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1040), [anon_sym_in] = ACTIONS(2778), [sym__newline] = ACTIONS(2778), [anon_sym_SEMI] = ACTIONS(2778), @@ -127466,213 +126394,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1056)] = { - [aux_sym__repeat_newline] = STATE(1080), - [sym_comment] = STATE(1056), - [anon_sym_in] = ACTIONS(2548), - [sym__newline] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_GT2] = ACTIONS(2550), - [anon_sym_DASH2] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_STAR2] = ACTIONS(2550), - [anon_sym_and2] = ACTIONS(2548), - [anon_sym_xor2] = ACTIONS(2548), - [anon_sym_or2] = ACTIONS(2548), - [anon_sym_not_DASHin2] = ACTIONS(2548), - [anon_sym_has2] = ACTIONS(2548), - [anon_sym_not_DASHhas2] = ACTIONS(2548), - [anon_sym_starts_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), - [anon_sym_ends_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), - [anon_sym_EQ_EQ2] = ACTIONS(2548), - [anon_sym_BANG_EQ2] = ACTIONS(2548), - [anon_sym_LT2] = ACTIONS(2550), - [anon_sym_LT_EQ2] = ACTIONS(2548), - [anon_sym_GT_EQ2] = ACTIONS(2548), - [anon_sym_EQ_TILDE2] = ACTIONS(2548), - [anon_sym_BANG_TILDE2] = ACTIONS(2548), - [anon_sym_like2] = ACTIONS(2548), - [anon_sym_not_DASHlike2] = ACTIONS(2548), - [anon_sym_STAR_STAR2] = ACTIONS(2548), - [anon_sym_PLUS_PLUS2] = ACTIONS(2548), - [anon_sym_SLASH2] = ACTIONS(2550), - [anon_sym_mod2] = ACTIONS(2548), - [anon_sym_SLASH_SLASH2] = ACTIONS(2548), - [anon_sym_PLUS2] = ACTIONS(2550), - [anon_sym_bit_DASHshl2] = ACTIONS(2548), - [anon_sym_bit_DASHshr2] = ACTIONS(2548), - [anon_sym_bit_DASHand2] = ACTIONS(2548), - [anon_sym_bit_DASHxor2] = ACTIONS(2548), - [anon_sym_bit_DASHor2] = ACTIONS(2548), - [anon_sym_err_GT] = ACTIONS(2550), - [anon_sym_out_GT] = ACTIONS(2550), - [anon_sym_e_GT] = ACTIONS(2550), - [anon_sym_o_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT] = ACTIONS(2550), - [anon_sym_err_GT_GT] = ACTIONS(2548), - [anon_sym_out_GT_GT] = ACTIONS(2548), - [anon_sym_e_GT_GT] = ACTIONS(2548), - [anon_sym_o_GT_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1057)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1057), - [anon_sym_in] = ACTIONS(2778), - [sym__newline] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2778), - [anon_sym_PIPE] = ACTIONS(2778), - [anon_sym_err_GT_PIPE] = ACTIONS(2778), - [anon_sym_out_GT_PIPE] = ACTIONS(2778), - [anon_sym_e_GT_PIPE] = ACTIONS(2778), - [anon_sym_o_GT_PIPE] = ACTIONS(2778), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2778), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2778), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2778), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2778), - [anon_sym_RPAREN] = ACTIONS(2778), - [anon_sym_GT2] = ACTIONS(2780), - [anon_sym_DASH2] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_STAR2] = ACTIONS(2780), - [anon_sym_and2] = ACTIONS(2778), - [anon_sym_xor2] = ACTIONS(2778), - [anon_sym_or2] = ACTIONS(2778), - [anon_sym_not_DASHin2] = ACTIONS(2778), - [anon_sym_has2] = ACTIONS(2778), - [anon_sym_not_DASHhas2] = ACTIONS(2778), - [anon_sym_starts_DASHwith2] = ACTIONS(2778), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2778), - [anon_sym_ends_DASHwith2] = ACTIONS(2778), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2778), - [anon_sym_EQ_EQ2] = ACTIONS(2778), - [anon_sym_BANG_EQ2] = ACTIONS(2778), - [anon_sym_LT2] = ACTIONS(2780), - [anon_sym_LT_EQ2] = ACTIONS(2778), - [anon_sym_GT_EQ2] = ACTIONS(2778), - [anon_sym_EQ_TILDE2] = ACTIONS(2778), - [anon_sym_BANG_TILDE2] = ACTIONS(2778), - [anon_sym_like2] = ACTIONS(2778), - [anon_sym_not_DASHlike2] = ACTIONS(2778), - [anon_sym_STAR_STAR2] = ACTIONS(2778), - [anon_sym_PLUS_PLUS2] = ACTIONS(2778), - [anon_sym_SLASH2] = ACTIONS(2780), - [anon_sym_mod2] = ACTIONS(2778), - [anon_sym_SLASH_SLASH2] = ACTIONS(2778), - [anon_sym_PLUS2] = ACTIONS(2780), - [anon_sym_bit_DASHshl2] = ACTIONS(2778), - [anon_sym_bit_DASHshr2] = ACTIONS(2778), - [anon_sym_bit_DASHand2] = ACTIONS(2778), - [anon_sym_bit_DASHxor2] = ACTIONS(2778), - [anon_sym_bit_DASHor2] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2778), - [anon_sym_out_GT_GT] = ACTIONS(2778), - [anon_sym_e_GT_GT] = ACTIONS(2778), - [anon_sym_o_GT_GT] = ACTIONS(2778), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2778), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2778), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2778), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), + [1041] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1041), + [anon_sym_in] = ACTIONS(2782), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_err_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_GT_PIPE] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2784), + [anon_sym_DASH2] = ACTIONS(2782), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_STAR2] = ACTIONS(2784), + [anon_sym_and2] = ACTIONS(2782), + [anon_sym_xor2] = ACTIONS(2782), + [anon_sym_or2] = ACTIONS(2782), + [anon_sym_not_DASHin2] = ACTIONS(2782), + [anon_sym_has2] = ACTIONS(2782), + [anon_sym_not_DASHhas2] = ACTIONS(2782), + [anon_sym_starts_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2782), + [anon_sym_ends_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2782), + [anon_sym_EQ_EQ2] = ACTIONS(2782), + [anon_sym_BANG_EQ2] = ACTIONS(2782), + [anon_sym_LT2] = ACTIONS(2784), + [anon_sym_LT_EQ2] = ACTIONS(2782), + [anon_sym_GT_EQ2] = ACTIONS(2782), + [anon_sym_EQ_TILDE2] = ACTIONS(2782), + [anon_sym_BANG_TILDE2] = ACTIONS(2782), + [anon_sym_like2] = ACTIONS(2782), + [anon_sym_not_DASHlike2] = ACTIONS(2782), + [anon_sym_STAR_STAR2] = ACTIONS(2782), + [anon_sym_PLUS_PLUS2] = ACTIONS(2782), + [anon_sym_SLASH2] = ACTIONS(2784), + [anon_sym_mod2] = ACTIONS(2782), + [anon_sym_SLASH_SLASH2] = ACTIONS(2782), + [anon_sym_PLUS2] = ACTIONS(2784), + [anon_sym_bit_DASHshl2] = ACTIONS(2782), + [anon_sym_bit_DASHshr2] = ACTIONS(2782), + [anon_sym_bit_DASHand2] = ACTIONS(2782), + [anon_sym_bit_DASHxor2] = ACTIONS(2782), + [anon_sym_bit_DASHor2] = ACTIONS(2782), + [anon_sym_err_GT] = ACTIONS(2784), + [anon_sym_out_GT] = ACTIONS(2784), + [anon_sym_e_GT] = ACTIONS(2784), + [anon_sym_o_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT] = ACTIONS(2784), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1058)] = { - [aux_sym__repeat_newline] = STATE(1081), - [sym_comment] = STATE(1058), - [anon_sym_in] = ACTIONS(2548), - [sym__newline] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_GT2] = ACTIONS(2550), - [anon_sym_DASH2] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_STAR2] = ACTIONS(2550), - [anon_sym_and2] = ACTIONS(2548), - [anon_sym_xor2] = ACTIONS(2548), - [anon_sym_or2] = ACTIONS(2548), - [anon_sym_not_DASHin2] = ACTIONS(2548), - [anon_sym_has2] = ACTIONS(2548), - [anon_sym_not_DASHhas2] = ACTIONS(2548), - [anon_sym_starts_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), - [anon_sym_ends_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), - [anon_sym_EQ_EQ2] = ACTIONS(2548), - [anon_sym_BANG_EQ2] = ACTIONS(2548), - [anon_sym_LT2] = ACTIONS(2550), - [anon_sym_LT_EQ2] = ACTIONS(2548), - [anon_sym_GT_EQ2] = ACTIONS(2548), - [anon_sym_EQ_TILDE2] = ACTIONS(2548), - [anon_sym_BANG_TILDE2] = ACTIONS(2548), - [anon_sym_like2] = ACTIONS(2548), - [anon_sym_not_DASHlike2] = ACTIONS(2548), - [anon_sym_STAR_STAR2] = ACTIONS(2548), - [anon_sym_PLUS_PLUS2] = ACTIONS(2548), - [anon_sym_SLASH2] = ACTIONS(2550), - [anon_sym_mod2] = ACTIONS(2548), - [anon_sym_SLASH_SLASH2] = ACTIONS(2548), - [anon_sym_PLUS2] = ACTIONS(2550), - [anon_sym_bit_DASHshl2] = ACTIONS(2548), - [anon_sym_bit_DASHshr2] = ACTIONS(2548), - [anon_sym_bit_DASHand2] = ACTIONS(2548), - [anon_sym_bit_DASHxor2] = ACTIONS(2548), - [anon_sym_bit_DASHor2] = ACTIONS(2548), - [anon_sym_err_GT] = ACTIONS(2550), - [anon_sym_out_GT] = ACTIONS(2550), - [anon_sym_e_GT] = ACTIONS(2550), - [anon_sym_o_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT] = ACTIONS(2550), - [anon_sym_err_GT_GT] = ACTIONS(2548), - [anon_sym_out_GT_GT] = ACTIONS(2548), - [anon_sym_e_GT_GT] = ACTIONS(2548), - [anon_sym_o_GT_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1059)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1059), + [1042] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1042), [anon_sym_in] = ACTIONS(2778), [sym__newline] = ACTIONS(2778), [anon_sym_SEMI] = ACTIONS(2778), @@ -127738,77 +126530,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1060)] = { - [aux_sym__repeat_newline] = STATE(1082), - [sym_comment] = STATE(1060), - [anon_sym_in] = ACTIONS(2548), - [sym__newline] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_GT2] = ACTIONS(2550), - [anon_sym_DASH2] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_STAR2] = ACTIONS(2550), - [anon_sym_and2] = ACTIONS(2548), - [anon_sym_xor2] = ACTIONS(2548), - [anon_sym_or2] = ACTIONS(2548), - [anon_sym_not_DASHin2] = ACTIONS(2548), - [anon_sym_has2] = ACTIONS(2548), - [anon_sym_not_DASHhas2] = ACTIONS(2548), - [anon_sym_starts_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), - [anon_sym_ends_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), - [anon_sym_EQ_EQ2] = ACTIONS(2548), - [anon_sym_BANG_EQ2] = ACTIONS(2548), - [anon_sym_LT2] = ACTIONS(2550), - [anon_sym_LT_EQ2] = ACTIONS(2548), - [anon_sym_GT_EQ2] = ACTIONS(2548), - [anon_sym_EQ_TILDE2] = ACTIONS(2548), - [anon_sym_BANG_TILDE2] = ACTIONS(2548), - [anon_sym_like2] = ACTIONS(2548), - [anon_sym_not_DASHlike2] = ACTIONS(2548), - [anon_sym_STAR_STAR2] = ACTIONS(2548), - [anon_sym_PLUS_PLUS2] = ACTIONS(2548), - [anon_sym_SLASH2] = ACTIONS(2550), - [anon_sym_mod2] = ACTIONS(2548), - [anon_sym_SLASH_SLASH2] = ACTIONS(2548), - [anon_sym_PLUS2] = ACTIONS(2550), - [anon_sym_bit_DASHshl2] = ACTIONS(2548), - [anon_sym_bit_DASHshr2] = ACTIONS(2548), - [anon_sym_bit_DASHand2] = ACTIONS(2548), - [anon_sym_bit_DASHxor2] = ACTIONS(2548), - [anon_sym_bit_DASHor2] = ACTIONS(2548), - [anon_sym_err_GT] = ACTIONS(2550), - [anon_sym_out_GT] = ACTIONS(2550), - [anon_sym_e_GT] = ACTIONS(2550), - [anon_sym_o_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT] = ACTIONS(2550), - [anon_sym_err_GT_GT] = ACTIONS(2548), - [anon_sym_out_GT_GT] = ACTIONS(2548), - [anon_sym_e_GT_GT] = ACTIONS(2548), - [anon_sym_o_GT_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1061)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1061), + [1043] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1043), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_STAR2] = ACTIONS(2726), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2724), + [anon_sym_PLUS_PLUS2] = ACTIONS(2724), + [anon_sym_SLASH2] = ACTIONS(2726), + [anon_sym_mod2] = ACTIONS(2724), + [anon_sym_SLASH_SLASH2] = ACTIONS(2724), + [anon_sym_PLUS2] = ACTIONS(2726), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(3), + }, + [1044] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1044), [anon_sym_in] = ACTIONS(2778), [sym__newline] = ACTIONS(2778), [anon_sym_SEMI] = ACTIONS(2778), @@ -127874,281 +126666,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1062)] = { - [aux_sym__repeat_newline] = STATE(1083), - [sym_comment] = STATE(1062), - [anon_sym_in] = ACTIONS(2782), - [sym__newline] = ACTIONS(2782), - [anon_sym_SEMI] = ACTIONS(2782), - [anon_sym_PIPE] = ACTIONS(2782), - [anon_sym_err_GT_PIPE] = ACTIONS(2782), - [anon_sym_out_GT_PIPE] = ACTIONS(2782), - [anon_sym_e_GT_PIPE] = ACTIONS(2782), - [anon_sym_o_GT_PIPE] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), - [anon_sym_RPAREN] = ACTIONS(2782), - [anon_sym_GT2] = ACTIONS(2784), - [anon_sym_DASH2] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2782), - [anon_sym_STAR2] = ACTIONS(2784), - [anon_sym_and2] = ACTIONS(2782), - [anon_sym_xor2] = ACTIONS(2782), - [anon_sym_or2] = ACTIONS(2782), - [anon_sym_not_DASHin2] = ACTIONS(2782), - [anon_sym_has2] = ACTIONS(2782), - [anon_sym_not_DASHhas2] = ACTIONS(2782), - [anon_sym_starts_DASHwith2] = ACTIONS(2782), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2782), - [anon_sym_ends_DASHwith2] = ACTIONS(2782), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2782), - [anon_sym_EQ_EQ2] = ACTIONS(2782), - [anon_sym_BANG_EQ2] = ACTIONS(2782), - [anon_sym_LT2] = ACTIONS(2784), - [anon_sym_LT_EQ2] = ACTIONS(2782), - [anon_sym_GT_EQ2] = ACTIONS(2782), - [anon_sym_EQ_TILDE2] = ACTIONS(2782), - [anon_sym_BANG_TILDE2] = ACTIONS(2782), - [anon_sym_like2] = ACTIONS(2782), - [anon_sym_not_DASHlike2] = ACTIONS(2782), - [anon_sym_STAR_STAR2] = ACTIONS(2782), - [anon_sym_PLUS_PLUS2] = ACTIONS(2782), - [anon_sym_SLASH2] = ACTIONS(2784), - [anon_sym_mod2] = ACTIONS(2782), - [anon_sym_SLASH_SLASH2] = ACTIONS(2782), - [anon_sym_PLUS2] = ACTIONS(2784), - [anon_sym_bit_DASHshl2] = ACTIONS(2782), - [anon_sym_bit_DASHshr2] = ACTIONS(2782), - [anon_sym_bit_DASHand2] = ACTIONS(2782), - [anon_sym_bit_DASHxor2] = ACTIONS(2782), - [anon_sym_bit_DASHor2] = ACTIONS(2782), - [anon_sym_err_GT] = ACTIONS(2784), - [anon_sym_out_GT] = ACTIONS(2784), - [anon_sym_e_GT] = ACTIONS(2784), - [anon_sym_o_GT] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT] = ACTIONS(2784), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1063)] = { - [aux_sym__repeat_newline] = STATE(1084), - [sym_comment] = STATE(1063), - [anon_sym_in] = ACTIONS(2548), - [sym__newline] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_GT2] = ACTIONS(2550), - [anon_sym_DASH2] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_STAR2] = ACTIONS(2550), - [anon_sym_and2] = ACTIONS(2548), - [anon_sym_xor2] = ACTIONS(2548), - [anon_sym_or2] = ACTIONS(2548), - [anon_sym_not_DASHin2] = ACTIONS(2548), - [anon_sym_has2] = ACTIONS(2548), - [anon_sym_not_DASHhas2] = ACTIONS(2548), - [anon_sym_starts_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), - [anon_sym_ends_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), - [anon_sym_EQ_EQ2] = ACTIONS(2548), - [anon_sym_BANG_EQ2] = ACTIONS(2548), - [anon_sym_LT2] = ACTIONS(2550), - [anon_sym_LT_EQ2] = ACTIONS(2548), - [anon_sym_GT_EQ2] = ACTIONS(2548), - [anon_sym_EQ_TILDE2] = ACTIONS(2548), - [anon_sym_BANG_TILDE2] = ACTIONS(2548), - [anon_sym_like2] = ACTIONS(2548), - [anon_sym_not_DASHlike2] = ACTIONS(2548), - [anon_sym_STAR_STAR2] = ACTIONS(2548), - [anon_sym_PLUS_PLUS2] = ACTIONS(2548), - [anon_sym_SLASH2] = ACTIONS(2550), - [anon_sym_mod2] = ACTIONS(2548), - [anon_sym_SLASH_SLASH2] = ACTIONS(2548), - [anon_sym_PLUS2] = ACTIONS(2550), - [anon_sym_bit_DASHshl2] = ACTIONS(2548), - [anon_sym_bit_DASHshr2] = ACTIONS(2548), - [anon_sym_bit_DASHand2] = ACTIONS(2548), - [anon_sym_bit_DASHxor2] = ACTIONS(2548), - [anon_sym_bit_DASHor2] = ACTIONS(2548), - [anon_sym_err_GT] = ACTIONS(2550), - [anon_sym_out_GT] = ACTIONS(2550), - [anon_sym_e_GT] = ACTIONS(2550), - [anon_sym_o_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT] = ACTIONS(2550), - [anon_sym_err_GT_GT] = ACTIONS(2548), - [anon_sym_out_GT_GT] = ACTIONS(2548), - [anon_sym_e_GT_GT] = ACTIONS(2548), - [anon_sym_o_GT_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1064)] = { - [sym_comment] = STATE(1064), - [aux_sym_cmd_identifier_token2] = ACTIONS(2786), - [anon_sym_in] = ACTIONS(811), - [sym__newline] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_err_GT_PIPE] = ACTIONS(914), - [anon_sym_out_GT_PIPE] = ACTIONS(914), - [anon_sym_e_GT_PIPE] = ACTIONS(914), - [anon_sym_o_GT_PIPE] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(914), - [anon_sym_GT2] = ACTIONS(811), - [anon_sym_DASH2] = ACTIONS(811), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_STAR2] = ACTIONS(811), - [anon_sym_and2] = ACTIONS(811), - [anon_sym_xor2] = ACTIONS(811), - [anon_sym_or2] = ACTIONS(811), - [anon_sym_not_DASHin2] = ACTIONS(811), - [anon_sym_has2] = ACTIONS(811), - [anon_sym_not_DASHhas2] = ACTIONS(811), - [anon_sym_starts_DASHwith2] = ACTIONS(811), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(811), - [anon_sym_ends_DASHwith2] = ACTIONS(811), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(811), - [anon_sym_EQ_EQ2] = ACTIONS(914), - [anon_sym_BANG_EQ2] = ACTIONS(914), - [anon_sym_LT2] = ACTIONS(811), - [anon_sym_LT_EQ2] = ACTIONS(914), - [anon_sym_GT_EQ2] = ACTIONS(914), - [anon_sym_EQ_TILDE2] = ACTIONS(914), - [anon_sym_BANG_TILDE2] = ACTIONS(811), - [anon_sym_like2] = ACTIONS(811), - [anon_sym_not_DASHlike2] = ACTIONS(811), - [anon_sym_STAR_STAR2] = ACTIONS(811), - [anon_sym_PLUS_PLUS2] = ACTIONS(811), - [anon_sym_SLASH2] = ACTIONS(811), - [anon_sym_mod2] = ACTIONS(811), - [anon_sym_SLASH_SLASH2] = ACTIONS(811), - [anon_sym_PLUS2] = ACTIONS(811), - [anon_sym_bit_DASHshl2] = ACTIONS(811), - [anon_sym_bit_DASHshr2] = ACTIONS(811), - [anon_sym_bit_DASHand2] = ACTIONS(811), - [anon_sym_bit_DASHxor2] = ACTIONS(811), - [anon_sym_bit_DASHor2] = ACTIONS(811), - [anon_sym_COLON2] = ACTIONS(914), - [anon_sym_err_GT] = ACTIONS(811), - [anon_sym_out_GT] = ACTIONS(811), - [anon_sym_e_GT] = ACTIONS(811), - [anon_sym_o_GT] = ACTIONS(811), - [anon_sym_err_PLUSout_GT] = ACTIONS(811), - [anon_sym_out_PLUSerr_GT] = ACTIONS(811), - [anon_sym_o_PLUSe_GT] = ACTIONS(811), - [anon_sym_e_PLUSo_GT] = ACTIONS(811), - [anon_sym_err_GT_GT] = ACTIONS(914), - [anon_sym_out_GT_GT] = ACTIONS(914), - [anon_sym_e_GT_GT] = ACTIONS(914), - [anon_sym_o_GT_GT] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(1065)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1065), - [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_POUND] = ACTIONS(3), - }, - [STATE(1066)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1066), + [1045] = { + [sym_comment] = STATE(1045), + [ts_builtin_sym_end] = ACTIONS(2099), + [anon_sym_in] = ACTIONS(2099), + [sym__newline] = ACTIONS(2099), + [anon_sym_SEMI] = ACTIONS(2099), + [anon_sym_PIPE] = ACTIONS(2099), + [anon_sym_err_GT_PIPE] = ACTIONS(2099), + [anon_sym_out_GT_PIPE] = ACTIONS(2099), + [anon_sym_e_GT_PIPE] = ACTIONS(2099), + [anon_sym_o_GT_PIPE] = ACTIONS(2099), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2099), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2099), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2099), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2099), + [anon_sym_GT2] = ACTIONS(2101), + [anon_sym_DASH2] = ACTIONS(2099), + [anon_sym_STAR2] = ACTIONS(2101), + [anon_sym_and2] = ACTIONS(2099), + [anon_sym_xor2] = ACTIONS(2099), + [anon_sym_or2] = ACTIONS(2099), + [anon_sym_not_DASHin2] = ACTIONS(2099), + [anon_sym_has2] = ACTIONS(2099), + [anon_sym_not_DASHhas2] = ACTIONS(2099), + [anon_sym_starts_DASHwith2] = ACTIONS(2099), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2099), + [anon_sym_ends_DASHwith2] = ACTIONS(2099), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2099), + [anon_sym_EQ_EQ2] = ACTIONS(2099), + [anon_sym_BANG_EQ2] = ACTIONS(2099), + [anon_sym_LT2] = ACTIONS(2101), + [anon_sym_LT_EQ2] = ACTIONS(2099), + [anon_sym_GT_EQ2] = ACTIONS(2099), + [anon_sym_EQ_TILDE2] = ACTIONS(2099), + [anon_sym_BANG_TILDE2] = ACTIONS(2099), + [anon_sym_like2] = ACTIONS(2099), + [anon_sym_not_DASHlike2] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(2103), + [anon_sym_STAR_STAR2] = ACTIONS(2099), + [anon_sym_PLUS_PLUS2] = ACTIONS(2099), + [anon_sym_SLASH2] = ACTIONS(2101), + [anon_sym_mod2] = ACTIONS(2099), + [anon_sym_SLASH_SLASH2] = ACTIONS(2099), + [anon_sym_PLUS2] = ACTIONS(2101), + [anon_sym_bit_DASHshl2] = ACTIONS(2099), + [anon_sym_bit_DASHshr2] = ACTIONS(2099), + [anon_sym_bit_DASHand2] = ACTIONS(2099), + [anon_sym_bit_DASHxor2] = ACTIONS(2099), + [anon_sym_bit_DASHor2] = ACTIONS(2099), + [anon_sym_err_GT] = ACTIONS(2101), + [anon_sym_out_GT] = ACTIONS(2101), + [anon_sym_e_GT] = ACTIONS(2101), + [anon_sym_o_GT] = ACTIONS(2101), + [anon_sym_err_PLUSout_GT] = ACTIONS(2101), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2101), + [anon_sym_o_PLUSe_GT] = ACTIONS(2101), + [anon_sym_e_PLUSo_GT] = ACTIONS(2101), + [anon_sym_err_GT_GT] = ACTIONS(2099), + [anon_sym_out_GT_GT] = ACTIONS(2099), + [anon_sym_e_GT_GT] = ACTIONS(2099), + [anon_sym_o_GT_GT] = ACTIONS(2099), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2099), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2099), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2099), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2099), + [sym__unquoted_pattern] = ACTIONS(2109), + [anon_sym_POUND] = ACTIONS(3), + }, + [1046] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1046), [anon_sym_in] = ACTIONS(2778), [sym__newline] = ACTIONS(2778), [anon_sym_SEMI] = ACTIONS(2778), @@ -128214,77 +126802,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1067)] = { - [aux_sym__repeat_newline] = STATE(1085), - [sym_comment] = STATE(1067), - [anon_sym_in] = ACTIONS(2548), - [sym__newline] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_GT2] = ACTIONS(2550), - [anon_sym_DASH2] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_STAR2] = ACTIONS(2550), - [anon_sym_and2] = ACTIONS(2548), - [anon_sym_xor2] = ACTIONS(2548), - [anon_sym_or2] = ACTIONS(2548), - [anon_sym_not_DASHin2] = ACTIONS(2548), - [anon_sym_has2] = ACTIONS(2548), - [anon_sym_not_DASHhas2] = ACTIONS(2548), - [anon_sym_starts_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), - [anon_sym_ends_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), - [anon_sym_EQ_EQ2] = ACTIONS(2548), - [anon_sym_BANG_EQ2] = ACTIONS(2548), - [anon_sym_LT2] = ACTIONS(2550), - [anon_sym_LT_EQ2] = ACTIONS(2548), - [anon_sym_GT_EQ2] = ACTIONS(2548), - [anon_sym_EQ_TILDE2] = ACTIONS(2548), - [anon_sym_BANG_TILDE2] = ACTIONS(2548), - [anon_sym_like2] = ACTIONS(2548), - [anon_sym_not_DASHlike2] = ACTIONS(2548), - [anon_sym_STAR_STAR2] = ACTIONS(2548), - [anon_sym_PLUS_PLUS2] = ACTIONS(2548), - [anon_sym_SLASH2] = ACTIONS(2550), - [anon_sym_mod2] = ACTIONS(2548), - [anon_sym_SLASH_SLASH2] = ACTIONS(2548), - [anon_sym_PLUS2] = ACTIONS(2550), - [anon_sym_bit_DASHshl2] = ACTIONS(2548), - [anon_sym_bit_DASHshr2] = ACTIONS(2548), - [anon_sym_bit_DASHand2] = ACTIONS(2548), - [anon_sym_bit_DASHxor2] = ACTIONS(2548), - [anon_sym_bit_DASHor2] = ACTIONS(2548), - [anon_sym_err_GT] = ACTIONS(2550), - [anon_sym_out_GT] = ACTIONS(2550), - [anon_sym_e_GT] = ACTIONS(2550), - [anon_sym_o_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT] = ACTIONS(2550), - [anon_sym_err_GT_GT] = ACTIONS(2548), - [anon_sym_out_GT_GT] = ACTIONS(2548), - [anon_sym_e_GT_GT] = ACTIONS(2548), - [anon_sym_o_GT_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1068)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1068), + [1047] = { + [aux_sym__repeat_newline] = STATE(4441), + [sym__match_pattern_expression] = STATE(4653), + [sym__match_pattern_value] = STATE(4894), + [sym__match_pattern_list_body] = STATE(4914), + [sym__match_pattern_list] = STATE(4906), + [sym__match_pattern_rest] = STATE(5325), + [sym__match_pattern_record] = STATE(4932), + [sym_expr_parenthesized] = STATE(4084), + [sym_val_range] = STATE(4894), + [sym__val_range] = STATE(5490), + [sym_val_nothing] = STATE(4932), + [sym_val_bool] = STATE(4451), + [sym_val_variable] = STATE(4085), + [sym_val_number] = STATE(4932), + [sym__val_number_decimal] = STATE(3772), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4932), + [sym_val_filesize] = STATE(4932), + [sym_val_binary] = STATE(4932), + [sym_val_string] = STATE(4932), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_list] = STATE(5492), + [sym__table_head] = STATE(3895), + [sym_val_table] = STATE(4932), + [sym__unquoted_in_list] = STATE(4653), + [sym__unquoted_anonymous_prefix] = STATE(5490), + [sym_comment] = STATE(1047), + [aux_sym__types_body_repeat1] = STATE(1425), + [aux_sym_parameter_repeat2] = STATE(4282), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1443), + [anon_sym_true] = ACTIONS(1406), + [anon_sym_false] = ACTIONS(1406), + [anon_sym_null] = ACTIONS(1408), + [aux_sym_cmd_identifier_token3] = ACTIONS(1410), + [aux_sym_cmd_identifier_token4] = ACTIONS(1410), + [aux_sym_cmd_identifier_token5] = ACTIONS(1410), + [sym__newline] = ACTIONS(2766), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_RBRACK] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1420), + [anon_sym_DOLLAR] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_DOT_DOT] = ACTIONS(1426), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1428), + [anon_sym_DOT_DOT_LT] = ACTIONS(1428), + [aux_sym__val_number_decimal_token1] = ACTIONS(1430), + [aux_sym__val_number_decimal_token2] = ACTIONS(1432), + [aux_sym__val_number_decimal_token3] = ACTIONS(1434), + [aux_sym__val_number_decimal_token4] = ACTIONS(1434), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(2776), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [1048] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1048), [anon_sym_in] = ACTIONS(2778), [sym__newline] = ACTIONS(2778), [anon_sym_SEMI] = ACTIONS(2778), @@ -128350,77 +126938,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1069)] = { - [aux_sym__repeat_newline] = STATE(1086), - [sym_comment] = STATE(1069), - [anon_sym_in] = ACTIONS(2548), - [sym__newline] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_GT2] = ACTIONS(2550), - [anon_sym_DASH2] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_STAR2] = ACTIONS(2550), - [anon_sym_and2] = ACTIONS(2548), - [anon_sym_xor2] = ACTIONS(2548), - [anon_sym_or2] = ACTIONS(2548), - [anon_sym_not_DASHin2] = ACTIONS(2548), - [anon_sym_has2] = ACTIONS(2548), - [anon_sym_not_DASHhas2] = ACTIONS(2548), - [anon_sym_starts_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), - [anon_sym_ends_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), - [anon_sym_EQ_EQ2] = ACTIONS(2548), - [anon_sym_BANG_EQ2] = ACTIONS(2548), - [anon_sym_LT2] = ACTIONS(2550), - [anon_sym_LT_EQ2] = ACTIONS(2548), - [anon_sym_GT_EQ2] = ACTIONS(2548), - [anon_sym_EQ_TILDE2] = ACTIONS(2548), - [anon_sym_BANG_TILDE2] = ACTIONS(2548), - [anon_sym_like2] = ACTIONS(2548), - [anon_sym_not_DASHlike2] = ACTIONS(2548), - [anon_sym_STAR_STAR2] = ACTIONS(2548), - [anon_sym_PLUS_PLUS2] = ACTIONS(2548), - [anon_sym_SLASH2] = ACTIONS(2550), - [anon_sym_mod2] = ACTIONS(2548), - [anon_sym_SLASH_SLASH2] = ACTIONS(2548), - [anon_sym_PLUS2] = ACTIONS(2550), - [anon_sym_bit_DASHshl2] = ACTIONS(2548), - [anon_sym_bit_DASHshr2] = ACTIONS(2548), - [anon_sym_bit_DASHand2] = ACTIONS(2548), - [anon_sym_bit_DASHxor2] = ACTIONS(2548), - [anon_sym_bit_DASHor2] = ACTIONS(2548), - [anon_sym_err_GT] = ACTIONS(2550), - [anon_sym_out_GT] = ACTIONS(2550), - [anon_sym_e_GT] = ACTIONS(2550), - [anon_sym_o_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT] = ACTIONS(2550), - [anon_sym_err_GT_GT] = ACTIONS(2548), - [anon_sym_out_GT_GT] = ACTIONS(2548), - [anon_sym_e_GT_GT] = ACTIONS(2548), - [anon_sym_o_GT_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1070)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1070), + [1049] = { + [aux_sym__repeat_newline] = STATE(1116), + [sym_comment] = STATE(1049), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [1050] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1050), [anon_sym_in] = ACTIONS(2778), [sym__newline] = ACTIONS(2778), [anon_sym_SEMI] = ACTIONS(2778), @@ -128486,77 +127074,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1071)] = { - [aux_sym__repeat_newline] = STATE(1087), - [sym_comment] = STATE(1071), - [anon_sym_in] = ACTIONS(2548), - [sym__newline] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_GT2] = ACTIONS(2550), - [anon_sym_DASH2] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_STAR2] = ACTIONS(2550), - [anon_sym_and2] = ACTIONS(2548), - [anon_sym_xor2] = ACTIONS(2548), - [anon_sym_or2] = ACTIONS(2548), - [anon_sym_not_DASHin2] = ACTIONS(2548), - [anon_sym_has2] = ACTIONS(2548), - [anon_sym_not_DASHhas2] = ACTIONS(2548), - [anon_sym_starts_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), - [anon_sym_ends_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), - [anon_sym_EQ_EQ2] = ACTIONS(2548), - [anon_sym_BANG_EQ2] = ACTIONS(2548), - [anon_sym_LT2] = ACTIONS(2550), - [anon_sym_LT_EQ2] = ACTIONS(2548), - [anon_sym_GT_EQ2] = ACTIONS(2548), - [anon_sym_EQ_TILDE2] = ACTIONS(2548), - [anon_sym_BANG_TILDE2] = ACTIONS(2548), - [anon_sym_like2] = ACTIONS(2548), - [anon_sym_not_DASHlike2] = ACTIONS(2548), - [anon_sym_STAR_STAR2] = ACTIONS(2548), - [anon_sym_PLUS_PLUS2] = ACTIONS(2548), - [anon_sym_SLASH2] = ACTIONS(2550), - [anon_sym_mod2] = ACTIONS(2548), - [anon_sym_SLASH_SLASH2] = ACTIONS(2548), - [anon_sym_PLUS2] = ACTIONS(2550), - [anon_sym_bit_DASHshl2] = ACTIONS(2548), - [anon_sym_bit_DASHshr2] = ACTIONS(2548), - [anon_sym_bit_DASHand2] = ACTIONS(2548), - [anon_sym_bit_DASHxor2] = ACTIONS(2548), - [anon_sym_bit_DASHor2] = ACTIONS(2548), - [anon_sym_err_GT] = ACTIONS(2550), - [anon_sym_out_GT] = ACTIONS(2550), - [anon_sym_e_GT] = ACTIONS(2550), - [anon_sym_o_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT] = ACTIONS(2550), - [anon_sym_err_GT_GT] = ACTIONS(2548), - [anon_sym_out_GT_GT] = ACTIONS(2548), - [anon_sym_e_GT_GT] = ACTIONS(2548), - [anon_sym_o_GT_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1072)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1072), + [1051] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1051), + [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), + }, + [1052] = { + [aux_sym__repeat_newline] = STATE(1121), + [sym_comment] = STATE(1052), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [1053] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1053), [anon_sym_in] = ACTIONS(2778), [sym__newline] = ACTIONS(2778), [anon_sym_SEMI] = ACTIONS(2778), @@ -128622,77 +127278,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1073)] = { - [aux_sym__repeat_newline] = STATE(1088), - [sym_comment] = STATE(1073), - [anon_sym_in] = ACTIONS(2548), - [sym__newline] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_GT2] = ACTIONS(2550), - [anon_sym_DASH2] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_STAR2] = ACTIONS(2550), - [anon_sym_and2] = ACTIONS(2548), - [anon_sym_xor2] = ACTIONS(2548), - [anon_sym_or2] = ACTIONS(2548), - [anon_sym_not_DASHin2] = ACTIONS(2548), - [anon_sym_has2] = ACTIONS(2548), - [anon_sym_not_DASHhas2] = ACTIONS(2548), - [anon_sym_starts_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), - [anon_sym_ends_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), - [anon_sym_EQ_EQ2] = ACTIONS(2548), - [anon_sym_BANG_EQ2] = ACTIONS(2548), - [anon_sym_LT2] = ACTIONS(2550), - [anon_sym_LT_EQ2] = ACTIONS(2548), - [anon_sym_GT_EQ2] = ACTIONS(2548), - [anon_sym_EQ_TILDE2] = ACTIONS(2548), - [anon_sym_BANG_TILDE2] = ACTIONS(2548), - [anon_sym_like2] = ACTIONS(2548), - [anon_sym_not_DASHlike2] = ACTIONS(2548), - [anon_sym_STAR_STAR2] = ACTIONS(2548), - [anon_sym_PLUS_PLUS2] = ACTIONS(2548), - [anon_sym_SLASH2] = ACTIONS(2550), - [anon_sym_mod2] = ACTIONS(2548), - [anon_sym_SLASH_SLASH2] = ACTIONS(2548), - [anon_sym_PLUS2] = ACTIONS(2550), - [anon_sym_bit_DASHshl2] = ACTIONS(2548), - [anon_sym_bit_DASHshr2] = ACTIONS(2548), - [anon_sym_bit_DASHand2] = ACTIONS(2548), - [anon_sym_bit_DASHxor2] = ACTIONS(2548), - [anon_sym_bit_DASHor2] = ACTIONS(2548), - [anon_sym_err_GT] = ACTIONS(2550), - [anon_sym_out_GT] = ACTIONS(2550), - [anon_sym_e_GT] = ACTIONS(2550), - [anon_sym_o_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT] = ACTIONS(2550), - [anon_sym_err_GT_GT] = ACTIONS(2548), - [anon_sym_out_GT_GT] = ACTIONS(2548), - [anon_sym_e_GT_GT] = ACTIONS(2548), - [anon_sym_o_GT_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1074)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1074), + [1054] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1054), + [anon_sym_in] = ACTIONS(2728), + [sym__newline] = ACTIONS(2728), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2730), + [anon_sym_DASH2] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_STAR2] = ACTIONS(2730), + [anon_sym_and2] = ACTIONS(2728), + [anon_sym_xor2] = ACTIONS(2728), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2728), + [anon_sym_has2] = ACTIONS(2728), + [anon_sym_not_DASHhas2] = ACTIONS(2728), + [anon_sym_starts_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), + [anon_sym_ends_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), + [anon_sym_EQ_EQ2] = ACTIONS(2728), + [anon_sym_BANG_EQ2] = ACTIONS(2728), + [anon_sym_LT2] = ACTIONS(2730), + [anon_sym_LT_EQ2] = ACTIONS(2728), + [anon_sym_GT_EQ2] = ACTIONS(2728), + [anon_sym_EQ_TILDE2] = ACTIONS(2728), + [anon_sym_BANG_TILDE2] = ACTIONS(2728), + [anon_sym_like2] = ACTIONS(2728), + [anon_sym_not_DASHlike2] = ACTIONS(2728), + [anon_sym_STAR_STAR2] = ACTIONS(2728), + [anon_sym_PLUS_PLUS2] = ACTIONS(2728), + [anon_sym_SLASH2] = ACTIONS(2730), + [anon_sym_mod2] = ACTIONS(2728), + [anon_sym_SLASH_SLASH2] = ACTIONS(2728), + [anon_sym_PLUS2] = ACTIONS(2730), + [anon_sym_bit_DASHshl2] = ACTIONS(2728), + [anon_sym_bit_DASHshr2] = ACTIONS(2728), + [anon_sym_bit_DASHand2] = ACTIONS(2728), + [anon_sym_bit_DASHxor2] = ACTIONS(2728), + [anon_sym_bit_DASHor2] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2730), + [anon_sym_out_GT] = ACTIONS(2730), + [anon_sym_e_GT] = ACTIONS(2730), + [anon_sym_o_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT] = ACTIONS(2730), + [anon_sym_err_GT_GT] = ACTIONS(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(3), + }, + [1055] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1055), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_STAR2] = ACTIONS(2726), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2724), + [anon_sym_PLUS_PLUS2] = ACTIONS(2724), + [anon_sym_SLASH2] = ACTIONS(2726), + [anon_sym_mod2] = ACTIONS(2724), + [anon_sym_SLASH_SLASH2] = ACTIONS(2724), + [anon_sym_PLUS2] = ACTIONS(2726), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(3), + }, + [1056] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1056), [anon_sym_in] = ACTIONS(2778), [sym__newline] = ACTIONS(2778), [anon_sym_SEMI] = ACTIONS(2778), @@ -128758,2049 +127482,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1075)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1075), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2792), - [anon_sym_SEMI] = ACTIONS(2792), - [anon_sym_PIPE] = ACTIONS(2792), - [anon_sym_err_GT_PIPE] = ACTIONS(2792), - [anon_sym_out_GT_PIPE] = ACTIONS(2792), - [anon_sym_e_GT_PIPE] = ACTIONS(2792), - [anon_sym_o_GT_PIPE] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2792), - [anon_sym_RPAREN] = ACTIONS(2792), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2794), - [anon_sym_and2] = ACTIONS(2792), - [anon_sym_xor2] = ACTIONS(2792), - [anon_sym_or2] = ACTIONS(2792), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2792), - [anon_sym_BANG_EQ2] = ACTIONS(2792), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2792), - [anon_sym_GT_EQ2] = ACTIONS(2792), - [anon_sym_EQ_TILDE2] = ACTIONS(2792), - [anon_sym_BANG_TILDE2] = ACTIONS(2792), - [anon_sym_like2] = ACTIONS(2792), - [anon_sym_not_DASHlike2] = ACTIONS(2792), - [anon_sym_STAR_STAR2] = ACTIONS(2792), - [anon_sym_PLUS_PLUS2] = ACTIONS(2792), - [anon_sym_SLASH2] = ACTIONS(2794), - [anon_sym_mod2] = ACTIONS(2792), - [anon_sym_SLASH_SLASH2] = ACTIONS(2792), - [anon_sym_PLUS2] = ACTIONS(2794), - [anon_sym_bit_DASHshl2] = ACTIONS(2792), - [anon_sym_bit_DASHshr2] = ACTIONS(2792), - [anon_sym_bit_DASHand2] = ACTIONS(2792), - [anon_sym_bit_DASHxor2] = ACTIONS(2792), - [anon_sym_bit_DASHor2] = ACTIONS(2792), - [anon_sym_err_GT] = ACTIONS(2794), - [anon_sym_out_GT] = ACTIONS(2794), - [anon_sym_e_GT] = ACTIONS(2794), - [anon_sym_o_GT] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT] = ACTIONS(2794), - [anon_sym_err_GT_GT] = ACTIONS(2792), - [anon_sym_out_GT_GT] = ACTIONS(2792), - [anon_sym_e_GT_GT] = ACTIONS(2792), - [anon_sym_o_GT_GT] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2792), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1076)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1076), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2792), - [anon_sym_SEMI] = ACTIONS(2792), - [anon_sym_PIPE] = ACTIONS(2792), - [anon_sym_err_GT_PIPE] = ACTIONS(2792), - [anon_sym_out_GT_PIPE] = ACTIONS(2792), - [anon_sym_e_GT_PIPE] = ACTIONS(2792), - [anon_sym_o_GT_PIPE] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2792), - [anon_sym_RPAREN] = ACTIONS(2792), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2794), - [anon_sym_and2] = ACTIONS(2792), - [anon_sym_xor2] = ACTIONS(2792), - [anon_sym_or2] = ACTIONS(2792), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2792), - [anon_sym_BANG_EQ2] = ACTIONS(2792), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2792), - [anon_sym_GT_EQ2] = ACTIONS(2792), - [anon_sym_EQ_TILDE2] = ACTIONS(2792), - [anon_sym_BANG_TILDE2] = ACTIONS(2792), - [anon_sym_like2] = ACTIONS(2792), - [anon_sym_not_DASHlike2] = ACTIONS(2792), - [anon_sym_STAR_STAR2] = ACTIONS(2792), - [anon_sym_PLUS_PLUS2] = ACTIONS(2792), - [anon_sym_SLASH2] = ACTIONS(2794), - [anon_sym_mod2] = ACTIONS(2792), - [anon_sym_SLASH_SLASH2] = ACTIONS(2792), - [anon_sym_PLUS2] = ACTIONS(2794), - [anon_sym_bit_DASHshl2] = ACTIONS(2792), - [anon_sym_bit_DASHshr2] = ACTIONS(2792), - [anon_sym_bit_DASHand2] = ACTIONS(2792), - [anon_sym_bit_DASHxor2] = ACTIONS(2792), - [anon_sym_bit_DASHor2] = ACTIONS(2792), - [anon_sym_err_GT] = ACTIONS(2794), - [anon_sym_out_GT] = ACTIONS(2794), - [anon_sym_e_GT] = ACTIONS(2794), - [anon_sym_o_GT] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT] = ACTIONS(2794), - [anon_sym_err_GT_GT] = ACTIONS(2792), - [anon_sym_out_GT_GT] = ACTIONS(2792), - [anon_sym_e_GT_GT] = ACTIONS(2792), - [anon_sym_o_GT_GT] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2792), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1077)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1077), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2792), - [anon_sym_SEMI] = ACTIONS(2792), - [anon_sym_PIPE] = ACTIONS(2792), - [anon_sym_err_GT_PIPE] = ACTIONS(2792), - [anon_sym_out_GT_PIPE] = ACTIONS(2792), - [anon_sym_e_GT_PIPE] = ACTIONS(2792), - [anon_sym_o_GT_PIPE] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2792), - [anon_sym_RPAREN] = ACTIONS(2792), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2794), - [anon_sym_and2] = ACTIONS(2792), - [anon_sym_xor2] = ACTIONS(2792), - [anon_sym_or2] = ACTIONS(2792), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2792), - [anon_sym_BANG_EQ2] = ACTIONS(2792), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2792), - [anon_sym_GT_EQ2] = ACTIONS(2792), - [anon_sym_EQ_TILDE2] = ACTIONS(2792), - [anon_sym_BANG_TILDE2] = ACTIONS(2792), - [anon_sym_like2] = ACTIONS(2792), - [anon_sym_not_DASHlike2] = ACTIONS(2792), - [anon_sym_STAR_STAR2] = ACTIONS(2792), - [anon_sym_PLUS_PLUS2] = ACTIONS(2792), - [anon_sym_SLASH2] = ACTIONS(2794), - [anon_sym_mod2] = ACTIONS(2792), - [anon_sym_SLASH_SLASH2] = ACTIONS(2792), - [anon_sym_PLUS2] = ACTIONS(2794), - [anon_sym_bit_DASHshl2] = ACTIONS(2792), - [anon_sym_bit_DASHshr2] = ACTIONS(2792), - [anon_sym_bit_DASHand2] = ACTIONS(2792), - [anon_sym_bit_DASHxor2] = ACTIONS(2792), - [anon_sym_bit_DASHor2] = ACTIONS(2792), - [anon_sym_err_GT] = ACTIONS(2794), - [anon_sym_out_GT] = ACTIONS(2794), - [anon_sym_e_GT] = ACTIONS(2794), - [anon_sym_o_GT] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT] = ACTIONS(2794), - [anon_sym_err_GT_GT] = ACTIONS(2792), - [anon_sym_out_GT_GT] = ACTIONS(2792), - [anon_sym_e_GT_GT] = ACTIONS(2792), - [anon_sym_o_GT_GT] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2792), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1078)] = { - [aux_sym__repeat_newline] = STATE(1338), - [sym__expression_parenthesized] = STATE(4660), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2204), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1878), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_comment] = STATE(1078), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(2732), - [aux_sym_cmd_identifier_token3] = ACTIONS(191), - [aux_sym_cmd_identifier_token4] = ACTIONS(191), - [aux_sym_cmd_identifier_token5] = ACTIONS(191), - [sym__newline] = ACTIONS(2642), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(181), - [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [1057] = { + [aux_sym__repeat_newline] = STATE(1126), + [sym_comment] = STATE(1057), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [1058] = { + [aux_sym__repeat_newline] = STATE(1029), + [sym_comment] = STATE(1058), + [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_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_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(1079)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1079), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2792), - [anon_sym_SEMI] = ACTIONS(2792), - [anon_sym_PIPE] = ACTIONS(2792), - [anon_sym_err_GT_PIPE] = ACTIONS(2792), - [anon_sym_out_GT_PIPE] = ACTIONS(2792), - [anon_sym_e_GT_PIPE] = ACTIONS(2792), - [anon_sym_o_GT_PIPE] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2792), - [anon_sym_RPAREN] = ACTIONS(2792), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2794), - [anon_sym_and2] = ACTIONS(2792), - [anon_sym_xor2] = ACTIONS(2792), - [anon_sym_or2] = ACTIONS(2792), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2792), - [anon_sym_BANG_EQ2] = ACTIONS(2792), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2792), - [anon_sym_GT_EQ2] = ACTIONS(2792), - [anon_sym_EQ_TILDE2] = ACTIONS(2792), - [anon_sym_BANG_TILDE2] = ACTIONS(2792), - [anon_sym_like2] = ACTIONS(2792), - [anon_sym_not_DASHlike2] = ACTIONS(2792), - [anon_sym_STAR_STAR2] = ACTIONS(2792), - [anon_sym_PLUS_PLUS2] = ACTIONS(2792), - [anon_sym_SLASH2] = ACTIONS(2794), - [anon_sym_mod2] = ACTIONS(2792), - [anon_sym_SLASH_SLASH2] = ACTIONS(2792), - [anon_sym_PLUS2] = ACTIONS(2794), - [anon_sym_bit_DASHshl2] = ACTIONS(2792), - [anon_sym_bit_DASHshr2] = ACTIONS(2792), - [anon_sym_bit_DASHand2] = ACTIONS(2792), - [anon_sym_bit_DASHxor2] = ACTIONS(2792), - [anon_sym_bit_DASHor2] = ACTIONS(2792), - [anon_sym_err_GT] = ACTIONS(2794), - [anon_sym_out_GT] = ACTIONS(2794), - [anon_sym_e_GT] = ACTIONS(2794), - [anon_sym_o_GT] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT] = ACTIONS(2794), - [anon_sym_err_GT_GT] = ACTIONS(2792), - [anon_sym_out_GT_GT] = ACTIONS(2792), - [anon_sym_e_GT_GT] = ACTIONS(2792), - [anon_sym_o_GT_GT] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2792), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1080)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1080), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2792), - [anon_sym_SEMI] = ACTIONS(2792), - [anon_sym_PIPE] = ACTIONS(2792), - [anon_sym_err_GT_PIPE] = ACTIONS(2792), - [anon_sym_out_GT_PIPE] = ACTIONS(2792), - [anon_sym_e_GT_PIPE] = ACTIONS(2792), - [anon_sym_o_GT_PIPE] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2792), - [anon_sym_RPAREN] = ACTIONS(2792), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2794), - [anon_sym_and2] = ACTIONS(2792), - [anon_sym_xor2] = ACTIONS(2792), - [anon_sym_or2] = ACTIONS(2792), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2792), - [anon_sym_BANG_EQ2] = ACTIONS(2792), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2792), - [anon_sym_GT_EQ2] = ACTIONS(2792), - [anon_sym_EQ_TILDE2] = ACTIONS(2792), - [anon_sym_BANG_TILDE2] = ACTIONS(2792), - [anon_sym_like2] = ACTIONS(2792), - [anon_sym_not_DASHlike2] = ACTIONS(2792), - [anon_sym_STAR_STAR2] = ACTIONS(2792), - [anon_sym_PLUS_PLUS2] = ACTIONS(2792), - [anon_sym_SLASH2] = ACTIONS(2794), - [anon_sym_mod2] = ACTIONS(2792), - [anon_sym_SLASH_SLASH2] = ACTIONS(2792), - [anon_sym_PLUS2] = ACTIONS(2794), - [anon_sym_bit_DASHshl2] = ACTIONS(2792), - [anon_sym_bit_DASHshr2] = ACTIONS(2792), - [anon_sym_bit_DASHand2] = ACTIONS(2792), - [anon_sym_bit_DASHxor2] = ACTIONS(2792), - [anon_sym_bit_DASHor2] = ACTIONS(2792), - [anon_sym_err_GT] = ACTIONS(2794), - [anon_sym_out_GT] = ACTIONS(2794), - [anon_sym_e_GT] = ACTIONS(2794), - [anon_sym_o_GT] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT] = ACTIONS(2794), - [anon_sym_err_GT_GT] = ACTIONS(2792), - [anon_sym_out_GT_GT] = ACTIONS(2792), - [anon_sym_e_GT_GT] = ACTIONS(2792), - [anon_sym_o_GT_GT] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2792), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1081)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1081), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2792), - [anon_sym_SEMI] = ACTIONS(2792), - [anon_sym_PIPE] = ACTIONS(2792), - [anon_sym_err_GT_PIPE] = ACTIONS(2792), - [anon_sym_out_GT_PIPE] = ACTIONS(2792), - [anon_sym_e_GT_PIPE] = ACTIONS(2792), - [anon_sym_o_GT_PIPE] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2792), - [anon_sym_RPAREN] = ACTIONS(2792), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2794), - [anon_sym_and2] = ACTIONS(2792), - [anon_sym_xor2] = ACTIONS(2792), - [anon_sym_or2] = ACTIONS(2792), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2792), - [anon_sym_BANG_EQ2] = ACTIONS(2792), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2792), - [anon_sym_GT_EQ2] = ACTIONS(2792), - [anon_sym_EQ_TILDE2] = ACTIONS(2792), - [anon_sym_BANG_TILDE2] = ACTIONS(2792), - [anon_sym_like2] = ACTIONS(2792), - [anon_sym_not_DASHlike2] = ACTIONS(2792), - [anon_sym_STAR_STAR2] = ACTIONS(2792), - [anon_sym_PLUS_PLUS2] = ACTIONS(2792), - [anon_sym_SLASH2] = ACTIONS(2794), - [anon_sym_mod2] = ACTIONS(2792), - [anon_sym_SLASH_SLASH2] = ACTIONS(2792), - [anon_sym_PLUS2] = ACTIONS(2794), - [anon_sym_bit_DASHshl2] = ACTIONS(2792), - [anon_sym_bit_DASHshr2] = ACTIONS(2792), - [anon_sym_bit_DASHand2] = ACTIONS(2792), - [anon_sym_bit_DASHxor2] = ACTIONS(2792), - [anon_sym_bit_DASHor2] = ACTIONS(2792), - [anon_sym_err_GT] = ACTIONS(2794), - [anon_sym_out_GT] = ACTIONS(2794), - [anon_sym_e_GT] = ACTIONS(2794), - [anon_sym_o_GT] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT] = ACTIONS(2794), - [anon_sym_err_GT_GT] = ACTIONS(2792), - [anon_sym_out_GT_GT] = ACTIONS(2792), - [anon_sym_e_GT_GT] = ACTIONS(2792), - [anon_sym_o_GT_GT] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2792), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1082)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1082), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2792), - [anon_sym_SEMI] = ACTIONS(2792), - [anon_sym_PIPE] = ACTIONS(2792), - [anon_sym_err_GT_PIPE] = ACTIONS(2792), - [anon_sym_out_GT_PIPE] = ACTIONS(2792), - [anon_sym_e_GT_PIPE] = ACTIONS(2792), - [anon_sym_o_GT_PIPE] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2792), - [anon_sym_RPAREN] = ACTIONS(2792), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2794), - [anon_sym_and2] = ACTIONS(2792), - [anon_sym_xor2] = ACTIONS(2792), - [anon_sym_or2] = ACTIONS(2792), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2792), - [anon_sym_BANG_EQ2] = ACTIONS(2792), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2792), - [anon_sym_GT_EQ2] = ACTIONS(2792), - [anon_sym_EQ_TILDE2] = ACTIONS(2792), - [anon_sym_BANG_TILDE2] = ACTIONS(2792), - [anon_sym_like2] = ACTIONS(2792), - [anon_sym_not_DASHlike2] = ACTIONS(2792), - [anon_sym_STAR_STAR2] = ACTIONS(2792), - [anon_sym_PLUS_PLUS2] = ACTIONS(2792), - [anon_sym_SLASH2] = ACTIONS(2794), - [anon_sym_mod2] = ACTIONS(2792), - [anon_sym_SLASH_SLASH2] = ACTIONS(2792), - [anon_sym_PLUS2] = ACTIONS(2794), - [anon_sym_bit_DASHshl2] = ACTIONS(2792), - [anon_sym_bit_DASHshr2] = ACTIONS(2792), - [anon_sym_bit_DASHand2] = ACTIONS(2792), - [anon_sym_bit_DASHxor2] = ACTIONS(2792), - [anon_sym_bit_DASHor2] = ACTIONS(2792), - [anon_sym_err_GT] = ACTIONS(2794), - [anon_sym_out_GT] = ACTIONS(2794), - [anon_sym_e_GT] = ACTIONS(2794), - [anon_sym_o_GT] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT] = ACTIONS(2794), - [anon_sym_err_GT_GT] = ACTIONS(2792), - [anon_sym_out_GT_GT] = ACTIONS(2792), - [anon_sym_e_GT_GT] = ACTIONS(2792), - [anon_sym_o_GT_GT] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2792), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1083)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1083), - [anon_sym_in] = ACTIONS(2796), - [sym__newline] = ACTIONS(2796), - [anon_sym_SEMI] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2796), - [anon_sym_err_GT_PIPE] = ACTIONS(2796), - [anon_sym_out_GT_PIPE] = ACTIONS(2796), - [anon_sym_e_GT_PIPE] = ACTIONS(2796), - [anon_sym_o_GT_PIPE] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2796), - [anon_sym_RPAREN] = ACTIONS(2796), - [anon_sym_GT2] = ACTIONS(2798), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2796), - [anon_sym_xor2] = ACTIONS(2796), - [anon_sym_or2] = ACTIONS(2796), - [anon_sym_not_DASHin2] = ACTIONS(2796), - [anon_sym_has2] = ACTIONS(2796), - [anon_sym_not_DASHhas2] = ACTIONS(2796), - [anon_sym_starts_DASHwith2] = ACTIONS(2796), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2796), - [anon_sym_ends_DASHwith2] = ACTIONS(2796), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2796), - [anon_sym_EQ_EQ2] = ACTIONS(2796), - [anon_sym_BANG_EQ2] = ACTIONS(2796), - [anon_sym_LT2] = ACTIONS(2798), - [anon_sym_LT_EQ2] = ACTIONS(2796), - [anon_sym_GT_EQ2] = ACTIONS(2796), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2796), - [anon_sym_PLUS_PLUS2] = ACTIONS(2796), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2796), - [anon_sym_SLASH_SLASH2] = ACTIONS(2796), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2796), - [anon_sym_bit_DASHshr2] = ACTIONS(2796), - [anon_sym_bit_DASHand2] = ACTIONS(2796), - [anon_sym_bit_DASHxor2] = ACTIONS(2796), - [anon_sym_bit_DASHor2] = ACTIONS(2796), - [anon_sym_err_GT] = ACTIONS(2798), - [anon_sym_out_GT] = ACTIONS(2798), - [anon_sym_e_GT] = ACTIONS(2798), - [anon_sym_o_GT] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT] = ACTIONS(2798), - [anon_sym_err_GT_GT] = ACTIONS(2796), - [anon_sym_out_GT_GT] = ACTIONS(2796), - [anon_sym_e_GT_GT] = ACTIONS(2796), - [anon_sym_o_GT_GT] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2796), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1084)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1084), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2792), - [anon_sym_SEMI] = ACTIONS(2792), - [anon_sym_PIPE] = ACTIONS(2792), - [anon_sym_err_GT_PIPE] = ACTIONS(2792), - [anon_sym_out_GT_PIPE] = ACTIONS(2792), - [anon_sym_e_GT_PIPE] = ACTIONS(2792), - [anon_sym_o_GT_PIPE] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2792), - [anon_sym_RPAREN] = ACTIONS(2792), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2794), - [anon_sym_and2] = ACTIONS(2792), - [anon_sym_xor2] = ACTIONS(2792), - [anon_sym_or2] = ACTIONS(2792), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2792), - [anon_sym_BANG_EQ2] = ACTIONS(2792), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2792), - [anon_sym_GT_EQ2] = ACTIONS(2792), - [anon_sym_EQ_TILDE2] = ACTIONS(2792), - [anon_sym_BANG_TILDE2] = ACTIONS(2792), - [anon_sym_like2] = ACTIONS(2792), - [anon_sym_not_DASHlike2] = ACTIONS(2792), - [anon_sym_STAR_STAR2] = ACTIONS(2792), - [anon_sym_PLUS_PLUS2] = ACTIONS(2792), - [anon_sym_SLASH2] = ACTIONS(2794), - [anon_sym_mod2] = ACTIONS(2792), - [anon_sym_SLASH_SLASH2] = ACTIONS(2792), - [anon_sym_PLUS2] = ACTIONS(2794), - [anon_sym_bit_DASHshl2] = ACTIONS(2792), - [anon_sym_bit_DASHshr2] = ACTIONS(2792), - [anon_sym_bit_DASHand2] = ACTIONS(2792), - [anon_sym_bit_DASHxor2] = ACTIONS(2792), - [anon_sym_bit_DASHor2] = ACTIONS(2792), - [anon_sym_err_GT] = ACTIONS(2794), - [anon_sym_out_GT] = ACTIONS(2794), - [anon_sym_e_GT] = ACTIONS(2794), - [anon_sym_o_GT] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT] = ACTIONS(2794), - [anon_sym_err_GT_GT] = ACTIONS(2792), - [anon_sym_out_GT_GT] = ACTIONS(2792), - [anon_sym_e_GT_GT] = ACTIONS(2792), - [anon_sym_o_GT_GT] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2792), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1085)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1085), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2792), - [anon_sym_SEMI] = ACTIONS(2792), - [anon_sym_PIPE] = ACTIONS(2792), - [anon_sym_err_GT_PIPE] = ACTIONS(2792), - [anon_sym_out_GT_PIPE] = ACTIONS(2792), - [anon_sym_e_GT_PIPE] = ACTIONS(2792), - [anon_sym_o_GT_PIPE] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2792), - [anon_sym_RPAREN] = ACTIONS(2792), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2794), - [anon_sym_and2] = ACTIONS(2792), - [anon_sym_xor2] = ACTIONS(2792), - [anon_sym_or2] = ACTIONS(2792), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2792), - [anon_sym_BANG_EQ2] = ACTIONS(2792), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2792), - [anon_sym_GT_EQ2] = ACTIONS(2792), - [anon_sym_EQ_TILDE2] = ACTIONS(2792), - [anon_sym_BANG_TILDE2] = ACTIONS(2792), - [anon_sym_like2] = ACTIONS(2792), - [anon_sym_not_DASHlike2] = ACTIONS(2792), - [anon_sym_STAR_STAR2] = ACTIONS(2792), - [anon_sym_PLUS_PLUS2] = ACTIONS(2792), - [anon_sym_SLASH2] = ACTIONS(2794), - [anon_sym_mod2] = ACTIONS(2792), - [anon_sym_SLASH_SLASH2] = ACTIONS(2792), - [anon_sym_PLUS2] = ACTIONS(2794), - [anon_sym_bit_DASHshl2] = ACTIONS(2792), - [anon_sym_bit_DASHshr2] = ACTIONS(2792), - [anon_sym_bit_DASHand2] = ACTIONS(2792), - [anon_sym_bit_DASHxor2] = ACTIONS(2792), - [anon_sym_bit_DASHor2] = ACTIONS(2792), - [anon_sym_err_GT] = ACTIONS(2794), - [anon_sym_out_GT] = ACTIONS(2794), - [anon_sym_e_GT] = ACTIONS(2794), - [anon_sym_o_GT] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT] = ACTIONS(2794), - [anon_sym_err_GT_GT] = ACTIONS(2792), - [anon_sym_out_GT_GT] = ACTIONS(2792), - [anon_sym_e_GT_GT] = ACTIONS(2792), - [anon_sym_o_GT_GT] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2792), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1086)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1086), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2792), - [anon_sym_SEMI] = ACTIONS(2792), - [anon_sym_PIPE] = ACTIONS(2792), - [anon_sym_err_GT_PIPE] = ACTIONS(2792), - [anon_sym_out_GT_PIPE] = ACTIONS(2792), - [anon_sym_e_GT_PIPE] = ACTIONS(2792), - [anon_sym_o_GT_PIPE] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2792), - [anon_sym_RPAREN] = ACTIONS(2792), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2794), - [anon_sym_and2] = ACTIONS(2792), - [anon_sym_xor2] = ACTIONS(2792), - [anon_sym_or2] = ACTIONS(2792), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2792), - [anon_sym_BANG_EQ2] = ACTIONS(2792), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2792), - [anon_sym_GT_EQ2] = ACTIONS(2792), - [anon_sym_EQ_TILDE2] = ACTIONS(2792), - [anon_sym_BANG_TILDE2] = ACTIONS(2792), - [anon_sym_like2] = ACTIONS(2792), - [anon_sym_not_DASHlike2] = ACTIONS(2792), - [anon_sym_STAR_STAR2] = ACTIONS(2792), - [anon_sym_PLUS_PLUS2] = ACTIONS(2792), - [anon_sym_SLASH2] = ACTIONS(2794), - [anon_sym_mod2] = ACTIONS(2792), - [anon_sym_SLASH_SLASH2] = ACTIONS(2792), - [anon_sym_PLUS2] = ACTIONS(2794), - [anon_sym_bit_DASHshl2] = ACTIONS(2792), - [anon_sym_bit_DASHshr2] = ACTIONS(2792), - [anon_sym_bit_DASHand2] = ACTIONS(2792), - [anon_sym_bit_DASHxor2] = ACTIONS(2792), - [anon_sym_bit_DASHor2] = ACTIONS(2792), - [anon_sym_err_GT] = ACTIONS(2794), - [anon_sym_out_GT] = ACTIONS(2794), - [anon_sym_e_GT] = ACTIONS(2794), - [anon_sym_o_GT] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT] = ACTIONS(2794), - [anon_sym_err_GT_GT] = ACTIONS(2792), - [anon_sym_out_GT_GT] = ACTIONS(2792), - [anon_sym_e_GT_GT] = ACTIONS(2792), - [anon_sym_o_GT_GT] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2792), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1087)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1087), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2792), - [anon_sym_SEMI] = ACTIONS(2792), - [anon_sym_PIPE] = ACTIONS(2792), - [anon_sym_err_GT_PIPE] = ACTIONS(2792), - [anon_sym_out_GT_PIPE] = ACTIONS(2792), - [anon_sym_e_GT_PIPE] = ACTIONS(2792), - [anon_sym_o_GT_PIPE] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2792), - [anon_sym_RPAREN] = ACTIONS(2792), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2794), - [anon_sym_and2] = ACTIONS(2792), - [anon_sym_xor2] = ACTIONS(2792), - [anon_sym_or2] = ACTIONS(2792), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2792), - [anon_sym_BANG_EQ2] = ACTIONS(2792), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2792), - [anon_sym_GT_EQ2] = ACTIONS(2792), - [anon_sym_EQ_TILDE2] = ACTIONS(2792), - [anon_sym_BANG_TILDE2] = ACTIONS(2792), - [anon_sym_like2] = ACTIONS(2792), - [anon_sym_not_DASHlike2] = ACTIONS(2792), - [anon_sym_STAR_STAR2] = ACTIONS(2792), - [anon_sym_PLUS_PLUS2] = ACTIONS(2792), - [anon_sym_SLASH2] = ACTIONS(2794), - [anon_sym_mod2] = ACTIONS(2792), - [anon_sym_SLASH_SLASH2] = ACTIONS(2792), - [anon_sym_PLUS2] = ACTIONS(2794), - [anon_sym_bit_DASHshl2] = ACTIONS(2792), - [anon_sym_bit_DASHshr2] = ACTIONS(2792), - [anon_sym_bit_DASHand2] = ACTIONS(2792), - [anon_sym_bit_DASHxor2] = ACTIONS(2792), - [anon_sym_bit_DASHor2] = ACTIONS(2792), - [anon_sym_err_GT] = ACTIONS(2794), - [anon_sym_out_GT] = ACTIONS(2794), - [anon_sym_e_GT] = ACTIONS(2794), - [anon_sym_o_GT] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT] = ACTIONS(2794), - [anon_sym_err_GT_GT] = ACTIONS(2792), - [anon_sym_out_GT_GT] = ACTIONS(2792), - [anon_sym_e_GT_GT] = ACTIONS(2792), - [anon_sym_o_GT_GT] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2792), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1088)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1088), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2792), - [anon_sym_SEMI] = ACTIONS(2792), - [anon_sym_PIPE] = ACTIONS(2792), - [anon_sym_err_GT_PIPE] = ACTIONS(2792), - [anon_sym_out_GT_PIPE] = ACTIONS(2792), - [anon_sym_e_GT_PIPE] = ACTIONS(2792), - [anon_sym_o_GT_PIPE] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2792), - [anon_sym_RPAREN] = ACTIONS(2792), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2794), - [anon_sym_and2] = ACTIONS(2792), - [anon_sym_xor2] = ACTIONS(2792), - [anon_sym_or2] = ACTIONS(2792), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2792), - [anon_sym_BANG_EQ2] = ACTIONS(2792), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2792), - [anon_sym_GT_EQ2] = ACTIONS(2792), - [anon_sym_EQ_TILDE2] = ACTIONS(2792), - [anon_sym_BANG_TILDE2] = ACTIONS(2792), - [anon_sym_like2] = ACTIONS(2792), - [anon_sym_not_DASHlike2] = ACTIONS(2792), - [anon_sym_STAR_STAR2] = ACTIONS(2792), - [anon_sym_PLUS_PLUS2] = ACTIONS(2792), - [anon_sym_SLASH2] = ACTIONS(2794), - [anon_sym_mod2] = ACTIONS(2792), - [anon_sym_SLASH_SLASH2] = ACTIONS(2792), - [anon_sym_PLUS2] = ACTIONS(2794), - [anon_sym_bit_DASHshl2] = ACTIONS(2792), - [anon_sym_bit_DASHshr2] = ACTIONS(2792), - [anon_sym_bit_DASHand2] = ACTIONS(2792), - [anon_sym_bit_DASHxor2] = ACTIONS(2792), - [anon_sym_bit_DASHor2] = ACTIONS(2792), - [anon_sym_err_GT] = ACTIONS(2794), - [anon_sym_out_GT] = ACTIONS(2794), - [anon_sym_e_GT] = ACTIONS(2794), - [anon_sym_o_GT] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT] = ACTIONS(2794), - [anon_sym_err_GT_GT] = ACTIONS(2792), - [anon_sym_out_GT_GT] = ACTIONS(2792), - [anon_sym_e_GT_GT] = ACTIONS(2792), - [anon_sym_o_GT_GT] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2792), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1089)] = { - [sym__expr_parenthesized_immediate] = STATE(5005), - [sym_comment] = STATE(1089), - [ts_builtin_sym_end] = ACTIONS(2150), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1090)] = { - [sym__expr_parenthesized_immediate] = STATE(5005), - [sym_comment] = STATE(1090), - [ts_builtin_sym_end] = ACTIONS(2150), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1091)] = { - [sym__expr_parenthesized_immediate] = STATE(5005), - [sym_comment] = STATE(1091), - [ts_builtin_sym_end] = ACTIONS(2150), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1092)] = { - [sym__expr_parenthesized_immediate] = STATE(5005), - [sym_comment] = STATE(1092), - [ts_builtin_sym_end] = ACTIONS(2150), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1093)] = { - [sym_comment] = STATE(1093), - [aux_sym_cmd_identifier_token2] = ACTIONS(2634), - [anon_sym_in] = ACTIONS(2578), - [sym__newline] = ACTIONS(2576), - [anon_sym_SEMI] = ACTIONS(2576), - [anon_sym_PIPE] = ACTIONS(2576), - [anon_sym_err_GT_PIPE] = ACTIONS(2576), - [anon_sym_out_GT_PIPE] = ACTIONS(2576), - [anon_sym_e_GT_PIPE] = ACTIONS(2576), - [anon_sym_o_GT_PIPE] = ACTIONS(2576), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2576), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2576), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2576), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2576), - [anon_sym_RPAREN] = ACTIONS(2576), - [anon_sym_GT2] = ACTIONS(2578), - [anon_sym_DASH2] = ACTIONS(2578), - [anon_sym_RBRACE] = ACTIONS(2576), - [anon_sym_STAR2] = ACTIONS(2578), - [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(2576), - [anon_sym_BANG_EQ2] = ACTIONS(2576), - [anon_sym_LT2] = ACTIONS(2578), - [anon_sym_LT_EQ2] = ACTIONS(2576), - [anon_sym_GT_EQ2] = ACTIONS(2576), - [anon_sym_EQ_TILDE2] = ACTIONS(2576), - [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(2578), - [anon_sym_mod2] = ACTIONS(2578), - [anon_sym_SLASH_SLASH2] = ACTIONS(2578), - [anon_sym_PLUS2] = ACTIONS(2578), - [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(2578), - [anon_sym_out_GT] = ACTIONS(2578), - [anon_sym_e_GT] = ACTIONS(2578), - [anon_sym_o_GT] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT] = ACTIONS(2578), - [anon_sym_err_GT_GT] = ACTIONS(2576), - [anon_sym_out_GT_GT] = ACTIONS(2576), - [anon_sym_e_GT_GT] = ACTIONS(2576), - [anon_sym_o_GT_GT] = ACTIONS(2576), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2576), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2576), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2576), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2576), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(1094)] = { - [sym_comment] = STATE(1094), - [aux_sym_cmd_identifier_token2] = ACTIONS(2634), - [anon_sym_in] = ACTIONS(2606), - [sym__newline] = ACTIONS(2604), - [anon_sym_SEMI] = ACTIONS(2604), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_err_GT_PIPE] = ACTIONS(2604), - [anon_sym_out_GT_PIPE] = ACTIONS(2604), - [anon_sym_e_GT_PIPE] = ACTIONS(2604), - [anon_sym_o_GT_PIPE] = ACTIONS(2604), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2604), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2604), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2604), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2604), - [anon_sym_RPAREN] = ACTIONS(2604), - [anon_sym_GT2] = ACTIONS(2606), - [anon_sym_DASH2] = ACTIONS(2606), - [anon_sym_RBRACE] = ACTIONS(2604), - [anon_sym_STAR2] = ACTIONS(2606), - [anon_sym_and2] = ACTIONS(2606), - [anon_sym_xor2] = ACTIONS(2606), - [anon_sym_or2] = ACTIONS(2606), - [anon_sym_not_DASHin2] = ACTIONS(2606), - [anon_sym_has2] = ACTIONS(2606), - [anon_sym_not_DASHhas2] = ACTIONS(2606), - [anon_sym_starts_DASHwith2] = ACTIONS(2606), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2606), - [anon_sym_ends_DASHwith2] = ACTIONS(2606), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2606), - [anon_sym_EQ_EQ2] = ACTIONS(2604), - [anon_sym_BANG_EQ2] = ACTIONS(2604), - [anon_sym_LT2] = ACTIONS(2606), - [anon_sym_LT_EQ2] = ACTIONS(2604), - [anon_sym_GT_EQ2] = ACTIONS(2604), - [anon_sym_EQ_TILDE2] = ACTIONS(2604), - [anon_sym_BANG_TILDE2] = ACTIONS(2606), - [anon_sym_like2] = ACTIONS(2606), - [anon_sym_not_DASHlike2] = ACTIONS(2606), - [anon_sym_STAR_STAR2] = ACTIONS(2606), - [anon_sym_PLUS_PLUS2] = ACTIONS(2606), - [anon_sym_SLASH2] = ACTIONS(2606), - [anon_sym_mod2] = ACTIONS(2606), - [anon_sym_SLASH_SLASH2] = ACTIONS(2606), - [anon_sym_PLUS2] = ACTIONS(2606), - [anon_sym_bit_DASHshl2] = ACTIONS(2606), - [anon_sym_bit_DASHshr2] = ACTIONS(2606), - [anon_sym_bit_DASHand2] = ACTIONS(2606), - [anon_sym_bit_DASHxor2] = ACTIONS(2606), - [anon_sym_bit_DASHor2] = ACTIONS(2606), - [anon_sym_err_GT] = ACTIONS(2606), - [anon_sym_out_GT] = ACTIONS(2606), - [anon_sym_e_GT] = ACTIONS(2606), - [anon_sym_o_GT] = ACTIONS(2606), - [anon_sym_err_PLUSout_GT] = ACTIONS(2606), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2606), - [anon_sym_o_PLUSe_GT] = ACTIONS(2606), - [anon_sym_e_PLUSo_GT] = ACTIONS(2606), - [anon_sym_err_GT_GT] = ACTIONS(2604), - [anon_sym_out_GT_GT] = ACTIONS(2604), - [anon_sym_e_GT_GT] = ACTIONS(2604), - [anon_sym_o_GT_GT] = ACTIONS(2604), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2604), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2604), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2604), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2604), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(1095)] = { - [sym_comment] = STATE(1095), - [aux_sym_cmd_identifier_token2] = ACTIONS(2634), - [anon_sym_in] = ACTIONS(811), - [sym__newline] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_err_GT_PIPE] = ACTIONS(914), - [anon_sym_out_GT_PIPE] = ACTIONS(914), - [anon_sym_e_GT_PIPE] = ACTIONS(914), - [anon_sym_o_GT_PIPE] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(914), - [anon_sym_RPAREN] = ACTIONS(914), - [anon_sym_GT2] = ACTIONS(811), - [anon_sym_DASH2] = ACTIONS(811), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_STAR2] = ACTIONS(811), - [anon_sym_and2] = ACTIONS(811), - [anon_sym_xor2] = ACTIONS(811), - [anon_sym_or2] = ACTIONS(811), - [anon_sym_not_DASHin2] = ACTIONS(811), - [anon_sym_has2] = ACTIONS(811), - [anon_sym_not_DASHhas2] = ACTIONS(811), - [anon_sym_starts_DASHwith2] = ACTIONS(811), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(811), - [anon_sym_ends_DASHwith2] = ACTIONS(811), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(811), - [anon_sym_EQ_EQ2] = ACTIONS(914), - [anon_sym_BANG_EQ2] = ACTIONS(914), - [anon_sym_LT2] = ACTIONS(811), - [anon_sym_LT_EQ2] = ACTIONS(914), - [anon_sym_GT_EQ2] = ACTIONS(914), - [anon_sym_EQ_TILDE2] = ACTIONS(914), - [anon_sym_BANG_TILDE2] = ACTIONS(811), - [anon_sym_like2] = ACTIONS(811), - [anon_sym_not_DASHlike2] = ACTIONS(811), - [anon_sym_STAR_STAR2] = ACTIONS(811), - [anon_sym_PLUS_PLUS2] = ACTIONS(811), - [anon_sym_SLASH2] = ACTIONS(811), - [anon_sym_mod2] = ACTIONS(811), - [anon_sym_SLASH_SLASH2] = ACTIONS(811), - [anon_sym_PLUS2] = ACTIONS(811), - [anon_sym_bit_DASHshl2] = ACTIONS(811), - [anon_sym_bit_DASHshr2] = ACTIONS(811), - [anon_sym_bit_DASHand2] = ACTIONS(811), - [anon_sym_bit_DASHxor2] = ACTIONS(811), - [anon_sym_bit_DASHor2] = ACTIONS(811), - [anon_sym_err_GT] = ACTIONS(811), - [anon_sym_out_GT] = ACTIONS(811), - [anon_sym_e_GT] = ACTIONS(811), - [anon_sym_o_GT] = ACTIONS(811), - [anon_sym_err_PLUSout_GT] = ACTIONS(811), - [anon_sym_out_PLUSerr_GT] = ACTIONS(811), - [anon_sym_o_PLUSe_GT] = ACTIONS(811), - [anon_sym_e_PLUSo_GT] = ACTIONS(811), - [anon_sym_err_GT_GT] = ACTIONS(914), - [anon_sym_out_GT_GT] = ACTIONS(914), - [anon_sym_e_GT_GT] = ACTIONS(914), - [anon_sym_o_GT_GT] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(1096)] = { - [sym__expr_parenthesized_immediate] = STATE(5005), - [sym_comment] = STATE(1096), - [ts_builtin_sym_end] = ACTIONS(2150), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1097)] = { - [sym_comment] = STATE(1097), - [anon_sym_in] = ACTIONS(914), - [sym__newline] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_err_GT_PIPE] = ACTIONS(914), - [anon_sym_out_GT_PIPE] = ACTIONS(914), - [anon_sym_e_GT_PIPE] = ACTIONS(914), - [anon_sym_o_GT_PIPE] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(914), - [anon_sym_RPAREN] = ACTIONS(914), - [anon_sym_GT2] = ACTIONS(811), - [anon_sym_DASH2] = ACTIONS(914), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_STAR2] = ACTIONS(811), - [anon_sym_and2] = ACTIONS(914), - [anon_sym_xor2] = ACTIONS(914), - [anon_sym_or2] = ACTIONS(914), - [anon_sym_not_DASHin2] = ACTIONS(914), - [anon_sym_has2] = ACTIONS(914), - [anon_sym_not_DASHhas2] = ACTIONS(914), - [anon_sym_starts_DASHwith2] = ACTIONS(914), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(914), - [anon_sym_ends_DASHwith2] = ACTIONS(914), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(914), - [anon_sym_EQ_EQ2] = ACTIONS(914), - [anon_sym_BANG_EQ2] = ACTIONS(914), - [anon_sym_LT2] = ACTIONS(811), - [anon_sym_LT_EQ2] = ACTIONS(914), - [anon_sym_GT_EQ2] = ACTIONS(914), - [anon_sym_EQ_TILDE2] = ACTIONS(914), - [anon_sym_BANG_TILDE2] = ACTIONS(914), - [anon_sym_like2] = ACTIONS(914), - [anon_sym_not_DASHlike2] = ACTIONS(914), - [anon_sym_STAR_STAR2] = ACTIONS(914), - [anon_sym_PLUS_PLUS2] = ACTIONS(914), - [anon_sym_SLASH2] = ACTIONS(811), - [anon_sym_mod2] = ACTIONS(914), - [anon_sym_SLASH_SLASH2] = ACTIONS(914), - [anon_sym_PLUS2] = ACTIONS(811), - [anon_sym_bit_DASHshl2] = ACTIONS(914), - [anon_sym_bit_DASHshr2] = ACTIONS(914), - [anon_sym_bit_DASHand2] = ACTIONS(914), - [anon_sym_bit_DASHxor2] = ACTIONS(914), - [anon_sym_bit_DASHor2] = ACTIONS(914), - [anon_sym_err_GT] = ACTIONS(811), - [anon_sym_out_GT] = ACTIONS(811), - [anon_sym_e_GT] = ACTIONS(811), - [anon_sym_o_GT] = ACTIONS(811), - [anon_sym_err_PLUSout_GT] = ACTIONS(811), - [anon_sym_out_PLUSerr_GT] = ACTIONS(811), - [anon_sym_o_PLUSe_GT] = ACTIONS(811), - [anon_sym_e_PLUSo_GT] = ACTIONS(811), - [anon_sym_err_GT_GT] = ACTIONS(914), - [anon_sym_out_GT_GT] = ACTIONS(914), - [anon_sym_e_GT_GT] = ACTIONS(914), - [anon_sym_o_GT_GT] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), - [sym__unquoted_pattern] = ACTIONS(1806), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1098)] = { - [sym__expr_parenthesized_immediate] = STATE(5005), - [sym_comment] = STATE(1098), - [ts_builtin_sym_end] = ACTIONS(2150), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1099)] = { - [sym__expr_parenthesized_immediate] = STATE(5005), - [sym_comment] = STATE(1099), - [ts_builtin_sym_end] = ACTIONS(2150), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1100)] = { - [aux_sym__repeat_newline] = STATE(1033), - [sym_comment] = STATE(1100), - [anon_sym_in] = ACTIONS(2492), - [sym__newline] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_err_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_GT_PIPE] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_GT2] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_STAR2] = ACTIONS(2494), - [anon_sym_and2] = ACTIONS(2492), - [anon_sym_xor2] = ACTIONS(2492), - [anon_sym_or2] = ACTIONS(2492), - [anon_sym_not_DASHin2] = ACTIONS(2492), - [anon_sym_has2] = ACTIONS(2492), - [anon_sym_not_DASHhas2] = ACTIONS(2492), - [anon_sym_starts_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), - [anon_sym_ends_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), - [anon_sym_EQ_EQ2] = ACTIONS(2492), - [anon_sym_BANG_EQ2] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2494), - [anon_sym_LT_EQ2] = ACTIONS(2492), - [anon_sym_GT_EQ2] = ACTIONS(2492), - [anon_sym_EQ_TILDE2] = ACTIONS(2492), - [anon_sym_BANG_TILDE2] = ACTIONS(2492), - [anon_sym_like2] = ACTIONS(2492), - [anon_sym_not_DASHlike2] = ACTIONS(2492), - [anon_sym_STAR_STAR2] = ACTIONS(2492), - [anon_sym_PLUS_PLUS2] = ACTIONS(2492), - [anon_sym_SLASH2] = ACTIONS(2494), - [anon_sym_mod2] = ACTIONS(2492), - [anon_sym_SLASH_SLASH2] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_bit_DASHshl2] = ACTIONS(2492), - [anon_sym_bit_DASHshr2] = ACTIONS(2492), - [anon_sym_bit_DASHand2] = ACTIONS(2492), - [anon_sym_bit_DASHxor2] = ACTIONS(2492), - [anon_sym_bit_DASHor2] = ACTIONS(2492), - [anon_sym_err_GT] = ACTIONS(2494), - [anon_sym_out_GT] = ACTIONS(2494), - [anon_sym_e_GT] = ACTIONS(2494), - [anon_sym_o_GT] = ACTIONS(2494), - [anon_sym_err_PLUSout_GT] = ACTIONS(2494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), - [anon_sym_o_PLUSe_GT] = ACTIONS(2494), - [anon_sym_e_PLUSo_GT] = ACTIONS(2494), - [anon_sym_err_GT_GT] = ACTIONS(2492), - [anon_sym_out_GT_GT] = ACTIONS(2492), - [anon_sym_e_GT_GT] = ACTIONS(2492), - [anon_sym_o_GT_GT] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1101)] = { - [sym__expr_parenthesized_immediate] = STATE(5005), - [sym_comment] = STATE(1101), - [ts_builtin_sym_end] = ACTIONS(2150), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1102)] = { - [sym__expr_parenthesized_immediate] = STATE(5005), - [sym_comment] = STATE(1102), - [ts_builtin_sym_end] = ACTIONS(2150), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1103)] = { - [sym_comment] = STATE(1103), - [ts_builtin_sym_end] = ACTIONS(1788), - [anon_sym_in] = ACTIONS(1788), - [sym__newline] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_PIPE] = ACTIONS(1788), - [anon_sym_err_GT_PIPE] = ACTIONS(1788), - [anon_sym_out_GT_PIPE] = ACTIONS(1788), - [anon_sym_e_GT_PIPE] = ACTIONS(1788), - [anon_sym_o_GT_PIPE] = ACTIONS(1788), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), - [anon_sym_GT2] = ACTIONS(1790), - [anon_sym_DASH2] = ACTIONS(1788), - [anon_sym_STAR2] = ACTIONS(1790), - [anon_sym_and2] = ACTIONS(1788), - [anon_sym_xor2] = ACTIONS(1788), - [anon_sym_or2] = ACTIONS(1788), - [anon_sym_not_DASHin2] = ACTIONS(1788), - [anon_sym_has2] = ACTIONS(1788), - [anon_sym_not_DASHhas2] = ACTIONS(1788), - [anon_sym_starts_DASHwith2] = ACTIONS(1788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1788), - [anon_sym_ends_DASHwith2] = ACTIONS(1788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1788), - [anon_sym_EQ_EQ2] = ACTIONS(1788), - [anon_sym_BANG_EQ2] = ACTIONS(1788), - [anon_sym_LT2] = ACTIONS(1790), - [anon_sym_LT_EQ2] = ACTIONS(1788), - [anon_sym_GT_EQ2] = ACTIONS(1788), - [anon_sym_EQ_TILDE2] = ACTIONS(1788), - [anon_sym_BANG_TILDE2] = ACTIONS(1788), - [anon_sym_like2] = ACTIONS(1788), - [anon_sym_not_DASHlike2] = ACTIONS(1788), - [anon_sym_STAR_STAR2] = ACTIONS(1788), - [anon_sym_PLUS_PLUS2] = ACTIONS(1788), - [anon_sym_SLASH2] = ACTIONS(1790), - [anon_sym_mod2] = ACTIONS(1788), - [anon_sym_SLASH_SLASH2] = ACTIONS(1788), - [anon_sym_PLUS2] = ACTIONS(1790), - [anon_sym_bit_DASHshl2] = ACTIONS(1788), - [anon_sym_bit_DASHshr2] = ACTIONS(1788), - [anon_sym_bit_DASHand2] = ACTIONS(1788), - [anon_sym_bit_DASHxor2] = ACTIONS(1788), - [anon_sym_bit_DASHor2] = ACTIONS(1788), - [anon_sym_DOT] = ACTIONS(2800), - [aux_sym__immediate_decimal_token5] = ACTIONS(1897), - [anon_sym_err_GT] = ACTIONS(1790), - [anon_sym_out_GT] = ACTIONS(1790), - [anon_sym_e_GT] = ACTIONS(1790), - [anon_sym_o_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT] = ACTIONS(1790), - [anon_sym_err_GT_GT] = ACTIONS(1788), - [anon_sym_out_GT_GT] = ACTIONS(1788), - [anon_sym_e_GT_GT] = ACTIONS(1788), - [anon_sym_o_GT_GT] = ACTIONS(1788), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1788), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1788), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1788), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1104)] = { - [sym__expr_parenthesized_immediate] = STATE(5005), - [sym_comment] = STATE(1104), - [ts_builtin_sym_end] = ACTIONS(2150), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1105)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1105), + [1059] = { + [aux_sym__repeat_newline] = STATE(1131), + [sym_comment] = STATE(1059), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [1060] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1060), [anon_sym_in] = ACTIONS(2724), [sym__newline] = ACTIONS(2724), [anon_sym_SEMI] = ACTIONS(2724), @@ -130866,1342 +127754,2226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1106)] = { - [sym__expr_parenthesized_immediate] = STATE(5005), - [sym_comment] = STATE(1106), - [ts_builtin_sym_end] = ACTIONS(2150), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1107)] = { - [aux_sym__repeat_newline] = STATE(1034), - [sym_comment] = STATE(1107), - [anon_sym_in] = ACTIONS(2492), - [sym__newline] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_err_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_GT_PIPE] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_GT2] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_STAR2] = ACTIONS(2494), - [anon_sym_and2] = ACTIONS(2492), - [anon_sym_xor2] = ACTIONS(2492), - [anon_sym_or2] = ACTIONS(2492), - [anon_sym_not_DASHin2] = ACTIONS(2492), - [anon_sym_has2] = ACTIONS(2492), - [anon_sym_not_DASHhas2] = ACTIONS(2492), - [anon_sym_starts_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), - [anon_sym_ends_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), - [anon_sym_EQ_EQ2] = ACTIONS(2492), - [anon_sym_BANG_EQ2] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2494), - [anon_sym_LT_EQ2] = ACTIONS(2492), - [anon_sym_GT_EQ2] = ACTIONS(2492), - [anon_sym_EQ_TILDE2] = ACTIONS(2492), - [anon_sym_BANG_TILDE2] = ACTIONS(2492), - [anon_sym_like2] = ACTIONS(2492), - [anon_sym_not_DASHlike2] = ACTIONS(2492), - [anon_sym_STAR_STAR2] = ACTIONS(2492), - [anon_sym_PLUS_PLUS2] = ACTIONS(2492), - [anon_sym_SLASH2] = ACTIONS(2494), - [anon_sym_mod2] = ACTIONS(2492), - [anon_sym_SLASH_SLASH2] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_bit_DASHshl2] = ACTIONS(2492), - [anon_sym_bit_DASHshr2] = ACTIONS(2492), - [anon_sym_bit_DASHand2] = ACTIONS(2492), - [anon_sym_bit_DASHxor2] = ACTIONS(2492), - [anon_sym_bit_DASHor2] = ACTIONS(2492), - [anon_sym_err_GT] = ACTIONS(2494), - [anon_sym_out_GT] = ACTIONS(2494), - [anon_sym_e_GT] = ACTIONS(2494), - [anon_sym_o_GT] = ACTIONS(2494), - [anon_sym_err_PLUSout_GT] = ACTIONS(2494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), - [anon_sym_o_PLUSe_GT] = ACTIONS(2494), - [anon_sym_e_PLUSo_GT] = ACTIONS(2494), - [anon_sym_err_GT_GT] = ACTIONS(2492), - [anon_sym_out_GT_GT] = ACTIONS(2492), - [anon_sym_e_GT_GT] = ACTIONS(2492), - [anon_sym_o_GT_GT] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1108)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1108), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [1061] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1061), + [anon_sym_in] = ACTIONS(2728), + [sym__newline] = ACTIONS(2728), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2730), + [anon_sym_DASH2] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_STAR2] = ACTIONS(2730), + [anon_sym_and2] = ACTIONS(2728), + [anon_sym_xor2] = ACTIONS(2728), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2728), + [anon_sym_has2] = ACTIONS(2728), + [anon_sym_not_DASHhas2] = ACTIONS(2728), + [anon_sym_starts_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), + [anon_sym_ends_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), + [anon_sym_EQ_EQ2] = ACTIONS(2728), + [anon_sym_BANG_EQ2] = ACTIONS(2728), + [anon_sym_LT2] = ACTIONS(2730), + [anon_sym_LT_EQ2] = ACTIONS(2728), + [anon_sym_GT_EQ2] = ACTIONS(2728), + [anon_sym_EQ_TILDE2] = ACTIONS(2728), + [anon_sym_BANG_TILDE2] = ACTIONS(2728), + [anon_sym_like2] = ACTIONS(2728), + [anon_sym_not_DASHlike2] = ACTIONS(2728), + [anon_sym_STAR_STAR2] = ACTIONS(2728), + [anon_sym_PLUS_PLUS2] = ACTIONS(2728), + [anon_sym_SLASH2] = ACTIONS(2730), + [anon_sym_mod2] = ACTIONS(2728), + [anon_sym_SLASH_SLASH2] = ACTIONS(2728), + [anon_sym_PLUS2] = ACTIONS(2730), + [anon_sym_bit_DASHshl2] = ACTIONS(2728), + [anon_sym_bit_DASHshr2] = ACTIONS(2728), + [anon_sym_bit_DASHand2] = ACTIONS(2728), + [anon_sym_bit_DASHxor2] = ACTIONS(2728), + [anon_sym_bit_DASHor2] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2730), + [anon_sym_out_GT] = ACTIONS(2730), + [anon_sym_e_GT] = ACTIONS(2730), + [anon_sym_o_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT] = ACTIONS(2730), + [anon_sym_err_GT_GT] = ACTIONS(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1109)] = { - [sym_comment] = STATE(1109), - [ts_builtin_sym_end] = ACTIONS(1774), - [anon_sym_in] = ACTIONS(1774), - [sym__newline] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_err_GT_PIPE] = ACTIONS(1774), - [anon_sym_out_GT_PIPE] = ACTIONS(1774), - [anon_sym_e_GT_PIPE] = ACTIONS(1774), - [anon_sym_o_GT_PIPE] = ACTIONS(1774), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), - [anon_sym_GT2] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(1774), - [anon_sym_STAR2] = ACTIONS(1776), - [anon_sym_and2] = ACTIONS(1774), - [anon_sym_xor2] = ACTIONS(1774), - [anon_sym_or2] = ACTIONS(1774), - [anon_sym_not_DASHin2] = ACTIONS(1774), - [anon_sym_has2] = ACTIONS(1774), - [anon_sym_not_DASHhas2] = ACTIONS(1774), - [anon_sym_starts_DASHwith2] = ACTIONS(1774), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1774), - [anon_sym_ends_DASHwith2] = ACTIONS(1774), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1774), - [anon_sym_EQ_EQ2] = ACTIONS(1774), - [anon_sym_BANG_EQ2] = ACTIONS(1774), - [anon_sym_LT2] = ACTIONS(1776), - [anon_sym_LT_EQ2] = ACTIONS(1774), - [anon_sym_GT_EQ2] = ACTIONS(1774), - [anon_sym_EQ_TILDE2] = ACTIONS(1774), - [anon_sym_BANG_TILDE2] = ACTIONS(1774), - [anon_sym_like2] = ACTIONS(1774), - [anon_sym_not_DASHlike2] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1774), - [anon_sym_STAR_STAR2] = ACTIONS(1774), - [anon_sym_PLUS_PLUS2] = ACTIONS(1774), - [anon_sym_SLASH2] = ACTIONS(1776), - [anon_sym_mod2] = ACTIONS(1774), - [anon_sym_SLASH_SLASH2] = ACTIONS(1774), - [anon_sym_PLUS2] = ACTIONS(1776), - [anon_sym_bit_DASHshl2] = ACTIONS(1774), - [anon_sym_bit_DASHshr2] = ACTIONS(1774), - [anon_sym_bit_DASHand2] = ACTIONS(1774), - [anon_sym_bit_DASHxor2] = ACTIONS(1774), - [anon_sym_bit_DASHor2] = ACTIONS(1774), - [anon_sym_err_GT] = ACTIONS(1776), - [anon_sym_out_GT] = ACTIONS(1776), - [anon_sym_e_GT] = ACTIONS(1776), - [anon_sym_o_GT] = ACTIONS(1776), - [anon_sym_err_PLUSout_GT] = ACTIONS(1776), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), - [anon_sym_o_PLUSe_GT] = ACTIONS(1776), - [anon_sym_e_PLUSo_GT] = ACTIONS(1776), - [anon_sym_err_GT_GT] = ACTIONS(1774), - [anon_sym_out_GT_GT] = ACTIONS(1774), - [anon_sym_e_GT_GT] = ACTIONS(1774), - [anon_sym_o_GT_GT] = ACTIONS(1774), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), - [sym__unquoted_pattern] = ACTIONS(1776), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1110)] = { - [sym_comment] = STATE(1110), - [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_LPAREN2] = ACTIONS(1866), - [anon_sym_STAR_STAR2] = ACTIONS(1866), - [anon_sym_PLUS_PLUS2] = ACTIONS(1866), - [anon_sym_SLASH2] = ACTIONS(1868), - [anon_sym_mod2] = ACTIONS(1866), - [anon_sym_SLASH_SLASH2] = ACTIONS(1866), - [anon_sym_PLUS2] = ACTIONS(1868), - [anon_sym_bit_DASHshl2] = ACTIONS(1866), - [anon_sym_bit_DASHshr2] = ACTIONS(1866), - [anon_sym_bit_DASHand2] = ACTIONS(1866), - [anon_sym_bit_DASHxor2] = ACTIONS(1866), - [anon_sym_bit_DASHor2] = ACTIONS(1866), - [anon_sym_err_GT] = ACTIONS(1868), - [anon_sym_out_GT] = ACTIONS(1868), - [anon_sym_e_GT] = ACTIONS(1868), - [anon_sym_o_GT] = ACTIONS(1868), - [anon_sym_err_PLUSout_GT] = ACTIONS(1868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), - [anon_sym_o_PLUSe_GT] = ACTIONS(1868), - [anon_sym_e_PLUSo_GT] = ACTIONS(1868), - [anon_sym_err_GT_GT] = ACTIONS(1866), - [anon_sym_out_GT_GT] = ACTIONS(1866), - [anon_sym_e_GT_GT] = ACTIONS(1866), - [anon_sym_o_GT_GT] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), - [sym__unquoted_pattern] = ACTIONS(1868), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1111)] = { - [aux_sym__repeat_newline] = STATE(1035), - [sym_comment] = STATE(1111), - [anon_sym_in] = ACTIONS(2492), - [sym__newline] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_err_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_GT_PIPE] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_GT2] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_STAR2] = ACTIONS(2494), - [anon_sym_and2] = ACTIONS(2492), - [anon_sym_xor2] = ACTIONS(2492), - [anon_sym_or2] = ACTIONS(2492), - [anon_sym_not_DASHin2] = ACTIONS(2492), - [anon_sym_has2] = ACTIONS(2492), - [anon_sym_not_DASHhas2] = ACTIONS(2492), - [anon_sym_starts_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), - [anon_sym_ends_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), - [anon_sym_EQ_EQ2] = ACTIONS(2492), - [anon_sym_BANG_EQ2] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2494), - [anon_sym_LT_EQ2] = ACTIONS(2492), - [anon_sym_GT_EQ2] = ACTIONS(2492), - [anon_sym_EQ_TILDE2] = ACTIONS(2492), - [anon_sym_BANG_TILDE2] = ACTIONS(2492), - [anon_sym_like2] = ACTIONS(2492), - [anon_sym_not_DASHlike2] = ACTIONS(2492), - [anon_sym_STAR_STAR2] = ACTIONS(2492), - [anon_sym_PLUS_PLUS2] = ACTIONS(2492), - [anon_sym_SLASH2] = ACTIONS(2494), - [anon_sym_mod2] = ACTIONS(2492), - [anon_sym_SLASH_SLASH2] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_bit_DASHshl2] = ACTIONS(2492), - [anon_sym_bit_DASHshr2] = ACTIONS(2492), - [anon_sym_bit_DASHand2] = ACTIONS(2492), - [anon_sym_bit_DASHxor2] = ACTIONS(2492), - [anon_sym_bit_DASHor2] = ACTIONS(2492), - [anon_sym_err_GT] = ACTIONS(2494), - [anon_sym_out_GT] = ACTIONS(2494), - [anon_sym_e_GT] = ACTIONS(2494), - [anon_sym_o_GT] = ACTIONS(2494), - [anon_sym_err_PLUSout_GT] = ACTIONS(2494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), - [anon_sym_o_PLUSe_GT] = ACTIONS(2494), - [anon_sym_e_PLUSo_GT] = ACTIONS(2494), - [anon_sym_err_GT_GT] = ACTIONS(2492), - [anon_sym_out_GT_GT] = ACTIONS(2492), - [anon_sym_e_GT_GT] = ACTIONS(2492), - [anon_sym_o_GT_GT] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1112)] = { - [sym_comment] = STATE(1112), - [ts_builtin_sym_end] = ACTIONS(1921), - [anon_sym_in] = ACTIONS(1921), - [sym__newline] = ACTIONS(1921), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_err_GT_PIPE] = ACTIONS(1921), - [anon_sym_out_GT_PIPE] = ACTIONS(1921), - [anon_sym_e_GT_PIPE] = ACTIONS(1921), - [anon_sym_o_GT_PIPE] = ACTIONS(1921), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1921), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1921), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), - [anon_sym_GT2] = ACTIONS(1923), - [anon_sym_DASH2] = ACTIONS(1921), - [anon_sym_STAR2] = ACTIONS(1923), - [anon_sym_and2] = ACTIONS(1921), - [anon_sym_xor2] = ACTIONS(1921), - [anon_sym_or2] = ACTIONS(1921), - [anon_sym_not_DASHin2] = ACTIONS(1921), - [anon_sym_has2] = ACTIONS(1921), - [anon_sym_not_DASHhas2] = ACTIONS(1921), - [anon_sym_starts_DASHwith2] = ACTIONS(1921), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1921), - [anon_sym_ends_DASHwith2] = ACTIONS(1921), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1921), - [anon_sym_EQ_EQ2] = ACTIONS(1921), - [anon_sym_BANG_EQ2] = ACTIONS(1921), - [anon_sym_LT2] = ACTIONS(1923), - [anon_sym_LT_EQ2] = ACTIONS(1921), - [anon_sym_GT_EQ2] = ACTIONS(1921), - [anon_sym_EQ_TILDE2] = ACTIONS(1921), - [anon_sym_BANG_TILDE2] = ACTIONS(1921), - [anon_sym_like2] = ACTIONS(1921), - [anon_sym_not_DASHlike2] = ACTIONS(1921), - [anon_sym_LPAREN2] = ACTIONS(1921), - [anon_sym_STAR_STAR2] = ACTIONS(1921), - [anon_sym_PLUS_PLUS2] = ACTIONS(1921), - [anon_sym_SLASH2] = ACTIONS(1923), - [anon_sym_mod2] = ACTIONS(1921), - [anon_sym_SLASH_SLASH2] = ACTIONS(1921), - [anon_sym_PLUS2] = ACTIONS(1923), - [anon_sym_bit_DASHshl2] = ACTIONS(1921), - [anon_sym_bit_DASHshr2] = ACTIONS(1921), - [anon_sym_bit_DASHand2] = ACTIONS(1921), - [anon_sym_bit_DASHxor2] = ACTIONS(1921), - [anon_sym_bit_DASHor2] = ACTIONS(1921), - [anon_sym_err_GT] = ACTIONS(1923), - [anon_sym_out_GT] = ACTIONS(1923), - [anon_sym_e_GT] = ACTIONS(1923), - [anon_sym_o_GT] = ACTIONS(1923), - [anon_sym_err_PLUSout_GT] = ACTIONS(1923), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1923), - [anon_sym_o_PLUSe_GT] = ACTIONS(1923), - [anon_sym_e_PLUSo_GT] = ACTIONS(1923), - [anon_sym_err_GT_GT] = ACTIONS(1921), - [anon_sym_out_GT_GT] = ACTIONS(1921), - [anon_sym_e_GT_GT] = ACTIONS(1921), - [anon_sym_o_GT_GT] = ACTIONS(1921), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1921), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1921), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1921), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1921), - [sym__unquoted_pattern] = ACTIONS(1923), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1113)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1113), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [1062] = { + [aux_sym__repeat_newline] = STATE(1136), + [sym_comment] = STATE(1062), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [1063] = { + [aux_sym__repeat_newline] = STATE(1043), + [sym_comment] = STATE(1063), + [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_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_POUND] = ACTIONS(3), }, - [STATE(1114)] = { - [aux_sym__repeat_newline] = STATE(1132), - [sym_comment] = STATE(1114), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [1064] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1064), + [anon_sym_in] = ACTIONS(2778), + [sym__newline] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2778), + [anon_sym_err_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_GT_PIPE] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2778), + [anon_sym_RPAREN] = ACTIONS(2778), + [anon_sym_GT2] = ACTIONS(2780), + [anon_sym_DASH2] = ACTIONS(2778), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_STAR2] = ACTIONS(2780), + [anon_sym_and2] = ACTIONS(2778), + [anon_sym_xor2] = ACTIONS(2778), + [anon_sym_or2] = ACTIONS(2778), + [anon_sym_not_DASHin2] = ACTIONS(2778), + [anon_sym_has2] = ACTIONS(2778), + [anon_sym_not_DASHhas2] = ACTIONS(2778), + [anon_sym_starts_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2778), + [anon_sym_ends_DASHwith2] = ACTIONS(2778), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2778), + [anon_sym_EQ_EQ2] = ACTIONS(2778), + [anon_sym_BANG_EQ2] = ACTIONS(2778), + [anon_sym_LT2] = ACTIONS(2780), + [anon_sym_LT_EQ2] = ACTIONS(2778), + [anon_sym_GT_EQ2] = ACTIONS(2778), + [anon_sym_EQ_TILDE2] = ACTIONS(2778), + [anon_sym_BANG_TILDE2] = ACTIONS(2778), + [anon_sym_like2] = ACTIONS(2778), + [anon_sym_not_DASHlike2] = ACTIONS(2778), + [anon_sym_STAR_STAR2] = ACTIONS(2778), + [anon_sym_PLUS_PLUS2] = ACTIONS(2778), + [anon_sym_SLASH2] = ACTIONS(2780), + [anon_sym_mod2] = ACTIONS(2778), + [anon_sym_SLASH_SLASH2] = ACTIONS(2778), + [anon_sym_PLUS2] = ACTIONS(2780), + [anon_sym_bit_DASHshl2] = ACTIONS(2778), + [anon_sym_bit_DASHshr2] = ACTIONS(2778), + [anon_sym_bit_DASHand2] = ACTIONS(2778), + [anon_sym_bit_DASHxor2] = ACTIONS(2778), + [anon_sym_bit_DASHor2] = ACTIONS(2778), + [anon_sym_err_GT] = ACTIONS(2780), + [anon_sym_out_GT] = ACTIONS(2780), + [anon_sym_e_GT] = ACTIONS(2780), + [anon_sym_o_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT] = ACTIONS(2780), + [anon_sym_err_GT_GT] = ACTIONS(2778), + [anon_sym_out_GT_GT] = ACTIONS(2778), + [anon_sym_e_GT_GT] = ACTIONS(2778), + [anon_sym_o_GT_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2778), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1115)] = { - [aux_sym__repeat_newline] = STATE(1036), - [sym_comment] = STATE(1115), - [anon_sym_in] = ACTIONS(2492), - [sym__newline] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_err_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_GT_PIPE] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_GT2] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_STAR2] = ACTIONS(2494), - [anon_sym_and2] = ACTIONS(2492), - [anon_sym_xor2] = ACTIONS(2492), - [anon_sym_or2] = ACTIONS(2492), - [anon_sym_not_DASHin2] = ACTIONS(2492), - [anon_sym_has2] = ACTIONS(2492), - [anon_sym_not_DASHhas2] = ACTIONS(2492), - [anon_sym_starts_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), - [anon_sym_ends_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), - [anon_sym_EQ_EQ2] = ACTIONS(2492), - [anon_sym_BANG_EQ2] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2494), - [anon_sym_LT_EQ2] = ACTIONS(2492), - [anon_sym_GT_EQ2] = ACTIONS(2492), - [anon_sym_EQ_TILDE2] = ACTIONS(2492), - [anon_sym_BANG_TILDE2] = ACTIONS(2492), - [anon_sym_like2] = ACTIONS(2492), - [anon_sym_not_DASHlike2] = ACTIONS(2492), - [anon_sym_STAR_STAR2] = ACTIONS(2492), - [anon_sym_PLUS_PLUS2] = ACTIONS(2492), - [anon_sym_SLASH2] = ACTIONS(2494), - [anon_sym_mod2] = ACTIONS(2492), - [anon_sym_SLASH_SLASH2] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_bit_DASHshl2] = ACTIONS(2492), - [anon_sym_bit_DASHshr2] = ACTIONS(2492), - [anon_sym_bit_DASHand2] = ACTIONS(2492), - [anon_sym_bit_DASHxor2] = ACTIONS(2492), - [anon_sym_bit_DASHor2] = ACTIONS(2492), - [anon_sym_err_GT] = ACTIONS(2494), - [anon_sym_out_GT] = ACTIONS(2494), - [anon_sym_e_GT] = ACTIONS(2494), - [anon_sym_o_GT] = ACTIONS(2494), - [anon_sym_err_PLUSout_GT] = ACTIONS(2494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), - [anon_sym_o_PLUSe_GT] = ACTIONS(2494), - [anon_sym_e_PLUSo_GT] = ACTIONS(2494), - [anon_sym_err_GT_GT] = ACTIONS(2492), - [anon_sym_out_GT_GT] = ACTIONS(2492), - [anon_sym_e_GT_GT] = ACTIONS(2492), - [anon_sym_o_GT_GT] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1116)] = { - [sym__expr_parenthesized_immediate] = STATE(5283), - [sym_comment] = STATE(1116), - [ts_builtin_sym_end] = ACTIONS(2269), - [anon_sym_in] = ACTIONS(2269), - [sym__newline] = ACTIONS(2269), - [anon_sym_SEMI] = ACTIONS(2269), - [anon_sym_PIPE] = ACTIONS(2269), - [anon_sym_err_GT_PIPE] = ACTIONS(2269), - [anon_sym_out_GT_PIPE] = ACTIONS(2269), - [anon_sym_e_GT_PIPE] = ACTIONS(2269), - [anon_sym_o_GT_PIPE] = ACTIONS(2269), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2269), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2269), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2269), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2269), - [anon_sym_GT2] = ACTIONS(2271), - [anon_sym_DASH2] = ACTIONS(2269), - [anon_sym_STAR2] = ACTIONS(2271), - [anon_sym_and2] = ACTIONS(2269), - [anon_sym_xor2] = ACTIONS(2269), - [anon_sym_or2] = ACTIONS(2269), - [anon_sym_not_DASHin2] = ACTIONS(2269), - [anon_sym_has2] = ACTIONS(2269), - [anon_sym_not_DASHhas2] = ACTIONS(2269), - [anon_sym_starts_DASHwith2] = ACTIONS(2269), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2269), - [anon_sym_ends_DASHwith2] = ACTIONS(2269), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2269), - [anon_sym_EQ_EQ2] = ACTIONS(2269), - [anon_sym_BANG_EQ2] = ACTIONS(2269), - [anon_sym_LT2] = ACTIONS(2271), - [anon_sym_LT_EQ2] = ACTIONS(2269), - [anon_sym_GT_EQ2] = ACTIONS(2269), - [anon_sym_EQ_TILDE2] = ACTIONS(2269), - [anon_sym_BANG_TILDE2] = ACTIONS(2269), - [anon_sym_like2] = ACTIONS(2269), - [anon_sym_not_DASHlike2] = ACTIONS(2269), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2269), - [anon_sym_PLUS_PLUS2] = ACTIONS(2269), - [anon_sym_SLASH2] = ACTIONS(2271), - [anon_sym_mod2] = ACTIONS(2269), - [anon_sym_SLASH_SLASH2] = ACTIONS(2269), - [anon_sym_PLUS2] = ACTIONS(2271), - [anon_sym_bit_DASHshl2] = ACTIONS(2269), - [anon_sym_bit_DASHshr2] = ACTIONS(2269), - [anon_sym_bit_DASHand2] = ACTIONS(2269), - [anon_sym_bit_DASHxor2] = ACTIONS(2269), - [anon_sym_bit_DASHor2] = ACTIONS(2269), - [anon_sym_err_GT] = ACTIONS(2271), - [anon_sym_out_GT] = ACTIONS(2271), - [anon_sym_e_GT] = ACTIONS(2271), - [anon_sym_o_GT] = ACTIONS(2271), - [anon_sym_err_PLUSout_GT] = ACTIONS(2271), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2271), - [anon_sym_o_PLUSe_GT] = ACTIONS(2271), - [anon_sym_e_PLUSo_GT] = ACTIONS(2271), - [anon_sym_err_GT_GT] = ACTIONS(2269), - [anon_sym_out_GT_GT] = ACTIONS(2269), - [anon_sym_e_GT_GT] = ACTIONS(2269), - [anon_sym_o_GT_GT] = ACTIONS(2269), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2269), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2269), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2269), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2269), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1117)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1117), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [1065] = { + [aux_sym__repeat_newline] = STATE(4441), + [sym__match_pattern_expression] = STATE(4653), + [sym__match_pattern_value] = STATE(4894), + [sym__match_pattern_list_body] = STATE(4758), + [sym__match_pattern_list] = STATE(4906), + [sym__match_pattern_rest] = STATE(5489), + [sym__match_pattern_record] = STATE(4932), + [sym_expr_parenthesized] = STATE(4084), + [sym_val_range] = STATE(4894), + [sym__val_range] = STATE(5490), + [sym_val_nothing] = STATE(4932), + [sym_val_bool] = STATE(4451), + [sym_val_variable] = STATE(4085), + [sym_val_number] = STATE(4932), + [sym__val_number_decimal] = STATE(3772), + [sym__val_number] = STATE(4602), + [sym_val_duration] = STATE(4932), + [sym_val_filesize] = STATE(4932), + [sym_val_binary] = STATE(4932), + [sym_val_string] = STATE(4932), + [sym__raw_str] = STATE(3806), + [sym__str_double_quotes] = STATE(3806), + [sym__str_single_quotes] = STATE(3806), + [sym__str_back_ticks] = STATE(3806), + [sym_val_list] = STATE(5492), + [sym__table_head] = STATE(3932), + [sym_val_table] = STATE(4932), + [sym__unquoted_in_list] = STATE(4653), + [sym__unquoted_anonymous_prefix] = STATE(5490), + [sym_comment] = STATE(1065), + [aux_sym__types_body_repeat1] = STATE(1425), + [aux_sym_parameter_repeat2] = STATE(4282), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1443), + [anon_sym_true] = ACTIONS(1406), + [anon_sym_false] = ACTIONS(1406), + [anon_sym_null] = ACTIONS(1408), + [aux_sym_cmd_identifier_token3] = ACTIONS(1410), + [aux_sym_cmd_identifier_token4] = ACTIONS(1410), + [aux_sym_cmd_identifier_token5] = ACTIONS(1410), + [sym__newline] = ACTIONS(2766), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_RBRACK] = ACTIONS(2790), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1420), + [anon_sym_DOLLAR] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_DOT_DOT] = ACTIONS(2792), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1428), + [anon_sym_DOT_DOT_LT] = ACTIONS(1428), + [aux_sym__val_number_decimal_token1] = ACTIONS(1430), + [aux_sym__val_number_decimal_token2] = ACTIONS(1432), + [aux_sym__val_number_decimal_token3] = ACTIONS(1434), + [aux_sym__val_number_decimal_token4] = ACTIONS(1434), + [aux_sym__val_number_token1] = ACTIONS(1436), + [aux_sym__val_number_token2] = ACTIONS(1436), + [aux_sym__val_number_token3] = ACTIONS(1436), + [anon_sym_0b] = ACTIONS(1438), + [anon_sym_0o] = ACTIONS(1440), + [anon_sym_0x] = ACTIONS(1440), + [sym_val_date] = ACTIONS(2776), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1448), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1458), + }, + [1066] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1066), + [anon_sym_in] = ACTIONS(2728), + [sym__newline] = ACTIONS(2728), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2730), + [anon_sym_DASH2] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_STAR2] = ACTIONS(2730), + [anon_sym_and2] = ACTIONS(2728), + [anon_sym_xor2] = ACTIONS(2728), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2728), + [anon_sym_has2] = ACTIONS(2728), + [anon_sym_not_DASHhas2] = ACTIONS(2728), + [anon_sym_starts_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), + [anon_sym_ends_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), + [anon_sym_EQ_EQ2] = ACTIONS(2728), + [anon_sym_BANG_EQ2] = ACTIONS(2728), + [anon_sym_LT2] = ACTIONS(2730), + [anon_sym_LT_EQ2] = ACTIONS(2728), + [anon_sym_GT_EQ2] = ACTIONS(2728), + [anon_sym_EQ_TILDE2] = ACTIONS(2728), + [anon_sym_BANG_TILDE2] = ACTIONS(2728), + [anon_sym_like2] = ACTIONS(2728), + [anon_sym_not_DASHlike2] = ACTIONS(2728), + [anon_sym_STAR_STAR2] = ACTIONS(2728), + [anon_sym_PLUS_PLUS2] = ACTIONS(2728), + [anon_sym_SLASH2] = ACTIONS(2730), + [anon_sym_mod2] = ACTIONS(2728), + [anon_sym_SLASH_SLASH2] = ACTIONS(2728), + [anon_sym_PLUS2] = ACTIONS(2730), + [anon_sym_bit_DASHshl2] = ACTIONS(2728), + [anon_sym_bit_DASHshr2] = ACTIONS(2728), + [anon_sym_bit_DASHand2] = ACTIONS(2728), + [anon_sym_bit_DASHxor2] = ACTIONS(2728), + [anon_sym_bit_DASHor2] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2730), + [anon_sym_out_GT] = ACTIONS(2730), + [anon_sym_e_GT] = ACTIONS(2730), + [anon_sym_o_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT] = ACTIONS(2730), + [anon_sym_err_GT_GT] = ACTIONS(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1118)] = { - [sym__expr_parenthesized_immediate] = STATE(5005), - [sym_comment] = STATE(1118), - [ts_builtin_sym_end] = ACTIONS(2150), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1119)] = { - [sym__expr_parenthesized_immediate] = STATE(5005), - [sym_comment] = STATE(1119), - [ts_builtin_sym_end] = ACTIONS(2150), - [anon_sym_in] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_GT2] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2150), - [anon_sym_STAR2] = ACTIONS(2152), - [anon_sym_and2] = ACTIONS(2150), - [anon_sym_xor2] = ACTIONS(2150), - [anon_sym_or2] = ACTIONS(2150), - [anon_sym_not_DASHin2] = ACTIONS(2150), - [anon_sym_has2] = ACTIONS(2150), - [anon_sym_not_DASHhas2] = ACTIONS(2150), - [anon_sym_starts_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), - [anon_sym_ends_DASHwith2] = ACTIONS(2150), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), - [anon_sym_EQ_EQ2] = ACTIONS(2150), - [anon_sym_BANG_EQ2] = ACTIONS(2150), - [anon_sym_LT2] = ACTIONS(2152), - [anon_sym_LT_EQ2] = ACTIONS(2150), - [anon_sym_GT_EQ2] = ACTIONS(2150), - [anon_sym_EQ_TILDE2] = ACTIONS(2150), - [anon_sym_BANG_TILDE2] = ACTIONS(2150), - [anon_sym_like2] = ACTIONS(2150), - [anon_sym_not_DASHlike2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2150), - [anon_sym_PLUS_PLUS2] = ACTIONS(2150), - [anon_sym_SLASH2] = ACTIONS(2152), - [anon_sym_mod2] = ACTIONS(2150), - [anon_sym_SLASH_SLASH2] = ACTIONS(2150), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_bit_DASHshl2] = ACTIONS(2150), - [anon_sym_bit_DASHshr2] = ACTIONS(2150), - [anon_sym_bit_DASHand2] = ACTIONS(2150), - [anon_sym_bit_DASHxor2] = ACTIONS(2150), - [anon_sym_bit_DASHor2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1120)] = { - [aux_sym__repeat_newline] = STATE(1136), - [sym_comment] = STATE(1120), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [1067] = { + [aux_sym__repeat_newline] = STATE(1140), + [sym_comment] = STATE(1067), + [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), + }, + [1068] = { + [aux_sym__repeat_newline] = STATE(1141), + [sym_comment] = STATE(1068), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [1069] = { + [aux_sym__repeat_newline] = STATE(1055), + [sym_comment] = STATE(1069), + [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_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_POUND] = ACTIONS(3), }, - [STATE(1121)] = { - [aux_sym__repeat_newline] = STATE(1037), - [sym_comment] = STATE(1121), - [anon_sym_in] = ACTIONS(2492), - [sym__newline] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_err_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_GT_PIPE] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_GT2] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_STAR2] = ACTIONS(2494), - [anon_sym_and2] = ACTIONS(2492), - [anon_sym_xor2] = ACTIONS(2492), - [anon_sym_or2] = ACTIONS(2492), - [anon_sym_not_DASHin2] = ACTIONS(2492), - [anon_sym_has2] = ACTIONS(2492), - [anon_sym_not_DASHhas2] = ACTIONS(2492), - [anon_sym_starts_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), - [anon_sym_ends_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), - [anon_sym_EQ_EQ2] = ACTIONS(2492), - [anon_sym_BANG_EQ2] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2494), - [anon_sym_LT_EQ2] = ACTIONS(2492), - [anon_sym_GT_EQ2] = ACTIONS(2492), - [anon_sym_EQ_TILDE2] = ACTIONS(2492), - [anon_sym_BANG_TILDE2] = ACTIONS(2492), - [anon_sym_like2] = ACTIONS(2492), - [anon_sym_not_DASHlike2] = ACTIONS(2492), - [anon_sym_STAR_STAR2] = ACTIONS(2492), - [anon_sym_PLUS_PLUS2] = ACTIONS(2492), - [anon_sym_SLASH2] = ACTIONS(2494), - [anon_sym_mod2] = ACTIONS(2492), - [anon_sym_SLASH_SLASH2] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_bit_DASHshl2] = ACTIONS(2492), - [anon_sym_bit_DASHshr2] = ACTIONS(2492), - [anon_sym_bit_DASHand2] = ACTIONS(2492), - [anon_sym_bit_DASHxor2] = ACTIONS(2492), - [anon_sym_bit_DASHor2] = ACTIONS(2492), - [anon_sym_err_GT] = ACTIONS(2494), - [anon_sym_out_GT] = ACTIONS(2494), - [anon_sym_e_GT] = ACTIONS(2494), - [anon_sym_o_GT] = ACTIONS(2494), - [anon_sym_err_PLUSout_GT] = ACTIONS(2494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), - [anon_sym_o_PLUSe_GT] = ACTIONS(2494), - [anon_sym_e_PLUSo_GT] = ACTIONS(2494), - [anon_sym_err_GT_GT] = ACTIONS(2492), - [anon_sym_out_GT_GT] = ACTIONS(2492), - [anon_sym_e_GT_GT] = ACTIONS(2492), - [anon_sym_o_GT_GT] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1122)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1122), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [1070] = { + [sym_comment] = STATE(1070), + [ts_builtin_sym_end] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1802), + [sym__newline] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1802), + [anon_sym_err_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_GT_PIPE] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), + [anon_sym_GT2] = ACTIONS(1804), + [anon_sym_DASH2] = ACTIONS(1802), + [anon_sym_STAR2] = ACTIONS(1804), + [anon_sym_and2] = ACTIONS(1802), + [anon_sym_xor2] = ACTIONS(1802), + [anon_sym_or2] = ACTIONS(1802), + [anon_sym_not_DASHin2] = ACTIONS(1802), + [anon_sym_has2] = ACTIONS(1802), + [anon_sym_not_DASHhas2] = ACTIONS(1802), + [anon_sym_starts_DASHwith2] = ACTIONS(1802), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), + [anon_sym_ends_DASHwith2] = ACTIONS(1802), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), + [anon_sym_EQ_EQ2] = ACTIONS(1802), + [anon_sym_BANG_EQ2] = ACTIONS(1802), + [anon_sym_LT2] = ACTIONS(1804), + [anon_sym_LT_EQ2] = ACTIONS(1802), + [anon_sym_GT_EQ2] = ACTIONS(1802), + [anon_sym_EQ_TILDE2] = ACTIONS(1802), + [anon_sym_BANG_TILDE2] = ACTIONS(1802), + [anon_sym_like2] = ACTIONS(1802), + [anon_sym_not_DASHlike2] = ACTIONS(1802), + [anon_sym_LPAREN2] = ACTIONS(1802), + [anon_sym_STAR_STAR2] = ACTIONS(1802), + [anon_sym_PLUS_PLUS2] = ACTIONS(1802), + [anon_sym_SLASH2] = ACTIONS(1804), + [anon_sym_mod2] = ACTIONS(1802), + [anon_sym_SLASH_SLASH2] = ACTIONS(1802), + [anon_sym_PLUS2] = ACTIONS(1804), + [anon_sym_bit_DASHshl2] = ACTIONS(1802), + [anon_sym_bit_DASHshr2] = ACTIONS(1802), + [anon_sym_bit_DASHand2] = ACTIONS(1802), + [anon_sym_bit_DASHxor2] = ACTIONS(1802), + [anon_sym_bit_DASHor2] = ACTIONS(1802), + [anon_sym_err_GT] = ACTIONS(1804), + [anon_sym_out_GT] = ACTIONS(1804), + [anon_sym_e_GT] = ACTIONS(1804), + [anon_sym_o_GT] = ACTIONS(1804), + [anon_sym_err_PLUSout_GT] = ACTIONS(1804), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), + [anon_sym_o_PLUSe_GT] = ACTIONS(1804), + [anon_sym_e_PLUSo_GT] = ACTIONS(1804), + [anon_sym_err_GT_GT] = ACTIONS(1802), + [anon_sym_out_GT_GT] = ACTIONS(1802), + [anon_sym_e_GT_GT] = ACTIONS(1802), + [anon_sym_o_GT_GT] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), + [sym__unquoted_pattern] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(3), + }, + [1071] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1071), + [anon_sym_in] = ACTIONS(2728), + [sym__newline] = ACTIONS(2728), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2730), + [anon_sym_DASH2] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_STAR2] = ACTIONS(2730), + [anon_sym_and2] = ACTIONS(2728), + [anon_sym_xor2] = ACTIONS(2728), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2728), + [anon_sym_has2] = ACTIONS(2728), + [anon_sym_not_DASHhas2] = ACTIONS(2728), + [anon_sym_starts_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), + [anon_sym_ends_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), + [anon_sym_EQ_EQ2] = ACTIONS(2728), + [anon_sym_BANG_EQ2] = ACTIONS(2728), + [anon_sym_LT2] = ACTIONS(2730), + [anon_sym_LT_EQ2] = ACTIONS(2728), + [anon_sym_GT_EQ2] = ACTIONS(2728), + [anon_sym_EQ_TILDE2] = ACTIONS(2728), + [anon_sym_BANG_TILDE2] = ACTIONS(2728), + [anon_sym_like2] = ACTIONS(2728), + [anon_sym_not_DASHlike2] = ACTIONS(2728), + [anon_sym_STAR_STAR2] = ACTIONS(2728), + [anon_sym_PLUS_PLUS2] = ACTIONS(2728), + [anon_sym_SLASH2] = ACTIONS(2730), + [anon_sym_mod2] = ACTIONS(2728), + [anon_sym_SLASH_SLASH2] = ACTIONS(2728), + [anon_sym_PLUS2] = ACTIONS(2730), + [anon_sym_bit_DASHshl2] = ACTIONS(2728), + [anon_sym_bit_DASHshr2] = ACTIONS(2728), + [anon_sym_bit_DASHand2] = ACTIONS(2728), + [anon_sym_bit_DASHxor2] = ACTIONS(2728), + [anon_sym_bit_DASHor2] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2730), + [anon_sym_out_GT] = ACTIONS(2730), + [anon_sym_e_GT] = ACTIONS(2730), + [anon_sym_o_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT] = ACTIONS(2730), + [anon_sym_err_GT_GT] = ACTIONS(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1123)] = { - [aux_sym__repeat_newline] = STATE(1038), - [sym_comment] = STATE(1123), - [anon_sym_in] = ACTIONS(2492), - [sym__newline] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_err_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_GT_PIPE] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_GT2] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_STAR2] = ACTIONS(2494), - [anon_sym_and2] = ACTIONS(2492), - [anon_sym_xor2] = ACTIONS(2492), - [anon_sym_or2] = ACTIONS(2492), - [anon_sym_not_DASHin2] = ACTIONS(2492), - [anon_sym_has2] = ACTIONS(2492), - [anon_sym_not_DASHhas2] = ACTIONS(2492), - [anon_sym_starts_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), - [anon_sym_ends_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), - [anon_sym_EQ_EQ2] = ACTIONS(2492), - [anon_sym_BANG_EQ2] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2494), - [anon_sym_LT_EQ2] = ACTIONS(2492), - [anon_sym_GT_EQ2] = ACTIONS(2492), - [anon_sym_EQ_TILDE2] = ACTIONS(2492), - [anon_sym_BANG_TILDE2] = ACTIONS(2492), - [anon_sym_like2] = ACTIONS(2492), - [anon_sym_not_DASHlike2] = ACTIONS(2492), - [anon_sym_STAR_STAR2] = ACTIONS(2492), - [anon_sym_PLUS_PLUS2] = ACTIONS(2492), - [anon_sym_SLASH2] = ACTIONS(2494), - [anon_sym_mod2] = ACTIONS(2492), - [anon_sym_SLASH_SLASH2] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_bit_DASHshl2] = ACTIONS(2492), - [anon_sym_bit_DASHshr2] = ACTIONS(2492), - [anon_sym_bit_DASHand2] = ACTIONS(2492), - [anon_sym_bit_DASHxor2] = ACTIONS(2492), - [anon_sym_bit_DASHor2] = ACTIONS(2492), - [anon_sym_err_GT] = ACTIONS(2494), - [anon_sym_out_GT] = ACTIONS(2494), - [anon_sym_e_GT] = ACTIONS(2494), - [anon_sym_o_GT] = ACTIONS(2494), - [anon_sym_err_PLUSout_GT] = ACTIONS(2494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), - [anon_sym_o_PLUSe_GT] = ACTIONS(2494), - [anon_sym_e_PLUSo_GT] = ACTIONS(2494), - [anon_sym_err_GT_GT] = ACTIONS(2492), - [anon_sym_out_GT_GT] = ACTIONS(2492), - [anon_sym_e_GT_GT] = ACTIONS(2492), - [anon_sym_o_GT_GT] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1124)] = { - [aux_sym__repeat_newline] = STATE(1338), - [sym__expression_parenthesized] = STATE(4669), - [sym_expr_unary] = STATE(1167), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary_parenthesized] = STATE(1167), - [sym__expr_binary_expression_parenthesized] = STATE(2204), - [sym_expr_parenthesized] = STATE(799), - [sym_val_range] = STATE(1167), - [sym__value] = STATE(1167), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1878), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_comment] = STATE(1124), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(2732), - [aux_sym_cmd_identifier_token3] = ACTIONS(191), - [aux_sym_cmd_identifier_token4] = ACTIONS(191), - [aux_sym_cmd_identifier_token5] = ACTIONS(191), - [sym__newline] = ACTIONS(2642), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(181), - [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [1072] = { + [sym_comment] = STATE(1072), + [ts_builtin_sym_end] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_LPAREN2] = ACTIONS(2710), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [sym__unquoted_pattern] = ACTIONS(1697), + [anon_sym_POUND] = ACTIONS(3), + }, + [1073] = { + [aux_sym__repeat_newline] = STATE(1146), + [sym_comment] = STATE(1073), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [1074] = { + [aux_sym__repeat_newline] = STATE(1060), + [sym_comment] = STATE(1074), + [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_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_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(1125)] = { - [sym_expr_unary] = STATE(2778), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_parenthesized] = STATE(2529), - [sym_val_range] = STATE(2778), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(2778), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(2587), - [sym_val_variable] = STATE(2550), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(2372), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(2619), - [sym__unquoted_with_expr] = STATE(2780), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(1125), - [anon_sym_true] = ACTIONS(2802), - [anon_sym_false] = ACTIONS(2802), - [anon_sym_null] = ACTIONS(2804), - [aux_sym_cmd_identifier_token3] = ACTIONS(2806), - [aux_sym_cmd_identifier_token4] = ACTIONS(2806), - [aux_sym_cmd_identifier_token5] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_DOLLAR] = ACTIONS(2812), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(2814), + [1075] = { + [aux_sym__repeat_newline] = STATE(1151), + [sym_comment] = STATE(1075), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [1076] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1076), + [anon_sym_in] = ACTIONS(2728), + [sym__newline] = ACTIONS(2728), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2730), + [anon_sym_DASH2] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_STAR2] = ACTIONS(2730), + [anon_sym_and2] = ACTIONS(2728), + [anon_sym_xor2] = ACTIONS(2728), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2728), + [anon_sym_has2] = ACTIONS(2728), + [anon_sym_not_DASHhas2] = ACTIONS(2728), + [anon_sym_starts_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), + [anon_sym_ends_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), + [anon_sym_EQ_EQ2] = ACTIONS(2728), + [anon_sym_BANG_EQ2] = ACTIONS(2728), + [anon_sym_LT2] = ACTIONS(2730), + [anon_sym_LT_EQ2] = ACTIONS(2728), + [anon_sym_GT_EQ2] = ACTIONS(2728), + [anon_sym_EQ_TILDE2] = ACTIONS(2728), + [anon_sym_BANG_TILDE2] = ACTIONS(2728), + [anon_sym_like2] = ACTIONS(2728), + [anon_sym_not_DASHlike2] = ACTIONS(2728), + [anon_sym_STAR_STAR2] = ACTIONS(2728), + [anon_sym_PLUS_PLUS2] = ACTIONS(2728), + [anon_sym_SLASH2] = ACTIONS(2730), + [anon_sym_mod2] = ACTIONS(2728), + [anon_sym_SLASH_SLASH2] = ACTIONS(2728), + [anon_sym_PLUS2] = ACTIONS(2730), + [anon_sym_bit_DASHshl2] = ACTIONS(2728), + [anon_sym_bit_DASHshr2] = ACTIONS(2728), + [anon_sym_bit_DASHand2] = ACTIONS(2728), + [anon_sym_bit_DASHxor2] = ACTIONS(2728), + [anon_sym_bit_DASHor2] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2730), + [anon_sym_out_GT] = ACTIONS(2730), + [anon_sym_e_GT] = ACTIONS(2730), + [anon_sym_o_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT] = ACTIONS(2730), + [anon_sym_err_GT_GT] = ACTIONS(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(3), + }, + [1077] = { + [sym_comment] = STATE(1077), + [ts_builtin_sym_end] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2712), + [sym__newline] = ACTIONS(2712), + [anon_sym_SEMI] = ACTIONS(2712), + [anon_sym_PIPE] = ACTIONS(2712), + [anon_sym_err_GT_PIPE] = ACTIONS(2712), + [anon_sym_out_GT_PIPE] = ACTIONS(2712), + [anon_sym_e_GT_PIPE] = ACTIONS(2712), + [anon_sym_o_GT_PIPE] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), + [anon_sym_GT2] = ACTIONS(2714), + [anon_sym_DASH2] = ACTIONS(2712), + [anon_sym_STAR2] = ACTIONS(2714), + [anon_sym_and2] = ACTIONS(2712), + [anon_sym_xor2] = ACTIONS(2712), + [anon_sym_or2] = ACTIONS(2712), + [anon_sym_not_DASHin2] = ACTIONS(2712), + [anon_sym_has2] = ACTIONS(2712), + [anon_sym_not_DASHhas2] = ACTIONS(2712), + [anon_sym_starts_DASHwith2] = ACTIONS(2712), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), + [anon_sym_ends_DASHwith2] = ACTIONS(2712), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), + [anon_sym_EQ_EQ2] = ACTIONS(2712), + [anon_sym_BANG_EQ2] = ACTIONS(2712), + [anon_sym_LT2] = ACTIONS(2714), + [anon_sym_LT_EQ2] = ACTIONS(2712), + [anon_sym_GT_EQ2] = ACTIONS(2712), + [anon_sym_EQ_TILDE2] = ACTIONS(2712), + [anon_sym_BANG_TILDE2] = ACTIONS(2712), + [anon_sym_like2] = ACTIONS(2712), + [anon_sym_not_DASHlike2] = ACTIONS(2712), + [anon_sym_LPAREN2] = ACTIONS(2716), + [anon_sym_STAR_STAR2] = ACTIONS(2712), + [anon_sym_PLUS_PLUS2] = ACTIONS(2712), + [anon_sym_SLASH2] = ACTIONS(2714), + [anon_sym_mod2] = ACTIONS(2712), + [anon_sym_SLASH_SLASH2] = ACTIONS(2712), + [anon_sym_PLUS2] = ACTIONS(2714), + [anon_sym_bit_DASHshl2] = ACTIONS(2712), + [anon_sym_bit_DASHshr2] = ACTIONS(2712), + [anon_sym_bit_DASHand2] = ACTIONS(2712), + [anon_sym_bit_DASHxor2] = ACTIONS(2712), + [anon_sym_bit_DASHor2] = ACTIONS(2712), + [anon_sym_err_GT] = ACTIONS(2714), + [anon_sym_out_GT] = ACTIONS(2714), + [anon_sym_e_GT] = ACTIONS(2714), + [anon_sym_o_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT] = ACTIONS(2714), + [anon_sym_err_GT_GT] = ACTIONS(2712), + [anon_sym_out_GT_GT] = ACTIONS(2712), + [anon_sym_e_GT_GT] = ACTIONS(2712), + [anon_sym_o_GT_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [sym__unquoted_pattern] = ACTIONS(2718), + [anon_sym_POUND] = ACTIONS(3), + }, + [1078] = { + [aux_sym__repeat_newline] = STATE(1292), + [sym__expression_parenthesized] = STATE(4618), + [sym_expr_unary] = STATE(1215), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary_parenthesized] = STATE(1215), + [sym__expr_binary_expression_parenthesized] = STATE(2200), + [sym_expr_parenthesized] = STATE(820), + [sym_val_range] = STATE(1215), + [sym__value] = STATE(1215), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1905), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_comment] = STATE(1078), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(2732), + [aux_sym_cmd_identifier_token3] = ACTIONS(191), + [aux_sym_cmd_identifier_token4] = ACTIONS(191), + [aux_sym_cmd_identifier_token5] = ACTIONS(191), + [sym__newline] = ACTIONS(2698), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(215), + }, + [1079] = { + [sym_comment] = STATE(1079), + [ts_builtin_sym_end] = ACTIONS(2125), + [anon_sym_in] = ACTIONS(2125), + [sym__newline] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(2125), + [anon_sym_err_GT_PIPE] = ACTIONS(2125), + [anon_sym_out_GT_PIPE] = ACTIONS(2125), + [anon_sym_e_GT_PIPE] = ACTIONS(2125), + [anon_sym_o_GT_PIPE] = ACTIONS(2125), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2125), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2125), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2125), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2125), + [anon_sym_GT2] = ACTIONS(2127), + [anon_sym_DASH2] = ACTIONS(2125), + [anon_sym_STAR2] = ACTIONS(2127), + [anon_sym_and2] = ACTIONS(2125), + [anon_sym_xor2] = ACTIONS(2125), + [anon_sym_or2] = ACTIONS(2125), + [anon_sym_not_DASHin2] = ACTIONS(2125), + [anon_sym_has2] = ACTIONS(2125), + [anon_sym_not_DASHhas2] = ACTIONS(2125), + [anon_sym_starts_DASHwith2] = ACTIONS(2125), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2125), + [anon_sym_ends_DASHwith2] = ACTIONS(2125), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2125), + [anon_sym_EQ_EQ2] = ACTIONS(2125), + [anon_sym_BANG_EQ2] = ACTIONS(2125), + [anon_sym_LT2] = ACTIONS(2127), + [anon_sym_LT_EQ2] = ACTIONS(2125), + [anon_sym_GT_EQ2] = ACTIONS(2125), + [anon_sym_EQ_TILDE2] = ACTIONS(2125), + [anon_sym_BANG_TILDE2] = ACTIONS(2125), + [anon_sym_like2] = ACTIONS(2125), + [anon_sym_not_DASHlike2] = ACTIONS(2125), + [anon_sym_LPAREN2] = ACTIONS(2129), + [anon_sym_STAR_STAR2] = ACTIONS(2125), + [anon_sym_PLUS_PLUS2] = ACTIONS(2125), + [anon_sym_SLASH2] = ACTIONS(2127), + [anon_sym_mod2] = ACTIONS(2125), + [anon_sym_SLASH_SLASH2] = ACTIONS(2125), + [anon_sym_PLUS2] = ACTIONS(2127), + [anon_sym_bit_DASHshl2] = ACTIONS(2125), + [anon_sym_bit_DASHshr2] = ACTIONS(2125), + [anon_sym_bit_DASHand2] = ACTIONS(2125), + [anon_sym_bit_DASHxor2] = ACTIONS(2125), + [anon_sym_bit_DASHor2] = ACTIONS(2125), + [anon_sym_err_GT] = ACTIONS(2127), + [anon_sym_out_GT] = ACTIONS(2127), + [anon_sym_e_GT] = ACTIONS(2127), + [anon_sym_o_GT] = ACTIONS(2127), + [anon_sym_err_PLUSout_GT] = ACTIONS(2127), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2127), + [anon_sym_o_PLUSe_GT] = ACTIONS(2127), + [anon_sym_e_PLUSo_GT] = ACTIONS(2127), + [anon_sym_err_GT_GT] = ACTIONS(2125), + [anon_sym_out_GT_GT] = ACTIONS(2125), + [anon_sym_e_GT_GT] = ACTIONS(2125), + [anon_sym_o_GT_GT] = ACTIONS(2125), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2125), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2125), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2125), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2125), + [sym__unquoted_pattern] = ACTIONS(1636), + [anon_sym_POUND] = ACTIONS(3), + }, + [1080] = { + [sym_comment] = STATE(1080), + [ts_builtin_sym_end] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1810), + [sym__newline] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_err_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_GT_PIPE] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), + [anon_sym_GT2] = ACTIONS(1812), + [anon_sym_DASH2] = ACTIONS(1810), + [anon_sym_STAR2] = ACTIONS(1812), + [anon_sym_and2] = ACTIONS(1810), + [anon_sym_xor2] = ACTIONS(1810), + [anon_sym_or2] = ACTIONS(1810), + [anon_sym_not_DASHin2] = ACTIONS(1810), + [anon_sym_has2] = ACTIONS(1810), + [anon_sym_not_DASHhas2] = ACTIONS(1810), + [anon_sym_starts_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1810), + [anon_sym_ends_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1810), + [anon_sym_EQ_EQ2] = ACTIONS(1810), + [anon_sym_BANG_EQ2] = ACTIONS(1810), + [anon_sym_LT2] = ACTIONS(1812), + [anon_sym_LT_EQ2] = ACTIONS(1810), + [anon_sym_GT_EQ2] = ACTIONS(1810), + [anon_sym_EQ_TILDE2] = ACTIONS(1810), + [anon_sym_BANG_TILDE2] = ACTIONS(1810), + [anon_sym_like2] = ACTIONS(1810), + [anon_sym_not_DASHlike2] = ACTIONS(1810), + [anon_sym_STAR_STAR2] = ACTIONS(1810), + [anon_sym_PLUS_PLUS2] = ACTIONS(1810), + [anon_sym_SLASH2] = ACTIONS(1812), + [anon_sym_mod2] = ACTIONS(1810), + [anon_sym_SLASH_SLASH2] = ACTIONS(1810), + [anon_sym_PLUS2] = ACTIONS(1812), + [anon_sym_bit_DASHshl2] = ACTIONS(1810), + [anon_sym_bit_DASHshr2] = ACTIONS(1810), + [anon_sym_bit_DASHand2] = ACTIONS(1810), + [anon_sym_bit_DASHxor2] = ACTIONS(1810), + [anon_sym_bit_DASHor2] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(2798), + [aux_sym__immediate_decimal_token5] = ACTIONS(1920), + [anon_sym_err_GT] = ACTIONS(1812), + [anon_sym_out_GT] = ACTIONS(1812), + [anon_sym_e_GT] = ACTIONS(1812), + [anon_sym_o_GT] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT] = ACTIONS(1812), + [anon_sym_err_GT_GT] = ACTIONS(1810), + [anon_sym_out_GT_GT] = ACTIONS(1810), + [anon_sym_e_GT_GT] = ACTIONS(1810), + [anon_sym_o_GT_GT] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), + [anon_sym_POUND] = ACTIONS(3), + }, + [1081] = { + [aux_sym__repeat_newline] = STATE(1076), + [sym_comment] = STATE(1081), + [anon_sym_in] = ACTIONS(2557), + [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [1082] = { + [aux_sym__repeat_newline] = STATE(1148), + [sym_comment] = STATE(1082), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [1083] = { + [sym_comment] = STATE(1083), + [ts_builtin_sym_end] = ACTIONS(1262), + [anon_sym_in] = ACTIONS(1262), + [sym__newline] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_PIPE] = ACTIONS(1262), + [anon_sym_err_GT_PIPE] = ACTIONS(1262), + [anon_sym_out_GT_PIPE] = ACTIONS(1262), + [anon_sym_e_GT_PIPE] = ACTIONS(1262), + [anon_sym_o_GT_PIPE] = ACTIONS(1262), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1262), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1262), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1262), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1262), + [anon_sym_GT2] = ACTIONS(1246), + [anon_sym_DASH2] = ACTIONS(1262), + [anon_sym_STAR2] = ACTIONS(1246), + [anon_sym_and2] = ACTIONS(1262), + [anon_sym_xor2] = ACTIONS(1262), + [anon_sym_or2] = ACTIONS(1262), + [anon_sym_not_DASHin2] = ACTIONS(1262), + [anon_sym_has2] = ACTIONS(1262), + [anon_sym_not_DASHhas2] = ACTIONS(1262), + [anon_sym_starts_DASHwith2] = ACTIONS(1262), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1262), + [anon_sym_ends_DASHwith2] = ACTIONS(1262), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1262), + [anon_sym_EQ_EQ2] = ACTIONS(1262), + [anon_sym_BANG_EQ2] = ACTIONS(1262), + [anon_sym_LT2] = ACTIONS(1246), + [anon_sym_LT_EQ2] = ACTIONS(1262), + [anon_sym_GT_EQ2] = ACTIONS(1262), + [anon_sym_EQ_TILDE2] = ACTIONS(1262), + [anon_sym_BANG_TILDE2] = ACTIONS(1262), + [anon_sym_like2] = ACTIONS(1262), + [anon_sym_not_DASHlike2] = ACTIONS(1262), + [anon_sym_LPAREN2] = ACTIONS(2636), + [anon_sym_STAR_STAR2] = ACTIONS(1262), + [anon_sym_PLUS_PLUS2] = ACTIONS(1262), + [anon_sym_SLASH2] = ACTIONS(1246), + [anon_sym_mod2] = ACTIONS(1262), + [anon_sym_SLASH_SLASH2] = ACTIONS(1262), + [anon_sym_PLUS2] = ACTIONS(1246), + [anon_sym_bit_DASHshl2] = ACTIONS(1262), + [anon_sym_bit_DASHshr2] = ACTIONS(1262), + [anon_sym_bit_DASHand2] = ACTIONS(1262), + [anon_sym_bit_DASHxor2] = ACTIONS(1262), + [anon_sym_bit_DASHor2] = ACTIONS(1262), + [anon_sym_err_GT] = ACTIONS(1246), + [anon_sym_out_GT] = ACTIONS(1246), + [anon_sym_e_GT] = ACTIONS(1246), + [anon_sym_o_GT] = ACTIONS(1246), + [anon_sym_err_PLUSout_GT] = ACTIONS(1246), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1246), + [anon_sym_o_PLUSe_GT] = ACTIONS(1246), + [anon_sym_e_PLUSo_GT] = ACTIONS(1246), + [anon_sym_err_GT_GT] = ACTIONS(1262), + [anon_sym_out_GT_GT] = ACTIONS(1262), + [anon_sym_e_GT_GT] = ACTIONS(1262), + [anon_sym_o_GT_GT] = ACTIONS(1262), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1262), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1262), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1262), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1262), + [sym__unquoted_pattern] = ACTIONS(2638), + [anon_sym_POUND] = ACTIONS(3), + }, + [1084] = { + [sym_comment] = STATE(1084), + [ts_builtin_sym_end] = ACTIONS(1254), + [anon_sym_in] = ACTIONS(1254), + [sym__newline] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym_PIPE] = ACTIONS(1254), + [anon_sym_err_GT_PIPE] = ACTIONS(1254), + [anon_sym_out_GT_PIPE] = ACTIONS(1254), + [anon_sym_e_GT_PIPE] = ACTIONS(1254), + [anon_sym_o_GT_PIPE] = ACTIONS(1254), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1254), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1254), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1254), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1254), + [anon_sym_GT2] = ACTIONS(1238), + [anon_sym_DASH2] = ACTIONS(1254), + [anon_sym_STAR2] = ACTIONS(1238), + [anon_sym_and2] = ACTIONS(1254), + [anon_sym_xor2] = ACTIONS(1254), + [anon_sym_or2] = ACTIONS(1254), + [anon_sym_not_DASHin2] = ACTIONS(1254), + [anon_sym_has2] = ACTIONS(1254), + [anon_sym_not_DASHhas2] = ACTIONS(1254), + [anon_sym_starts_DASHwith2] = ACTIONS(1254), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1254), + [anon_sym_ends_DASHwith2] = ACTIONS(1254), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1254), + [anon_sym_EQ_EQ2] = ACTIONS(1254), + [anon_sym_BANG_EQ2] = ACTIONS(1254), + [anon_sym_LT2] = ACTIONS(1238), + [anon_sym_LT_EQ2] = ACTIONS(1254), + [anon_sym_GT_EQ2] = ACTIONS(1254), + [anon_sym_EQ_TILDE2] = ACTIONS(1254), + [anon_sym_BANG_TILDE2] = ACTIONS(1254), + [anon_sym_like2] = ACTIONS(1254), + [anon_sym_not_DASHlike2] = ACTIONS(1254), + [anon_sym_LPAREN2] = ACTIONS(2636), + [anon_sym_STAR_STAR2] = ACTIONS(1254), + [anon_sym_PLUS_PLUS2] = ACTIONS(1254), + [anon_sym_SLASH2] = ACTIONS(1238), + [anon_sym_mod2] = ACTIONS(1254), + [anon_sym_SLASH_SLASH2] = ACTIONS(1254), + [anon_sym_PLUS2] = ACTIONS(1238), + [anon_sym_bit_DASHshl2] = ACTIONS(1254), + [anon_sym_bit_DASHshr2] = ACTIONS(1254), + [anon_sym_bit_DASHand2] = ACTIONS(1254), + [anon_sym_bit_DASHxor2] = ACTIONS(1254), + [anon_sym_bit_DASHor2] = ACTIONS(1254), + [anon_sym_err_GT] = ACTIONS(1238), + [anon_sym_out_GT] = ACTIONS(1238), + [anon_sym_e_GT] = ACTIONS(1238), + [anon_sym_o_GT] = ACTIONS(1238), + [anon_sym_err_PLUSout_GT] = ACTIONS(1238), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1238), + [anon_sym_o_PLUSe_GT] = ACTIONS(1238), + [anon_sym_e_PLUSo_GT] = ACTIONS(1238), + [anon_sym_err_GT_GT] = ACTIONS(1254), + [anon_sym_out_GT_GT] = ACTIONS(1254), + [anon_sym_e_GT_GT] = ACTIONS(1254), + [anon_sym_o_GT_GT] = ACTIONS(1254), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1254), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1254), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1254), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1254), + [sym__unquoted_pattern] = ACTIONS(2638), + [anon_sym_POUND] = ACTIONS(3), + }, + [1085] = { + [aux_sym__repeat_newline] = STATE(1071), + [sym_comment] = STATE(1085), + [anon_sym_in] = ACTIONS(2557), + [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [1086] = { + [sym_comment] = STATE(1086), + [aux_sym_cmd_identifier_token2] = ACTIONS(2690), + [anon_sym_in] = ACTIONS(811), + [sym__newline] = ACTIONS(910), + [anon_sym_SEMI] = ACTIONS(910), + [anon_sym_PIPE] = ACTIONS(910), + [anon_sym_err_GT_PIPE] = ACTIONS(910), + [anon_sym_out_GT_PIPE] = ACTIONS(910), + [anon_sym_e_GT_PIPE] = ACTIONS(910), + [anon_sym_o_GT_PIPE] = ACTIONS(910), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(910), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(910), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(910), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(910), + [anon_sym_RPAREN] = ACTIONS(910), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(811), + [anon_sym_RBRACE] = ACTIONS(910), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(811), + [anon_sym_xor2] = ACTIONS(811), + [anon_sym_or2] = ACTIONS(811), + [anon_sym_not_DASHin2] = ACTIONS(811), + [anon_sym_has2] = ACTIONS(811), + [anon_sym_not_DASHhas2] = ACTIONS(811), + [anon_sym_starts_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(811), + [anon_sym_ends_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(811), + [anon_sym_EQ_EQ2] = ACTIONS(910), + [anon_sym_BANG_EQ2] = ACTIONS(910), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(910), + [anon_sym_GT_EQ2] = ACTIONS(910), + [anon_sym_EQ_TILDE2] = ACTIONS(910), + [anon_sym_BANG_TILDE2] = ACTIONS(811), + [anon_sym_like2] = ACTIONS(811), + [anon_sym_not_DASHlike2] = ACTIONS(811), + [anon_sym_STAR_STAR2] = ACTIONS(811), + [anon_sym_PLUS_PLUS2] = ACTIONS(811), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(811), + [anon_sym_SLASH_SLASH2] = ACTIONS(811), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(811), + [anon_sym_bit_DASHshr2] = ACTIONS(811), + [anon_sym_bit_DASHand2] = ACTIONS(811), + [anon_sym_bit_DASHxor2] = ACTIONS(811), + [anon_sym_bit_DASHor2] = ACTIONS(811), + [anon_sym_err_GT] = ACTIONS(811), + [anon_sym_out_GT] = ACTIONS(811), + [anon_sym_e_GT] = ACTIONS(811), + [anon_sym_o_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT] = ACTIONS(811), + [anon_sym_err_GT_GT] = ACTIONS(910), + [anon_sym_out_GT_GT] = ACTIONS(910), + [anon_sym_e_GT_GT] = ACTIONS(910), + [anon_sym_o_GT_GT] = ACTIONS(910), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(910), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(910), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(910), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(910), + [anon_sym_POUND] = ACTIONS(105), + }, + [1087] = { + [aux_sym__repeat_newline] = STATE(1143), + [sym_comment] = STATE(1087), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [1088] = { + [sym_comment] = STATE(1088), + [aux_sym_cmd_identifier_token2] = ACTIONS(2800), + [anon_sym_in] = ACTIONS(811), + [sym__newline] = ACTIONS(910), + [anon_sym_SEMI] = ACTIONS(910), + [anon_sym_PIPE] = ACTIONS(910), + [anon_sym_err_GT_PIPE] = ACTIONS(910), + [anon_sym_out_GT_PIPE] = ACTIONS(910), + [anon_sym_e_GT_PIPE] = ACTIONS(910), + [anon_sym_o_GT_PIPE] = ACTIONS(910), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(910), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(910), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(910), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(910), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(811), + [anon_sym_RBRACE] = ACTIONS(910), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(811), + [anon_sym_xor2] = ACTIONS(811), + [anon_sym_or2] = ACTIONS(811), + [anon_sym_not_DASHin2] = ACTIONS(811), + [anon_sym_has2] = ACTIONS(811), + [anon_sym_not_DASHhas2] = ACTIONS(811), + [anon_sym_starts_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(811), + [anon_sym_ends_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(811), + [anon_sym_EQ_EQ2] = ACTIONS(910), + [anon_sym_BANG_EQ2] = ACTIONS(910), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(910), + [anon_sym_GT_EQ2] = ACTIONS(910), + [anon_sym_EQ_TILDE2] = ACTIONS(910), + [anon_sym_BANG_TILDE2] = ACTIONS(811), + [anon_sym_like2] = ACTIONS(811), + [anon_sym_not_DASHlike2] = ACTIONS(811), + [anon_sym_STAR_STAR2] = ACTIONS(811), + [anon_sym_PLUS_PLUS2] = ACTIONS(811), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(811), + [anon_sym_SLASH_SLASH2] = ACTIONS(811), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(811), + [anon_sym_bit_DASHshr2] = ACTIONS(811), + [anon_sym_bit_DASHand2] = ACTIONS(811), + [anon_sym_bit_DASHxor2] = ACTIONS(811), + [anon_sym_bit_DASHor2] = ACTIONS(811), + [anon_sym_COLON2] = ACTIONS(910), + [anon_sym_err_GT] = ACTIONS(811), + [anon_sym_out_GT] = ACTIONS(811), + [anon_sym_e_GT] = ACTIONS(811), + [anon_sym_o_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT] = ACTIONS(811), + [anon_sym_err_GT_GT] = ACTIONS(910), + [anon_sym_out_GT_GT] = ACTIONS(910), + [anon_sym_e_GT_GT] = ACTIONS(910), + [anon_sym_o_GT_GT] = ACTIONS(910), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(910), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(910), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(910), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(910), + [anon_sym_POUND] = ACTIONS(105), + }, + [1089] = { + [aux_sym__repeat_newline] = STATE(1066), + [sym_comment] = STATE(1089), + [anon_sym_in] = ACTIONS(2557), + [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [1090] = { + [sym_comment] = STATE(1090), + [aux_sym_cmd_identifier_token2] = ACTIONS(2690), + [anon_sym_in] = ACTIONS(2598), + [sym__newline] = ACTIONS(2596), + [anon_sym_SEMI] = ACTIONS(2596), + [anon_sym_PIPE] = ACTIONS(2596), + [anon_sym_err_GT_PIPE] = ACTIONS(2596), + [anon_sym_out_GT_PIPE] = ACTIONS(2596), + [anon_sym_e_GT_PIPE] = ACTIONS(2596), + [anon_sym_o_GT_PIPE] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2596), + [anon_sym_RPAREN] = ACTIONS(2596), + [anon_sym_GT2] = ACTIONS(2598), + [anon_sym_DASH2] = ACTIONS(2598), + [anon_sym_RBRACE] = ACTIONS(2596), + [anon_sym_STAR2] = ACTIONS(2598), + [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(2596), + [anon_sym_BANG_EQ2] = ACTIONS(2596), + [anon_sym_LT2] = ACTIONS(2598), + [anon_sym_LT_EQ2] = ACTIONS(2596), + [anon_sym_GT_EQ2] = ACTIONS(2596), + [anon_sym_EQ_TILDE2] = ACTIONS(2596), + [anon_sym_BANG_TILDE2] = ACTIONS(2598), + [anon_sym_like2] = ACTIONS(2598), + [anon_sym_not_DASHlike2] = ACTIONS(2598), + [anon_sym_STAR_STAR2] = ACTIONS(2598), + [anon_sym_PLUS_PLUS2] = ACTIONS(2598), + [anon_sym_SLASH2] = ACTIONS(2598), + [anon_sym_mod2] = ACTIONS(2598), + [anon_sym_SLASH_SLASH2] = ACTIONS(2598), + [anon_sym_PLUS2] = ACTIONS(2598), + [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(2598), + [anon_sym_out_GT] = ACTIONS(2598), + [anon_sym_e_GT] = ACTIONS(2598), + [anon_sym_o_GT] = ACTIONS(2598), + [anon_sym_err_PLUSout_GT] = ACTIONS(2598), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2598), + [anon_sym_o_PLUSe_GT] = ACTIONS(2598), + [anon_sym_e_PLUSo_GT] = ACTIONS(2598), + [anon_sym_err_GT_GT] = ACTIONS(2596), + [anon_sym_out_GT_GT] = ACTIONS(2596), + [anon_sym_e_GT_GT] = ACTIONS(2596), + [anon_sym_o_GT_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2596), + [anon_sym_POUND] = ACTIONS(105), + }, + [1091] = { + [aux_sym__repeat_newline] = STATE(1061), + [sym_comment] = STATE(1091), + [anon_sym_in] = ACTIONS(2557), + [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [1092] = { + [sym_comment] = STATE(1092), + [aux_sym_cmd_identifier_token2] = ACTIONS(2690), + [anon_sym_in] = ACTIONS(2610), + [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(2610), + [anon_sym_RBRACE] = ACTIONS(2608), + [anon_sym_STAR2] = ACTIONS(2610), + [anon_sym_and2] = ACTIONS(2610), + [anon_sym_xor2] = ACTIONS(2610), + [anon_sym_or2] = ACTIONS(2610), + [anon_sym_not_DASHin2] = ACTIONS(2610), + [anon_sym_has2] = ACTIONS(2610), + [anon_sym_not_DASHhas2] = ACTIONS(2610), + [anon_sym_starts_DASHwith2] = ACTIONS(2610), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2610), + [anon_sym_ends_DASHwith2] = ACTIONS(2610), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2610), + [anon_sym_EQ_EQ2] = ACTIONS(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(2610), + [anon_sym_like2] = ACTIONS(2610), + [anon_sym_not_DASHlike2] = ACTIONS(2610), + [anon_sym_STAR_STAR2] = ACTIONS(2610), + [anon_sym_PLUS_PLUS2] = ACTIONS(2610), + [anon_sym_SLASH2] = ACTIONS(2610), + [anon_sym_mod2] = ACTIONS(2610), + [anon_sym_SLASH_SLASH2] = ACTIONS(2610), + [anon_sym_PLUS2] = ACTIONS(2610), + [anon_sym_bit_DASHshl2] = ACTIONS(2610), + [anon_sym_bit_DASHshr2] = ACTIONS(2610), + [anon_sym_bit_DASHand2] = ACTIONS(2610), + [anon_sym_bit_DASHxor2] = ACTIONS(2610), + [anon_sym_bit_DASHor2] = ACTIONS(2610), + [anon_sym_err_GT] = ACTIONS(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), + [anon_sym_POUND] = ACTIONS(105), + }, + [1093] = { + [sym_expr_unary] = STATE(2956), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_parenthesized] = STATE(2658), + [sym_val_range] = STATE(2956), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(2956), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(2718), + [sym_val_variable] = STATE(2589), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(2411), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(2693), + [sym__unquoted_with_expr] = STATE(2960), + [sym__unquoted_anonymous_prefix] = STATE(4847), + [sym_comment] = STATE(1093), + [anon_sym_true] = ACTIONS(2802), + [anon_sym_false] = ACTIONS(2802), + [anon_sym_null] = ACTIONS(2804), + [aux_sym_cmd_identifier_token3] = ACTIONS(2806), + [aux_sym_cmd_identifier_token4] = ACTIONS(2806), + [aux_sym_cmd_identifier_token5] = ACTIONS(2806), + [anon_sym_LBRACK] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_DOLLAR] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2814), [anon_sym_DOT_DOT] = ACTIONS(2816), [aux_sym_expr_unary_token1] = ACTIONS(2818), [anon_sym_DOT_DOT_EQ] = ACTIONS(2820), @@ -132210,55 +129982,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_decimal_token2] = ACTIONS(2824), [aux_sym__val_number_decimal_token3] = ACTIONS(2826), [aux_sym__val_number_decimal_token4] = ACTIONS(2826), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), + [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(2828), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1770), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1772), - }, - [STATE(1126)] = { - [sym_expr_unary] = STATE(2781), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_parenthesized] = STATE(2575), - [sym_val_range] = STATE(2781), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(2781), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(2587), - [sym_val_variable] = STATE(2550), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(2372), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(2621), - [sym__unquoted_with_expr] = STATE(2783), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(1126), + [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(107), + }, + [1094] = { + [sym__expr_parenthesized_immediate] = STATE(5059), + [sym_comment] = STATE(1094), + [ts_builtin_sym_end] = ACTIONS(2154), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [1095] = { + [sym_expr_unary] = STATE(2962), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_parenthesized] = STATE(2656), + [sym_val_range] = STATE(2962), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(2962), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(2718), + [sym_val_variable] = STATE(2589), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(2411), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(2663), + [sym__unquoted_with_expr] = STATE(2970), + [sym__unquoted_anonymous_prefix] = STATE(4847), + [sym_comment] = STATE(1095), [anon_sym_true] = ACTIONS(2802), [anon_sym_false] = ACTIONS(2802), [anon_sym_null] = ACTIONS(2804), @@ -132268,7 +130108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2808), [anon_sym_LPAREN] = ACTIONS(2810), [anon_sym_DOLLAR] = ACTIONS(2812), - [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(2814), [anon_sym_DOT_DOT] = ACTIONS(2816), [aux_sym_expr_unary_token1] = ACTIONS(2818), @@ -132278,55 +130118,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_decimal_token2] = ACTIONS(2824), [aux_sym__val_number_decimal_token3] = ACTIONS(2826), [aux_sym__val_number_decimal_token4] = ACTIONS(2826), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), + [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(2828), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1770), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1772), - }, - [STATE(1127)] = { - [sym_expr_unary] = STATE(2784), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_parenthesized] = STATE(2554), - [sym_val_range] = STATE(2784), - [sym__val_range] = STATE(4859), - [sym__value] = STATE(2784), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(2587), - [sym_val_variable] = STATE(2550), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(2372), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_unquoted] = STATE(2622), - [sym__unquoted_with_expr] = STATE(2785), - [sym__unquoted_anonymous_prefix] = STATE(4859), - [sym_comment] = STATE(1127), + [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(107), + }, + [1096] = { + [sym_expr_unary] = STATE(2973), + [sym__expr_unary_minus] = STATE(1344), + [sym_expr_parenthesized] = STATE(2653), + [sym_val_range] = STATE(2973), + [sym__val_range] = STATE(4847), + [sym__value] = STATE(2973), + [sym_val_nothing] = STATE(1338), + [sym_val_bool] = STATE(2718), + [sym_val_variable] = STATE(2589), + [sym_val_cellpath] = STATE(1338), + [sym_val_number] = STATE(1338), + [sym__val_number_decimal] = STATE(2411), + [sym__val_number] = STATE(1348), + [sym_val_duration] = STATE(1338), + [sym_val_filesize] = STATE(1338), + [sym_val_binary] = STATE(1338), + [sym_val_string] = STATE(1338), + [sym__raw_str] = STATE(509), + [sym__str_double_quotes] = STATE(509), + [sym__str_single_quotes] = STATE(509), + [sym__str_back_ticks] = STATE(509), + [sym_val_interpolated] = STATE(1338), + [sym__inter_single_quotes] = STATE(1353), + [sym__inter_double_quotes] = STATE(1361), + [sym_val_list] = STATE(1338), + [sym_val_record] = STATE(1338), + [sym_val_table] = STATE(1338), + [sym_val_closure] = STATE(1338), + [sym_unquoted] = STATE(2669), + [sym__unquoted_with_expr] = STATE(2984), + [sym__unquoted_anonymous_prefix] = STATE(4847), + [sym_comment] = STATE(1096), [anon_sym_true] = ACTIONS(2802), [anon_sym_false] = ACTIONS(2802), [anon_sym_null] = ACTIONS(2804), @@ -132336,7 +130176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2808), [anon_sym_LPAREN] = ACTIONS(2810), [anon_sym_DOLLAR] = ACTIONS(2812), - [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(2814), [anon_sym_DOT_DOT] = ACTIONS(2816), [aux_sym_expr_unary_token1] = ACTIONS(2818), @@ -132346,775 +130186,4169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_decimal_token2] = ACTIONS(2824), [aux_sym__val_number_decimal_token3] = ACTIONS(2826), [aux_sym__val_number_decimal_token4] = ACTIONS(2826), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), + [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(2828), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1770), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [aux_sym_unquoted_token1] = ACTIONS(1969), + [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(1772), + [sym_raw_string_begin] = ACTIONS(107), }, - [STATE(1128)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1128), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [1097] = { + [sym_comment] = STATE(1097), + [ts_builtin_sym_end] = ACTIONS(2596), + [anon_sym_in] = ACTIONS(2596), + [sym__newline] = ACTIONS(2596), + [anon_sym_SEMI] = ACTIONS(2596), + [anon_sym_PIPE] = ACTIONS(2596), + [anon_sym_err_GT_PIPE] = ACTIONS(2596), + [anon_sym_out_GT_PIPE] = ACTIONS(2596), + [anon_sym_e_GT_PIPE] = ACTIONS(2596), + [anon_sym_o_GT_PIPE] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2596), + [anon_sym_GT2] = ACTIONS(2598), + [anon_sym_DASH2] = ACTIONS(2596), + [anon_sym_STAR2] = ACTIONS(2598), + [anon_sym_and2] = ACTIONS(2596), + [anon_sym_xor2] = ACTIONS(2596), + [anon_sym_or2] = ACTIONS(2596), + [anon_sym_not_DASHin2] = ACTIONS(2596), + [anon_sym_has2] = ACTIONS(2596), + [anon_sym_not_DASHhas2] = ACTIONS(2596), + [anon_sym_starts_DASHwith2] = ACTIONS(2596), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2596), + [anon_sym_ends_DASHwith2] = ACTIONS(2596), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2596), + [anon_sym_EQ_EQ2] = ACTIONS(2596), + [anon_sym_BANG_EQ2] = ACTIONS(2596), + [anon_sym_LT2] = ACTIONS(2598), + [anon_sym_LT_EQ2] = ACTIONS(2596), + [anon_sym_GT_EQ2] = ACTIONS(2596), + [anon_sym_EQ_TILDE2] = ACTIONS(2596), + [anon_sym_BANG_TILDE2] = ACTIONS(2596), + [anon_sym_like2] = ACTIONS(2596), + [anon_sym_not_DASHlike2] = ACTIONS(2596), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_STAR_STAR2] = ACTIONS(2596), + [anon_sym_PLUS_PLUS2] = ACTIONS(2596), + [anon_sym_SLASH2] = ACTIONS(2598), + [anon_sym_mod2] = ACTIONS(2596), + [anon_sym_SLASH_SLASH2] = ACTIONS(2596), + [anon_sym_PLUS2] = ACTIONS(2598), + [anon_sym_bit_DASHshl2] = ACTIONS(2596), + [anon_sym_bit_DASHshr2] = ACTIONS(2596), + [anon_sym_bit_DASHand2] = ACTIONS(2596), + [anon_sym_bit_DASHxor2] = ACTIONS(2596), + [anon_sym_bit_DASHor2] = ACTIONS(2596), + [anon_sym_err_GT] = ACTIONS(2598), + [anon_sym_out_GT] = ACTIONS(2598), + [anon_sym_e_GT] = ACTIONS(2598), + [anon_sym_o_GT] = ACTIONS(2598), + [anon_sym_err_PLUSout_GT] = ACTIONS(2598), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2598), + [anon_sym_o_PLUSe_GT] = ACTIONS(2598), + [anon_sym_e_PLUSo_GT] = ACTIONS(2598), + [anon_sym_err_GT_GT] = ACTIONS(2596), + [anon_sym_out_GT_GT] = ACTIONS(2596), + [anon_sym_e_GT_GT] = ACTIONS(2596), + [anon_sym_o_GT_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2596), + [sym__unquoted_pattern] = ACTIONS(2598), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1129)] = { - [aux_sym__repeat_newline] = STATE(4464), - [sym__match_pattern_expression] = STATE(4534), - [sym__match_pattern_value] = STATE(4712), - [sym__match_pattern_list_body] = STATE(4787), - [sym__match_pattern_list] = STATE(4713), - [sym__match_pattern_rest] = STATE(5183), - [sym__match_pattern_record] = STATE(4714), - [sym_expr_parenthesized] = STATE(4000), - [sym_val_range] = STATE(4712), - [sym__val_range] = STATE(5257), - [sym_val_nothing] = STATE(4714), - [sym_val_bool] = STATE(4442), - [sym_val_variable] = STATE(4001), - [sym_val_number] = STATE(4714), - [sym__val_number_decimal] = STATE(3789), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4714), - [sym_val_filesize] = STATE(4714), - [sym_val_binary] = STATE(4714), - [sym_val_string] = STATE(4714), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_list] = STATE(5494), - [sym__table_head] = STATE(3959), - [sym_val_table] = STATE(4714), - [sym__unquoted_in_list] = STATE(4534), - [sym__unquoted_anonymous_prefix] = STATE(5257), - [sym_comment] = STATE(1129), - [aux_sym__types_body_repeat1] = STATE(1423), - [aux_sym_parameter_repeat2] = STATE(4206), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1440), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [anon_sym_null] = ACTIONS(1404), - [aux_sym_cmd_identifier_token3] = ACTIONS(1406), - [aux_sym_cmd_identifier_token4] = ACTIONS(1406), - [aux_sym_cmd_identifier_token5] = ACTIONS(1406), - [sym__newline] = ACTIONS(2762), - [anon_sym_LBRACK] = ACTIONS(2764), - [anon_sym_RBRACK] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1416), - [anon_sym_DOLLAR] = ACTIONS(2768), - [anon_sym_LBRACE] = ACTIONS(2770), - [anon_sym_DOT_DOT] = ACTIONS(2832), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1424), - [anon_sym_DOT_DOT_LT] = ACTIONS(1424), - [aux_sym__val_number_decimal_token1] = ACTIONS(1426), - [aux_sym__val_number_decimal_token2] = ACTIONS(1428), - [aux_sym__val_number_decimal_token3] = ACTIONS(1430), - [aux_sym__val_number_decimal_token4] = ACTIONS(1430), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(2772), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(1130)] = { - [sym_comment] = STATE(1130), - [ts_builtin_sym_end] = ACTIONS(2576), - [anon_sym_in] = ACTIONS(2576), - [sym__newline] = ACTIONS(2576), - [anon_sym_SEMI] = ACTIONS(2576), - [anon_sym_PIPE] = ACTIONS(2576), - [anon_sym_err_GT_PIPE] = ACTIONS(2576), - [anon_sym_out_GT_PIPE] = ACTIONS(2576), - [anon_sym_e_GT_PIPE] = ACTIONS(2576), - [anon_sym_o_GT_PIPE] = ACTIONS(2576), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2576), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2576), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2576), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2576), - [anon_sym_GT2] = ACTIONS(2578), - [anon_sym_DASH2] = ACTIONS(2576), - [anon_sym_STAR2] = ACTIONS(2578), - [anon_sym_and2] = ACTIONS(2576), - [anon_sym_xor2] = ACTIONS(2576), - [anon_sym_or2] = ACTIONS(2576), - [anon_sym_not_DASHin2] = ACTIONS(2576), - [anon_sym_has2] = ACTIONS(2576), - [anon_sym_not_DASHhas2] = ACTIONS(2576), - [anon_sym_starts_DASHwith2] = ACTIONS(2576), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2576), - [anon_sym_ends_DASHwith2] = ACTIONS(2576), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2576), - [anon_sym_EQ_EQ2] = ACTIONS(2576), - [anon_sym_BANG_EQ2] = ACTIONS(2576), - [anon_sym_LT2] = ACTIONS(2578), - [anon_sym_LT_EQ2] = ACTIONS(2576), - [anon_sym_GT_EQ2] = ACTIONS(2576), - [anon_sym_EQ_TILDE2] = ACTIONS(2576), - [anon_sym_BANG_TILDE2] = ACTIONS(2576), - [anon_sym_like2] = ACTIONS(2576), - [anon_sym_not_DASHlike2] = ACTIONS(2576), - [anon_sym_LPAREN2] = ACTIONS(2576), - [anon_sym_STAR_STAR2] = ACTIONS(2576), - [anon_sym_PLUS_PLUS2] = ACTIONS(2576), - [anon_sym_SLASH2] = ACTIONS(2578), - [anon_sym_mod2] = ACTIONS(2576), - [anon_sym_SLASH_SLASH2] = ACTIONS(2576), - [anon_sym_PLUS2] = ACTIONS(2578), - [anon_sym_bit_DASHshl2] = ACTIONS(2576), - [anon_sym_bit_DASHshr2] = ACTIONS(2576), - [anon_sym_bit_DASHand2] = ACTIONS(2576), - [anon_sym_bit_DASHxor2] = ACTIONS(2576), - [anon_sym_bit_DASHor2] = ACTIONS(2576), - [anon_sym_err_GT] = ACTIONS(2578), - [anon_sym_out_GT] = ACTIONS(2578), - [anon_sym_e_GT] = ACTIONS(2578), - [anon_sym_o_GT] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT] = ACTIONS(2578), - [anon_sym_err_GT_GT] = ACTIONS(2576), - [anon_sym_out_GT_GT] = ACTIONS(2576), - [anon_sym_e_GT_GT] = ACTIONS(2576), - [anon_sym_o_GT_GT] = ACTIONS(2576), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2576), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2576), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2576), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2576), - [sym__unquoted_pattern] = ACTIONS(2578), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1131)] = { - [aux_sym__repeat_newline] = STATE(1039), - [sym_comment] = STATE(1131), - [anon_sym_in] = ACTIONS(2492), - [sym__newline] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_err_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_GT_PIPE] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_GT2] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_STAR2] = ACTIONS(2494), - [anon_sym_and2] = ACTIONS(2492), - [anon_sym_xor2] = ACTIONS(2492), - [anon_sym_or2] = ACTIONS(2492), - [anon_sym_not_DASHin2] = ACTIONS(2492), - [anon_sym_has2] = ACTIONS(2492), - [anon_sym_not_DASHhas2] = ACTIONS(2492), - [anon_sym_starts_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), - [anon_sym_ends_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), - [anon_sym_EQ_EQ2] = ACTIONS(2492), - [anon_sym_BANG_EQ2] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2494), - [anon_sym_LT_EQ2] = ACTIONS(2492), - [anon_sym_GT_EQ2] = ACTIONS(2492), - [anon_sym_EQ_TILDE2] = ACTIONS(2492), - [anon_sym_BANG_TILDE2] = ACTIONS(2492), - [anon_sym_like2] = ACTIONS(2492), - [anon_sym_not_DASHlike2] = ACTIONS(2492), - [anon_sym_STAR_STAR2] = ACTIONS(2492), - [anon_sym_PLUS_PLUS2] = ACTIONS(2492), - [anon_sym_SLASH2] = ACTIONS(2494), - [anon_sym_mod2] = ACTIONS(2492), - [anon_sym_SLASH_SLASH2] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_bit_DASHshl2] = ACTIONS(2492), - [anon_sym_bit_DASHshr2] = ACTIONS(2492), - [anon_sym_bit_DASHand2] = ACTIONS(2492), - [anon_sym_bit_DASHxor2] = ACTIONS(2492), - [anon_sym_bit_DASHor2] = ACTIONS(2492), - [anon_sym_err_GT] = ACTIONS(2494), - [anon_sym_out_GT] = ACTIONS(2494), - [anon_sym_e_GT] = ACTIONS(2494), - [anon_sym_o_GT] = ACTIONS(2494), - [anon_sym_err_PLUSout_GT] = ACTIONS(2494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), - [anon_sym_o_PLUSe_GT] = ACTIONS(2494), - [anon_sym_e_PLUSo_GT] = ACTIONS(2494), - [anon_sym_err_GT_GT] = ACTIONS(2492), - [anon_sym_out_GT_GT] = ACTIONS(2492), - [anon_sym_e_GT_GT] = ACTIONS(2492), - [anon_sym_o_GT_GT] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1132)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1132), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [1098] = { + [aux_sym__repeat_newline] = STATE(1054), + [sym_comment] = STATE(1098), + [anon_sym_in] = ACTIONS(2557), + [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [1099] = { + [aux_sym__repeat_newline] = STATE(1064), + [sym_comment] = STATE(1099), + [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_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_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), + [anon_sym_POUND] = ACTIONS(3), + }, + [1100] = { + [sym__expr_parenthesized_immediate] = STATE(5059), + [sym_comment] = STATE(1100), + [ts_builtin_sym_end] = ACTIONS(2154), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1133)] = { - [sym_comment] = STATE(1133), - [ts_builtin_sym_end] = ACTIONS(2604), - [anon_sym_in] = ACTIONS(2604), - [sym__newline] = ACTIONS(2604), - [anon_sym_SEMI] = ACTIONS(2604), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_err_GT_PIPE] = ACTIONS(2604), - [anon_sym_out_GT_PIPE] = ACTIONS(2604), - [anon_sym_e_GT_PIPE] = ACTIONS(2604), - [anon_sym_o_GT_PIPE] = ACTIONS(2604), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2604), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2604), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2604), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2604), - [anon_sym_GT2] = ACTIONS(2606), - [anon_sym_DASH2] = ACTIONS(2604), - [anon_sym_STAR2] = ACTIONS(2606), - [anon_sym_and2] = ACTIONS(2604), - [anon_sym_xor2] = ACTIONS(2604), - [anon_sym_or2] = ACTIONS(2604), - [anon_sym_not_DASHin2] = ACTIONS(2604), - [anon_sym_has2] = ACTIONS(2604), - [anon_sym_not_DASHhas2] = ACTIONS(2604), - [anon_sym_starts_DASHwith2] = ACTIONS(2604), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2604), - [anon_sym_ends_DASHwith2] = ACTIONS(2604), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2604), - [anon_sym_EQ_EQ2] = ACTIONS(2604), - [anon_sym_BANG_EQ2] = ACTIONS(2604), - [anon_sym_LT2] = ACTIONS(2606), - [anon_sym_LT_EQ2] = ACTIONS(2604), - [anon_sym_GT_EQ2] = ACTIONS(2604), - [anon_sym_EQ_TILDE2] = ACTIONS(2604), - [anon_sym_BANG_TILDE2] = ACTIONS(2604), - [anon_sym_like2] = ACTIONS(2604), - [anon_sym_not_DASHlike2] = ACTIONS(2604), - [anon_sym_LPAREN2] = ACTIONS(2608), - [anon_sym_STAR_STAR2] = ACTIONS(2604), - [anon_sym_PLUS_PLUS2] = ACTIONS(2604), - [anon_sym_SLASH2] = ACTIONS(2606), - [anon_sym_mod2] = ACTIONS(2604), - [anon_sym_SLASH_SLASH2] = ACTIONS(2604), - [anon_sym_PLUS2] = ACTIONS(2606), - [anon_sym_bit_DASHshl2] = ACTIONS(2604), - [anon_sym_bit_DASHshr2] = ACTIONS(2604), - [anon_sym_bit_DASHand2] = ACTIONS(2604), - [anon_sym_bit_DASHxor2] = ACTIONS(2604), - [anon_sym_bit_DASHor2] = ACTIONS(2604), - [anon_sym_err_GT] = ACTIONS(2606), - [anon_sym_out_GT] = ACTIONS(2606), - [anon_sym_e_GT] = ACTIONS(2606), - [anon_sym_o_GT] = ACTIONS(2606), - [anon_sym_err_PLUSout_GT] = ACTIONS(2606), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2606), - [anon_sym_o_PLUSe_GT] = ACTIONS(2606), - [anon_sym_e_PLUSo_GT] = ACTIONS(2606), - [anon_sym_err_GT_GT] = ACTIONS(2604), - [anon_sym_out_GT_GT] = ACTIONS(2604), - [anon_sym_e_GT_GT] = ACTIONS(2604), - [anon_sym_o_GT_GT] = ACTIONS(2604), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2604), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2604), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2604), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2604), - [sym__unquoted_pattern] = ACTIONS(2610), + [1101] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1101), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_err_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_GT_PIPE] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_GT2] = ACTIONS(2832), + [anon_sym_DASH2] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_STAR2] = ACTIONS(2832), + [anon_sym_and2] = ACTIONS(2830), + [anon_sym_xor2] = ACTIONS(2830), + [anon_sym_or2] = ACTIONS(2830), + [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(2830), + [anon_sym_BANG_EQ2] = ACTIONS(2830), + [anon_sym_LT2] = ACTIONS(2832), + [anon_sym_LT_EQ2] = ACTIONS(2830), + [anon_sym_GT_EQ2] = ACTIONS(2830), + [anon_sym_EQ_TILDE2] = ACTIONS(2830), + [anon_sym_BANG_TILDE2] = ACTIONS(2830), + [anon_sym_like2] = ACTIONS(2830), + [anon_sym_not_DASHlike2] = ACTIONS(2830), + [anon_sym_STAR_STAR2] = ACTIONS(2830), + [anon_sym_PLUS_PLUS2] = ACTIONS(2830), + [anon_sym_SLASH2] = ACTIONS(2832), + [anon_sym_mod2] = ACTIONS(2830), + [anon_sym_SLASH_SLASH2] = ACTIONS(2830), + [anon_sym_PLUS2] = ACTIONS(2832), + [anon_sym_bit_DASHshl2] = ACTIONS(2830), + [anon_sym_bit_DASHshr2] = ACTIONS(2830), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2830), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2832), + [anon_sym_out_GT] = ACTIONS(2832), + [anon_sym_e_GT] = ACTIONS(2832), + [anon_sym_o_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT] = ACTIONS(2832), + [anon_sym_err_GT_GT] = ACTIONS(2830), + [anon_sym_out_GT_GT] = ACTIONS(2830), + [anon_sym_e_GT_GT] = ACTIONS(2830), + [anon_sym_o_GT_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2830), + [anon_sym_POUND] = ACTIONS(3), + }, + [1102] = { + [aux_sym__repeat_newline] = STATE(1051), + [sym_comment] = STATE(1102), + [anon_sym_in] = ACTIONS(2834), + [sym__newline] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_err_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_GT_PIPE] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2834), + [anon_sym_LBRACE] = ACTIONS(2834), + [anon_sym_STAR2] = ACTIONS(2836), + [anon_sym_and2] = ACTIONS(2834), + [anon_sym_xor2] = ACTIONS(2834), + [anon_sym_or2] = ACTIONS(2834), + [anon_sym_not_DASHin2] = ACTIONS(2834), + [anon_sym_has2] = ACTIONS(2834), + [anon_sym_not_DASHhas2] = ACTIONS(2834), + [anon_sym_starts_DASHwith2] = ACTIONS(2834), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2834), + [anon_sym_ends_DASHwith2] = ACTIONS(2834), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2834), + [anon_sym_EQ_EQ2] = ACTIONS(2834), + [anon_sym_BANG_EQ2] = ACTIONS(2834), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2834), + [anon_sym_GT_EQ2] = ACTIONS(2834), + [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(2834), + [anon_sym_PLUS_PLUS2] = ACTIONS(2834), + [anon_sym_SLASH2] = ACTIONS(2836), + [anon_sym_mod2] = ACTIONS(2834), + [anon_sym_SLASH_SLASH2] = ACTIONS(2834), + [anon_sym_PLUS2] = ACTIONS(2836), + [anon_sym_bit_DASHshl2] = ACTIONS(2834), + [anon_sym_bit_DASHshr2] = ACTIONS(2834), + [anon_sym_bit_DASHand2] = ACTIONS(2834), + [anon_sym_bit_DASHxor2] = ACTIONS(2834), + [anon_sym_bit_DASHor2] = ACTIONS(2834), + [anon_sym_err_GT] = ACTIONS(2836), + [anon_sym_out_GT] = ACTIONS(2836), + [anon_sym_e_GT] = ACTIONS(2836), + [anon_sym_o_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT] = ACTIONS(2836), + [anon_sym_err_GT_GT] = ACTIONS(2834), + [anon_sym_out_GT_GT] = ACTIONS(2834), + [anon_sym_e_GT_GT] = ACTIONS(2834), + [anon_sym_o_GT_GT] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(3), + }, + [1103] = { + [aux_sym__repeat_newline] = STATE(1028), + [sym_comment] = STATE(1103), + [anon_sym_in] = ACTIONS(2557), + [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [1104] = { + [aux_sym__repeat_newline] = STATE(1056), + [sym_comment] = STATE(1104), + [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_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_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), + [anon_sym_POUND] = ACTIONS(3), + }, + [1105] = { + [sym__expr_parenthesized_immediate] = STATE(5059), + [sym_comment] = STATE(1105), + [ts_builtin_sym_end] = ACTIONS(2154), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1134)] = { - [aux_sym__repeat_newline] = STATE(1040), - [sym_comment] = STATE(1134), - [anon_sym_in] = ACTIONS(2492), - [sym__newline] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_err_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_GT_PIPE] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_GT2] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_STAR2] = ACTIONS(2494), - [anon_sym_and2] = ACTIONS(2492), - [anon_sym_xor2] = ACTIONS(2492), - [anon_sym_or2] = ACTIONS(2492), - [anon_sym_not_DASHin2] = ACTIONS(2492), - [anon_sym_has2] = ACTIONS(2492), - [anon_sym_not_DASHhas2] = ACTIONS(2492), - [anon_sym_starts_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), - [anon_sym_ends_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), - [anon_sym_EQ_EQ2] = ACTIONS(2492), - [anon_sym_BANG_EQ2] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2494), - [anon_sym_LT_EQ2] = ACTIONS(2492), - [anon_sym_GT_EQ2] = ACTIONS(2492), - [anon_sym_EQ_TILDE2] = ACTIONS(2492), - [anon_sym_BANG_TILDE2] = ACTIONS(2492), - [anon_sym_like2] = ACTIONS(2492), - [anon_sym_not_DASHlike2] = ACTIONS(2492), - [anon_sym_STAR_STAR2] = ACTIONS(2492), - [anon_sym_PLUS_PLUS2] = ACTIONS(2492), - [anon_sym_SLASH2] = ACTIONS(2494), - [anon_sym_mod2] = ACTIONS(2492), - [anon_sym_SLASH_SLASH2] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_bit_DASHshl2] = ACTIONS(2492), - [anon_sym_bit_DASHshr2] = ACTIONS(2492), - [anon_sym_bit_DASHand2] = ACTIONS(2492), - [anon_sym_bit_DASHxor2] = ACTIONS(2492), - [anon_sym_bit_DASHor2] = ACTIONS(2492), - [anon_sym_err_GT] = ACTIONS(2494), - [anon_sym_out_GT] = ACTIONS(2494), - [anon_sym_e_GT] = ACTIONS(2494), - [anon_sym_o_GT] = ACTIONS(2494), - [anon_sym_err_PLUSout_GT] = ACTIONS(2494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), - [anon_sym_o_PLUSe_GT] = ACTIONS(2494), - [anon_sym_e_PLUSo_GT] = ACTIONS(2494), - [anon_sym_err_GT_GT] = ACTIONS(2492), - [anon_sym_out_GT_GT] = ACTIONS(2492), - [anon_sym_e_GT_GT] = ACTIONS(2492), - [anon_sym_o_GT_GT] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1135)] = { - [sym__expression] = STATE(5001), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2261), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1878), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_comment] = STATE(1135), - [aux_sym_cmd_identifier_token2] = ACTIONS(2786), - [anon_sym_true] = ACTIONS(2636), - [anon_sym_false] = ACTIONS(2636), - [anon_sym_null] = ACTIONS(2638), - [aux_sym_cmd_identifier_token3] = ACTIONS(2640), - [aux_sym_cmd_identifier_token4] = ACTIONS(2640), - [aux_sym_cmd_identifier_token5] = ACTIONS(2640), + [1106] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1106), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_err_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_GT_PIPE] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_GT2] = ACTIONS(2832), + [anon_sym_DASH2] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_STAR2] = ACTIONS(2832), + [anon_sym_and2] = ACTIONS(2830), + [anon_sym_xor2] = ACTIONS(2830), + [anon_sym_or2] = ACTIONS(2830), + [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(2830), + [anon_sym_BANG_EQ2] = ACTIONS(2830), + [anon_sym_LT2] = ACTIONS(2832), + [anon_sym_LT_EQ2] = ACTIONS(2830), + [anon_sym_GT_EQ2] = ACTIONS(2830), + [anon_sym_EQ_TILDE2] = ACTIONS(2830), + [anon_sym_BANG_TILDE2] = ACTIONS(2830), + [anon_sym_like2] = ACTIONS(2830), + [anon_sym_not_DASHlike2] = ACTIONS(2830), + [anon_sym_STAR_STAR2] = ACTIONS(2830), + [anon_sym_PLUS_PLUS2] = ACTIONS(2830), + [anon_sym_SLASH2] = ACTIONS(2832), + [anon_sym_mod2] = ACTIONS(2830), + [anon_sym_SLASH_SLASH2] = ACTIONS(2830), + [anon_sym_PLUS2] = ACTIONS(2832), + [anon_sym_bit_DASHshl2] = ACTIONS(2830), + [anon_sym_bit_DASHshr2] = ACTIONS(2830), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2830), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2832), + [anon_sym_out_GT] = ACTIONS(2832), + [anon_sym_e_GT] = ACTIONS(2832), + [anon_sym_o_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT] = ACTIONS(2832), + [anon_sym_err_GT_GT] = ACTIONS(2830), + [anon_sym_out_GT_GT] = ACTIONS(2830), + [anon_sym_e_GT_GT] = ACTIONS(2830), + [anon_sym_o_GT_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2830), + [anon_sym_POUND] = ACTIONS(3), + }, + [1107] = { + [sym__expression] = STATE(5076), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2265), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1905), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_comment] = STATE(1107), + [aux_sym_cmd_identifier_token2] = ACTIONS(2800), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_null] = ACTIONS(2694), + [aux_sym_cmd_identifier_token3] = ACTIONS(2696), + [aux_sym_cmd_identifier_token4] = ACTIONS(2696), + [aux_sym_cmd_identifier_token5] = ACTIONS(2696), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1965), + [aux_sym__val_number_decimal_token3] = ACTIONS(2700), + [aux_sym__val_number_decimal_token4] = ACTIONS(2700), + [aux_sym__val_number_token1] = ACTIONS(2696), + [aux_sym__val_number_token2] = ACTIONS(2696), + [aux_sym__val_number_token3] = ACTIONS(2696), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_COLON2] = ACTIONS(2838), + [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(215), + }, + [1108] = { + [aux_sym__repeat_newline] = STATE(1015), + [sym_comment] = STATE(1108), + [anon_sym_in] = ACTIONS(2557), + [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [1109] = { + [aux_sym__repeat_newline] = STATE(1053), + [sym_comment] = STATE(1109), + [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_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_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), + [anon_sym_POUND] = ACTIONS(3), + }, + [1110] = { + [sym__expr_parenthesized_immediate] = STATE(5059), + [sym_comment] = STATE(1110), + [ts_builtin_sym_end] = ACTIONS(2154), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [1111] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1111), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_err_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_GT_PIPE] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_GT2] = ACTIONS(2832), + [anon_sym_DASH2] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_STAR2] = ACTIONS(2832), + [anon_sym_and2] = ACTIONS(2830), + [anon_sym_xor2] = ACTIONS(2830), + [anon_sym_or2] = ACTIONS(2830), + [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(2830), + [anon_sym_BANG_EQ2] = ACTIONS(2830), + [anon_sym_LT2] = ACTIONS(2832), + [anon_sym_LT_EQ2] = ACTIONS(2830), + [anon_sym_GT_EQ2] = ACTIONS(2830), + [anon_sym_EQ_TILDE2] = ACTIONS(2830), + [anon_sym_BANG_TILDE2] = ACTIONS(2830), + [anon_sym_like2] = ACTIONS(2830), + [anon_sym_not_DASHlike2] = ACTIONS(2830), + [anon_sym_STAR_STAR2] = ACTIONS(2830), + [anon_sym_PLUS_PLUS2] = ACTIONS(2830), + [anon_sym_SLASH2] = ACTIONS(2832), + [anon_sym_mod2] = ACTIONS(2830), + [anon_sym_SLASH_SLASH2] = ACTIONS(2830), + [anon_sym_PLUS2] = ACTIONS(2832), + [anon_sym_bit_DASHshl2] = ACTIONS(2830), + [anon_sym_bit_DASHshr2] = ACTIONS(2830), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2830), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2832), + [anon_sym_out_GT] = ACTIONS(2832), + [anon_sym_e_GT] = ACTIONS(2832), + [anon_sym_o_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT] = ACTIONS(2832), + [anon_sym_err_GT_GT] = ACTIONS(2830), + [anon_sym_out_GT_GT] = ACTIONS(2830), + [anon_sym_e_GT_GT] = ACTIONS(2830), + [anon_sym_o_GT_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2830), + [anon_sym_POUND] = ACTIONS(3), + }, + [1112] = { + [sym__expression] = STATE(5065), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2265), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1905), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_comment] = STATE(1112), + [aux_sym_cmd_identifier_token2] = ACTIONS(2800), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_null] = ACTIONS(2694), + [aux_sym_cmd_identifier_token3] = ACTIONS(2696), + [aux_sym_cmd_identifier_token4] = ACTIONS(2696), + [aux_sym_cmd_identifier_token5] = ACTIONS(2696), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1981), - [aux_sym__val_number_decimal_token3] = ACTIONS(2644), - [aux_sym__val_number_decimal_token4] = ACTIONS(2644), - [aux_sym__val_number_token1] = ACTIONS(2640), - [aux_sym__val_number_token2] = ACTIONS(2640), - [aux_sym__val_number_token3] = ACTIONS(2640), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1965), + [aux_sym__val_number_decimal_token3] = ACTIONS(2700), + [aux_sym__val_number_decimal_token4] = ACTIONS(2700), + [aux_sym__val_number_token1] = ACTIONS(2696), + [aux_sym__val_number_token2] = ACTIONS(2696), + [aux_sym__val_number_token3] = ACTIONS(2696), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2646), + [sym_val_date] = ACTIONS(2702), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_COLON2] = ACTIONS(2834), + [anon_sym_COLON2] = ACTIONS(2838), [anon_sym_POUND] = ACTIONS(105), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(1136)] = { - [aux_sym__repeat_newline] = STATE(501), + [1113] = { + [aux_sym__repeat_newline] = STATE(993), + [sym_comment] = STATE(1113), + [anon_sym_in] = ACTIONS(2557), + [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [1114] = { + [aux_sym__repeat_newline] = STATE(1050), + [sym_comment] = STATE(1114), + [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_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_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), + [anon_sym_POUND] = ACTIONS(3), + }, + [1115] = { + [sym__expr_parenthesized_immediate] = STATE(5059), + [sym_comment] = STATE(1115), + [ts_builtin_sym_end] = ACTIONS(2154), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [1116] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1116), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_err_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_GT_PIPE] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_GT2] = ACTIONS(2832), + [anon_sym_DASH2] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_STAR2] = ACTIONS(2832), + [anon_sym_and2] = ACTIONS(2830), + [anon_sym_xor2] = ACTIONS(2830), + [anon_sym_or2] = ACTIONS(2830), + [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(2830), + [anon_sym_BANG_EQ2] = ACTIONS(2830), + [anon_sym_LT2] = ACTIONS(2832), + [anon_sym_LT_EQ2] = ACTIONS(2830), + [anon_sym_GT_EQ2] = ACTIONS(2830), + [anon_sym_EQ_TILDE2] = ACTIONS(2830), + [anon_sym_BANG_TILDE2] = ACTIONS(2830), + [anon_sym_like2] = ACTIONS(2830), + [anon_sym_not_DASHlike2] = ACTIONS(2830), + [anon_sym_STAR_STAR2] = ACTIONS(2830), + [anon_sym_PLUS_PLUS2] = ACTIONS(2830), + [anon_sym_SLASH2] = ACTIONS(2832), + [anon_sym_mod2] = ACTIONS(2830), + [anon_sym_SLASH_SLASH2] = ACTIONS(2830), + [anon_sym_PLUS2] = ACTIONS(2832), + [anon_sym_bit_DASHshl2] = ACTIONS(2830), + [anon_sym_bit_DASHshr2] = ACTIONS(2830), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2830), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2832), + [anon_sym_out_GT] = ACTIONS(2832), + [anon_sym_e_GT] = ACTIONS(2832), + [anon_sym_o_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT] = ACTIONS(2832), + [anon_sym_err_GT_GT] = ACTIONS(2830), + [anon_sym_out_GT_GT] = ACTIONS(2830), + [anon_sym_e_GT_GT] = ACTIONS(2830), + [anon_sym_o_GT_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2830), + [anon_sym_POUND] = ACTIONS(3), + }, + [1117] = { + [sym__expr_parenthesized_immediate] = STATE(5059), + [sym_comment] = STATE(1117), + [ts_builtin_sym_end] = ACTIONS(2154), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [1118] = { + [aux_sym__repeat_newline] = STATE(997), + [sym_comment] = STATE(1118), + [anon_sym_in] = ACTIONS(2557), + [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [1119] = { + [aux_sym__repeat_newline] = STATE(1048), + [sym_comment] = STATE(1119), + [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_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_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), + [anon_sym_POUND] = ACTIONS(3), + }, + [1120] = { + [sym__expr_parenthesized_immediate] = STATE(5059), + [sym_comment] = STATE(1120), + [ts_builtin_sym_end] = ACTIONS(2154), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [1121] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1121), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_err_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_GT_PIPE] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_GT2] = ACTIONS(2832), + [anon_sym_DASH2] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_STAR2] = ACTIONS(2832), + [anon_sym_and2] = ACTIONS(2830), + [anon_sym_xor2] = ACTIONS(2830), + [anon_sym_or2] = ACTIONS(2830), + [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(2830), + [anon_sym_BANG_EQ2] = ACTIONS(2830), + [anon_sym_LT2] = ACTIONS(2832), + [anon_sym_LT_EQ2] = ACTIONS(2830), + [anon_sym_GT_EQ2] = ACTIONS(2830), + [anon_sym_EQ_TILDE2] = ACTIONS(2830), + [anon_sym_BANG_TILDE2] = ACTIONS(2830), + [anon_sym_like2] = ACTIONS(2830), + [anon_sym_not_DASHlike2] = ACTIONS(2830), + [anon_sym_STAR_STAR2] = ACTIONS(2830), + [anon_sym_PLUS_PLUS2] = ACTIONS(2830), + [anon_sym_SLASH2] = ACTIONS(2832), + [anon_sym_mod2] = ACTIONS(2830), + [anon_sym_SLASH_SLASH2] = ACTIONS(2830), + [anon_sym_PLUS2] = ACTIONS(2832), + [anon_sym_bit_DASHshl2] = ACTIONS(2830), + [anon_sym_bit_DASHshr2] = ACTIONS(2830), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2830), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2832), + [anon_sym_out_GT] = ACTIONS(2832), + [anon_sym_e_GT] = ACTIONS(2832), + [anon_sym_o_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT] = ACTIONS(2832), + [anon_sym_err_GT_GT] = ACTIONS(2830), + [anon_sym_out_GT_GT] = ACTIONS(2830), + [anon_sym_e_GT_GT] = ACTIONS(2830), + [anon_sym_o_GT_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2830), + [anon_sym_POUND] = ACTIONS(3), + }, + [1122] = { + [sym_comment] = STATE(1122), + [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_POUND] = ACTIONS(3), + }, + [1123] = { + [aux_sym__repeat_newline] = STATE(1005), + [sym_comment] = STATE(1123), + [anon_sym_in] = ACTIONS(2557), + [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [1124] = { + [aux_sym__repeat_newline] = STATE(1046), + [sym_comment] = STATE(1124), + [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_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_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), + [anon_sym_POUND] = ACTIONS(3), + }, + [1125] = { + [sym__expr_parenthesized_immediate] = STATE(5059), + [sym_comment] = STATE(1125), + [ts_builtin_sym_end] = ACTIONS(2154), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [1126] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1126), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_err_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_GT_PIPE] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_GT2] = ACTIONS(2832), + [anon_sym_DASH2] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_STAR2] = ACTIONS(2832), + [anon_sym_and2] = ACTIONS(2830), + [anon_sym_xor2] = ACTIONS(2830), + [anon_sym_or2] = ACTIONS(2830), + [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(2830), + [anon_sym_BANG_EQ2] = ACTIONS(2830), + [anon_sym_LT2] = ACTIONS(2832), + [anon_sym_LT_EQ2] = ACTIONS(2830), + [anon_sym_GT_EQ2] = ACTIONS(2830), + [anon_sym_EQ_TILDE2] = ACTIONS(2830), + [anon_sym_BANG_TILDE2] = ACTIONS(2830), + [anon_sym_like2] = ACTIONS(2830), + [anon_sym_not_DASHlike2] = ACTIONS(2830), + [anon_sym_STAR_STAR2] = ACTIONS(2830), + [anon_sym_PLUS_PLUS2] = ACTIONS(2830), + [anon_sym_SLASH2] = ACTIONS(2832), + [anon_sym_mod2] = ACTIONS(2830), + [anon_sym_SLASH_SLASH2] = ACTIONS(2830), + [anon_sym_PLUS2] = ACTIONS(2832), + [anon_sym_bit_DASHshl2] = ACTIONS(2830), + [anon_sym_bit_DASHshr2] = ACTIONS(2830), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2830), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2832), + [anon_sym_out_GT] = ACTIONS(2832), + [anon_sym_e_GT] = ACTIONS(2832), + [anon_sym_o_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT] = ACTIONS(2832), + [anon_sym_err_GT_GT] = ACTIONS(2830), + [anon_sym_out_GT_GT] = ACTIONS(2830), + [anon_sym_e_GT_GT] = ACTIONS(2830), + [anon_sym_o_GT_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2830), + [anon_sym_POUND] = ACTIONS(3), + }, + [1127] = { + [sym__expr_parenthesized_immediate] = STATE(5059), + [sym_comment] = STATE(1127), + [ts_builtin_sym_end] = ACTIONS(2154), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [1128] = { + [aux_sym__repeat_newline] = STATE(1012), + [sym_comment] = STATE(1128), + [anon_sym_in] = ACTIONS(2557), + [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [1129] = { + [aux_sym__repeat_newline] = STATE(1044), + [sym_comment] = STATE(1129), + [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_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_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), + [anon_sym_POUND] = ACTIONS(3), + }, + [1130] = { + [sym_comment] = STATE(1130), + [ts_builtin_sym_end] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1736), + [sym__newline] = ACTIONS(1736), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_PIPE] = ACTIONS(1736), + [anon_sym_err_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_GT_PIPE] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), + [anon_sym_GT2] = ACTIONS(1610), + [anon_sym_DASH2] = ACTIONS(1736), + [anon_sym_STAR2] = ACTIONS(1610), + [anon_sym_and2] = ACTIONS(1736), + [anon_sym_xor2] = ACTIONS(1736), + [anon_sym_or2] = ACTIONS(1736), + [anon_sym_not_DASHin2] = ACTIONS(1736), + [anon_sym_has2] = ACTIONS(1736), + [anon_sym_not_DASHhas2] = ACTIONS(1736), + [anon_sym_starts_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), + [anon_sym_ends_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), + [anon_sym_EQ_EQ2] = ACTIONS(1736), + [anon_sym_BANG_EQ2] = ACTIONS(1736), + [anon_sym_LT2] = ACTIONS(1610), + [anon_sym_LT_EQ2] = ACTIONS(1736), + [anon_sym_GT_EQ2] = ACTIONS(1736), + [anon_sym_EQ_TILDE2] = ACTIONS(1736), + [anon_sym_BANG_TILDE2] = ACTIONS(1736), + [anon_sym_like2] = ACTIONS(1736), + [anon_sym_not_DASHlike2] = ACTIONS(1736), + [anon_sym_LPAREN2] = ACTIONS(2720), + [anon_sym_STAR_STAR2] = ACTIONS(1736), + [anon_sym_PLUS_PLUS2] = ACTIONS(1736), + [anon_sym_SLASH2] = ACTIONS(1610), + [anon_sym_mod2] = ACTIONS(1736), + [anon_sym_SLASH_SLASH2] = ACTIONS(1736), + [anon_sym_PLUS2] = ACTIONS(1610), + [anon_sym_bit_DASHshl2] = ACTIONS(1736), + [anon_sym_bit_DASHshr2] = ACTIONS(1736), + [anon_sym_bit_DASHand2] = ACTIONS(1736), + [anon_sym_bit_DASHxor2] = ACTIONS(1736), + [anon_sym_bit_DASHor2] = ACTIONS(1736), + [anon_sym_err_GT] = ACTIONS(1610), + [anon_sym_out_GT] = ACTIONS(1610), + [anon_sym_e_GT] = ACTIONS(1610), + [anon_sym_o_GT] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT] = ACTIONS(1610), + [anon_sym_err_GT_GT] = ACTIONS(1736), + [anon_sym_out_GT_GT] = ACTIONS(1736), + [anon_sym_e_GT_GT] = ACTIONS(1736), + [anon_sym_o_GT_GT] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), + [sym__unquoted_pattern] = ACTIONS(2722), + [anon_sym_POUND] = ACTIONS(3), + }, + [1131] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1131), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_err_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_GT_PIPE] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_GT2] = ACTIONS(2832), + [anon_sym_DASH2] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_STAR2] = ACTIONS(2832), + [anon_sym_and2] = ACTIONS(2830), + [anon_sym_xor2] = ACTIONS(2830), + [anon_sym_or2] = ACTIONS(2830), + [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(2830), + [anon_sym_BANG_EQ2] = ACTIONS(2830), + [anon_sym_LT2] = ACTIONS(2832), + [anon_sym_LT_EQ2] = ACTIONS(2830), + [anon_sym_GT_EQ2] = ACTIONS(2830), + [anon_sym_EQ_TILDE2] = ACTIONS(2830), + [anon_sym_BANG_TILDE2] = ACTIONS(2830), + [anon_sym_like2] = ACTIONS(2830), + [anon_sym_not_DASHlike2] = ACTIONS(2830), + [anon_sym_STAR_STAR2] = ACTIONS(2830), + [anon_sym_PLUS_PLUS2] = ACTIONS(2830), + [anon_sym_SLASH2] = ACTIONS(2832), + [anon_sym_mod2] = ACTIONS(2830), + [anon_sym_SLASH_SLASH2] = ACTIONS(2830), + [anon_sym_PLUS2] = ACTIONS(2832), + [anon_sym_bit_DASHshl2] = ACTIONS(2830), + [anon_sym_bit_DASHshr2] = ACTIONS(2830), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2830), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2832), + [anon_sym_out_GT] = ACTIONS(2832), + [anon_sym_e_GT] = ACTIONS(2832), + [anon_sym_o_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT] = ACTIONS(2832), + [anon_sym_err_GT_GT] = ACTIONS(2830), + [anon_sym_out_GT_GT] = ACTIONS(2830), + [anon_sym_e_GT_GT] = ACTIONS(2830), + [anon_sym_o_GT_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2830), + [anon_sym_POUND] = ACTIONS(3), + }, + [1132] = { + [aux_sym__repeat_newline] = STATE(1017), + [sym_comment] = STATE(1132), + [anon_sym_in] = ACTIONS(2557), + [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [1133] = { + [sym__expr_parenthesized_immediate] = STATE(5059), + [sym_comment] = STATE(1133), + [ts_builtin_sym_end] = ACTIONS(2154), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [1134] = { + [aux_sym__repeat_newline] = STATE(1042), + [sym_comment] = STATE(1134), + [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_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_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), + [anon_sym_POUND] = ACTIONS(3), + }, + [1135] = { + [sym__expr_parenthesized_immediate] = STATE(5059), + [sym_comment] = STATE(1135), + [ts_builtin_sym_end] = ACTIONS(2154), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [1136] = { + [aux_sym__repeat_newline] = STATE(522), [sym_comment] = STATE(1136), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_err_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_GT_PIPE] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_GT2] = ACTIONS(2832), + [anon_sym_DASH2] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_STAR2] = ACTIONS(2832), + [anon_sym_and2] = ACTIONS(2830), + [anon_sym_xor2] = ACTIONS(2830), + [anon_sym_or2] = ACTIONS(2830), + [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(2830), + [anon_sym_BANG_EQ2] = ACTIONS(2830), + [anon_sym_LT2] = ACTIONS(2832), + [anon_sym_LT_EQ2] = ACTIONS(2830), + [anon_sym_GT_EQ2] = ACTIONS(2830), + [anon_sym_EQ_TILDE2] = ACTIONS(2830), + [anon_sym_BANG_TILDE2] = ACTIONS(2830), + [anon_sym_like2] = ACTIONS(2830), + [anon_sym_not_DASHlike2] = ACTIONS(2830), + [anon_sym_STAR_STAR2] = ACTIONS(2830), + [anon_sym_PLUS_PLUS2] = ACTIONS(2830), + [anon_sym_SLASH2] = ACTIONS(2832), + [anon_sym_mod2] = ACTIONS(2830), + [anon_sym_SLASH_SLASH2] = ACTIONS(2830), + [anon_sym_PLUS2] = ACTIONS(2832), + [anon_sym_bit_DASHshl2] = ACTIONS(2830), + [anon_sym_bit_DASHshr2] = ACTIONS(2830), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2830), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2832), + [anon_sym_out_GT] = ACTIONS(2832), + [anon_sym_e_GT] = ACTIONS(2832), + [anon_sym_o_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT] = ACTIONS(2832), + [anon_sym_err_GT_GT] = ACTIONS(2830), + [anon_sym_out_GT_GT] = ACTIONS(2830), + [anon_sym_e_GT_GT] = ACTIONS(2830), + [anon_sym_o_GT_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2830), + [anon_sym_POUND] = ACTIONS(3), + }, + [1137] = { + [aux_sym__repeat_newline] = STATE(1041), + [sym_comment] = STATE(1137), + [anon_sym_in] = ACTIONS(2840), + [sym__newline] = ACTIONS(2840), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_err_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_GT_PIPE] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), + [anon_sym_RPAREN] = ACTIONS(2840), + [anon_sym_GT2] = ACTIONS(2842), + [anon_sym_DASH2] = ACTIONS(2840), + [anon_sym_LBRACE] = ACTIONS(2840), + [anon_sym_STAR2] = ACTIONS(2842), + [anon_sym_and2] = ACTIONS(2840), + [anon_sym_xor2] = ACTIONS(2840), + [anon_sym_or2] = ACTIONS(2840), + [anon_sym_not_DASHin2] = ACTIONS(2840), + [anon_sym_has2] = ACTIONS(2840), + [anon_sym_not_DASHhas2] = ACTIONS(2840), + [anon_sym_starts_DASHwith2] = ACTIONS(2840), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2840), + [anon_sym_ends_DASHwith2] = ACTIONS(2840), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2840), + [anon_sym_EQ_EQ2] = ACTIONS(2840), + [anon_sym_BANG_EQ2] = ACTIONS(2840), + [anon_sym_LT2] = ACTIONS(2842), + [anon_sym_LT_EQ2] = ACTIONS(2840), + [anon_sym_GT_EQ2] = ACTIONS(2840), + [anon_sym_EQ_TILDE2] = ACTIONS(2840), + [anon_sym_BANG_TILDE2] = ACTIONS(2840), + [anon_sym_like2] = ACTIONS(2840), + [anon_sym_not_DASHlike2] = ACTIONS(2840), + [anon_sym_STAR_STAR2] = ACTIONS(2840), + [anon_sym_PLUS_PLUS2] = ACTIONS(2840), + [anon_sym_SLASH2] = ACTIONS(2842), + [anon_sym_mod2] = ACTIONS(2840), + [anon_sym_SLASH_SLASH2] = ACTIONS(2840), + [anon_sym_PLUS2] = ACTIONS(2842), + [anon_sym_bit_DASHshl2] = ACTIONS(2840), + [anon_sym_bit_DASHshr2] = ACTIONS(2840), + [anon_sym_bit_DASHand2] = ACTIONS(2840), + [anon_sym_bit_DASHxor2] = ACTIONS(2840), + [anon_sym_bit_DASHor2] = ACTIONS(2840), + [anon_sym_err_GT] = ACTIONS(2842), + [anon_sym_out_GT] = ACTIONS(2842), + [anon_sym_e_GT] = ACTIONS(2842), + [anon_sym_o_GT] = ACTIONS(2842), + [anon_sym_err_PLUSout_GT] = ACTIONS(2842), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2842), + [anon_sym_o_PLUSe_GT] = ACTIONS(2842), + [anon_sym_e_PLUSo_GT] = ACTIONS(2842), + [anon_sym_err_GT_GT] = ACTIONS(2840), + [anon_sym_out_GT_GT] = ACTIONS(2840), + [anon_sym_e_GT_GT] = ACTIONS(2840), + [anon_sym_o_GT_GT] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), + [anon_sym_POUND] = ACTIONS(3), + }, + [1138] = { + [sym__expr_parenthesized_immediate] = STATE(5059), + [sym_comment] = STATE(1138), + [ts_builtin_sym_end] = ACTIONS(2154), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [1139] = { + [aux_sym__repeat_newline] = STATE(1024), + [sym_comment] = STATE(1139), + [anon_sym_in] = ACTIONS(2557), + [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [1140] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1140), + [anon_sym_in] = ACTIONS(2844), + [sym__newline] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(2844), + [anon_sym_err_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_GT_PIPE] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), + [anon_sym_RPAREN] = ACTIONS(2844), + [anon_sym_GT2] = ACTIONS(2846), + [anon_sym_DASH2] = ACTIONS(2844), + [anon_sym_LBRACE] = ACTIONS(2844), + [anon_sym_STAR2] = ACTIONS(2846), + [anon_sym_and2] = ACTIONS(2844), + [anon_sym_xor2] = ACTIONS(2844), + [anon_sym_or2] = ACTIONS(2844), + [anon_sym_not_DASHin2] = ACTIONS(2844), + [anon_sym_has2] = ACTIONS(2844), + [anon_sym_not_DASHhas2] = ACTIONS(2844), + [anon_sym_starts_DASHwith2] = ACTIONS(2844), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2844), + [anon_sym_ends_DASHwith2] = ACTIONS(2844), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2844), + [anon_sym_EQ_EQ2] = ACTIONS(2844), + [anon_sym_BANG_EQ2] = ACTIONS(2844), + [anon_sym_LT2] = ACTIONS(2846), + [anon_sym_LT_EQ2] = ACTIONS(2844), + [anon_sym_GT_EQ2] = ACTIONS(2844), + [anon_sym_EQ_TILDE2] = ACTIONS(2844), + [anon_sym_BANG_TILDE2] = ACTIONS(2844), + [anon_sym_like2] = ACTIONS(2844), + [anon_sym_not_DASHlike2] = ACTIONS(2844), + [anon_sym_STAR_STAR2] = ACTIONS(2844), + [anon_sym_PLUS_PLUS2] = ACTIONS(2844), + [anon_sym_SLASH2] = ACTIONS(2846), + [anon_sym_mod2] = ACTIONS(2844), + [anon_sym_SLASH_SLASH2] = ACTIONS(2844), + [anon_sym_PLUS2] = ACTIONS(2846), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2844), + [anon_sym_bit_DASHor2] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(2846), + [anon_sym_out_GT] = ACTIONS(2846), + [anon_sym_e_GT] = ACTIONS(2846), + [anon_sym_o_GT] = ACTIONS(2846), + [anon_sym_err_PLUSout_GT] = ACTIONS(2846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2846), + [anon_sym_o_PLUSe_GT] = ACTIONS(2846), + [anon_sym_e_PLUSo_GT] = ACTIONS(2846), + [anon_sym_err_GT_GT] = ACTIONS(2844), + [anon_sym_out_GT_GT] = ACTIONS(2844), + [anon_sym_e_GT_GT] = ACTIONS(2844), + [anon_sym_o_GT_GT] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), + [anon_sym_POUND] = ACTIONS(3), + }, + [1141] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1141), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_err_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_GT_PIPE] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_GT2] = ACTIONS(2832), + [anon_sym_DASH2] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_STAR2] = ACTIONS(2832), + [anon_sym_and2] = ACTIONS(2830), + [anon_sym_xor2] = ACTIONS(2830), + [anon_sym_or2] = ACTIONS(2830), + [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(2830), + [anon_sym_BANG_EQ2] = ACTIONS(2830), + [anon_sym_LT2] = ACTIONS(2832), + [anon_sym_LT_EQ2] = ACTIONS(2830), + [anon_sym_GT_EQ2] = ACTIONS(2830), + [anon_sym_EQ_TILDE2] = ACTIONS(2830), + [anon_sym_BANG_TILDE2] = ACTIONS(2830), + [anon_sym_like2] = ACTIONS(2830), + [anon_sym_not_DASHlike2] = ACTIONS(2830), + [anon_sym_STAR_STAR2] = ACTIONS(2830), + [anon_sym_PLUS_PLUS2] = ACTIONS(2830), + [anon_sym_SLASH2] = ACTIONS(2832), + [anon_sym_mod2] = ACTIONS(2830), + [anon_sym_SLASH_SLASH2] = ACTIONS(2830), + [anon_sym_PLUS2] = ACTIONS(2832), + [anon_sym_bit_DASHshl2] = ACTIONS(2830), + [anon_sym_bit_DASHshr2] = ACTIONS(2830), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2830), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2832), + [anon_sym_out_GT] = ACTIONS(2832), + [anon_sym_e_GT] = ACTIONS(2832), + [anon_sym_o_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT] = ACTIONS(2832), + [anon_sym_err_GT_GT] = ACTIONS(2830), + [anon_sym_out_GT_GT] = ACTIONS(2830), + [anon_sym_e_GT_GT] = ACTIONS(2830), + [anon_sym_o_GT_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2830), + [anon_sym_POUND] = ACTIONS(3), + }, + [1142] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1142), + [anon_sym_in] = ACTIONS(2848), + [sym__newline] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2848), + [anon_sym_PIPE] = ACTIONS(2848), + [anon_sym_err_GT_PIPE] = ACTIONS(2848), + [anon_sym_out_GT_PIPE] = ACTIONS(2848), + [anon_sym_e_GT_PIPE] = ACTIONS(2848), + [anon_sym_o_GT_PIPE] = ACTIONS(2848), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2848), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2848), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2848), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2848), + [anon_sym_RPAREN] = ACTIONS(2848), + [anon_sym_GT2] = ACTIONS(2850), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_LBRACE] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_and2] = ACTIONS(2848), + [anon_sym_xor2] = ACTIONS(2848), + [anon_sym_or2] = ACTIONS(2848), + [anon_sym_not_DASHin2] = ACTIONS(2848), + [anon_sym_has2] = ACTIONS(2848), + [anon_sym_not_DASHhas2] = ACTIONS(2848), + [anon_sym_starts_DASHwith2] = ACTIONS(2848), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2848), + [anon_sym_ends_DASHwith2] = ACTIONS(2848), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2848), + [anon_sym_EQ_EQ2] = ACTIONS(2848), + [anon_sym_BANG_EQ2] = ACTIONS(2848), + [anon_sym_LT2] = ACTIONS(2850), + [anon_sym_LT_EQ2] = ACTIONS(2848), + [anon_sym_GT_EQ2] = ACTIONS(2848), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2848), + [anon_sym_PLUS_PLUS2] = ACTIONS(2848), + [anon_sym_SLASH2] = ACTIONS(2850), + [anon_sym_mod2] = ACTIONS(2848), + [anon_sym_SLASH_SLASH2] = ACTIONS(2848), + [anon_sym_PLUS2] = ACTIONS(2850), + [anon_sym_bit_DASHshl2] = ACTIONS(2848), + [anon_sym_bit_DASHshr2] = ACTIONS(2848), + [anon_sym_bit_DASHand2] = ACTIONS(2848), + [anon_sym_bit_DASHxor2] = ACTIONS(2848), + [anon_sym_bit_DASHor2] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2848), + [anon_sym_out_GT_GT] = ACTIONS(2848), + [anon_sym_e_GT_GT] = ACTIONS(2848), + [anon_sym_o_GT_GT] = ACTIONS(2848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2848), + [anon_sym_POUND] = ACTIONS(3), + }, + [1143] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1143), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_err_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_GT_PIPE] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_GT2] = ACTIONS(2832), + [anon_sym_DASH2] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_STAR2] = ACTIONS(2832), + [anon_sym_and2] = ACTIONS(2830), + [anon_sym_xor2] = ACTIONS(2830), + [anon_sym_or2] = ACTIONS(2830), + [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(2830), + [anon_sym_BANG_EQ2] = ACTIONS(2830), + [anon_sym_LT2] = ACTIONS(2832), + [anon_sym_LT_EQ2] = ACTIONS(2830), + [anon_sym_GT_EQ2] = ACTIONS(2830), + [anon_sym_EQ_TILDE2] = ACTIONS(2830), + [anon_sym_BANG_TILDE2] = ACTIONS(2830), + [anon_sym_like2] = ACTIONS(2830), + [anon_sym_not_DASHlike2] = ACTIONS(2830), + [anon_sym_STAR_STAR2] = ACTIONS(2830), + [anon_sym_PLUS_PLUS2] = ACTIONS(2830), + [anon_sym_SLASH2] = ACTIONS(2832), + [anon_sym_mod2] = ACTIONS(2830), + [anon_sym_SLASH_SLASH2] = ACTIONS(2830), + [anon_sym_PLUS2] = ACTIONS(2832), + [anon_sym_bit_DASHshl2] = ACTIONS(2830), + [anon_sym_bit_DASHshr2] = ACTIONS(2830), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2830), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2832), + [anon_sym_out_GT] = ACTIONS(2832), + [anon_sym_e_GT] = ACTIONS(2832), + [anon_sym_o_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT] = ACTIONS(2832), + [anon_sym_err_GT_GT] = ACTIONS(2830), + [anon_sym_out_GT_GT] = ACTIONS(2830), + [anon_sym_e_GT_GT] = ACTIONS(2830), + [anon_sym_o_GT_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2830), + [anon_sym_POUND] = ACTIONS(3), + }, + [1144] = { + [aux_sym__repeat_newline] = STATE(1038), + [sym_comment] = STATE(1144), + [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_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_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), + [anon_sym_POUND] = ACTIONS(3), + }, + [1145] = { + [aux_sym__repeat_newline] = STATE(1030), + [sym_comment] = STATE(1145), + [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_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_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), + [anon_sym_POUND] = ACTIONS(3), + }, + [1146] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1146), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_err_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_GT_PIPE] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_GT2] = ACTIONS(2832), + [anon_sym_DASH2] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_STAR2] = ACTIONS(2832), + [anon_sym_and2] = ACTIONS(2830), + [anon_sym_xor2] = ACTIONS(2830), + [anon_sym_or2] = ACTIONS(2830), + [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(2830), + [anon_sym_BANG_EQ2] = ACTIONS(2830), + [anon_sym_LT2] = ACTIONS(2832), + [anon_sym_LT_EQ2] = ACTIONS(2830), + [anon_sym_GT_EQ2] = ACTIONS(2830), + [anon_sym_EQ_TILDE2] = ACTIONS(2830), + [anon_sym_BANG_TILDE2] = ACTIONS(2830), + [anon_sym_like2] = ACTIONS(2830), + [anon_sym_not_DASHlike2] = ACTIONS(2830), + [anon_sym_STAR_STAR2] = ACTIONS(2830), + [anon_sym_PLUS_PLUS2] = ACTIONS(2830), + [anon_sym_SLASH2] = ACTIONS(2832), + [anon_sym_mod2] = ACTIONS(2830), + [anon_sym_SLASH_SLASH2] = ACTIONS(2830), + [anon_sym_PLUS2] = ACTIONS(2832), + [anon_sym_bit_DASHshl2] = ACTIONS(2830), + [anon_sym_bit_DASHshr2] = ACTIONS(2830), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2830), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2832), + [anon_sym_out_GT] = ACTIONS(2832), + [anon_sym_e_GT] = ACTIONS(2832), + [anon_sym_o_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT] = ACTIONS(2832), + [anon_sym_err_GT_GT] = ACTIONS(2830), + [anon_sym_out_GT_GT] = ACTIONS(2830), + [anon_sym_e_GT_GT] = ACTIONS(2830), + [anon_sym_o_GT_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2830), + [anon_sym_POUND] = ACTIONS(3), + }, + [1147] = { + [sym__expr_parenthesized_immediate] = STATE(5059), + [sym_comment] = STATE(1147), + [ts_builtin_sym_end] = ACTIONS(2154), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [1148] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1148), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_err_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_GT_PIPE] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_GT2] = ACTIONS(2832), + [anon_sym_DASH2] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_STAR2] = ACTIONS(2832), + [anon_sym_and2] = ACTIONS(2830), + [anon_sym_xor2] = ACTIONS(2830), + [anon_sym_or2] = ACTIONS(2830), + [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(2830), + [anon_sym_BANG_EQ2] = ACTIONS(2830), + [anon_sym_LT2] = ACTIONS(2832), + [anon_sym_LT_EQ2] = ACTIONS(2830), + [anon_sym_GT_EQ2] = ACTIONS(2830), + [anon_sym_EQ_TILDE2] = ACTIONS(2830), + [anon_sym_BANG_TILDE2] = ACTIONS(2830), + [anon_sym_like2] = ACTIONS(2830), + [anon_sym_not_DASHlike2] = ACTIONS(2830), + [anon_sym_STAR_STAR2] = ACTIONS(2830), + [anon_sym_PLUS_PLUS2] = ACTIONS(2830), + [anon_sym_SLASH2] = ACTIONS(2832), + [anon_sym_mod2] = ACTIONS(2830), + [anon_sym_SLASH_SLASH2] = ACTIONS(2830), + [anon_sym_PLUS2] = ACTIONS(2832), + [anon_sym_bit_DASHshl2] = ACTIONS(2830), + [anon_sym_bit_DASHshr2] = ACTIONS(2830), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2830), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2832), + [anon_sym_out_GT] = ACTIONS(2832), + [anon_sym_e_GT] = ACTIONS(2832), + [anon_sym_o_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT] = ACTIONS(2832), + [anon_sym_err_GT_GT] = ACTIONS(2830), + [anon_sym_out_GT_GT] = ACTIONS(2830), + [anon_sym_e_GT_GT] = ACTIONS(2830), + [anon_sym_o_GT_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2830), + [anon_sym_POUND] = ACTIONS(3), + }, + [1149] = { + [aux_sym__repeat_newline] = STATE(1034), + [sym_comment] = STATE(1149), + [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_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_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), + [anon_sym_POUND] = ACTIONS(3), + }, + [1150] = { + [aux_sym__repeat_newline] = STATE(1032), + [sym_comment] = STATE(1150), + [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_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_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), + [anon_sym_POUND] = ACTIONS(3), + }, + [1151] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1151), + [anon_sym_in] = ACTIONS(2830), + [sym__newline] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_err_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_GT_PIPE] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2830), + [anon_sym_RPAREN] = ACTIONS(2830), + [anon_sym_GT2] = ACTIONS(2832), + [anon_sym_DASH2] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_STAR2] = ACTIONS(2832), + [anon_sym_and2] = ACTIONS(2830), + [anon_sym_xor2] = ACTIONS(2830), + [anon_sym_or2] = ACTIONS(2830), + [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(2830), + [anon_sym_BANG_EQ2] = ACTIONS(2830), + [anon_sym_LT2] = ACTIONS(2832), + [anon_sym_LT_EQ2] = ACTIONS(2830), + [anon_sym_GT_EQ2] = ACTIONS(2830), + [anon_sym_EQ_TILDE2] = ACTIONS(2830), + [anon_sym_BANG_TILDE2] = ACTIONS(2830), + [anon_sym_like2] = ACTIONS(2830), + [anon_sym_not_DASHlike2] = ACTIONS(2830), + [anon_sym_STAR_STAR2] = ACTIONS(2830), + [anon_sym_PLUS_PLUS2] = ACTIONS(2830), + [anon_sym_SLASH2] = ACTIONS(2832), + [anon_sym_mod2] = ACTIONS(2830), + [anon_sym_SLASH_SLASH2] = ACTIONS(2830), + [anon_sym_PLUS2] = ACTIONS(2832), + [anon_sym_bit_DASHshl2] = ACTIONS(2830), + [anon_sym_bit_DASHshr2] = ACTIONS(2830), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2830), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2832), + [anon_sym_out_GT] = ACTIONS(2832), + [anon_sym_e_GT] = ACTIONS(2832), + [anon_sym_o_GT] = ACTIONS(2832), + [anon_sym_err_PLUSout_GT] = ACTIONS(2832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2832), + [anon_sym_o_PLUSe_GT] = ACTIONS(2832), + [anon_sym_e_PLUSo_GT] = ACTIONS(2832), + [anon_sym_err_GT_GT] = ACTIONS(2830), + [anon_sym_out_GT_GT] = ACTIONS(2830), + [anon_sym_e_GT_GT] = ACTIONS(2830), + [anon_sym_o_GT_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2830), + [anon_sym_POUND] = ACTIONS(3), + }, + [1152] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1152), + [anon_sym_in] = ACTIONS(2852), + [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(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2786), + [anon_sym_xor2] = ACTIONS(2786), + [anon_sym_or2] = ACTIONS(2786), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2862), + [anon_sym_BANG_TILDE2] = ACTIONS(2862), + [anon_sym_like2] = ACTIONS(2862), + [anon_sym_not_DASHlike2] = ACTIONS(2862), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [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), + }, + [1153] = { + [aux_sym__repeat_newline] = STATE(1251), + [sym_comment] = STATE(1153), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_err_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_GT_PIPE] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), + [anon_sym_RPAREN] = ACTIONS(2840), + [anon_sym_GT2] = ACTIONS(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2840), + [anon_sym_xor2] = ACTIONS(2840), + [anon_sym_or2] = ACTIONS(2840), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2887), + [anon_sym_BANG_TILDE2] = ACTIONS(2887), + [anon_sym_like2] = ACTIONS(2887), + [anon_sym_not_DASHlike2] = ACTIONS(2887), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2897), + [anon_sym_bit_DASHxor2] = ACTIONS(2899), + [anon_sym_bit_DASHor2] = ACTIONS(2840), + [anon_sym_err_GT] = ACTIONS(2842), + [anon_sym_out_GT] = ACTIONS(2842), + [anon_sym_e_GT] = ACTIONS(2842), + [anon_sym_o_GT] = ACTIONS(2842), + [anon_sym_err_PLUSout_GT] = ACTIONS(2842), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2842), + [anon_sym_o_PLUSe_GT] = ACTIONS(2842), + [anon_sym_e_PLUSo_GT] = ACTIONS(2842), + [anon_sym_err_GT_GT] = ACTIONS(2840), + [anon_sym_out_GT_GT] = ACTIONS(2840), + [anon_sym_e_GT_GT] = ACTIONS(2840), + [anon_sym_o_GT_GT] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), + [anon_sym_POUND] = ACTIONS(3), + }, + [1154] = { + [aux_sym__repeat_newline] = STATE(1248), + [sym_comment] = STATE(1154), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_err_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_GT_PIPE] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), + [anon_sym_RPAREN] = ACTIONS(2840), + [anon_sym_GT2] = ACTIONS(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2840), + [anon_sym_xor2] = ACTIONS(2840), + [anon_sym_or2] = ACTIONS(2840), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2887), + [anon_sym_BANG_TILDE2] = ACTIONS(2887), + [anon_sym_like2] = ACTIONS(2887), + [anon_sym_not_DASHlike2] = ACTIONS(2887), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2897), + [anon_sym_bit_DASHxor2] = ACTIONS(2840), + [anon_sym_bit_DASHor2] = ACTIONS(2840), + [anon_sym_err_GT] = ACTIONS(2842), + [anon_sym_out_GT] = ACTIONS(2842), + [anon_sym_e_GT] = ACTIONS(2842), + [anon_sym_o_GT] = ACTIONS(2842), + [anon_sym_err_PLUSout_GT] = ACTIONS(2842), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2842), + [anon_sym_o_PLUSe_GT] = ACTIONS(2842), + [anon_sym_e_PLUSo_GT] = ACTIONS(2842), + [anon_sym_err_GT_GT] = ACTIONS(2840), + [anon_sym_out_GT_GT] = ACTIONS(2840), + [anon_sym_e_GT_GT] = ACTIONS(2840), + [anon_sym_o_GT_GT] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1137)] = { - [sym_comment] = STATE(1137), - [ts_builtin_sym_end] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [sym__newline] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_err_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_GT_PIPE] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), - [anon_sym_GT2] = ACTIONS(1616), - [anon_sym_DASH2] = ACTIONS(1738), - [anon_sym_STAR2] = ACTIONS(1616), - [anon_sym_and2] = ACTIONS(1738), - [anon_sym_xor2] = ACTIONS(1738), - [anon_sym_or2] = ACTIONS(1738), - [anon_sym_not_DASHin2] = ACTIONS(1738), - [anon_sym_has2] = ACTIONS(1738), - [anon_sym_not_DASHhas2] = ACTIONS(1738), - [anon_sym_starts_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), - [anon_sym_ends_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), - [anon_sym_EQ_EQ2] = ACTIONS(1738), - [anon_sym_BANG_EQ2] = ACTIONS(1738), - [anon_sym_LT2] = ACTIONS(1616), - [anon_sym_LT_EQ2] = ACTIONS(1738), - [anon_sym_GT_EQ2] = ACTIONS(1738), - [anon_sym_EQ_TILDE2] = ACTIONS(1738), - [anon_sym_BANG_TILDE2] = ACTIONS(1738), - [anon_sym_like2] = ACTIONS(1738), - [anon_sym_not_DASHlike2] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(2672), - [anon_sym_STAR_STAR2] = ACTIONS(1738), - [anon_sym_PLUS_PLUS2] = ACTIONS(1738), - [anon_sym_SLASH2] = ACTIONS(1616), - [anon_sym_mod2] = ACTIONS(1738), - [anon_sym_SLASH_SLASH2] = ACTIONS(1738), - [anon_sym_PLUS2] = ACTIONS(1616), - [anon_sym_bit_DASHshl2] = ACTIONS(1738), - [anon_sym_bit_DASHshr2] = ACTIONS(1738), - [anon_sym_bit_DASHand2] = ACTIONS(1738), - [anon_sym_bit_DASHxor2] = ACTIONS(1738), - [anon_sym_bit_DASHor2] = ACTIONS(1738), - [anon_sym_err_GT] = ACTIONS(1616), - [anon_sym_out_GT] = ACTIONS(1616), - [anon_sym_e_GT] = ACTIONS(1616), - [anon_sym_o_GT] = ACTIONS(1616), - [anon_sym_err_PLUSout_GT] = ACTIONS(1616), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), - [anon_sym_o_PLUSe_GT] = ACTIONS(1616), - [anon_sym_e_PLUSo_GT] = ACTIONS(1616), - [anon_sym_err_GT_GT] = ACTIONS(1738), - [anon_sym_out_GT_GT] = ACTIONS(1738), - [anon_sym_e_GT_GT] = ACTIONS(1738), - [anon_sym_o_GT_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), - [sym__unquoted_pattern] = ACTIONS(2674), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1138)] = { - [aux_sym__repeat_newline] = STATE(990), - [sym_comment] = STATE(1138), - [anon_sym_in] = ACTIONS(2836), - [sym__newline] = ACTIONS(2836), - [anon_sym_SEMI] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_err_GT_PIPE] = ACTIONS(2836), - [anon_sym_out_GT_PIPE] = ACTIONS(2836), - [anon_sym_e_GT_PIPE] = ACTIONS(2836), - [anon_sym_o_GT_PIPE] = ACTIONS(2836), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2836), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2836), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2836), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2836), - [anon_sym_RPAREN] = ACTIONS(2836), - [anon_sym_GT2] = ACTIONS(2838), - [anon_sym_DASH2] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2836), - [anon_sym_STAR2] = ACTIONS(2838), - [anon_sym_and2] = ACTIONS(2836), - [anon_sym_xor2] = ACTIONS(2836), - [anon_sym_or2] = ACTIONS(2836), - [anon_sym_not_DASHin2] = ACTIONS(2836), - [anon_sym_has2] = ACTIONS(2836), - [anon_sym_not_DASHhas2] = ACTIONS(2836), - [anon_sym_starts_DASHwith2] = ACTIONS(2836), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2836), - [anon_sym_ends_DASHwith2] = ACTIONS(2836), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2836), - [anon_sym_EQ_EQ2] = ACTIONS(2836), - [anon_sym_BANG_EQ2] = ACTIONS(2836), - [anon_sym_LT2] = ACTIONS(2838), - [anon_sym_LT_EQ2] = ACTIONS(2836), - [anon_sym_GT_EQ2] = ACTIONS(2836), - [anon_sym_EQ_TILDE2] = ACTIONS(2836), - [anon_sym_BANG_TILDE2] = ACTIONS(2836), - [anon_sym_like2] = ACTIONS(2836), - [anon_sym_not_DASHlike2] = ACTIONS(2836), - [anon_sym_STAR_STAR2] = ACTIONS(2836), - [anon_sym_PLUS_PLUS2] = ACTIONS(2836), - [anon_sym_SLASH2] = ACTIONS(2838), - [anon_sym_mod2] = ACTIONS(2836), - [anon_sym_SLASH_SLASH2] = ACTIONS(2836), - [anon_sym_PLUS2] = ACTIONS(2838), - [anon_sym_bit_DASHshl2] = ACTIONS(2836), - [anon_sym_bit_DASHshr2] = ACTIONS(2836), - [anon_sym_bit_DASHand2] = ACTIONS(2836), - [anon_sym_bit_DASHxor2] = ACTIONS(2836), - [anon_sym_bit_DASHor2] = ACTIONS(2836), - [anon_sym_err_GT] = ACTIONS(2838), - [anon_sym_out_GT] = ACTIONS(2838), - [anon_sym_e_GT] = ACTIONS(2838), - [anon_sym_o_GT] = ACTIONS(2838), - [anon_sym_err_PLUSout_GT] = ACTIONS(2838), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), - [anon_sym_o_PLUSe_GT] = ACTIONS(2838), - [anon_sym_e_PLUSo_GT] = ACTIONS(2838), - [anon_sym_err_GT_GT] = ACTIONS(2836), - [anon_sym_out_GT_GT] = ACTIONS(2836), - [anon_sym_e_GT_GT] = ACTIONS(2836), - [anon_sym_o_GT_GT] = ACTIONS(2836), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2836), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2836), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2836), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1139)] = { - [aux_sym__repeat_newline] = STATE(1142), - [sym_comment] = STATE(1139), - [anon_sym_in] = ACTIONS(2840), - [sym__newline] = ACTIONS(2840), + [1155] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1155), + [anon_sym_in] = ACTIONS(2852), + [sym__newline] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(2844), + [anon_sym_err_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_GT_PIPE] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), + [anon_sym_RPAREN] = ACTIONS(2844), + [anon_sym_GT2] = ACTIONS(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2844), + [anon_sym_xor2] = ACTIONS(2844), + [anon_sym_or2] = ACTIONS(2844), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2862), + [anon_sym_BANG_TILDE2] = ACTIONS(2862), + [anon_sym_like2] = ACTIONS(2862), + [anon_sym_not_DASHlike2] = ACTIONS(2862), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2844), + [anon_sym_bit_DASHor2] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(2846), + [anon_sym_out_GT] = ACTIONS(2846), + [anon_sym_e_GT] = ACTIONS(2846), + [anon_sym_o_GT] = ACTIONS(2846), + [anon_sym_err_PLUSout_GT] = ACTIONS(2846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2846), + [anon_sym_o_PLUSe_GT] = ACTIONS(2846), + [anon_sym_e_PLUSo_GT] = ACTIONS(2846), + [anon_sym_err_GT_GT] = ACTIONS(2844), + [anon_sym_out_GT_GT] = ACTIONS(2844), + [anon_sym_e_GT_GT] = ACTIONS(2844), + [anon_sym_o_GT_GT] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), + [anon_sym_POUND] = ACTIONS(3), + }, + [1156] = { + [sym_comment] = STATE(1156), + [anon_sym_in] = ACTIONS(2901), + [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(2903), + [anon_sym_DASH2] = ACTIONS(2905), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_STAR2] = ACTIONS(2907), + [anon_sym_and2] = ACTIONS(2624), + [anon_sym_xor2] = ACTIONS(2624), + [anon_sym_or2] = ACTIONS(2624), + [anon_sym_not_DASHin2] = ACTIONS(2901), + [anon_sym_has2] = ACTIONS(2901), + [anon_sym_not_DASHhas2] = ACTIONS(2901), + [anon_sym_starts_DASHwith2] = ACTIONS(2901), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2901), + [anon_sym_ends_DASHwith2] = ACTIONS(2901), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2901), + [anon_sym_EQ_EQ2] = ACTIONS(2909), + [anon_sym_BANG_EQ2] = ACTIONS(2909), + [anon_sym_LT2] = ACTIONS(2903), + [anon_sym_LT_EQ2] = ACTIONS(2909), + [anon_sym_GT_EQ2] = ACTIONS(2909), + [anon_sym_EQ_TILDE2] = ACTIONS(2911), + [anon_sym_BANG_TILDE2] = ACTIONS(2911), + [anon_sym_like2] = ACTIONS(2911), + [anon_sym_not_DASHlike2] = ACTIONS(2911), + [anon_sym_STAR_STAR2] = ACTIONS(2913), + [anon_sym_PLUS_PLUS2] = ACTIONS(2913), + [anon_sym_SLASH2] = ACTIONS(2907), + [anon_sym_mod2] = ACTIONS(2915), + [anon_sym_SLASH_SLASH2] = ACTIONS(2915), + [anon_sym_PLUS2] = ACTIONS(2917), + [anon_sym_bit_DASHshl2] = ACTIONS(2919), + [anon_sym_bit_DASHshr2] = ACTIONS(2919), + [anon_sym_bit_DASHand2] = ACTIONS(2921), + [anon_sym_bit_DASHxor2] = ACTIONS(2624), + [anon_sym_bit_DASHor2] = ACTIONS(2624), + [anon_sym_err_GT] = ACTIONS(2626), + [anon_sym_out_GT] = ACTIONS(2626), + [anon_sym_e_GT] = ACTIONS(2626), + [anon_sym_o_GT] = ACTIONS(2626), + [anon_sym_err_PLUSout_GT] = ACTIONS(2626), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2626), + [anon_sym_o_PLUSe_GT] = ACTIONS(2626), + [anon_sym_e_PLUSo_GT] = ACTIONS(2626), + [anon_sym_err_GT_GT] = ACTIONS(2624), + [anon_sym_out_GT_GT] = ACTIONS(2624), + [anon_sym_e_GT_GT] = ACTIONS(2624), + [anon_sym_o_GT_GT] = ACTIONS(2624), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2624), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2624), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2624), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2624), + [anon_sym_POUND] = ACTIONS(3), + }, + [1157] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1157), + [anon_sym_in] = ACTIONS(2782), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_err_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_GT_PIPE] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2782), + [anon_sym_xor2] = ACTIONS(2782), + [anon_sym_or2] = ACTIONS(2782), + [anon_sym_not_DASHin2] = ACTIONS(2782), + [anon_sym_has2] = ACTIONS(2782), + [anon_sym_not_DASHhas2] = ACTIONS(2782), + [anon_sym_starts_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2782), + [anon_sym_ends_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2782), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2782), + [anon_sym_BANG_TILDE2] = ACTIONS(2782), + [anon_sym_like2] = ACTIONS(2782), + [anon_sym_not_DASHlike2] = ACTIONS(2782), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2782), + [anon_sym_bit_DASHxor2] = ACTIONS(2782), + [anon_sym_bit_DASHor2] = ACTIONS(2782), + [anon_sym_err_GT] = ACTIONS(2784), + [anon_sym_out_GT] = ACTIONS(2784), + [anon_sym_e_GT] = ACTIONS(2784), + [anon_sym_o_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT] = ACTIONS(2784), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [anon_sym_POUND] = ACTIONS(3), + }, + [1158] = { + [aux_sym__repeat_newline] = STATE(1246), + [sym_comment] = STATE(1158), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2876), [anon_sym_SEMI] = ACTIONS(2840), [anon_sym_PIPE] = ACTIONS(2840), [anon_sym_err_GT_PIPE] = ACTIONS(2840), @@ -133126,37 +134360,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), [anon_sym_RPAREN] = ACTIONS(2840), - [anon_sym_GT2] = ACTIONS(2842), - [anon_sym_DASH2] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_STAR2] = ACTIONS(2842), + [anon_sym_GT2] = ACTIONS(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), [anon_sym_and2] = ACTIONS(2840), [anon_sym_xor2] = ACTIONS(2840), [anon_sym_or2] = ACTIONS(2840), - [anon_sym_not_DASHin2] = ACTIONS(2840), - [anon_sym_has2] = ACTIONS(2840), - [anon_sym_not_DASHhas2] = ACTIONS(2840), - [anon_sym_starts_DASHwith2] = ACTIONS(2840), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2840), - [anon_sym_ends_DASHwith2] = ACTIONS(2840), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2840), - [anon_sym_EQ_EQ2] = ACTIONS(2840), - [anon_sym_BANG_EQ2] = ACTIONS(2840), - [anon_sym_LT2] = ACTIONS(2842), - [anon_sym_LT_EQ2] = ACTIONS(2840), - [anon_sym_GT_EQ2] = ACTIONS(2840), - [anon_sym_EQ_TILDE2] = ACTIONS(2840), - [anon_sym_BANG_TILDE2] = ACTIONS(2840), - [anon_sym_like2] = ACTIONS(2840), - [anon_sym_not_DASHlike2] = ACTIONS(2840), - [anon_sym_STAR_STAR2] = ACTIONS(2840), - [anon_sym_PLUS_PLUS2] = ACTIONS(2840), - [anon_sym_SLASH2] = ACTIONS(2842), - [anon_sym_mod2] = ACTIONS(2840), - [anon_sym_SLASH_SLASH2] = ACTIONS(2840), - [anon_sym_PLUS2] = ACTIONS(2842), - [anon_sym_bit_DASHshl2] = ACTIONS(2840), - [anon_sym_bit_DASHshr2] = ACTIONS(2840), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2887), + [anon_sym_BANG_TILDE2] = ACTIONS(2887), + [anon_sym_like2] = ACTIONS(2887), + [anon_sym_not_DASHlike2] = ACTIONS(2887), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), [anon_sym_bit_DASHand2] = ACTIONS(2840), [anon_sym_bit_DASHxor2] = ACTIONS(2840), [anon_sym_bit_DASHor2] = ACTIONS(2840), @@ -133178,145 +134411,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1140)] = { - [sym__expression] = STATE(5002), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2261), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1878), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_comment] = STATE(1140), - [aux_sym_cmd_identifier_token2] = ACTIONS(2786), - [anon_sym_true] = ACTIONS(2636), - [anon_sym_false] = ACTIONS(2636), - [anon_sym_null] = ACTIONS(2638), - [aux_sym_cmd_identifier_token3] = ACTIONS(2640), - [aux_sym_cmd_identifier_token4] = ACTIONS(2640), - [aux_sym_cmd_identifier_token5] = ACTIONS(2640), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(181), - [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1981), - [aux_sym__val_number_decimal_token3] = ACTIONS(2644), - [aux_sym__val_number_decimal_token4] = ACTIONS(2644), - [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(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2646), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_COLON2] = ACTIONS(2834), - [anon_sym_POUND] = ACTIONS(105), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(1141)] = { - [aux_sym__repeat_newline] = STATE(1041), - [sym_comment] = STATE(1141), - [anon_sym_in] = ACTIONS(2492), - [sym__newline] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_err_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_GT_PIPE] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_GT2] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_STAR2] = ACTIONS(2494), - [anon_sym_and2] = ACTIONS(2492), - [anon_sym_xor2] = ACTIONS(2492), - [anon_sym_or2] = ACTIONS(2492), - [anon_sym_not_DASHin2] = ACTIONS(2492), - [anon_sym_has2] = ACTIONS(2492), - [anon_sym_not_DASHhas2] = ACTIONS(2492), - [anon_sym_starts_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), - [anon_sym_ends_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), - [anon_sym_EQ_EQ2] = ACTIONS(2492), - [anon_sym_BANG_EQ2] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2494), - [anon_sym_LT_EQ2] = ACTIONS(2492), - [anon_sym_GT_EQ2] = ACTIONS(2492), - [anon_sym_EQ_TILDE2] = ACTIONS(2492), - [anon_sym_BANG_TILDE2] = ACTIONS(2492), - [anon_sym_like2] = ACTIONS(2492), - [anon_sym_not_DASHlike2] = ACTIONS(2492), - [anon_sym_STAR_STAR2] = ACTIONS(2492), - [anon_sym_PLUS_PLUS2] = ACTIONS(2492), - [anon_sym_SLASH2] = ACTIONS(2494), - [anon_sym_mod2] = ACTIONS(2492), - [anon_sym_SLASH_SLASH2] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_bit_DASHshl2] = ACTIONS(2492), - [anon_sym_bit_DASHshr2] = ACTIONS(2492), - [anon_sym_bit_DASHand2] = ACTIONS(2492), - [anon_sym_bit_DASHxor2] = ACTIONS(2492), - [anon_sym_bit_DASHor2] = ACTIONS(2492), - [anon_sym_err_GT] = ACTIONS(2494), - [anon_sym_out_GT] = ACTIONS(2494), - [anon_sym_e_GT] = ACTIONS(2494), - [anon_sym_o_GT] = ACTIONS(2494), - [anon_sym_err_PLUSout_GT] = ACTIONS(2494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), - [anon_sym_o_PLUSe_GT] = ACTIONS(2494), - [anon_sym_e_PLUSo_GT] = ACTIONS(2494), - [anon_sym_err_GT_GT] = ACTIONS(2492), - [anon_sym_out_GT_GT] = ACTIONS(2492), - [anon_sym_e_GT_GT] = ACTIONS(2492), - [anon_sym_o_GT_GT] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1142)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1142), + [1159] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1159), [anon_sym_in] = ACTIONS(2844), [sym__newline] = ACTIONS(2844), [anon_sym_SEMI] = ACTIONS(2844), @@ -133331,9 +134428,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), [anon_sym_RPAREN] = ACTIONS(2844), [anon_sym_GT2] = ACTIONS(2846), - [anon_sym_DASH2] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_STAR2] = ACTIONS(2846), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), [anon_sym_and2] = ACTIONS(2844), [anon_sym_xor2] = ACTIONS(2844), [anon_sym_or2] = ACTIONS(2844), @@ -133353,12 +134449,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2844), [anon_sym_like2] = ACTIONS(2844), [anon_sym_not_DASHlike2] = ACTIONS(2844), - [anon_sym_STAR_STAR2] = ACTIONS(2844), - [anon_sym_PLUS_PLUS2] = ACTIONS(2844), - [anon_sym_SLASH2] = ACTIONS(2846), - [anon_sym_mod2] = ACTIONS(2844), - [anon_sym_SLASH_SLASH2] = ACTIONS(2844), - [anon_sym_PLUS2] = ACTIONS(2846), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), [anon_sym_bit_DASHshl2] = ACTIONS(2844), [anon_sym_bit_DASHshr2] = ACTIONS(2844), [anon_sym_bit_DASHand2] = ACTIONS(2844), @@ -133382,622 +134478,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1143)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1143), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1144)] = { - [sym__expr_parenthesized_immediate] = STATE(5283), - [sym_comment] = STATE(1144), - [ts_builtin_sym_end] = ACTIONS(2281), - [anon_sym_in] = ACTIONS(2281), - [sym__newline] = ACTIONS(2281), - [anon_sym_SEMI] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2281), - [anon_sym_err_GT_PIPE] = ACTIONS(2281), - [anon_sym_out_GT_PIPE] = ACTIONS(2281), - [anon_sym_e_GT_PIPE] = ACTIONS(2281), - [anon_sym_o_GT_PIPE] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2281), - [anon_sym_GT2] = ACTIONS(2283), - [anon_sym_DASH2] = ACTIONS(2281), - [anon_sym_STAR2] = ACTIONS(2283), - [anon_sym_and2] = ACTIONS(2281), - [anon_sym_xor2] = ACTIONS(2281), - [anon_sym_or2] = ACTIONS(2281), - [anon_sym_not_DASHin2] = ACTIONS(2281), - [anon_sym_has2] = ACTIONS(2281), - [anon_sym_not_DASHhas2] = ACTIONS(2281), - [anon_sym_starts_DASHwith2] = ACTIONS(2281), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2281), - [anon_sym_ends_DASHwith2] = ACTIONS(2281), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2281), - [anon_sym_EQ_EQ2] = ACTIONS(2281), - [anon_sym_BANG_EQ2] = ACTIONS(2281), - [anon_sym_LT2] = ACTIONS(2283), - [anon_sym_LT_EQ2] = ACTIONS(2281), - [anon_sym_GT_EQ2] = ACTIONS(2281), - [anon_sym_EQ_TILDE2] = ACTIONS(2281), - [anon_sym_BANG_TILDE2] = ACTIONS(2281), - [anon_sym_like2] = ACTIONS(2281), - [anon_sym_not_DASHlike2] = ACTIONS(2281), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_STAR_STAR2] = ACTIONS(2281), - [anon_sym_PLUS_PLUS2] = ACTIONS(2281), - [anon_sym_SLASH2] = ACTIONS(2283), - [anon_sym_mod2] = ACTIONS(2281), - [anon_sym_SLASH_SLASH2] = ACTIONS(2281), - [anon_sym_PLUS2] = ACTIONS(2283), - [anon_sym_bit_DASHshl2] = ACTIONS(2281), - [anon_sym_bit_DASHshr2] = ACTIONS(2281), - [anon_sym_bit_DASHand2] = ACTIONS(2281), - [anon_sym_bit_DASHxor2] = ACTIONS(2281), - [anon_sym_bit_DASHor2] = ACTIONS(2281), - [anon_sym_err_GT] = ACTIONS(2283), - [anon_sym_out_GT] = ACTIONS(2283), - [anon_sym_e_GT] = ACTIONS(2283), - [anon_sym_o_GT] = ACTIONS(2283), - [anon_sym_err_PLUSout_GT] = ACTIONS(2283), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2283), - [anon_sym_o_PLUSe_GT] = ACTIONS(2283), - [anon_sym_e_PLUSo_GT] = ACTIONS(2283), - [anon_sym_err_GT_GT] = ACTIONS(2281), - [anon_sym_out_GT_GT] = ACTIONS(2281), - [anon_sym_e_GT_GT] = ACTIONS(2281), - [anon_sym_o_GT_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2281), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1145)] = { - [aux_sym__repeat_newline] = STATE(4464), - [sym__match_pattern_expression] = STATE(4534), - [sym__match_pattern_value] = STATE(4712), - [sym__match_pattern_list_body] = STATE(4677), - [sym__match_pattern_list] = STATE(4713), - [sym__match_pattern_rest] = STATE(5185), - [sym__match_pattern_record] = STATE(4714), - [sym_expr_parenthesized] = STATE(4000), - [sym_val_range] = STATE(4712), - [sym__val_range] = STATE(5257), - [sym_val_nothing] = STATE(4714), - [sym_val_bool] = STATE(4442), - [sym_val_variable] = STATE(4001), - [sym_val_number] = STATE(4714), - [sym__val_number_decimal] = STATE(3789), - [sym__val_number] = STATE(4612), - [sym_val_duration] = STATE(4714), - [sym_val_filesize] = STATE(4714), - [sym_val_binary] = STATE(4714), - [sym_val_string] = STATE(4714), - [sym__raw_str] = STATE(3776), - [sym__str_double_quotes] = STATE(3776), - [sym__str_single_quotes] = STATE(3776), - [sym__str_back_ticks] = STATE(3776), - [sym_val_list] = STATE(5494), - [sym__table_head] = STATE(3891), - [sym_val_table] = STATE(4714), - [sym__unquoted_in_list] = STATE(4534), - [sym__unquoted_anonymous_prefix] = STATE(5257), - [sym_comment] = STATE(1145), - [aux_sym__types_body_repeat1] = STATE(1423), - [aux_sym_parameter_repeat2] = STATE(4206), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1440), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [anon_sym_null] = ACTIONS(1404), - [aux_sym_cmd_identifier_token3] = ACTIONS(1406), - [aux_sym_cmd_identifier_token4] = ACTIONS(1406), - [aux_sym_cmd_identifier_token5] = ACTIONS(1406), - [sym__newline] = ACTIONS(2762), - [anon_sym_LBRACK] = ACTIONS(2764), - [anon_sym_RBRACK] = ACTIONS(2766), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1416), - [anon_sym_DOLLAR] = ACTIONS(2768), - [anon_sym_LBRACE] = ACTIONS(2770), - [anon_sym_DOT_DOT] = ACTIONS(1422), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1424), - [anon_sym_DOT_DOT_LT] = ACTIONS(1424), - [aux_sym__val_number_decimal_token1] = ACTIONS(1426), - [aux_sym__val_number_decimal_token2] = ACTIONS(1428), - [aux_sym__val_number_decimal_token3] = ACTIONS(1430), - [aux_sym__val_number_decimal_token4] = ACTIONS(1430), - [aux_sym__val_number_token1] = ACTIONS(1432), - [aux_sym__val_number_token2] = ACTIONS(1432), - [aux_sym__val_number_token3] = ACTIONS(1432), - [anon_sym_0b] = ACTIONS(1434), - [anon_sym_0o] = ACTIONS(1436), - [anon_sym_0x] = ACTIONS(1436), - [sym_val_date] = ACTIONS(2772), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1444), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1454), - }, - [STATE(1146)] = { - [aux_sym__repeat_newline] = STATE(1042), - [sym_comment] = STATE(1146), - [anon_sym_in] = ACTIONS(2492), - [sym__newline] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_err_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_GT_PIPE] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_GT2] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_STAR2] = ACTIONS(2494), - [anon_sym_and2] = ACTIONS(2492), - [anon_sym_xor2] = ACTIONS(2492), - [anon_sym_or2] = ACTIONS(2492), - [anon_sym_not_DASHin2] = ACTIONS(2492), - [anon_sym_has2] = ACTIONS(2492), - [anon_sym_not_DASHhas2] = ACTIONS(2492), - [anon_sym_starts_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), - [anon_sym_ends_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), - [anon_sym_EQ_EQ2] = ACTIONS(2492), - [anon_sym_BANG_EQ2] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2494), - [anon_sym_LT_EQ2] = ACTIONS(2492), - [anon_sym_GT_EQ2] = ACTIONS(2492), - [anon_sym_EQ_TILDE2] = ACTIONS(2492), - [anon_sym_BANG_TILDE2] = ACTIONS(2492), - [anon_sym_like2] = ACTIONS(2492), - [anon_sym_not_DASHlike2] = ACTIONS(2492), - [anon_sym_STAR_STAR2] = ACTIONS(2492), - [anon_sym_PLUS_PLUS2] = ACTIONS(2492), - [anon_sym_SLASH2] = ACTIONS(2494), - [anon_sym_mod2] = ACTIONS(2492), - [anon_sym_SLASH_SLASH2] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_bit_DASHshl2] = ACTIONS(2492), - [anon_sym_bit_DASHshr2] = ACTIONS(2492), - [anon_sym_bit_DASHand2] = ACTIONS(2492), - [anon_sym_bit_DASHxor2] = ACTIONS(2492), - [anon_sym_bit_DASHor2] = ACTIONS(2492), - [anon_sym_err_GT] = ACTIONS(2494), - [anon_sym_out_GT] = ACTIONS(2494), - [anon_sym_e_GT] = ACTIONS(2494), - [anon_sym_o_GT] = ACTIONS(2494), - [anon_sym_err_PLUSout_GT] = ACTIONS(2494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), - [anon_sym_o_PLUSe_GT] = ACTIONS(2494), - [anon_sym_e_PLUSo_GT] = ACTIONS(2494), - [anon_sym_err_GT_GT] = ACTIONS(2492), - [anon_sym_out_GT_GT] = ACTIONS(2492), - [anon_sym_e_GT_GT] = ACTIONS(2492), - [anon_sym_o_GT_GT] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1147)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1147), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1148)] = { - [aux_sym__repeat_newline] = STATE(1105), - [sym_comment] = STATE(1148), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1149)] = { - [aux_sym__repeat_newline] = STATE(1143), - [sym_comment] = STATE(1149), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1150)] = { - [aux_sym__repeat_newline] = STATE(1043), - [sym_comment] = STATE(1150), - [anon_sym_in] = ACTIONS(2492), - [sym__newline] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_err_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_GT_PIPE] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_GT2] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_STAR2] = ACTIONS(2494), - [anon_sym_and2] = ACTIONS(2492), - [anon_sym_xor2] = ACTIONS(2492), - [anon_sym_or2] = ACTIONS(2492), - [anon_sym_not_DASHin2] = ACTIONS(2492), - [anon_sym_has2] = ACTIONS(2492), - [anon_sym_not_DASHhas2] = ACTIONS(2492), - [anon_sym_starts_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2492), - [anon_sym_ends_DASHwith2] = ACTIONS(2492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2492), - [anon_sym_EQ_EQ2] = ACTIONS(2492), - [anon_sym_BANG_EQ2] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2494), - [anon_sym_LT_EQ2] = ACTIONS(2492), - [anon_sym_GT_EQ2] = ACTIONS(2492), - [anon_sym_EQ_TILDE2] = ACTIONS(2492), - [anon_sym_BANG_TILDE2] = ACTIONS(2492), - [anon_sym_like2] = ACTIONS(2492), - [anon_sym_not_DASHlike2] = ACTIONS(2492), - [anon_sym_STAR_STAR2] = ACTIONS(2492), - [anon_sym_PLUS_PLUS2] = ACTIONS(2492), - [anon_sym_SLASH2] = ACTIONS(2494), - [anon_sym_mod2] = ACTIONS(2492), - [anon_sym_SLASH_SLASH2] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_bit_DASHshl2] = ACTIONS(2492), - [anon_sym_bit_DASHshr2] = ACTIONS(2492), - [anon_sym_bit_DASHand2] = ACTIONS(2492), - [anon_sym_bit_DASHxor2] = ACTIONS(2492), - [anon_sym_bit_DASHor2] = ACTIONS(2492), - [anon_sym_err_GT] = ACTIONS(2494), - [anon_sym_out_GT] = ACTIONS(2494), - [anon_sym_e_GT] = ACTIONS(2494), - [anon_sym_o_GT] = ACTIONS(2494), - [anon_sym_err_PLUSout_GT] = ACTIONS(2494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2494), - [anon_sym_o_PLUSe_GT] = ACTIONS(2494), - [anon_sym_e_PLUSo_GT] = ACTIONS(2494), - [anon_sym_err_GT_GT] = ACTIONS(2492), - [anon_sym_out_GT_GT] = ACTIONS(2492), - [anon_sym_e_GT_GT] = ACTIONS(2492), - [anon_sym_o_GT_GT] = ACTIONS(2492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1151)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1151), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2792), - [anon_sym_SEMI] = ACTIONS(2792), - [anon_sym_PIPE] = ACTIONS(2792), - [anon_sym_err_GT_PIPE] = ACTIONS(2792), - [anon_sym_out_GT_PIPE] = ACTIONS(2792), - [anon_sym_e_GT_PIPE] = ACTIONS(2792), - [anon_sym_o_GT_PIPE] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2792), - [anon_sym_RPAREN] = ACTIONS(2792), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2794), - [anon_sym_and2] = ACTIONS(2792), - [anon_sym_xor2] = ACTIONS(2792), - [anon_sym_or2] = ACTIONS(2792), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2792), - [anon_sym_BANG_EQ2] = ACTIONS(2792), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2792), - [anon_sym_GT_EQ2] = ACTIONS(2792), - [anon_sym_EQ_TILDE2] = ACTIONS(2792), - [anon_sym_BANG_TILDE2] = ACTIONS(2792), - [anon_sym_like2] = ACTIONS(2792), - [anon_sym_not_DASHlike2] = ACTIONS(2792), - [anon_sym_STAR_STAR2] = ACTIONS(2792), - [anon_sym_PLUS_PLUS2] = ACTIONS(2792), - [anon_sym_SLASH2] = ACTIONS(2794), - [anon_sym_mod2] = ACTIONS(2792), - [anon_sym_SLASH_SLASH2] = ACTIONS(2792), - [anon_sym_PLUS2] = ACTIONS(2794), - [anon_sym_bit_DASHshl2] = ACTIONS(2792), - [anon_sym_bit_DASHshr2] = ACTIONS(2792), - [anon_sym_bit_DASHand2] = ACTIONS(2792), - [anon_sym_bit_DASHxor2] = ACTIONS(2792), - [anon_sym_bit_DASHor2] = ACTIONS(2792), - [anon_sym_err_GT] = ACTIONS(2794), - [anon_sym_out_GT] = ACTIONS(2794), - [anon_sym_e_GT] = ACTIONS(2794), - [anon_sym_o_GT] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT] = ACTIONS(2794), - [anon_sym_err_GT_GT] = ACTIONS(2792), - [anon_sym_out_GT_GT] = ACTIONS(2792), - [anon_sym_e_GT_GT] = ACTIONS(2792), - [anon_sym_o_GT_GT] = ACTIONS(2792), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2792), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2792), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2792), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2792), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1152)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1152), - [anon_sym_in] = ACTIONS(2844), + [1160] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1160), + [anon_sym_in] = ACTIONS(2852), [sym__newline] = ACTIONS(2844), [anon_sym_SEMI] = ACTIONS(2844), [anon_sym_PIPE] = ACTIONS(2844), @@ -134010,38 +134494,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), [anon_sym_RPAREN] = ACTIONS(2844), - [anon_sym_GT2] = ACTIONS(2846), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_GT2] = ACTIONS(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), [anon_sym_and2] = ACTIONS(2844), [anon_sym_xor2] = ACTIONS(2844), [anon_sym_or2] = ACTIONS(2844), - [anon_sym_not_DASHin2] = ACTIONS(2844), - [anon_sym_has2] = ACTIONS(2844), - [anon_sym_not_DASHhas2] = ACTIONS(2844), - [anon_sym_starts_DASHwith2] = ACTIONS(2844), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2844), - [anon_sym_ends_DASHwith2] = ACTIONS(2844), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2844), - [anon_sym_EQ_EQ2] = ACTIONS(2844), - [anon_sym_BANG_EQ2] = ACTIONS(2844), - [anon_sym_LT2] = ACTIONS(2846), - [anon_sym_LT_EQ2] = ACTIONS(2844), - [anon_sym_GT_EQ2] = ACTIONS(2844), - [anon_sym_EQ_TILDE2] = ACTIONS(2844), - [anon_sym_BANG_TILDE2] = ACTIONS(2844), - [anon_sym_like2] = ACTIONS(2844), - [anon_sym_not_DASHlike2] = ACTIONS(2844), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2844), - [anon_sym_bit_DASHxor2] = ACTIONS(2844), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2862), + [anon_sym_BANG_TILDE2] = ACTIONS(2862), + [anon_sym_like2] = ACTIONS(2862), + [anon_sym_not_DASHlike2] = ACTIONS(2862), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2923), [anon_sym_bit_DASHor2] = ACTIONS(2844), [anon_sym_err_GT] = ACTIONS(2846), [anon_sym_out_GT] = ACTIONS(2846), @@ -134061,547 +134545,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1153)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1153), - [anon_sym_in] = ACTIONS(2858), - [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(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2862), - [anon_sym_xor2] = ACTIONS(2788), - [anon_sym_or2] = ACTIONS(2788), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2866), - [anon_sym_BANG_TILDE2] = ACTIONS(2866), - [anon_sym_like2] = ACTIONS(2866), - [anon_sym_not_DASHlike2] = ACTIONS(2866), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2870), - [anon_sym_bit_DASHxor2] = ACTIONS(2872), - [anon_sym_bit_DASHor2] = ACTIONS(2874), - [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(1154)] = { - [aux_sym__repeat_newline] = STATE(1180), - [sym_comment] = STATE(1154), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2878), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2889), - [anon_sym_BANG_TILDE2] = ACTIONS(2889), - [anon_sym_like2] = ACTIONS(2889), - [anon_sym_not_DASHlike2] = ACTIONS(2889), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1155)] = { - [aux_sym__repeat_newline] = STATE(1191), - [sym_comment] = STATE(1155), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2903), - [anon_sym_SEMI] = ACTIONS(2782), - [anon_sym_PIPE] = ACTIONS(2782), - [anon_sym_err_GT_PIPE] = ACTIONS(2782), - [anon_sym_out_GT_PIPE] = ACTIONS(2782), - [anon_sym_e_GT_PIPE] = ACTIONS(2782), - [anon_sym_o_GT_PIPE] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), - [anon_sym_RPAREN] = ACTIONS(2782), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2905), - [anon_sym_xor2] = ACTIONS(2907), - [anon_sym_or2] = ACTIONS(2782), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2889), - [anon_sym_BANG_TILDE2] = ACTIONS(2889), - [anon_sym_like2] = ACTIONS(2889), - [anon_sym_not_DASHlike2] = ACTIONS(2889), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2909), - [anon_sym_err_GT] = ACTIONS(2784), - [anon_sym_out_GT] = ACTIONS(2784), - [anon_sym_e_GT] = ACTIONS(2784), - [anon_sym_o_GT] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT] = ACTIONS(2784), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1156)] = { - [aux_sym__repeat_newline] = STATE(1280), - [sym_comment] = STATE(1156), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2878), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2889), - [anon_sym_BANG_TILDE2] = ACTIONS(2889), - [anon_sym_like2] = ACTIONS(2889), - [anon_sym_not_DASHlike2] = ACTIONS(2889), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2909), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [1161] = { + [sym_comment] = STATE(1161), + [anon_sym_in] = ACTIONS(2901), + [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(2903), + [anon_sym_DASH2] = ACTIONS(2905), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_STAR2] = ACTIONS(2907), + [anon_sym_and2] = ACTIONS(2624), + [anon_sym_xor2] = ACTIONS(2624), + [anon_sym_or2] = ACTIONS(2624), + [anon_sym_not_DASHin2] = ACTIONS(2901), + [anon_sym_has2] = ACTIONS(2901), + [anon_sym_not_DASHhas2] = ACTIONS(2901), + [anon_sym_starts_DASHwith2] = ACTIONS(2901), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2901), + [anon_sym_ends_DASHwith2] = ACTIONS(2901), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2901), + [anon_sym_EQ_EQ2] = ACTIONS(2909), + [anon_sym_BANG_EQ2] = ACTIONS(2909), + [anon_sym_LT2] = ACTIONS(2903), + [anon_sym_LT_EQ2] = ACTIONS(2909), + [anon_sym_GT_EQ2] = ACTIONS(2909), + [anon_sym_EQ_TILDE2] = ACTIONS(2911), + [anon_sym_BANG_TILDE2] = ACTIONS(2911), + [anon_sym_like2] = ACTIONS(2911), + [anon_sym_not_DASHlike2] = ACTIONS(2911), + [anon_sym_STAR_STAR2] = ACTIONS(2913), + [anon_sym_PLUS_PLUS2] = ACTIONS(2913), + [anon_sym_SLASH2] = ACTIONS(2907), + [anon_sym_mod2] = ACTIONS(2915), + [anon_sym_SLASH_SLASH2] = ACTIONS(2915), + [anon_sym_PLUS2] = ACTIONS(2917), + [anon_sym_bit_DASHshl2] = ACTIONS(2919), + [anon_sym_bit_DASHshr2] = ACTIONS(2919), + [anon_sym_bit_DASHand2] = ACTIONS(2624), + [anon_sym_bit_DASHxor2] = ACTIONS(2624), + [anon_sym_bit_DASHor2] = ACTIONS(2624), + [anon_sym_err_GT] = ACTIONS(2626), + [anon_sym_out_GT] = ACTIONS(2626), + [anon_sym_e_GT] = ACTIONS(2626), + [anon_sym_o_GT] = ACTIONS(2626), + [anon_sym_err_PLUSout_GT] = ACTIONS(2626), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2626), + [anon_sym_o_PLUSe_GT] = ACTIONS(2626), + [anon_sym_e_PLUSo_GT] = ACTIONS(2626), + [anon_sym_err_GT_GT] = ACTIONS(2624), + [anon_sym_out_GT_GT] = ACTIONS(2624), + [anon_sym_e_GT_GT] = ACTIONS(2624), + [anon_sym_o_GT_GT] = ACTIONS(2624), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2624), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2624), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2624), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2624), + [anon_sym_POUND] = ACTIONS(3), + }, + [1162] = { + [sym__ctrl_match_body] = STATE(5532), + [sym_match_arm] = STATE(4907), + [sym_default_arm] = STATE(4907), + [sym_match_pattern] = STATE(5353), + [sym__match_pattern] = STATE(4158), + [sym__match_pattern_expression] = STATE(4626), + [sym__match_pattern_value] = STATE(4598), + [sym__match_pattern_list] = STATE(4599), + [sym__match_pattern_record] = STATE(4600), + [sym_expr_parenthesized] = STATE(3916), + [sym_val_range] = STATE(4598), + [sym__val_range] = STATE(5111), + [sym_val_nothing] = STATE(4600), + [sym_val_bool] = STATE(4244), + [sym_val_variable] = STATE(3915), + [sym_val_number] = STATE(4600), + [sym__val_number_decimal] = STATE(3677), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(4600), + [sym_val_filesize] = STATE(4600), + [sym_val_binary] = STATE(4600), + [sym_val_string] = STATE(4600), + [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(4600), + [sym_unquoted] = STATE(4603), + [sym__unquoted_anonymous_prefix] = STATE(5111), + [sym_comment] = STATE(1162), + [aux_sym__types_body_repeat1] = STATE(1381), + [aux_sym__ctrl_match_body_repeat1] = STATE(1401), + [anon_sym_true] = ACTIONS(2925), + [anon_sym_false] = ACTIONS(2925), + [anon_sym_null] = ACTIONS(2927), + [aux_sym_cmd_identifier_token3] = ACTIONS(2929), + [aux_sym_cmd_identifier_token4] = ACTIONS(2929), + [aux_sym_cmd_identifier_token5] = ACTIONS(2929), + [sym__newline] = ACTIONS(2931), + [anon_sym_LBRACK] = ACTIONS(2933), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_DOLLAR] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_RBRACE] = ACTIONS(2939), + [anon_sym__] = ACTIONS(2941), + [anon_sym_DOT_DOT] = ACTIONS(2943), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2945), + [anon_sym_DOT_DOT_LT] = ACTIONS(2945), + [aux_sym__val_number_decimal_token1] = ACTIONS(2947), + [aux_sym__val_number_decimal_token2] = ACTIONS(2949), + [aux_sym__val_number_decimal_token3] = ACTIONS(2951), + [aux_sym__val_number_decimal_token4] = ACTIONS(2951), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1768), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1770), }, - [STATE(1157)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1157), - [anon_sym_in] = ACTIONS(2858), - [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(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2862), - [anon_sym_xor2] = ACTIONS(2911), - [anon_sym_or2] = ACTIONS(2788), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2866), - [anon_sym_BANG_TILDE2] = ACTIONS(2866), - [anon_sym_like2] = ACTIONS(2866), - [anon_sym_not_DASHlike2] = ACTIONS(2866), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2870), - [anon_sym_bit_DASHxor2] = ACTIONS(2872), - [anon_sym_bit_DASHor2] = ACTIONS(2874), - [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(1158)] = { + [1163] = { [aux_sym__repeat_newline] = STATE(1257), - [sym_comment] = STATE(1158), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2878), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1159)] = { - [aux_sym__repeat_newline] = STATE(1192), - [sym_comment] = STATE(1159), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2913), - [anon_sym_SEMI] = ACTIONS(2782), - [anon_sym_PIPE] = ACTIONS(2782), - [anon_sym_err_GT_PIPE] = ACTIONS(2782), - [anon_sym_out_GT_PIPE] = ACTIONS(2782), - [anon_sym_e_GT_PIPE] = ACTIONS(2782), - [anon_sym_o_GT_PIPE] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), - [anon_sym_RPAREN] = ACTIONS(2782), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2782), - [anon_sym_xor2] = ACTIONS(2782), - [anon_sym_or2] = ACTIONS(2782), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2782), - [anon_sym_BANG_TILDE2] = ACTIONS(2782), - [anon_sym_like2] = ACTIONS(2782), - [anon_sym_not_DASHlike2] = ACTIONS(2782), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2782), - [anon_sym_bit_DASHxor2] = ACTIONS(2782), - [anon_sym_bit_DASHor2] = ACTIONS(2782), - [anon_sym_err_GT] = ACTIONS(2784), - [anon_sym_out_GT] = ACTIONS(2784), - [anon_sym_e_GT] = ACTIONS(2784), - [anon_sym_o_GT] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT] = ACTIONS(2784), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1160)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1160), - [anon_sym_in] = ACTIONS(2858), - [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(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2788), - [anon_sym_xor2] = ACTIONS(2788), - [anon_sym_or2] = ACTIONS(2788), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [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(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [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(1161)] = { - [aux_sym__repeat_newline] = STATE(1233), - [sym_comment] = STATE(1161), + [sym_comment] = STATE(1163), + [anon_sym_in] = ACTIONS(2834), + [sym__newline] = ACTIONS(2955), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_err_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_GT_PIPE] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_GT2] = ACTIONS(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2834), + [anon_sym_xor2] = ACTIONS(2834), + [anon_sym_or2] = ACTIONS(2834), + [anon_sym_not_DASHin2] = ACTIONS(2834), + [anon_sym_has2] = ACTIONS(2834), + [anon_sym_not_DASHhas2] = ACTIONS(2834), + [anon_sym_starts_DASHwith2] = ACTIONS(2834), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2834), + [anon_sym_ends_DASHwith2] = ACTIONS(2834), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2834), + [anon_sym_EQ_EQ2] = ACTIONS(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [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(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2834), + [anon_sym_bit_DASHxor2] = ACTIONS(2834), + [anon_sym_bit_DASHor2] = ACTIONS(2834), + [anon_sym_err_GT] = ACTIONS(2836), + [anon_sym_out_GT] = ACTIONS(2836), + [anon_sym_e_GT] = ACTIONS(2836), + [anon_sym_o_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT] = ACTIONS(2836), + [anon_sym_err_GT_GT] = ACTIONS(2834), + [anon_sym_out_GT_GT] = ACTIONS(2834), + [anon_sym_e_GT_GT] = ACTIONS(2834), + [anon_sym_o_GT_GT] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(3), + }, + [1164] = { + [aux_sym__repeat_newline] = STATE(1242), + [sym_comment] = STATE(1164), [anon_sym_in] = ACTIONS(2840), - [sym__newline] = ACTIONS(2916), + [sym__newline] = ACTIONS(2876), [anon_sym_SEMI] = ACTIONS(2840), [anon_sym_PIPE] = ACTIONS(2840), [anon_sym_err_GT_PIPE] = ACTIONS(2840), @@ -134614,8 +134763,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), [anon_sym_RPAREN] = ACTIONS(2840), [anon_sym_GT2] = ACTIONS(2842), - [anon_sym_DASH2] = ACTIONS(2840), - [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), [anon_sym_and2] = ACTIONS(2840), [anon_sym_xor2] = ACTIONS(2840), [anon_sym_or2] = ACTIONS(2840), @@ -134635,12 +134784,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2840), [anon_sym_like2] = ACTIONS(2840), [anon_sym_not_DASHlike2] = ACTIONS(2840), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2842), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), [anon_sym_bit_DASHshl2] = ACTIONS(2840), [anon_sym_bit_DASHshr2] = ACTIONS(2840), [anon_sym_bit_DASHand2] = ACTIONS(2840), @@ -134664,1150 +134813,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1162)] = { - [sym_comment] = STATE(1162), - [aux_sym_cmd_identifier_token2] = ACTIONS(2786), - [anon_sym_in] = ACTIONS(2578), - [sym__newline] = ACTIONS(2576), - [anon_sym_SEMI] = ACTIONS(2576), - [anon_sym_PIPE] = ACTIONS(2576), - [anon_sym_err_GT_PIPE] = ACTIONS(2576), - [anon_sym_out_GT_PIPE] = ACTIONS(2576), - [anon_sym_e_GT_PIPE] = ACTIONS(2576), - [anon_sym_o_GT_PIPE] = ACTIONS(2576), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2576), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2576), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2576), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2576), - [anon_sym_GT2] = ACTIONS(2578), - [anon_sym_DASH2] = ACTIONS(2578), - [anon_sym_RBRACE] = ACTIONS(2576), - [anon_sym_STAR2] = ACTIONS(2578), - [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(2576), - [anon_sym_BANG_EQ2] = ACTIONS(2576), - [anon_sym_LT2] = ACTIONS(2578), - [anon_sym_LT_EQ2] = ACTIONS(2576), - [anon_sym_GT_EQ2] = ACTIONS(2576), - [anon_sym_EQ_TILDE2] = ACTIONS(2576), - [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(2578), - [anon_sym_mod2] = ACTIONS(2578), - [anon_sym_SLASH_SLASH2] = ACTIONS(2578), - [anon_sym_PLUS2] = ACTIONS(2578), - [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(2578), - [anon_sym_out_GT] = ACTIONS(2578), - [anon_sym_e_GT] = ACTIONS(2578), - [anon_sym_o_GT] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT] = ACTIONS(2578), - [anon_sym_err_GT_GT] = ACTIONS(2576), - [anon_sym_out_GT_GT] = ACTIONS(2576), - [anon_sym_e_GT_GT] = ACTIONS(2576), - [anon_sym_o_GT_GT] = ACTIONS(2576), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2576), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2576), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2576), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2576), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(1163)] = { - [sym_comment] = STATE(1163), - [aux_sym_cmd_identifier_token2] = ACTIONS(2786), - [anon_sym_in] = ACTIONS(2606), - [sym__newline] = ACTIONS(2604), - [anon_sym_SEMI] = ACTIONS(2604), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_err_GT_PIPE] = ACTIONS(2604), - [anon_sym_out_GT_PIPE] = ACTIONS(2604), - [anon_sym_e_GT_PIPE] = ACTIONS(2604), - [anon_sym_o_GT_PIPE] = ACTIONS(2604), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2604), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2604), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2604), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2604), - [anon_sym_GT2] = ACTIONS(2606), - [anon_sym_DASH2] = ACTIONS(2606), - [anon_sym_RBRACE] = ACTIONS(2604), - [anon_sym_STAR2] = ACTIONS(2606), - [anon_sym_and2] = ACTIONS(2606), - [anon_sym_xor2] = ACTIONS(2606), - [anon_sym_or2] = ACTIONS(2606), - [anon_sym_not_DASHin2] = ACTIONS(2606), - [anon_sym_has2] = ACTIONS(2606), - [anon_sym_not_DASHhas2] = ACTIONS(2606), - [anon_sym_starts_DASHwith2] = ACTIONS(2606), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2606), - [anon_sym_ends_DASHwith2] = ACTIONS(2606), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2606), - [anon_sym_EQ_EQ2] = ACTIONS(2604), - [anon_sym_BANG_EQ2] = ACTIONS(2604), - [anon_sym_LT2] = ACTIONS(2606), - [anon_sym_LT_EQ2] = ACTIONS(2604), - [anon_sym_GT_EQ2] = ACTIONS(2604), - [anon_sym_EQ_TILDE2] = ACTIONS(2604), - [anon_sym_BANG_TILDE2] = ACTIONS(2606), - [anon_sym_like2] = ACTIONS(2606), - [anon_sym_not_DASHlike2] = ACTIONS(2606), - [anon_sym_STAR_STAR2] = ACTIONS(2606), - [anon_sym_PLUS_PLUS2] = ACTIONS(2606), - [anon_sym_SLASH2] = ACTIONS(2606), - [anon_sym_mod2] = ACTIONS(2606), - [anon_sym_SLASH_SLASH2] = ACTIONS(2606), - [anon_sym_PLUS2] = ACTIONS(2606), - [anon_sym_bit_DASHshl2] = ACTIONS(2606), - [anon_sym_bit_DASHshr2] = ACTIONS(2606), - [anon_sym_bit_DASHand2] = ACTIONS(2606), - [anon_sym_bit_DASHxor2] = ACTIONS(2606), - [anon_sym_bit_DASHor2] = ACTIONS(2606), - [anon_sym_err_GT] = ACTIONS(2606), - [anon_sym_out_GT] = ACTIONS(2606), - [anon_sym_e_GT] = ACTIONS(2606), - [anon_sym_o_GT] = ACTIONS(2606), - [anon_sym_err_PLUSout_GT] = ACTIONS(2606), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2606), - [anon_sym_o_PLUSe_GT] = ACTIONS(2606), - [anon_sym_e_PLUSo_GT] = ACTIONS(2606), - [anon_sym_err_GT_GT] = ACTIONS(2604), - [anon_sym_out_GT_GT] = ACTIONS(2604), - [anon_sym_e_GT_GT] = ACTIONS(2604), - [anon_sym_o_GT_GT] = ACTIONS(2604), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2604), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2604), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2604), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2604), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(1164)] = { - [sym_comment] = STATE(1164), - [ts_builtin_sym_end] = ACTIONS(2348), - [anon_sym_in] = ACTIONS(2348), - [sym__newline] = ACTIONS(2348), - [anon_sym_SEMI] = ACTIONS(2348), - [anon_sym_PIPE] = ACTIONS(2348), - [anon_sym_err_GT_PIPE] = ACTIONS(2348), - [anon_sym_out_GT_PIPE] = ACTIONS(2348), - [anon_sym_e_GT_PIPE] = ACTIONS(2348), - [anon_sym_o_GT_PIPE] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2348), - [anon_sym_GT2] = ACTIONS(2350), - [anon_sym_DASH2] = ACTIONS(2348), - [anon_sym_STAR2] = ACTIONS(2350), - [anon_sym_and2] = ACTIONS(2348), - [anon_sym_xor2] = ACTIONS(2348), - [anon_sym_or2] = ACTIONS(2348), - [anon_sym_not_DASHin2] = ACTIONS(2348), - [anon_sym_has2] = ACTIONS(2348), - [anon_sym_not_DASHhas2] = ACTIONS(2348), - [anon_sym_starts_DASHwith2] = ACTIONS(2348), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2348), - [anon_sym_ends_DASHwith2] = ACTIONS(2348), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2348), - [anon_sym_EQ_EQ2] = ACTIONS(2348), - [anon_sym_BANG_EQ2] = ACTIONS(2348), - [anon_sym_LT2] = ACTIONS(2350), - [anon_sym_LT_EQ2] = ACTIONS(2348), - [anon_sym_GT_EQ2] = ACTIONS(2348), - [anon_sym_EQ_TILDE2] = ACTIONS(2348), - [anon_sym_BANG_TILDE2] = ACTIONS(2348), - [anon_sym_like2] = ACTIONS(2348), - [anon_sym_not_DASHlike2] = ACTIONS(2348), - [anon_sym_LPAREN2] = ACTIONS(2348), - [anon_sym_STAR_STAR2] = ACTIONS(2348), - [anon_sym_PLUS_PLUS2] = ACTIONS(2348), - [anon_sym_SLASH2] = ACTIONS(2350), - [anon_sym_mod2] = ACTIONS(2348), - [anon_sym_SLASH_SLASH2] = ACTIONS(2348), - [anon_sym_PLUS2] = ACTIONS(2350), - [anon_sym_bit_DASHshl2] = ACTIONS(2348), - [anon_sym_bit_DASHshr2] = ACTIONS(2348), - [anon_sym_bit_DASHand2] = ACTIONS(2348), - [anon_sym_bit_DASHxor2] = ACTIONS(2348), - [anon_sym_bit_DASHor2] = ACTIONS(2348), - [anon_sym_err_GT] = ACTIONS(2350), - [anon_sym_out_GT] = ACTIONS(2350), - [anon_sym_e_GT] = ACTIONS(2350), - [anon_sym_o_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT] = ACTIONS(2350), - [anon_sym_err_GT_GT] = ACTIONS(2348), - [anon_sym_out_GT_GT] = ACTIONS(2348), - [anon_sym_e_GT_GT] = ACTIONS(2348), - [anon_sym_o_GT_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2348), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1165)] = { + [1165] = { + [sym__ctrl_match_body] = STATE(5346), + [sym_match_arm] = STATE(4907), + [sym_default_arm] = STATE(4907), + [sym_match_pattern] = STATE(5353), + [sym__match_pattern] = STATE(4158), + [sym__match_pattern_expression] = STATE(4626), + [sym__match_pattern_value] = STATE(4598), + [sym__match_pattern_list] = STATE(4599), + [sym__match_pattern_record] = STATE(4600), + [sym_expr_parenthesized] = STATE(3916), + [sym_val_range] = STATE(4598), + [sym__val_range] = STATE(5111), + [sym_val_nothing] = STATE(4600), + [sym_val_bool] = STATE(4244), + [sym_val_variable] = STATE(3915), + [sym_val_number] = STATE(4600), + [sym__val_number_decimal] = STATE(3677), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(4600), + [sym_val_filesize] = STATE(4600), + [sym_val_binary] = STATE(4600), + [sym_val_string] = STATE(4600), + [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(4600), + [sym_unquoted] = STATE(4603), + [sym__unquoted_anonymous_prefix] = STATE(5111), [sym_comment] = STATE(1165), - [anon_sym_in] = ACTIONS(1738), - [sym__newline] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_err_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_GT_PIPE] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), - [anon_sym_GT2] = ACTIONS(1616), - [anon_sym_DASH2] = ACTIONS(1738), - [anon_sym_RBRACE] = ACTIONS(1738), - [anon_sym_STAR2] = ACTIONS(1616), - [anon_sym_and2] = ACTIONS(1738), - [anon_sym_xor2] = ACTIONS(1738), - [anon_sym_or2] = ACTIONS(1738), - [anon_sym_not_DASHin2] = ACTIONS(1738), - [anon_sym_has2] = ACTIONS(1738), - [anon_sym_not_DASHhas2] = ACTIONS(1738), - [anon_sym_starts_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), - [anon_sym_ends_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), - [anon_sym_EQ_EQ2] = ACTIONS(1738), - [anon_sym_BANG_EQ2] = ACTIONS(1738), - [anon_sym_LT2] = ACTIONS(1616), - [anon_sym_LT_EQ2] = ACTIONS(1738), - [anon_sym_GT_EQ2] = ACTIONS(1738), - [anon_sym_EQ_TILDE2] = ACTIONS(1738), - [anon_sym_BANG_TILDE2] = ACTIONS(1738), - [anon_sym_like2] = ACTIONS(1738), - [anon_sym_not_DASHlike2] = ACTIONS(1738), - [anon_sym_STAR_STAR2] = ACTIONS(1738), - [anon_sym_PLUS_PLUS2] = ACTIONS(1738), - [anon_sym_SLASH2] = ACTIONS(1616), - [anon_sym_mod2] = ACTIONS(1738), - [anon_sym_SLASH_SLASH2] = ACTIONS(1738), - [anon_sym_PLUS2] = ACTIONS(1616), - [anon_sym_bit_DASHshl2] = ACTIONS(1738), - [anon_sym_bit_DASHshr2] = ACTIONS(1738), - [anon_sym_bit_DASHand2] = ACTIONS(1738), - [anon_sym_bit_DASHxor2] = ACTIONS(1738), - [anon_sym_bit_DASHor2] = ACTIONS(1738), - [anon_sym_COLON2] = ACTIONS(1740), - [anon_sym_err_GT] = ACTIONS(1616), - [anon_sym_out_GT] = ACTIONS(1616), - [anon_sym_e_GT] = ACTIONS(1616), - [anon_sym_o_GT] = ACTIONS(1616), - [anon_sym_err_PLUSout_GT] = ACTIONS(1616), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), - [anon_sym_o_PLUSe_GT] = ACTIONS(1616), - [anon_sym_e_PLUSo_GT] = ACTIONS(1616), - [anon_sym_err_GT_GT] = ACTIONS(1738), - [anon_sym_out_GT_GT] = ACTIONS(1738), - [anon_sym_e_GT_GT] = ACTIONS(1738), - [anon_sym_o_GT_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1166)] = { - [aux_sym__repeat_newline] = STATE(1193), - [sym_comment] = STATE(1166), - [anon_sym_in] = ACTIONS(2782), - [sym__newline] = ACTIONS(2913), - [anon_sym_SEMI] = ACTIONS(2782), - [anon_sym_PIPE] = ACTIONS(2782), - [anon_sym_err_GT_PIPE] = ACTIONS(2782), - [anon_sym_out_GT_PIPE] = ACTIONS(2782), - [anon_sym_e_GT_PIPE] = ACTIONS(2782), - [anon_sym_o_GT_PIPE] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), - [anon_sym_RPAREN] = ACTIONS(2782), - [anon_sym_GT2] = ACTIONS(2784), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2782), - [anon_sym_xor2] = ACTIONS(2782), - [anon_sym_or2] = ACTIONS(2782), - [anon_sym_not_DASHin2] = ACTIONS(2782), - [anon_sym_has2] = ACTIONS(2782), - [anon_sym_not_DASHhas2] = ACTIONS(2782), - [anon_sym_starts_DASHwith2] = ACTIONS(2782), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2782), - [anon_sym_ends_DASHwith2] = ACTIONS(2782), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2782), - [anon_sym_EQ_EQ2] = ACTIONS(2782), - [anon_sym_BANG_EQ2] = ACTIONS(2782), - [anon_sym_LT2] = ACTIONS(2784), - [anon_sym_LT_EQ2] = ACTIONS(2782), - [anon_sym_GT_EQ2] = ACTIONS(2782), - [anon_sym_EQ_TILDE2] = ACTIONS(2782), - [anon_sym_BANG_TILDE2] = ACTIONS(2782), - [anon_sym_like2] = ACTIONS(2782), - [anon_sym_not_DASHlike2] = ACTIONS(2782), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2782), - [anon_sym_bit_DASHshr2] = ACTIONS(2782), - [anon_sym_bit_DASHand2] = ACTIONS(2782), - [anon_sym_bit_DASHxor2] = ACTIONS(2782), - [anon_sym_bit_DASHor2] = ACTIONS(2782), - [anon_sym_err_GT] = ACTIONS(2784), - [anon_sym_out_GT] = ACTIONS(2784), - [anon_sym_e_GT] = ACTIONS(2784), - [anon_sym_o_GT] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT] = ACTIONS(2784), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1167)] = { - [sym_comment] = STATE(1167), - [anon_sym_in] = ACTIONS(2477), - [sym__newline] = ACTIONS(2479), - [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(2477), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR2] = ACTIONS(2484), - [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(2484), - [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(2484), - [anon_sym_mod2] = ACTIONS(2477), - [anon_sym_SLASH_SLASH2] = ACTIONS(2477), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2477), - [anon_sym_bit_DASHshr2] = ACTIONS(2477), - [anon_sym_bit_DASHand2] = ACTIONS(2477), - [anon_sym_bit_DASHxor2] = ACTIONS(2477), - [anon_sym_bit_DASHor2] = ACTIONS(2477), - [anon_sym_err_GT] = ACTIONS(2486), - [anon_sym_out_GT] = ACTIONS(2486), - [anon_sym_e_GT] = ACTIONS(2486), - [anon_sym_o_GT] = ACTIONS(2486), - [anon_sym_err_PLUSout_GT] = ACTIONS(2486), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2486), - [anon_sym_o_PLUSe_GT] = ACTIONS(2486), - [anon_sym_e_PLUSo_GT] = ACTIONS(2486), - [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(1168)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1168), - [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(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [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(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [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_POUND] = ACTIONS(3), - }, - [STATE(1169)] = { - [sym_comment] = STATE(1169), - [ts_builtin_sym_end] = ACTIONS(2588), - [anon_sym_finally] = ACTIONS(2588), - [anon_sym_in] = ACTIONS(2588), - [sym__newline] = ACTIONS(2588), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_PIPE] = ACTIONS(2588), - [anon_sym_err_GT_PIPE] = ACTIONS(2588), - [anon_sym_out_GT_PIPE] = ACTIONS(2588), - [anon_sym_e_GT_PIPE] = ACTIONS(2588), - [anon_sym_o_GT_PIPE] = ACTIONS(2588), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2588), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2588), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2588), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2588), - [anon_sym_GT2] = ACTIONS(2590), - [anon_sym_DASH2] = ACTIONS(2588), - [anon_sym_STAR2] = ACTIONS(2590), - [anon_sym_and2] = ACTIONS(2588), - [anon_sym_xor2] = ACTIONS(2588), - [anon_sym_or2] = ACTIONS(2588), - [anon_sym_not_DASHin2] = ACTIONS(2588), - [anon_sym_has2] = ACTIONS(2588), - [anon_sym_not_DASHhas2] = ACTIONS(2588), - [anon_sym_starts_DASHwith2] = ACTIONS(2588), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2588), - [anon_sym_ends_DASHwith2] = ACTIONS(2588), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2588), - [anon_sym_EQ_EQ2] = ACTIONS(2588), - [anon_sym_BANG_EQ2] = ACTIONS(2588), - [anon_sym_LT2] = ACTIONS(2590), - [anon_sym_LT_EQ2] = ACTIONS(2588), - [anon_sym_GT_EQ2] = ACTIONS(2588), - [anon_sym_EQ_TILDE2] = ACTIONS(2588), - [anon_sym_BANG_TILDE2] = ACTIONS(2588), - [anon_sym_like2] = ACTIONS(2588), - [anon_sym_not_DASHlike2] = ACTIONS(2588), - [anon_sym_STAR_STAR2] = ACTIONS(2588), - [anon_sym_PLUS_PLUS2] = ACTIONS(2588), - [anon_sym_SLASH2] = ACTIONS(2590), - [anon_sym_mod2] = ACTIONS(2588), - [anon_sym_SLASH_SLASH2] = ACTIONS(2588), - [anon_sym_PLUS2] = ACTIONS(2590), - [anon_sym_bit_DASHshl2] = ACTIONS(2588), - [anon_sym_bit_DASHshr2] = ACTIONS(2588), - [anon_sym_bit_DASHand2] = ACTIONS(2588), - [anon_sym_bit_DASHxor2] = ACTIONS(2588), - [anon_sym_bit_DASHor2] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2588), - [anon_sym_out_GT_GT] = ACTIONS(2588), - [anon_sym_e_GT_GT] = ACTIONS(2588), - [anon_sym_o_GT_GT] = ACTIONS(2588), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2588), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2588), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2588), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2588), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1170)] = { - [aux_sym__repeat_newline] = STATE(1194), - [sym_comment] = STATE(1170), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2913), - [anon_sym_SEMI] = ACTIONS(2782), - [anon_sym_PIPE] = ACTIONS(2782), - [anon_sym_err_GT_PIPE] = ACTIONS(2782), - [anon_sym_out_GT_PIPE] = ACTIONS(2782), - [anon_sym_e_GT_PIPE] = ACTIONS(2782), - [anon_sym_o_GT_PIPE] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), - [anon_sym_RPAREN] = ACTIONS(2782), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2782), - [anon_sym_xor2] = ACTIONS(2782), - [anon_sym_or2] = ACTIONS(2782), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2889), - [anon_sym_BANG_TILDE2] = ACTIONS(2889), - [anon_sym_like2] = ACTIONS(2889), - [anon_sym_not_DASHlike2] = ACTIONS(2889), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2782), - [anon_sym_bit_DASHxor2] = ACTIONS(2782), - [anon_sym_bit_DASHor2] = ACTIONS(2782), - [anon_sym_err_GT] = ACTIONS(2784), - [anon_sym_out_GT] = ACTIONS(2784), - [anon_sym_e_GT] = ACTIONS(2784), - [anon_sym_o_GT] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT] = ACTIONS(2784), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1171)] = { - [sym_comment] = STATE(1171), - [anon_sym_in] = ACTIONS(2700), - [sym__newline] = ACTIONS(2700), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_err_GT_PIPE] = ACTIONS(2700), - [anon_sym_out_GT_PIPE] = ACTIONS(2700), - [anon_sym_e_GT_PIPE] = ACTIONS(2700), - [anon_sym_o_GT_PIPE] = ACTIONS(2700), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2700), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2700), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2700), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2700), - [anon_sym_RPAREN] = ACTIONS(2700), - [anon_sym_GT2] = ACTIONS(2919), - [anon_sym_DASH2] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_STAR2] = ACTIONS(2923), - [anon_sym_and2] = ACTIONS(2700), - [anon_sym_xor2] = ACTIONS(2700), - [anon_sym_or2] = ACTIONS(2700), - [anon_sym_not_DASHin2] = ACTIONS(2700), - [anon_sym_has2] = ACTIONS(2700), - [anon_sym_not_DASHhas2] = ACTIONS(2700), - [anon_sym_starts_DASHwith2] = ACTIONS(2700), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2700), - [anon_sym_ends_DASHwith2] = ACTIONS(2700), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2700), - [anon_sym_EQ_EQ2] = ACTIONS(2925), - [anon_sym_BANG_EQ2] = ACTIONS(2925), - [anon_sym_LT2] = ACTIONS(2919), - [anon_sym_LT_EQ2] = ACTIONS(2925), - [anon_sym_GT_EQ2] = ACTIONS(2925), - [anon_sym_EQ_TILDE2] = ACTIONS(2700), - [anon_sym_BANG_TILDE2] = ACTIONS(2700), - [anon_sym_like2] = ACTIONS(2700), - [anon_sym_not_DASHlike2] = ACTIONS(2700), - [anon_sym_STAR_STAR2] = ACTIONS(2927), - [anon_sym_PLUS_PLUS2] = ACTIONS(2927), - [anon_sym_SLASH2] = ACTIONS(2923), - [anon_sym_mod2] = ACTIONS(2929), - [anon_sym_SLASH_SLASH2] = ACTIONS(2929), - [anon_sym_PLUS2] = ACTIONS(2931), - [anon_sym_bit_DASHshl2] = ACTIONS(2933), - [anon_sym_bit_DASHshr2] = ACTIONS(2933), - [anon_sym_bit_DASHand2] = ACTIONS(2700), - [anon_sym_bit_DASHxor2] = ACTIONS(2700), - [anon_sym_bit_DASHor2] = ACTIONS(2700), - [anon_sym_err_GT] = ACTIONS(2702), - [anon_sym_out_GT] = ACTIONS(2702), - [anon_sym_e_GT] = ACTIONS(2702), - [anon_sym_o_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT] = ACTIONS(2702), - [anon_sym_err_GT_GT] = ACTIONS(2700), - [anon_sym_out_GT_GT] = ACTIONS(2700), - [anon_sym_e_GT_GT] = ACTIONS(2700), - [anon_sym_o_GT_GT] = ACTIONS(2700), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2700), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2700), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2700), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1172)] = { - [sym_comment] = STATE(1172), - [ts_builtin_sym_end] = ACTIONS(2361), - [anon_sym_in] = ACTIONS(2361), - [sym__newline] = ACTIONS(2361), - [anon_sym_SEMI] = ACTIONS(2361), - [anon_sym_PIPE] = ACTIONS(2361), - [anon_sym_err_GT_PIPE] = ACTIONS(2361), - [anon_sym_out_GT_PIPE] = ACTIONS(2361), - [anon_sym_e_GT_PIPE] = ACTIONS(2361), - [anon_sym_o_GT_PIPE] = ACTIONS(2361), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2361), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2361), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2361), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2361), - [anon_sym_GT2] = ACTIONS(2363), - [anon_sym_DASH2] = ACTIONS(2361), - [anon_sym_STAR2] = ACTIONS(2363), - [anon_sym_and2] = ACTIONS(2361), - [anon_sym_xor2] = ACTIONS(2361), - [anon_sym_or2] = ACTIONS(2361), - [anon_sym_not_DASHin2] = ACTIONS(2361), - [anon_sym_has2] = ACTIONS(2361), - [anon_sym_not_DASHhas2] = ACTIONS(2361), - [anon_sym_starts_DASHwith2] = ACTIONS(2361), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2361), - [anon_sym_ends_DASHwith2] = ACTIONS(2361), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2361), - [anon_sym_EQ_EQ2] = ACTIONS(2361), - [anon_sym_BANG_EQ2] = ACTIONS(2361), - [anon_sym_LT2] = ACTIONS(2363), - [anon_sym_LT_EQ2] = ACTIONS(2361), - [anon_sym_GT_EQ2] = ACTIONS(2361), - [anon_sym_EQ_TILDE2] = ACTIONS(2361), - [anon_sym_BANG_TILDE2] = ACTIONS(2361), - [anon_sym_like2] = ACTIONS(2361), - [anon_sym_not_DASHlike2] = ACTIONS(2361), - [anon_sym_LPAREN2] = ACTIONS(2361), - [anon_sym_STAR_STAR2] = ACTIONS(2361), - [anon_sym_PLUS_PLUS2] = ACTIONS(2361), - [anon_sym_SLASH2] = ACTIONS(2363), - [anon_sym_mod2] = ACTIONS(2361), - [anon_sym_SLASH_SLASH2] = ACTIONS(2361), - [anon_sym_PLUS2] = ACTIONS(2363), - [anon_sym_bit_DASHshl2] = ACTIONS(2361), - [anon_sym_bit_DASHshr2] = ACTIONS(2361), - [anon_sym_bit_DASHand2] = ACTIONS(2361), - [anon_sym_bit_DASHxor2] = ACTIONS(2361), - [anon_sym_bit_DASHor2] = ACTIONS(2361), - [anon_sym_err_GT] = ACTIONS(2363), - [anon_sym_out_GT] = ACTIONS(2363), - [anon_sym_e_GT] = ACTIONS(2363), - [anon_sym_o_GT] = ACTIONS(2363), - [anon_sym_err_PLUSout_GT] = ACTIONS(2363), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2363), - [anon_sym_o_PLUSe_GT] = ACTIONS(2363), - [anon_sym_e_PLUSo_GT] = ACTIONS(2363), - [anon_sym_err_GT_GT] = ACTIONS(2361), - [anon_sym_out_GT_GT] = ACTIONS(2361), - [anon_sym_e_GT_GT] = ACTIONS(2361), - [anon_sym_o_GT_GT] = ACTIONS(2361), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2361), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2361), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2361), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2361), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1173)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1173), - [anon_sym_in] = ACTIONS(2858), - [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(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2788), - [anon_sym_xor2] = ACTIONS(2788), - [anon_sym_or2] = ACTIONS(2788), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2866), - [anon_sym_BANG_TILDE2] = ACTIONS(2866), - [anon_sym_like2] = ACTIONS(2866), - [anon_sym_not_DASHlike2] = ACTIONS(2866), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [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(1174)] = { - [aux_sym__repeat_newline] = STATE(1195), - [sym_comment] = STATE(1174), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2913), - [anon_sym_SEMI] = ACTIONS(2782), - [anon_sym_PIPE] = ACTIONS(2782), - [anon_sym_err_GT_PIPE] = ACTIONS(2782), - [anon_sym_out_GT_PIPE] = ACTIONS(2782), - [anon_sym_e_GT_PIPE] = ACTIONS(2782), - [anon_sym_o_GT_PIPE] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), - [anon_sym_RPAREN] = ACTIONS(2782), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2782), - [anon_sym_xor2] = ACTIONS(2782), - [anon_sym_or2] = ACTIONS(2782), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2889), - [anon_sym_BANG_TILDE2] = ACTIONS(2889), - [anon_sym_like2] = ACTIONS(2889), - [anon_sym_not_DASHlike2] = ACTIONS(2889), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2782), - [anon_sym_bit_DASHor2] = ACTIONS(2782), - [anon_sym_err_GT] = ACTIONS(2784), - [anon_sym_out_GT] = ACTIONS(2784), - [anon_sym_e_GT] = ACTIONS(2784), - [anon_sym_o_GT] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT] = ACTIONS(2784), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1175)] = { - [aux_sym__repeat_newline] = STATE(1153), - [sym_comment] = STATE(1175), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2878), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2905), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2889), - [anon_sym_BANG_TILDE2] = ACTIONS(2889), - [anon_sym_like2] = ACTIONS(2889), - [anon_sym_not_DASHlike2] = ACTIONS(2889), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2909), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [aux_sym__types_body_repeat1] = STATE(1381), + [aux_sym__ctrl_match_body_repeat1] = STATE(1401), + [anon_sym_true] = ACTIONS(2925), + [anon_sym_false] = ACTIONS(2925), + [anon_sym_null] = ACTIONS(2927), + [aux_sym_cmd_identifier_token3] = ACTIONS(2929), + [aux_sym_cmd_identifier_token4] = ACTIONS(2929), + [aux_sym_cmd_identifier_token5] = ACTIONS(2929), + [sym__newline] = ACTIONS(2931), + [anon_sym_LBRACK] = ACTIONS(2933), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_DOLLAR] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_RBRACE] = ACTIONS(2958), + [anon_sym__] = ACTIONS(2941), + [anon_sym_DOT_DOT] = ACTIONS(2943), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2945), + [anon_sym_DOT_DOT_LT] = ACTIONS(2945), + [aux_sym__val_number_decimal_token1] = ACTIONS(2947), + [aux_sym__val_number_decimal_token2] = ACTIONS(2949), + [aux_sym__val_number_decimal_token3] = ACTIONS(2951), + [aux_sym__val_number_decimal_token4] = ACTIONS(2951), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1768), + [aux_sym_unquoted_token1] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1770), }, - [STATE(1176)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1176), - [anon_sym_in] = ACTIONS(2858), - [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(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2788), - [anon_sym_xor2] = ACTIONS(2788), - [anon_sym_or2] = ACTIONS(2788), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2866), - [anon_sym_BANG_TILDE2] = ACTIONS(2866), - [anon_sym_like2] = ACTIONS(2866), - [anon_sym_not_DASHlike2] = ACTIONS(2866), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2870), - [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(1177)] = { - [aux_sym__repeat_newline] = STATE(1196), - [sym_comment] = STATE(1177), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2913), - [anon_sym_SEMI] = ACTIONS(2782), - [anon_sym_PIPE] = ACTIONS(2782), - [anon_sym_err_GT_PIPE] = ACTIONS(2782), - [anon_sym_out_GT_PIPE] = ACTIONS(2782), - [anon_sym_e_GT_PIPE] = ACTIONS(2782), - [anon_sym_o_GT_PIPE] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), - [anon_sym_RPAREN] = ACTIONS(2782), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2782), - [anon_sym_xor2] = ACTIONS(2782), - [anon_sym_or2] = ACTIONS(2782), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2889), - [anon_sym_BANG_TILDE2] = ACTIONS(2889), - [anon_sym_like2] = ACTIONS(2889), - [anon_sym_not_DASHlike2] = ACTIONS(2889), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2782), - [anon_sym_err_GT] = ACTIONS(2784), - [anon_sym_out_GT] = ACTIONS(2784), - [anon_sym_e_GT] = ACTIONS(2784), - [anon_sym_o_GT] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT] = ACTIONS(2784), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [1166] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1166), + [anon_sym_in] = ACTIONS(2852), + [sym__newline] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(2844), + [anon_sym_err_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_GT_PIPE] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), + [anon_sym_RPAREN] = ACTIONS(2844), + [anon_sym_GT2] = ACTIONS(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2844), + [anon_sym_xor2] = ACTIONS(2844), + [anon_sym_or2] = ACTIONS(2844), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2844), + [anon_sym_BANG_TILDE2] = ACTIONS(2844), + [anon_sym_like2] = ACTIONS(2844), + [anon_sym_not_DASHlike2] = ACTIONS(2844), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2844), + [anon_sym_bit_DASHor2] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(2846), + [anon_sym_out_GT] = ACTIONS(2846), + [anon_sym_e_GT] = ACTIONS(2846), + [anon_sym_o_GT] = ACTIONS(2846), + [anon_sym_err_PLUSout_GT] = ACTIONS(2846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2846), + [anon_sym_o_PLUSe_GT] = ACTIONS(2846), + [anon_sym_e_PLUSo_GT] = ACTIONS(2846), + [anon_sym_err_GT_GT] = ACTIONS(2844), + [anon_sym_out_GT_GT] = ACTIONS(2844), + [anon_sym_e_GT_GT] = ACTIONS(2844), + [anon_sym_o_GT_GT] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1178)] = { - [sym_comment] = STATE(1178), - [anon_sym_in] = ACTIONS(2700), - [sym__newline] = ACTIONS(2700), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_err_GT_PIPE] = ACTIONS(2700), - [anon_sym_out_GT_PIPE] = ACTIONS(2700), - [anon_sym_e_GT_PIPE] = ACTIONS(2700), - [anon_sym_o_GT_PIPE] = ACTIONS(2700), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2700), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2700), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2700), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2700), - [anon_sym_RPAREN] = ACTIONS(2700), - [anon_sym_GT2] = ACTIONS(2702), - [anon_sym_DASH2] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_STAR2] = ACTIONS(2923), - [anon_sym_and2] = ACTIONS(2700), - [anon_sym_xor2] = ACTIONS(2700), - [anon_sym_or2] = ACTIONS(2700), - [anon_sym_not_DASHin2] = ACTIONS(2700), - [anon_sym_has2] = ACTIONS(2700), - [anon_sym_not_DASHhas2] = ACTIONS(2700), - [anon_sym_starts_DASHwith2] = ACTIONS(2700), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2700), - [anon_sym_ends_DASHwith2] = ACTIONS(2700), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2700), - [anon_sym_EQ_EQ2] = ACTIONS(2700), - [anon_sym_BANG_EQ2] = ACTIONS(2700), - [anon_sym_LT2] = ACTIONS(2702), - [anon_sym_LT_EQ2] = ACTIONS(2700), - [anon_sym_GT_EQ2] = ACTIONS(2700), - [anon_sym_EQ_TILDE2] = ACTIONS(2700), - [anon_sym_BANG_TILDE2] = ACTIONS(2700), - [anon_sym_like2] = ACTIONS(2700), - [anon_sym_not_DASHlike2] = ACTIONS(2700), - [anon_sym_STAR_STAR2] = ACTIONS(2927), - [anon_sym_PLUS_PLUS2] = ACTIONS(2927), - [anon_sym_SLASH2] = ACTIONS(2923), - [anon_sym_mod2] = ACTIONS(2929), - [anon_sym_SLASH_SLASH2] = ACTIONS(2929), - [anon_sym_PLUS2] = ACTIONS(2931), - [anon_sym_bit_DASHshl2] = ACTIONS(2933), - [anon_sym_bit_DASHshr2] = ACTIONS(2933), - [anon_sym_bit_DASHand2] = ACTIONS(2700), - [anon_sym_bit_DASHxor2] = ACTIONS(2700), - [anon_sym_bit_DASHor2] = ACTIONS(2700), - [anon_sym_err_GT] = ACTIONS(2702), - [anon_sym_out_GT] = ACTIONS(2702), - [anon_sym_e_GT] = ACTIONS(2702), - [anon_sym_o_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT] = ACTIONS(2702), - [anon_sym_err_GT_GT] = ACTIONS(2700), - [anon_sym_out_GT_GT] = ACTIONS(2700), - [anon_sym_e_GT_GT] = ACTIONS(2700), - [anon_sym_o_GT_GT] = ACTIONS(2700), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2700), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2700), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2700), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1179)] = { - [aux_sym__repeat_newline] = STATE(1258), - [sym_comment] = STATE(1179), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2916), + [1167] = { + [aux_sym__repeat_newline] = STATE(1263), + [sym_comment] = STATE(1167), + [anon_sym_in] = ACTIONS(2834), + [sym__newline] = ACTIONS(2955), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_err_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_GT_PIPE] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2834), + [anon_sym_xor2] = ACTIONS(2834), + [anon_sym_or2] = ACTIONS(2834), + [anon_sym_not_DASHin2] = ACTIONS(2834), + [anon_sym_has2] = ACTIONS(2834), + [anon_sym_not_DASHhas2] = ACTIONS(2834), + [anon_sym_starts_DASHwith2] = ACTIONS(2834), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2834), + [anon_sym_ends_DASHwith2] = ACTIONS(2834), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2834), + [anon_sym_EQ_EQ2] = ACTIONS(2834), + [anon_sym_BANG_EQ2] = ACTIONS(2834), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2834), + [anon_sym_GT_EQ2] = ACTIONS(2834), + [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(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2834), + [anon_sym_bit_DASHxor2] = ACTIONS(2834), + [anon_sym_bit_DASHor2] = ACTIONS(2834), + [anon_sym_err_GT] = ACTIONS(2836), + [anon_sym_out_GT] = ACTIONS(2836), + [anon_sym_e_GT] = ACTIONS(2836), + [anon_sym_o_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT] = ACTIONS(2836), + [anon_sym_err_GT_GT] = ACTIONS(2834), + [anon_sym_out_GT_GT] = ACTIONS(2834), + [anon_sym_e_GT_GT] = ACTIONS(2834), + [anon_sym_o_GT_GT] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(3), + }, + [1168] = { + [sym_comment] = STATE(1168), + [ts_builtin_sym_end] = ACTIONS(2541), + [anon_sym_finally] = ACTIONS(2541), + [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_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = 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_POUND] = ACTIONS(3), + }, + [1169] = { + [aux_sym__repeat_newline] = STATE(1241), + [sym_comment] = STATE(1169), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2876), [anon_sym_SEMI] = ACTIONS(2840), [anon_sym_PIPE] = ACTIONS(2840), [anon_sym_err_GT_PIPE] = ACTIONS(2840), @@ -135819,39 +135097,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), [anon_sym_RPAREN] = ACTIONS(2840), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2905), + [anon_sym_GT2] = ACTIONS(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2840), [anon_sym_xor2] = ACTIONS(2840), [anon_sym_or2] = ACTIONS(2840), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2889), - [anon_sym_BANG_TILDE2] = ACTIONS(2889), - [anon_sym_like2] = ACTIONS(2889), - [anon_sym_not_DASHlike2] = ACTIONS(2889), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2909), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2840), + [anon_sym_BANG_TILDE2] = ACTIONS(2840), + [anon_sym_like2] = ACTIONS(2840), + [anon_sym_not_DASHlike2] = ACTIONS(2840), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2840), + [anon_sym_bit_DASHxor2] = ACTIONS(2840), + [anon_sym_bit_DASHor2] = ACTIONS(2840), [anon_sym_err_GT] = ACTIONS(2842), [anon_sym_out_GT] = ACTIONS(2842), [anon_sym_e_GT] = ACTIONS(2842), @@ -135870,1686 +135148,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1180)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1180), - [anon_sym_in] = ACTIONS(2858), - [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(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2788), - [anon_sym_xor2] = ACTIONS(2788), - [anon_sym_or2] = ACTIONS(2788), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2866), - [anon_sym_BANG_TILDE2] = ACTIONS(2866), - [anon_sym_like2] = ACTIONS(2866), - [anon_sym_not_DASHlike2] = ACTIONS(2866), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2870), - [anon_sym_bit_DASHxor2] = ACTIONS(2872), - [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(1181)] = { - [sym_comment] = STATE(1181), - [anon_sym_in] = ACTIONS(2700), - [sym__newline] = ACTIONS(2700), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_err_GT_PIPE] = ACTIONS(2700), - [anon_sym_out_GT_PIPE] = ACTIONS(2700), - [anon_sym_e_GT_PIPE] = ACTIONS(2700), - [anon_sym_o_GT_PIPE] = ACTIONS(2700), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2700), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2700), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2700), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2700), - [anon_sym_RPAREN] = ACTIONS(2700), - [anon_sym_GT2] = ACTIONS(2702), - [anon_sym_DASH2] = ACTIONS(2700), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_STAR2] = ACTIONS(2923), - [anon_sym_and2] = ACTIONS(2700), - [anon_sym_xor2] = ACTIONS(2700), - [anon_sym_or2] = ACTIONS(2700), - [anon_sym_not_DASHin2] = ACTIONS(2700), - [anon_sym_has2] = ACTIONS(2700), - [anon_sym_not_DASHhas2] = ACTIONS(2700), - [anon_sym_starts_DASHwith2] = ACTIONS(2700), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2700), - [anon_sym_ends_DASHwith2] = ACTIONS(2700), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2700), - [anon_sym_EQ_EQ2] = ACTIONS(2700), - [anon_sym_BANG_EQ2] = ACTIONS(2700), - [anon_sym_LT2] = ACTIONS(2702), - [anon_sym_LT_EQ2] = ACTIONS(2700), - [anon_sym_GT_EQ2] = ACTIONS(2700), - [anon_sym_EQ_TILDE2] = ACTIONS(2700), - [anon_sym_BANG_TILDE2] = ACTIONS(2700), - [anon_sym_like2] = ACTIONS(2700), - [anon_sym_not_DASHlike2] = ACTIONS(2700), - [anon_sym_STAR_STAR2] = ACTIONS(2927), - [anon_sym_PLUS_PLUS2] = ACTIONS(2927), - [anon_sym_SLASH2] = ACTIONS(2923), - [anon_sym_mod2] = ACTIONS(2929), - [anon_sym_SLASH_SLASH2] = ACTIONS(2929), - [anon_sym_PLUS2] = ACTIONS(2702), - [anon_sym_bit_DASHshl2] = ACTIONS(2700), - [anon_sym_bit_DASHshr2] = ACTIONS(2700), - [anon_sym_bit_DASHand2] = ACTIONS(2700), - [anon_sym_bit_DASHxor2] = ACTIONS(2700), - [anon_sym_bit_DASHor2] = ACTIONS(2700), - [anon_sym_err_GT] = ACTIONS(2702), - [anon_sym_out_GT] = ACTIONS(2702), - [anon_sym_e_GT] = ACTIONS(2702), - [anon_sym_o_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT] = ACTIONS(2702), - [anon_sym_err_GT_GT] = ACTIONS(2700), - [anon_sym_out_GT_GT] = ACTIONS(2700), - [anon_sym_e_GT_GT] = ACTIONS(2700), - [anon_sym_o_GT_GT] = ACTIONS(2700), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2700), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2700), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2700), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1182)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1182), - [anon_sym_in] = ACTIONS(2796), - [sym__newline] = ACTIONS(2796), - [anon_sym_SEMI] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2796), - [anon_sym_err_GT_PIPE] = ACTIONS(2796), - [anon_sym_out_GT_PIPE] = ACTIONS(2796), - [anon_sym_e_GT_PIPE] = ACTIONS(2796), - [anon_sym_o_GT_PIPE] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2796), - [anon_sym_RPAREN] = ACTIONS(2796), - [anon_sym_GT2] = ACTIONS(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2796), - [anon_sym_xor2] = ACTIONS(2796), - [anon_sym_or2] = ACTIONS(2796), - [anon_sym_not_DASHin2] = ACTIONS(2796), - [anon_sym_has2] = ACTIONS(2796), - [anon_sym_not_DASHhas2] = ACTIONS(2796), - [anon_sym_starts_DASHwith2] = ACTIONS(2796), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2796), - [anon_sym_ends_DASHwith2] = ACTIONS(2796), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2796), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2796), - [anon_sym_bit_DASHxor2] = ACTIONS(2796), - [anon_sym_bit_DASHor2] = ACTIONS(2796), - [anon_sym_err_GT] = ACTIONS(2798), - [anon_sym_out_GT] = ACTIONS(2798), - [anon_sym_e_GT] = ACTIONS(2798), - [anon_sym_o_GT] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT] = ACTIONS(2798), - [anon_sym_err_GT_GT] = ACTIONS(2796), - [anon_sym_out_GT_GT] = ACTIONS(2796), - [anon_sym_e_GT_GT] = ACTIONS(2796), - [anon_sym_o_GT_GT] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2796), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1183)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1183), - [anon_sym_in] = ACTIONS(2796), - [sym__newline] = ACTIONS(2796), - [anon_sym_SEMI] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2796), - [anon_sym_err_GT_PIPE] = ACTIONS(2796), - [anon_sym_out_GT_PIPE] = ACTIONS(2796), - [anon_sym_e_GT_PIPE] = ACTIONS(2796), - [anon_sym_o_GT_PIPE] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2796), - [anon_sym_RPAREN] = ACTIONS(2796), - [anon_sym_GT2] = ACTIONS(2798), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2796), - [anon_sym_xor2] = ACTIONS(2796), - [anon_sym_or2] = ACTIONS(2796), - [anon_sym_not_DASHin2] = ACTIONS(2796), - [anon_sym_has2] = ACTIONS(2796), - [anon_sym_not_DASHhas2] = ACTIONS(2796), - [anon_sym_starts_DASHwith2] = ACTIONS(2796), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2796), - [anon_sym_ends_DASHwith2] = ACTIONS(2796), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2796), - [anon_sym_EQ_EQ2] = ACTIONS(2796), - [anon_sym_BANG_EQ2] = ACTIONS(2796), - [anon_sym_LT2] = ACTIONS(2798), - [anon_sym_LT_EQ2] = ACTIONS(2796), - [anon_sym_GT_EQ2] = ACTIONS(2796), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2796), - [anon_sym_bit_DASHxor2] = ACTIONS(2796), - [anon_sym_bit_DASHor2] = ACTIONS(2796), - [anon_sym_err_GT] = ACTIONS(2798), - [anon_sym_out_GT] = ACTIONS(2798), - [anon_sym_e_GT] = ACTIONS(2798), - [anon_sym_o_GT] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT] = ACTIONS(2798), - [anon_sym_err_GT_GT] = ACTIONS(2796), - [anon_sym_out_GT_GT] = ACTIONS(2796), - [anon_sym_e_GT_GT] = ACTIONS(2796), - [anon_sym_o_GT_GT] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2796), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1184)] = { - [sym__ctrl_match_body] = STATE(5392), - [sym_match_arm] = STATE(4897), - [sym_default_arm] = STATE(4897), - [sym_match_pattern] = STATE(5399), - [sym__match_pattern] = STATE(4099), - [sym__match_pattern_expression] = STATE(4655), - [sym__match_pattern_value] = STATE(4656), - [sym__match_pattern_list] = STATE(4659), - [sym__match_pattern_record] = STATE(4663), - [sym_expr_parenthesized] = STATE(3961), - [sym_val_range] = STATE(4656), - [sym__val_range] = STATE(5303), - [sym_val_nothing] = STATE(4663), - [sym_val_bool] = STATE(4358), - [sym_val_variable] = STATE(3966), - [sym_val_number] = STATE(4663), - [sym__val_number_decimal] = STATE(3674), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(4663), - [sym_val_filesize] = STATE(4663), - [sym_val_binary] = STATE(4663), - [sym_val_string] = STATE(4663), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_table] = STATE(4663), - [sym_unquoted] = STATE(4665), - [sym__unquoted_anonymous_prefix] = STATE(5303), - [sym_comment] = STATE(1184), - [aux_sym__types_body_repeat1] = STATE(1373), - [aux_sym__ctrl_match_body_repeat1] = STATE(1407), - [anon_sym_true] = ACTIONS(2935), - [anon_sym_false] = ACTIONS(2935), - [anon_sym_null] = ACTIONS(2937), - [aux_sym_cmd_identifier_token3] = ACTIONS(2939), - [aux_sym_cmd_identifier_token4] = ACTIONS(2939), - [aux_sym_cmd_identifier_token5] = ACTIONS(2939), - [sym__newline] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_DOLLAR] = ACTIONS(2945), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_RBRACE] = ACTIONS(2949), - [anon_sym__] = ACTIONS(2951), - [anon_sym_DOT_DOT] = ACTIONS(2953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2955), - [anon_sym_DOT_DOT_LT] = ACTIONS(2955), - [aux_sym__val_number_decimal_token1] = ACTIONS(2957), - [aux_sym__val_number_decimal_token2] = ACTIONS(2959), - [aux_sym__val_number_decimal_token3] = ACTIONS(2961), - [aux_sym__val_number_decimal_token4] = ACTIONS(2961), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1770), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1772), - }, - [STATE(1185)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1185), - [anon_sym_in] = ACTIONS(2796), - [sym__newline] = ACTIONS(2796), - [anon_sym_SEMI] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2796), - [anon_sym_err_GT_PIPE] = ACTIONS(2796), - [anon_sym_out_GT_PIPE] = ACTIONS(2796), - [anon_sym_e_GT_PIPE] = ACTIONS(2796), - [anon_sym_o_GT_PIPE] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2796), - [anon_sym_RPAREN] = ACTIONS(2796), - [anon_sym_GT2] = ACTIONS(2798), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2796), - [anon_sym_xor2] = ACTIONS(2796), - [anon_sym_or2] = ACTIONS(2796), - [anon_sym_not_DASHin2] = ACTIONS(2796), - [anon_sym_has2] = ACTIONS(2796), - [anon_sym_not_DASHhas2] = ACTIONS(2796), - [anon_sym_starts_DASHwith2] = ACTIONS(2796), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2796), - [anon_sym_ends_DASHwith2] = ACTIONS(2796), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2796), - [anon_sym_EQ_EQ2] = ACTIONS(2796), - [anon_sym_BANG_EQ2] = ACTIONS(2796), - [anon_sym_LT2] = ACTIONS(2798), - [anon_sym_LT_EQ2] = ACTIONS(2796), - [anon_sym_GT_EQ2] = ACTIONS(2796), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2796), - [anon_sym_bit_DASHshr2] = ACTIONS(2796), - [anon_sym_bit_DASHand2] = ACTIONS(2796), - [anon_sym_bit_DASHxor2] = ACTIONS(2796), - [anon_sym_bit_DASHor2] = ACTIONS(2796), - [anon_sym_err_GT] = ACTIONS(2798), - [anon_sym_out_GT] = ACTIONS(2798), - [anon_sym_e_GT] = ACTIONS(2798), - [anon_sym_o_GT] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT] = ACTIONS(2798), - [anon_sym_err_GT_GT] = ACTIONS(2796), - [anon_sym_out_GT_GT] = ACTIONS(2796), - [anon_sym_e_GT_GT] = ACTIONS(2796), - [anon_sym_o_GT_GT] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2796), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1186)] = { - [sym__ctrl_match_body] = STATE(5262), - [sym_match_arm] = STATE(4897), - [sym_default_arm] = STATE(4897), - [sym_match_pattern] = STATE(5399), - [sym__match_pattern] = STATE(4099), - [sym__match_pattern_expression] = STATE(4655), - [sym__match_pattern_value] = STATE(4656), - [sym__match_pattern_list] = STATE(4659), - [sym__match_pattern_record] = STATE(4663), - [sym_expr_parenthesized] = STATE(3961), - [sym_val_range] = STATE(4656), - [sym__val_range] = STATE(5303), - [sym_val_nothing] = STATE(4663), - [sym_val_bool] = STATE(4358), - [sym_val_variable] = STATE(3966), - [sym_val_number] = STATE(4663), - [sym__val_number_decimal] = STATE(3674), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(4663), - [sym_val_filesize] = STATE(4663), - [sym_val_binary] = STATE(4663), - [sym_val_string] = STATE(4663), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_table] = STATE(4663), - [sym_unquoted] = STATE(4665), - [sym__unquoted_anonymous_prefix] = STATE(5303), - [sym_comment] = STATE(1186), - [aux_sym__types_body_repeat1] = STATE(1373), - [aux_sym__ctrl_match_body_repeat1] = STATE(1407), - [anon_sym_true] = ACTIONS(2935), - [anon_sym_false] = ACTIONS(2935), - [anon_sym_null] = ACTIONS(2937), - [aux_sym_cmd_identifier_token3] = ACTIONS(2939), - [aux_sym_cmd_identifier_token4] = ACTIONS(2939), - [aux_sym_cmd_identifier_token5] = ACTIONS(2939), - [sym__newline] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_DOLLAR] = ACTIONS(2945), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_RBRACE] = ACTIONS(2965), - [anon_sym__] = ACTIONS(2951), - [anon_sym_DOT_DOT] = ACTIONS(2953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2955), - [anon_sym_DOT_DOT_LT] = ACTIONS(2955), - [aux_sym__val_number_decimal_token1] = ACTIONS(2957), - [aux_sym__val_number_decimal_token2] = ACTIONS(2959), - [aux_sym__val_number_decimal_token3] = ACTIONS(2961), - [aux_sym__val_number_decimal_token4] = ACTIONS(2961), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1770), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1772), - }, - [STATE(1187)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1187), - [anon_sym_in] = ACTIONS(2796), - [sym__newline] = ACTIONS(2796), - [anon_sym_SEMI] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2796), - [anon_sym_err_GT_PIPE] = ACTIONS(2796), - [anon_sym_out_GT_PIPE] = ACTIONS(2796), - [anon_sym_e_GT_PIPE] = ACTIONS(2796), - [anon_sym_o_GT_PIPE] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2796), - [anon_sym_RPAREN] = ACTIONS(2796), - [anon_sym_GT2] = ACTIONS(2798), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2796), - [anon_sym_xor2] = ACTIONS(2796), - [anon_sym_or2] = ACTIONS(2796), - [anon_sym_not_DASHin2] = ACTIONS(2796), - [anon_sym_has2] = ACTIONS(2796), - [anon_sym_not_DASHhas2] = ACTIONS(2796), - [anon_sym_starts_DASHwith2] = ACTIONS(2796), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2796), - [anon_sym_ends_DASHwith2] = ACTIONS(2796), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2796), - [anon_sym_EQ_EQ2] = ACTIONS(2796), - [anon_sym_BANG_EQ2] = ACTIONS(2796), - [anon_sym_LT2] = ACTIONS(2798), - [anon_sym_LT_EQ2] = ACTIONS(2796), - [anon_sym_GT_EQ2] = ACTIONS(2796), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2796), - [anon_sym_SLASH_SLASH2] = ACTIONS(2796), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2796), - [anon_sym_bit_DASHshr2] = ACTIONS(2796), - [anon_sym_bit_DASHand2] = ACTIONS(2796), - [anon_sym_bit_DASHxor2] = ACTIONS(2796), - [anon_sym_bit_DASHor2] = ACTIONS(2796), - [anon_sym_err_GT] = ACTIONS(2798), - [anon_sym_out_GT] = ACTIONS(2798), - [anon_sym_e_GT] = ACTIONS(2798), - [anon_sym_o_GT] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT] = ACTIONS(2798), - [anon_sym_err_GT_GT] = ACTIONS(2796), - [anon_sym_out_GT_GT] = ACTIONS(2796), - [anon_sym_e_GT_GT] = ACTIONS(2796), - [anon_sym_o_GT_GT] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2796), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1188)] = { - [sym_comment] = STATE(1188), - [ts_builtin_sym_end] = ACTIONS(2427), - [anon_sym_finally] = ACTIONS(2427), - [anon_sym_in] = ACTIONS(2427), - [sym__newline] = ACTIONS(2427), - [anon_sym_SEMI] = ACTIONS(2427), - [anon_sym_PIPE] = ACTIONS(2427), - [anon_sym_err_GT_PIPE] = ACTIONS(2427), - [anon_sym_out_GT_PIPE] = ACTIONS(2427), - [anon_sym_e_GT_PIPE] = ACTIONS(2427), - [anon_sym_o_GT_PIPE] = ACTIONS(2427), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2427), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2427), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2427), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2427), - [anon_sym_GT2] = ACTIONS(2429), - [anon_sym_DASH2] = ACTIONS(2427), - [anon_sym_STAR2] = ACTIONS(2429), - [anon_sym_and2] = ACTIONS(2427), - [anon_sym_xor2] = ACTIONS(2427), - [anon_sym_or2] = ACTIONS(2427), - [anon_sym_not_DASHin2] = ACTIONS(2427), - [anon_sym_has2] = ACTIONS(2427), - [anon_sym_not_DASHhas2] = ACTIONS(2427), - [anon_sym_starts_DASHwith2] = ACTIONS(2427), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2427), - [anon_sym_ends_DASHwith2] = ACTIONS(2427), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2427), - [anon_sym_EQ_EQ2] = ACTIONS(2427), - [anon_sym_BANG_EQ2] = ACTIONS(2427), - [anon_sym_LT2] = ACTIONS(2429), - [anon_sym_LT_EQ2] = ACTIONS(2427), - [anon_sym_GT_EQ2] = ACTIONS(2427), - [anon_sym_EQ_TILDE2] = ACTIONS(2427), - [anon_sym_BANG_TILDE2] = ACTIONS(2427), - [anon_sym_like2] = ACTIONS(2427), - [anon_sym_not_DASHlike2] = ACTIONS(2427), - [anon_sym_STAR_STAR2] = ACTIONS(2427), - [anon_sym_PLUS_PLUS2] = ACTIONS(2427), - [anon_sym_SLASH2] = ACTIONS(2429), - [anon_sym_mod2] = ACTIONS(2427), - [anon_sym_SLASH_SLASH2] = ACTIONS(2427), - [anon_sym_PLUS2] = ACTIONS(2429), - [anon_sym_bit_DASHshl2] = ACTIONS(2427), - [anon_sym_bit_DASHshr2] = ACTIONS(2427), - [anon_sym_bit_DASHand2] = ACTIONS(2427), - [anon_sym_bit_DASHxor2] = ACTIONS(2427), - [anon_sym_bit_DASHor2] = ACTIONS(2427), - [anon_sym_err_GT] = ACTIONS(2429), - [anon_sym_out_GT] = ACTIONS(2429), - [anon_sym_e_GT] = ACTIONS(2429), - [anon_sym_o_GT] = ACTIONS(2429), - [anon_sym_err_PLUSout_GT] = ACTIONS(2429), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2429), - [anon_sym_o_PLUSe_GT] = ACTIONS(2429), - [anon_sym_e_PLUSo_GT] = ACTIONS(2429), - [anon_sym_err_GT_GT] = ACTIONS(2427), - [anon_sym_out_GT_GT] = ACTIONS(2427), - [anon_sym_e_GT_GT] = ACTIONS(2427), - [anon_sym_o_GT_GT] = ACTIONS(2427), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2427), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2427), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2427), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2427), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1189)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1189), - [anon_sym_in] = ACTIONS(2858), - [sym__newline] = ACTIONS(2796), - [anon_sym_SEMI] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2796), - [anon_sym_err_GT_PIPE] = ACTIONS(2796), - [anon_sym_out_GT_PIPE] = ACTIONS(2796), - [anon_sym_e_GT_PIPE] = ACTIONS(2796), - [anon_sym_o_GT_PIPE] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2796), - [anon_sym_RPAREN] = ACTIONS(2796), - [anon_sym_GT2] = ACTIONS(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2796), - [anon_sym_xor2] = ACTIONS(2796), - [anon_sym_or2] = ACTIONS(2796), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2866), - [anon_sym_BANG_TILDE2] = ACTIONS(2866), - [anon_sym_like2] = ACTIONS(2866), - [anon_sym_not_DASHlike2] = ACTIONS(2866), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2870), - [anon_sym_bit_DASHxor2] = ACTIONS(2872), - [anon_sym_bit_DASHor2] = ACTIONS(2874), - [anon_sym_err_GT] = ACTIONS(2798), - [anon_sym_out_GT] = ACTIONS(2798), - [anon_sym_e_GT] = ACTIONS(2798), - [anon_sym_o_GT] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT] = ACTIONS(2798), - [anon_sym_err_GT_GT] = ACTIONS(2796), - [anon_sym_out_GT_GT] = ACTIONS(2796), - [anon_sym_e_GT_GT] = ACTIONS(2796), - [anon_sym_o_GT_GT] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2796), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1190)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1190), - [anon_sym_in] = ACTIONS(2858), - [sym__newline] = ACTIONS(2796), - [anon_sym_SEMI] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2796), - [anon_sym_err_GT_PIPE] = ACTIONS(2796), - [anon_sym_out_GT_PIPE] = ACTIONS(2796), - [anon_sym_e_GT_PIPE] = ACTIONS(2796), - [anon_sym_o_GT_PIPE] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2796), - [anon_sym_RPAREN] = ACTIONS(2796), - [anon_sym_GT2] = ACTIONS(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2862), - [anon_sym_xor2] = ACTIONS(2796), - [anon_sym_or2] = ACTIONS(2796), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2866), - [anon_sym_BANG_TILDE2] = ACTIONS(2866), - [anon_sym_like2] = ACTIONS(2866), - [anon_sym_not_DASHlike2] = ACTIONS(2866), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2870), - [anon_sym_bit_DASHxor2] = ACTIONS(2872), - [anon_sym_bit_DASHor2] = ACTIONS(2874), - [anon_sym_err_GT] = ACTIONS(2798), - [anon_sym_out_GT] = ACTIONS(2798), - [anon_sym_e_GT] = ACTIONS(2798), - [anon_sym_o_GT] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT] = ACTIONS(2798), - [anon_sym_err_GT_GT] = ACTIONS(2796), - [anon_sym_out_GT_GT] = ACTIONS(2796), - [anon_sym_e_GT_GT] = ACTIONS(2796), - [anon_sym_o_GT_GT] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2796), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1191)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1191), - [anon_sym_in] = ACTIONS(2858), - [sym__newline] = ACTIONS(2796), - [anon_sym_SEMI] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2796), - [anon_sym_err_GT_PIPE] = ACTIONS(2796), - [anon_sym_out_GT_PIPE] = ACTIONS(2796), - [anon_sym_e_GT_PIPE] = ACTIONS(2796), - [anon_sym_o_GT_PIPE] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2796), - [anon_sym_RPAREN] = ACTIONS(2796), - [anon_sym_GT2] = ACTIONS(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2862), - [anon_sym_xor2] = ACTIONS(2911), - [anon_sym_or2] = ACTIONS(2796), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2866), - [anon_sym_BANG_TILDE2] = ACTIONS(2866), - [anon_sym_like2] = ACTIONS(2866), - [anon_sym_not_DASHlike2] = ACTIONS(2866), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2870), - [anon_sym_bit_DASHxor2] = ACTIONS(2872), - [anon_sym_bit_DASHor2] = ACTIONS(2874), - [anon_sym_err_GT] = ACTIONS(2798), - [anon_sym_out_GT] = ACTIONS(2798), - [anon_sym_e_GT] = ACTIONS(2798), - [anon_sym_o_GT] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT] = ACTIONS(2798), - [anon_sym_err_GT_GT] = ACTIONS(2796), - [anon_sym_out_GT_GT] = ACTIONS(2796), - [anon_sym_e_GT_GT] = ACTIONS(2796), - [anon_sym_o_GT_GT] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2796), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1192)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1192), - [anon_sym_in] = ACTIONS(2858), - [sym__newline] = ACTIONS(2796), - [anon_sym_SEMI] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2796), - [anon_sym_err_GT_PIPE] = ACTIONS(2796), - [anon_sym_out_GT_PIPE] = ACTIONS(2796), - [anon_sym_e_GT_PIPE] = ACTIONS(2796), - [anon_sym_o_GT_PIPE] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2796), - [anon_sym_RPAREN] = ACTIONS(2796), - [anon_sym_GT2] = ACTIONS(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2796), - [anon_sym_xor2] = ACTIONS(2796), - [anon_sym_or2] = ACTIONS(2796), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2796), - [anon_sym_bit_DASHxor2] = ACTIONS(2796), - [anon_sym_bit_DASHor2] = ACTIONS(2796), - [anon_sym_err_GT] = ACTIONS(2798), - [anon_sym_out_GT] = ACTIONS(2798), - [anon_sym_e_GT] = ACTIONS(2798), - [anon_sym_o_GT] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT] = ACTIONS(2798), - [anon_sym_err_GT_GT] = ACTIONS(2796), - [anon_sym_out_GT_GT] = ACTIONS(2796), - [anon_sym_e_GT_GT] = ACTIONS(2796), - [anon_sym_o_GT_GT] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2796), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1193)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1193), - [anon_sym_in] = ACTIONS(2796), - [sym__newline] = ACTIONS(2796), - [anon_sym_SEMI] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2796), - [anon_sym_err_GT_PIPE] = ACTIONS(2796), - [anon_sym_out_GT_PIPE] = ACTIONS(2796), - [anon_sym_e_GT_PIPE] = ACTIONS(2796), - [anon_sym_o_GT_PIPE] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2796), - [anon_sym_RPAREN] = ACTIONS(2796), - [anon_sym_GT2] = ACTIONS(2798), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2796), - [anon_sym_xor2] = ACTIONS(2796), - [anon_sym_or2] = ACTIONS(2796), - [anon_sym_not_DASHin2] = ACTIONS(2796), - [anon_sym_has2] = ACTIONS(2796), - [anon_sym_not_DASHhas2] = ACTIONS(2796), - [anon_sym_starts_DASHwith2] = ACTIONS(2796), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2796), - [anon_sym_ends_DASHwith2] = ACTIONS(2796), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2796), - [anon_sym_EQ_EQ2] = ACTIONS(2796), - [anon_sym_BANG_EQ2] = ACTIONS(2796), - [anon_sym_LT2] = ACTIONS(2798), - [anon_sym_LT_EQ2] = ACTIONS(2796), - [anon_sym_GT_EQ2] = ACTIONS(2796), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2796), - [anon_sym_bit_DASHshr2] = ACTIONS(2796), - [anon_sym_bit_DASHand2] = ACTIONS(2796), - [anon_sym_bit_DASHxor2] = ACTIONS(2796), - [anon_sym_bit_DASHor2] = ACTIONS(2796), - [anon_sym_err_GT] = ACTIONS(2798), - [anon_sym_out_GT] = ACTIONS(2798), - [anon_sym_e_GT] = ACTIONS(2798), - [anon_sym_o_GT] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT] = ACTIONS(2798), - [anon_sym_err_GT_GT] = ACTIONS(2796), - [anon_sym_out_GT_GT] = ACTIONS(2796), - [anon_sym_e_GT_GT] = ACTIONS(2796), - [anon_sym_o_GT_GT] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2796), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1194)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1194), - [anon_sym_in] = ACTIONS(2858), - [sym__newline] = ACTIONS(2796), - [anon_sym_SEMI] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2796), - [anon_sym_err_GT_PIPE] = ACTIONS(2796), - [anon_sym_out_GT_PIPE] = ACTIONS(2796), - [anon_sym_e_GT_PIPE] = ACTIONS(2796), - [anon_sym_o_GT_PIPE] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2796), - [anon_sym_RPAREN] = ACTIONS(2796), - [anon_sym_GT2] = ACTIONS(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2796), - [anon_sym_xor2] = ACTIONS(2796), - [anon_sym_or2] = ACTIONS(2796), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2866), - [anon_sym_BANG_TILDE2] = ACTIONS(2866), - [anon_sym_like2] = ACTIONS(2866), - [anon_sym_not_DASHlike2] = ACTIONS(2866), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2796), - [anon_sym_bit_DASHxor2] = ACTIONS(2796), - [anon_sym_bit_DASHor2] = ACTIONS(2796), - [anon_sym_err_GT] = ACTIONS(2798), - [anon_sym_out_GT] = ACTIONS(2798), - [anon_sym_e_GT] = ACTIONS(2798), - [anon_sym_o_GT] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT] = ACTIONS(2798), - [anon_sym_err_GT_GT] = ACTIONS(2796), - [anon_sym_out_GT_GT] = ACTIONS(2796), - [anon_sym_e_GT_GT] = ACTIONS(2796), - [anon_sym_o_GT_GT] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2796), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1195)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1195), - [anon_sym_in] = ACTIONS(2858), - [sym__newline] = ACTIONS(2796), - [anon_sym_SEMI] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2796), - [anon_sym_err_GT_PIPE] = ACTIONS(2796), - [anon_sym_out_GT_PIPE] = ACTIONS(2796), - [anon_sym_e_GT_PIPE] = ACTIONS(2796), - [anon_sym_o_GT_PIPE] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2796), - [anon_sym_RPAREN] = ACTIONS(2796), - [anon_sym_GT2] = ACTIONS(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2796), - [anon_sym_xor2] = ACTIONS(2796), - [anon_sym_or2] = ACTIONS(2796), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2866), - [anon_sym_BANG_TILDE2] = ACTIONS(2866), - [anon_sym_like2] = ACTIONS(2866), - [anon_sym_not_DASHlike2] = ACTIONS(2866), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2870), - [anon_sym_bit_DASHxor2] = ACTIONS(2796), - [anon_sym_bit_DASHor2] = ACTIONS(2796), - [anon_sym_err_GT] = ACTIONS(2798), - [anon_sym_out_GT] = ACTIONS(2798), - [anon_sym_e_GT] = ACTIONS(2798), - [anon_sym_o_GT] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT] = ACTIONS(2798), - [anon_sym_err_GT_GT] = ACTIONS(2796), - [anon_sym_out_GT_GT] = ACTIONS(2796), - [anon_sym_e_GT_GT] = ACTIONS(2796), - [anon_sym_o_GT_GT] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2796), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1196)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1196), - [anon_sym_in] = ACTIONS(2858), - [sym__newline] = ACTIONS(2796), - [anon_sym_SEMI] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2796), - [anon_sym_err_GT_PIPE] = ACTIONS(2796), - [anon_sym_out_GT_PIPE] = ACTIONS(2796), - [anon_sym_e_GT_PIPE] = ACTIONS(2796), - [anon_sym_o_GT_PIPE] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2796), - [anon_sym_RPAREN] = ACTIONS(2796), - [anon_sym_GT2] = ACTIONS(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2796), - [anon_sym_xor2] = ACTIONS(2796), - [anon_sym_or2] = ACTIONS(2796), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2866), - [anon_sym_BANG_TILDE2] = ACTIONS(2866), - [anon_sym_like2] = ACTIONS(2866), - [anon_sym_not_DASHlike2] = ACTIONS(2866), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2870), - [anon_sym_bit_DASHxor2] = ACTIONS(2872), - [anon_sym_bit_DASHor2] = ACTIONS(2796), - [anon_sym_err_GT] = ACTIONS(2798), - [anon_sym_out_GT] = ACTIONS(2798), - [anon_sym_e_GT] = ACTIONS(2798), - [anon_sym_o_GT] = ACTIONS(2798), - [anon_sym_err_PLUSout_GT] = ACTIONS(2798), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2798), - [anon_sym_o_PLUSe_GT] = ACTIONS(2798), - [anon_sym_e_PLUSo_GT] = ACTIONS(2798), - [anon_sym_err_GT_GT] = ACTIONS(2796), - [anon_sym_out_GT_GT] = ACTIONS(2796), - [anon_sym_e_GT_GT] = ACTIONS(2796), - [anon_sym_o_GT_GT] = ACTIONS(2796), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2796), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2796), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2796), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2796), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1197)] = { - [aux_sym__repeat_newline] = STATE(1204), - [sym_comment] = STATE(1197), - [anon_sym_in] = ACTIONS(2836), - [sym__newline] = ACTIONS(2967), - [anon_sym_SEMI] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_err_GT_PIPE] = ACTIONS(2836), - [anon_sym_out_GT_PIPE] = ACTIONS(2836), - [anon_sym_e_GT_PIPE] = ACTIONS(2836), - [anon_sym_o_GT_PIPE] = ACTIONS(2836), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2836), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2836), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2836), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2836), - [anon_sym_RPAREN] = ACTIONS(2836), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2836), - [anon_sym_xor2] = ACTIONS(2836), - [anon_sym_or2] = ACTIONS(2836), - [anon_sym_not_DASHin2] = ACTIONS(2836), - [anon_sym_has2] = ACTIONS(2836), - [anon_sym_not_DASHhas2] = ACTIONS(2836), - [anon_sym_starts_DASHwith2] = ACTIONS(2836), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2836), - [anon_sym_ends_DASHwith2] = ACTIONS(2836), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2836), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2836), - [anon_sym_BANG_TILDE2] = ACTIONS(2836), - [anon_sym_like2] = ACTIONS(2836), - [anon_sym_not_DASHlike2] = ACTIONS(2836), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2836), - [anon_sym_bit_DASHxor2] = ACTIONS(2836), - [anon_sym_bit_DASHor2] = ACTIONS(2836), - [anon_sym_err_GT] = ACTIONS(2838), - [anon_sym_out_GT] = ACTIONS(2838), - [anon_sym_e_GT] = ACTIONS(2838), - [anon_sym_o_GT] = ACTIONS(2838), - [anon_sym_err_PLUSout_GT] = ACTIONS(2838), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), - [anon_sym_o_PLUSe_GT] = ACTIONS(2838), - [anon_sym_e_PLUSo_GT] = ACTIONS(2838), - [anon_sym_err_GT_GT] = ACTIONS(2836), - [anon_sym_out_GT_GT] = ACTIONS(2836), - [anon_sym_e_GT_GT] = ACTIONS(2836), - [anon_sym_o_GT_GT] = ACTIONS(2836), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2836), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2836), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2836), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1198)] = { - [aux_sym__repeat_newline] = STATE(1157), - [sym_comment] = STATE(1198), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2903), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2905), - [anon_sym_xor2] = ACTIONS(2907), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2889), - [anon_sym_BANG_TILDE2] = ACTIONS(2889), - [anon_sym_like2] = ACTIONS(2889), - [anon_sym_not_DASHlike2] = ACTIONS(2889), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2909), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1199)] = { - [aux_sym__repeat_newline] = STATE(1264), - [sym_comment] = STATE(1199), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2878), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [1170] = { + [sym_comment] = STATE(1170), + [ts_builtin_sym_end] = ACTIONS(2247), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(2247), + [anon_sym_out_GT_GT] = ACTIONS(2247), + [anon_sym_e_GT_GT] = ACTIONS(2247), + [anon_sym_o_GT_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), + [anon_sym_POUND] = ACTIONS(3), + }, + [1171] = { + [aux_sym__repeat_newline] = STATE(1268), + [sym_comment] = STATE(1171), + [anon_sym_in] = ACTIONS(2834), + [sym__newline] = ACTIONS(2955), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_err_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_GT_PIPE] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2834), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2834), + [anon_sym_xor2] = ACTIONS(2834), + [anon_sym_or2] = ACTIONS(2834), + [anon_sym_not_DASHin2] = ACTIONS(2834), + [anon_sym_has2] = ACTIONS(2834), + [anon_sym_not_DASHhas2] = ACTIONS(2834), + [anon_sym_starts_DASHwith2] = ACTIONS(2834), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2834), + [anon_sym_ends_DASHwith2] = ACTIONS(2834), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2834), + [anon_sym_EQ_EQ2] = ACTIONS(2834), + [anon_sym_BANG_EQ2] = ACTIONS(2834), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2834), + [anon_sym_GT_EQ2] = ACTIONS(2834), + [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(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2836), + [anon_sym_bit_DASHshl2] = ACTIONS(2834), + [anon_sym_bit_DASHshr2] = ACTIONS(2834), + [anon_sym_bit_DASHand2] = ACTIONS(2834), + [anon_sym_bit_DASHxor2] = ACTIONS(2834), + [anon_sym_bit_DASHor2] = ACTIONS(2834), + [anon_sym_err_GT] = ACTIONS(2836), + [anon_sym_out_GT] = ACTIONS(2836), + [anon_sym_e_GT] = ACTIONS(2836), + [anon_sym_o_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT] = ACTIONS(2836), + [anon_sym_err_GT_GT] = ACTIONS(2834), + [anon_sym_out_GT_GT] = ACTIONS(2834), + [anon_sym_e_GT_GT] = ACTIONS(2834), + [anon_sym_o_GT_GT] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(3), + }, + [1172] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1172), + [anon_sym_in] = ACTIONS(2852), + [sym__newline] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(2844), + [anon_sym_err_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_GT_PIPE] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), + [anon_sym_RPAREN] = ACTIONS(2844), + [anon_sym_GT2] = ACTIONS(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2960), + [anon_sym_xor2] = ACTIONS(2962), + [anon_sym_or2] = ACTIONS(2844), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2862), + [anon_sym_BANG_TILDE2] = ACTIONS(2862), + [anon_sym_like2] = ACTIONS(2862), + [anon_sym_not_DASHlike2] = ACTIONS(2862), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2923), + [anon_sym_bit_DASHor2] = ACTIONS(2964), + [anon_sym_err_GT] = ACTIONS(2846), + [anon_sym_out_GT] = ACTIONS(2846), + [anon_sym_e_GT] = ACTIONS(2846), + [anon_sym_o_GT] = ACTIONS(2846), + [anon_sym_err_PLUSout_GT] = ACTIONS(2846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2846), + [anon_sym_o_PLUSe_GT] = ACTIONS(2846), + [anon_sym_e_PLUSo_GT] = ACTIONS(2846), + [anon_sym_err_GT_GT] = ACTIONS(2844), + [anon_sym_out_GT_GT] = ACTIONS(2844), + [anon_sym_e_GT_GT] = ACTIONS(2844), + [anon_sym_o_GT_GT] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1200)] = { - [sym_comment] = STATE(1200), - [ts_builtin_sym_end] = ACTIONS(2389), - [anon_sym_finally] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(2389), - [sym__newline] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(2389), - [anon_sym_PIPE] = ACTIONS(2389), - [anon_sym_err_GT_PIPE] = ACTIONS(2389), - [anon_sym_out_GT_PIPE] = ACTIONS(2389), - [anon_sym_e_GT_PIPE] = ACTIONS(2389), - [anon_sym_o_GT_PIPE] = ACTIONS(2389), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2389), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2389), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2389), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2389), - [anon_sym_GT2] = ACTIONS(2391), - [anon_sym_DASH2] = ACTIONS(2389), - [anon_sym_STAR2] = ACTIONS(2391), - [anon_sym_and2] = ACTIONS(2389), - [anon_sym_xor2] = ACTIONS(2389), - [anon_sym_or2] = ACTIONS(2389), - [anon_sym_not_DASHin2] = ACTIONS(2389), - [anon_sym_has2] = ACTIONS(2389), - [anon_sym_not_DASHhas2] = ACTIONS(2389), - [anon_sym_starts_DASHwith2] = ACTIONS(2389), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2389), - [anon_sym_ends_DASHwith2] = ACTIONS(2389), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2389), - [anon_sym_EQ_EQ2] = ACTIONS(2389), - [anon_sym_BANG_EQ2] = ACTIONS(2389), - [anon_sym_LT2] = ACTIONS(2391), - [anon_sym_LT_EQ2] = ACTIONS(2389), - [anon_sym_GT_EQ2] = ACTIONS(2389), - [anon_sym_EQ_TILDE2] = ACTIONS(2389), - [anon_sym_BANG_TILDE2] = ACTIONS(2389), - [anon_sym_like2] = ACTIONS(2389), - [anon_sym_not_DASHlike2] = ACTIONS(2389), - [anon_sym_STAR_STAR2] = ACTIONS(2389), - [anon_sym_PLUS_PLUS2] = ACTIONS(2389), - [anon_sym_SLASH2] = ACTIONS(2391), - [anon_sym_mod2] = ACTIONS(2389), - [anon_sym_SLASH_SLASH2] = ACTIONS(2389), - [anon_sym_PLUS2] = ACTIONS(2391), - [anon_sym_bit_DASHshl2] = ACTIONS(2389), - [anon_sym_bit_DASHshr2] = ACTIONS(2389), - [anon_sym_bit_DASHand2] = ACTIONS(2389), - [anon_sym_bit_DASHxor2] = ACTIONS(2389), - [anon_sym_bit_DASHor2] = ACTIONS(2389), - [anon_sym_err_GT] = ACTIONS(2391), - [anon_sym_out_GT] = ACTIONS(2391), - [anon_sym_e_GT] = ACTIONS(2391), - [anon_sym_o_GT] = ACTIONS(2391), - [anon_sym_err_PLUSout_GT] = ACTIONS(2391), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2391), - [anon_sym_o_PLUSe_GT] = ACTIONS(2391), - [anon_sym_e_PLUSo_GT] = ACTIONS(2391), - [anon_sym_err_GT_GT] = ACTIONS(2389), - [anon_sym_out_GT_GT] = ACTIONS(2389), - [anon_sym_e_GT_GT] = ACTIONS(2389), - [anon_sym_o_GT_GT] = ACTIONS(2389), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2389), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2389), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2389), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2389), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1201)] = { - [sym_comment] = STATE(1201), - [anon_sym_in] = ACTIONS(2700), - [sym__newline] = ACTIONS(2700), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_err_GT_PIPE] = ACTIONS(2700), - [anon_sym_out_GT_PIPE] = ACTIONS(2700), - [anon_sym_e_GT_PIPE] = ACTIONS(2700), - [anon_sym_o_GT_PIPE] = ACTIONS(2700), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2700), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2700), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2700), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2700), - [anon_sym_RPAREN] = ACTIONS(2700), - [anon_sym_GT2] = ACTIONS(2702), - [anon_sym_DASH2] = ACTIONS(2700), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_STAR2] = ACTIONS(2702), - [anon_sym_and2] = ACTIONS(2700), - [anon_sym_xor2] = ACTIONS(2700), - [anon_sym_or2] = ACTIONS(2700), - [anon_sym_not_DASHin2] = ACTIONS(2700), - [anon_sym_has2] = ACTIONS(2700), - [anon_sym_not_DASHhas2] = ACTIONS(2700), - [anon_sym_starts_DASHwith2] = ACTIONS(2700), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2700), - [anon_sym_ends_DASHwith2] = ACTIONS(2700), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2700), - [anon_sym_EQ_EQ2] = ACTIONS(2700), - [anon_sym_BANG_EQ2] = ACTIONS(2700), - [anon_sym_LT2] = ACTIONS(2702), - [anon_sym_LT_EQ2] = ACTIONS(2700), - [anon_sym_GT_EQ2] = ACTIONS(2700), - [anon_sym_EQ_TILDE2] = ACTIONS(2700), - [anon_sym_BANG_TILDE2] = ACTIONS(2700), - [anon_sym_like2] = ACTIONS(2700), - [anon_sym_not_DASHlike2] = ACTIONS(2700), - [anon_sym_STAR_STAR2] = ACTIONS(2927), - [anon_sym_PLUS_PLUS2] = ACTIONS(2927), - [anon_sym_SLASH2] = ACTIONS(2702), - [anon_sym_mod2] = ACTIONS(2700), - [anon_sym_SLASH_SLASH2] = ACTIONS(2700), - [anon_sym_PLUS2] = ACTIONS(2702), - [anon_sym_bit_DASHshl2] = ACTIONS(2700), - [anon_sym_bit_DASHshr2] = ACTIONS(2700), - [anon_sym_bit_DASHand2] = ACTIONS(2700), - [anon_sym_bit_DASHxor2] = ACTIONS(2700), - [anon_sym_bit_DASHor2] = ACTIONS(2700), - [anon_sym_err_GT] = ACTIONS(2702), - [anon_sym_out_GT] = ACTIONS(2702), - [anon_sym_e_GT] = ACTIONS(2702), - [anon_sym_o_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT] = ACTIONS(2702), - [anon_sym_err_GT_GT] = ACTIONS(2700), - [anon_sym_out_GT_GT] = ACTIONS(2700), - [anon_sym_e_GT_GT] = ACTIONS(2700), - [anon_sym_o_GT_GT] = ACTIONS(2700), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2700), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2700), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2700), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1202)] = { - [sym_comment] = STATE(1202), - [ts_builtin_sym_end] = ACTIONS(2393), - [anon_sym_finally] = ACTIONS(2393), - [anon_sym_in] = ACTIONS(2393), - [sym__newline] = ACTIONS(2393), - [anon_sym_SEMI] = ACTIONS(2393), - [anon_sym_PIPE] = ACTIONS(2393), - [anon_sym_err_GT_PIPE] = ACTIONS(2393), - [anon_sym_out_GT_PIPE] = ACTIONS(2393), - [anon_sym_e_GT_PIPE] = ACTIONS(2393), - [anon_sym_o_GT_PIPE] = ACTIONS(2393), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2393), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2393), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2393), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2393), - [anon_sym_GT2] = ACTIONS(2395), - [anon_sym_DASH2] = ACTIONS(2393), - [anon_sym_STAR2] = ACTIONS(2395), - [anon_sym_and2] = ACTIONS(2393), - [anon_sym_xor2] = ACTIONS(2393), - [anon_sym_or2] = ACTIONS(2393), - [anon_sym_not_DASHin2] = ACTIONS(2393), - [anon_sym_has2] = ACTIONS(2393), - [anon_sym_not_DASHhas2] = ACTIONS(2393), - [anon_sym_starts_DASHwith2] = ACTIONS(2393), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2393), - [anon_sym_ends_DASHwith2] = ACTIONS(2393), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2393), - [anon_sym_EQ_EQ2] = ACTIONS(2393), - [anon_sym_BANG_EQ2] = ACTIONS(2393), - [anon_sym_LT2] = ACTIONS(2395), - [anon_sym_LT_EQ2] = ACTIONS(2393), - [anon_sym_GT_EQ2] = ACTIONS(2393), - [anon_sym_EQ_TILDE2] = ACTIONS(2393), - [anon_sym_BANG_TILDE2] = ACTIONS(2393), - [anon_sym_like2] = ACTIONS(2393), - [anon_sym_not_DASHlike2] = ACTIONS(2393), - [anon_sym_STAR_STAR2] = ACTIONS(2393), - [anon_sym_PLUS_PLUS2] = ACTIONS(2393), - [anon_sym_SLASH2] = ACTIONS(2395), - [anon_sym_mod2] = ACTIONS(2393), - [anon_sym_SLASH_SLASH2] = ACTIONS(2393), - [anon_sym_PLUS2] = ACTIONS(2395), - [anon_sym_bit_DASHshl2] = ACTIONS(2393), - [anon_sym_bit_DASHshr2] = ACTIONS(2393), - [anon_sym_bit_DASHand2] = ACTIONS(2393), - [anon_sym_bit_DASHxor2] = ACTIONS(2393), - [anon_sym_bit_DASHor2] = ACTIONS(2393), - [anon_sym_err_GT] = ACTIONS(2395), - [anon_sym_out_GT] = ACTIONS(2395), - [anon_sym_e_GT] = ACTIONS(2395), - [anon_sym_o_GT] = ACTIONS(2395), - [anon_sym_err_PLUSout_GT] = ACTIONS(2395), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2395), - [anon_sym_o_PLUSe_GT] = ACTIONS(2395), - [anon_sym_e_PLUSo_GT] = ACTIONS(2395), - [anon_sym_err_GT_GT] = ACTIONS(2393), - [anon_sym_out_GT_GT] = ACTIONS(2393), - [anon_sym_e_GT_GT] = ACTIONS(2393), - [anon_sym_o_GT_GT] = ACTIONS(2393), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2393), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2393), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2393), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2393), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1203)] = { - [sym_comment] = STATE(1203), - [anon_sym_in] = ACTIONS(2970), - [sym__newline] = ACTIONS(2700), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_err_GT_PIPE] = ACTIONS(2700), - [anon_sym_out_GT_PIPE] = ACTIONS(2700), - [anon_sym_e_GT_PIPE] = ACTIONS(2700), - [anon_sym_o_GT_PIPE] = ACTIONS(2700), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2700), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2700), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2700), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2700), - [anon_sym_RPAREN] = ACTIONS(2700), - [anon_sym_GT2] = ACTIONS(2919), - [anon_sym_DASH2] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_STAR2] = ACTIONS(2923), - [anon_sym_and2] = ACTIONS(2700), - [anon_sym_xor2] = ACTIONS(2700), - [anon_sym_or2] = ACTIONS(2700), - [anon_sym_not_DASHin2] = ACTIONS(2970), - [anon_sym_has2] = ACTIONS(2970), - [anon_sym_not_DASHhas2] = ACTIONS(2970), - [anon_sym_starts_DASHwith2] = ACTIONS(2970), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2970), - [anon_sym_ends_DASHwith2] = ACTIONS(2970), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2970), - [anon_sym_EQ_EQ2] = ACTIONS(2925), - [anon_sym_BANG_EQ2] = ACTIONS(2925), - [anon_sym_LT2] = ACTIONS(2919), - [anon_sym_LT_EQ2] = ACTIONS(2925), - [anon_sym_GT_EQ2] = ACTIONS(2925), - [anon_sym_EQ_TILDE2] = ACTIONS(2972), - [anon_sym_BANG_TILDE2] = ACTIONS(2972), - [anon_sym_like2] = ACTIONS(2972), - [anon_sym_not_DASHlike2] = ACTIONS(2972), - [anon_sym_STAR_STAR2] = ACTIONS(2927), - [anon_sym_PLUS_PLUS2] = ACTIONS(2927), - [anon_sym_SLASH2] = ACTIONS(2923), - [anon_sym_mod2] = ACTIONS(2929), - [anon_sym_SLASH_SLASH2] = ACTIONS(2929), - [anon_sym_PLUS2] = ACTIONS(2931), - [anon_sym_bit_DASHshl2] = ACTIONS(2933), - [anon_sym_bit_DASHshr2] = ACTIONS(2933), - [anon_sym_bit_DASHand2] = ACTIONS(2974), - [anon_sym_bit_DASHxor2] = ACTIONS(2976), - [anon_sym_bit_DASHor2] = ACTIONS(2978), - [anon_sym_err_GT] = ACTIONS(2702), - [anon_sym_out_GT] = ACTIONS(2702), - [anon_sym_e_GT] = ACTIONS(2702), - [anon_sym_o_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT] = ACTIONS(2702), - [anon_sym_err_GT_GT] = ACTIONS(2700), - [anon_sym_out_GT_GT] = ACTIONS(2700), - [anon_sym_e_GT_GT] = ACTIONS(2700), - [anon_sym_o_GT_GT] = ACTIONS(2700), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2700), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2700), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2700), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1204)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1204), - [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(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [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(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [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(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [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(1205)] = { - [aux_sym__repeat_newline] = STATE(1238), - [sym_comment] = STATE(1205), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2916), + [1173] = { + [sym_comment] = STATE(1173), + [ts_builtin_sym_end] = ACTIONS(2537), + [anon_sym_finally] = ACTIONS(2537), + [anon_sym_in] = ACTIONS(2537), + [sym__newline] = ACTIONS(2537), + [anon_sym_SEMI] = ACTIONS(2537), + [anon_sym_PIPE] = ACTIONS(2537), + [anon_sym_err_GT_PIPE] = ACTIONS(2537), + [anon_sym_out_GT_PIPE] = ACTIONS(2537), + [anon_sym_e_GT_PIPE] = ACTIONS(2537), + [anon_sym_o_GT_PIPE] = ACTIONS(2537), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2537), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2537), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2537), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2537), + [anon_sym_GT2] = ACTIONS(2539), + [anon_sym_DASH2] = ACTIONS(2537), + [anon_sym_STAR2] = ACTIONS(2539), + [anon_sym_and2] = ACTIONS(2537), + [anon_sym_xor2] = ACTIONS(2537), + [anon_sym_or2] = ACTIONS(2537), + [anon_sym_not_DASHin2] = ACTIONS(2537), + [anon_sym_has2] = ACTIONS(2537), + [anon_sym_not_DASHhas2] = ACTIONS(2537), + [anon_sym_starts_DASHwith2] = ACTIONS(2537), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2537), + [anon_sym_ends_DASHwith2] = ACTIONS(2537), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2537), + [anon_sym_EQ_EQ2] = ACTIONS(2537), + [anon_sym_BANG_EQ2] = ACTIONS(2537), + [anon_sym_LT2] = ACTIONS(2539), + [anon_sym_LT_EQ2] = ACTIONS(2537), + [anon_sym_GT_EQ2] = ACTIONS(2537), + [anon_sym_EQ_TILDE2] = ACTIONS(2537), + [anon_sym_BANG_TILDE2] = ACTIONS(2537), + [anon_sym_like2] = ACTIONS(2537), + [anon_sym_not_DASHlike2] = ACTIONS(2537), + [anon_sym_STAR_STAR2] = ACTIONS(2537), + [anon_sym_PLUS_PLUS2] = ACTIONS(2537), + [anon_sym_SLASH2] = ACTIONS(2539), + [anon_sym_mod2] = ACTIONS(2537), + [anon_sym_SLASH_SLASH2] = ACTIONS(2537), + [anon_sym_PLUS2] = ACTIONS(2539), + [anon_sym_bit_DASHshl2] = ACTIONS(2537), + [anon_sym_bit_DASHshr2] = ACTIONS(2537), + [anon_sym_bit_DASHand2] = ACTIONS(2537), + [anon_sym_bit_DASHxor2] = ACTIONS(2537), + [anon_sym_bit_DASHor2] = ACTIONS(2537), + [anon_sym_err_GT] = ACTIONS(2539), + [anon_sym_out_GT] = ACTIONS(2539), + [anon_sym_e_GT] = ACTIONS(2539), + [anon_sym_o_GT] = ACTIONS(2539), + [anon_sym_err_PLUSout_GT] = ACTIONS(2539), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2539), + [anon_sym_o_PLUSe_GT] = ACTIONS(2539), + [anon_sym_e_PLUSo_GT] = ACTIONS(2539), + [anon_sym_err_GT_GT] = ACTIONS(2537), + [anon_sym_out_GT_GT] = ACTIONS(2537), + [anon_sym_e_GT_GT] = ACTIONS(2537), + [anon_sym_o_GT_GT] = ACTIONS(2537), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2537), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2537), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2537), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2537), + [anon_sym_POUND] = ACTIONS(3), + }, + [1174] = { + [aux_sym__repeat_newline] = STATE(1239), + [sym_comment] = STATE(1174), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2966), [anon_sym_SEMI] = ACTIONS(2840), [anon_sym_PIPE] = ACTIONS(2840), [anon_sym_err_GT_PIPE] = ACTIONS(2840), @@ -137561,39 +135432,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), [anon_sym_RPAREN] = ACTIONS(2840), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2840), - [anon_sym_xor2] = ACTIONS(2840), + [anon_sym_GT2] = ACTIONS(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2968), + [anon_sym_xor2] = ACTIONS(2970), [anon_sym_or2] = ACTIONS(2840), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2889), - [anon_sym_BANG_TILDE2] = ACTIONS(2889), - [anon_sym_like2] = ACTIONS(2889), - [anon_sym_not_DASHlike2] = ACTIONS(2889), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2840), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2887), + [anon_sym_BANG_TILDE2] = ACTIONS(2887), + [anon_sym_like2] = ACTIONS(2887), + [anon_sym_not_DASHlike2] = ACTIONS(2887), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2897), + [anon_sym_bit_DASHxor2] = ACTIONS(2899), + [anon_sym_bit_DASHor2] = ACTIONS(2972), [anon_sym_err_GT] = ACTIONS(2842), [anon_sym_out_GT] = ACTIONS(2842), [anon_sym_e_GT] = ACTIONS(2842), @@ -137612,144 +135483,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1206)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1206), - [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(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [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(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [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(1207)] = { - [aux_sym__repeat_newline] = STATE(1160), - [sym_comment] = STATE(1207), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2878), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1208)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1208), - [anon_sym_in] = ACTIONS(2844), + [1175] = { + [aux_sym__repeat_newline] = STATE(1279), + [sym_comment] = STATE(1175), + [anon_sym_in] = ACTIONS(2834), + [sym__newline] = ACTIONS(2955), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_err_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_GT_PIPE] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2834), + [anon_sym_STAR2] = ACTIONS(2836), + [anon_sym_and2] = ACTIONS(2834), + [anon_sym_xor2] = ACTIONS(2834), + [anon_sym_or2] = ACTIONS(2834), + [anon_sym_not_DASHin2] = ACTIONS(2834), + [anon_sym_has2] = ACTIONS(2834), + [anon_sym_not_DASHhas2] = ACTIONS(2834), + [anon_sym_starts_DASHwith2] = ACTIONS(2834), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2834), + [anon_sym_ends_DASHwith2] = ACTIONS(2834), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2834), + [anon_sym_EQ_EQ2] = ACTIONS(2834), + [anon_sym_BANG_EQ2] = ACTIONS(2834), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2834), + [anon_sym_GT_EQ2] = ACTIONS(2834), + [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(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2836), + [anon_sym_mod2] = ACTIONS(2834), + [anon_sym_SLASH_SLASH2] = ACTIONS(2834), + [anon_sym_PLUS2] = ACTIONS(2836), + [anon_sym_bit_DASHshl2] = ACTIONS(2834), + [anon_sym_bit_DASHshr2] = ACTIONS(2834), + [anon_sym_bit_DASHand2] = ACTIONS(2834), + [anon_sym_bit_DASHxor2] = ACTIONS(2834), + [anon_sym_bit_DASHor2] = ACTIONS(2834), + [anon_sym_err_GT] = ACTIONS(2836), + [anon_sym_out_GT] = ACTIONS(2836), + [anon_sym_e_GT] = ACTIONS(2836), + [anon_sym_o_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT] = ACTIONS(2836), + [anon_sym_err_GT_GT] = ACTIONS(2834), + [anon_sym_out_GT_GT] = ACTIONS(2834), + [anon_sym_e_GT_GT] = ACTIONS(2834), + [anon_sym_o_GT_GT] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(3), + }, + [1176] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1176), + [anon_sym_in] = ACTIONS(2852), [sym__newline] = ACTIONS(2844), [anon_sym_SEMI] = ACTIONS(2844), [anon_sym_PIPE] = ACTIONS(2844), @@ -137762,39 +135566,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), [anon_sym_RPAREN] = ACTIONS(2844), - [anon_sym_GT2] = ACTIONS(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2844), + [anon_sym_GT2] = ACTIONS(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2960), [anon_sym_xor2] = ACTIONS(2844), [anon_sym_or2] = ACTIONS(2844), - [anon_sym_not_DASHin2] = ACTIONS(2844), - [anon_sym_has2] = ACTIONS(2844), - [anon_sym_not_DASHhas2] = ACTIONS(2844), - [anon_sym_starts_DASHwith2] = ACTIONS(2844), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2844), - [anon_sym_ends_DASHwith2] = ACTIONS(2844), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2844), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2844), - [anon_sym_BANG_TILDE2] = ACTIONS(2844), - [anon_sym_like2] = ACTIONS(2844), - [anon_sym_not_DASHlike2] = ACTIONS(2844), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2844), - [anon_sym_bit_DASHxor2] = ACTIONS(2844), - [anon_sym_bit_DASHor2] = ACTIONS(2844), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2862), + [anon_sym_BANG_TILDE2] = ACTIONS(2862), + [anon_sym_like2] = ACTIONS(2862), + [anon_sym_not_DASHlike2] = ACTIONS(2862), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2923), + [anon_sym_bit_DASHor2] = ACTIONS(2964), [anon_sym_err_GT] = ACTIONS(2846), [anon_sym_out_GT] = ACTIONS(2846), [anon_sym_e_GT] = ACTIONS(2846), @@ -137813,279 +135617,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1209)] = { - [sym_comment] = STATE(1209), - [anon_sym_in] = ACTIONS(2970), - [sym__newline] = ACTIONS(2700), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_err_GT_PIPE] = ACTIONS(2700), - [anon_sym_out_GT_PIPE] = ACTIONS(2700), - [anon_sym_e_GT_PIPE] = ACTIONS(2700), - [anon_sym_o_GT_PIPE] = ACTIONS(2700), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2700), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2700), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2700), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2700), - [anon_sym_RPAREN] = ACTIONS(2700), - [anon_sym_GT2] = ACTIONS(2919), - [anon_sym_DASH2] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_STAR2] = ACTIONS(2923), - [anon_sym_and2] = ACTIONS(2980), - [anon_sym_xor2] = ACTIONS(2700), - [anon_sym_or2] = ACTIONS(2700), - [anon_sym_not_DASHin2] = ACTIONS(2970), - [anon_sym_has2] = ACTIONS(2970), - [anon_sym_not_DASHhas2] = ACTIONS(2970), - [anon_sym_starts_DASHwith2] = ACTIONS(2970), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2970), - [anon_sym_ends_DASHwith2] = ACTIONS(2970), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2970), - [anon_sym_EQ_EQ2] = ACTIONS(2925), - [anon_sym_BANG_EQ2] = ACTIONS(2925), - [anon_sym_LT2] = ACTIONS(2919), - [anon_sym_LT_EQ2] = ACTIONS(2925), - [anon_sym_GT_EQ2] = ACTIONS(2925), - [anon_sym_EQ_TILDE2] = ACTIONS(2972), - [anon_sym_BANG_TILDE2] = ACTIONS(2972), - [anon_sym_like2] = ACTIONS(2972), - [anon_sym_not_DASHlike2] = ACTIONS(2972), - [anon_sym_STAR_STAR2] = ACTIONS(2927), - [anon_sym_PLUS_PLUS2] = ACTIONS(2927), - [anon_sym_SLASH2] = ACTIONS(2923), - [anon_sym_mod2] = ACTIONS(2929), - [anon_sym_SLASH_SLASH2] = ACTIONS(2929), - [anon_sym_PLUS2] = ACTIONS(2931), - [anon_sym_bit_DASHshl2] = ACTIONS(2933), - [anon_sym_bit_DASHshr2] = ACTIONS(2933), - [anon_sym_bit_DASHand2] = ACTIONS(2974), - [anon_sym_bit_DASHxor2] = ACTIONS(2976), - [anon_sym_bit_DASHor2] = ACTIONS(2978), - [anon_sym_err_GT] = ACTIONS(2702), - [anon_sym_out_GT] = ACTIONS(2702), - [anon_sym_e_GT] = ACTIONS(2702), - [anon_sym_o_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT] = ACTIONS(2702), - [anon_sym_err_GT_GT] = ACTIONS(2700), - [anon_sym_out_GT_GT] = ACTIONS(2700), - [anon_sym_e_GT_GT] = ACTIONS(2700), - [anon_sym_o_GT_GT] = ACTIONS(2700), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2700), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2700), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2700), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1210)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1210), - [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(2850), - [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(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [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(1211)] = { - [aux_sym__repeat_newline] = STATE(1249), - [sym_comment] = STATE(1211), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2967), - [anon_sym_SEMI] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_err_GT_PIPE] = ACTIONS(2836), - [anon_sym_out_GT_PIPE] = ACTIONS(2836), - [anon_sym_e_GT_PIPE] = ACTIONS(2836), - [anon_sym_o_GT_PIPE] = ACTIONS(2836), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2836), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2836), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2836), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2836), - [anon_sym_RPAREN] = ACTIONS(2836), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2836), - [anon_sym_xor2] = ACTIONS(2836), - [anon_sym_or2] = ACTIONS(2836), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2889), - [anon_sym_BANG_TILDE2] = ACTIONS(2889), - [anon_sym_like2] = ACTIONS(2889), - [anon_sym_not_DASHlike2] = ACTIONS(2889), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2836), - [anon_sym_err_GT] = ACTIONS(2838), - [anon_sym_out_GT] = ACTIONS(2838), - [anon_sym_e_GT] = ACTIONS(2838), - [anon_sym_o_GT] = ACTIONS(2838), - [anon_sym_err_PLUSout_GT] = ACTIONS(2838), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), - [anon_sym_o_PLUSe_GT] = ACTIONS(2838), - [anon_sym_e_PLUSo_GT] = ACTIONS(2838), - [anon_sym_err_GT_GT] = ACTIONS(2836), - [anon_sym_out_GT_GT] = ACTIONS(2836), - [anon_sym_e_GT_GT] = ACTIONS(2836), - [anon_sym_o_GT_GT] = ACTIONS(2836), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2836), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2836), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2836), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1212)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1212), - [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(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [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(1213)] = { - [aux_sym__repeat_newline] = STATE(1279), - [sym_comment] = STATE(1213), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2916), + [1177] = { + [sym_comment] = STATE(1177), + [ts_builtin_sym_end] = ACTIONS(2533), + [anon_sym_finally] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2533), + [sym__newline] = ACTIONS(2533), + [anon_sym_SEMI] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2533), + [anon_sym_err_GT_PIPE] = ACTIONS(2533), + [anon_sym_out_GT_PIPE] = ACTIONS(2533), + [anon_sym_e_GT_PIPE] = ACTIONS(2533), + [anon_sym_o_GT_PIPE] = ACTIONS(2533), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), + [anon_sym_GT2] = ACTIONS(2535), + [anon_sym_DASH2] = ACTIONS(2533), + [anon_sym_STAR2] = ACTIONS(2535), + [anon_sym_and2] = ACTIONS(2533), + [anon_sym_xor2] = ACTIONS(2533), + [anon_sym_or2] = ACTIONS(2533), + [anon_sym_not_DASHin2] = ACTIONS(2533), + [anon_sym_has2] = ACTIONS(2533), + [anon_sym_not_DASHhas2] = ACTIONS(2533), + [anon_sym_starts_DASHwith2] = ACTIONS(2533), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), + [anon_sym_ends_DASHwith2] = ACTIONS(2533), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), + [anon_sym_EQ_EQ2] = ACTIONS(2533), + [anon_sym_BANG_EQ2] = ACTIONS(2533), + [anon_sym_LT2] = ACTIONS(2535), + [anon_sym_LT_EQ2] = ACTIONS(2533), + [anon_sym_GT_EQ2] = ACTIONS(2533), + [anon_sym_EQ_TILDE2] = ACTIONS(2533), + [anon_sym_BANG_TILDE2] = ACTIONS(2533), + [anon_sym_like2] = ACTIONS(2533), + [anon_sym_not_DASHlike2] = ACTIONS(2533), + [anon_sym_STAR_STAR2] = ACTIONS(2533), + [anon_sym_PLUS_PLUS2] = ACTIONS(2533), + [anon_sym_SLASH2] = ACTIONS(2535), + [anon_sym_mod2] = ACTIONS(2533), + [anon_sym_SLASH_SLASH2] = ACTIONS(2533), + [anon_sym_PLUS2] = ACTIONS(2535), + [anon_sym_bit_DASHshl2] = ACTIONS(2533), + [anon_sym_bit_DASHshr2] = ACTIONS(2533), + [anon_sym_bit_DASHand2] = ACTIONS(2533), + [anon_sym_bit_DASHxor2] = ACTIONS(2533), + [anon_sym_bit_DASHor2] = ACTIONS(2533), + [anon_sym_err_GT] = ACTIONS(2535), + [anon_sym_out_GT] = ACTIONS(2535), + [anon_sym_e_GT] = ACTIONS(2535), + [anon_sym_o_GT] = ACTIONS(2535), + [anon_sym_err_PLUSout_GT] = ACTIONS(2535), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), + [anon_sym_o_PLUSe_GT] = ACTIONS(2535), + [anon_sym_e_PLUSo_GT] = ACTIONS(2535), + [anon_sym_err_GT_GT] = ACTIONS(2533), + [anon_sym_out_GT_GT] = ACTIONS(2533), + [anon_sym_e_GT_GT] = ACTIONS(2533), + [anon_sym_o_GT_GT] = ACTIONS(2533), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_POUND] = ACTIONS(3), + }, + [1178] = { + [aux_sym__repeat_newline] = STATE(1238), + [sym_comment] = STATE(1178), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2876), [anon_sym_SEMI] = ACTIONS(2840), [anon_sym_PIPE] = ACTIONS(2840), [anon_sym_err_GT_PIPE] = ACTIONS(2840), @@ -138097,39 +135700,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), [anon_sym_RPAREN] = ACTIONS(2840), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2840), + [anon_sym_GT2] = ACTIONS(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2968), [anon_sym_xor2] = ACTIONS(2840), [anon_sym_or2] = ACTIONS(2840), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2889), - [anon_sym_BANG_TILDE2] = ACTIONS(2889), - [anon_sym_like2] = ACTIONS(2889), - [anon_sym_not_DASHlike2] = ACTIONS(2889), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2840), - [anon_sym_bit_DASHxor2] = ACTIONS(2840), - [anon_sym_bit_DASHor2] = ACTIONS(2840), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2887), + [anon_sym_BANG_TILDE2] = ACTIONS(2887), + [anon_sym_like2] = ACTIONS(2887), + [anon_sym_not_DASHlike2] = ACTIONS(2887), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2897), + [anon_sym_bit_DASHxor2] = ACTIONS(2899), + [anon_sym_bit_DASHor2] = ACTIONS(2972), [anon_sym_err_GT] = ACTIONS(2842), [anon_sym_out_GT] = ACTIONS(2842), [anon_sym_e_GT] = ACTIONS(2842), @@ -138148,345 +135751,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1214)] = { - [aux_sym__repeat_newline] = STATE(1206), - [sym_comment] = STATE(1214), - [anon_sym_in] = ACTIONS(2836), - [sym__newline] = ACTIONS(2967), - [anon_sym_SEMI] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_err_GT_PIPE] = ACTIONS(2836), - [anon_sym_out_GT_PIPE] = ACTIONS(2836), - [anon_sym_e_GT_PIPE] = ACTIONS(2836), - [anon_sym_o_GT_PIPE] = ACTIONS(2836), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2836), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2836), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2836), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2836), - [anon_sym_RPAREN] = ACTIONS(2836), - [anon_sym_GT2] = ACTIONS(2838), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2836), - [anon_sym_xor2] = ACTIONS(2836), - [anon_sym_or2] = ACTIONS(2836), - [anon_sym_not_DASHin2] = ACTIONS(2836), - [anon_sym_has2] = ACTIONS(2836), - [anon_sym_not_DASHhas2] = ACTIONS(2836), - [anon_sym_starts_DASHwith2] = ACTIONS(2836), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2836), - [anon_sym_ends_DASHwith2] = ACTIONS(2836), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2836), - [anon_sym_EQ_EQ2] = ACTIONS(2836), - [anon_sym_BANG_EQ2] = ACTIONS(2836), - [anon_sym_LT2] = ACTIONS(2838), - [anon_sym_LT_EQ2] = ACTIONS(2836), - [anon_sym_GT_EQ2] = ACTIONS(2836), - [anon_sym_EQ_TILDE2] = ACTIONS(2836), - [anon_sym_BANG_TILDE2] = ACTIONS(2836), - [anon_sym_like2] = ACTIONS(2836), - [anon_sym_not_DASHlike2] = ACTIONS(2836), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2836), - [anon_sym_bit_DASHxor2] = ACTIONS(2836), - [anon_sym_bit_DASHor2] = ACTIONS(2836), - [anon_sym_err_GT] = ACTIONS(2838), - [anon_sym_out_GT] = ACTIONS(2838), - [anon_sym_e_GT] = ACTIONS(2838), - [anon_sym_o_GT] = ACTIONS(2838), - [anon_sym_err_PLUSout_GT] = ACTIONS(2838), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), - [anon_sym_o_PLUSe_GT] = ACTIONS(2838), - [anon_sym_e_PLUSo_GT] = ACTIONS(2838), - [anon_sym_err_GT_GT] = ACTIONS(2836), - [anon_sym_out_GT_GT] = ACTIONS(2836), - [anon_sym_e_GT_GT] = ACTIONS(2836), - [anon_sym_o_GT_GT] = ACTIONS(2836), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2836), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2836), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2836), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1215)] = { - [sym_comment] = STATE(1215), - [anon_sym_in] = ACTIONS(2970), - [sym__newline] = ACTIONS(2700), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_err_GT_PIPE] = ACTIONS(2700), - [anon_sym_out_GT_PIPE] = ACTIONS(2700), - [anon_sym_e_GT_PIPE] = ACTIONS(2700), - [anon_sym_o_GT_PIPE] = ACTIONS(2700), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2700), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2700), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2700), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2700), - [anon_sym_RPAREN] = ACTIONS(2700), - [anon_sym_GT2] = ACTIONS(2919), - [anon_sym_DASH2] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_STAR2] = ACTIONS(2923), - [anon_sym_and2] = ACTIONS(2980), - [anon_sym_xor2] = ACTIONS(2982), - [anon_sym_or2] = ACTIONS(2700), - [anon_sym_not_DASHin2] = ACTIONS(2970), - [anon_sym_has2] = ACTIONS(2970), - [anon_sym_not_DASHhas2] = ACTIONS(2970), - [anon_sym_starts_DASHwith2] = ACTIONS(2970), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2970), - [anon_sym_ends_DASHwith2] = ACTIONS(2970), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2970), - [anon_sym_EQ_EQ2] = ACTIONS(2925), - [anon_sym_BANG_EQ2] = ACTIONS(2925), - [anon_sym_LT2] = ACTIONS(2919), - [anon_sym_LT_EQ2] = ACTIONS(2925), - [anon_sym_GT_EQ2] = ACTIONS(2925), - [anon_sym_EQ_TILDE2] = ACTIONS(2972), - [anon_sym_BANG_TILDE2] = ACTIONS(2972), - [anon_sym_like2] = ACTIONS(2972), - [anon_sym_not_DASHlike2] = ACTIONS(2972), - [anon_sym_STAR_STAR2] = ACTIONS(2927), - [anon_sym_PLUS_PLUS2] = ACTIONS(2927), - [anon_sym_SLASH2] = ACTIONS(2923), - [anon_sym_mod2] = ACTIONS(2929), - [anon_sym_SLASH_SLASH2] = ACTIONS(2929), - [anon_sym_PLUS2] = ACTIONS(2931), - [anon_sym_bit_DASHshl2] = ACTIONS(2933), - [anon_sym_bit_DASHshr2] = ACTIONS(2933), - [anon_sym_bit_DASHand2] = ACTIONS(2974), - [anon_sym_bit_DASHxor2] = ACTIONS(2976), - [anon_sym_bit_DASHor2] = ACTIONS(2978), - [anon_sym_err_GT] = ACTIONS(2702), - [anon_sym_out_GT] = ACTIONS(2702), - [anon_sym_e_GT] = ACTIONS(2702), - [anon_sym_o_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT] = ACTIONS(2702), - [anon_sym_err_GT_GT] = ACTIONS(2700), - [anon_sym_out_GT_GT] = ACTIONS(2700), - [anon_sym_e_GT_GT] = ACTIONS(2700), - [anon_sym_o_GT_GT] = ACTIONS(2700), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2700), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2700), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2700), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1216)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1216), - [anon_sym_in] = ACTIONS(2858), - [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(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2866), - [anon_sym_BANG_TILDE2] = ACTIONS(2866), - [anon_sym_like2] = ACTIONS(2866), - [anon_sym_not_DASHlike2] = ACTIONS(2866), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2870), - [anon_sym_bit_DASHxor2] = ACTIONS(2872), - [anon_sym_bit_DASHor2] = ACTIONS(2874), - [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(1217)] = { - [sym_comment] = STATE(1217), - [anon_sym_in] = ACTIONS(2970), - [sym__newline] = ACTIONS(2700), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_err_GT_PIPE] = ACTIONS(2700), - [anon_sym_out_GT_PIPE] = ACTIONS(2700), - [anon_sym_e_GT_PIPE] = ACTIONS(2700), - [anon_sym_o_GT_PIPE] = ACTIONS(2700), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2700), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2700), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2700), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2700), - [anon_sym_RPAREN] = ACTIONS(2700), - [anon_sym_GT2] = ACTIONS(2919), - [anon_sym_DASH2] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_STAR2] = ACTIONS(2923), - [anon_sym_and2] = ACTIONS(2700), - [anon_sym_xor2] = ACTIONS(2700), - [anon_sym_or2] = ACTIONS(2700), - [anon_sym_not_DASHin2] = ACTIONS(2970), - [anon_sym_has2] = ACTIONS(2970), - [anon_sym_not_DASHhas2] = ACTIONS(2970), - [anon_sym_starts_DASHwith2] = ACTIONS(2970), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2970), - [anon_sym_ends_DASHwith2] = ACTIONS(2970), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2970), - [anon_sym_EQ_EQ2] = ACTIONS(2925), - [anon_sym_BANG_EQ2] = ACTIONS(2925), - [anon_sym_LT2] = ACTIONS(2919), - [anon_sym_LT_EQ2] = ACTIONS(2925), - [anon_sym_GT_EQ2] = ACTIONS(2925), - [anon_sym_EQ_TILDE2] = ACTIONS(2700), - [anon_sym_BANG_TILDE2] = ACTIONS(2700), - [anon_sym_like2] = ACTIONS(2700), - [anon_sym_not_DASHlike2] = ACTIONS(2700), - [anon_sym_STAR_STAR2] = ACTIONS(2927), - [anon_sym_PLUS_PLUS2] = ACTIONS(2927), - [anon_sym_SLASH2] = ACTIONS(2923), - [anon_sym_mod2] = ACTIONS(2929), - [anon_sym_SLASH_SLASH2] = ACTIONS(2929), - [anon_sym_PLUS2] = ACTIONS(2931), - [anon_sym_bit_DASHshl2] = ACTIONS(2933), - [anon_sym_bit_DASHshr2] = ACTIONS(2933), - [anon_sym_bit_DASHand2] = ACTIONS(2700), - [anon_sym_bit_DASHxor2] = ACTIONS(2700), - [anon_sym_bit_DASHor2] = ACTIONS(2700), - [anon_sym_err_GT] = ACTIONS(2702), - [anon_sym_out_GT] = ACTIONS(2702), - [anon_sym_e_GT] = ACTIONS(2702), - [anon_sym_o_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT] = ACTIONS(2702), - [anon_sym_err_GT_GT] = ACTIONS(2700), - [anon_sym_out_GT_GT] = ACTIONS(2700), - [anon_sym_e_GT_GT] = ACTIONS(2700), - [anon_sym_o_GT_GT] = ACTIONS(2700), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2700), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2700), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2700), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1218)] = { - [sym_comment] = STATE(1218), - [ts_builtin_sym_end] = ACTIONS(914), - [anon_sym_in] = ACTIONS(914), - [sym__newline] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_err_GT_PIPE] = ACTIONS(914), - [anon_sym_out_GT_PIPE] = ACTIONS(914), - [anon_sym_e_GT_PIPE] = ACTIONS(914), - [anon_sym_o_GT_PIPE] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(914), - [anon_sym_GT2] = ACTIONS(811), - [anon_sym_DASH2] = ACTIONS(914), - [anon_sym_STAR2] = ACTIONS(811), - [anon_sym_and2] = ACTIONS(914), - [anon_sym_xor2] = ACTIONS(914), - [anon_sym_or2] = ACTIONS(914), - [anon_sym_not_DASHin2] = ACTIONS(914), - [anon_sym_has2] = ACTIONS(914), - [anon_sym_not_DASHhas2] = ACTIONS(914), - [anon_sym_starts_DASHwith2] = ACTIONS(914), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(914), - [anon_sym_ends_DASHwith2] = ACTIONS(914), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(914), - [anon_sym_EQ_EQ2] = ACTIONS(914), - [anon_sym_BANG_EQ2] = ACTIONS(914), - [anon_sym_LT2] = ACTIONS(811), - [anon_sym_LT_EQ2] = ACTIONS(914), - [anon_sym_GT_EQ2] = ACTIONS(914), - [anon_sym_EQ_TILDE2] = ACTIONS(914), - [anon_sym_BANG_TILDE2] = ACTIONS(914), - [anon_sym_like2] = ACTIONS(914), - [anon_sym_not_DASHlike2] = ACTIONS(914), - [anon_sym_STAR_STAR2] = ACTIONS(914), - [anon_sym_PLUS_PLUS2] = ACTIONS(914), - [anon_sym_SLASH2] = ACTIONS(811), - [anon_sym_mod2] = ACTIONS(914), - [anon_sym_SLASH_SLASH2] = ACTIONS(914), - [anon_sym_PLUS2] = ACTIONS(811), - [anon_sym_bit_DASHshl2] = ACTIONS(914), - [anon_sym_bit_DASHshr2] = ACTIONS(914), - [anon_sym_bit_DASHand2] = ACTIONS(914), - [anon_sym_bit_DASHxor2] = ACTIONS(914), - [anon_sym_bit_DASHor2] = ACTIONS(914), - [anon_sym_err_GT] = ACTIONS(811), - [anon_sym_out_GT] = ACTIONS(811), - [anon_sym_e_GT] = ACTIONS(811), - [anon_sym_o_GT] = ACTIONS(811), - [anon_sym_err_PLUSout_GT] = ACTIONS(811), - [anon_sym_out_PLUSerr_GT] = ACTIONS(811), - [anon_sym_o_PLUSe_GT] = ACTIONS(811), - [anon_sym_e_PLUSo_GT] = ACTIONS(811), - [anon_sym_err_GT_GT] = ACTIONS(914), - [anon_sym_out_GT_GT] = ACTIONS(914), - [anon_sym_e_GT_GT] = ACTIONS(914), - [anon_sym_o_GT_GT] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), - [sym__unquoted_pattern] = ACTIONS(1864), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1219)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1219), - [anon_sym_in] = ACTIONS(2844), + [1179] = { + [aux_sym__repeat_newline] = STATE(1284), + [sym_comment] = STATE(1179), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2955), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_err_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_GT_PIPE] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_GT2] = ACTIONS(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2834), + [anon_sym_xor2] = ACTIONS(2834), + [anon_sym_or2] = ACTIONS(2834), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2887), + [anon_sym_BANG_TILDE2] = ACTIONS(2887), + [anon_sym_like2] = ACTIONS(2887), + [anon_sym_not_DASHlike2] = ACTIONS(2887), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2897), + [anon_sym_bit_DASHxor2] = ACTIONS(2899), + [anon_sym_bit_DASHor2] = ACTIONS(2972), + [anon_sym_err_GT] = ACTIONS(2836), + [anon_sym_out_GT] = ACTIONS(2836), + [anon_sym_e_GT] = ACTIONS(2836), + [anon_sym_o_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT] = ACTIONS(2836), + [anon_sym_err_GT_GT] = ACTIONS(2834), + [anon_sym_out_GT_GT] = ACTIONS(2834), + [anon_sym_e_GT_GT] = ACTIONS(2834), + [anon_sym_o_GT_GT] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(3), + }, + [1180] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1180), + [anon_sym_in] = ACTIONS(2852), [sym__newline] = ACTIONS(2844), [anon_sym_SEMI] = ACTIONS(2844), [anon_sym_PIPE] = ACTIONS(2844), @@ -138499,39 +135834,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), [anon_sym_RPAREN] = ACTIONS(2844), - [anon_sym_GT2] = ACTIONS(2846), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_GT2] = ACTIONS(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), [anon_sym_and2] = ACTIONS(2844), [anon_sym_xor2] = ACTIONS(2844), [anon_sym_or2] = ACTIONS(2844), - [anon_sym_not_DASHin2] = ACTIONS(2844), - [anon_sym_has2] = ACTIONS(2844), - [anon_sym_not_DASHhas2] = ACTIONS(2844), - [anon_sym_starts_DASHwith2] = ACTIONS(2844), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2844), - [anon_sym_ends_DASHwith2] = ACTIONS(2844), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2844), - [anon_sym_EQ_EQ2] = ACTIONS(2844), - [anon_sym_BANG_EQ2] = ACTIONS(2844), - [anon_sym_LT2] = ACTIONS(2846), - [anon_sym_LT_EQ2] = ACTIONS(2844), - [anon_sym_GT_EQ2] = ACTIONS(2844), - [anon_sym_EQ_TILDE2] = ACTIONS(2844), - [anon_sym_BANG_TILDE2] = ACTIONS(2844), - [anon_sym_like2] = ACTIONS(2844), - [anon_sym_not_DASHlike2] = ACTIONS(2844), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2844), - [anon_sym_bit_DASHxor2] = ACTIONS(2844), - [anon_sym_bit_DASHor2] = ACTIONS(2844), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2862), + [anon_sym_BANG_TILDE2] = ACTIONS(2862), + [anon_sym_like2] = ACTIONS(2862), + [anon_sym_not_DASHlike2] = ACTIONS(2862), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2923), + [anon_sym_bit_DASHor2] = ACTIONS(2964), [anon_sym_err_GT] = ACTIONS(2846), [anon_sym_out_GT] = ACTIONS(2846), [anon_sym_e_GT] = ACTIONS(2846), @@ -138550,614 +135885,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1220)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1220), - [anon_sym_in] = ACTIONS(2858), - [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(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2862), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2866), - [anon_sym_BANG_TILDE2] = ACTIONS(2866), - [anon_sym_like2] = ACTIONS(2866), - [anon_sym_not_DASHlike2] = ACTIONS(2866), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2870), - [anon_sym_bit_DASHxor2] = ACTIONS(2872), - [anon_sym_bit_DASHor2] = ACTIONS(2874), - [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(1221)] = { - [sym_comment] = STATE(1221), - [anon_sym_in] = ACTIONS(2700), - [sym__newline] = ACTIONS(2700), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_err_GT_PIPE] = ACTIONS(2700), - [anon_sym_out_GT_PIPE] = ACTIONS(2700), - [anon_sym_e_GT_PIPE] = ACTIONS(2700), - [anon_sym_o_GT_PIPE] = ACTIONS(2700), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2700), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2700), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2700), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2700), - [anon_sym_RPAREN] = ACTIONS(2700), - [anon_sym_GT2] = ACTIONS(2702), - [anon_sym_DASH2] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_STAR2] = ACTIONS(2923), - [anon_sym_and2] = ACTIONS(2700), - [anon_sym_xor2] = ACTIONS(2700), - [anon_sym_or2] = ACTIONS(2700), - [anon_sym_not_DASHin2] = ACTIONS(2700), - [anon_sym_has2] = ACTIONS(2700), - [anon_sym_not_DASHhas2] = ACTIONS(2700), - [anon_sym_starts_DASHwith2] = ACTIONS(2700), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2700), - [anon_sym_ends_DASHwith2] = ACTIONS(2700), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2700), - [anon_sym_EQ_EQ2] = ACTIONS(2700), - [anon_sym_BANG_EQ2] = ACTIONS(2700), - [anon_sym_LT2] = ACTIONS(2702), - [anon_sym_LT_EQ2] = ACTIONS(2700), - [anon_sym_GT_EQ2] = ACTIONS(2700), - [anon_sym_EQ_TILDE2] = ACTIONS(2700), - [anon_sym_BANG_TILDE2] = ACTIONS(2700), - [anon_sym_like2] = ACTIONS(2700), - [anon_sym_not_DASHlike2] = ACTIONS(2700), - [anon_sym_STAR_STAR2] = ACTIONS(2927), - [anon_sym_PLUS_PLUS2] = ACTIONS(2927), - [anon_sym_SLASH2] = ACTIONS(2923), - [anon_sym_mod2] = ACTIONS(2929), - [anon_sym_SLASH_SLASH2] = ACTIONS(2929), - [anon_sym_PLUS2] = ACTIONS(2931), - [anon_sym_bit_DASHshl2] = ACTIONS(2700), - [anon_sym_bit_DASHshr2] = ACTIONS(2700), - [anon_sym_bit_DASHand2] = ACTIONS(2700), - [anon_sym_bit_DASHxor2] = ACTIONS(2700), - [anon_sym_bit_DASHor2] = ACTIONS(2700), - [anon_sym_err_GT] = ACTIONS(2702), - [anon_sym_out_GT] = ACTIONS(2702), - [anon_sym_e_GT] = ACTIONS(2702), - [anon_sym_o_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT] = ACTIONS(2702), - [anon_sym_err_GT_GT] = ACTIONS(2700), - [anon_sym_out_GT_GT] = ACTIONS(2700), - [anon_sym_e_GT_GT] = ACTIONS(2700), - [anon_sym_o_GT_GT] = ACTIONS(2700), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2700), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2700), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2700), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1222)] = { - [sym_comment] = STATE(1222), - [ts_builtin_sym_end] = ACTIONS(2584), - [anon_sym_finally] = 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_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(1223)] = { - [sym_comment] = STATE(1223), - [anon_sym_in] = ACTIONS(2970), - [sym__newline] = ACTIONS(2700), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_err_GT_PIPE] = ACTIONS(2700), - [anon_sym_out_GT_PIPE] = ACTIONS(2700), - [anon_sym_e_GT_PIPE] = ACTIONS(2700), - [anon_sym_o_GT_PIPE] = ACTIONS(2700), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2700), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2700), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2700), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2700), - [anon_sym_RPAREN] = ACTIONS(2700), - [anon_sym_GT2] = ACTIONS(2919), - [anon_sym_DASH2] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_STAR2] = ACTIONS(2923), - [anon_sym_and2] = ACTIONS(2700), - [anon_sym_xor2] = ACTIONS(2700), - [anon_sym_or2] = ACTIONS(2700), - [anon_sym_not_DASHin2] = ACTIONS(2970), - [anon_sym_has2] = ACTIONS(2970), - [anon_sym_not_DASHhas2] = ACTIONS(2970), - [anon_sym_starts_DASHwith2] = ACTIONS(2970), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2970), - [anon_sym_ends_DASHwith2] = ACTIONS(2970), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2970), - [anon_sym_EQ_EQ2] = ACTIONS(2925), - [anon_sym_BANG_EQ2] = ACTIONS(2925), - [anon_sym_LT2] = ACTIONS(2919), - [anon_sym_LT_EQ2] = ACTIONS(2925), - [anon_sym_GT_EQ2] = ACTIONS(2925), - [anon_sym_EQ_TILDE2] = ACTIONS(2972), - [anon_sym_BANG_TILDE2] = ACTIONS(2972), - [anon_sym_like2] = ACTIONS(2972), - [anon_sym_not_DASHlike2] = ACTIONS(2972), - [anon_sym_STAR_STAR2] = ACTIONS(2927), - [anon_sym_PLUS_PLUS2] = ACTIONS(2927), - [anon_sym_SLASH2] = ACTIONS(2923), - [anon_sym_mod2] = ACTIONS(2929), - [anon_sym_SLASH_SLASH2] = ACTIONS(2929), - [anon_sym_PLUS2] = ACTIONS(2931), - [anon_sym_bit_DASHshl2] = ACTIONS(2933), - [anon_sym_bit_DASHshr2] = ACTIONS(2933), - [anon_sym_bit_DASHand2] = ACTIONS(2700), - [anon_sym_bit_DASHxor2] = ACTIONS(2700), - [anon_sym_bit_DASHor2] = ACTIONS(2700), - [anon_sym_err_GT] = ACTIONS(2702), - [anon_sym_out_GT] = ACTIONS(2702), - [anon_sym_e_GT] = ACTIONS(2702), - [anon_sym_o_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT] = ACTIONS(2702), - [anon_sym_err_GT_GT] = ACTIONS(2700), - [anon_sym_out_GT_GT] = ACTIONS(2700), - [anon_sym_e_GT_GT] = ACTIONS(2700), - [anon_sym_o_GT_GT] = ACTIONS(2700), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2700), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2700), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2700), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1224)] = { - [aux_sym__repeat_newline] = STATE(1210), - [sym_comment] = STATE(1224), - [anon_sym_in] = ACTIONS(2836), - [sym__newline] = ACTIONS(2967), - [anon_sym_SEMI] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_err_GT_PIPE] = ACTIONS(2836), - [anon_sym_out_GT_PIPE] = ACTIONS(2836), - [anon_sym_e_GT_PIPE] = ACTIONS(2836), - [anon_sym_o_GT_PIPE] = ACTIONS(2836), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2836), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2836), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2836), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2836), - [anon_sym_RPAREN] = ACTIONS(2836), - [anon_sym_GT2] = ACTIONS(2838), - [anon_sym_DASH2] = ACTIONS(2836), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2836), - [anon_sym_xor2] = ACTIONS(2836), - [anon_sym_or2] = ACTIONS(2836), - [anon_sym_not_DASHin2] = ACTIONS(2836), - [anon_sym_has2] = ACTIONS(2836), - [anon_sym_not_DASHhas2] = ACTIONS(2836), - [anon_sym_starts_DASHwith2] = ACTIONS(2836), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2836), - [anon_sym_ends_DASHwith2] = ACTIONS(2836), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2836), - [anon_sym_EQ_EQ2] = ACTIONS(2836), - [anon_sym_BANG_EQ2] = ACTIONS(2836), - [anon_sym_LT2] = ACTIONS(2838), - [anon_sym_LT_EQ2] = ACTIONS(2836), - [anon_sym_GT_EQ2] = ACTIONS(2836), - [anon_sym_EQ_TILDE2] = ACTIONS(2836), - [anon_sym_BANG_TILDE2] = ACTIONS(2836), - [anon_sym_like2] = ACTIONS(2836), - [anon_sym_not_DASHlike2] = ACTIONS(2836), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2838), - [anon_sym_bit_DASHshl2] = ACTIONS(2836), - [anon_sym_bit_DASHshr2] = ACTIONS(2836), - [anon_sym_bit_DASHand2] = ACTIONS(2836), - [anon_sym_bit_DASHxor2] = ACTIONS(2836), - [anon_sym_bit_DASHor2] = ACTIONS(2836), - [anon_sym_err_GT] = ACTIONS(2838), - [anon_sym_out_GT] = ACTIONS(2838), - [anon_sym_e_GT] = ACTIONS(2838), - [anon_sym_o_GT] = ACTIONS(2838), - [anon_sym_err_PLUSout_GT] = ACTIONS(2838), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), - [anon_sym_o_PLUSe_GT] = ACTIONS(2838), - [anon_sym_e_PLUSo_GT] = ACTIONS(2838), - [anon_sym_err_GT_GT] = ACTIONS(2836), - [anon_sym_out_GT_GT] = ACTIONS(2836), - [anon_sym_e_GT_GT] = ACTIONS(2836), - [anon_sym_o_GT_GT] = ACTIONS(2836), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2836), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2836), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2836), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1225)] = { - [sym_comment] = STATE(1225), - [anon_sym_in] = ACTIONS(2970), - [sym__newline] = ACTIONS(2700), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_err_GT_PIPE] = ACTIONS(2700), - [anon_sym_out_GT_PIPE] = ACTIONS(2700), - [anon_sym_e_GT_PIPE] = ACTIONS(2700), - [anon_sym_o_GT_PIPE] = ACTIONS(2700), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2700), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2700), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2700), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2700), - [anon_sym_RPAREN] = ACTIONS(2700), - [anon_sym_GT2] = ACTIONS(2919), - [anon_sym_DASH2] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_STAR2] = ACTIONS(2923), - [anon_sym_and2] = ACTIONS(2700), - [anon_sym_xor2] = ACTIONS(2700), - [anon_sym_or2] = ACTIONS(2700), - [anon_sym_not_DASHin2] = ACTIONS(2970), - [anon_sym_has2] = ACTIONS(2970), - [anon_sym_not_DASHhas2] = ACTIONS(2970), - [anon_sym_starts_DASHwith2] = ACTIONS(2970), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2970), - [anon_sym_ends_DASHwith2] = ACTIONS(2970), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2970), - [anon_sym_EQ_EQ2] = ACTIONS(2925), - [anon_sym_BANG_EQ2] = ACTIONS(2925), - [anon_sym_LT2] = ACTIONS(2919), - [anon_sym_LT_EQ2] = ACTIONS(2925), - [anon_sym_GT_EQ2] = ACTIONS(2925), - [anon_sym_EQ_TILDE2] = ACTIONS(2972), - [anon_sym_BANG_TILDE2] = ACTIONS(2972), - [anon_sym_like2] = ACTIONS(2972), - [anon_sym_not_DASHlike2] = ACTIONS(2972), - [anon_sym_STAR_STAR2] = ACTIONS(2927), - [anon_sym_PLUS_PLUS2] = ACTIONS(2927), - [anon_sym_SLASH2] = ACTIONS(2923), - [anon_sym_mod2] = ACTIONS(2929), - [anon_sym_SLASH_SLASH2] = ACTIONS(2929), - [anon_sym_PLUS2] = ACTIONS(2931), - [anon_sym_bit_DASHshl2] = ACTIONS(2933), - [anon_sym_bit_DASHshr2] = ACTIONS(2933), - [anon_sym_bit_DASHand2] = ACTIONS(2974), - [anon_sym_bit_DASHxor2] = ACTIONS(2700), - [anon_sym_bit_DASHor2] = ACTIONS(2700), - [anon_sym_err_GT] = ACTIONS(2702), - [anon_sym_out_GT] = ACTIONS(2702), - [anon_sym_e_GT] = ACTIONS(2702), - [anon_sym_o_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT] = ACTIONS(2702), - [anon_sym_err_GT_GT] = ACTIONS(2700), - [anon_sym_out_GT_GT] = ACTIONS(2700), - [anon_sym_e_GT_GT] = ACTIONS(2700), - [anon_sym_o_GT_GT] = ACTIONS(2700), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2700), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2700), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2700), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1226)] = { - [sym_comment] = STATE(1226), - [anon_sym_in] = ACTIONS(2970), - [sym__newline] = ACTIONS(2700), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_err_GT_PIPE] = ACTIONS(2700), - [anon_sym_out_GT_PIPE] = ACTIONS(2700), - [anon_sym_e_GT_PIPE] = ACTIONS(2700), - [anon_sym_o_GT_PIPE] = ACTIONS(2700), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2700), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2700), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2700), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2700), - [anon_sym_RPAREN] = ACTIONS(2700), - [anon_sym_GT2] = ACTIONS(2919), - [anon_sym_DASH2] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_STAR2] = ACTIONS(2923), - [anon_sym_and2] = ACTIONS(2700), - [anon_sym_xor2] = ACTIONS(2700), - [anon_sym_or2] = ACTIONS(2700), - [anon_sym_not_DASHin2] = ACTIONS(2970), - [anon_sym_has2] = ACTIONS(2970), - [anon_sym_not_DASHhas2] = ACTIONS(2970), - [anon_sym_starts_DASHwith2] = ACTIONS(2970), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2970), - [anon_sym_ends_DASHwith2] = ACTIONS(2970), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2970), - [anon_sym_EQ_EQ2] = ACTIONS(2925), - [anon_sym_BANG_EQ2] = ACTIONS(2925), - [anon_sym_LT2] = ACTIONS(2919), - [anon_sym_LT_EQ2] = ACTIONS(2925), - [anon_sym_GT_EQ2] = ACTIONS(2925), - [anon_sym_EQ_TILDE2] = ACTIONS(2972), - [anon_sym_BANG_TILDE2] = ACTIONS(2972), - [anon_sym_like2] = ACTIONS(2972), - [anon_sym_not_DASHlike2] = ACTIONS(2972), - [anon_sym_STAR_STAR2] = ACTIONS(2927), - [anon_sym_PLUS_PLUS2] = ACTIONS(2927), - [anon_sym_SLASH2] = ACTIONS(2923), - [anon_sym_mod2] = ACTIONS(2929), - [anon_sym_SLASH_SLASH2] = ACTIONS(2929), - [anon_sym_PLUS2] = ACTIONS(2931), - [anon_sym_bit_DASHshl2] = ACTIONS(2933), - [anon_sym_bit_DASHshr2] = ACTIONS(2933), - [anon_sym_bit_DASHand2] = ACTIONS(2974), - [anon_sym_bit_DASHxor2] = ACTIONS(2976), - [anon_sym_bit_DASHor2] = ACTIONS(2700), - [anon_sym_err_GT] = ACTIONS(2702), - [anon_sym_out_GT] = ACTIONS(2702), - [anon_sym_e_GT] = ACTIONS(2702), - [anon_sym_o_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT] = ACTIONS(2702), - [anon_sym_err_GT_GT] = ACTIONS(2700), - [anon_sym_out_GT_GT] = ACTIONS(2700), - [anon_sym_e_GT_GT] = ACTIONS(2700), - [anon_sym_o_GT_GT] = ACTIONS(2700), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2700), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2700), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2700), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1227)] = { - [sym__ctrl_match_body] = STATE(5382), - [sym_match_arm] = STATE(4897), - [sym_default_arm] = STATE(4897), - [sym_match_pattern] = STATE(5399), - [sym__match_pattern] = STATE(4099), - [sym__match_pattern_expression] = STATE(4655), - [sym__match_pattern_value] = STATE(4656), - [sym__match_pattern_list] = STATE(4659), - [sym__match_pattern_record] = STATE(4663), - [sym_expr_parenthesized] = STATE(3961), - [sym_val_range] = STATE(4656), - [sym__val_range] = STATE(5303), - [sym_val_nothing] = STATE(4663), - [sym_val_bool] = STATE(4358), - [sym_val_variable] = STATE(3966), - [sym_val_number] = STATE(4663), - [sym__val_number_decimal] = STATE(3674), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(4663), - [sym_val_filesize] = STATE(4663), - [sym_val_binary] = STATE(4663), - [sym_val_string] = STATE(4663), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_table] = STATE(4663), - [sym_unquoted] = STATE(4665), - [sym__unquoted_anonymous_prefix] = STATE(5303), - [sym_comment] = STATE(1227), - [aux_sym__types_body_repeat1] = STATE(1373), - [aux_sym__ctrl_match_body_repeat1] = STATE(1407), - [anon_sym_true] = ACTIONS(2935), - [anon_sym_false] = ACTIONS(2935), - [anon_sym_null] = ACTIONS(2937), - [aux_sym_cmd_identifier_token3] = ACTIONS(2939), - [aux_sym_cmd_identifier_token4] = ACTIONS(2939), - [aux_sym_cmd_identifier_token5] = ACTIONS(2939), - [sym__newline] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_DOLLAR] = ACTIONS(2945), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_RBRACE] = ACTIONS(2984), - [anon_sym__] = ACTIONS(2951), - [anon_sym_DOT_DOT] = ACTIONS(2953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2955), - [anon_sym_DOT_DOT_LT] = ACTIONS(2955), - [aux_sym__val_number_decimal_token1] = ACTIONS(2957), - [aux_sym__val_number_decimal_token2] = ACTIONS(2959), - [aux_sym__val_number_decimal_token3] = ACTIONS(2961), - [aux_sym__val_number_decimal_token4] = ACTIONS(2961), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1770), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1772), - }, - [STATE(1228)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1228), - [anon_sym_in] = ACTIONS(2858), - [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(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2862), - [anon_sym_xor2] = ACTIONS(2911), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2866), - [anon_sym_BANG_TILDE2] = ACTIONS(2866), - [anon_sym_like2] = ACTIONS(2866), - [anon_sym_not_DASHlike2] = ACTIONS(2866), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2870), - [anon_sym_bit_DASHxor2] = ACTIONS(2872), - [anon_sym_bit_DASHor2] = ACTIONS(2874), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1229)] = { - [aux_sym__repeat_newline] = STATE(1263), - [sym_comment] = STATE(1229), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2903), + [1181] = { + [sym_comment] = STATE(1181), + [anon_sym_in] = ACTIONS(2901), + [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(2903), + [anon_sym_DASH2] = ACTIONS(2905), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_STAR2] = ACTIONS(2907), + [anon_sym_and2] = ACTIONS(2624), + [anon_sym_xor2] = ACTIONS(2624), + [anon_sym_or2] = ACTIONS(2624), + [anon_sym_not_DASHin2] = ACTIONS(2901), + [anon_sym_has2] = ACTIONS(2901), + [anon_sym_not_DASHhas2] = ACTIONS(2901), + [anon_sym_starts_DASHwith2] = ACTIONS(2901), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2901), + [anon_sym_ends_DASHwith2] = ACTIONS(2901), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2901), + [anon_sym_EQ_EQ2] = ACTIONS(2909), + [anon_sym_BANG_EQ2] = ACTIONS(2909), + [anon_sym_LT2] = ACTIONS(2903), + [anon_sym_LT_EQ2] = ACTIONS(2909), + [anon_sym_GT_EQ2] = ACTIONS(2909), + [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(2913), + [anon_sym_PLUS_PLUS2] = ACTIONS(2913), + [anon_sym_SLASH2] = ACTIONS(2907), + [anon_sym_mod2] = ACTIONS(2915), + [anon_sym_SLASH_SLASH2] = ACTIONS(2915), + [anon_sym_PLUS2] = ACTIONS(2917), + [anon_sym_bit_DASHshl2] = ACTIONS(2919), + [anon_sym_bit_DASHshr2] = ACTIONS(2919), + [anon_sym_bit_DASHand2] = ACTIONS(2624), + [anon_sym_bit_DASHxor2] = ACTIONS(2624), + [anon_sym_bit_DASHor2] = ACTIONS(2624), + [anon_sym_err_GT] = ACTIONS(2626), + [anon_sym_out_GT] = ACTIONS(2626), + [anon_sym_e_GT] = ACTIONS(2626), + [anon_sym_o_GT] = ACTIONS(2626), + [anon_sym_err_PLUSout_GT] = ACTIONS(2626), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2626), + [anon_sym_o_PLUSe_GT] = ACTIONS(2626), + [anon_sym_e_PLUSo_GT] = ACTIONS(2626), + [anon_sym_err_GT_GT] = ACTIONS(2624), + [anon_sym_out_GT_GT] = ACTIONS(2624), + [anon_sym_e_GT_GT] = ACTIONS(2624), + [anon_sym_o_GT_GT] = ACTIONS(2624), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2624), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2624), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2624), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2624), + [anon_sym_POUND] = ACTIONS(3), + }, + [1182] = { + [aux_sym__repeat_newline] = STATE(1237), + [sym_comment] = STATE(1182), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2876), [anon_sym_SEMI] = ACTIONS(2840), [anon_sym_PIPE] = ACTIONS(2840), [anon_sym_err_GT_PIPE] = ACTIONS(2840), @@ -139169,39 +135968,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), [anon_sym_RPAREN] = ACTIONS(2840), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2905), - [anon_sym_xor2] = ACTIONS(2907), + [anon_sym_GT2] = ACTIONS(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2840), + [anon_sym_xor2] = ACTIONS(2840), [anon_sym_or2] = ACTIONS(2840), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2889), - [anon_sym_BANG_TILDE2] = ACTIONS(2889), - [anon_sym_like2] = ACTIONS(2889), - [anon_sym_not_DASHlike2] = ACTIONS(2889), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2909), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2887), + [anon_sym_BANG_TILDE2] = ACTIONS(2887), + [anon_sym_like2] = ACTIONS(2887), + [anon_sym_not_DASHlike2] = ACTIONS(2887), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2897), + [anon_sym_bit_DASHxor2] = ACTIONS(2899), + [anon_sym_bit_DASHor2] = ACTIONS(2972), [anon_sym_err_GT] = ACTIONS(2842), [anon_sym_out_GT] = ACTIONS(2842), [anon_sym_e_GT] = ACTIONS(2842), @@ -139220,145 +136019,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1230)] = { - [aux_sym__repeat_newline] = STATE(1270), - [sym_comment] = STATE(1230), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2878), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2728), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2730), - [anon_sym_bit_DASHshl2] = ACTIONS(2728), - [anon_sym_bit_DASHshr2] = ACTIONS(2728), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [1183] = { + [aux_sym__repeat_newline] = STATE(1287), + [sym_comment] = STATE(1183), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2955), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_err_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_GT_PIPE] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_GT2] = ACTIONS(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2968), + [anon_sym_xor2] = ACTIONS(2834), + [anon_sym_or2] = ACTIONS(2834), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2887), + [anon_sym_BANG_TILDE2] = ACTIONS(2887), + [anon_sym_like2] = ACTIONS(2887), + [anon_sym_not_DASHlike2] = ACTIONS(2887), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2897), + [anon_sym_bit_DASHxor2] = ACTIONS(2899), + [anon_sym_bit_DASHor2] = ACTIONS(2972), + [anon_sym_err_GT] = ACTIONS(2836), + [anon_sym_out_GT] = ACTIONS(2836), + [anon_sym_e_GT] = ACTIONS(2836), + [anon_sym_o_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT] = ACTIONS(2836), + [anon_sym_err_GT_GT] = ACTIONS(2834), + [anon_sym_out_GT_GT] = ACTIONS(2834), + [anon_sym_e_GT_GT] = ACTIONS(2834), + [anon_sym_o_GT_GT] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(3), + }, + [1184] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1184), + [anon_sym_in] = ACTIONS(2844), + [sym__newline] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(2844), + [anon_sym_err_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_GT_PIPE] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), + [anon_sym_RPAREN] = ACTIONS(2844), + [anon_sym_GT2] = ACTIONS(2846), + [anon_sym_DASH2] = ACTIONS(2844), + [anon_sym_STAR2] = ACTIONS(2846), + [anon_sym_and2] = ACTIONS(2844), + [anon_sym_xor2] = ACTIONS(2844), + [anon_sym_or2] = ACTIONS(2844), + [anon_sym_not_DASHin2] = ACTIONS(2844), + [anon_sym_has2] = ACTIONS(2844), + [anon_sym_not_DASHhas2] = ACTIONS(2844), + [anon_sym_starts_DASHwith2] = ACTIONS(2844), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2844), + [anon_sym_ends_DASHwith2] = ACTIONS(2844), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2844), + [anon_sym_EQ_EQ2] = ACTIONS(2844), + [anon_sym_BANG_EQ2] = ACTIONS(2844), + [anon_sym_LT2] = ACTIONS(2846), + [anon_sym_LT_EQ2] = ACTIONS(2844), + [anon_sym_GT_EQ2] = ACTIONS(2844), + [anon_sym_EQ_TILDE2] = ACTIONS(2844), + [anon_sym_BANG_TILDE2] = ACTIONS(2844), + [anon_sym_like2] = ACTIONS(2844), + [anon_sym_not_DASHlike2] = ACTIONS(2844), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2846), + [anon_sym_mod2] = ACTIONS(2844), + [anon_sym_SLASH_SLASH2] = ACTIONS(2844), + [anon_sym_PLUS2] = ACTIONS(2846), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2844), + [anon_sym_bit_DASHor2] = ACTIONS(2844), + [anon_sym_err_GT] = ACTIONS(2846), + [anon_sym_out_GT] = ACTIONS(2846), + [anon_sym_e_GT] = ACTIONS(2846), + [anon_sym_o_GT] = ACTIONS(2846), + [anon_sym_err_PLUSout_GT] = ACTIONS(2846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2846), + [anon_sym_o_PLUSe_GT] = ACTIONS(2846), + [anon_sym_e_PLUSo_GT] = ACTIONS(2846), + [anon_sym_err_GT_GT] = ACTIONS(2844), + [anon_sym_out_GT_GT] = ACTIONS(2844), + [anon_sym_e_GT_GT] = ACTIONS(2844), + [anon_sym_o_GT_GT] = ACTIONS(2844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1231)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1231), - [anon_sym_in] = ACTIONS(2858), - [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(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [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(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [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(1232)] = { - [aux_sym__repeat_newline] = STATE(1239), - [sym_comment] = STATE(1232), + [1185] = { + [sym_comment] = STATE(1185), + [anon_sym_in] = ACTIONS(2901), + [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(2903), + [anon_sym_DASH2] = ACTIONS(2905), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_STAR2] = ACTIONS(2907), + [anon_sym_and2] = ACTIONS(2974), + [anon_sym_xor2] = ACTIONS(2976), + [anon_sym_or2] = ACTIONS(2624), + [anon_sym_not_DASHin2] = ACTIONS(2901), + [anon_sym_has2] = ACTIONS(2901), + [anon_sym_not_DASHhas2] = ACTIONS(2901), + [anon_sym_starts_DASHwith2] = ACTIONS(2901), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2901), + [anon_sym_ends_DASHwith2] = ACTIONS(2901), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2901), + [anon_sym_EQ_EQ2] = ACTIONS(2909), + [anon_sym_BANG_EQ2] = ACTIONS(2909), + [anon_sym_LT2] = ACTIONS(2903), + [anon_sym_LT_EQ2] = ACTIONS(2909), + [anon_sym_GT_EQ2] = ACTIONS(2909), + [anon_sym_EQ_TILDE2] = ACTIONS(2911), + [anon_sym_BANG_TILDE2] = ACTIONS(2911), + [anon_sym_like2] = ACTIONS(2911), + [anon_sym_not_DASHlike2] = ACTIONS(2911), + [anon_sym_STAR_STAR2] = ACTIONS(2913), + [anon_sym_PLUS_PLUS2] = ACTIONS(2913), + [anon_sym_SLASH2] = ACTIONS(2907), + [anon_sym_mod2] = ACTIONS(2915), + [anon_sym_SLASH_SLASH2] = ACTIONS(2915), + [anon_sym_PLUS2] = ACTIONS(2917), + [anon_sym_bit_DASHshl2] = ACTIONS(2919), + [anon_sym_bit_DASHshr2] = ACTIONS(2919), + [anon_sym_bit_DASHand2] = ACTIONS(2921), + [anon_sym_bit_DASHxor2] = ACTIONS(2978), + [anon_sym_bit_DASHor2] = ACTIONS(2980), + [anon_sym_err_GT] = ACTIONS(2626), + [anon_sym_out_GT] = ACTIONS(2626), + [anon_sym_e_GT] = ACTIONS(2626), + [anon_sym_o_GT] = ACTIONS(2626), + [anon_sym_err_PLUSout_GT] = ACTIONS(2626), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2626), + [anon_sym_o_PLUSe_GT] = ACTIONS(2626), + [anon_sym_e_PLUSo_GT] = ACTIONS(2626), + [anon_sym_err_GT_GT] = ACTIONS(2624), + [anon_sym_out_GT_GT] = ACTIONS(2624), + [anon_sym_e_GT_GT] = ACTIONS(2624), + [anon_sym_o_GT_GT] = ACTIONS(2624), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2624), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2624), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2624), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2624), + [anon_sym_POUND] = ACTIONS(3), + }, + [1186] = { + [aux_sym__repeat_newline] = STATE(1233), + [sym_comment] = STATE(1186), [anon_sym_in] = ACTIONS(2840), - [sym__newline] = ACTIONS(2916), + [sym__newline] = ACTIONS(2876), [anon_sym_SEMI] = ACTIONS(2840), [anon_sym_PIPE] = ACTIONS(2840), [anon_sym_err_GT_PIPE] = ACTIONS(2840), @@ -139392,8 +136258,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2840), [anon_sym_like2] = ACTIONS(2840), [anon_sym_not_DASHlike2] = ACTIONS(2840), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), [anon_sym_SLASH2] = ACTIONS(2842), [anon_sym_mod2] = ACTIONS(2840), [anon_sym_SLASH_SLASH2] = ACTIONS(2840), @@ -139421,9 +136287,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1233)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1233), + [1187] = { + [aux_sym__repeat_newline] = STATE(1272), + [sym_comment] = STATE(1187), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2966), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_err_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_GT_PIPE] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_GT2] = ACTIONS(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2968), + [anon_sym_xor2] = ACTIONS(2970), + [anon_sym_or2] = ACTIONS(2834), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2887), + [anon_sym_BANG_TILDE2] = ACTIONS(2887), + [anon_sym_like2] = ACTIONS(2887), + [anon_sym_not_DASHlike2] = ACTIONS(2887), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2897), + [anon_sym_bit_DASHxor2] = ACTIONS(2899), + [anon_sym_bit_DASHor2] = ACTIONS(2972), + [anon_sym_err_GT] = ACTIONS(2836), + [anon_sym_out_GT] = ACTIONS(2836), + [anon_sym_e_GT] = ACTIONS(2836), + [anon_sym_o_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT] = ACTIONS(2836), + [anon_sym_err_GT_GT] = ACTIONS(2834), + [anon_sym_out_GT_GT] = ACTIONS(2834), + [anon_sym_e_GT_GT] = ACTIONS(2834), + [anon_sym_o_GT_GT] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(3), + }, + [1188] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1188), [anon_sym_in] = ACTIONS(2844), [sym__newline] = ACTIONS(2844), [anon_sym_SEMI] = ACTIONS(2844), @@ -139439,7 +136372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(2844), [anon_sym_GT2] = ACTIONS(2846), [anon_sym_DASH2] = ACTIONS(2844), - [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_STAR2] = ACTIONS(2858), [anon_sym_and2] = ACTIONS(2844), [anon_sym_xor2] = ACTIONS(2844), [anon_sym_or2] = ACTIONS(2844), @@ -139459,11 +136392,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2844), [anon_sym_like2] = ACTIONS(2844), [anon_sym_not_DASHlike2] = ACTIONS(2844), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), [anon_sym_PLUS2] = ACTIONS(2846), [anon_sym_bit_DASHshl2] = ACTIONS(2844), [anon_sym_bit_DASHshr2] = ACTIONS(2844), @@ -139488,344 +136421,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1234)] = { - [aux_sym__repeat_newline] = STATE(1246), - [sym_comment] = STATE(1234), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2967), - [anon_sym_SEMI] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_err_GT_PIPE] = ACTIONS(2836), - [anon_sym_out_GT_PIPE] = ACTIONS(2836), - [anon_sym_e_GT_PIPE] = ACTIONS(2836), - [anon_sym_o_GT_PIPE] = ACTIONS(2836), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2836), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2836), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2836), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2836), - [anon_sym_RPAREN] = ACTIONS(2836), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2836), - [anon_sym_xor2] = ACTIONS(2836), - [anon_sym_or2] = ACTIONS(2836), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2889), - [anon_sym_BANG_TILDE2] = ACTIONS(2889), - [anon_sym_like2] = ACTIONS(2889), - [anon_sym_not_DASHlike2] = ACTIONS(2889), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2836), - [anon_sym_bit_DASHor2] = ACTIONS(2836), - [anon_sym_err_GT] = ACTIONS(2838), - [anon_sym_out_GT] = ACTIONS(2838), - [anon_sym_e_GT] = ACTIONS(2838), - [anon_sym_o_GT] = ACTIONS(2838), - [anon_sym_err_PLUSout_GT] = ACTIONS(2838), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), - [anon_sym_o_PLUSe_GT] = ACTIONS(2838), - [anon_sym_e_PLUSo_GT] = ACTIONS(2838), - [anon_sym_err_GT_GT] = ACTIONS(2836), - [anon_sym_out_GT_GT] = ACTIONS(2836), - [anon_sym_e_GT_GT] = ACTIONS(2836), - [anon_sym_o_GT_GT] = ACTIONS(2836), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2836), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2836), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2836), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1235)] = { - [sym__expression] = STATE(5045), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2261), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1878), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_comment] = STATE(1235), - [aux_sym_cmd_identifier_token2] = ACTIONS(2986), - [anon_sym_true] = ACTIONS(2636), - [anon_sym_false] = ACTIONS(2636), - [anon_sym_null] = ACTIONS(2638), - [aux_sym_cmd_identifier_token3] = ACTIONS(2640), - [aux_sym_cmd_identifier_token4] = ACTIONS(2640), - [aux_sym_cmd_identifier_token5] = ACTIONS(2640), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(181), - [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1981), - [aux_sym__val_number_decimal_token3] = ACTIONS(2644), - [aux_sym__val_number_decimal_token4] = ACTIONS(2644), - [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(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2646), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(105), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(1236)] = { - [aux_sym__repeat_newline] = STATE(1212), - [sym_comment] = STATE(1236), - [anon_sym_in] = ACTIONS(2836), - [sym__newline] = ACTIONS(2967), - [anon_sym_SEMI] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_err_GT_PIPE] = ACTIONS(2836), - [anon_sym_out_GT_PIPE] = ACTIONS(2836), - [anon_sym_e_GT_PIPE] = ACTIONS(2836), - [anon_sym_o_GT_PIPE] = ACTIONS(2836), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2836), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2836), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2836), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2836), - [anon_sym_RPAREN] = ACTIONS(2836), - [anon_sym_GT2] = ACTIONS(2838), - [anon_sym_DASH2] = ACTIONS(2836), - [anon_sym_STAR2] = ACTIONS(2838), - [anon_sym_and2] = ACTIONS(2836), - [anon_sym_xor2] = ACTIONS(2836), - [anon_sym_or2] = ACTIONS(2836), - [anon_sym_not_DASHin2] = ACTIONS(2836), - [anon_sym_has2] = ACTIONS(2836), - [anon_sym_not_DASHhas2] = ACTIONS(2836), - [anon_sym_starts_DASHwith2] = ACTIONS(2836), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2836), - [anon_sym_ends_DASHwith2] = ACTIONS(2836), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2836), - [anon_sym_EQ_EQ2] = ACTIONS(2836), - [anon_sym_BANG_EQ2] = ACTIONS(2836), - [anon_sym_LT2] = ACTIONS(2838), - [anon_sym_LT_EQ2] = ACTIONS(2836), - [anon_sym_GT_EQ2] = ACTIONS(2836), - [anon_sym_EQ_TILDE2] = ACTIONS(2836), - [anon_sym_BANG_TILDE2] = ACTIONS(2836), - [anon_sym_like2] = ACTIONS(2836), - [anon_sym_not_DASHlike2] = ACTIONS(2836), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2838), - [anon_sym_mod2] = ACTIONS(2836), - [anon_sym_SLASH_SLASH2] = ACTIONS(2836), - [anon_sym_PLUS2] = ACTIONS(2838), - [anon_sym_bit_DASHshl2] = ACTIONS(2836), - [anon_sym_bit_DASHshr2] = ACTIONS(2836), - [anon_sym_bit_DASHand2] = ACTIONS(2836), - [anon_sym_bit_DASHxor2] = ACTIONS(2836), - [anon_sym_bit_DASHor2] = ACTIONS(2836), - [anon_sym_err_GT] = ACTIONS(2838), - [anon_sym_out_GT] = ACTIONS(2838), - [anon_sym_e_GT] = ACTIONS(2838), - [anon_sym_o_GT] = ACTIONS(2838), - [anon_sym_err_PLUSout_GT] = ACTIONS(2838), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), - [anon_sym_o_PLUSe_GT] = ACTIONS(2838), - [anon_sym_e_PLUSo_GT] = ACTIONS(2838), - [anon_sym_err_GT_GT] = ACTIONS(2836), - [anon_sym_out_GT_GT] = ACTIONS(2836), - [anon_sym_e_GT_GT] = ACTIONS(2836), - [anon_sym_o_GT_GT] = ACTIONS(2836), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2836), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2836), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2836), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1237)] = { - [sym__ctrl_match_body] = STATE(5297), - [sym_match_arm] = STATE(4897), - [sym_default_arm] = STATE(4897), - [sym_match_pattern] = STATE(5399), - [sym__match_pattern] = STATE(4099), - [sym__match_pattern_expression] = STATE(4655), - [sym__match_pattern_value] = STATE(4656), - [sym__match_pattern_list] = STATE(4659), - [sym__match_pattern_record] = STATE(4663), - [sym_expr_parenthesized] = STATE(3961), - [sym_val_range] = STATE(4656), - [sym__val_range] = STATE(5303), - [sym_val_nothing] = STATE(4663), - [sym_val_bool] = STATE(4358), - [sym_val_variable] = STATE(3966), - [sym_val_number] = STATE(4663), - [sym__val_number_decimal] = STATE(3674), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(4663), - [sym_val_filesize] = STATE(4663), - [sym_val_binary] = STATE(4663), - [sym_val_string] = STATE(4663), - [sym__raw_str] = STATE(2276), - [sym__str_double_quotes] = STATE(2276), - [sym__str_single_quotes] = STATE(2276), - [sym__str_back_ticks] = STATE(2276), - [sym_val_table] = STATE(4663), - [sym_unquoted] = STATE(4665), - [sym__unquoted_anonymous_prefix] = STATE(5303), - [sym_comment] = STATE(1237), - [aux_sym__types_body_repeat1] = STATE(1373), - [aux_sym__ctrl_match_body_repeat1] = STATE(1407), - [anon_sym_true] = ACTIONS(2935), - [anon_sym_false] = ACTIONS(2935), - [anon_sym_null] = ACTIONS(2937), - [aux_sym_cmd_identifier_token3] = ACTIONS(2939), - [aux_sym_cmd_identifier_token4] = ACTIONS(2939), - [aux_sym_cmd_identifier_token5] = ACTIONS(2939), - [sym__newline] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_DOLLAR] = ACTIONS(2945), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_RBRACE] = ACTIONS(2988), - [anon_sym__] = ACTIONS(2951), - [anon_sym_DOT_DOT] = ACTIONS(2953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2955), - [anon_sym_DOT_DOT_LT] = ACTIONS(2955), - [aux_sym__val_number_decimal_token1] = ACTIONS(2957), - [aux_sym__val_number_decimal_token2] = ACTIONS(2959), - [aux_sym__val_number_decimal_token3] = ACTIONS(2961), - [aux_sym__val_number_decimal_token4] = ACTIONS(2961), - [aux_sym__val_number_token1] = ACTIONS(191), - [aux_sym__val_number_token2] = ACTIONS(191), - [aux_sym__val_number_token3] = ACTIONS(191), - [anon_sym_0b] = ACTIONS(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1770), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1772), - }, - [STATE(1238)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1238), - [anon_sym_in] = ACTIONS(2858), - [sym__newline] = ACTIONS(2844), - [anon_sym_SEMI] = ACTIONS(2844), - [anon_sym_PIPE] = ACTIONS(2844), - [anon_sym_err_GT_PIPE] = ACTIONS(2844), - [anon_sym_out_GT_PIPE] = ACTIONS(2844), - [anon_sym_e_GT_PIPE] = ACTIONS(2844), - [anon_sym_o_GT_PIPE] = ACTIONS(2844), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2844), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2844), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), - [anon_sym_RPAREN] = ACTIONS(2844), - [anon_sym_GT2] = ACTIONS(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2844), - [anon_sym_xor2] = ACTIONS(2844), - [anon_sym_or2] = ACTIONS(2844), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2866), - [anon_sym_BANG_TILDE2] = ACTIONS(2866), - [anon_sym_like2] = ACTIONS(2866), - [anon_sym_not_DASHlike2] = ACTIONS(2866), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2870), - [anon_sym_bit_DASHxor2] = ACTIONS(2872), - [anon_sym_bit_DASHor2] = ACTIONS(2844), - [anon_sym_err_GT] = ACTIONS(2846), - [anon_sym_out_GT] = ACTIONS(2846), - [anon_sym_e_GT] = ACTIONS(2846), - [anon_sym_o_GT] = ACTIONS(2846), - [anon_sym_err_PLUSout_GT] = ACTIONS(2846), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2846), - [anon_sym_o_PLUSe_GT] = ACTIONS(2846), - [anon_sym_e_PLUSo_GT] = ACTIONS(2846), - [anon_sym_err_GT_GT] = ACTIONS(2844), - [anon_sym_out_GT_GT] = ACTIONS(2844), - [anon_sym_e_GT_GT] = ACTIONS(2844), - [anon_sym_o_GT_GT] = ACTIONS(2844), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2844), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2844), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2844), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), + [1189] = { + [sym_comment] = STATE(1189), + [anon_sym_in] = ACTIONS(2901), + [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(2903), + [anon_sym_DASH2] = ACTIONS(2905), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_STAR2] = ACTIONS(2907), + [anon_sym_and2] = ACTIONS(2974), + [anon_sym_xor2] = ACTIONS(2624), + [anon_sym_or2] = ACTIONS(2624), + [anon_sym_not_DASHin2] = ACTIONS(2901), + [anon_sym_has2] = ACTIONS(2901), + [anon_sym_not_DASHhas2] = ACTIONS(2901), + [anon_sym_starts_DASHwith2] = ACTIONS(2901), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2901), + [anon_sym_ends_DASHwith2] = ACTIONS(2901), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2901), + [anon_sym_EQ_EQ2] = ACTIONS(2909), + [anon_sym_BANG_EQ2] = ACTIONS(2909), + [anon_sym_LT2] = ACTIONS(2903), + [anon_sym_LT_EQ2] = ACTIONS(2909), + [anon_sym_GT_EQ2] = ACTIONS(2909), + [anon_sym_EQ_TILDE2] = ACTIONS(2911), + [anon_sym_BANG_TILDE2] = ACTIONS(2911), + [anon_sym_like2] = ACTIONS(2911), + [anon_sym_not_DASHlike2] = ACTIONS(2911), + [anon_sym_STAR_STAR2] = ACTIONS(2913), + [anon_sym_PLUS_PLUS2] = ACTIONS(2913), + [anon_sym_SLASH2] = ACTIONS(2907), + [anon_sym_mod2] = ACTIONS(2915), + [anon_sym_SLASH_SLASH2] = ACTIONS(2915), + [anon_sym_PLUS2] = ACTIONS(2917), + [anon_sym_bit_DASHshl2] = ACTIONS(2919), + [anon_sym_bit_DASHshr2] = ACTIONS(2919), + [anon_sym_bit_DASHand2] = ACTIONS(2921), + [anon_sym_bit_DASHxor2] = ACTIONS(2978), + [anon_sym_bit_DASHor2] = ACTIONS(2980), + [anon_sym_err_GT] = ACTIONS(2626), + [anon_sym_out_GT] = ACTIONS(2626), + [anon_sym_e_GT] = ACTIONS(2626), + [anon_sym_o_GT] = ACTIONS(2626), + [anon_sym_err_PLUSout_GT] = ACTIONS(2626), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2626), + [anon_sym_o_PLUSe_GT] = ACTIONS(2626), + [anon_sym_e_PLUSo_GT] = ACTIONS(2626), + [anon_sym_err_GT_GT] = ACTIONS(2624), + [anon_sym_out_GT_GT] = ACTIONS(2624), + [anon_sym_e_GT_GT] = ACTIONS(2624), + [anon_sym_o_GT_GT] = ACTIONS(2624), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2624), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2624), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2624), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2624), + [anon_sym_POUND] = ACTIONS(3), + }, + [1190] = { + [aux_sym__repeat_newline] = STATE(1232), + [sym_comment] = STATE(1190), + [anon_sym_in] = ACTIONS(2840), + [sym__newline] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_err_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_GT_PIPE] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), + [anon_sym_RPAREN] = ACTIONS(2840), + [anon_sym_GT2] = ACTIONS(2842), + [anon_sym_DASH2] = ACTIONS(2840), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2840), + [anon_sym_xor2] = ACTIONS(2840), + [anon_sym_or2] = ACTIONS(2840), + [anon_sym_not_DASHin2] = ACTIONS(2840), + [anon_sym_has2] = ACTIONS(2840), + [anon_sym_not_DASHhas2] = ACTIONS(2840), + [anon_sym_starts_DASHwith2] = ACTIONS(2840), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2840), + [anon_sym_ends_DASHwith2] = ACTIONS(2840), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2840), + [anon_sym_EQ_EQ2] = ACTIONS(2840), + [anon_sym_BANG_EQ2] = ACTIONS(2840), + [anon_sym_LT2] = ACTIONS(2842), + [anon_sym_LT_EQ2] = ACTIONS(2840), + [anon_sym_GT_EQ2] = ACTIONS(2840), + [anon_sym_EQ_TILDE2] = ACTIONS(2840), + [anon_sym_BANG_TILDE2] = ACTIONS(2840), + [anon_sym_like2] = ACTIONS(2840), + [anon_sym_not_DASHlike2] = ACTIONS(2840), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2842), + [anon_sym_bit_DASHshl2] = ACTIONS(2840), + [anon_sym_bit_DASHshr2] = ACTIONS(2840), + [anon_sym_bit_DASHand2] = ACTIONS(2840), + [anon_sym_bit_DASHxor2] = ACTIONS(2840), + [anon_sym_bit_DASHor2] = ACTIONS(2840), + [anon_sym_err_GT] = ACTIONS(2842), + [anon_sym_out_GT] = ACTIONS(2842), + [anon_sym_e_GT] = ACTIONS(2842), + [anon_sym_o_GT] = ACTIONS(2842), + [anon_sym_err_PLUSout_GT] = ACTIONS(2842), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2842), + [anon_sym_o_PLUSe_GT] = ACTIONS(2842), + [anon_sym_e_PLUSo_GT] = ACTIONS(2842), + [anon_sym_err_GT_GT] = ACTIONS(2840), + [anon_sym_out_GT_GT] = ACTIONS(2840), + [anon_sym_e_GT_GT] = ACTIONS(2840), + [anon_sym_o_GT_GT] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1239)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1239), + [1191] = { + [aux_sym__repeat_newline] = STATE(1256), + [sym_comment] = STATE(1191), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2955), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_err_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_GT_PIPE] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_GT2] = ACTIONS(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2834), + [anon_sym_xor2] = ACTIONS(2834), + [anon_sym_or2] = ACTIONS(2834), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [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(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2834), + [anon_sym_bit_DASHxor2] = ACTIONS(2834), + [anon_sym_bit_DASHor2] = ACTIONS(2834), + [anon_sym_err_GT] = ACTIONS(2836), + [anon_sym_out_GT] = ACTIONS(2836), + [anon_sym_e_GT] = ACTIONS(2836), + [anon_sym_o_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT] = ACTIONS(2836), + [anon_sym_err_GT_GT] = ACTIONS(2834), + [anon_sym_out_GT_GT] = ACTIONS(2834), + [anon_sym_e_GT_GT] = ACTIONS(2834), + [anon_sym_o_GT_GT] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(3), + }, + [1192] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1192), [anon_sym_in] = ACTIONS(2844), [sym__newline] = ACTIONS(2844), [anon_sym_SEMI] = ACTIONS(2844), @@ -139840,8 +136639,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), [anon_sym_RPAREN] = ACTIONS(2844), [anon_sym_GT2] = ACTIONS(2846), - [anon_sym_DASH2] = ACTIONS(2844), - [anon_sym_STAR2] = ACTIONS(2846), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), [anon_sym_and2] = ACTIONS(2844), [anon_sym_xor2] = ACTIONS(2844), [anon_sym_or2] = ACTIONS(2844), @@ -139861,14 +136660,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2844), [anon_sym_like2] = ACTIONS(2844), [anon_sym_not_DASHlike2] = ACTIONS(2844), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2846), - [anon_sym_mod2] = ACTIONS(2844), - [anon_sym_SLASH_SLASH2] = ACTIONS(2844), - [anon_sym_PLUS2] = ACTIONS(2846), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), [anon_sym_bit_DASHand2] = ACTIONS(2844), [anon_sym_bit_DASHxor2] = ACTIONS(2844), [anon_sym_bit_DASHor2] = ACTIONS(2844), @@ -139890,11 +136689,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1240)] = { - [aux_sym__repeat_newline] = STATE(1268), - [sym_comment] = STATE(1240), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2916), + [1193] = { + [sym_comment] = STATE(1193), + [anon_sym_in] = ACTIONS(2901), + [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(2903), + [anon_sym_DASH2] = ACTIONS(2905), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_STAR2] = ACTIONS(2907), + [anon_sym_and2] = ACTIONS(2624), + [anon_sym_xor2] = ACTIONS(2624), + [anon_sym_or2] = ACTIONS(2624), + [anon_sym_not_DASHin2] = ACTIONS(2901), + [anon_sym_has2] = ACTIONS(2901), + [anon_sym_not_DASHhas2] = ACTIONS(2901), + [anon_sym_starts_DASHwith2] = ACTIONS(2901), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2901), + [anon_sym_ends_DASHwith2] = ACTIONS(2901), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2901), + [anon_sym_EQ_EQ2] = ACTIONS(2909), + [anon_sym_BANG_EQ2] = ACTIONS(2909), + [anon_sym_LT2] = ACTIONS(2903), + [anon_sym_LT_EQ2] = ACTIONS(2909), + [anon_sym_GT_EQ2] = ACTIONS(2909), + [anon_sym_EQ_TILDE2] = ACTIONS(2911), + [anon_sym_BANG_TILDE2] = ACTIONS(2911), + [anon_sym_like2] = ACTIONS(2911), + [anon_sym_not_DASHlike2] = ACTIONS(2911), + [anon_sym_STAR_STAR2] = ACTIONS(2913), + [anon_sym_PLUS_PLUS2] = ACTIONS(2913), + [anon_sym_SLASH2] = ACTIONS(2907), + [anon_sym_mod2] = ACTIONS(2915), + [anon_sym_SLASH_SLASH2] = ACTIONS(2915), + [anon_sym_PLUS2] = ACTIONS(2917), + [anon_sym_bit_DASHshl2] = ACTIONS(2919), + [anon_sym_bit_DASHshr2] = ACTIONS(2919), + [anon_sym_bit_DASHand2] = ACTIONS(2921), + [anon_sym_bit_DASHxor2] = ACTIONS(2978), + [anon_sym_bit_DASHor2] = ACTIONS(2980), + [anon_sym_err_GT] = ACTIONS(2626), + [anon_sym_out_GT] = ACTIONS(2626), + [anon_sym_e_GT] = ACTIONS(2626), + [anon_sym_o_GT] = ACTIONS(2626), + [anon_sym_err_PLUSout_GT] = ACTIONS(2626), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2626), + [anon_sym_o_PLUSe_GT] = ACTIONS(2626), + [anon_sym_e_PLUSo_GT] = ACTIONS(2626), + [anon_sym_err_GT_GT] = ACTIONS(2624), + [anon_sym_out_GT_GT] = ACTIONS(2624), + [anon_sym_e_GT_GT] = ACTIONS(2624), + [anon_sym_o_GT_GT] = ACTIONS(2624), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2624), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2624), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2624), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2624), + [anon_sym_POUND] = ACTIONS(3), + }, + [1194] = { + [sym__ctrl_match_body] = STATE(5519), + [sym_match_arm] = STATE(4907), + [sym_default_arm] = STATE(4907), + [sym_match_pattern] = STATE(5353), + [sym__match_pattern] = STATE(4158), + [sym__match_pattern_expression] = STATE(4626), + [sym__match_pattern_value] = STATE(4598), + [sym__match_pattern_list] = STATE(4599), + [sym__match_pattern_record] = STATE(4600), + [sym_expr_parenthesized] = STATE(3916), + [sym_val_range] = STATE(4598), + [sym__val_range] = STATE(5111), + [sym_val_nothing] = STATE(4600), + [sym_val_bool] = STATE(4244), + [sym_val_variable] = STATE(3915), + [sym_val_number] = STATE(4600), + [sym__val_number_decimal] = STATE(3677), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(4600), + [sym_val_filesize] = STATE(4600), + [sym_val_binary] = STATE(4600), + [sym_val_string] = STATE(4600), + [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(4600), + [sym_unquoted] = STATE(4603), + [sym__unquoted_anonymous_prefix] = STATE(5111), + [sym_comment] = STATE(1194), + [aux_sym__types_body_repeat1] = STATE(1381), + [aux_sym__ctrl_match_body_repeat1] = STATE(1401), + [anon_sym_true] = ACTIONS(2925), + [anon_sym_false] = ACTIONS(2925), + [anon_sym_null] = ACTIONS(2927), + [aux_sym_cmd_identifier_token3] = ACTIONS(2929), + [aux_sym_cmd_identifier_token4] = ACTIONS(2929), + [aux_sym_cmd_identifier_token5] = ACTIONS(2929), + [sym__newline] = ACTIONS(2931), + [anon_sym_LBRACK] = ACTIONS(2933), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_DOLLAR] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_RBRACE] = ACTIONS(2982), + [anon_sym__] = ACTIONS(2941), + [anon_sym_DOT_DOT] = ACTIONS(2943), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2945), + [anon_sym_DOT_DOT_LT] = ACTIONS(2945), + [aux_sym__val_number_decimal_token1] = ACTIONS(2947), + [aux_sym__val_number_decimal_token2] = ACTIONS(2949), + [aux_sym__val_number_decimal_token3] = ACTIONS(2951), + [aux_sym__val_number_decimal_token4] = ACTIONS(2951), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1768), + [aux_sym_unquoted_token1] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1770), + }, + [1195] = { + [aux_sym__repeat_newline] = STATE(1227), + [sym_comment] = STATE(1195), + [anon_sym_in] = ACTIONS(2840), + [sym__newline] = ACTIONS(2876), [anon_sym_SEMI] = ACTIONS(2840), [anon_sym_PIPE] = ACTIONS(2840), [anon_sym_err_GT_PIPE] = ACTIONS(2840), @@ -139906,36 +136839,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), [anon_sym_RPAREN] = ACTIONS(2840), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_GT2] = ACTIONS(2842), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), [anon_sym_and2] = ACTIONS(2840), [anon_sym_xor2] = ACTIONS(2840), [anon_sym_or2] = ACTIONS(2840), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_not_DASHin2] = ACTIONS(2840), + [anon_sym_has2] = ACTIONS(2840), + [anon_sym_not_DASHhas2] = ACTIONS(2840), + [anon_sym_starts_DASHwith2] = ACTIONS(2840), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2840), + [anon_sym_ends_DASHwith2] = ACTIONS(2840), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2840), + [anon_sym_EQ_EQ2] = ACTIONS(2840), + [anon_sym_BANG_EQ2] = ACTIONS(2840), + [anon_sym_LT2] = ACTIONS(2842), + [anon_sym_LT_EQ2] = ACTIONS(2840), + [anon_sym_GT_EQ2] = ACTIONS(2840), [anon_sym_EQ_TILDE2] = ACTIONS(2840), [anon_sym_BANG_TILDE2] = ACTIONS(2840), [anon_sym_like2] = ACTIONS(2840), [anon_sym_not_DASHlike2] = ACTIONS(2840), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), [anon_sym_bit_DASHand2] = ACTIONS(2840), [anon_sym_bit_DASHxor2] = ACTIONS(2840), [anon_sym_bit_DASHor2] = ACTIONS(2840), @@ -139957,412 +136890,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1241)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1241), - [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(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [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(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [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(1242)] = { - [aux_sym__repeat_newline] = STATE(1168), - [sym_comment] = STATE(1242), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2878), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2728), - [anon_sym_bit_DASHshr2] = ACTIONS(2728), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1243)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1243), - [anon_sym_in] = ACTIONS(2858), - [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(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2866), - [anon_sym_BANG_TILDE2] = ACTIONS(2866), - [anon_sym_like2] = ACTIONS(2866), - [anon_sym_not_DASHlike2] = ACTIONS(2866), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [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(1244)] = { - [sym_comment] = STATE(1244), - [ts_builtin_sym_end] = ACTIONS(2375), - [anon_sym_in] = ACTIONS(2375), - [sym__newline] = ACTIONS(2375), - [anon_sym_SEMI] = ACTIONS(2375), - [anon_sym_PIPE] = ACTIONS(2375), - [anon_sym_err_GT_PIPE] = ACTIONS(2375), - [anon_sym_out_GT_PIPE] = ACTIONS(2375), - [anon_sym_e_GT_PIPE] = ACTIONS(2375), - [anon_sym_o_GT_PIPE] = ACTIONS(2375), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2375), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2375), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2375), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2375), - [anon_sym_GT2] = ACTIONS(2377), - [anon_sym_DASH2] = ACTIONS(2375), - [anon_sym_STAR2] = ACTIONS(2377), - [anon_sym_and2] = ACTIONS(2375), - [anon_sym_xor2] = ACTIONS(2375), - [anon_sym_or2] = ACTIONS(2375), - [anon_sym_not_DASHin2] = ACTIONS(2375), - [anon_sym_has2] = ACTIONS(2375), - [anon_sym_not_DASHhas2] = ACTIONS(2375), - [anon_sym_starts_DASHwith2] = ACTIONS(2375), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2375), - [anon_sym_ends_DASHwith2] = ACTIONS(2375), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2375), - [anon_sym_EQ_EQ2] = ACTIONS(2375), - [anon_sym_BANG_EQ2] = ACTIONS(2375), - [anon_sym_LT2] = ACTIONS(2377), - [anon_sym_LT_EQ2] = ACTIONS(2375), - [anon_sym_GT_EQ2] = ACTIONS(2375), - [anon_sym_EQ_TILDE2] = ACTIONS(2375), - [anon_sym_BANG_TILDE2] = ACTIONS(2375), - [anon_sym_like2] = ACTIONS(2375), - [anon_sym_not_DASHlike2] = ACTIONS(2375), - [anon_sym_STAR_STAR2] = ACTIONS(2375), - [anon_sym_PLUS_PLUS2] = ACTIONS(2375), - [anon_sym_SLASH2] = ACTIONS(2377), - [anon_sym_mod2] = ACTIONS(2375), - [anon_sym_SLASH_SLASH2] = ACTIONS(2375), - [anon_sym_PLUS2] = ACTIONS(2377), - [anon_sym_bit_DASHshl2] = ACTIONS(2375), - [anon_sym_bit_DASHshr2] = ACTIONS(2375), - [anon_sym_bit_DASHand2] = ACTIONS(2375), - [anon_sym_bit_DASHxor2] = ACTIONS(2375), - [anon_sym_bit_DASHor2] = ACTIONS(2375), - [anon_sym_LBRACK2] = ACTIONS(2990), - [anon_sym_err_GT] = ACTIONS(2377), - [anon_sym_out_GT] = ACTIONS(2377), - [anon_sym_e_GT] = ACTIONS(2377), - [anon_sym_o_GT] = ACTIONS(2377), - [anon_sym_err_PLUSout_GT] = ACTIONS(2377), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2377), - [anon_sym_o_PLUSe_GT] = ACTIONS(2377), - [anon_sym_e_PLUSo_GT] = ACTIONS(2377), - [anon_sym_err_GT_GT] = ACTIONS(2375), - [anon_sym_out_GT_GT] = ACTIONS(2375), - [anon_sym_e_GT_GT] = ACTIONS(2375), - [anon_sym_o_GT_GT] = ACTIONS(2375), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2375), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2375), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2375), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2375), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1245)] = { - [aux_sym__repeat_newline] = STATE(1216), - [sym_comment] = STATE(1245), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2967), - [anon_sym_SEMI] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_err_GT_PIPE] = ACTIONS(2836), - [anon_sym_out_GT_PIPE] = ACTIONS(2836), - [anon_sym_e_GT_PIPE] = ACTIONS(2836), - [anon_sym_o_GT_PIPE] = ACTIONS(2836), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2836), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2836), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2836), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2836), - [anon_sym_RPAREN] = ACTIONS(2836), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2836), - [anon_sym_xor2] = ACTIONS(2836), - [anon_sym_or2] = ACTIONS(2836), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2889), - [anon_sym_BANG_TILDE2] = ACTIONS(2889), - [anon_sym_like2] = ACTIONS(2889), - [anon_sym_not_DASHlike2] = ACTIONS(2889), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2909), - [anon_sym_err_GT] = ACTIONS(2838), - [anon_sym_out_GT] = ACTIONS(2838), - [anon_sym_e_GT] = ACTIONS(2838), - [anon_sym_o_GT] = ACTIONS(2838), - [anon_sym_err_PLUSout_GT] = ACTIONS(2838), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), - [anon_sym_o_PLUSe_GT] = ACTIONS(2838), - [anon_sym_e_PLUSo_GT] = ACTIONS(2838), - [anon_sym_err_GT_GT] = ACTIONS(2836), - [anon_sym_out_GT_GT] = ACTIONS(2836), - [anon_sym_e_GT_GT] = ACTIONS(2836), - [anon_sym_o_GT_GT] = ACTIONS(2836), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2836), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2836), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2836), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1246)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1246), - [anon_sym_in] = ACTIONS(2858), - [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(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2866), - [anon_sym_BANG_TILDE2] = ACTIONS(2866), - [anon_sym_like2] = ACTIONS(2866), - [anon_sym_not_DASHlike2] = ACTIONS(2866), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2870), - [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(1247)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1247), - [anon_sym_in] = ACTIONS(2858), + [1196] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1196), + [anon_sym_in] = ACTIONS(2844), [sym__newline] = ACTIONS(2844), [anon_sym_SEMI] = ACTIONS(2844), [anon_sym_PIPE] = ACTIONS(2844), @@ -140375,37 +136906,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), [anon_sym_RPAREN] = ACTIONS(2844), - [anon_sym_GT2] = ACTIONS(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_GT2] = ACTIONS(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), [anon_sym_and2] = ACTIONS(2844), [anon_sym_xor2] = ACTIONS(2844), [anon_sym_or2] = ACTIONS(2844), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2866), - [anon_sym_BANG_TILDE2] = ACTIONS(2866), - [anon_sym_like2] = ACTIONS(2866), - [anon_sym_not_DASHlike2] = ACTIONS(2866), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2870), + [anon_sym_not_DASHin2] = ACTIONS(2844), + [anon_sym_has2] = ACTIONS(2844), + [anon_sym_not_DASHhas2] = ACTIONS(2844), + [anon_sym_starts_DASHwith2] = ACTIONS(2844), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2844), + [anon_sym_ends_DASHwith2] = ACTIONS(2844), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2844), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2844), + [anon_sym_BANG_TILDE2] = ACTIONS(2844), + [anon_sym_like2] = ACTIONS(2844), + [anon_sym_not_DASHlike2] = ACTIONS(2844), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2844), [anon_sym_bit_DASHxor2] = ACTIONS(2844), [anon_sym_bit_DASHor2] = ACTIONS(2844), [anon_sym_err_GT] = ACTIONS(2846), @@ -140426,10 +136957,1551 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1248)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1248), - [anon_sym_in] = ACTIONS(2858), + [1197] = { + [sym_comment] = STATE(1197), + [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_RBRACE] = 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(2913), + [anon_sym_PLUS_PLUS2] = ACTIONS(2913), + [anon_sym_SLASH2] = ACTIONS(2626), + [anon_sym_mod2] = ACTIONS(2624), + [anon_sym_SLASH_SLASH2] = ACTIONS(2624), + [anon_sym_PLUS2] = ACTIONS(2626), + [anon_sym_bit_DASHshl2] = ACTIONS(2624), + [anon_sym_bit_DASHshr2] = ACTIONS(2624), + [anon_sym_bit_DASHand2] = ACTIONS(2624), + [anon_sym_bit_DASHxor2] = ACTIONS(2624), + [anon_sym_bit_DASHor2] = ACTIONS(2624), + [anon_sym_err_GT] = ACTIONS(2626), + [anon_sym_out_GT] = ACTIONS(2626), + [anon_sym_e_GT] = ACTIONS(2626), + [anon_sym_o_GT] = ACTIONS(2626), + [anon_sym_err_PLUSout_GT] = ACTIONS(2626), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2626), + [anon_sym_o_PLUSe_GT] = ACTIONS(2626), + [anon_sym_e_PLUSo_GT] = ACTIONS(2626), + [anon_sym_err_GT_GT] = ACTIONS(2624), + [anon_sym_out_GT_GT] = ACTIONS(2624), + [anon_sym_e_GT_GT] = ACTIONS(2624), + [anon_sym_o_GT_GT] = ACTIONS(2624), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2624), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2624), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2624), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2624), + [anon_sym_POUND] = ACTIONS(3), + }, + [1198] = { + [aux_sym__repeat_newline] = STATE(1157), + [sym_comment] = STATE(1198), + [anon_sym_in] = ACTIONS(2840), + [sym__newline] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_err_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_GT_PIPE] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), + [anon_sym_RPAREN] = ACTIONS(2840), + [anon_sym_GT2] = ACTIONS(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2840), + [anon_sym_xor2] = ACTIONS(2840), + [anon_sym_or2] = ACTIONS(2840), + [anon_sym_not_DASHin2] = ACTIONS(2840), + [anon_sym_has2] = ACTIONS(2840), + [anon_sym_not_DASHhas2] = ACTIONS(2840), + [anon_sym_starts_DASHwith2] = ACTIONS(2840), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2840), + [anon_sym_ends_DASHwith2] = ACTIONS(2840), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2840), + [anon_sym_EQ_EQ2] = ACTIONS(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2840), + [anon_sym_BANG_TILDE2] = ACTIONS(2840), + [anon_sym_like2] = ACTIONS(2840), + [anon_sym_not_DASHlike2] = ACTIONS(2840), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2840), + [anon_sym_bit_DASHxor2] = ACTIONS(2840), + [anon_sym_bit_DASHor2] = ACTIONS(2840), + [anon_sym_err_GT] = ACTIONS(2842), + [anon_sym_out_GT] = ACTIONS(2842), + [anon_sym_e_GT] = ACTIONS(2842), + [anon_sym_o_GT] = ACTIONS(2842), + [anon_sym_err_PLUSout_GT] = ACTIONS(2842), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2842), + [anon_sym_o_PLUSe_GT] = ACTIONS(2842), + [anon_sym_e_PLUSo_GT] = ACTIONS(2842), + [anon_sym_err_GT_GT] = ACTIONS(2840), + [anon_sym_out_GT_GT] = ACTIONS(2840), + [anon_sym_e_GT_GT] = ACTIONS(2840), + [anon_sym_o_GT_GT] = ACTIONS(2840), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2840), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2840), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2840), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), + [anon_sym_POUND] = ACTIONS(3), + }, + [1199] = { + [aux_sym__repeat_newline] = STATE(1226), + [sym_comment] = STATE(1199), + [anon_sym_in] = ACTIONS(2834), + [sym__newline] = ACTIONS(2955), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_err_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_GT_PIPE] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2834), + [anon_sym_xor2] = ACTIONS(2834), + [anon_sym_or2] = ACTIONS(2834), + [anon_sym_not_DASHin2] = ACTIONS(2834), + [anon_sym_has2] = ACTIONS(2834), + [anon_sym_not_DASHhas2] = ACTIONS(2834), + [anon_sym_starts_DASHwith2] = ACTIONS(2834), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2834), + [anon_sym_ends_DASHwith2] = ACTIONS(2834), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2834), + [anon_sym_EQ_EQ2] = ACTIONS(2834), + [anon_sym_BANG_EQ2] = ACTIONS(2834), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2834), + [anon_sym_GT_EQ2] = ACTIONS(2834), + [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(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2834), + [anon_sym_bit_DASHshr2] = ACTIONS(2834), + [anon_sym_bit_DASHand2] = ACTIONS(2834), + [anon_sym_bit_DASHxor2] = ACTIONS(2834), + [anon_sym_bit_DASHor2] = ACTIONS(2834), + [anon_sym_err_GT] = ACTIONS(2836), + [anon_sym_out_GT] = ACTIONS(2836), + [anon_sym_e_GT] = ACTIONS(2836), + [anon_sym_o_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT] = ACTIONS(2836), + [anon_sym_err_GT_GT] = ACTIONS(2834), + [anon_sym_out_GT_GT] = ACTIONS(2834), + [anon_sym_e_GT_GT] = ACTIONS(2834), + [anon_sym_o_GT_GT] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(3), + }, + [1200] = { + [sym_comment] = STATE(1200), + [anon_sym_in] = ACTIONS(1736), + [sym__newline] = ACTIONS(1736), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_PIPE] = ACTIONS(1736), + [anon_sym_err_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_GT_PIPE] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), + [anon_sym_GT2] = ACTIONS(1610), + [anon_sym_DASH2] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_STAR2] = ACTIONS(1610), + [anon_sym_and2] = ACTIONS(1736), + [anon_sym_xor2] = ACTIONS(1736), + [anon_sym_or2] = ACTIONS(1736), + [anon_sym_not_DASHin2] = ACTIONS(1736), + [anon_sym_has2] = ACTIONS(1736), + [anon_sym_not_DASHhas2] = ACTIONS(1736), + [anon_sym_starts_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), + [anon_sym_ends_DASHwith2] = ACTIONS(1736), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), + [anon_sym_EQ_EQ2] = ACTIONS(1736), + [anon_sym_BANG_EQ2] = ACTIONS(1736), + [anon_sym_LT2] = ACTIONS(1610), + [anon_sym_LT_EQ2] = ACTIONS(1736), + [anon_sym_GT_EQ2] = ACTIONS(1736), + [anon_sym_EQ_TILDE2] = ACTIONS(1736), + [anon_sym_BANG_TILDE2] = ACTIONS(1736), + [anon_sym_like2] = ACTIONS(1736), + [anon_sym_not_DASHlike2] = ACTIONS(1736), + [anon_sym_STAR_STAR2] = ACTIONS(1736), + [anon_sym_PLUS_PLUS2] = ACTIONS(1736), + [anon_sym_SLASH2] = ACTIONS(1610), + [anon_sym_mod2] = ACTIONS(1736), + [anon_sym_SLASH_SLASH2] = ACTIONS(1736), + [anon_sym_PLUS2] = ACTIONS(1610), + [anon_sym_bit_DASHshl2] = ACTIONS(1736), + [anon_sym_bit_DASHshr2] = ACTIONS(1736), + [anon_sym_bit_DASHand2] = ACTIONS(1736), + [anon_sym_bit_DASHxor2] = ACTIONS(1736), + [anon_sym_bit_DASHor2] = ACTIONS(1736), + [anon_sym_COLON2] = ACTIONS(1738), + [anon_sym_err_GT] = ACTIONS(1610), + [anon_sym_out_GT] = ACTIONS(1610), + [anon_sym_e_GT] = ACTIONS(1610), + [anon_sym_o_GT] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT] = ACTIONS(1610), + [anon_sym_err_GT_GT] = ACTIONS(1736), + [anon_sym_out_GT_GT] = ACTIONS(1736), + [anon_sym_e_GT_GT] = ACTIONS(1736), + [anon_sym_o_GT_GT] = ACTIONS(1736), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), + [anon_sym_POUND] = ACTIONS(3), + }, + [1201] = { + [sym_comment] = STATE(1201), + [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_RBRACE] = ACTIONS(2624), + [anon_sym_STAR2] = ACTIONS(2907), + [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(2913), + [anon_sym_PLUS_PLUS2] = ACTIONS(2913), + [anon_sym_SLASH2] = ACTIONS(2907), + [anon_sym_mod2] = ACTIONS(2915), + [anon_sym_SLASH_SLASH2] = ACTIONS(2915), + [anon_sym_PLUS2] = ACTIONS(2626), + [anon_sym_bit_DASHshl2] = ACTIONS(2624), + [anon_sym_bit_DASHshr2] = ACTIONS(2624), + [anon_sym_bit_DASHand2] = ACTIONS(2624), + [anon_sym_bit_DASHxor2] = ACTIONS(2624), + [anon_sym_bit_DASHor2] = ACTIONS(2624), + [anon_sym_err_GT] = ACTIONS(2626), + [anon_sym_out_GT] = ACTIONS(2626), + [anon_sym_e_GT] = ACTIONS(2626), + [anon_sym_o_GT] = ACTIONS(2626), + [anon_sym_err_PLUSout_GT] = ACTIONS(2626), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2626), + [anon_sym_o_PLUSe_GT] = ACTIONS(2626), + [anon_sym_e_PLUSo_GT] = ACTIONS(2626), + [anon_sym_err_GT_GT] = ACTIONS(2624), + [anon_sym_out_GT_GT] = ACTIONS(2624), + [anon_sym_e_GT_GT] = ACTIONS(2624), + [anon_sym_o_GT_GT] = ACTIONS(2624), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2624), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2624), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2624), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2624), + [anon_sym_POUND] = ACTIONS(3), + }, + [1202] = { + [sym_comment] = STATE(1202), + [aux_sym_cmd_identifier_token2] = ACTIONS(2800), + [anon_sym_in] = ACTIONS(2598), + [sym__newline] = ACTIONS(2596), + [anon_sym_SEMI] = ACTIONS(2596), + [anon_sym_PIPE] = ACTIONS(2596), + [anon_sym_err_GT_PIPE] = ACTIONS(2596), + [anon_sym_out_GT_PIPE] = ACTIONS(2596), + [anon_sym_e_GT_PIPE] = ACTIONS(2596), + [anon_sym_o_GT_PIPE] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2596), + [anon_sym_GT2] = ACTIONS(2598), + [anon_sym_DASH2] = ACTIONS(2598), + [anon_sym_RBRACE] = ACTIONS(2596), + [anon_sym_STAR2] = ACTIONS(2598), + [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(2596), + [anon_sym_BANG_EQ2] = ACTIONS(2596), + [anon_sym_LT2] = ACTIONS(2598), + [anon_sym_LT_EQ2] = ACTIONS(2596), + [anon_sym_GT_EQ2] = ACTIONS(2596), + [anon_sym_EQ_TILDE2] = ACTIONS(2596), + [anon_sym_BANG_TILDE2] = ACTIONS(2598), + [anon_sym_like2] = ACTIONS(2598), + [anon_sym_not_DASHlike2] = ACTIONS(2598), + [anon_sym_STAR_STAR2] = ACTIONS(2598), + [anon_sym_PLUS_PLUS2] = ACTIONS(2598), + [anon_sym_SLASH2] = ACTIONS(2598), + [anon_sym_mod2] = ACTIONS(2598), + [anon_sym_SLASH_SLASH2] = ACTIONS(2598), + [anon_sym_PLUS2] = ACTIONS(2598), + [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(2598), + [anon_sym_out_GT] = ACTIONS(2598), + [anon_sym_e_GT] = ACTIONS(2598), + [anon_sym_o_GT] = ACTIONS(2598), + [anon_sym_err_PLUSout_GT] = ACTIONS(2598), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2598), + [anon_sym_o_PLUSe_GT] = ACTIONS(2598), + [anon_sym_e_PLUSo_GT] = ACTIONS(2598), + [anon_sym_err_GT_GT] = ACTIONS(2596), + [anon_sym_out_GT_GT] = ACTIONS(2596), + [anon_sym_e_GT_GT] = ACTIONS(2596), + [anon_sym_o_GT_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2596), + [anon_sym_POUND] = ACTIONS(105), + }, + [1203] = { + [aux_sym__repeat_newline] = STATE(1223), + [sym_comment] = STATE(1203), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2955), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_err_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_GT_PIPE] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_GT2] = ACTIONS(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2834), + [anon_sym_xor2] = ACTIONS(2834), + [anon_sym_or2] = ACTIONS(2834), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2887), + [anon_sym_BANG_TILDE2] = ACTIONS(2887), + [anon_sym_like2] = ACTIONS(2887), + [anon_sym_not_DASHlike2] = ACTIONS(2887), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2834), + [anon_sym_bit_DASHxor2] = ACTIONS(2834), + [anon_sym_bit_DASHor2] = ACTIONS(2834), + [anon_sym_err_GT] = ACTIONS(2836), + [anon_sym_out_GT] = ACTIONS(2836), + [anon_sym_e_GT] = ACTIONS(2836), + [anon_sym_o_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT] = ACTIONS(2836), + [anon_sym_err_GT_GT] = ACTIONS(2834), + [anon_sym_out_GT_GT] = ACTIONS(2834), + [anon_sym_e_GT_GT] = ACTIONS(2834), + [anon_sym_o_GT_GT] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(3), + }, + [1204] = { + [sym_comment] = STATE(1204), + [aux_sym_cmd_identifier_token2] = ACTIONS(2800), + [anon_sym_in] = ACTIONS(2610), + [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(2610), + [anon_sym_RBRACE] = ACTIONS(2608), + [anon_sym_STAR2] = ACTIONS(2610), + [anon_sym_and2] = ACTIONS(2610), + [anon_sym_xor2] = ACTIONS(2610), + [anon_sym_or2] = ACTIONS(2610), + [anon_sym_not_DASHin2] = ACTIONS(2610), + [anon_sym_has2] = ACTIONS(2610), + [anon_sym_not_DASHhas2] = ACTIONS(2610), + [anon_sym_starts_DASHwith2] = ACTIONS(2610), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2610), + [anon_sym_ends_DASHwith2] = ACTIONS(2610), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2610), + [anon_sym_EQ_EQ2] = ACTIONS(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(2610), + [anon_sym_like2] = ACTIONS(2610), + [anon_sym_not_DASHlike2] = ACTIONS(2610), + [anon_sym_STAR_STAR2] = ACTIONS(2610), + [anon_sym_PLUS_PLUS2] = ACTIONS(2610), + [anon_sym_SLASH2] = ACTIONS(2610), + [anon_sym_mod2] = ACTIONS(2610), + [anon_sym_SLASH_SLASH2] = ACTIONS(2610), + [anon_sym_PLUS2] = ACTIONS(2610), + [anon_sym_bit_DASHshl2] = ACTIONS(2610), + [anon_sym_bit_DASHshr2] = ACTIONS(2610), + [anon_sym_bit_DASHand2] = ACTIONS(2610), + [anon_sym_bit_DASHxor2] = ACTIONS(2610), + [anon_sym_bit_DASHor2] = ACTIONS(2610), + [anon_sym_err_GT] = ACTIONS(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), + [anon_sym_POUND] = ACTIONS(105), + }, + [1205] = { + [sym_comment] = STATE(1205), + [ts_builtin_sym_end] = ACTIONS(2419), + [anon_sym_finally] = ACTIONS(2419), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_POUND] = ACTIONS(3), + }, + [1206] = { + [sym__ctrl_match_body] = STATE(5389), + [sym_match_arm] = STATE(4907), + [sym_default_arm] = STATE(4907), + [sym_match_pattern] = STATE(5353), + [sym__match_pattern] = STATE(4158), + [sym__match_pattern_expression] = STATE(4626), + [sym__match_pattern_value] = STATE(4598), + [sym__match_pattern_list] = STATE(4599), + [sym__match_pattern_record] = STATE(4600), + [sym_expr_parenthesized] = STATE(3916), + [sym_val_range] = STATE(4598), + [sym__val_range] = STATE(5111), + [sym_val_nothing] = STATE(4600), + [sym_val_bool] = STATE(4244), + [sym_val_variable] = STATE(3915), + [sym_val_number] = STATE(4600), + [sym__val_number_decimal] = STATE(3677), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(4600), + [sym_val_filesize] = STATE(4600), + [sym_val_binary] = STATE(4600), + [sym_val_string] = STATE(4600), + [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(4600), + [sym_unquoted] = STATE(4603), + [sym__unquoted_anonymous_prefix] = STATE(5111), + [sym_comment] = STATE(1206), + [aux_sym__types_body_repeat1] = STATE(1381), + [aux_sym__ctrl_match_body_repeat1] = STATE(1401), + [anon_sym_true] = ACTIONS(2925), + [anon_sym_false] = ACTIONS(2925), + [anon_sym_null] = ACTIONS(2927), + [aux_sym_cmd_identifier_token3] = ACTIONS(2929), + [aux_sym_cmd_identifier_token4] = ACTIONS(2929), + [aux_sym_cmd_identifier_token5] = ACTIONS(2929), + [sym__newline] = ACTIONS(2931), + [anon_sym_LBRACK] = ACTIONS(2933), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_DOLLAR] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_RBRACE] = ACTIONS(2984), + [anon_sym__] = ACTIONS(2941), + [anon_sym_DOT_DOT] = ACTIONS(2943), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2945), + [anon_sym_DOT_DOT_LT] = ACTIONS(2945), + [aux_sym__val_number_decimal_token1] = ACTIONS(2947), + [aux_sym__val_number_decimal_token2] = ACTIONS(2949), + [aux_sym__val_number_decimal_token3] = ACTIONS(2951), + [aux_sym__val_number_decimal_token4] = ACTIONS(2951), + [aux_sym__val_number_token1] = ACTIONS(191), + [aux_sym__val_number_token2] = ACTIONS(191), + [aux_sym__val_number_token3] = ACTIONS(191), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1768), + [aux_sym_unquoted_token1] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1770), + }, + [1207] = { + [aux_sym__repeat_newline] = STATE(1152), + [sym_comment] = STATE(1207), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2955), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_err_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_GT_PIPE] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_GT2] = ACTIONS(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2834), + [anon_sym_xor2] = ACTIONS(2834), + [anon_sym_or2] = ACTIONS(2834), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2887), + [anon_sym_BANG_TILDE2] = ACTIONS(2887), + [anon_sym_like2] = ACTIONS(2887), + [anon_sym_not_DASHlike2] = ACTIONS(2887), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2897), + [anon_sym_bit_DASHxor2] = ACTIONS(2834), + [anon_sym_bit_DASHor2] = ACTIONS(2834), + [anon_sym_err_GT] = ACTIONS(2836), + [anon_sym_out_GT] = ACTIONS(2836), + [anon_sym_e_GT] = ACTIONS(2836), + [anon_sym_o_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT] = ACTIONS(2836), + [anon_sym_err_GT_GT] = ACTIONS(2834), + [anon_sym_out_GT_GT] = ACTIONS(2834), + [anon_sym_e_GT_GT] = ACTIONS(2834), + [anon_sym_o_GT_GT] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(3), + }, + [1208] = { + [sym_comment] = STATE(1208), + [ts_builtin_sym_end] = ACTIONS(2405), + [anon_sym_finally] = 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_GT2] = ACTIONS(2407), + [anon_sym_DASH2] = 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_POUND] = ACTIONS(3), + }, + [1209] = { + [sym_comment] = STATE(1209), + [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(2905), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_STAR2] = ACTIONS(2907), + [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(2913), + [anon_sym_PLUS_PLUS2] = ACTIONS(2913), + [anon_sym_SLASH2] = ACTIONS(2907), + [anon_sym_mod2] = ACTIONS(2915), + [anon_sym_SLASH_SLASH2] = ACTIONS(2915), + [anon_sym_PLUS2] = ACTIONS(2917), + [anon_sym_bit_DASHshl2] = ACTIONS(2919), + [anon_sym_bit_DASHshr2] = ACTIONS(2919), + [anon_sym_bit_DASHand2] = ACTIONS(2624), + [anon_sym_bit_DASHxor2] = ACTIONS(2624), + [anon_sym_bit_DASHor2] = ACTIONS(2624), + [anon_sym_err_GT] = ACTIONS(2626), + [anon_sym_out_GT] = ACTIONS(2626), + [anon_sym_e_GT] = ACTIONS(2626), + [anon_sym_o_GT] = ACTIONS(2626), + [anon_sym_err_PLUSout_GT] = ACTIONS(2626), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2626), + [anon_sym_o_PLUSe_GT] = ACTIONS(2626), + [anon_sym_e_PLUSo_GT] = ACTIONS(2626), + [anon_sym_err_GT_GT] = ACTIONS(2624), + [anon_sym_out_GT_GT] = ACTIONS(2624), + [anon_sym_e_GT_GT] = ACTIONS(2624), + [anon_sym_o_GT_GT] = ACTIONS(2624), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2624), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2624), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2624), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2624), + [anon_sym_POUND] = ACTIONS(3), + }, + [1210] = { + [aux_sym__repeat_newline] = STATE(1236), + [sym_comment] = STATE(1210), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2986), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2762), + [anon_sym_xor2] = ACTIONS(2762), + [anon_sym_or2] = ACTIONS(2762), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2887), + [anon_sym_BANG_TILDE2] = ACTIONS(2887), + [anon_sym_like2] = ACTIONS(2887), + [anon_sym_not_DASHlike2] = ACTIONS(2887), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2897), + [anon_sym_bit_DASHxor2] = ACTIONS(2762), + [anon_sym_bit_DASHor2] = ACTIONS(2762), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_POUND] = ACTIONS(3), + }, + [1211] = { + [aux_sym__repeat_newline] = STATE(1216), + [sym_comment] = STATE(1211), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2955), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_err_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_GT_PIPE] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2834), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_GT2] = ACTIONS(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2834), + [anon_sym_xor2] = ACTIONS(2834), + [anon_sym_or2] = ACTIONS(2834), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2887), + [anon_sym_BANG_TILDE2] = ACTIONS(2887), + [anon_sym_like2] = ACTIONS(2887), + [anon_sym_not_DASHlike2] = ACTIONS(2887), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2897), + [anon_sym_bit_DASHxor2] = ACTIONS(2899), + [anon_sym_bit_DASHor2] = ACTIONS(2834), + [anon_sym_err_GT] = ACTIONS(2836), + [anon_sym_out_GT] = ACTIONS(2836), + [anon_sym_e_GT] = ACTIONS(2836), + [anon_sym_o_GT] = ACTIONS(2836), + [anon_sym_err_PLUSout_GT] = ACTIONS(2836), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2836), + [anon_sym_o_PLUSe_GT] = ACTIONS(2836), + [anon_sym_e_PLUSo_GT] = ACTIONS(2836), + [anon_sym_err_GT_GT] = ACTIONS(2834), + [anon_sym_out_GT_GT] = ACTIONS(2834), + [anon_sym_e_GT_GT] = ACTIONS(2834), + [anon_sym_o_GT_GT] = ACTIONS(2834), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2834), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2834), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2834), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(3), + }, + [1212] = { + [sym_comment] = STATE(1212), + [ts_builtin_sym_end] = ACTIONS(2158), + [anon_sym_in] = ACTIONS(2158), + [sym__newline] = ACTIONS(2158), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_err_GT_PIPE] = ACTIONS(2158), + [anon_sym_out_GT_PIPE] = ACTIONS(2158), + [anon_sym_e_GT_PIPE] = ACTIONS(2158), + [anon_sym_o_GT_PIPE] = ACTIONS(2158), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2158), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2158), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2158), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2158), + [anon_sym_GT2] = ACTIONS(2160), + [anon_sym_DASH2] = ACTIONS(2158), + [anon_sym_STAR2] = ACTIONS(2160), + [anon_sym_and2] = ACTIONS(2158), + [anon_sym_xor2] = ACTIONS(2158), + [anon_sym_or2] = ACTIONS(2158), + [anon_sym_not_DASHin2] = ACTIONS(2158), + [anon_sym_has2] = ACTIONS(2158), + [anon_sym_not_DASHhas2] = ACTIONS(2158), + [anon_sym_starts_DASHwith2] = ACTIONS(2158), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2158), + [anon_sym_ends_DASHwith2] = ACTIONS(2158), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2158), + [anon_sym_EQ_EQ2] = ACTIONS(2158), + [anon_sym_BANG_EQ2] = ACTIONS(2158), + [anon_sym_LT2] = ACTIONS(2160), + [anon_sym_LT_EQ2] = ACTIONS(2158), + [anon_sym_GT_EQ2] = ACTIONS(2158), + [anon_sym_EQ_TILDE2] = ACTIONS(2158), + [anon_sym_BANG_TILDE2] = ACTIONS(2158), + [anon_sym_like2] = ACTIONS(2158), + [anon_sym_not_DASHlike2] = ACTIONS(2158), + [anon_sym_LPAREN2] = ACTIONS(2158), + [anon_sym_STAR_STAR2] = ACTIONS(2158), + [anon_sym_PLUS_PLUS2] = ACTIONS(2158), + [anon_sym_SLASH2] = ACTIONS(2160), + [anon_sym_mod2] = ACTIONS(2158), + [anon_sym_SLASH_SLASH2] = ACTIONS(2158), + [anon_sym_PLUS2] = ACTIONS(2160), + [anon_sym_bit_DASHshl2] = ACTIONS(2158), + [anon_sym_bit_DASHshr2] = ACTIONS(2158), + [anon_sym_bit_DASHand2] = ACTIONS(2158), + [anon_sym_bit_DASHxor2] = ACTIONS(2158), + [anon_sym_bit_DASHor2] = ACTIONS(2158), + [anon_sym_err_GT] = ACTIONS(2160), + [anon_sym_out_GT] = ACTIONS(2160), + [anon_sym_e_GT] = ACTIONS(2160), + [anon_sym_o_GT] = ACTIONS(2160), + [anon_sym_err_PLUSout_GT] = ACTIONS(2160), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2160), + [anon_sym_o_PLUSe_GT] = ACTIONS(2160), + [anon_sym_e_PLUSo_GT] = ACTIONS(2160), + [anon_sym_err_GT_GT] = ACTIONS(2158), + [anon_sym_out_GT_GT] = ACTIONS(2158), + [anon_sym_e_GT_GT] = ACTIONS(2158), + [anon_sym_o_GT_GT] = ACTIONS(2158), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2158), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2158), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2158), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2158), + [anon_sym_POUND] = ACTIONS(3), + }, + [1213] = { + [sym_comment] = STATE(1213), + [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(2903), + [anon_sym_DASH2] = ACTIONS(2905), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_STAR2] = ACTIONS(2907), + [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(2909), + [anon_sym_BANG_EQ2] = ACTIONS(2909), + [anon_sym_LT2] = ACTIONS(2903), + [anon_sym_LT_EQ2] = ACTIONS(2909), + [anon_sym_GT_EQ2] = ACTIONS(2909), + [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(2913), + [anon_sym_PLUS_PLUS2] = ACTIONS(2913), + [anon_sym_SLASH2] = ACTIONS(2907), + [anon_sym_mod2] = ACTIONS(2915), + [anon_sym_SLASH_SLASH2] = ACTIONS(2915), + [anon_sym_PLUS2] = ACTIONS(2917), + [anon_sym_bit_DASHshl2] = ACTIONS(2919), + [anon_sym_bit_DASHshr2] = ACTIONS(2919), + [anon_sym_bit_DASHand2] = ACTIONS(2624), + [anon_sym_bit_DASHxor2] = ACTIONS(2624), + [anon_sym_bit_DASHor2] = ACTIONS(2624), + [anon_sym_err_GT] = ACTIONS(2626), + [anon_sym_out_GT] = ACTIONS(2626), + [anon_sym_e_GT] = ACTIONS(2626), + [anon_sym_o_GT] = ACTIONS(2626), + [anon_sym_err_PLUSout_GT] = ACTIONS(2626), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2626), + [anon_sym_o_PLUSe_GT] = ACTIONS(2626), + [anon_sym_e_PLUSo_GT] = ACTIONS(2626), + [anon_sym_err_GT_GT] = ACTIONS(2624), + [anon_sym_out_GT_GT] = ACTIONS(2624), + [anon_sym_e_GT_GT] = ACTIONS(2624), + [anon_sym_o_GT_GT] = ACTIONS(2624), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2624), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2624), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2624), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2624), + [anon_sym_POUND] = ACTIONS(3), + }, + [1214] = { + [aux_sym__repeat_newline] = STATE(1155), + [sym_comment] = STATE(1214), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2989), + [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(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2794), + [anon_sym_xor2] = ACTIONS(2794), + [anon_sym_or2] = ACTIONS(2794), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2887), + [anon_sym_BANG_TILDE2] = ACTIONS(2887), + [anon_sym_like2] = ACTIONS(2887), + [anon_sym_not_DASHlike2] = ACTIONS(2887), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2897), + [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), + }, + [1215] = { + [sym_comment] = STATE(1215), + [anon_sym_in] = ACTIONS(2493), + [sym__newline] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2564), + [anon_sym_PIPE] = ACTIONS(2564), + [anon_sym_err_GT_PIPE] = ACTIONS(2564), + [anon_sym_out_GT_PIPE] = ACTIONS(2564), + [anon_sym_e_GT_PIPE] = ACTIONS(2564), + [anon_sym_o_GT_PIPE] = ACTIONS(2564), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2564), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2564), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2564), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(2564), + [anon_sym_GT2] = ACTIONS(2495), + [anon_sym_DASH2] = ACTIONS(2493), + [anon_sym_LBRACE] = ACTIONS(2564), + [anon_sym_STAR2] = ACTIONS(2495), + [anon_sym_and2] = ACTIONS(2493), + [anon_sym_xor2] = ACTIONS(2493), + [anon_sym_or2] = ACTIONS(2493), + [anon_sym_not_DASHin2] = ACTIONS(2493), + [anon_sym_has2] = ACTIONS(2493), + [anon_sym_not_DASHhas2] = ACTIONS(2493), + [anon_sym_starts_DASHwith2] = ACTIONS(2493), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2493), + [anon_sym_ends_DASHwith2] = ACTIONS(2493), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2493), + [anon_sym_EQ_EQ2] = ACTIONS(2493), + [anon_sym_BANG_EQ2] = ACTIONS(2493), + [anon_sym_LT2] = ACTIONS(2495), + [anon_sym_LT_EQ2] = ACTIONS(2493), + [anon_sym_GT_EQ2] = ACTIONS(2493), + [anon_sym_EQ_TILDE2] = ACTIONS(2493), + [anon_sym_BANG_TILDE2] = ACTIONS(2493), + [anon_sym_like2] = ACTIONS(2493), + [anon_sym_not_DASHlike2] = ACTIONS(2493), + [anon_sym_STAR_STAR2] = ACTIONS(2493), + [anon_sym_PLUS_PLUS2] = ACTIONS(2493), + [anon_sym_SLASH2] = ACTIONS(2495), + [anon_sym_mod2] = ACTIONS(2493), + [anon_sym_SLASH_SLASH2] = ACTIONS(2493), + [anon_sym_PLUS2] = ACTIONS(2495), + [anon_sym_bit_DASHshl2] = ACTIONS(2493), + [anon_sym_bit_DASHshr2] = ACTIONS(2493), + [anon_sym_bit_DASHand2] = ACTIONS(2493), + [anon_sym_bit_DASHxor2] = ACTIONS(2493), + [anon_sym_bit_DASHor2] = ACTIONS(2493), + [anon_sym_err_GT] = ACTIONS(2566), + [anon_sym_out_GT] = ACTIONS(2566), + [anon_sym_e_GT] = ACTIONS(2566), + [anon_sym_o_GT] = ACTIONS(2566), + [anon_sym_err_PLUSout_GT] = ACTIONS(2566), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2566), + [anon_sym_o_PLUSe_GT] = ACTIONS(2566), + [anon_sym_e_PLUSo_GT] = ACTIONS(2566), + [anon_sym_err_GT_GT] = ACTIONS(2564), + [anon_sym_out_GT_GT] = ACTIONS(2564), + [anon_sym_e_GT_GT] = ACTIONS(2564), + [anon_sym_o_GT_GT] = ACTIONS(2564), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2564), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2564), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2564), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(3), + }, + [1216] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1216), + [anon_sym_in] = ACTIONS(2852), + [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(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2786), + [anon_sym_xor2] = ACTIONS(2786), + [anon_sym_or2] = ACTIONS(2786), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2862), + [anon_sym_BANG_TILDE2] = ACTIONS(2862), + [anon_sym_like2] = ACTIONS(2862), + [anon_sym_not_DASHlike2] = ACTIONS(2862), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2923), + [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), + }, + [1217] = { + [aux_sym__repeat_newline] = STATE(1220), + [sym_comment] = STATE(1217), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2989), + [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(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2794), + [anon_sym_xor2] = ACTIONS(2794), + [anon_sym_or2] = ACTIONS(2794), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2887), + [anon_sym_BANG_TILDE2] = ACTIONS(2887), + [anon_sym_like2] = ACTIONS(2887), + [anon_sym_not_DASHlike2] = ACTIONS(2887), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [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), + }, + [1218] = { + [aux_sym__repeat_newline] = STATE(1229), + [sym_comment] = STATE(1218), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2986), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2762), + [anon_sym_xor2] = ACTIONS(2762), + [anon_sym_or2] = ACTIONS(2762), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2887), + [anon_sym_BANG_TILDE2] = ACTIONS(2887), + [anon_sym_like2] = ACTIONS(2887), + [anon_sym_not_DASHlike2] = ACTIONS(2887), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2897), + [anon_sym_bit_DASHxor2] = ACTIONS(2899), + [anon_sym_bit_DASHor2] = ACTIONS(2762), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_POUND] = ACTIONS(3), + }, + [1219] = { + [aux_sym__repeat_newline] = STATE(1159), + [sym_comment] = STATE(1219), + [anon_sym_in] = ACTIONS(2794), + [sym__newline] = ACTIONS(2989), + [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(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [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(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [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), + }, + [1220] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1220), + [anon_sym_in] = ACTIONS(2852), [sym__newline] = ACTIONS(2844), [anon_sym_SEMI] = ACTIONS(2844), [anon_sym_PIPE] = ACTIONS(2844), @@ -140442,39 +138514,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), [anon_sym_RPAREN] = ACTIONS(2844), - [anon_sym_GT2] = ACTIONS(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), + [anon_sym_GT2] = ACTIONS(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), [anon_sym_and2] = ACTIONS(2844), [anon_sym_xor2] = ACTIONS(2844), [anon_sym_or2] = ACTIONS(2844), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2866), - [anon_sym_BANG_TILDE2] = ACTIONS(2866), - [anon_sym_like2] = ACTIONS(2866), - [anon_sym_not_DASHlike2] = ACTIONS(2866), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2870), - [anon_sym_bit_DASHxor2] = ACTIONS(2872), - [anon_sym_bit_DASHor2] = ACTIONS(2874), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2862), + [anon_sym_BANG_TILDE2] = ACTIONS(2862), + [anon_sym_like2] = ACTIONS(2862), + [anon_sym_not_DASHlike2] = ACTIONS(2862), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2844), + [anon_sym_bit_DASHor2] = ACTIONS(2844), [anon_sym_err_GT] = ACTIONS(2846), [anon_sym_out_GT] = ACTIONS(2846), [anon_sym_e_GT] = ACTIONS(2846), @@ -140493,212 +138565,413 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1249)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1249), - [anon_sym_in] = ACTIONS(2858), - [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(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2866), - [anon_sym_BANG_TILDE2] = ACTIONS(2866), - [anon_sym_like2] = ACTIONS(2866), - [anon_sym_not_DASHlike2] = ACTIONS(2866), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2870), - [anon_sym_bit_DASHxor2] = ACTIONS(2872), - [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(1250)] = { - [aux_sym__repeat_newline] = STATE(1220), - [sym_comment] = STATE(1250), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2967), - [anon_sym_SEMI] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_err_GT_PIPE] = ACTIONS(2836), - [anon_sym_out_GT_PIPE] = ACTIONS(2836), - [anon_sym_e_GT_PIPE] = ACTIONS(2836), - [anon_sym_o_GT_PIPE] = ACTIONS(2836), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2836), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2836), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2836), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2836), - [anon_sym_RPAREN] = ACTIONS(2836), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2905), - [anon_sym_xor2] = ACTIONS(2836), - [anon_sym_or2] = ACTIONS(2836), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2889), - [anon_sym_BANG_TILDE2] = ACTIONS(2889), - [anon_sym_like2] = ACTIONS(2889), - [anon_sym_not_DASHlike2] = ACTIONS(2889), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2909), - [anon_sym_err_GT] = ACTIONS(2838), - [anon_sym_out_GT] = ACTIONS(2838), - [anon_sym_e_GT] = ACTIONS(2838), - [anon_sym_o_GT] = ACTIONS(2838), - [anon_sym_err_PLUSout_GT] = ACTIONS(2838), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), - [anon_sym_o_PLUSe_GT] = ACTIONS(2838), - [anon_sym_e_PLUSo_GT] = ACTIONS(2838), - [anon_sym_err_GT_GT] = ACTIONS(2836), - [anon_sym_out_GT_GT] = ACTIONS(2836), - [anon_sym_e_GT_GT] = ACTIONS(2836), - [anon_sym_o_GT_GT] = ACTIONS(2836), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2836), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2836), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2836), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1251)] = { - [aux_sym__repeat_newline] = STATE(1274), - [sym_comment] = STATE(1251), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2878), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2728), - [anon_sym_STAR2] = ACTIONS(2730), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2730), - [anon_sym_mod2] = ACTIONS(2728), - [anon_sym_SLASH_SLASH2] = ACTIONS(2728), - [anon_sym_PLUS2] = ACTIONS(2730), - [anon_sym_bit_DASHshl2] = ACTIONS(2728), - [anon_sym_bit_DASHshr2] = ACTIONS(2728), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1252)] = { - [aux_sym__repeat_newline] = STATE(1182), - [sym_comment] = STATE(1252), + [1221] = { + [sym_comment] = STATE(1221), + [anon_sym_in] = ACTIONS(2901), + [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(2903), + [anon_sym_DASH2] = ACTIONS(2905), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_STAR2] = ACTIONS(2907), + [anon_sym_and2] = ACTIONS(2624), + [anon_sym_xor2] = ACTIONS(2624), + [anon_sym_or2] = ACTIONS(2624), + [anon_sym_not_DASHin2] = ACTIONS(2901), + [anon_sym_has2] = ACTIONS(2901), + [anon_sym_not_DASHhas2] = ACTIONS(2901), + [anon_sym_starts_DASHwith2] = ACTIONS(2901), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2901), + [anon_sym_ends_DASHwith2] = ACTIONS(2901), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2901), + [anon_sym_EQ_EQ2] = ACTIONS(2909), + [anon_sym_BANG_EQ2] = ACTIONS(2909), + [anon_sym_LT2] = ACTIONS(2903), + [anon_sym_LT_EQ2] = ACTIONS(2909), + [anon_sym_GT_EQ2] = ACTIONS(2909), + [anon_sym_EQ_TILDE2] = ACTIONS(2911), + [anon_sym_BANG_TILDE2] = ACTIONS(2911), + [anon_sym_like2] = ACTIONS(2911), + [anon_sym_not_DASHlike2] = ACTIONS(2911), + [anon_sym_STAR_STAR2] = ACTIONS(2913), + [anon_sym_PLUS_PLUS2] = ACTIONS(2913), + [anon_sym_SLASH2] = ACTIONS(2907), + [anon_sym_mod2] = ACTIONS(2915), + [anon_sym_SLASH_SLASH2] = ACTIONS(2915), + [anon_sym_PLUS2] = ACTIONS(2917), + [anon_sym_bit_DASHshl2] = ACTIONS(2919), + [anon_sym_bit_DASHshr2] = ACTIONS(2919), + [anon_sym_bit_DASHand2] = ACTIONS(2921), + [anon_sym_bit_DASHxor2] = ACTIONS(2978), + [anon_sym_bit_DASHor2] = ACTIONS(2624), + [anon_sym_err_GT] = ACTIONS(2626), + [anon_sym_out_GT] = ACTIONS(2626), + [anon_sym_e_GT] = ACTIONS(2626), + [anon_sym_o_GT] = ACTIONS(2626), + [anon_sym_err_PLUSout_GT] = ACTIONS(2626), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2626), + [anon_sym_o_PLUSe_GT] = ACTIONS(2626), + [anon_sym_e_PLUSo_GT] = ACTIONS(2626), + [anon_sym_err_GT_GT] = ACTIONS(2624), + [anon_sym_out_GT_GT] = ACTIONS(2624), + [anon_sym_e_GT_GT] = ACTIONS(2624), + [anon_sym_o_GT_GT] = ACTIONS(2624), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2624), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2624), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2624), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2624), + [anon_sym_POUND] = ACTIONS(3), + }, + [1222] = { + [aux_sym__repeat_newline] = STATE(1160), + [sym_comment] = STATE(1222), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2989), + [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(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2794), + [anon_sym_xor2] = ACTIONS(2794), + [anon_sym_or2] = ACTIONS(2794), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2887), + [anon_sym_BANG_TILDE2] = ACTIONS(2887), + [anon_sym_like2] = ACTIONS(2887), + [anon_sym_not_DASHlike2] = ACTIONS(2887), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2897), + [anon_sym_bit_DASHxor2] = ACTIONS(2899), + [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), + }, + [1223] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1223), + [anon_sym_in] = ACTIONS(2852), + [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(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2786), + [anon_sym_xor2] = ACTIONS(2786), + [anon_sym_or2] = ACTIONS(2786), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2862), + [anon_sym_BANG_TILDE2] = ACTIONS(2862), + [anon_sym_like2] = ACTIONS(2862), + [anon_sym_not_DASHlike2] = ACTIONS(2862), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [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), + }, + [1224] = { + [aux_sym__repeat_newline] = STATE(1245), + [sym_comment] = STATE(1224), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2986), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2762), + [anon_sym_xor2] = ACTIONS(2762), + [anon_sym_or2] = ACTIONS(2762), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2887), + [anon_sym_BANG_TILDE2] = ACTIONS(2887), + [anon_sym_like2] = ACTIONS(2887), + [anon_sym_not_DASHlike2] = ACTIONS(2887), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2762), + [anon_sym_bit_DASHxor2] = ACTIONS(2762), + [anon_sym_bit_DASHor2] = ACTIONS(2762), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_POUND] = ACTIONS(3), + }, + [1225] = { + [aux_sym__repeat_newline] = STATE(1166), + [sym_comment] = STATE(1225), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2989), + [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(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2794), + [anon_sym_xor2] = ACTIONS(2794), + [anon_sym_or2] = ACTIONS(2794), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [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(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [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), + }, + [1226] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1226), + [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(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [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(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [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), + }, + [1227] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1227), [anon_sym_in] = ACTIONS(2782), - [sym__newline] = ACTIONS(2913), + [sym__newline] = ACTIONS(2782), [anon_sym_SEMI] = ACTIONS(2782), [anon_sym_PIPE] = ACTIONS(2782), [anon_sym_err_GT_PIPE] = ACTIONS(2782), @@ -140710,9 +138983,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), [anon_sym_RPAREN] = ACTIONS(2782), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_GT2] = ACTIONS(2784), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), [anon_sym_and2] = ACTIONS(2782), [anon_sym_xor2] = ACTIONS(2782), [anon_sym_or2] = ACTIONS(2782), @@ -140723,23 +138996,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2782), [anon_sym_ends_DASHwith2] = ACTIONS(2782), [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2782), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), + [anon_sym_EQ_EQ2] = ACTIONS(2782), + [anon_sym_BANG_EQ2] = ACTIONS(2782), + [anon_sym_LT2] = ACTIONS(2784), + [anon_sym_LT_EQ2] = ACTIONS(2782), + [anon_sym_GT_EQ2] = ACTIONS(2782), [anon_sym_EQ_TILDE2] = ACTIONS(2782), [anon_sym_BANG_TILDE2] = ACTIONS(2782), [anon_sym_like2] = ACTIONS(2782), [anon_sym_not_DASHlike2] = ACTIONS(2782), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), [anon_sym_bit_DASHand2] = ACTIONS(2782), [anon_sym_bit_DASHxor2] = ACTIONS(2782), [anon_sym_bit_DASHor2] = ACTIONS(2782), @@ -140761,547 +139034,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1253)] = { - [sym_comment] = STATE(1253), - [ts_builtin_sym_end] = ACTIONS(2576), - [aux_sym_cmd_identifier_token2] = ACTIONS(2986), - [anon_sym_in] = ACTIONS(2578), - [sym__newline] = ACTIONS(2576), - [anon_sym_SEMI] = ACTIONS(2576), - [anon_sym_PIPE] = ACTIONS(2576), - [anon_sym_err_GT_PIPE] = ACTIONS(2576), - [anon_sym_out_GT_PIPE] = ACTIONS(2576), - [anon_sym_e_GT_PIPE] = ACTIONS(2576), - [anon_sym_o_GT_PIPE] = ACTIONS(2576), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2576), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2576), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2576), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2576), - [anon_sym_GT2] = ACTIONS(2578), - [anon_sym_DASH2] = ACTIONS(2578), - [anon_sym_STAR2] = ACTIONS(2578), - [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(2576), - [anon_sym_BANG_EQ2] = ACTIONS(2576), - [anon_sym_LT2] = ACTIONS(2578), - [anon_sym_LT_EQ2] = ACTIONS(2576), - [anon_sym_GT_EQ2] = ACTIONS(2576), - [anon_sym_EQ_TILDE2] = ACTIONS(2576), - [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(2578), - [anon_sym_mod2] = ACTIONS(2578), - [anon_sym_SLASH_SLASH2] = ACTIONS(2578), - [anon_sym_PLUS2] = ACTIONS(2578), - [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(2578), - [anon_sym_out_GT] = ACTIONS(2578), - [anon_sym_e_GT] = ACTIONS(2578), - [anon_sym_o_GT] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT] = ACTIONS(2578), - [anon_sym_err_GT_GT] = ACTIONS(2576), - [anon_sym_out_GT_GT] = ACTIONS(2576), - [anon_sym_e_GT_GT] = ACTIONS(2576), - [anon_sym_o_GT_GT] = ACTIONS(2576), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2576), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2576), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2576), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2576), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(1254)] = { - [sym_comment] = STATE(1254), - [ts_builtin_sym_end] = ACTIONS(2604), - [aux_sym_cmd_identifier_token2] = ACTIONS(2986), - [anon_sym_in] = ACTIONS(2606), - [sym__newline] = ACTIONS(2604), - [anon_sym_SEMI] = ACTIONS(2604), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_err_GT_PIPE] = ACTIONS(2604), - [anon_sym_out_GT_PIPE] = ACTIONS(2604), - [anon_sym_e_GT_PIPE] = ACTIONS(2604), - [anon_sym_o_GT_PIPE] = ACTIONS(2604), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2604), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2604), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2604), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2604), - [anon_sym_GT2] = ACTIONS(2606), - [anon_sym_DASH2] = ACTIONS(2606), - [anon_sym_STAR2] = ACTIONS(2606), - [anon_sym_and2] = ACTIONS(2606), - [anon_sym_xor2] = ACTIONS(2606), - [anon_sym_or2] = ACTIONS(2606), - [anon_sym_not_DASHin2] = ACTIONS(2606), - [anon_sym_has2] = ACTIONS(2606), - [anon_sym_not_DASHhas2] = ACTIONS(2606), - [anon_sym_starts_DASHwith2] = ACTIONS(2606), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2606), - [anon_sym_ends_DASHwith2] = ACTIONS(2606), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2606), - [anon_sym_EQ_EQ2] = ACTIONS(2604), - [anon_sym_BANG_EQ2] = ACTIONS(2604), - [anon_sym_LT2] = ACTIONS(2606), - [anon_sym_LT_EQ2] = ACTIONS(2604), - [anon_sym_GT_EQ2] = ACTIONS(2604), - [anon_sym_EQ_TILDE2] = ACTIONS(2604), - [anon_sym_BANG_TILDE2] = ACTIONS(2606), - [anon_sym_like2] = ACTIONS(2606), - [anon_sym_not_DASHlike2] = ACTIONS(2606), - [anon_sym_STAR_STAR2] = ACTIONS(2606), - [anon_sym_PLUS_PLUS2] = ACTIONS(2606), - [anon_sym_SLASH2] = ACTIONS(2606), - [anon_sym_mod2] = ACTIONS(2606), - [anon_sym_SLASH_SLASH2] = ACTIONS(2606), - [anon_sym_PLUS2] = ACTIONS(2606), - [anon_sym_bit_DASHshl2] = ACTIONS(2606), - [anon_sym_bit_DASHshr2] = ACTIONS(2606), - [anon_sym_bit_DASHand2] = ACTIONS(2606), - [anon_sym_bit_DASHxor2] = ACTIONS(2606), - [anon_sym_bit_DASHor2] = ACTIONS(2606), - [anon_sym_err_GT] = ACTIONS(2606), - [anon_sym_out_GT] = ACTIONS(2606), - [anon_sym_e_GT] = ACTIONS(2606), - [anon_sym_o_GT] = ACTIONS(2606), - [anon_sym_err_PLUSout_GT] = ACTIONS(2606), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2606), - [anon_sym_o_PLUSe_GT] = ACTIONS(2606), - [anon_sym_e_PLUSo_GT] = ACTIONS(2606), - [anon_sym_err_GT_GT] = ACTIONS(2604), - [anon_sym_out_GT_GT] = ACTIONS(2604), - [anon_sym_e_GT_GT] = ACTIONS(2604), - [anon_sym_o_GT_GT] = ACTIONS(2604), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2604), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2604), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2604), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2604), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(1255)] = { - [sym_comment] = STATE(1255), - [ts_builtin_sym_end] = ACTIONS(2397), - [anon_sym_finally] = ACTIONS(2397), - [anon_sym_in] = ACTIONS(2397), - [sym__newline] = ACTIONS(2397), - [anon_sym_SEMI] = ACTIONS(2397), - [anon_sym_PIPE] = ACTIONS(2397), - [anon_sym_err_GT_PIPE] = ACTIONS(2397), - [anon_sym_out_GT_PIPE] = ACTIONS(2397), - [anon_sym_e_GT_PIPE] = ACTIONS(2397), - [anon_sym_o_GT_PIPE] = ACTIONS(2397), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2397), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2397), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2397), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2397), - [anon_sym_GT2] = ACTIONS(2399), - [anon_sym_DASH2] = ACTIONS(2397), - [anon_sym_STAR2] = ACTIONS(2399), - [anon_sym_and2] = ACTIONS(2397), - [anon_sym_xor2] = ACTIONS(2397), - [anon_sym_or2] = ACTIONS(2397), - [anon_sym_not_DASHin2] = ACTIONS(2397), - [anon_sym_has2] = ACTIONS(2397), - [anon_sym_not_DASHhas2] = ACTIONS(2397), - [anon_sym_starts_DASHwith2] = ACTIONS(2397), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2397), - [anon_sym_ends_DASHwith2] = ACTIONS(2397), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2397), - [anon_sym_EQ_EQ2] = ACTIONS(2397), - [anon_sym_BANG_EQ2] = ACTIONS(2397), - [anon_sym_LT2] = ACTIONS(2399), - [anon_sym_LT_EQ2] = ACTIONS(2397), - [anon_sym_GT_EQ2] = ACTIONS(2397), - [anon_sym_EQ_TILDE2] = ACTIONS(2397), - [anon_sym_BANG_TILDE2] = ACTIONS(2397), - [anon_sym_like2] = ACTIONS(2397), - [anon_sym_not_DASHlike2] = ACTIONS(2397), - [anon_sym_STAR_STAR2] = ACTIONS(2397), - [anon_sym_PLUS_PLUS2] = ACTIONS(2397), - [anon_sym_SLASH2] = ACTIONS(2399), - [anon_sym_mod2] = ACTIONS(2397), - [anon_sym_SLASH_SLASH2] = ACTIONS(2397), - [anon_sym_PLUS2] = ACTIONS(2399), - [anon_sym_bit_DASHshl2] = ACTIONS(2397), - [anon_sym_bit_DASHshr2] = ACTIONS(2397), - [anon_sym_bit_DASHand2] = ACTIONS(2397), - [anon_sym_bit_DASHxor2] = ACTIONS(2397), - [anon_sym_bit_DASHor2] = ACTIONS(2397), - [anon_sym_err_GT] = ACTIONS(2399), - [anon_sym_out_GT] = ACTIONS(2399), - [anon_sym_e_GT] = ACTIONS(2399), - [anon_sym_o_GT] = ACTIONS(2399), - [anon_sym_err_PLUSout_GT] = ACTIONS(2399), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2399), - [anon_sym_o_PLUSe_GT] = ACTIONS(2399), - [anon_sym_e_PLUSo_GT] = ACTIONS(2399), - [anon_sym_err_GT_GT] = ACTIONS(2397), - [anon_sym_out_GT_GT] = ACTIONS(2397), - [anon_sym_e_GT_GT] = ACTIONS(2397), - [anon_sym_o_GT_GT] = ACTIONS(2397), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2397), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2397), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2397), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2397), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1256)] = { - [sym__expression] = STATE(5001), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2261), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1878), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_comment] = STATE(1256), - [aux_sym_cmd_identifier_token2] = ACTIONS(2634), - [anon_sym_true] = ACTIONS(2636), - [anon_sym_false] = ACTIONS(2636), - [anon_sym_null] = ACTIONS(2638), - [aux_sym_cmd_identifier_token3] = ACTIONS(2640), - [aux_sym_cmd_identifier_token4] = ACTIONS(2640), - [aux_sym_cmd_identifier_token5] = ACTIONS(2640), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(181), - [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1981), - [aux_sym__val_number_decimal_token3] = ACTIONS(2644), - [aux_sym__val_number_decimal_token4] = ACTIONS(2644), - [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(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2646), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(105), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(1257)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1257), - [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(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [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(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [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(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [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(1258)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1258), - [anon_sym_in] = ACTIONS(2858), - [sym__newline] = ACTIONS(2844), - [anon_sym_SEMI] = ACTIONS(2844), - [anon_sym_PIPE] = ACTIONS(2844), - [anon_sym_err_GT_PIPE] = ACTIONS(2844), - [anon_sym_out_GT_PIPE] = ACTIONS(2844), - [anon_sym_e_GT_PIPE] = ACTIONS(2844), - [anon_sym_o_GT_PIPE] = ACTIONS(2844), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2844), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2844), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), - [anon_sym_RPAREN] = ACTIONS(2844), - [anon_sym_GT2] = ACTIONS(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2862), - [anon_sym_xor2] = ACTIONS(2844), - [anon_sym_or2] = ACTIONS(2844), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2866), - [anon_sym_BANG_TILDE2] = ACTIONS(2866), - [anon_sym_like2] = ACTIONS(2866), - [anon_sym_not_DASHlike2] = ACTIONS(2866), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2870), - [anon_sym_bit_DASHxor2] = ACTIONS(2872), - [anon_sym_bit_DASHor2] = ACTIONS(2874), - [anon_sym_err_GT] = ACTIONS(2846), - [anon_sym_out_GT] = ACTIONS(2846), - [anon_sym_e_GT] = ACTIONS(2846), - [anon_sym_o_GT] = ACTIONS(2846), - [anon_sym_err_PLUSout_GT] = ACTIONS(2846), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2846), - [anon_sym_o_PLUSe_GT] = ACTIONS(2846), - [anon_sym_e_PLUSo_GT] = ACTIONS(2846), - [anon_sym_err_GT_GT] = ACTIONS(2844), - [anon_sym_out_GT_GT] = ACTIONS(2844), - [anon_sym_e_GT_GT] = ACTIONS(2844), - [anon_sym_o_GT_GT] = ACTIONS(2844), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2844), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2844), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2844), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1259)] = { - [sym__expression] = STATE(5002), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2261), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1878), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_comment] = STATE(1259), - [aux_sym_cmd_identifier_token2] = ACTIONS(2634), - [anon_sym_true] = ACTIONS(2636), - [anon_sym_false] = ACTIONS(2636), - [anon_sym_null] = ACTIONS(2638), - [aux_sym_cmd_identifier_token3] = ACTIONS(2640), - [aux_sym_cmd_identifier_token4] = ACTIONS(2640), - [aux_sym_cmd_identifier_token5] = ACTIONS(2640), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(181), - [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1981), - [aux_sym__val_number_decimal_token3] = ACTIONS(2644), - [aux_sym__val_number_decimal_token4] = ACTIONS(2644), - [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(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2646), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(105), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(1260)] = { - [sym_comment] = STATE(1260), - [ts_builtin_sym_end] = ACTIONS(914), - [aux_sym_cmd_identifier_token2] = ACTIONS(2986), - [anon_sym_in] = ACTIONS(811), - [sym__newline] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_err_GT_PIPE] = ACTIONS(914), - [anon_sym_out_GT_PIPE] = ACTIONS(914), - [anon_sym_e_GT_PIPE] = ACTIONS(914), - [anon_sym_o_GT_PIPE] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(914), - [anon_sym_GT2] = ACTIONS(811), - [anon_sym_DASH2] = ACTIONS(811), - [anon_sym_STAR2] = ACTIONS(811), - [anon_sym_and2] = ACTIONS(811), - [anon_sym_xor2] = ACTIONS(811), - [anon_sym_or2] = ACTIONS(811), - [anon_sym_not_DASHin2] = ACTIONS(811), - [anon_sym_has2] = ACTIONS(811), - [anon_sym_not_DASHhas2] = ACTIONS(811), - [anon_sym_starts_DASHwith2] = ACTIONS(811), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(811), - [anon_sym_ends_DASHwith2] = ACTIONS(811), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(811), - [anon_sym_EQ_EQ2] = ACTIONS(914), - [anon_sym_BANG_EQ2] = ACTIONS(914), - [anon_sym_LT2] = ACTIONS(811), - [anon_sym_LT_EQ2] = ACTIONS(914), - [anon_sym_GT_EQ2] = ACTIONS(914), - [anon_sym_EQ_TILDE2] = ACTIONS(914), - [anon_sym_BANG_TILDE2] = ACTIONS(811), - [anon_sym_like2] = ACTIONS(811), - [anon_sym_not_DASHlike2] = ACTIONS(811), - [anon_sym_STAR_STAR2] = ACTIONS(811), - [anon_sym_PLUS_PLUS2] = ACTIONS(811), - [anon_sym_SLASH2] = ACTIONS(811), - [anon_sym_mod2] = ACTIONS(811), - [anon_sym_SLASH_SLASH2] = ACTIONS(811), - [anon_sym_PLUS2] = ACTIONS(811), - [anon_sym_bit_DASHshl2] = ACTIONS(811), - [anon_sym_bit_DASHshr2] = ACTIONS(811), - [anon_sym_bit_DASHand2] = ACTIONS(811), - [anon_sym_bit_DASHxor2] = ACTIONS(811), - [anon_sym_bit_DASHor2] = ACTIONS(811), - [anon_sym_err_GT] = ACTIONS(811), - [anon_sym_out_GT] = ACTIONS(811), - [anon_sym_e_GT] = ACTIONS(811), - [anon_sym_o_GT] = ACTIONS(811), - [anon_sym_err_PLUSout_GT] = ACTIONS(811), - [anon_sym_out_PLUSerr_GT] = ACTIONS(811), - [anon_sym_o_PLUSe_GT] = ACTIONS(811), - [anon_sym_e_PLUSo_GT] = ACTIONS(811), - [anon_sym_err_GT_GT] = ACTIONS(914), - [anon_sym_out_GT_GT] = ACTIONS(914), - [anon_sym_e_GT_GT] = ACTIONS(914), - [anon_sym_o_GT_GT] = ACTIONS(914), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(914), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(914), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(914), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(914), - [anon_sym_POUND] = ACTIONS(105), - }, - [STATE(1261)] = { - [aux_sym__repeat_newline] = STATE(1183), - [sym_comment] = STATE(1261), + [1228] = { + [aux_sym__repeat_newline] = STATE(1172), + [sym_comment] = STATE(1228), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2966), + [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(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2968), + [anon_sym_xor2] = ACTIONS(2970), + [anon_sym_or2] = ACTIONS(2794), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2887), + [anon_sym_BANG_TILDE2] = ACTIONS(2887), + [anon_sym_like2] = ACTIONS(2887), + [anon_sym_not_DASHlike2] = ACTIONS(2887), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2897), + [anon_sym_bit_DASHxor2] = ACTIONS(2899), + [anon_sym_bit_DASHor2] = ACTIONS(2972), + [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), + }, + [1229] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1229), + [anon_sym_in] = ACTIONS(2852), + [sym__newline] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2848), + [anon_sym_PIPE] = ACTIONS(2848), + [anon_sym_err_GT_PIPE] = ACTIONS(2848), + [anon_sym_out_GT_PIPE] = ACTIONS(2848), + [anon_sym_e_GT_PIPE] = ACTIONS(2848), + [anon_sym_o_GT_PIPE] = ACTIONS(2848), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2848), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2848), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2848), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2848), + [anon_sym_RPAREN] = ACTIONS(2848), + [anon_sym_GT2] = ACTIONS(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2848), + [anon_sym_xor2] = ACTIONS(2848), + [anon_sym_or2] = ACTIONS(2848), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2862), + [anon_sym_BANG_TILDE2] = ACTIONS(2862), + [anon_sym_like2] = ACTIONS(2862), + [anon_sym_not_DASHlike2] = ACTIONS(2862), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2923), + [anon_sym_bit_DASHor2] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2848), + [anon_sym_out_GT_GT] = ACTIONS(2848), + [anon_sym_e_GT_GT] = ACTIONS(2848), + [anon_sym_o_GT_GT] = ACTIONS(2848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2848), + [anon_sym_POUND] = ACTIONS(3), + }, + [1230] = { + [aux_sym__repeat_newline] = STATE(1252), + [sym_comment] = STATE(1230), + [anon_sym_in] = ACTIONS(2762), + [sym__newline] = ACTIONS(2986), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2764), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2762), + [anon_sym_xor2] = ACTIONS(2762), + [anon_sym_or2] = ACTIONS(2762), + [anon_sym_not_DASHin2] = ACTIONS(2762), + [anon_sym_has2] = ACTIONS(2762), + [anon_sym_not_DASHhas2] = ACTIONS(2762), + [anon_sym_starts_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2762), + [anon_sym_ends_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2762), + [anon_sym_EQ_EQ2] = ACTIONS(2762), + [anon_sym_BANG_EQ2] = ACTIONS(2762), + [anon_sym_LT2] = ACTIONS(2764), + [anon_sym_LT_EQ2] = ACTIONS(2762), + [anon_sym_GT_EQ2] = ACTIONS(2762), + [anon_sym_EQ_TILDE2] = ACTIONS(2762), + [anon_sym_BANG_TILDE2] = ACTIONS(2762), + [anon_sym_like2] = ACTIONS(2762), + [anon_sym_not_DASHlike2] = ACTIONS(2762), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2762), + [anon_sym_bit_DASHshr2] = ACTIONS(2762), + [anon_sym_bit_DASHand2] = ACTIONS(2762), + [anon_sym_bit_DASHxor2] = ACTIONS(2762), + [anon_sym_bit_DASHor2] = ACTIONS(2762), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_POUND] = ACTIONS(3), + }, + [1231] = { + [aux_sym__repeat_newline] = STATE(1176), + [sym_comment] = STATE(1231), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2989), + [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(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2968), + [anon_sym_xor2] = ACTIONS(2794), + [anon_sym_or2] = ACTIONS(2794), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2887), + [anon_sym_BANG_TILDE2] = ACTIONS(2887), + [anon_sym_like2] = ACTIONS(2887), + [anon_sym_not_DASHlike2] = ACTIONS(2887), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2897), + [anon_sym_bit_DASHxor2] = ACTIONS(2899), + [anon_sym_bit_DASHor2] = ACTIONS(2972), + [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), + }, + [1232] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1232), [anon_sym_in] = ACTIONS(2782), - [sym__newline] = ACTIONS(2913), + [sym__newline] = ACTIONS(2782), [anon_sym_SEMI] = ACTIONS(2782), [anon_sym_PIPE] = ACTIONS(2782), [anon_sym_err_GT_PIPE] = ACTIONS(2782), @@ -141314,8 +139319,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), [anon_sym_RPAREN] = ACTIONS(2782), [anon_sym_GT2] = ACTIONS(2784), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_DASH2] = ACTIONS(2782), + [anon_sym_STAR2] = ACTIONS(2858), [anon_sym_and2] = ACTIONS(2782), [anon_sym_xor2] = ACTIONS(2782), [anon_sym_or2] = ACTIONS(2782), @@ -141335,14 +139340,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2782), [anon_sym_like2] = ACTIONS(2782), [anon_sym_not_DASHlike2] = ACTIONS(2782), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2784), + [anon_sym_bit_DASHshl2] = ACTIONS(2782), + [anon_sym_bit_DASHshr2] = ACTIONS(2782), [anon_sym_bit_DASHand2] = ACTIONS(2782), [anon_sym_bit_DASHxor2] = ACTIONS(2782), [anon_sym_bit_DASHor2] = ACTIONS(2782), @@ -141364,346 +139369,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1262)] = { - [aux_sym__repeat_newline] = STATE(1228), - [sym_comment] = STATE(1262), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2903), - [anon_sym_SEMI] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_err_GT_PIPE] = ACTIONS(2836), - [anon_sym_out_GT_PIPE] = ACTIONS(2836), - [anon_sym_e_GT_PIPE] = ACTIONS(2836), - [anon_sym_o_GT_PIPE] = ACTIONS(2836), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2836), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2836), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2836), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2836), - [anon_sym_RPAREN] = ACTIONS(2836), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2905), - [anon_sym_xor2] = ACTIONS(2907), - [anon_sym_or2] = ACTIONS(2836), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2889), - [anon_sym_BANG_TILDE2] = ACTIONS(2889), - [anon_sym_like2] = ACTIONS(2889), - [anon_sym_not_DASHlike2] = ACTIONS(2889), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2909), - [anon_sym_err_GT] = ACTIONS(2838), - [anon_sym_out_GT] = ACTIONS(2838), - [anon_sym_e_GT] = ACTIONS(2838), - [anon_sym_o_GT] = ACTIONS(2838), - [anon_sym_err_PLUSout_GT] = ACTIONS(2838), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), - [anon_sym_o_PLUSe_GT] = ACTIONS(2838), - [anon_sym_e_PLUSo_GT] = ACTIONS(2838), - [anon_sym_err_GT_GT] = ACTIONS(2836), - [anon_sym_out_GT_GT] = ACTIONS(2836), - [anon_sym_e_GT_GT] = ACTIONS(2836), - [anon_sym_o_GT_GT] = ACTIONS(2836), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2836), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2836), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2836), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1263)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1263), - [anon_sym_in] = ACTIONS(2858), - [sym__newline] = ACTIONS(2844), - [anon_sym_SEMI] = ACTIONS(2844), - [anon_sym_PIPE] = ACTIONS(2844), - [anon_sym_err_GT_PIPE] = ACTIONS(2844), - [anon_sym_out_GT_PIPE] = ACTIONS(2844), - [anon_sym_e_GT_PIPE] = ACTIONS(2844), - [anon_sym_o_GT_PIPE] = ACTIONS(2844), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2844), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2844), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), - [anon_sym_RPAREN] = ACTIONS(2844), - [anon_sym_GT2] = ACTIONS(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2862), - [anon_sym_xor2] = ACTIONS(2911), - [anon_sym_or2] = ACTIONS(2844), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2866), - [anon_sym_BANG_TILDE2] = ACTIONS(2866), - [anon_sym_like2] = ACTIONS(2866), - [anon_sym_not_DASHlike2] = ACTIONS(2866), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2870), - [anon_sym_bit_DASHxor2] = ACTIONS(2872), - [anon_sym_bit_DASHor2] = ACTIONS(2874), - [anon_sym_err_GT] = ACTIONS(2846), - [anon_sym_out_GT] = ACTIONS(2846), - [anon_sym_e_GT] = ACTIONS(2846), - [anon_sym_o_GT] = ACTIONS(2846), - [anon_sym_err_PLUSout_GT] = ACTIONS(2846), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2846), - [anon_sym_o_PLUSe_GT] = ACTIONS(2846), - [anon_sym_e_PLUSo_GT] = ACTIONS(2846), - [anon_sym_err_GT_GT] = ACTIONS(2844), - [anon_sym_out_GT_GT] = ACTIONS(2844), - [anon_sym_e_GT_GT] = ACTIONS(2844), - [anon_sym_o_GT_GT] = ACTIONS(2844), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2844), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2844), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2844), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1264)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1264), - [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(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [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(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [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(1265)] = { - [aux_sym__repeat_newline] = STATE(1231), - [sym_comment] = STATE(1265), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2967), - [anon_sym_SEMI] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_err_GT_PIPE] = ACTIONS(2836), - [anon_sym_out_GT_PIPE] = ACTIONS(2836), - [anon_sym_e_GT_PIPE] = ACTIONS(2836), - [anon_sym_o_GT_PIPE] = ACTIONS(2836), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2836), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2836), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2836), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2836), - [anon_sym_RPAREN] = ACTIONS(2836), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2836), - [anon_sym_xor2] = ACTIONS(2836), - [anon_sym_or2] = ACTIONS(2836), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2836), - [anon_sym_BANG_TILDE2] = ACTIONS(2836), - [anon_sym_like2] = ACTIONS(2836), - [anon_sym_not_DASHlike2] = ACTIONS(2836), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2836), - [anon_sym_bit_DASHxor2] = ACTIONS(2836), - [anon_sym_bit_DASHor2] = ACTIONS(2836), - [anon_sym_err_GT] = ACTIONS(2838), - [anon_sym_out_GT] = ACTIONS(2838), - [anon_sym_e_GT] = ACTIONS(2838), - [anon_sym_o_GT] = ACTIONS(2838), - [anon_sym_err_PLUSout_GT] = ACTIONS(2838), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), - [anon_sym_o_PLUSe_GT] = ACTIONS(2838), - [anon_sym_e_PLUSo_GT] = ACTIONS(2838), - [anon_sym_err_GT_GT] = ACTIONS(2836), - [anon_sym_out_GT_GT] = ACTIONS(2836), - [anon_sym_e_GT_GT] = ACTIONS(2836), - [anon_sym_o_GT_GT] = ACTIONS(2836), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2836), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2836), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2836), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1266)] = { - [aux_sym__repeat_newline] = STATE(1173), - [sym_comment] = STATE(1266), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2878), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2889), - [anon_sym_BANG_TILDE2] = ACTIONS(2889), - [anon_sym_like2] = ACTIONS(2889), - [anon_sym_not_DASHlike2] = ACTIONS(2889), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1267)] = { - [aux_sym__repeat_newline] = STATE(1185), - [sym_comment] = STATE(1267), + [1233] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1233), [anon_sym_in] = ACTIONS(2782), - [sym__newline] = ACTIONS(2913), + [sym__newline] = ACTIONS(2782), [anon_sym_SEMI] = ACTIONS(2782), [anon_sym_PIPE] = ACTIONS(2782), [anon_sym_err_GT_PIPE] = ACTIONS(2782), @@ -141717,7 +139387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(2782), [anon_sym_GT2] = ACTIONS(2784), [anon_sym_DASH2] = ACTIONS(2782), - [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_STAR2] = ACTIONS(2784), [anon_sym_and2] = ACTIONS(2782), [anon_sym_xor2] = ACTIONS(2782), [anon_sym_or2] = ACTIONS(2782), @@ -141737,11 +139407,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2782), [anon_sym_like2] = ACTIONS(2782), [anon_sym_not_DASHlike2] = ACTIONS(2782), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2784), + [anon_sym_mod2] = ACTIONS(2782), + [anon_sym_SLASH_SLASH2] = ACTIONS(2782), [anon_sym_PLUS2] = ACTIONS(2784), [anon_sym_bit_DASHshl2] = ACTIONS(2782), [anon_sym_bit_DASHshr2] = ACTIONS(2782), @@ -141766,212 +139436,547 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1268)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1268), - [anon_sym_in] = ACTIONS(2858), - [sym__newline] = ACTIONS(2844), - [anon_sym_SEMI] = ACTIONS(2844), - [anon_sym_PIPE] = ACTIONS(2844), - [anon_sym_err_GT_PIPE] = ACTIONS(2844), - [anon_sym_out_GT_PIPE] = ACTIONS(2844), - [anon_sym_e_GT_PIPE] = ACTIONS(2844), - [anon_sym_o_GT_PIPE] = ACTIONS(2844), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2844), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2844), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), - [anon_sym_RPAREN] = ACTIONS(2844), - [anon_sym_GT2] = ACTIONS(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2844), - [anon_sym_xor2] = ACTIONS(2844), - [anon_sym_or2] = ACTIONS(2844), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2844), - [anon_sym_BANG_TILDE2] = ACTIONS(2844), - [anon_sym_like2] = ACTIONS(2844), - [anon_sym_not_DASHlike2] = ACTIONS(2844), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2844), - [anon_sym_bit_DASHxor2] = ACTIONS(2844), - [anon_sym_bit_DASHor2] = ACTIONS(2844), - [anon_sym_err_GT] = ACTIONS(2846), - [anon_sym_out_GT] = ACTIONS(2846), - [anon_sym_e_GT] = ACTIONS(2846), - [anon_sym_o_GT] = ACTIONS(2846), - [anon_sym_err_PLUSout_GT] = ACTIONS(2846), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2846), - [anon_sym_o_PLUSe_GT] = ACTIONS(2846), - [anon_sym_e_PLUSo_GT] = ACTIONS(2846), - [anon_sym_err_GT_GT] = ACTIONS(2844), - [anon_sym_out_GT_GT] = ACTIONS(2844), - [anon_sym_e_GT_GT] = ACTIONS(2844), - [anon_sym_o_GT_GT] = ACTIONS(2844), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2844), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2844), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2844), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), + [1234] = { + [aux_sym__repeat_newline] = STATE(1180), + [sym_comment] = STATE(1234), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2989), + [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(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2794), + [anon_sym_xor2] = ACTIONS(2794), + [anon_sym_or2] = ACTIONS(2794), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2887), + [anon_sym_BANG_TILDE2] = ACTIONS(2887), + [anon_sym_like2] = ACTIONS(2887), + [anon_sym_not_DASHlike2] = ACTIONS(2887), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2897), + [anon_sym_bit_DASHxor2] = ACTIONS(2899), + [anon_sym_bit_DASHor2] = ACTIONS(2972), + [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), + }, + [1235] = { + [sym_comment] = STATE(1235), + [ts_builtin_sym_end] = ACTIONS(2473), + [anon_sym_finally] = 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_GT2] = ACTIONS(2475), + [anon_sym_DASH2] = ACTIONS(2473), + [anon_sym_STAR2] = ACTIONS(2475), + [anon_sym_and2] = ACTIONS(2473), + [anon_sym_xor2] = ACTIONS(2473), + [anon_sym_or2] = ACTIONS(2473), + [anon_sym_not_DASHin2] = ACTIONS(2473), + [anon_sym_has2] = ACTIONS(2473), + [anon_sym_not_DASHhas2] = ACTIONS(2473), + [anon_sym_starts_DASHwith2] = ACTIONS(2473), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2473), + [anon_sym_ends_DASHwith2] = ACTIONS(2473), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2473), + [anon_sym_EQ_EQ2] = ACTIONS(2473), + [anon_sym_BANG_EQ2] = ACTIONS(2473), + [anon_sym_LT2] = ACTIONS(2475), + [anon_sym_LT_EQ2] = ACTIONS(2473), + [anon_sym_GT_EQ2] = ACTIONS(2473), + [anon_sym_EQ_TILDE2] = ACTIONS(2473), + [anon_sym_BANG_TILDE2] = ACTIONS(2473), + [anon_sym_like2] = ACTIONS(2473), + [anon_sym_not_DASHlike2] = ACTIONS(2473), + [anon_sym_STAR_STAR2] = ACTIONS(2473), + [anon_sym_PLUS_PLUS2] = ACTIONS(2473), + [anon_sym_SLASH2] = ACTIONS(2475), + [anon_sym_mod2] = ACTIONS(2473), + [anon_sym_SLASH_SLASH2] = ACTIONS(2473), + [anon_sym_PLUS2] = ACTIONS(2475), + [anon_sym_bit_DASHshl2] = ACTIONS(2473), + [anon_sym_bit_DASHshr2] = ACTIONS(2473), + [anon_sym_bit_DASHand2] = ACTIONS(2473), + [anon_sym_bit_DASHxor2] = ACTIONS(2473), + [anon_sym_bit_DASHor2] = ACTIONS(2473), + [anon_sym_err_GT] = ACTIONS(2475), + [anon_sym_out_GT] = ACTIONS(2475), + [anon_sym_e_GT] = ACTIONS(2475), + [anon_sym_o_GT] = ACTIONS(2475), + [anon_sym_err_PLUSout_GT] = ACTIONS(2475), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2475), + [anon_sym_o_PLUSe_GT] = ACTIONS(2475), + [anon_sym_e_PLUSo_GT] = ACTIONS(2475), + [anon_sym_err_GT_GT] = ACTIONS(2473), + [anon_sym_out_GT_GT] = ACTIONS(2473), + [anon_sym_e_GT_GT] = ACTIONS(2473), + [anon_sym_o_GT_GT] = ACTIONS(2473), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2473), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2473), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2473), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2473), + [anon_sym_POUND] = ACTIONS(3), + }, + [1236] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1236), + [anon_sym_in] = ACTIONS(2852), + [sym__newline] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2848), + [anon_sym_PIPE] = ACTIONS(2848), + [anon_sym_err_GT_PIPE] = ACTIONS(2848), + [anon_sym_out_GT_PIPE] = ACTIONS(2848), + [anon_sym_e_GT_PIPE] = ACTIONS(2848), + [anon_sym_o_GT_PIPE] = ACTIONS(2848), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2848), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2848), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2848), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2848), + [anon_sym_RPAREN] = ACTIONS(2848), + [anon_sym_GT2] = ACTIONS(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2848), + [anon_sym_xor2] = ACTIONS(2848), + [anon_sym_or2] = ACTIONS(2848), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2862), + [anon_sym_BANG_TILDE2] = ACTIONS(2862), + [anon_sym_like2] = ACTIONS(2862), + [anon_sym_not_DASHlike2] = ACTIONS(2862), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2848), + [anon_sym_bit_DASHor2] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2848), + [anon_sym_out_GT_GT] = ACTIONS(2848), + [anon_sym_e_GT_GT] = ACTIONS(2848), + [anon_sym_o_GT_GT] = ACTIONS(2848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2848), + [anon_sym_POUND] = ACTIONS(3), + }, + [1237] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1237), + [anon_sym_in] = ACTIONS(2852), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_err_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_GT_PIPE] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2782), + [anon_sym_xor2] = ACTIONS(2782), + [anon_sym_or2] = ACTIONS(2782), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2862), + [anon_sym_BANG_TILDE2] = ACTIONS(2862), + [anon_sym_like2] = ACTIONS(2862), + [anon_sym_not_DASHlike2] = ACTIONS(2862), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2923), + [anon_sym_bit_DASHor2] = ACTIONS(2964), + [anon_sym_err_GT] = ACTIONS(2784), + [anon_sym_out_GT] = ACTIONS(2784), + [anon_sym_e_GT] = ACTIONS(2784), + [anon_sym_o_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT] = ACTIONS(2784), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1269)] = { - [aux_sym__repeat_newline] = STATE(1248), - [sym_comment] = STATE(1269), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_err_GT_PIPE] = ACTIONS(2840), - [anon_sym_out_GT_PIPE] = ACTIONS(2840), - [anon_sym_e_GT_PIPE] = ACTIONS(2840), - [anon_sym_o_GT_PIPE] = ACTIONS(2840), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2840), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2840), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), - [anon_sym_RPAREN] = ACTIONS(2840), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2840), - [anon_sym_xor2] = ACTIONS(2840), - [anon_sym_or2] = ACTIONS(2840), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2889), - [anon_sym_BANG_TILDE2] = ACTIONS(2889), - [anon_sym_like2] = ACTIONS(2889), - [anon_sym_not_DASHlike2] = ACTIONS(2889), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2909), - [anon_sym_err_GT] = ACTIONS(2842), - [anon_sym_out_GT] = ACTIONS(2842), - [anon_sym_e_GT] = ACTIONS(2842), - [anon_sym_o_GT] = ACTIONS(2842), - [anon_sym_err_PLUSout_GT] = ACTIONS(2842), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2842), - [anon_sym_o_PLUSe_GT] = ACTIONS(2842), - [anon_sym_e_PLUSo_GT] = ACTIONS(2842), - [anon_sym_err_GT_GT] = ACTIONS(2840), - [anon_sym_out_GT_GT] = ACTIONS(2840), - [anon_sym_e_GT_GT] = ACTIONS(2840), - [anon_sym_o_GT_GT] = ACTIONS(2840), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2840), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2840), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2840), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), + [1238] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1238), + [anon_sym_in] = ACTIONS(2852), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_err_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_GT_PIPE] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2960), + [anon_sym_xor2] = ACTIONS(2782), + [anon_sym_or2] = ACTIONS(2782), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2862), + [anon_sym_BANG_TILDE2] = ACTIONS(2862), + [anon_sym_like2] = ACTIONS(2862), + [anon_sym_not_DASHlike2] = ACTIONS(2862), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2923), + [anon_sym_bit_DASHor2] = ACTIONS(2964), + [anon_sym_err_GT] = ACTIONS(2784), + [anon_sym_out_GT] = ACTIONS(2784), + [anon_sym_e_GT] = ACTIONS(2784), + [anon_sym_o_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT] = ACTIONS(2784), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1270)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1270), - [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_STAR2] = ACTIONS(2850), - [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(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [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_POUND] = ACTIONS(3), - }, - [STATE(1271)] = { - [aux_sym__repeat_newline] = STATE(1187), - [sym_comment] = STATE(1271), + [1239] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1239), + [anon_sym_in] = ACTIONS(2852), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_err_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_GT_PIPE] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2960), + [anon_sym_xor2] = ACTIONS(2962), + [anon_sym_or2] = ACTIONS(2782), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2862), + [anon_sym_BANG_TILDE2] = ACTIONS(2862), + [anon_sym_like2] = ACTIONS(2862), + [anon_sym_not_DASHlike2] = ACTIONS(2862), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2923), + [anon_sym_bit_DASHor2] = ACTIONS(2964), + [anon_sym_err_GT] = ACTIONS(2784), + [anon_sym_out_GT] = ACTIONS(2784), + [anon_sym_e_GT] = ACTIONS(2784), + [anon_sym_o_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT] = ACTIONS(2784), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [anon_sym_POUND] = ACTIONS(3), + }, + [1240] = { + [aux_sym__repeat_newline] = STATE(1184), + [sym_comment] = STATE(1240), + [anon_sym_in] = ACTIONS(2794), + [sym__newline] = ACTIONS(2989), + [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(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [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), + }, + [1241] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1241), + [anon_sym_in] = ACTIONS(2852), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_err_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_GT_PIPE] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2782), + [anon_sym_xor2] = ACTIONS(2782), + [anon_sym_or2] = ACTIONS(2782), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2782), + [anon_sym_BANG_TILDE2] = ACTIONS(2782), + [anon_sym_like2] = ACTIONS(2782), + [anon_sym_not_DASHlike2] = ACTIONS(2782), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2782), + [anon_sym_bit_DASHxor2] = ACTIONS(2782), + [anon_sym_bit_DASHor2] = ACTIONS(2782), + [anon_sym_err_GT] = ACTIONS(2784), + [anon_sym_out_GT] = ACTIONS(2784), + [anon_sym_e_GT] = ACTIONS(2784), + [anon_sym_o_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT] = ACTIONS(2784), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), + [anon_sym_POUND] = ACTIONS(3), + }, + [1242] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1242), [anon_sym_in] = ACTIONS(2782), - [sym__newline] = ACTIONS(2913), + [sym__newline] = ACTIONS(2782), [anon_sym_SEMI] = ACTIONS(2782), [anon_sym_PIPE] = ACTIONS(2782), [anon_sym_err_GT_PIPE] = ACTIONS(2782), @@ -141984,8 +139989,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), [anon_sym_RPAREN] = ACTIONS(2782), [anon_sym_GT2] = ACTIONS(2784), - [anon_sym_DASH2] = ACTIONS(2782), - [anon_sym_STAR2] = ACTIONS(2784), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), [anon_sym_and2] = ACTIONS(2782), [anon_sym_xor2] = ACTIONS(2782), [anon_sym_or2] = ACTIONS(2782), @@ -142005,12 +140010,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2782), [anon_sym_like2] = ACTIONS(2782), [anon_sym_not_DASHlike2] = ACTIONS(2782), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2784), - [anon_sym_mod2] = ACTIONS(2782), - [anon_sym_SLASH_SLASH2] = ACTIONS(2782), - [anon_sym_PLUS2] = ACTIONS(2784), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), [anon_sym_bit_DASHshl2] = ACTIONS(2782), [anon_sym_bit_DASHshr2] = ACTIONS(2782), [anon_sym_bit_DASHand2] = ACTIONS(2782), @@ -142034,413 +140039,547 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1272)] = { - [sym__expression] = STATE(5061), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2261), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1878), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_comment] = STATE(1272), - [aux_sym_cmd_identifier_token2] = ACTIONS(2986), - [anon_sym_true] = ACTIONS(2636), - [anon_sym_false] = ACTIONS(2636), - [anon_sym_null] = ACTIONS(2638), - [aux_sym_cmd_identifier_token3] = ACTIONS(2640), - [aux_sym_cmd_identifier_token4] = ACTIONS(2640), - [aux_sym_cmd_identifier_token5] = ACTIONS(2640), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_DASH2] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_DOT_DOT] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(175), - [anon_sym_DOT_DOT_EQ] = ACTIONS(181), - [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1981), - [aux_sym__val_number_decimal_token3] = ACTIONS(2644), - [aux_sym__val_number_decimal_token4] = ACTIONS(2644), - [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(193), - [anon_sym_0o] = ACTIONS(195), - [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2646), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(105), - [sym_raw_string_begin] = ACTIONS(215), - }, - [STATE(1273)] = { - [sym_comment] = STATE(1273), - [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(2484), - [anon_sym_DASH2] = ACTIONS(2477), - [anon_sym_LBRACE] = ACTIONS(2477), - [anon_sym_STAR2] = ACTIONS(2484), - [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(2484), - [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(2484), - [anon_sym_mod2] = ACTIONS(2477), - [anon_sym_SLASH_SLASH2] = ACTIONS(2477), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_bit_DASHshl2] = ACTIONS(2477), - [anon_sym_bit_DASHshr2] = ACTIONS(2477), - [anon_sym_bit_DASHand2] = ACTIONS(2477), - [anon_sym_bit_DASHxor2] = ACTIONS(2477), - [anon_sym_bit_DASHor2] = ACTIONS(2477), - [anon_sym_err_GT] = ACTIONS(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(2477), - [anon_sym_out_GT_GT] = ACTIONS(2477), - [anon_sym_e_GT_GT] = ACTIONS(2477), - [anon_sym_o_GT_GT] = ACTIONS(2477), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2477), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2477), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2477), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2477), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1274)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1274), - [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_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(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [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_POUND] = ACTIONS(3), - }, - [STATE(1275)] = { - [aux_sym__repeat_newline] = STATE(1176), - [sym_comment] = STATE(1275), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2878), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2889), - [anon_sym_BANG_TILDE2] = ACTIONS(2889), - [anon_sym_like2] = ACTIONS(2889), - [anon_sym_not_DASHlike2] = ACTIONS(2889), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [1243] = { + [sym_comment] = STATE(1243), + [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(2905), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_STAR2] = ACTIONS(2907), + [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(2913), + [anon_sym_PLUS_PLUS2] = ACTIONS(2913), + [anon_sym_SLASH2] = ACTIONS(2907), + [anon_sym_mod2] = ACTIONS(2915), + [anon_sym_SLASH_SLASH2] = ACTIONS(2915), + [anon_sym_PLUS2] = ACTIONS(2917), + [anon_sym_bit_DASHshl2] = ACTIONS(2624), + [anon_sym_bit_DASHshr2] = ACTIONS(2624), + [anon_sym_bit_DASHand2] = ACTIONS(2624), + [anon_sym_bit_DASHxor2] = ACTIONS(2624), + [anon_sym_bit_DASHor2] = ACTIONS(2624), + [anon_sym_err_GT] = ACTIONS(2626), + [anon_sym_out_GT] = ACTIONS(2626), + [anon_sym_e_GT] = ACTIONS(2626), + [anon_sym_o_GT] = ACTIONS(2626), + [anon_sym_err_PLUSout_GT] = ACTIONS(2626), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2626), + [anon_sym_o_PLUSe_GT] = ACTIONS(2626), + [anon_sym_e_PLUSo_GT] = ACTIONS(2626), + [anon_sym_err_GT_GT] = ACTIONS(2624), + [anon_sym_out_GT_GT] = ACTIONS(2624), + [anon_sym_e_GT_GT] = ACTIONS(2624), + [anon_sym_o_GT_GT] = ACTIONS(2624), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2624), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2624), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2624), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2624), + [anon_sym_POUND] = ACTIONS(3), + }, + [1244] = { + [aux_sym__repeat_newline] = STATE(1188), + [sym_comment] = STATE(1244), + [anon_sym_in] = ACTIONS(2794), + [sym__newline] = ACTIONS(2989), + [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(2883), + [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(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [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), + }, + [1245] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1245), + [anon_sym_in] = ACTIONS(2852), + [sym__newline] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2848), + [anon_sym_PIPE] = ACTIONS(2848), + [anon_sym_err_GT_PIPE] = ACTIONS(2848), + [anon_sym_out_GT_PIPE] = ACTIONS(2848), + [anon_sym_e_GT_PIPE] = ACTIONS(2848), + [anon_sym_o_GT_PIPE] = ACTIONS(2848), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2848), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2848), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2848), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2848), + [anon_sym_RPAREN] = ACTIONS(2848), + [anon_sym_GT2] = ACTIONS(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2848), + [anon_sym_xor2] = ACTIONS(2848), + [anon_sym_or2] = ACTIONS(2848), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2862), + [anon_sym_BANG_TILDE2] = ACTIONS(2862), + [anon_sym_like2] = ACTIONS(2862), + [anon_sym_not_DASHlike2] = ACTIONS(2862), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2848), + [anon_sym_bit_DASHxor2] = ACTIONS(2848), + [anon_sym_bit_DASHor2] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2848), + [anon_sym_out_GT_GT] = ACTIONS(2848), + [anon_sym_e_GT_GT] = ACTIONS(2848), + [anon_sym_o_GT_GT] = ACTIONS(2848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2848), + [anon_sym_POUND] = ACTIONS(3), + }, + [1246] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1246), + [anon_sym_in] = ACTIONS(2852), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_err_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_GT_PIPE] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2782), + [anon_sym_xor2] = ACTIONS(2782), + [anon_sym_or2] = ACTIONS(2782), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2862), + [anon_sym_BANG_TILDE2] = ACTIONS(2862), + [anon_sym_like2] = ACTIONS(2862), + [anon_sym_not_DASHlike2] = ACTIONS(2862), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2782), + [anon_sym_bit_DASHxor2] = ACTIONS(2782), + [anon_sym_bit_DASHor2] = ACTIONS(2782), + [anon_sym_err_GT] = ACTIONS(2784), + [anon_sym_out_GT] = ACTIONS(2784), + [anon_sym_e_GT] = ACTIONS(2784), + [anon_sym_o_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT] = ACTIONS(2784), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1276)] = { - [aux_sym__repeat_newline] = STATE(1208), - [sym_comment] = STATE(1276), - [anon_sym_in] = ACTIONS(2840), - [sym__newline] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_err_GT_PIPE] = ACTIONS(2840), - [anon_sym_out_GT_PIPE] = ACTIONS(2840), - [anon_sym_e_GT_PIPE] = ACTIONS(2840), - [anon_sym_o_GT_PIPE] = ACTIONS(2840), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2840), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2840), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), - [anon_sym_RPAREN] = ACTIONS(2840), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2840), - [anon_sym_xor2] = ACTIONS(2840), - [anon_sym_or2] = ACTIONS(2840), - [anon_sym_not_DASHin2] = ACTIONS(2840), - [anon_sym_has2] = ACTIONS(2840), - [anon_sym_not_DASHhas2] = ACTIONS(2840), - [anon_sym_starts_DASHwith2] = ACTIONS(2840), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2840), - [anon_sym_ends_DASHwith2] = ACTIONS(2840), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2840), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2840), - [anon_sym_BANG_TILDE2] = ACTIONS(2840), - [anon_sym_like2] = ACTIONS(2840), - [anon_sym_not_DASHlike2] = ACTIONS(2840), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2840), - [anon_sym_bit_DASHxor2] = ACTIONS(2840), - [anon_sym_bit_DASHor2] = ACTIONS(2840), - [anon_sym_err_GT] = ACTIONS(2842), - [anon_sym_out_GT] = ACTIONS(2842), - [anon_sym_e_GT] = ACTIONS(2842), - [anon_sym_o_GT] = ACTIONS(2842), - [anon_sym_err_PLUSout_GT] = ACTIONS(2842), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2842), - [anon_sym_o_PLUSe_GT] = ACTIONS(2842), - [anon_sym_e_PLUSo_GT] = ACTIONS(2842), - [anon_sym_err_GT_GT] = ACTIONS(2840), - [anon_sym_out_GT_GT] = ACTIONS(2840), - [anon_sym_e_GT_GT] = ACTIONS(2840), - [anon_sym_o_GT_GT] = ACTIONS(2840), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2840), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2840), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2840), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), + [1247] = { + [aux_sym__repeat_newline] = STATE(1192), + [sym_comment] = STATE(1247), + [anon_sym_in] = ACTIONS(2794), + [sym__newline] = ACTIONS(2989), + [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(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [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(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [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), + }, + [1248] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1248), + [anon_sym_in] = ACTIONS(2852), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_err_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_GT_PIPE] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), + [anon_sym_RPAREN] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2782), + [anon_sym_xor2] = ACTIONS(2782), + [anon_sym_or2] = ACTIONS(2782), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2862), + [anon_sym_BANG_TILDE2] = ACTIONS(2862), + [anon_sym_like2] = ACTIONS(2862), + [anon_sym_not_DASHlike2] = ACTIONS(2862), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2782), + [anon_sym_bit_DASHor2] = ACTIONS(2782), + [anon_sym_err_GT] = ACTIONS(2784), + [anon_sym_out_GT] = ACTIONS(2784), + [anon_sym_e_GT] = ACTIONS(2784), + [anon_sym_o_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT] = ACTIONS(2784), + [anon_sym_err_GT_GT] = ACTIONS(2782), + [anon_sym_out_GT_GT] = ACTIONS(2782), + [anon_sym_e_GT_GT] = ACTIONS(2782), + [anon_sym_o_GT_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1277)] = { - [aux_sym__repeat_newline] = STATE(1241), - [sym_comment] = STATE(1277), - [anon_sym_in] = ACTIONS(2836), - [sym__newline] = ACTIONS(2967), - [anon_sym_SEMI] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_err_GT_PIPE] = ACTIONS(2836), - [anon_sym_out_GT_PIPE] = ACTIONS(2836), - [anon_sym_e_GT_PIPE] = ACTIONS(2836), - [anon_sym_o_GT_PIPE] = ACTIONS(2836), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2836), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2836), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2836), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2836), - [anon_sym_RPAREN] = ACTIONS(2836), - [anon_sym_GT2] = ACTIONS(2838), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2836), - [anon_sym_xor2] = ACTIONS(2836), - [anon_sym_or2] = ACTIONS(2836), - [anon_sym_not_DASHin2] = ACTIONS(2836), - [anon_sym_has2] = ACTIONS(2836), - [anon_sym_not_DASHhas2] = ACTIONS(2836), - [anon_sym_starts_DASHwith2] = ACTIONS(2836), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2836), - [anon_sym_ends_DASHwith2] = ACTIONS(2836), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2836), - [anon_sym_EQ_EQ2] = ACTIONS(2836), - [anon_sym_BANG_EQ2] = ACTIONS(2836), - [anon_sym_LT2] = ACTIONS(2838), - [anon_sym_LT_EQ2] = ACTIONS(2836), - [anon_sym_GT_EQ2] = ACTIONS(2836), - [anon_sym_EQ_TILDE2] = ACTIONS(2836), - [anon_sym_BANG_TILDE2] = ACTIONS(2836), - [anon_sym_like2] = ACTIONS(2836), - [anon_sym_not_DASHlike2] = ACTIONS(2836), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2836), - [anon_sym_bit_DASHshr2] = ACTIONS(2836), - [anon_sym_bit_DASHand2] = ACTIONS(2836), - [anon_sym_bit_DASHxor2] = ACTIONS(2836), - [anon_sym_bit_DASHor2] = ACTIONS(2836), - [anon_sym_err_GT] = ACTIONS(2838), - [anon_sym_out_GT] = ACTIONS(2838), - [anon_sym_e_GT] = ACTIONS(2838), - [anon_sym_o_GT] = ACTIONS(2838), - [anon_sym_err_PLUSout_GT] = ACTIONS(2838), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), - [anon_sym_o_PLUSe_GT] = ACTIONS(2838), - [anon_sym_e_PLUSo_GT] = ACTIONS(2838), - [anon_sym_err_GT_GT] = ACTIONS(2836), - [anon_sym_out_GT_GT] = ACTIONS(2836), - [anon_sym_e_GT_GT] = ACTIONS(2836), - [anon_sym_o_GT_GT] = ACTIONS(2836), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2836), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2836), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2836), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1278)] = { - [aux_sym__repeat_newline] = STATE(1189), - [sym_comment] = STATE(1278), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2913), + [1249] = { + [aux_sym__repeat_newline] = STATE(1196), + [sym_comment] = STATE(1249), + [anon_sym_in] = ACTIONS(2794), + [sym__newline] = ACTIONS(2989), + [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(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [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(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [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), + }, + [1250] = { + [sym_comment] = STATE(1250), + [anon_sym_in] = ACTIONS(2493), + [sym__newline] = ACTIONS(2493), + [anon_sym_SEMI] = ACTIONS(2493), + [anon_sym_PIPE] = ACTIONS(2493), + [anon_sym_err_GT_PIPE] = ACTIONS(2493), + [anon_sym_out_GT_PIPE] = ACTIONS(2493), + [anon_sym_e_GT_PIPE] = ACTIONS(2493), + [anon_sym_o_GT_PIPE] = ACTIONS(2493), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2493), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2493), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2493), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2493), + [anon_sym_RPAREN] = ACTIONS(2493), + [anon_sym_GT2] = ACTIONS(2495), + [anon_sym_DASH2] = ACTIONS(2493), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_STAR2] = ACTIONS(2495), + [anon_sym_and2] = ACTIONS(2493), + [anon_sym_xor2] = ACTIONS(2493), + [anon_sym_or2] = ACTIONS(2493), + [anon_sym_not_DASHin2] = ACTIONS(2493), + [anon_sym_has2] = ACTIONS(2493), + [anon_sym_not_DASHhas2] = ACTIONS(2493), + [anon_sym_starts_DASHwith2] = ACTIONS(2493), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2493), + [anon_sym_ends_DASHwith2] = ACTIONS(2493), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2493), + [anon_sym_EQ_EQ2] = ACTIONS(2493), + [anon_sym_BANG_EQ2] = ACTIONS(2493), + [anon_sym_LT2] = ACTIONS(2495), + [anon_sym_LT_EQ2] = ACTIONS(2493), + [anon_sym_GT_EQ2] = ACTIONS(2493), + [anon_sym_EQ_TILDE2] = ACTIONS(2493), + [anon_sym_BANG_TILDE2] = ACTIONS(2493), + [anon_sym_like2] = ACTIONS(2493), + [anon_sym_not_DASHlike2] = ACTIONS(2493), + [anon_sym_STAR_STAR2] = ACTIONS(2493), + [anon_sym_PLUS_PLUS2] = ACTIONS(2493), + [anon_sym_SLASH2] = ACTIONS(2495), + [anon_sym_mod2] = ACTIONS(2493), + [anon_sym_SLASH_SLASH2] = ACTIONS(2493), + [anon_sym_PLUS2] = ACTIONS(2495), + [anon_sym_bit_DASHshl2] = ACTIONS(2493), + [anon_sym_bit_DASHshr2] = ACTIONS(2493), + [anon_sym_bit_DASHand2] = ACTIONS(2493), + [anon_sym_bit_DASHxor2] = ACTIONS(2493), + [anon_sym_bit_DASHor2] = ACTIONS(2493), + [anon_sym_err_GT] = ACTIONS(2495), + [anon_sym_out_GT] = ACTIONS(2495), + [anon_sym_e_GT] = ACTIONS(2495), + [anon_sym_o_GT] = ACTIONS(2495), + [anon_sym_err_PLUSout_GT] = ACTIONS(2495), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2495), + [anon_sym_o_PLUSe_GT] = ACTIONS(2495), + [anon_sym_e_PLUSo_GT] = ACTIONS(2495), + [anon_sym_err_GT_GT] = ACTIONS(2493), + [anon_sym_out_GT_GT] = ACTIONS(2493), + [anon_sym_e_GT_GT] = ACTIONS(2493), + [anon_sym_o_GT_GT] = ACTIONS(2493), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2493), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2493), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2493), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(3), + }, + [1251] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1251), + [anon_sym_in] = ACTIONS(2852), + [sym__newline] = ACTIONS(2782), [anon_sym_SEMI] = ACTIONS(2782), [anon_sym_PIPE] = ACTIONS(2782), [anon_sym_err_GT_PIPE] = ACTIONS(2782), @@ -142452,39 +140591,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), [anon_sym_RPAREN] = ACTIONS(2782), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), + [anon_sym_GT2] = ACTIONS(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), [anon_sym_and2] = ACTIONS(2782), [anon_sym_xor2] = ACTIONS(2782), [anon_sym_or2] = ACTIONS(2782), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2889), - [anon_sym_BANG_TILDE2] = ACTIONS(2889), - [anon_sym_like2] = ACTIONS(2889), - [anon_sym_not_DASHlike2] = ACTIONS(2889), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2909), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2862), + [anon_sym_BANG_TILDE2] = ACTIONS(2862), + [anon_sym_like2] = ACTIONS(2862), + [anon_sym_not_DASHlike2] = ACTIONS(2862), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2923), + [anon_sym_bit_DASHor2] = ACTIONS(2782), [anon_sym_err_GT] = ACTIONS(2784), [anon_sym_out_GT] = ACTIONS(2784), [anon_sym_e_GT] = ACTIONS(2784), @@ -142503,467 +140642,1673 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1279)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1279), - [anon_sym_in] = ACTIONS(2858), - [sym__newline] = ACTIONS(2844), - [anon_sym_SEMI] = ACTIONS(2844), - [anon_sym_PIPE] = ACTIONS(2844), - [anon_sym_err_GT_PIPE] = ACTIONS(2844), - [anon_sym_out_GT_PIPE] = ACTIONS(2844), - [anon_sym_e_GT_PIPE] = ACTIONS(2844), - [anon_sym_o_GT_PIPE] = ACTIONS(2844), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2844), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2844), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2844), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2844), - [anon_sym_RPAREN] = ACTIONS(2844), - [anon_sym_GT2] = ACTIONS(2860), - [anon_sym_DASH2] = ACTIONS(2848), - [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2844), - [anon_sym_xor2] = ACTIONS(2844), - [anon_sym_or2] = ACTIONS(2844), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2866), - [anon_sym_BANG_TILDE2] = ACTIONS(2866), - [anon_sym_like2] = ACTIONS(2866), - [anon_sym_not_DASHlike2] = ACTIONS(2866), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), - [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2844), - [anon_sym_bit_DASHxor2] = ACTIONS(2844), - [anon_sym_bit_DASHor2] = ACTIONS(2844), - [anon_sym_err_GT] = ACTIONS(2846), - [anon_sym_out_GT] = ACTIONS(2846), - [anon_sym_e_GT] = ACTIONS(2846), - [anon_sym_o_GT] = ACTIONS(2846), - [anon_sym_err_PLUSout_GT] = ACTIONS(2846), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2846), - [anon_sym_o_PLUSe_GT] = ACTIONS(2846), - [anon_sym_e_PLUSo_GT] = ACTIONS(2846), - [anon_sym_err_GT_GT] = ACTIONS(2844), - [anon_sym_out_GT_GT] = ACTIONS(2844), - [anon_sym_e_GT_GT] = ACTIONS(2844), - [anon_sym_o_GT_GT] = ACTIONS(2844), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2844), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2844), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2844), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), - [anon_sym_POUND] = ACTIONS(3), + [1252] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1252), + [anon_sym_in] = ACTIONS(2848), + [sym__newline] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2848), + [anon_sym_PIPE] = ACTIONS(2848), + [anon_sym_err_GT_PIPE] = ACTIONS(2848), + [anon_sym_out_GT_PIPE] = ACTIONS(2848), + [anon_sym_e_GT_PIPE] = ACTIONS(2848), + [anon_sym_o_GT_PIPE] = ACTIONS(2848), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2848), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2848), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2848), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2848), + [anon_sym_RPAREN] = ACTIONS(2848), + [anon_sym_GT2] = ACTIONS(2850), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2848), + [anon_sym_xor2] = ACTIONS(2848), + [anon_sym_or2] = ACTIONS(2848), + [anon_sym_not_DASHin2] = ACTIONS(2848), + [anon_sym_has2] = ACTIONS(2848), + [anon_sym_not_DASHhas2] = ACTIONS(2848), + [anon_sym_starts_DASHwith2] = ACTIONS(2848), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2848), + [anon_sym_ends_DASHwith2] = ACTIONS(2848), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2848), + [anon_sym_EQ_EQ2] = ACTIONS(2848), + [anon_sym_BANG_EQ2] = ACTIONS(2848), + [anon_sym_LT2] = ACTIONS(2850), + [anon_sym_LT_EQ2] = ACTIONS(2848), + [anon_sym_GT_EQ2] = ACTIONS(2848), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2848), + [anon_sym_bit_DASHshr2] = ACTIONS(2848), + [anon_sym_bit_DASHand2] = ACTIONS(2848), + [anon_sym_bit_DASHxor2] = ACTIONS(2848), + [anon_sym_bit_DASHor2] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2848), + [anon_sym_out_GT_GT] = ACTIONS(2848), + [anon_sym_e_GT_GT] = ACTIONS(2848), + [anon_sym_o_GT_GT] = ACTIONS(2848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2848), + [anon_sym_POUND] = ACTIONS(3), + }, + [1253] = { + [aux_sym__repeat_newline] = STATE(1258), + [sym_comment] = STATE(1253), + [anon_sym_in] = ACTIONS(2762), + [sym__newline] = ACTIONS(2986), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2762), + [anon_sym_xor2] = ACTIONS(2762), + [anon_sym_or2] = ACTIONS(2762), + [anon_sym_not_DASHin2] = ACTIONS(2762), + [anon_sym_has2] = ACTIONS(2762), + [anon_sym_not_DASHhas2] = ACTIONS(2762), + [anon_sym_starts_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2762), + [anon_sym_ends_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2762), + [anon_sym_EQ_EQ2] = ACTIONS(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2762), + [anon_sym_BANG_TILDE2] = ACTIONS(2762), + [anon_sym_like2] = ACTIONS(2762), + [anon_sym_not_DASHlike2] = ACTIONS(2762), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2762), + [anon_sym_bit_DASHxor2] = ACTIONS(2762), + [anon_sym_bit_DASHor2] = ACTIONS(2762), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_POUND] = ACTIONS(3), + }, + [1254] = { + [sym__expression] = STATE(5076), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2265), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1905), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_comment] = STATE(1254), + [aux_sym_cmd_identifier_token2] = ACTIONS(2690), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_null] = ACTIONS(2694), + [aux_sym_cmd_identifier_token3] = ACTIONS(2696), + [aux_sym_cmd_identifier_token4] = ACTIONS(2696), + [aux_sym_cmd_identifier_token5] = ACTIONS(2696), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1965), + [aux_sym__val_number_decimal_token3] = ACTIONS(2700), + [aux_sym__val_number_decimal_token4] = ACTIONS(2700), + [aux_sym__val_number_token1] = ACTIONS(2696), + [aux_sym__val_number_token2] = ACTIONS(2696), + [aux_sym__val_number_token3] = ACTIONS(2696), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(1280)] = { - [aux_sym__repeat_newline] = STATE(501), - [sym_comment] = STATE(1280), - [anon_sym_in] = ACTIONS(2858), - [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(2860), + [1255] = { + [sym__expression] = STATE(5065), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2265), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1905), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_comment] = STATE(1255), + [aux_sym_cmd_identifier_token2] = ACTIONS(2690), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_null] = ACTIONS(2694), + [aux_sym_cmd_identifier_token3] = ACTIONS(2696), + [aux_sym_cmd_identifier_token4] = ACTIONS(2696), + [aux_sym_cmd_identifier_token5] = ACTIONS(2696), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1965), + [aux_sym__val_number_decimal_token3] = ACTIONS(2700), + [aux_sym__val_number_decimal_token4] = ACTIONS(2700), + [aux_sym__val_number_token1] = ACTIONS(2696), + [aux_sym__val_number_token2] = ACTIONS(2696), + [aux_sym__val_number_token3] = ACTIONS(2696), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(215), + }, + [1256] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1256), + [anon_sym_in] = ACTIONS(2852), + [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(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2786), + [anon_sym_xor2] = ACTIONS(2786), + [anon_sym_or2] = ACTIONS(2786), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [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(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [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), + }, + [1257] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1257), + [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(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [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(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [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(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [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), + }, + [1258] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1258), + [anon_sym_in] = ACTIONS(2848), + [sym__newline] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2848), + [anon_sym_PIPE] = ACTIONS(2848), + [anon_sym_err_GT_PIPE] = ACTIONS(2848), + [anon_sym_out_GT_PIPE] = ACTIONS(2848), + [anon_sym_e_GT_PIPE] = ACTIONS(2848), + [anon_sym_o_GT_PIPE] = ACTIONS(2848), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2848), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2848), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2848), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2848), + [anon_sym_RPAREN] = ACTIONS(2848), + [anon_sym_GT2] = ACTIONS(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2848), + [anon_sym_xor2] = ACTIONS(2848), + [anon_sym_or2] = ACTIONS(2848), + [anon_sym_not_DASHin2] = ACTIONS(2848), + [anon_sym_has2] = ACTIONS(2848), + [anon_sym_not_DASHhas2] = ACTIONS(2848), + [anon_sym_starts_DASHwith2] = ACTIONS(2848), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2848), + [anon_sym_ends_DASHwith2] = ACTIONS(2848), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2848), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2848), + [anon_sym_bit_DASHxor2] = ACTIONS(2848), + [anon_sym_bit_DASHor2] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2848), + [anon_sym_out_GT_GT] = ACTIONS(2848), + [anon_sym_e_GT_GT] = ACTIONS(2848), + [anon_sym_o_GT_GT] = ACTIONS(2848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2848), + [anon_sym_POUND] = ACTIONS(3), + }, + [1259] = { + [aux_sym__repeat_newline] = STATE(1260), + [sym_comment] = STATE(1259), + [anon_sym_in] = ACTIONS(2762), + [sym__newline] = ACTIONS(2986), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2764), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2762), + [anon_sym_xor2] = ACTIONS(2762), + [anon_sym_or2] = ACTIONS(2762), + [anon_sym_not_DASHin2] = ACTIONS(2762), + [anon_sym_has2] = ACTIONS(2762), + [anon_sym_not_DASHhas2] = ACTIONS(2762), + [anon_sym_starts_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2762), + [anon_sym_ends_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2762), + [anon_sym_EQ_EQ2] = ACTIONS(2762), + [anon_sym_BANG_EQ2] = ACTIONS(2762), + [anon_sym_LT2] = ACTIONS(2764), + [anon_sym_LT_EQ2] = ACTIONS(2762), + [anon_sym_GT_EQ2] = ACTIONS(2762), + [anon_sym_EQ_TILDE2] = ACTIONS(2762), + [anon_sym_BANG_TILDE2] = ACTIONS(2762), + [anon_sym_like2] = ACTIONS(2762), + [anon_sym_not_DASHlike2] = ACTIONS(2762), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2762), + [anon_sym_bit_DASHxor2] = ACTIONS(2762), + [anon_sym_bit_DASHor2] = ACTIONS(2762), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_POUND] = ACTIONS(3), + }, + [1260] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1260), + [anon_sym_in] = ACTIONS(2848), + [sym__newline] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2848), + [anon_sym_PIPE] = ACTIONS(2848), + [anon_sym_err_GT_PIPE] = ACTIONS(2848), + [anon_sym_out_GT_PIPE] = ACTIONS(2848), + [anon_sym_e_GT_PIPE] = ACTIONS(2848), + [anon_sym_o_GT_PIPE] = ACTIONS(2848), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2848), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2848), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2848), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2848), + [anon_sym_RPAREN] = ACTIONS(2848), + [anon_sym_GT2] = ACTIONS(2850), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2848), + [anon_sym_xor2] = ACTIONS(2848), + [anon_sym_or2] = ACTIONS(2848), + [anon_sym_not_DASHin2] = ACTIONS(2848), + [anon_sym_has2] = ACTIONS(2848), + [anon_sym_not_DASHhas2] = ACTIONS(2848), + [anon_sym_starts_DASHwith2] = ACTIONS(2848), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2848), + [anon_sym_ends_DASHwith2] = ACTIONS(2848), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2848), + [anon_sym_EQ_EQ2] = ACTIONS(2848), + [anon_sym_BANG_EQ2] = ACTIONS(2848), + [anon_sym_LT2] = ACTIONS(2850), + [anon_sym_LT_EQ2] = ACTIONS(2848), + [anon_sym_GT_EQ2] = ACTIONS(2848), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2848), + [anon_sym_bit_DASHxor2] = ACTIONS(2848), + [anon_sym_bit_DASHor2] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2848), + [anon_sym_out_GT_GT] = ACTIONS(2848), + [anon_sym_e_GT_GT] = ACTIONS(2848), + [anon_sym_o_GT_GT] = ACTIONS(2848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2848), + [anon_sym_POUND] = ACTIONS(3), + }, + [1261] = { + [aux_sym__repeat_newline] = STATE(1286), + [sym_comment] = STATE(1261), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2986), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2762), + [anon_sym_xor2] = ACTIONS(2762), + [anon_sym_or2] = ACTIONS(2762), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2762), + [anon_sym_BANG_TILDE2] = ACTIONS(2762), + [anon_sym_like2] = ACTIONS(2762), + [anon_sym_not_DASHlike2] = ACTIONS(2762), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2762), + [anon_sym_bit_DASHxor2] = ACTIONS(2762), + [anon_sym_bit_DASHor2] = ACTIONS(2762), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_POUND] = ACTIONS(3), + }, + [1262] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1262), + [anon_sym_in] = ACTIONS(2848), + [sym__newline] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2848), + [anon_sym_PIPE] = ACTIONS(2848), + [anon_sym_err_GT_PIPE] = ACTIONS(2848), + [anon_sym_out_GT_PIPE] = ACTIONS(2848), + [anon_sym_e_GT_PIPE] = ACTIONS(2848), + [anon_sym_o_GT_PIPE] = ACTIONS(2848), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2848), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2848), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2848), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2848), + [anon_sym_RPAREN] = ACTIONS(2848), + [anon_sym_GT2] = ACTIONS(2850), + [anon_sym_DASH2] = ACTIONS(2848), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2848), + [anon_sym_xor2] = ACTIONS(2848), + [anon_sym_or2] = ACTIONS(2848), + [anon_sym_not_DASHin2] = ACTIONS(2848), + [anon_sym_has2] = ACTIONS(2848), + [anon_sym_not_DASHhas2] = ACTIONS(2848), + [anon_sym_starts_DASHwith2] = ACTIONS(2848), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2848), + [anon_sym_ends_DASHwith2] = ACTIONS(2848), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2848), + [anon_sym_EQ_EQ2] = ACTIONS(2848), + [anon_sym_BANG_EQ2] = ACTIONS(2848), + [anon_sym_LT2] = ACTIONS(2850), + [anon_sym_LT_EQ2] = ACTIONS(2848), + [anon_sym_GT_EQ2] = ACTIONS(2848), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2850), + [anon_sym_bit_DASHshl2] = ACTIONS(2848), + [anon_sym_bit_DASHshr2] = ACTIONS(2848), + [anon_sym_bit_DASHand2] = ACTIONS(2848), + [anon_sym_bit_DASHxor2] = ACTIONS(2848), + [anon_sym_bit_DASHor2] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2848), + [anon_sym_out_GT_GT] = ACTIONS(2848), + [anon_sym_e_GT_GT] = ACTIONS(2848), + [anon_sym_o_GT_GT] = ACTIONS(2848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2848), + [anon_sym_POUND] = ACTIONS(3), + }, + [1263] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1263), + [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(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [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(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [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), + }, + [1264] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1264), + [anon_sym_in] = ACTIONS(2848), + [sym__newline] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2848), + [anon_sym_PIPE] = ACTIONS(2848), + [anon_sym_err_GT_PIPE] = ACTIONS(2848), + [anon_sym_out_GT_PIPE] = ACTIONS(2848), + [anon_sym_e_GT_PIPE] = ACTIONS(2848), + [anon_sym_o_GT_PIPE] = ACTIONS(2848), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2848), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2848), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2848), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2848), + [anon_sym_RPAREN] = ACTIONS(2848), + [anon_sym_GT2] = ACTIONS(2850), [anon_sym_DASH2] = ACTIONS(2848), [anon_sym_STAR2] = ACTIONS(2850), - [anon_sym_and2] = ACTIONS(2788), - [anon_sym_xor2] = ACTIONS(2788), - [anon_sym_or2] = ACTIONS(2788), - [anon_sym_not_DASHin2] = ACTIONS(2858), - [anon_sym_has2] = ACTIONS(2858), - [anon_sym_not_DASHhas2] = ACTIONS(2858), - [anon_sym_starts_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2858), - [anon_sym_ends_DASHwith2] = ACTIONS(2858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2858), - [anon_sym_EQ_EQ2] = ACTIONS(2864), - [anon_sym_BANG_EQ2] = ACTIONS(2864), - [anon_sym_LT2] = ACTIONS(2860), - [anon_sym_LT_EQ2] = ACTIONS(2864), - [anon_sym_GT_EQ2] = ACTIONS(2864), - [anon_sym_EQ_TILDE2] = ACTIONS(2866), - [anon_sym_BANG_TILDE2] = ACTIONS(2866), - [anon_sym_like2] = ACTIONS(2866), - [anon_sym_not_DASHlike2] = ACTIONS(2866), - [anon_sym_STAR_STAR2] = ACTIONS(2852), - [anon_sym_PLUS_PLUS2] = ACTIONS(2852), + [anon_sym_and2] = ACTIONS(2848), + [anon_sym_xor2] = ACTIONS(2848), + [anon_sym_or2] = ACTIONS(2848), + [anon_sym_not_DASHin2] = ACTIONS(2848), + [anon_sym_has2] = ACTIONS(2848), + [anon_sym_not_DASHhas2] = ACTIONS(2848), + [anon_sym_starts_DASHwith2] = ACTIONS(2848), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2848), + [anon_sym_ends_DASHwith2] = ACTIONS(2848), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2848), + [anon_sym_EQ_EQ2] = ACTIONS(2848), + [anon_sym_BANG_EQ2] = ACTIONS(2848), + [anon_sym_LT2] = ACTIONS(2850), + [anon_sym_LT_EQ2] = ACTIONS(2848), + [anon_sym_GT_EQ2] = ACTIONS(2848), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), [anon_sym_SLASH2] = ACTIONS(2850), - [anon_sym_mod2] = ACTIONS(2854), - [anon_sym_SLASH_SLASH2] = ACTIONS(2854), - [anon_sym_PLUS2] = ACTIONS(2856), - [anon_sym_bit_DASHshl2] = ACTIONS(2868), - [anon_sym_bit_DASHshr2] = ACTIONS(2868), - [anon_sym_bit_DASHand2] = ACTIONS(2870), - [anon_sym_bit_DASHxor2] = ACTIONS(2872), - [anon_sym_bit_DASHor2] = ACTIONS(2874), - [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(1281)] = { - [aux_sym__repeat_newline] = STATE(1247), - [sym_comment] = STATE(1281), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_err_GT_PIPE] = ACTIONS(2840), - [anon_sym_out_GT_PIPE] = ACTIONS(2840), - [anon_sym_e_GT_PIPE] = ACTIONS(2840), - [anon_sym_o_GT_PIPE] = ACTIONS(2840), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2840), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2840), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), - [anon_sym_RPAREN] = ACTIONS(2840), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2840), - [anon_sym_xor2] = ACTIONS(2840), - [anon_sym_or2] = ACTIONS(2840), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2889), - [anon_sym_BANG_TILDE2] = ACTIONS(2889), - [anon_sym_like2] = ACTIONS(2889), - [anon_sym_not_DASHlike2] = ACTIONS(2889), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2840), - [anon_sym_bit_DASHor2] = ACTIONS(2840), - [anon_sym_err_GT] = ACTIONS(2842), - [anon_sym_out_GT] = ACTIONS(2842), - [anon_sym_e_GT] = ACTIONS(2842), - [anon_sym_o_GT] = ACTIONS(2842), - [anon_sym_err_PLUSout_GT] = ACTIONS(2842), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2842), - [anon_sym_o_PLUSe_GT] = ACTIONS(2842), - [anon_sym_e_PLUSo_GT] = ACTIONS(2842), - [anon_sym_err_GT_GT] = ACTIONS(2840), - [anon_sym_out_GT_GT] = ACTIONS(2840), - [anon_sym_e_GT_GT] = ACTIONS(2840), - [anon_sym_o_GT_GT] = ACTIONS(2840), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2840), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2840), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2840), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_mod2] = ACTIONS(2848), + [anon_sym_SLASH_SLASH2] = ACTIONS(2848), + [anon_sym_PLUS2] = ACTIONS(2850), + [anon_sym_bit_DASHshl2] = ACTIONS(2848), + [anon_sym_bit_DASHshr2] = ACTIONS(2848), + [anon_sym_bit_DASHand2] = ACTIONS(2848), + [anon_sym_bit_DASHxor2] = ACTIONS(2848), + [anon_sym_bit_DASHor2] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2848), + [anon_sym_out_GT_GT] = ACTIONS(2848), + [anon_sym_e_GT_GT] = ACTIONS(2848), + [anon_sym_o_GT_GT] = ACTIONS(2848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2848), + [anon_sym_POUND] = ACTIONS(3), + }, + [1265] = { + [aux_sym__repeat_newline] = STATE(1262), + [sym_comment] = STATE(1265), + [anon_sym_in] = ACTIONS(2762), + [sym__newline] = ACTIONS(2986), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2764), + [anon_sym_DASH2] = ACTIONS(2762), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2762), + [anon_sym_xor2] = ACTIONS(2762), + [anon_sym_or2] = ACTIONS(2762), + [anon_sym_not_DASHin2] = ACTIONS(2762), + [anon_sym_has2] = ACTIONS(2762), + [anon_sym_not_DASHhas2] = ACTIONS(2762), + [anon_sym_starts_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2762), + [anon_sym_ends_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2762), + [anon_sym_EQ_EQ2] = ACTIONS(2762), + [anon_sym_BANG_EQ2] = ACTIONS(2762), + [anon_sym_LT2] = ACTIONS(2764), + [anon_sym_LT_EQ2] = ACTIONS(2762), + [anon_sym_GT_EQ2] = ACTIONS(2762), + [anon_sym_EQ_TILDE2] = ACTIONS(2762), + [anon_sym_BANG_TILDE2] = ACTIONS(2762), + [anon_sym_like2] = ACTIONS(2762), + [anon_sym_not_DASHlike2] = ACTIONS(2762), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2764), + [anon_sym_bit_DASHshl2] = ACTIONS(2762), + [anon_sym_bit_DASHshr2] = ACTIONS(2762), + [anon_sym_bit_DASHand2] = ACTIONS(2762), + [anon_sym_bit_DASHxor2] = ACTIONS(2762), + [anon_sym_bit_DASHor2] = ACTIONS(2762), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_POUND] = ACTIONS(3), + }, + [1266] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1266), + [anon_sym_in] = ACTIONS(2852), + [sym__newline] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2848), + [anon_sym_PIPE] = ACTIONS(2848), + [anon_sym_err_GT_PIPE] = ACTIONS(2848), + [anon_sym_out_GT_PIPE] = ACTIONS(2848), + [anon_sym_e_GT_PIPE] = ACTIONS(2848), + [anon_sym_o_GT_PIPE] = ACTIONS(2848), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2848), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2848), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2848), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2848), + [anon_sym_RPAREN] = ACTIONS(2848), + [anon_sym_GT2] = ACTIONS(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2848), + [anon_sym_xor2] = ACTIONS(2848), + [anon_sym_or2] = ACTIONS(2848), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2862), + [anon_sym_BANG_TILDE2] = ACTIONS(2862), + [anon_sym_like2] = ACTIONS(2862), + [anon_sym_not_DASHlike2] = ACTIONS(2862), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2923), + [anon_sym_bit_DASHor2] = ACTIONS(2964), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2848), + [anon_sym_out_GT_GT] = ACTIONS(2848), + [anon_sym_e_GT_GT] = ACTIONS(2848), + [anon_sym_o_GT_GT] = ACTIONS(2848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2848), + [anon_sym_POUND] = ACTIONS(3), + }, + [1267] = { + [sym_comment] = STATE(1267), + [ts_builtin_sym_end] = ACTIONS(910), + [anon_sym_in] = ACTIONS(910), + [sym__newline] = ACTIONS(910), + [anon_sym_SEMI] = ACTIONS(910), + [anon_sym_PIPE] = ACTIONS(910), + [anon_sym_err_GT_PIPE] = ACTIONS(910), + [anon_sym_out_GT_PIPE] = ACTIONS(910), + [anon_sym_e_GT_PIPE] = ACTIONS(910), + [anon_sym_o_GT_PIPE] = ACTIONS(910), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(910), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(910), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(910), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(910), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(910), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(910), + [anon_sym_xor2] = ACTIONS(910), + [anon_sym_or2] = ACTIONS(910), + [anon_sym_not_DASHin2] = ACTIONS(910), + [anon_sym_has2] = ACTIONS(910), + [anon_sym_not_DASHhas2] = ACTIONS(910), + [anon_sym_starts_DASHwith2] = ACTIONS(910), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(910), + [anon_sym_ends_DASHwith2] = ACTIONS(910), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(910), + [anon_sym_EQ_EQ2] = ACTIONS(910), + [anon_sym_BANG_EQ2] = ACTIONS(910), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(910), + [anon_sym_GT_EQ2] = ACTIONS(910), + [anon_sym_EQ_TILDE2] = ACTIONS(910), + [anon_sym_BANG_TILDE2] = ACTIONS(910), + [anon_sym_like2] = ACTIONS(910), + [anon_sym_not_DASHlike2] = ACTIONS(910), + [anon_sym_STAR_STAR2] = ACTIONS(910), + [anon_sym_PLUS_PLUS2] = ACTIONS(910), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(910), + [anon_sym_SLASH_SLASH2] = ACTIONS(910), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(910), + [anon_sym_bit_DASHshr2] = ACTIONS(910), + [anon_sym_bit_DASHand2] = ACTIONS(910), + [anon_sym_bit_DASHxor2] = ACTIONS(910), + [anon_sym_bit_DASHor2] = ACTIONS(910), + [anon_sym_err_GT] = ACTIONS(811), + [anon_sym_out_GT] = ACTIONS(811), + [anon_sym_e_GT] = ACTIONS(811), + [anon_sym_o_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT] = ACTIONS(811), + [anon_sym_err_GT_GT] = ACTIONS(910), + [anon_sym_out_GT_GT] = ACTIONS(910), + [anon_sym_e_GT_GT] = ACTIONS(910), + [anon_sym_o_GT_GT] = ACTIONS(910), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(910), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(910), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(910), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(910), + [sym__unquoted_pattern] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(3), + }, + [1268] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1268), + [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_STAR2] = ACTIONS(2858), + [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(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [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), + }, + [1269] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1269), + [anon_sym_in] = ACTIONS(2852), + [sym__newline] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2848), + [anon_sym_PIPE] = ACTIONS(2848), + [anon_sym_err_GT_PIPE] = ACTIONS(2848), + [anon_sym_out_GT_PIPE] = ACTIONS(2848), + [anon_sym_e_GT_PIPE] = ACTIONS(2848), + [anon_sym_o_GT_PIPE] = ACTIONS(2848), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2848), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2848), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2848), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2848), + [anon_sym_RPAREN] = ACTIONS(2848), + [anon_sym_GT2] = ACTIONS(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2960), + [anon_sym_xor2] = ACTIONS(2848), + [anon_sym_or2] = ACTIONS(2848), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2862), + [anon_sym_BANG_TILDE2] = ACTIONS(2862), + [anon_sym_like2] = ACTIONS(2862), + [anon_sym_not_DASHlike2] = ACTIONS(2862), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2923), + [anon_sym_bit_DASHor2] = ACTIONS(2964), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2848), + [anon_sym_out_GT_GT] = ACTIONS(2848), + [anon_sym_e_GT_GT] = ACTIONS(2848), + [anon_sym_o_GT_GT] = ACTIONS(2848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2848), + [anon_sym_POUND] = ACTIONS(3), + }, + [1270] = { + [sym_comment] = STATE(1270), + [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_LBRACK2] = ACTIONS(2992), + [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), + }, + [1271] = { + [aux_sym__repeat_newline] = STATE(1264), + [sym_comment] = STATE(1271), + [anon_sym_in] = ACTIONS(2762), + [sym__newline] = ACTIONS(2986), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2764), + [anon_sym_DASH2] = ACTIONS(2762), + [anon_sym_STAR2] = ACTIONS(2764), + [anon_sym_and2] = ACTIONS(2762), + [anon_sym_xor2] = ACTIONS(2762), + [anon_sym_or2] = ACTIONS(2762), + [anon_sym_not_DASHin2] = ACTIONS(2762), + [anon_sym_has2] = ACTIONS(2762), + [anon_sym_not_DASHhas2] = ACTIONS(2762), + [anon_sym_starts_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2762), + [anon_sym_ends_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2762), + [anon_sym_EQ_EQ2] = ACTIONS(2762), + [anon_sym_BANG_EQ2] = ACTIONS(2762), + [anon_sym_LT2] = ACTIONS(2764), + [anon_sym_LT_EQ2] = ACTIONS(2762), + [anon_sym_GT_EQ2] = ACTIONS(2762), + [anon_sym_EQ_TILDE2] = ACTIONS(2762), + [anon_sym_BANG_TILDE2] = ACTIONS(2762), + [anon_sym_like2] = ACTIONS(2762), + [anon_sym_not_DASHlike2] = ACTIONS(2762), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2764), + [anon_sym_mod2] = ACTIONS(2762), + [anon_sym_SLASH_SLASH2] = ACTIONS(2762), + [anon_sym_PLUS2] = ACTIONS(2764), + [anon_sym_bit_DASHshl2] = ACTIONS(2762), + [anon_sym_bit_DASHshr2] = ACTIONS(2762), + [anon_sym_bit_DASHand2] = ACTIONS(2762), + [anon_sym_bit_DASHxor2] = ACTIONS(2762), + [anon_sym_bit_DASHor2] = ACTIONS(2762), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_POUND] = ACTIONS(3), + }, + [1272] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1272), + [anon_sym_in] = ACTIONS(2852), + [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(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2960), + [anon_sym_xor2] = ACTIONS(2962), + [anon_sym_or2] = ACTIONS(2786), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2862), + [anon_sym_BANG_TILDE2] = ACTIONS(2862), + [anon_sym_like2] = ACTIONS(2862), + [anon_sym_not_DASHlike2] = ACTIONS(2862), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2923), + [anon_sym_bit_DASHor2] = ACTIONS(2964), + [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), + }, + [1273] = { + [sym_comment] = STATE(1273), + [ts_builtin_sym_end] = ACTIONS(910), + [aux_sym_cmd_identifier_token2] = ACTIONS(2994), + [anon_sym_in] = ACTIONS(811), + [sym__newline] = ACTIONS(910), + [anon_sym_SEMI] = ACTIONS(910), + [anon_sym_PIPE] = ACTIONS(910), + [anon_sym_err_GT_PIPE] = ACTIONS(910), + [anon_sym_out_GT_PIPE] = ACTIONS(910), + [anon_sym_e_GT_PIPE] = ACTIONS(910), + [anon_sym_o_GT_PIPE] = ACTIONS(910), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(910), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(910), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(910), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(910), + [anon_sym_GT2] = ACTIONS(811), + [anon_sym_DASH2] = ACTIONS(811), + [anon_sym_STAR2] = ACTIONS(811), + [anon_sym_and2] = ACTIONS(811), + [anon_sym_xor2] = ACTIONS(811), + [anon_sym_or2] = ACTIONS(811), + [anon_sym_not_DASHin2] = ACTIONS(811), + [anon_sym_has2] = ACTIONS(811), + [anon_sym_not_DASHhas2] = ACTIONS(811), + [anon_sym_starts_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(811), + [anon_sym_ends_DASHwith2] = ACTIONS(811), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(811), + [anon_sym_EQ_EQ2] = ACTIONS(910), + [anon_sym_BANG_EQ2] = ACTIONS(910), + [anon_sym_LT2] = ACTIONS(811), + [anon_sym_LT_EQ2] = ACTIONS(910), + [anon_sym_GT_EQ2] = ACTIONS(910), + [anon_sym_EQ_TILDE2] = ACTIONS(910), + [anon_sym_BANG_TILDE2] = ACTIONS(811), + [anon_sym_like2] = ACTIONS(811), + [anon_sym_not_DASHlike2] = ACTIONS(811), + [anon_sym_STAR_STAR2] = ACTIONS(811), + [anon_sym_PLUS_PLUS2] = ACTIONS(811), + [anon_sym_SLASH2] = ACTIONS(811), + [anon_sym_mod2] = ACTIONS(811), + [anon_sym_SLASH_SLASH2] = ACTIONS(811), + [anon_sym_PLUS2] = ACTIONS(811), + [anon_sym_bit_DASHshl2] = ACTIONS(811), + [anon_sym_bit_DASHshr2] = ACTIONS(811), + [anon_sym_bit_DASHand2] = ACTIONS(811), + [anon_sym_bit_DASHxor2] = ACTIONS(811), + [anon_sym_bit_DASHor2] = ACTIONS(811), + [anon_sym_err_GT] = ACTIONS(811), + [anon_sym_out_GT] = ACTIONS(811), + [anon_sym_e_GT] = ACTIONS(811), + [anon_sym_o_GT] = ACTIONS(811), + [anon_sym_err_PLUSout_GT] = ACTIONS(811), + [anon_sym_out_PLUSerr_GT] = ACTIONS(811), + [anon_sym_o_PLUSe_GT] = ACTIONS(811), + [anon_sym_e_PLUSo_GT] = ACTIONS(811), + [anon_sym_err_GT_GT] = ACTIONS(910), + [anon_sym_out_GT_GT] = ACTIONS(910), + [anon_sym_e_GT_GT] = ACTIONS(910), + [anon_sym_o_GT_GT] = ACTIONS(910), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(910), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(910), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(910), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(910), + [anon_sym_POUND] = ACTIONS(105), }, - [STATE(1282)] = { - [aux_sym__repeat_newline] = STATE(1243), - [sym_comment] = STATE(1282), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2967), - [anon_sym_SEMI] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_err_GT_PIPE] = ACTIONS(2836), - [anon_sym_out_GT_PIPE] = ACTIONS(2836), - [anon_sym_e_GT_PIPE] = ACTIONS(2836), - [anon_sym_o_GT_PIPE] = ACTIONS(2836), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2836), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2836), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2836), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2836), - [anon_sym_RPAREN] = ACTIONS(2836), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2836), - [anon_sym_xor2] = ACTIONS(2836), - [anon_sym_or2] = ACTIONS(2836), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2889), - [anon_sym_BANG_TILDE2] = ACTIONS(2889), - [anon_sym_like2] = ACTIONS(2889), - [anon_sym_not_DASHlike2] = ACTIONS(2889), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2836), - [anon_sym_bit_DASHxor2] = ACTIONS(2836), - [anon_sym_bit_DASHor2] = ACTIONS(2836), - [anon_sym_err_GT] = ACTIONS(2838), - [anon_sym_out_GT] = ACTIONS(2838), - [anon_sym_e_GT] = ACTIONS(2838), - [anon_sym_o_GT] = ACTIONS(2838), - [anon_sym_err_PLUSout_GT] = ACTIONS(2838), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), - [anon_sym_o_PLUSe_GT] = ACTIONS(2838), - [anon_sym_e_PLUSo_GT] = ACTIONS(2838), - [anon_sym_err_GT_GT] = ACTIONS(2836), - [anon_sym_out_GT_GT] = ACTIONS(2836), - [anon_sym_e_GT_GT] = ACTIONS(2836), - [anon_sym_o_GT_GT] = ACTIONS(2836), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2836), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2836), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2836), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1283)] = { - [aux_sym__repeat_newline] = STATE(1190), - [sym_comment] = STATE(1283), - [anon_sym_in] = ACTIONS(2876), - [sym__newline] = ACTIONS(2913), - [anon_sym_SEMI] = ACTIONS(2782), - [anon_sym_PIPE] = ACTIONS(2782), - [anon_sym_err_GT_PIPE] = ACTIONS(2782), - [anon_sym_out_GT_PIPE] = ACTIONS(2782), - [anon_sym_e_GT_PIPE] = ACTIONS(2782), - [anon_sym_o_GT_PIPE] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2782), - [anon_sym_RPAREN] = ACTIONS(2782), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2905), - [anon_sym_xor2] = ACTIONS(2782), - [anon_sym_or2] = ACTIONS(2782), - [anon_sym_not_DASHin2] = ACTIONS(2876), - [anon_sym_has2] = ACTIONS(2876), - [anon_sym_not_DASHhas2] = ACTIONS(2876), - [anon_sym_starts_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2876), - [anon_sym_ends_DASHwith2] = ACTIONS(2876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2876), - [anon_sym_EQ_EQ2] = ACTIONS(2887), - [anon_sym_BANG_EQ2] = ACTIONS(2887), - [anon_sym_LT2] = ACTIONS(2881), - [anon_sym_LT_EQ2] = ACTIONS(2887), - [anon_sym_GT_EQ2] = ACTIONS(2887), - [anon_sym_EQ_TILDE2] = ACTIONS(2889), - [anon_sym_BANG_TILDE2] = ACTIONS(2889), - [anon_sym_like2] = ACTIONS(2889), - [anon_sym_not_DASHlike2] = ACTIONS(2889), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2909), - [anon_sym_err_GT] = ACTIONS(2784), - [anon_sym_out_GT] = ACTIONS(2784), - [anon_sym_e_GT] = ACTIONS(2784), - [anon_sym_o_GT] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT] = ACTIONS(2784), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [anon_sym_POUND] = ACTIONS(3), + [1274] = { + [sym_comment] = STATE(1274), + [ts_builtin_sym_end] = ACTIONS(2608), + [aux_sym_cmd_identifier_token2] = ACTIONS(2994), + [anon_sym_in] = ACTIONS(2610), + [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(2610), + [anon_sym_STAR2] = ACTIONS(2610), + [anon_sym_and2] = ACTIONS(2610), + [anon_sym_xor2] = ACTIONS(2610), + [anon_sym_or2] = ACTIONS(2610), + [anon_sym_not_DASHin2] = ACTIONS(2610), + [anon_sym_has2] = ACTIONS(2610), + [anon_sym_not_DASHhas2] = ACTIONS(2610), + [anon_sym_starts_DASHwith2] = ACTIONS(2610), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2610), + [anon_sym_ends_DASHwith2] = ACTIONS(2610), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2610), + [anon_sym_EQ_EQ2] = ACTIONS(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(2610), + [anon_sym_like2] = ACTIONS(2610), + [anon_sym_not_DASHlike2] = ACTIONS(2610), + [anon_sym_STAR_STAR2] = ACTIONS(2610), + [anon_sym_PLUS_PLUS2] = ACTIONS(2610), + [anon_sym_SLASH2] = ACTIONS(2610), + [anon_sym_mod2] = ACTIONS(2610), + [anon_sym_SLASH_SLASH2] = ACTIONS(2610), + [anon_sym_PLUS2] = ACTIONS(2610), + [anon_sym_bit_DASHshl2] = ACTIONS(2610), + [anon_sym_bit_DASHshr2] = ACTIONS(2610), + [anon_sym_bit_DASHand2] = ACTIONS(2610), + [anon_sym_bit_DASHxor2] = ACTIONS(2610), + [anon_sym_bit_DASHor2] = ACTIONS(2610), + [anon_sym_err_GT] = ACTIONS(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), + [anon_sym_POUND] = ACTIONS(105), }, - [STATE(1284)] = { - [aux_sym__repeat_newline] = STATE(1219), - [sym_comment] = STATE(1284), - [anon_sym_in] = ACTIONS(2840), - [sym__newline] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_err_GT_PIPE] = ACTIONS(2840), - [anon_sym_out_GT_PIPE] = ACTIONS(2840), - [anon_sym_e_GT_PIPE] = ACTIONS(2840), - [anon_sym_o_GT_PIPE] = ACTIONS(2840), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2840), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2840), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), - [anon_sym_RPAREN] = ACTIONS(2840), - [anon_sym_GT2] = ACTIONS(2842), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2840), - [anon_sym_xor2] = ACTIONS(2840), - [anon_sym_or2] = ACTIONS(2840), - [anon_sym_not_DASHin2] = ACTIONS(2840), - [anon_sym_has2] = ACTIONS(2840), - [anon_sym_not_DASHhas2] = ACTIONS(2840), - [anon_sym_starts_DASHwith2] = ACTIONS(2840), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2840), - [anon_sym_ends_DASHwith2] = ACTIONS(2840), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2840), - [anon_sym_EQ_EQ2] = ACTIONS(2840), - [anon_sym_BANG_EQ2] = ACTIONS(2840), - [anon_sym_LT2] = ACTIONS(2842), - [anon_sym_LT_EQ2] = ACTIONS(2840), - [anon_sym_GT_EQ2] = ACTIONS(2840), - [anon_sym_EQ_TILDE2] = ACTIONS(2840), - [anon_sym_BANG_TILDE2] = ACTIONS(2840), - [anon_sym_like2] = ACTIONS(2840), - [anon_sym_not_DASHlike2] = ACTIONS(2840), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2897), - [anon_sym_bit_DASHshr2] = ACTIONS(2897), - [anon_sym_bit_DASHand2] = ACTIONS(2840), - [anon_sym_bit_DASHxor2] = ACTIONS(2840), - [anon_sym_bit_DASHor2] = ACTIONS(2840), - [anon_sym_err_GT] = ACTIONS(2842), - [anon_sym_out_GT] = ACTIONS(2842), - [anon_sym_e_GT] = ACTIONS(2842), - [anon_sym_o_GT] = ACTIONS(2842), - [anon_sym_err_PLUSout_GT] = ACTIONS(2842), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2842), - [anon_sym_o_PLUSe_GT] = ACTIONS(2842), - [anon_sym_e_PLUSo_GT] = ACTIONS(2842), - [anon_sym_err_GT_GT] = ACTIONS(2840), - [anon_sym_out_GT_GT] = ACTIONS(2840), - [anon_sym_e_GT_GT] = ACTIONS(2840), - [anon_sym_o_GT_GT] = ACTIONS(2840), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2840), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2840), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2840), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), - [anon_sym_POUND] = ACTIONS(3), + [1275] = { + [sym_comment] = STATE(1275), + [ts_builtin_sym_end] = ACTIONS(2596), + [aux_sym_cmd_identifier_token2] = ACTIONS(2994), + [anon_sym_in] = ACTIONS(2598), + [sym__newline] = ACTIONS(2596), + [anon_sym_SEMI] = ACTIONS(2596), + [anon_sym_PIPE] = ACTIONS(2596), + [anon_sym_err_GT_PIPE] = ACTIONS(2596), + [anon_sym_out_GT_PIPE] = ACTIONS(2596), + [anon_sym_e_GT_PIPE] = ACTIONS(2596), + [anon_sym_o_GT_PIPE] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2596), + [anon_sym_GT2] = ACTIONS(2598), + [anon_sym_DASH2] = ACTIONS(2598), + [anon_sym_STAR2] = ACTIONS(2598), + [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(2596), + [anon_sym_BANG_EQ2] = ACTIONS(2596), + [anon_sym_LT2] = ACTIONS(2598), + [anon_sym_LT_EQ2] = ACTIONS(2596), + [anon_sym_GT_EQ2] = ACTIONS(2596), + [anon_sym_EQ_TILDE2] = ACTIONS(2596), + [anon_sym_BANG_TILDE2] = ACTIONS(2598), + [anon_sym_like2] = ACTIONS(2598), + [anon_sym_not_DASHlike2] = ACTIONS(2598), + [anon_sym_STAR_STAR2] = ACTIONS(2598), + [anon_sym_PLUS_PLUS2] = ACTIONS(2598), + [anon_sym_SLASH2] = ACTIONS(2598), + [anon_sym_mod2] = ACTIONS(2598), + [anon_sym_SLASH_SLASH2] = ACTIONS(2598), + [anon_sym_PLUS2] = ACTIONS(2598), + [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(2598), + [anon_sym_out_GT] = ACTIONS(2598), + [anon_sym_e_GT] = ACTIONS(2598), + [anon_sym_o_GT] = ACTIONS(2598), + [anon_sym_err_PLUSout_GT] = ACTIONS(2598), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2598), + [anon_sym_o_PLUSe_GT] = ACTIONS(2598), + [anon_sym_e_PLUSo_GT] = ACTIONS(2598), + [anon_sym_err_GT_GT] = ACTIONS(2596), + [anon_sym_out_GT_GT] = ACTIONS(2596), + [anon_sym_e_GT_GT] = ACTIONS(2596), + [anon_sym_o_GT_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2596), + [anon_sym_POUND] = ACTIONS(105), }, - [STATE(1285)] = { - [sym__expression] = STATE(5027), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2261), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1878), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_comment] = STATE(1285), - [aux_sym_cmd_identifier_token2] = ACTIONS(2634), - [anon_sym_true] = ACTIONS(2636), - [anon_sym_false] = ACTIONS(2636), - [anon_sym_null] = ACTIONS(2638), - [aux_sym_cmd_identifier_token3] = ACTIONS(2640), - [aux_sym_cmd_identifier_token4] = ACTIONS(2640), - [aux_sym_cmd_identifier_token5] = ACTIONS(2640), + [1276] = { + [sym__expression] = STATE(4953), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2265), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1905), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_comment] = STATE(1276), + [aux_sym_cmd_identifier_token2] = ACTIONS(2690), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_null] = ACTIONS(2694), + [aux_sym_cmd_identifier_token3] = ACTIONS(2696), + [aux_sym_cmd_identifier_token4] = ACTIONS(2696), + [aux_sym_cmd_identifier_token5] = ACTIONS(2696), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1981), - [aux_sym__val_number_decimal_token3] = ACTIONS(2644), - [aux_sym__val_number_decimal_token4] = ACTIONS(2644), - [aux_sym__val_number_token1] = ACTIONS(2640), - [aux_sym__val_number_token2] = ACTIONS(2640), - [aux_sym__val_number_token3] = ACTIONS(2640), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1965), + [aux_sym__val_number_decimal_token3] = ACTIONS(2700), + [aux_sym__val_number_decimal_token4] = ACTIONS(2700), + [aux_sym__val_number_token1] = ACTIONS(2696), + [aux_sym__val_number_token2] = ACTIONS(2696), + [aux_sym__val_number_token3] = ACTIONS(2696), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2646), + [sym_val_date] = ACTIONS(2702), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), @@ -142972,65 +142317,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(105), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(1286)] = { - [sym__expression] = STATE(5053), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2261), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1878), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_comment] = STATE(1286), - [aux_sym_cmd_identifier_token2] = ACTIONS(2634), - [anon_sym_true] = ACTIONS(2636), - [anon_sym_false] = ACTIONS(2636), - [anon_sym_null] = ACTIONS(2638), - [aux_sym_cmd_identifier_token3] = ACTIONS(2640), - [aux_sym_cmd_identifier_token4] = ACTIONS(2640), - [aux_sym_cmd_identifier_token5] = ACTIONS(2640), + [1277] = { + [sym__expression] = STATE(4960), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2265), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1905), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_comment] = STATE(1277), + [aux_sym_cmd_identifier_token2] = ACTIONS(2994), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_null] = ACTIONS(2694), + [aux_sym_cmd_identifier_token3] = ACTIONS(2696), + [aux_sym_cmd_identifier_token4] = ACTIONS(2696), + [aux_sym_cmd_identifier_token5] = ACTIONS(2696), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1981), - [aux_sym__val_number_decimal_token3] = ACTIONS(2644), - [aux_sym__val_number_decimal_token4] = ACTIONS(2644), - [aux_sym__val_number_token1] = ACTIONS(2640), - [aux_sym__val_number_token2] = ACTIONS(2640), - [aux_sym__val_number_token3] = ACTIONS(2640), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1965), + [aux_sym__val_number_decimal_token3] = ACTIONS(2700), + [aux_sym__val_number_decimal_token4] = ACTIONS(2700), + [aux_sym__val_number_token1] = ACTIONS(2696), + [aux_sym__val_number_token2] = ACTIONS(2696), + [aux_sym__val_number_token3] = ACTIONS(2696), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2646), + [sym_val_date] = ACTIONS(2702), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), @@ -143039,65 +142384,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(105), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(1287)] = { - [sym__expression] = STATE(5058), - [sym_expr_unary] = STATE(979), - [sym__expr_unary_minus] = STATE(980), - [sym_expr_binary] = STATE(979), - [sym__expr_binary_expression] = STATE(2261), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(979), - [sym__value] = STATE(979), - [sym_val_nothing] = STATE(969), - [sym_val_bool] = STATE(969), - [sym_val_variable] = STATE(730), - [sym_val_cellpath] = STATE(969), - [sym_val_number] = STATE(969), - [sym__val_number_decimal] = STATE(1878), - [sym__val_number] = STATE(726), - [sym_val_duration] = STATE(969), - [sym_val_filesize] = STATE(969), - [sym_val_binary] = STATE(969), - [sym_val_string] = STATE(969), - [sym__raw_str] = STATE(436), - [sym__str_double_quotes] = STATE(436), - [sym__str_single_quotes] = STATE(436), - [sym__str_back_ticks] = STATE(436), - [sym_val_interpolated] = STATE(969), - [sym__inter_single_quotes] = STATE(766), - [sym__inter_double_quotes] = STATE(767), - [sym_val_list] = STATE(969), - [sym_val_record] = STATE(969), - [sym_val_table] = STATE(969), - [sym_val_closure] = STATE(969), - [sym_comment] = STATE(1287), - [aux_sym_cmd_identifier_token2] = ACTIONS(2634), - [anon_sym_true] = ACTIONS(2636), - [anon_sym_false] = ACTIONS(2636), - [anon_sym_null] = ACTIONS(2638), - [aux_sym_cmd_identifier_token3] = ACTIONS(2640), - [aux_sym_cmd_identifier_token4] = ACTIONS(2640), - [aux_sym_cmd_identifier_token5] = ACTIONS(2640), + [1278] = { + [sym__expression] = STATE(4974), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2265), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1905), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_comment] = STATE(1278), + [aux_sym_cmd_identifier_token2] = ACTIONS(2994), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_null] = ACTIONS(2694), + [aux_sym_cmd_identifier_token3] = ACTIONS(2696), + [aux_sym_cmd_identifier_token4] = ACTIONS(2696), + [aux_sym_cmd_identifier_token5] = ACTIONS(2696), [anon_sym_LBRACK] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1292), [anon_sym_DASH2] = ACTIONS(291), [anon_sym_LBRACE] = ACTIONS(167), [anon_sym_DOT_DOT] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(175), [anon_sym_DOT_DOT_EQ] = ACTIONS(181), [anon_sym_DOT_DOT_LT] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1981), - [aux_sym__val_number_decimal_token3] = ACTIONS(2644), - [aux_sym__val_number_decimal_token4] = ACTIONS(2644), - [aux_sym__val_number_token1] = ACTIONS(2640), - [aux_sym__val_number_token2] = ACTIONS(2640), - [aux_sym__val_number_token3] = ACTIONS(2640), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1965), + [aux_sym__val_number_decimal_token3] = ACTIONS(2700), + [aux_sym__val_number_decimal_token4] = ACTIONS(2700), + [aux_sym__val_number_token1] = ACTIONS(2696), + [aux_sym__val_number_token2] = ACTIONS(2696), + [aux_sym__val_number_token3] = ACTIONS(2696), [anon_sym_0b] = ACTIONS(193), [anon_sym_0o] = ACTIONS(195), [anon_sym_0x] = ACTIONS(195), - [sym_val_date] = ACTIONS(2646), + [sym_val_date] = ACTIONS(2702), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_BQUOTE] = ACTIONS(203), @@ -143106,117 +142451,690 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(105), [sym_raw_string_begin] = ACTIONS(215), }, - [STATE(1288)] = { - [aux_sym__repeat_newline] = STATE(1152), + [1279] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1279), + [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_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(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [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), + }, + [1280] = { + [sym__expression] = STATE(4999), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2265), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1905), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_comment] = STATE(1280), + [aux_sym_cmd_identifier_token2] = ACTIONS(2690), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_null] = ACTIONS(2694), + [aux_sym_cmd_identifier_token3] = ACTIONS(2696), + [aux_sym_cmd_identifier_token4] = ACTIONS(2696), + [aux_sym_cmd_identifier_token5] = ACTIONS(2696), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1965), + [aux_sym__val_number_decimal_token3] = ACTIONS(2700), + [aux_sym__val_number_decimal_token4] = ACTIONS(2700), + [aux_sym__val_number_token1] = ACTIONS(2696), + [aux_sym__val_number_token2] = ACTIONS(2696), + [aux_sym__val_number_token3] = ACTIONS(2696), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(215), + }, + [1281] = { + [aux_sym__repeat_newline] = STATE(1266), + [sym_comment] = STATE(1281), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2986), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2762), + [anon_sym_xor2] = ACTIONS(2762), + [anon_sym_or2] = ACTIONS(2762), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2887), + [anon_sym_BANG_TILDE2] = ACTIONS(2887), + [anon_sym_like2] = ACTIONS(2887), + [anon_sym_not_DASHlike2] = ACTIONS(2887), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2897), + [anon_sym_bit_DASHxor2] = ACTIONS(2899), + [anon_sym_bit_DASHor2] = ACTIONS(2972), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_POUND] = ACTIONS(3), + }, + [1282] = { + [sym__expression] = STATE(5007), + [sym_expr_unary] = STATE(938), + [sym__expr_unary_minus] = STATE(937), + [sym_expr_binary] = STATE(938), + [sym__expr_binary_expression] = STATE(2265), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(938), + [sym__value] = STATE(938), + [sym_val_nothing] = STATE(944), + [sym_val_bool] = STATE(944), + [sym_val_variable] = STATE(739), + [sym_val_cellpath] = STATE(944), + [sym_val_number] = STATE(944), + [sym__val_number_decimal] = STATE(1905), + [sym__val_number] = STATE(705), + [sym_val_duration] = STATE(944), + [sym_val_filesize] = STATE(944), + [sym_val_binary] = STATE(944), + [sym_val_string] = STATE(944), + [sym__raw_str] = STATE(432), + [sym__str_double_quotes] = STATE(432), + [sym__str_single_quotes] = STATE(432), + [sym__str_back_ticks] = STATE(432), + [sym_val_interpolated] = STATE(944), + [sym__inter_single_quotes] = STATE(752), + [sym__inter_double_quotes] = STATE(753), + [sym_val_list] = STATE(944), + [sym_val_record] = STATE(944), + [sym_val_table] = STATE(944), + [sym_val_closure] = STATE(944), + [sym_comment] = STATE(1282), + [aux_sym_cmd_identifier_token2] = ACTIONS(2690), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_null] = ACTIONS(2694), + [aux_sym_cmd_identifier_token3] = ACTIONS(2696), + [aux_sym_cmd_identifier_token4] = ACTIONS(2696), + [aux_sym_cmd_identifier_token5] = ACTIONS(2696), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(1292), + [anon_sym_DASH2] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_DOT_DOT] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(181), + [anon_sym_DOT_DOT_LT] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1965), + [aux_sym__val_number_decimal_token3] = ACTIONS(2700), + [aux_sym__val_number_decimal_token4] = ACTIONS(2700), + [aux_sym__val_number_token1] = ACTIONS(2696), + [aux_sym__val_number_token2] = ACTIONS(2696), + [aux_sym__val_number_token3] = ACTIONS(2696), + [anon_sym_0b] = ACTIONS(193), + [anon_sym_0o] = ACTIONS(195), + [anon_sym_0x] = ACTIONS(195), + [sym_val_date] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(215), + }, + [1283] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1283), + [anon_sym_in] = ACTIONS(2852), + [sym__newline] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2848), + [anon_sym_PIPE] = ACTIONS(2848), + [anon_sym_err_GT_PIPE] = ACTIONS(2848), + [anon_sym_out_GT_PIPE] = ACTIONS(2848), + [anon_sym_e_GT_PIPE] = ACTIONS(2848), + [anon_sym_o_GT_PIPE] = ACTIONS(2848), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2848), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2848), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2848), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2848), + [anon_sym_RPAREN] = ACTIONS(2848), + [anon_sym_GT2] = ACTIONS(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2960), + [anon_sym_xor2] = ACTIONS(2962), + [anon_sym_or2] = ACTIONS(2848), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2862), + [anon_sym_BANG_TILDE2] = ACTIONS(2862), + [anon_sym_like2] = ACTIONS(2862), + [anon_sym_not_DASHlike2] = ACTIONS(2862), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2923), + [anon_sym_bit_DASHor2] = ACTIONS(2964), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2848), + [anon_sym_out_GT_GT] = ACTIONS(2848), + [anon_sym_e_GT_GT] = ACTIONS(2848), + [anon_sym_o_GT_GT] = ACTIONS(2848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2848), + [anon_sym_POUND] = ACTIONS(3), + }, + [1284] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1284), + [anon_sym_in] = ACTIONS(2852), + [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(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2786), + [anon_sym_xor2] = ACTIONS(2786), + [anon_sym_or2] = ACTIONS(2786), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2862), + [anon_sym_BANG_TILDE2] = ACTIONS(2862), + [anon_sym_like2] = ACTIONS(2862), + [anon_sym_not_DASHlike2] = ACTIONS(2862), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2923), + [anon_sym_bit_DASHor2] = ACTIONS(2964), + [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), + }, + [1285] = { + [aux_sym__repeat_newline] = STATE(1269), + [sym_comment] = STATE(1285), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2986), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2968), + [anon_sym_xor2] = ACTIONS(2762), + [anon_sym_or2] = ACTIONS(2762), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2887), + [anon_sym_BANG_TILDE2] = ACTIONS(2887), + [anon_sym_like2] = ACTIONS(2887), + [anon_sym_not_DASHlike2] = ACTIONS(2887), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2897), + [anon_sym_bit_DASHxor2] = ACTIONS(2899), + [anon_sym_bit_DASHor2] = ACTIONS(2972), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_POUND] = ACTIONS(3), + }, + [1286] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1286), + [anon_sym_in] = ACTIONS(2852), + [sym__newline] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2848), + [anon_sym_PIPE] = ACTIONS(2848), + [anon_sym_err_GT_PIPE] = ACTIONS(2848), + [anon_sym_out_GT_PIPE] = ACTIONS(2848), + [anon_sym_e_GT_PIPE] = ACTIONS(2848), + [anon_sym_o_GT_PIPE] = ACTIONS(2848), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2848), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2848), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2848), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2848), + [anon_sym_RPAREN] = ACTIONS(2848), + [anon_sym_GT2] = ACTIONS(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2848), + [anon_sym_xor2] = ACTIONS(2848), + [anon_sym_or2] = ACTIONS(2848), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2848), + [anon_sym_bit_DASHxor2] = ACTIONS(2848), + [anon_sym_bit_DASHor2] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2848), + [anon_sym_out_GT_GT] = ACTIONS(2848), + [anon_sym_e_GT_GT] = ACTIONS(2848), + [anon_sym_o_GT_GT] = ACTIONS(2848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2848), + [anon_sym_POUND] = ACTIONS(3), + }, + [1287] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_comment] = STATE(1287), + [anon_sym_in] = ACTIONS(2852), + [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(2854), + [anon_sym_DASH2] = ACTIONS(2856), + [anon_sym_STAR2] = ACTIONS(2858), + [anon_sym_and2] = ACTIONS(2960), + [anon_sym_xor2] = ACTIONS(2786), + [anon_sym_or2] = ACTIONS(2786), + [anon_sym_not_DASHin2] = ACTIONS(2852), + [anon_sym_has2] = ACTIONS(2852), + [anon_sym_not_DASHhas2] = ACTIONS(2852), + [anon_sym_starts_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2852), + [anon_sym_ends_DASHwith2] = ACTIONS(2852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2852), + [anon_sym_EQ_EQ2] = ACTIONS(2860), + [anon_sym_BANG_EQ2] = ACTIONS(2860), + [anon_sym_LT2] = ACTIONS(2854), + [anon_sym_LT_EQ2] = ACTIONS(2860), + [anon_sym_GT_EQ2] = ACTIONS(2860), + [anon_sym_EQ_TILDE2] = ACTIONS(2862), + [anon_sym_BANG_TILDE2] = ACTIONS(2862), + [anon_sym_like2] = ACTIONS(2862), + [anon_sym_not_DASHlike2] = ACTIONS(2862), + [anon_sym_STAR_STAR2] = ACTIONS(2864), + [anon_sym_PLUS_PLUS2] = ACTIONS(2864), + [anon_sym_SLASH2] = ACTIONS(2858), + [anon_sym_mod2] = ACTIONS(2866), + [anon_sym_SLASH_SLASH2] = ACTIONS(2866), + [anon_sym_PLUS2] = ACTIONS(2868), + [anon_sym_bit_DASHshl2] = ACTIONS(2870), + [anon_sym_bit_DASHshr2] = ACTIONS(2870), + [anon_sym_bit_DASHand2] = ACTIONS(2872), + [anon_sym_bit_DASHxor2] = ACTIONS(2923), + [anon_sym_bit_DASHor2] = ACTIONS(2964), + [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), + }, + [1288] = { + [aux_sym__repeat_newline] = STATE(1283), [sym_comment] = STATE(1288), - [anon_sym_in] = ACTIONS(2840), - [sym__newline] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_err_GT_PIPE] = ACTIONS(2840), - [anon_sym_out_GT_PIPE] = ACTIONS(2840), - [anon_sym_e_GT_PIPE] = ACTIONS(2840), - [anon_sym_o_GT_PIPE] = ACTIONS(2840), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2840), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2840), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2840), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2840), - [anon_sym_RPAREN] = ACTIONS(2840), - [anon_sym_GT2] = ACTIONS(2842), - [anon_sym_DASH2] = ACTIONS(2883), - [anon_sym_STAR2] = ACTIONS(2885), - [anon_sym_and2] = ACTIONS(2840), - [anon_sym_xor2] = ACTIONS(2840), - [anon_sym_or2] = ACTIONS(2840), - [anon_sym_not_DASHin2] = ACTIONS(2840), - [anon_sym_has2] = ACTIONS(2840), - [anon_sym_not_DASHhas2] = ACTIONS(2840), - [anon_sym_starts_DASHwith2] = ACTIONS(2840), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2840), - [anon_sym_ends_DASHwith2] = ACTIONS(2840), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2840), - [anon_sym_EQ_EQ2] = ACTIONS(2840), - [anon_sym_BANG_EQ2] = ACTIONS(2840), - [anon_sym_LT2] = ACTIONS(2842), - [anon_sym_LT_EQ2] = ACTIONS(2840), - [anon_sym_GT_EQ2] = ACTIONS(2840), - [anon_sym_EQ_TILDE2] = ACTIONS(2840), - [anon_sym_BANG_TILDE2] = ACTIONS(2840), - [anon_sym_like2] = ACTIONS(2840), - [anon_sym_not_DASHlike2] = ACTIONS(2840), - [anon_sym_STAR_STAR2] = ACTIONS(2891), - [anon_sym_PLUS_PLUS2] = ACTIONS(2891), - [anon_sym_SLASH2] = ACTIONS(2885), - [anon_sym_mod2] = ACTIONS(2893), - [anon_sym_SLASH_SLASH2] = ACTIONS(2893), - [anon_sym_PLUS2] = ACTIONS(2895), - [anon_sym_bit_DASHshl2] = ACTIONS(2840), - [anon_sym_bit_DASHshr2] = ACTIONS(2840), - [anon_sym_bit_DASHand2] = ACTIONS(2840), - [anon_sym_bit_DASHxor2] = ACTIONS(2840), - [anon_sym_bit_DASHor2] = ACTIONS(2840), - [anon_sym_err_GT] = ACTIONS(2842), - [anon_sym_out_GT] = ACTIONS(2842), - [anon_sym_e_GT] = ACTIONS(2842), - [anon_sym_o_GT] = ACTIONS(2842), - [anon_sym_err_PLUSout_GT] = ACTIONS(2842), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2842), - [anon_sym_o_PLUSe_GT] = ACTIONS(2842), - [anon_sym_e_PLUSo_GT] = ACTIONS(2842), - [anon_sym_err_GT_GT] = ACTIONS(2840), - [anon_sym_out_GT_GT] = ACTIONS(2840), - [anon_sym_e_GT_GT] = ACTIONS(2840), - [anon_sym_o_GT_GT] = ACTIONS(2840), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2840), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2840), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2840), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2840), + [anon_sym_in] = ACTIONS(2874), + [sym__newline] = ACTIONS(2966), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2879), + [anon_sym_DASH2] = ACTIONS(2881), + [anon_sym_STAR2] = ACTIONS(2883), + [anon_sym_and2] = ACTIONS(2968), + [anon_sym_xor2] = ACTIONS(2970), + [anon_sym_or2] = ACTIONS(2762), + [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(2885), + [anon_sym_BANG_EQ2] = ACTIONS(2885), + [anon_sym_LT2] = ACTIONS(2879), + [anon_sym_LT_EQ2] = ACTIONS(2885), + [anon_sym_GT_EQ2] = ACTIONS(2885), + [anon_sym_EQ_TILDE2] = ACTIONS(2887), + [anon_sym_BANG_TILDE2] = ACTIONS(2887), + [anon_sym_like2] = ACTIONS(2887), + [anon_sym_not_DASHlike2] = ACTIONS(2887), + [anon_sym_STAR_STAR2] = ACTIONS(2889), + [anon_sym_PLUS_PLUS2] = ACTIONS(2889), + [anon_sym_SLASH2] = ACTIONS(2883), + [anon_sym_mod2] = ACTIONS(2891), + [anon_sym_SLASH_SLASH2] = ACTIONS(2891), + [anon_sym_PLUS2] = ACTIONS(2893), + [anon_sym_bit_DASHshl2] = ACTIONS(2895), + [anon_sym_bit_DASHshr2] = ACTIONS(2895), + [anon_sym_bit_DASHand2] = ACTIONS(2897), + [anon_sym_bit_DASHxor2] = ACTIONS(2899), + [anon_sym_bit_DASHor2] = ACTIONS(2972), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), [anon_sym_POUND] = ACTIONS(3), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 17, + [0] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2996), 1, - anon_sym_DASH2, - ACTIONS(3008), 1, - anon_sym_PLUS2, - ACTIONS(3012), 1, - anon_sym_bit_DASHand2, - ACTIONS(3014), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3016), 1, - anon_sym_bit_DASHor2, STATE(1289), 1, sym_comment, - ACTIONS(2994), 2, + ACTIONS(2253), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2998), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3004), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3006), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3010), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3000), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3002), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2702), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -143225,17 +143143,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(2992), 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(2700), 23, + ACTIONS(2251), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -143247,9 +143157,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, @@ -143258,12 +143193,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99] = 4, + [73] = 7, ACTIONS(3), 1, anon_sym_POUND, STATE(1290), 1, sym_comment, - ACTIONS(2461), 13, + STATE(1309), 1, + aux_sym__block_body_repeat1, + ACTIONS(155), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3000), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2996), 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(2998), 47, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_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_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, + anon_sym_PERCENT, + [152] = 39, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3004), 1, + anon_sym_null, + ACTIONS(3008), 1, + sym__newline, + ACTIONS(3010), 1, + anon_sym_LBRACK, + ACTIONS(3012), 1, + anon_sym_LPAREN, + ACTIONS(3014), 1, + anon_sym_DOLLAR, + ACTIONS(3016), 1, + anon_sym_LBRACE, + ACTIONS(3018), 1, + anon_sym_DOT_DOT, + ACTIONS(3022), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3024), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3030), 1, + anon_sym_0b, + ACTIONS(3034), 1, + sym_val_date, + ACTIONS(3036), 1, + anon_sym_DQUOTE, + ACTIONS(3038), 1, + anon_sym_SQUOTE, + ACTIONS(3040), 1, + anon_sym_BQUOTE, + ACTIONS(3042), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3044), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3046), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3048), 1, + sym_raw_string_begin, + STATE(1291), 1, + sym_comment, + STATE(1330), 1, + aux_sym__repeat_newline, + STATE(2498), 1, + sym__val_number_decimal, + STATE(2968), 1, + sym_val_variable, + STATE(3038), 1, + sym_expr_parenthesized, + STATE(3088), 1, + sym__val_number, + STATE(3127), 1, + sym_val_bool, + STATE(3137), 1, + sym__unquoted_in_record, + STATE(3253), 1, + sym__inter_double_quotes, + STATE(3254), 1, + sym__inter_single_quotes, + ACTIONS(3002), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3020), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3026), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3032), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4730), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3006), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3028), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3506), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2583), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3086), 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, + [295] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3050), 1, + sym__newline, + STATE(1292), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(1943), 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(1938), 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, + anon_sym_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, + anon_sym_PERCENT, + [370] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1293), 1, + sym_comment, + ACTIONS(2316), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143277,7 +143458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2459), 49, + ACTIONS(2314), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143327,12 +143508,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [172] = 4, + [443] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1291), 1, + STATE(1294), 1, sym_comment, - ACTIONS(2465), 13, + ACTIONS(2101), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143346,7 +143527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2463), 49, + ACTIONS(2099), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143396,114 +143577,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [245] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(159), 1, - anon_sym_LBRACK, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(167), 1, - anon_sym_LBRACE, - ACTIONS(193), 1, - anon_sym_0b, - ACTIONS(197), 1, - sym_val_date, - ACTIONS(199), 1, - anon_sym_DQUOTE, - ACTIONS(201), 1, - anon_sym_SQUOTE, - ACTIONS(203), 1, - anon_sym_BQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(207), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(215), 1, - sym_raw_string_begin, - ACTIONS(291), 1, - anon_sym_DASH2, - ACTIONS(1288), 1, - anon_sym_DOLLAR, - ACTIONS(2560), 1, - aux_sym_expr_unary_token1, - ACTIONS(2564), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2566), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2732), 1, - anon_sym_null, - ACTIONS(3018), 1, - anon_sym_DOT_DOT, - STATE(726), 1, - sym__val_number, - STATE(766), 1, - sym__inter_single_quotes, - STATE(767), 1, - sym__inter_double_quotes, - STATE(980), 1, - sym__expr_unary_minus, - STATE(1292), 1, - sym_comment, - STATE(1919), 1, - sym__val_number_decimal, - STATE(1975), 1, - sym_val_variable, - STATE(1982), 1, - sym_expr_parenthesized, - STATE(2260), 1, - sym__expr_binary_expression, - STATE(5327), 1, - sym__expression, - ACTIONS(195), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2552), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2568), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3020), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(436), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(979), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(191), 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(969), 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, - [384] = 4, + [516] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1293), 1, + STATE(1295), 1, sym_comment, - ACTIONS(2706), 13, + ACTIONS(2273), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143517,7 +143596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2704), 49, + ACTIONS(2271), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143567,12 +143646,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [457] = 4, + [589] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1294), 1, + STATE(1296), 1, sym_comment, - ACTIONS(1911), 13, + ACTIONS(2642), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143586,7 +143665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1909), 49, + ACTIONS(2640), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143636,12 +143715,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [530] = 4, + [662] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1295), 1, + STATE(1297), 1, sym_comment, - ACTIONS(2407), 13, + ACTIONS(2148), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143655,7 +143734,7 @@ 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, + ACTIONS(2146), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143705,12 +143784,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [603] = 4, + [735] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1296), 1, + STATE(1298), 1, sym_comment, - ACTIONS(2433), 13, + ACTIONS(2584), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143724,7 +143803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2431), 49, + ACTIONS(2582), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143774,116 +143853,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [676] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3024), 1, - anon_sym_null, - ACTIONS(3028), 1, - sym__newline, - ACTIONS(3030), 1, - anon_sym_LBRACK, - ACTIONS(3032), 1, - anon_sym_LPAREN, - ACTIONS(3034), 1, - anon_sym_DOLLAR, - ACTIONS(3036), 1, - anon_sym_LBRACE, - ACTIONS(3038), 1, - anon_sym_DOT_DOT, - ACTIONS(3042), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3044), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3050), 1, - anon_sym_0b, - ACTIONS(3054), 1, - sym_val_date, - ACTIONS(3056), 1, - anon_sym_DQUOTE, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - ACTIONS(3062), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3064), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3068), 1, - sym_raw_string_begin, - STATE(1297), 1, - sym_comment, - STATE(2273), 1, - aux_sym__repeat_newline, - STATE(2507), 1, - sym__val_number_decimal, - STATE(2941), 1, - sym_expr_parenthesized, - STATE(2976), 1, - sym_val_variable, - STATE(3099), 1, - sym_val_bool, - STATE(3103), 1, - sym__unquoted_in_record, - STATE(3177), 1, - sym__val_number, - STATE(3230), 1, - sym__inter_single_quotes, - STATE(3231), 1, - sym__inter_double_quotes, - ACTIONS(3022), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3040), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3046), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3052), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4778), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3026), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3048), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3490), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2599), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3176), 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, - [819] = 4, + [808] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1298), 1, + STATE(1299), 1, sym_comment, - ACTIONS(2437), 13, + ACTIONS(2156), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143897,7 +143872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2435), 49, + ACTIONS(2154), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143947,116 +143922,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [892] = 39, + [881] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3024), 1, - anon_sym_null, - ACTIONS(3028), 1, - sym__newline, - ACTIONS(3030), 1, - anon_sym_LBRACK, - ACTIONS(3032), 1, - anon_sym_LPAREN, - ACTIONS(3034), 1, - anon_sym_DOLLAR, - ACTIONS(3036), 1, - anon_sym_LBRACE, - ACTIONS(3038), 1, - anon_sym_DOT_DOT, - ACTIONS(3042), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3044), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3050), 1, - anon_sym_0b, - ACTIONS(3054), 1, - sym_val_date, - ACTIONS(3056), 1, - anon_sym_DQUOTE, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - ACTIONS(3062), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3064), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3068), 1, - sym_raw_string_begin, - STATE(1299), 1, + ACTIONS(3057), 1, + anon_sym_DASH2, + ACTIONS(3069), 1, + anon_sym_PLUS2, + ACTIONS(3073), 1, + anon_sym_bit_DASHand2, + ACTIONS(3075), 1, + anon_sym_bit_DASHxor2, + STATE(1300), 1, sym_comment, - STATE(1351), 1, - aux_sym__repeat_newline, - STATE(2507), 1, - sym__val_number_decimal, - STATE(2941), 1, - sym_expr_parenthesized, - STATE(2976), 1, - sym_val_variable, - STATE(3099), 1, - sym_val_bool, - STATE(3103), 1, - sym__unquoted_in_record, - STATE(3177), 1, - sym__val_number, - STATE(3230), 1, - sym__inter_single_quotes, - STATE(3231), 1, - sym__inter_double_quotes, - ACTIONS(3022), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3040), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3046), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3052), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4778), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3026), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3048), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3490), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2599), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3176), 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, - [1035] = 4, + ACTIONS(3055), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3059), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3065), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3067), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3071), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3061), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3063), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2626), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(3053), 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(2624), 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, + [978] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1300), 1, + STATE(1301), 1, sym_comment, - ACTIONS(2441), 13, + ACTIONS(2156), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144070,7 +144022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2439), 49, + ACTIONS(2154), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144120,12 +144072,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1108] = 4, + [1051] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(1301), 1, + ACTIONS(3057), 1, + anon_sym_DASH2, + ACTIONS(3069), 1, + anon_sym_PLUS2, + ACTIONS(3073), 1, + anon_sym_bit_DASHand2, + STATE(1302), 1, + sym_comment, + ACTIONS(3055), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3059), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3065), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3067), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3071), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3061), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3063), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2626), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(3053), 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(2624), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [1146] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1303), 1, sym_comment, - ACTIONS(2445), 13, + ACTIONS(2156), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144139,7 +144171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2443), 49, + ACTIONS(2154), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144189,12 +144221,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1181] = 4, + [1219] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1302), 1, + STATE(1304), 1, sym_comment, - ACTIONS(2449), 13, + ACTIONS(2483), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144208,7 +144240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2447), 49, + ACTIONS(2481), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144258,18 +144290,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1254] = 6, + [1292] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(1303), 1, + ACTIONS(3057), 1, + anon_sym_DASH2, + ACTIONS(3069), 1, + anon_sym_PLUS2, + STATE(1305), 1, sym_comment, - ACTIONS(2148), 5, + ACTIONS(3055), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3059), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2267), 8, + ACTIONS(3065), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3067), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3071), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3061), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3063), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2626), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -144278,7 +144333,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2265), 20, + ACTIONS(3053), 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(2624), 26, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -144291,6 +144355,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_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, @@ -144299,42 +144369,12 @@ static const 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(2146), 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, - [1331] = 4, + [1385] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1304), 1, + STATE(1306), 1, sym_comment, - ACTIONS(2453), 13, + ACTIONS(2156), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144348,7 +144388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2451), 49, + ACTIONS(2154), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144398,17 +144438,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, - [1404] = 4, + [1458] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1305), 1, + ACTIONS(3057), 1, + anon_sym_DASH2, + ACTIONS(3069), 1, + anon_sym_PLUS2, + STATE(1307), 1, sym_comment, - ACTIONS(2662), 13, - anon_sym_GT2, + ACTIONS(3059), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(3065), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3067), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2626), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -144417,7 +144467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2660), 49, + ACTIONS(2624), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144431,7 +144481,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, @@ -144450,10 +144499,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, @@ -144467,12 +144512,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1477] = 4, + [1541] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1306), 1, + STATE(1308), 1, sym_comment, - ACTIONS(2383), 13, + ACTIONS(2156), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144486,7 +144531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2381), 49, + ACTIONS(2154), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144536,12 +144581,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1550] = 4, + [1614] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1307), 1, + ACTIONS(3081), 2, + sym__newline, + anon_sym_SEMI, + STATE(1309), 2, sym_comment, - ACTIONS(2678), 13, + aux_sym__block_body_repeat1, + ACTIONS(3077), 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(3079), 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_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + anon_sym_PERCENT, + [1689] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1310), 1, + sym_comment, + ACTIONS(2626), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144555,7 +144670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2676), 49, + ACTIONS(2624), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144605,10 +144720,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1623] = 4, + [1762] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1308), 1, + STATE(1311), 1, sym_comment, ACTIONS(2156), 13, anon_sym_GT2, @@ -144674,17 +144789,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, - [1696] = 4, + [1835] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(1309), 1, + ACTIONS(3057), 1, + anon_sym_DASH2, + ACTIONS(3069), 1, + anon_sym_PLUS2, + STATE(1312), 1, sym_comment, - ACTIONS(2425), 13, + ACTIONS(3055), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3059), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(3065), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3067), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3071), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3061), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2626), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -144693,9 +144827,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(2423), 49, - ts_builtin_sym_end, + ACTIONS(3053), 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(2624), 30, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -144707,31 +144849,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, @@ -144743,12 +144867,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1769] = 4, + [1926] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1310), 1, + STATE(1313), 1, sym_comment, - ACTIONS(2152), 13, + ACTIONS(2156), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144762,7 +144886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2150), 49, + ACTIONS(2154), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144812,43 +144936,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1842] = 15, + [1999] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2996), 1, + ACTIONS(159), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(167), 1, + anon_sym_LBRACE, + ACTIONS(193), 1, + anon_sym_0b, + ACTIONS(197), 1, + sym_val_date, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, + anon_sym_BQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(207), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(215), 1, + sym_raw_string_begin, + ACTIONS(291), 1, anon_sym_DASH2, - ACTIONS(3008), 1, + ACTIONS(1292), 1, + anon_sym_DOLLAR, + ACTIONS(2509), 1, + aux_sym_expr_unary_token1, + ACTIONS(2513), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2515), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2732), 1, + anon_sym_null, + ACTIONS(3084), 1, + anon_sym_DOT_DOT, + STATE(705), 1, + sym__val_number, + STATE(752), 1, + sym__inter_single_quotes, + STATE(753), 1, + sym__inter_double_quotes, + STATE(937), 1, + sym__expr_unary_minus, + STATE(1314), 1, + sym_comment, + STATE(1918), 1, + sym__val_number_decimal, + STATE(1983), 1, + sym_expr_parenthesized, + STATE(2006), 1, + sym_val_variable, + STATE(2264), 1, + sym__expr_binary_expression, + STATE(5478), 1, + sym__expression, + ACTIONS(195), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2501), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2517), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3086), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(432), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(938), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(191), 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(944), 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, + [2138] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3057), 1, + anon_sym_DASH2, + ACTIONS(3069), 1, anon_sym_PLUS2, - ACTIONS(3012), 1, + ACTIONS(3073), 1, anon_sym_bit_DASHand2, - STATE(1311), 1, + ACTIONS(3075), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3088), 1, + anon_sym_and2, + ACTIONS(3090), 1, + anon_sym_xor2, + ACTIONS(3092), 1, + anon_sym_bit_DASHor2, + STATE(1315), 1, sym_comment, - ACTIONS(2994), 2, + ACTIONS(3055), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2998), 2, + ACTIONS(3059), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3004), 2, + ACTIONS(3065), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3006), 2, + ACTIONS(3067), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3010), 2, + ACTIONS(3071), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3000), 4, + ACTIONS(3061), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3002), 4, + ACTIONS(3063), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2702), 8, + ACTIONS(2626), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -144857,7 +145091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2992), 8, + ACTIONS(3053), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -144866,7 +145100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2700), 25, + ACTIONS(2624), 21, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -144879,11 +145113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -144892,12 +145122,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1937] = 4, + [2241] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1312), 1, + STATE(1316), 1, sym_comment, - ACTIONS(2152), 13, + ACTIONS(2156), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144911,7 +145141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2150), 49, + ACTIONS(2154), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144961,45 +145191,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2010] = 16, + [2314] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2996), 1, + ACTIONS(3057), 1, anon_sym_DASH2, - ACTIONS(3008), 1, + ACTIONS(3069), 1, anon_sym_PLUS2, - ACTIONS(3012), 1, + ACTIONS(3073), 1, anon_sym_bit_DASHand2, - ACTIONS(3014), 1, + ACTIONS(3075), 1, anon_sym_bit_DASHxor2, - STATE(1313), 1, + ACTIONS(3088), 1, + anon_sym_and2, + ACTIONS(3092), 1, + anon_sym_bit_DASHor2, + STATE(1317), 1, sym_comment, - ACTIONS(2994), 2, + ACTIONS(3055), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2998), 2, + ACTIONS(3059), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3004), 2, + ACTIONS(3065), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3006), 2, + ACTIONS(3067), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3010), 2, + ACTIONS(3071), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3000), 4, + ACTIONS(3061), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3002), 4, + ACTIONS(3063), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2702), 8, + ACTIONS(2626), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -145008,7 +145242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2992), 8, + ACTIONS(3053), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -145017,7 +145251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2700), 24, + ACTIONS(2624), 22, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -145030,10 +145264,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -145042,12 +145274,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2107] = 4, + [2415] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1314), 1, + STATE(1318), 1, sym_comment, - ACTIONS(2152), 13, + ACTIONS(2156), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145061,7 +145293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2150), 49, + ACTIONS(2154), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145111,156 +145343,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, - [2180] = 4, + [2488] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(1315), 1, + ACTIONS(3057), 1, + anon_sym_DASH2, + ACTIONS(3069), 1, + anon_sym_PLUS2, + ACTIONS(3073), 1, + anon_sym_bit_DASHand2, + ACTIONS(3075), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3092), 1, + anon_sym_bit_DASHor2, + STATE(1319), 1, sym_comment, - ACTIONS(2152), 13, + ACTIONS(3055), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3059), 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(2150), 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(3065), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3067), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3071), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3061), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(3063), 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, - [2253] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3074), 2, - sym__newline, - anon_sym_SEMI, - STATE(1316), 2, - sym_comment, - aux_sym__block_body_repeat1, - ACTIONS(3070), 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(3072), 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_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - anon_sym_PERCENT, - [2328] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1317), 1, - sym_comment, - ACTIONS(2598), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2626), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -145269,24 +145392,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2596), 49, - ts_builtin_sym_end, + ACTIONS(3053), 8, anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -145294,66 +145401,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_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_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, - [2401] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2996), 1, - anon_sym_DASH2, - ACTIONS(3008), 1, - anon_sym_PLUS2, - STATE(1318), 1, - sym_comment, - ACTIONS(2998), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3004), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3006), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3010), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2702), 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(2700), 42, + ACTIONS(2624), 23, ts_builtin_sym_end, - anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -145368,24 +145417,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, - 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, @@ -145394,12 +145425,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2486] = 4, + [2587] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1319), 1, + STATE(1320), 1, sym_comment, - ACTIONS(2106), 13, + ACTIONS(2156), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145413,7 +145444,7 @@ 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, + ACTIONS(2154), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145463,12 +145494,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, - [2559] = 4, + [2660] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1320), 1, + STATE(1321), 1, sym_comment, - ACTIONS(2168), 13, + ACTIONS(3065), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2626), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145482,7 +145516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2166), 49, + ACTIONS(2624), 47, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145515,8 +145549,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, @@ -145532,12 +145564,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2632] = 4, + [2735] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1321), 1, + STATE(1322), 1, sym_comment, - ACTIONS(2152), 13, + ACTIONS(2156), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145551,7 +145583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2150), 49, + ACTIONS(2154), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145601,16 +145633,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, - [2705] = 4, + [2808] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1322), 1, + STATE(1323), 1, sym_comment, - ACTIONS(2176), 13, - anon_sym_GT2, + ACTIONS(3059), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(3065), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3067), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2626), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -145620,7 +145659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2174), 49, + ACTIONS(2624), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145653,10 +145692,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, @@ -145670,12 +145705,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2778] = 4, + [2887] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1323), 1, + STATE(1324), 1, sym_comment, - ACTIONS(2698), 13, + ACTIONS(2156), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145689,7 +145724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2696), 49, + ACTIONS(2154), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145739,24 +145774,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2851] = 7, + [2960] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1324), 1, + ACTIONS(3057), 1, + anon_sym_DASH2, + ACTIONS(3069), 1, + anon_sym_PLUS2, + STATE(1325), 1, sym_comment, - ACTIONS(2998), 2, + ACTIONS(3059), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3004), 2, + ACTIONS(3065), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3006), 2, + ACTIONS(3067), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2702), 11, + ACTIONS(3071), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2626), 10, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -145765,7 +145806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2700), 45, + ACTIONS(2624), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145779,7 +145820,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, @@ -145798,8 +145838,6 @@ 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, @@ -145811,12 +145849,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2930] = 4, + [3045] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1325), 1, + STATE(1326), 1, sym_comment, - ACTIONS(2188), 13, + ACTIONS(2156), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145830,7 +145868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2186), 49, + ACTIONS(2154), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145880,17 +145918,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, - [3003] = 4, + [3118] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(1326), 1, + ACTIONS(3057), 1, + anon_sym_DASH2, + ACTIONS(3069), 1, + anon_sym_PLUS2, + STATE(1327), 1, sym_comment, - ACTIONS(2152), 13, + ACTIONS(3055), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3059), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(3065), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3067), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3071), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3061), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2626), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -145899,7 +145956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2150), 49, + ACTIONS(2624), 38, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145913,7 +145970,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, @@ -145924,20 +145980,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, @@ -145949,12 +145995,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3076] = 4, + [3207] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1327), 1, + STATE(1328), 1, sym_comment, - ACTIONS(1903), 13, + ACTIONS(2237), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145968,7 +146014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1901), 49, + ACTIONS(2233), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146018,15 +146064,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3149] = 5, + [3280] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1328), 1, + STATE(1329), 1, sym_comment, - ACTIONS(3004), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2702), 13, + ACTIONS(2684), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -146040,7 +146083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2700), 47, + ACTIONS(2682), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146073,6 +146116,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, @@ -146088,98 +146133,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, - [3224] = 39, + [3353] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3024), 1, + ACTIONS(3004), 1, anon_sym_null, - ACTIONS(3028), 1, + ACTIONS(3008), 1, sym__newline, - ACTIONS(3030), 1, + ACTIONS(3010), 1, anon_sym_LBRACK, - ACTIONS(3032), 1, + ACTIONS(3012), 1, anon_sym_LPAREN, - ACTIONS(3034), 1, + ACTIONS(3014), 1, anon_sym_DOLLAR, - ACTIONS(3036), 1, + ACTIONS(3016), 1, anon_sym_LBRACE, - ACTIONS(3038), 1, + ACTIONS(3018), 1, anon_sym_DOT_DOT, - ACTIONS(3042), 1, + ACTIONS(3022), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3044), 1, + ACTIONS(3024), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3050), 1, + ACTIONS(3030), 1, anon_sym_0b, - ACTIONS(3054), 1, + ACTIONS(3034), 1, sym_val_date, - ACTIONS(3056), 1, + ACTIONS(3036), 1, anon_sym_DQUOTE, - ACTIONS(3058), 1, + ACTIONS(3038), 1, anon_sym_SQUOTE, - ACTIONS(3060), 1, + ACTIONS(3040), 1, anon_sym_BQUOTE, - ACTIONS(3062), 1, + ACTIONS(3042), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3064), 1, + ACTIONS(3044), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3066), 1, + ACTIONS(3046), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(3068), 1, + ACTIONS(3048), 1, sym_raw_string_begin, - STATE(1297), 1, - aux_sym__repeat_newline, - STATE(1329), 1, + STATE(1330), 1, sym_comment, - STATE(2507), 1, + STATE(2268), 1, + aux_sym__repeat_newline, + STATE(2498), 1, sym__val_number_decimal, - STATE(2976), 1, + STATE(2968), 1, sym_val_variable, - STATE(2987), 1, + STATE(3029), 1, sym_expr_parenthesized, - STATE(3099), 1, - sym_val_bool, - STATE(3177), 1, + STATE(3088), 1, sym__val_number, - STATE(3227), 1, + STATE(3127), 1, + sym_val_bool, + STATE(3151), 1, sym__unquoted_in_record, - STATE(3230), 1, - sym__inter_single_quotes, - STATE(3231), 1, + STATE(3253), 1, sym__inter_double_quotes, - ACTIONS(3022), 2, + STATE(3254), 1, + sym__inter_single_quotes, + ACTIONS(3002), 2, anon_sym_true, anon_sym_false, - ACTIONS(3040), 2, + ACTIONS(3020), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3046), 2, + ACTIONS(3026), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3052), 2, + ACTIONS(3032), 2, anon_sym_0o, anon_sym_0x, - STATE(4778), 2, + STATE(4730), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3026), 3, + ACTIONS(3006), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3048), 3, + ACTIONS(3028), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3450), 3, + STATE(3476), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(2599), 4, + STATE(2583), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3176), 12, + STATE(3086), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -146192,12 +146237,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [3367] = 4, + [3496] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1330), 1, + STATE(1331), 1, sym_comment, - ACTIONS(2116), 13, + ACTIONS(2590), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -146211,7 +146256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2114), 49, + ACTIONS(2588), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146261,12 +146306,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3440] = 4, + [3569] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1331), 1, + STATE(1332), 1, sym_comment, - ACTIONS(2152), 13, + ACTIONS(2594), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -146280,7 +146325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2150), 49, + ACTIONS(2592), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146330,12 +146375,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3513] = 4, + [3642] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1332), 1, + STATE(1333), 1, sym_comment, - ACTIONS(2594), 13, + ACTIONS(2443), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -146349,7 +146394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2592), 49, + ACTIONS(2441), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146399,12 +146444,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3586] = 4, + [3715] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1333), 1, + STATE(1334), 1, sym_comment, - ACTIONS(2415), 13, + ACTIONS(1896), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -146418,7 +146463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2413), 49, + ACTIONS(1894), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146468,12 +146513,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, - [3659] = 4, + [3788] = 39, ACTIONS(3), 1, anon_sym_POUND, - STATE(1334), 1, + ACTIONS(3004), 1, + anon_sym_null, + ACTIONS(3008), 1, + sym__newline, + ACTIONS(3010), 1, + anon_sym_LBRACK, + ACTIONS(3012), 1, + anon_sym_LPAREN, + ACTIONS(3014), 1, + anon_sym_DOLLAR, + ACTIONS(3016), 1, + anon_sym_LBRACE, + ACTIONS(3018), 1, + anon_sym_DOT_DOT, + ACTIONS(3022), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3024), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3030), 1, + anon_sym_0b, + ACTIONS(3034), 1, + sym_val_date, + ACTIONS(3036), 1, + anon_sym_DQUOTE, + ACTIONS(3038), 1, + anon_sym_SQUOTE, + ACTIONS(3040), 1, + anon_sym_BQUOTE, + ACTIONS(3042), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3044), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3046), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3048), 1, + sym_raw_string_begin, + STATE(1335), 1, sym_comment, - ACTIONS(2670), 13, + STATE(2268), 1, + aux_sym__repeat_newline, + STATE(2498), 1, + sym__val_number_decimal, + STATE(2941), 1, + sym_expr_parenthesized, + STATE(2968), 1, + sym_val_variable, + STATE(3088), 1, + sym__val_number, + STATE(3127), 1, + sym_val_bool, + STATE(3174), 1, + sym__unquoted_in_record, + STATE(3253), 1, + sym__inter_double_quotes, + STATE(3254), 1, + sym__inter_single_quotes, + ACTIONS(3002), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3020), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3026), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3032), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4730), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3006), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3028), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3461), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2583), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3086), 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, + [3931] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1336), 1, + sym_comment, + ACTIONS(2602), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -146487,7 +146636,7 @@ 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(2600), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146537,114 +146686,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3732] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(159), 1, - anon_sym_LBRACK, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(167), 1, - anon_sym_LBRACE, - ACTIONS(171), 1, - anon_sym_DOT_DOT, - ACTIONS(175), 1, - aux_sym_expr_unary_token1, - ACTIONS(193), 1, - anon_sym_0b, - ACTIONS(197), 1, - sym_val_date, - ACTIONS(199), 1, - anon_sym_DQUOTE, - ACTIONS(201), 1, - anon_sym_SQUOTE, - ACTIONS(203), 1, - anon_sym_BQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(207), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(215), 1, - sym_raw_string_begin, - ACTIONS(291), 1, - anon_sym_DASH2, - ACTIONS(1288), 1, - anon_sym_DOLLAR, - ACTIONS(1981), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1983), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2732), 1, - anon_sym_null, - STATE(722), 1, - sym_expr_parenthesized, - STATE(726), 1, - sym__val_number, - STATE(730), 1, - sym_val_variable, - STATE(766), 1, - sym__inter_single_quotes, - STATE(767), 1, - sym__inter_double_quotes, - STATE(980), 1, - sym__expr_unary_minus, - STATE(1335), 1, - sym_comment, - STATE(1878), 1, - sym__val_number_decimal, - STATE(2261), 1, - sym__expr_binary_expression, - STATE(4932), 1, - sym__expression, - ACTIONS(181), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(195), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1949), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1985), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(436), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(979), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(191), 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(969), 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, - [3871] = 4, + [4004] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1336), 1, + STATE(1337), 1, sym_comment, - ACTIONS(2582), 13, + ACTIONS(2618), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -146658,7 +146705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2580), 49, + ACTIONS(2616), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146708,12 +146755,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3944] = 4, + [4077] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1337), 1, + STATE(1338), 1, sym_comment, - ACTIONS(2411), 13, + ACTIONS(1610), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -146727,7 +146774,7 @@ 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(1736), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146777,82 +146824,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4017] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3077), 1, - sym__newline, - STATE(1338), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1893), 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(1888), 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, - anon_sym_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, - anon_sym_PERCENT, - [4092] = 4, + [4150] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1339), 1, sym_comment, - ACTIONS(811), 13, + ACTIONS(2479), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -146866,7 +146843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(914), 49, + ACTIONS(2477), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146916,12 +146893,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4165] = 4, + [4223] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1340), 1, sym_comment, - ACTIONS(2658), 13, + ACTIONS(811), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -146935,7 +146912,7 @@ 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(910), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -146985,12 +146962,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4238] = 4, + [4296] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1341), 1, sym_comment, - ACTIONS(2666), 13, + ACTIONS(1906), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -147004,7 +146981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2664), 49, + ACTIONS(1904), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -147054,17 +147031,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4311] = 4, + [4369] = 39, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3004), 1, + anon_sym_null, + ACTIONS(3008), 1, + sym__newline, + ACTIONS(3010), 1, + anon_sym_LBRACK, + ACTIONS(3012), 1, + anon_sym_LPAREN, + ACTIONS(3014), 1, + anon_sym_DOLLAR, + ACTIONS(3016), 1, + anon_sym_LBRACE, + ACTIONS(3018), 1, + anon_sym_DOT_DOT, + ACTIONS(3022), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3024), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3030), 1, + anon_sym_0b, + ACTIONS(3034), 1, + sym_val_date, + ACTIONS(3036), 1, + anon_sym_DQUOTE, + ACTIONS(3038), 1, + anon_sym_SQUOTE, + ACTIONS(3040), 1, + anon_sym_BQUOTE, + ACTIONS(3042), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3044), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3046), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3048), 1, + sym_raw_string_begin, + STATE(1335), 1, + aux_sym__repeat_newline, STATE(1342), 1, sym_comment, - ACTIONS(2152), 13, + STATE(2498), 1, + sym__val_number_decimal, + STATE(2968), 1, + sym_val_variable, + STATE(3029), 1, + sym_expr_parenthesized, + STATE(3088), 1, + sym__val_number, + STATE(3127), 1, + sym_val_bool, + STATE(3151), 1, + sym__unquoted_in_record, + STATE(3253), 1, + sym__inter_double_quotes, + STATE(3254), 1, + sym__inter_single_quotes, + ACTIONS(3002), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3020), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3026), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3032), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4730), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3006), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3028), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3476), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2583), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3086), 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, + [4512] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1343), 1, + sym_comment, + ACTIONS(2237), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(2239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -147073,7 +147155,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2150), 49, + ACTIONS(2235), 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(2233), 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, + [4589] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1344), 1, + sym_comment, + ACTIONS(2622), 13, + anon_sym_GT2, + 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(2620), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -147123,12 +147275,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4384] = 4, + [4662] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1343), 1, + STATE(1345), 1, sym_comment, - ACTIONS(2387), 13, + ACTIONS(2606), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -147142,7 +147294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2385), 49, + ACTIONS(2604), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -147192,49 +147344,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, - [4457] = 18, + [4735] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2996), 1, - anon_sym_DASH2, - ACTIONS(3008), 1, - anon_sym_PLUS2, - ACTIONS(3012), 1, - anon_sym_bit_DASHand2, - ACTIONS(3014), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3016), 1, - anon_sym_bit_DASHor2, - ACTIONS(3080), 1, - anon_sym_and2, - STATE(1344), 1, + STATE(1346), 1, sym_comment, - ACTIONS(2994), 2, + ACTIONS(2127), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2998), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3004), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3006), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3010), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3000), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3002), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2702), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -147243,17 +147363,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(2992), 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(2700), 22, + ACTIONS(2125), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -147265,8 +147377,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, @@ -147275,12 +147413,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4558] = 4, + [4808] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1345), 1, + STATE(1347), 1, sym_comment, - ACTIONS(2279), 13, + ACTIONS(2680), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -147294,7 +147432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2277), 49, + ACTIONS(2678), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -147344,12 +147482,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4631] = 4, + [4881] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1346), 1, + STATE(1348), 1, sym_comment, - ACTIONS(2152), 13, + ACTIONS(2231), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -147363,7 +147501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2150), 49, + ACTIONS(2229), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -147413,51 +147551,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, - [4704] = 19, + [4954] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2996), 1, - anon_sym_DASH2, - ACTIONS(3008), 1, - anon_sym_PLUS2, - ACTIONS(3012), 1, - anon_sym_bit_DASHand2, - ACTIONS(3014), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3016), 1, - anon_sym_bit_DASHor2, - ACTIONS(3080), 1, - anon_sym_and2, - ACTIONS(3082), 1, - anon_sym_xor2, - STATE(1347), 1, + STATE(1349), 1, sym_comment, - ACTIONS(2994), 2, + ACTIONS(2555), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2998), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3004), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3006), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3010), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3000), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3002), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2702), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -147466,17 +147570,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(2992), 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(2700), 21, + ACTIONS(2553), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -147488,7 +147584,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, @@ -147497,12 +147620,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4807] = 4, + [5027] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1348), 1, + STATE(1350), 1, sym_comment, - ACTIONS(2152), 13, + ACTIONS(2714), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -147516,7 +147639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2150), 49, + ACTIONS(2712), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -147566,36 +147689,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, - [4880] = 13, + [5100] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2996), 1, - anon_sym_DASH2, - ACTIONS(3008), 1, - anon_sym_PLUS2, - STATE(1349), 1, + STATE(1351), 1, sym_comment, - ACTIONS(2994), 2, + ACTIONS(2487), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2998), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3004), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3006), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3010), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3000), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2702), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -147604,17 +147708,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(2992), 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(2700), 30, + ACTIONS(2485), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -147626,13 +147722,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, @@ -147644,188 +147758,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4971] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1316), 1, - aux_sym__block_body_repeat1, - STATE(1350), 1, - sym_comment, - ACTIONS(155), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3088), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3084), 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(3086), 47, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_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_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, - anon_sym_PERCENT, - [5050] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3024), 1, - anon_sym_null, - ACTIONS(3028), 1, - sym__newline, - ACTIONS(3030), 1, - anon_sym_LBRACK, - ACTIONS(3032), 1, - anon_sym_LPAREN, - ACTIONS(3034), 1, - anon_sym_DOLLAR, - ACTIONS(3036), 1, - anon_sym_LBRACE, - ACTIONS(3038), 1, - anon_sym_DOT_DOT, - ACTIONS(3042), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3044), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3050), 1, - anon_sym_0b, - ACTIONS(3054), 1, - sym_val_date, - ACTIONS(3056), 1, - anon_sym_DQUOTE, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - ACTIONS(3062), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3064), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3068), 1, - sym_raw_string_begin, - STATE(1351), 1, - sym_comment, - STATE(2273), 1, - aux_sym__repeat_newline, - STATE(2507), 1, - sym__val_number_decimal, - STATE(2970), 1, - sym_expr_parenthesized, - STATE(2976), 1, - sym_val_variable, - STATE(3099), 1, - sym_val_bool, - STATE(3121), 1, - sym__unquoted_in_record, - STATE(3177), 1, - sym__val_number, - STATE(3230), 1, - sym__inter_single_quotes, - STATE(3231), 1, - sym__inter_double_quotes, - ACTIONS(3022), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3040), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3046), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3052), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4778), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3026), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3048), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3463), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2599), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3176), 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, - [5193] = 4, + [5173] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1352), 1, sym_comment, - ACTIONS(2152), 13, + ACTIONS(2447), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -147839,7 +147777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2150), 49, + ACTIONS(2445), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -147889,114 +147827,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5266] = 37, + [5246] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(159), 1, - anon_sym_LBRACK, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(167), 1, - anon_sym_LBRACE, - ACTIONS(171), 1, - anon_sym_DOT_DOT, - ACTIONS(175), 1, - aux_sym_expr_unary_token1, - ACTIONS(193), 1, - anon_sym_0b, - ACTIONS(197), 1, - sym_val_date, - ACTIONS(199), 1, - anon_sym_DQUOTE, - ACTIONS(201), 1, - anon_sym_SQUOTE, - ACTIONS(203), 1, - anon_sym_BQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(207), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(215), 1, - sym_raw_string_begin, - ACTIONS(291), 1, - anon_sym_DASH2, - ACTIONS(1288), 1, - anon_sym_DOLLAR, - ACTIONS(1981), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1983), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2732), 1, - anon_sym_null, - STATE(722), 1, - sym_expr_parenthesized, - STATE(726), 1, - sym__val_number, - STATE(730), 1, - sym_val_variable, - STATE(766), 1, - sym__inter_single_quotes, - STATE(767), 1, - sym__inter_double_quotes, - STATE(980), 1, - sym__expr_unary_minus, STATE(1353), 1, sym_comment, - STATE(1878), 1, - sym__val_number_decimal, - STATE(2261), 1, - sym__expr_binary_expression, - STATE(5085), 1, - sym__expression, - ACTIONS(181), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(195), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1949), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1985), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(436), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(979), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(191), 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(969), 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, - [5405] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1354), 1, - sym_comment, - ACTIONS(2469), 13, + ACTIONS(2415), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -148010,7 +147846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2467), 49, + ACTIONS(2413), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -148060,12 +147896,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5478] = 4, + [5319] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1355), 1, + STATE(1354), 1, sym_comment, - ACTIONS(2473), 13, + ACTIONS(2451), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -148079,7 +147915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2471), 49, + ACTIONS(2449), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -148129,12 +147965,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5551] = 4, + [5392] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1356), 1, + STATE(1355), 1, sym_comment, - ACTIONS(2702), 13, + ACTIONS(2491), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -148148,7 +147984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2700), 49, + ACTIONS(2489), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -148198,12 +148034,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5624] = 4, + [5465] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1357), 1, + STATE(1356), 1, sym_comment, - ACTIONS(2152), 13, + ACTIONS(2708), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -148217,7 +148053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2150), 49, + ACTIONS(2706), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -148267,12 +148103,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5697] = 4, + [5538] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1358), 1, + STATE(1357), 1, sym_comment, - ACTIONS(2716), 13, + ACTIONS(2455), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -148286,7 +148122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2714), 49, + ACTIONS(2453), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -148336,12 +148172,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5770] = 4, + [5611] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1309), 1, + aux_sym__block_body_repeat1, + STATE(1358), 1, + sym_comment, + ACTIONS(155), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3094), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2996), 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(2998), 47, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_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_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, + anon_sym_PERCENT, + [5690] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1359), 1, sym_comment, - ACTIONS(2457), 13, + ACTIONS(2523), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -148355,7 +148263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2455), 49, + ACTIONS(2521), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -148405,27 +148313,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, - [5843] = 9, + [5763] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2996), 1, - anon_sym_DASH2, - ACTIONS(3008), 1, - anon_sym_PLUS2, STATE(1360), 1, sym_comment, - ACTIONS(2998), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3004), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3006), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2702), 10, + ACTIONS(2459), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -148434,7 +148332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2700), 44, + ACTIONS(2457), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -148448,6 +148346,7 @@ static const uint16_t 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, @@ -148466,6 +148365,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, @@ -148479,12 +148382,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5926] = 4, + [5836] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1361), 1, sym_comment, - ACTIONS(2457), 13, + ACTIONS(2415), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -148498,7 +148401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2455), 49, + ACTIONS(2413), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -148548,12 +148451,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5999] = 4, + [5909] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1362), 1, sym_comment, - ACTIONS(2148), 13, + ACTIONS(2463), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -148567,7 +148470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2146), 49, + ACTIONS(2461), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -148617,20 +148520,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6072] = 7, + [5982] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1316), 1, + STATE(1309), 1, aux_sym__block_body_repeat1, STATE(1363), 1, sym_comment, ACTIONS(155), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3090), 2, + ACTIONS(3096), 2, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(3084), 10, + ACTIONS(2996), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148641,7 +148544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3086), 47, + ACTIONS(2998), 47, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148689,36 +148592,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, anon_sym_PERCENT, - [6151] = 12, + [6061] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2996), 1, - anon_sym_DASH2, - ACTIONS(3008), 1, - anon_sym_PLUS2, STATE(1364), 1, sym_comment, - ACTIONS(2994), 2, + ACTIONS(2467), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2998), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3004), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3006), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3010), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3000), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2702), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -148727,7 +148611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2700), 38, + ACTIONS(2465), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -148741,6 +148625,7 @@ static const uint16_t 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, @@ -148751,10 +148636,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -148766,12 +148661,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, - [6240] = 4, + [6134] = 37, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(159), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(167), 1, + anon_sym_LBRACE, + ACTIONS(171), 1, + anon_sym_DOT_DOT, + ACTIONS(175), 1, + aux_sym_expr_unary_token1, + ACTIONS(193), 1, + anon_sym_0b, + ACTIONS(197), 1, + sym_val_date, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, + anon_sym_BQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(207), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(215), 1, + sym_raw_string_begin, + ACTIONS(291), 1, + anon_sym_DASH2, + ACTIONS(1292), 1, + anon_sym_DOLLAR, + ACTIONS(1965), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1967), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2732), 1, + anon_sym_null, + STATE(705), 1, + sym__val_number, + STATE(706), 1, + sym_expr_parenthesized, + STATE(739), 1, + sym_val_variable, + STATE(752), 1, + sym__inter_single_quotes, + STATE(753), 1, + sym__inter_double_quotes, + STATE(937), 1, + sym__expr_unary_minus, STATE(1365), 1, sym_comment, - ACTIONS(2403), 13, + STATE(1905), 1, + sym__val_number_decimal, + STATE(2265), 1, + sym__expr_binary_expression, + STATE(4936), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(195), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1969), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(1975), 2, + anon_sym_true, + anon_sym_false, + STATE(432), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(938), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(191), 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(944), 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, + [6273] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1366), 1, + sym_comment, + ACTIONS(2471), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -148785,7 +148782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2401), 49, + ACTIONS(2469), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -148835,84 +148832,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, - [6313] = 7, + [6346] = 37, ACTIONS(3), 1, anon_sym_POUND, - STATE(1316), 1, - aux_sym__block_body_repeat1, - STATE(1366), 1, - sym_comment, - ACTIONS(155), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3092), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3084), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(159), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(167), 1, + anon_sym_LBRACE, + ACTIONS(171), 1, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, + ACTIONS(175), 1, + aux_sym_expr_unary_token1, + ACTIONS(193), 1, anon_sym_0b, + ACTIONS(197), 1, + sym_val_date, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, + anon_sym_BQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(207), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(215), 1, + sym_raw_string_begin, + ACTIONS(291), 1, + anon_sym_DASH2, + ACTIONS(1292), 1, + anon_sym_DOLLAR, + ACTIONS(1965), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1967), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2732), 1, + anon_sym_null, + STATE(705), 1, + sym__val_number, + STATE(706), 1, + sym_expr_parenthesized, + STATE(739), 1, + sym_val_variable, + STATE(752), 1, + sym__inter_single_quotes, + STATE(753), 1, + sym__inter_double_quotes, + STATE(937), 1, + sym__expr_unary_minus, + STATE(1367), 1, + sym_comment, + STATE(1905), 1, + sym__val_number_decimal, + STATE(2265), 1, + sym__expr_binary_expression, + STATE(5084), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(195), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3086), 47, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_finally, - anon_sym_match, + ACTIONS(1969), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + STATE(432), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(938), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(191), 6, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - anon_sym_PERCENT, - [6392] = 4, + STATE(944), 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, + [6485] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1367), 1, + STATE(1368), 1, sym_comment, - ACTIONS(2152), 13, + ACTIONS(2527), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -148926,7 +148953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2150), 49, + ACTIONS(2525), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -148976,91 +149003,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6465] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2996), 1, - anon_sym_DASH2, - ACTIONS(3008), 1, - anon_sym_PLUS2, - STATE(1368), 1, - sym_comment, - ACTIONS(2994), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2998), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3004), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3006), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3010), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3000), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3002), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2702), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2992), 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(2700), 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, [6558] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1369), 1, sym_comment, - ACTIONS(1616), 13, + ACTIONS(2688), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -149074,7 +149022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1738), 49, + ACTIONS(2686), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -149129,7 +149077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1370), 1, sym_comment, - ACTIONS(2712), 13, + ACTIONS(2531), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -149143,7 +149091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2710), 49, + ACTIONS(2529), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -149196,257 +149144,16 @@ static const uint16_t ts_small_parse_table[] = { [6704] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3088), 1, - ts_builtin_sym_end, - STATE(1371), 1, - sym_comment, - STATE(1382), 1, - aux_sym__block_body_repeat1, - ACTIONS(55), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3084), 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(3086), 47, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_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_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, - anon_sym_PERCENT, - [6782] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3092), 1, - ts_builtin_sym_end, - STATE(1372), 1, - sym_comment, - STATE(1382), 1, - aux_sym__block_body_repeat1, - ACTIONS(55), 2, + ACTIONS(3102), 1, sym__newline, + ACTIONS(3105), 1, anon_sym_SEMI, - ACTIONS(3084), 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(3086), 47, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_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_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, - anon_sym_PERCENT, - [6860] = 42, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(193), 1, - anon_sym_0b, - ACTIONS(1766), 1, - anon_sym_DQUOTE, - ACTIONS(1768), 1, - anon_sym_SQUOTE, - ACTIONS(1770), 1, - anon_sym_BQUOTE, - ACTIONS(1772), 1, - sym_raw_string_begin, - ACTIONS(1969), 1, - aux_sym_unquoted_token1, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2937), 1, - anon_sym_null, - ACTIONS(2941), 1, - sym__newline, - ACTIONS(2943), 1, - anon_sym_LBRACK, - ACTIONS(2945), 1, - anon_sym_DOLLAR, - ACTIONS(2947), 1, - anon_sym_LBRACE, - ACTIONS(2951), 1, - anon_sym__, - ACTIONS(2953), 1, - anon_sym_DOT_DOT, - ACTIONS(2957), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2959), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2963), 1, - sym_val_date, - STATE(726), 1, - sym__val_number, - STATE(1373), 1, - sym_comment, - STATE(1405), 1, - aux_sym__ctrl_match_body_repeat1, - STATE(2283), 1, - aux_sym__types_body_repeat1, - STATE(3674), 1, - sym__val_number_decimal, - STATE(3961), 1, - sym_expr_parenthesized, - STATE(3966), 1, - sym_val_variable, - STATE(4099), 1, - sym__match_pattern, - STATE(4358), 1, - sym_val_bool, - STATE(4655), 1, - sym__match_pattern_expression, - STATE(4659), 1, - sym__match_pattern_list, - STATE(4665), 1, - sym_unquoted, - STATE(5399), 1, - sym_match_pattern, - ACTIONS(195), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2935), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2955), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(2961), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4656), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4737), 2, - sym_match_arm, - sym_default_arm, - STATE(5303), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(191), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(2939), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2276), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4663), 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, - [7008] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1374), 1, + STATE(4701), 1, + aux_sym__repeat_newline, + STATE(1371), 2, sym_comment, - ACTIONS(3094), 10, + aux_sym__parenthesized_body_repeat1, + ACTIONS(3098), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -149457,7 +149164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3096), 51, + ACTIONS(3100), 47, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -149483,14 +149190,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -149509,20 +149212,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, anon_sym_PERCENT, - [7080] = 8, + [6782] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2642), 1, - sym__newline, - ACTIONS(3102), 1, - anon_sym_SEMI, - STATE(1375), 1, + ACTIONS(2111), 1, + anon_sym_PIPE, + STATE(1372), 1, sym_comment, - STATE(1377), 1, - aux_sym__parenthesized_body_repeat1, - STATE(1392), 1, - aux_sym__repeat_newline, - ACTIONS(3098), 10, + ACTIONS(2655), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -149533,7 +149230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3100), 47, + ACTIONS(2652), 50, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -149559,10 +149256,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, @@ -149581,16 +149281,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, anon_sym_PERCENT, - [7160] = 6, - ACTIONS(105), 1, + [6856] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2126), 1, - anon_sym_POUND_BANG, - ACTIONS(2620), 1, - sym__newline, - STATE(1376), 1, + STATE(1373), 1, sym_comment, - ACTIONS(3094), 10, + ACTIONS(2113), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -149601,9 +149297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3096), 49, + ACTIONS(2111), 51, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -149628,11 +149323,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, @@ -149651,19 +149349,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, anon_sym_PERCENT, - [7236] = 7, + [6928] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3108), 1, + ACTIONS(3094), 1, + ts_builtin_sym_end, + STATE(1374), 1, + sym_comment, + STATE(1375), 1, + aux_sym__block_body_repeat1, + ACTIONS(55), 2, sym__newline, - ACTIONS(3111), 1, anon_sym_SEMI, - STATE(4679), 1, - aux_sym__repeat_newline, - STATE(1377), 2, - sym_comment, - aux_sym__parenthesized_body_repeat1, - ACTIONS(3104), 10, + ACTIONS(2996), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -149674,7 +149372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3106), 47, + ACTIONS(2998), 47, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -149722,12 +149420,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, anon_sym_PERCENT, - [7314] = 4, + [7006] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1378), 1, + ACTIONS(3108), 2, + sym__newline, + anon_sym_SEMI, + STATE(1375), 2, sym_comment, - ACTIONS(2128), 10, + aux_sym__block_body_repeat1, + ACTIONS(3077), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -149738,8 +149440,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2126), 51, + ACTIONS(3079), 48, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -149764,14 +149467,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, @@ -149790,14 +149489,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, anon_sym_PERCENT, - [7386] = 5, + [7080] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2126), 1, - anon_sym_PIPE, - STATE(1379), 1, + ACTIONS(2698), 1, + sym__newline, + ACTIONS(3115), 1, + anon_sym_SEMI, + STATE(1371), 1, + aux_sym__parenthesized_body_repeat1, + STATE(1376), 1, sym_comment, - ACTIONS(2623), 10, + STATE(1387), 1, + aux_sym__repeat_newline, + ACTIONS(3111), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -149808,7 +149513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2620), 50, + ACTIONS(3113), 47, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -149834,13 +149539,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, @@ -149859,121 +149561,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, anon_sym_PERCENT, - [7460] = 38, - ACTIONS(105), 1, + [7160] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(193), 1, - anon_sym_0b, - ACTIONS(205), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(207), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1766), 1, - anon_sym_DQUOTE, - ACTIONS(1768), 1, - anon_sym_SQUOTE, - ACTIONS(1770), 1, - anon_sym_BQUOTE, - ACTIONS(1772), 1, - sym_raw_string_begin, - ACTIONS(1969), 1, - aux_sym_unquoted_token1, - ACTIONS(2786), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2808), 1, - anon_sym_LBRACK, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2812), 1, + ACTIONS(3000), 1, + ts_builtin_sym_end, + STATE(1375), 1, + aux_sym__block_body_repeat1, + STATE(1377), 1, + sym_comment, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(2996), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, anon_sym_DOLLAR, - ACTIONS(2814), 1, - anon_sym_LBRACE, - ACTIONS(2834), 1, - anon_sym_COLON2, - ACTIONS(3116), 1, - anon_sym_null, - ACTIONS(3120), 1, + anon_sym_DASH2, anon_sym_DOT_DOT, - ACTIONS(3128), 1, - sym_val_date, - STATE(726), 1, - sym__val_number, - STATE(766), 1, - sym__inter_single_quotes, - STATE(767), 1, - sym__inter_double_quotes, - STATE(1380), 1, - sym_comment, - STATE(3927), 1, - sym__val_number_decimal, - STATE(4586), 1, - sym_expr_parenthesized, - STATE(4626), 1, - sym_val_variable, - STATE(4933), 1, - sym_val_bool, - STATE(5231), 1, - sym_unquoted, - ACTIONS(195), 2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3114), 2, + ACTIONS(2998), 47, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_match, anon_sym_true, anon_sym_false, - ACTIONS(3122), 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(3124), 2, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3126), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(5230), 2, - sym_val_range, - sym__value, - STATE(5303), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2640), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3118), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2276), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(969), 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, - [7600] = 7, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + anon_sym_PERCENT, + [7238] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3090), 1, + ACTIONS(3096), 1, ts_builtin_sym_end, - STATE(1381), 1, - sym_comment, - STATE(1382), 1, + STATE(1375), 1, aux_sym__block_body_repeat1, + STATE(1378), 1, + sym_comment, ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3084), 10, + ACTIONS(2996), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -149984,7 +149655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3086), 47, + ACTIONS(2998), 47, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -150032,16 +149703,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, anon_sym_PERCENT, - [7678] = 5, + [7316] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3130), 2, - sym__newline, - anon_sym_SEMI, - STATE(1382), 2, + STATE(1379), 1, sym_comment, - aux_sym__block_body_repeat1, - ACTIONS(3070), 10, + ACTIONS(3117), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -150052,9 +149719,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3072), 48, + ACTIONS(3119), 51, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -150079,10 +149745,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_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, @@ -150101,112 +149771,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, anon_sym_PERCENT, - [7752] = 37, + [7388] = 38, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(193), 1, + anon_sym_0b, + ACTIONS(205), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(207), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1764), 1, + anon_sym_DQUOTE, + ACTIONS(1766), 1, + anon_sym_SQUOTE, + ACTIONS(1768), 1, + anon_sym_BQUOTE, + ACTIONS(1770), 1, + sym_raw_string_begin, + ACTIONS(1973), 1, + aux_sym_unquoted_token1, + ACTIONS(2740), 1, + anon_sym_LBRACK, + ACTIONS(2742), 1, + anon_sym_LPAREN, + ACTIONS(2744), 1, + anon_sym_DOLLAR, + ACTIONS(2746), 1, + anon_sym_LBRACE, + ACTIONS(2800), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2838), 1, + anon_sym_COLON2, + ACTIONS(3123), 1, + anon_sym_null, + ACTIONS(3127), 1, + anon_sym_DOT_DOT, + ACTIONS(3135), 1, + sym_val_date, + STATE(705), 1, + sym__val_number, + STATE(752), 1, + sym__inter_single_quotes, + STATE(753), 1, + sym__inter_double_quotes, + STATE(1380), 1, + sym_comment, + STATE(3974), 1, + sym__val_number_decimal, + STATE(4496), 1, + sym_expr_parenthesized, + STATE(4568), 1, + sym_val_variable, + STATE(4968), 1, + sym_val_bool, + STATE(5235), 1, + sym_unquoted, + ACTIONS(195), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3129), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3131), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3133), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5111), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + STATE(5234), 2, + sym_val_range, + sym__value, + ACTIONS(2696), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3125), 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(944), 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, + [7528] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1414), 1, - anon_sym_LPAREN, - ACTIONS(1418), 1, - anon_sym_DOLLAR, - ACTIONS(1434), 1, + ACTIONS(193), 1, anon_sym_0b, - ACTIONS(1440), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1442), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1444), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1446), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(1448), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1454), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(1511), 1, - anon_sym_LBRACE, - ACTIONS(1606), 1, - anon_sym_LBRACK, - ACTIONS(3135), 1, + ACTIONS(1973), 1, + aux_sym_unquoted_token1, + ACTIONS(2742), 1, + anon_sym_LPAREN, + ACTIONS(2927), 1, anon_sym_null, - ACTIONS(3139), 1, + ACTIONS(2931), 1, + sym__newline, + ACTIONS(2933), 1, + anon_sym_LBRACK, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + ACTIONS(2937), 1, + anon_sym_LBRACE, + ACTIONS(2941), 1, + anon_sym__, + ACTIONS(2943), 1, anon_sym_DOT_DOT, - ACTIONS(3143), 1, + ACTIONS(2947), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3145), 1, + ACTIONS(2949), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3149), 1, + ACTIONS(2953), 1, sym_val_date, - ACTIONS(3151), 1, - aux_sym__unquoted_in_record_token1, - STATE(1383), 1, + STATE(705), 1, + sym__val_number, + STATE(1381), 1, sym_comment, - STATE(3746), 1, + STATE(1405), 1, + aux_sym__ctrl_match_body_repeat1, + STATE(2290), 1, + aux_sym__types_body_repeat1, + STATE(3677), 1, sym__val_number_decimal, - STATE(4196), 1, + STATE(3915), 1, sym_val_variable, - STATE(4271), 1, + STATE(3916), 1, sym_expr_parenthesized, - STATE(4440), 1, - sym__unquoted_in_record, - STATE(4498), 1, + STATE(4158), 1, + sym__match_pattern, + STATE(4244), 1, sym_val_bool, - STATE(4612), 1, - sym__val_number, - STATE(4926), 1, - sym__inter_single_quotes, - STATE(4927), 1, - sym__inter_double_quotes, - ACTIONS(1436), 2, + STATE(4599), 1, + sym__match_pattern_list, + STATE(4603), 1, + sym_unquoted, + STATE(4626), 1, + sym__match_pattern_expression, + STATE(5353), 1, + sym_match_pattern, + ACTIONS(195), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3133), 2, + ACTIONS(2925), 2, anon_sym_true, anon_sym_false, - ACTIONS(3141), 2, + ACTIONS(2945), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3147), 2, + ACTIONS(2951), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4812), 2, + STATE(4598), 2, + sym__match_pattern_value, + sym_val_range, + STATE(4746), 2, + sym_match_arm, + sym_default_arm, + STATE(5111), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(1432), 3, + ACTIONS(191), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3137), 3, + ACTIONS(2929), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(5016), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(3776), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4854), 12, + STATE(4600), 8, + sym__match_pattern_record, 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, - [7889] = 4, - ACTIONS(3), 1, + [7676] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2111), 1, + anon_sym_POUND_BANG, + ACTIONS(2652), 1, + sym__newline, + STATE(1382), 1, sym_comment, - ACTIONS(3153), 10, + ACTIONS(3117), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -150217,8 +149999,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3155), 50, + ACTIONS(3119), 49, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -150243,13 +150026,11 @@ 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, @@ -150268,74 +150049,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, anon_sym_PERCENT, - [7960] = 4, - ACTIONS(3), 1, + [7752] = 37, + ACTIONS(105), 1, anon_sym_POUND, - STATE(1385), 1, - sym_comment, - ACTIONS(3157), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(193), 1, + anon_sym_0b, + ACTIONS(205), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(207), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1764), 1, + anon_sym_DQUOTE, + ACTIONS(1766), 1, + anon_sym_SQUOTE, + ACTIONS(1768), 1, + anon_sym_BQUOTE, + ACTIONS(1770), 1, + sym_raw_string_begin, + ACTIONS(1973), 1, + aux_sym_unquoted_token1, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2740), 1, + anon_sym_LBRACK, + ACTIONS(2742), 1, + anon_sym_LPAREN, + ACTIONS(2744), 1, anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(2746), 1, + anon_sym_LBRACE, + ACTIONS(3123), 1, + anon_sym_null, + ACTIONS(3127), 1, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, + ACTIONS(3135), 1, + sym_val_date, + STATE(705), 1, + sym__val_number, + STATE(752), 1, + sym__inter_single_quotes, + STATE(753), 1, + sym__inter_double_quotes, + STATE(1383), 1, + sym_comment, + STATE(3974), 1, + sym__val_number_decimal, + STATE(4496), 1, + sym_expr_parenthesized, + STATE(4568), 1, + sym_val_variable, + STATE(4968), 1, + sym_val_bool, + STATE(5235), 1, + sym_unquoted, + ACTIONS(195), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3159), 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(3121), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, + ACTIONS(3129), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + ACTIONS(3131), 2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3133), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + STATE(5111), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + STATE(5234), 2, + sym_val_range, + sym__value, + ACTIONS(2696), 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, - anon_sym_PERCENT, - [8031] = 37, + ACTIONS(3125), 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(944), 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, + [7889] = 37, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(193), 1, @@ -150344,85 +150158,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(207), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1766), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1770), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(1969), 1, + ACTIONS(1973), 1, aux_sym_unquoted_token1, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2808), 1, + ACTIONS(2740), 1, anon_sym_LBRACK, - ACTIONS(2810), 1, + ACTIONS(2742), 1, anon_sym_LPAREN, - ACTIONS(2812), 1, + ACTIONS(2744), 1, anon_sym_DOLLAR, - ACTIONS(2814), 1, + ACTIONS(2746), 1, anon_sym_LBRACE, - ACTIONS(3116), 1, + ACTIONS(2994), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3123), 1, anon_sym_null, - ACTIONS(3120), 1, + ACTIONS(3127), 1, anon_sym_DOT_DOT, - ACTIONS(3128), 1, + ACTIONS(3135), 1, sym_val_date, - STATE(726), 1, + STATE(705), 1, sym__val_number, - STATE(766), 1, + STATE(752), 1, sym__inter_single_quotes, - STATE(767), 1, + STATE(753), 1, sym__inter_double_quotes, - STATE(1386), 1, + STATE(1384), 1, sym_comment, - STATE(3927), 1, + STATE(3974), 1, sym__val_number_decimal, - STATE(4586), 1, + STATE(4436), 1, sym_expr_parenthesized, - STATE(4626), 1, + STATE(4568), 1, sym_val_variable, - STATE(4933), 1, + STATE(4968), 1, sym_val_bool, - STATE(5231), 1, + STATE(5377), 1, sym_unquoted, ACTIONS(195), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3114), 2, + ACTIONS(3121), 2, anon_sym_true, anon_sym_false, - ACTIONS(3122), 2, + ACTIONS(3129), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3124), 2, + ACTIONS(3131), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3126), 2, + ACTIONS(3133), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(5230), 2, - sym_val_range, - sym__value, - STATE(5303), 2, + STATE(5111), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(2640), 3, + STATE(5379), 2, + sym_val_range, + sym__value, + ACTIONS(2696), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3118), 3, + ACTIONS(3125), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2276), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(969), 12, + STATE(944), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -150435,12 +150249,17 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8168] = 4, + [8026] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1387), 1, + ACTIONS(3119), 1, + anon_sym_RPAREN, + STATE(1385), 1, sym_comment, - ACTIONS(3163), 10, + ACTIONS(3141), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3137), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -150451,9 +150270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3161), 50, + ACTIONS(3139), 47, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -150478,8 +150296,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -150502,17 +150318,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, anon_sym_PERCENT, - [8239] = 6, + [8101] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1316), 1, - aux_sym__block_body_repeat1, - STATE(1388), 1, + STATE(1386), 1, sym_comment, - ACTIONS(155), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3084), 10, + ACTIONS(3117), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -150523,8 +150334,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3086), 47, + ACTIONS(3119), 50, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -150549,6 +150361,8 @@ 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, @@ -150571,12 +150385,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, anon_sym_PERCENT, - [8314] = 4, + [8172] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1389), 1, + ACTIONS(2698), 1, + sym__newline, + ACTIONS(3148), 1, + anon_sym_SEMI, + STATE(1292), 1, + aux_sym__repeat_newline, + STATE(1387), 1, sym_comment, - ACTIONS(3094), 10, + ACTIONS(3144), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -150587,9 +150407,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3096), 50, + ACTIONS(3146), 47, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -150614,8 +150433,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -150638,17 +150455,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, anon_sym_PERCENT, - [8385] = 6, + [8249] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3096), 1, - anon_sym_RPAREN, - STATE(1390), 1, + STATE(1388), 1, sym_comment, - ACTIONS(3169), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3165), 10, + ACTIONS(3150), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -150659,7 +150471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3167), 47, + ACTIONS(3152), 50, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -150685,10 +150497,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, @@ -150707,94 +150522,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, anon_sym_PERCENT, - [8460] = 37, - ACTIONS(105), 1, + [8320] = 37, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(193), 1, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_DOLLAR, + ACTIONS(1438), 1, anon_sym_0b, - ACTIONS(205), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(207), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1766), 1, + ACTIONS(1444), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1446), 1, anon_sym_SQUOTE, - ACTIONS(1770), 1, + ACTIONS(1448), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1450), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1452), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1458), 1, sym_raw_string_begin, - ACTIONS(1969), 1, - aux_sym_unquoted_token1, - ACTIONS(2808), 1, - anon_sym_LBRACK, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2812), 1, - anon_sym_DOLLAR, - ACTIONS(2814), 1, + ACTIONS(1508), 1, anon_sym_LBRACE, - ACTIONS(2986), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3116), 1, + ACTIONS(1642), 1, + anon_sym_LBRACK, + ACTIONS(3156), 1, anon_sym_null, - ACTIONS(3120), 1, + ACTIONS(3160), 1, anon_sym_DOT_DOT, - ACTIONS(3128), 1, + ACTIONS(3164), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3166), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3170), 1, sym_val_date, - STATE(726), 1, - sym__val_number, - STATE(766), 1, - sym__inter_single_quotes, - STATE(767), 1, - sym__inter_double_quotes, - STATE(1391), 1, + ACTIONS(3172), 1, + aux_sym__unquoted_in_record_token1, + STATE(1389), 1, sym_comment, - STATE(3927), 1, + STATE(3694), 1, sym__val_number_decimal, - STATE(4447), 1, - sym_expr_parenthesized, - STATE(4626), 1, + STATE(3992), 1, sym_val_variable, - STATE(4933), 1, + STATE(4214), 1, + sym_expr_parenthesized, + STATE(4464), 1, sym_val_bool, - STATE(5209), 1, - sym_unquoted, - ACTIONS(195), 2, + STATE(4602), 1, + sym__val_number, + STATE(4640), 1, + sym__unquoted_in_record, + STATE(4742), 1, + sym__inter_single_quotes, + STATE(4743), 1, + sym__inter_double_quotes, + ACTIONS(1440), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3114), 2, + ACTIONS(3154), 2, anon_sym_true, anon_sym_false, - ACTIONS(3122), 2, + ACTIONS(3162), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3124), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3126), 2, + ACTIONS(3168), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(5303), 2, + STATE(4814), 2, sym__val_range, sym__unquoted_anonymous_prefix, - STATE(5330), 2, - sym_val_range, - sym__value, - ACTIONS(2640), 3, + ACTIONS(1436), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3118), 3, + ACTIONS(3158), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2276), 4, + STATE(5015), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(3806), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(969), 12, + STATE(4868), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -150807,18 +150622,17 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8597] = 7, + [8457] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2642), 1, + STATE(1309), 1, + aux_sym__block_body_repeat1, + STATE(1390), 1, + sym_comment, + ACTIONS(155), 2, sym__newline, - ACTIONS(3176), 1, anon_sym_SEMI, - STATE(1338), 1, - aux_sym__repeat_newline, - STATE(1392), 1, - sym_comment, - ACTIONS(3172), 10, + ACTIONS(2996), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -150829,7 +150643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3174), 47, + ACTIONS(2998), 47, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -150877,212 +150691,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, anon_sym_PERCENT, - [8674] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1414), 1, - anon_sym_LPAREN, - ACTIONS(1418), 1, - anon_sym_DOLLAR, - ACTIONS(1434), 1, - anon_sym_0b, - ACTIONS(1440), 1, - anon_sym_DQUOTE, - ACTIONS(1442), 1, - anon_sym_SQUOTE, - ACTIONS(1444), 1, - anon_sym_BQUOTE, - ACTIONS(1446), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(1448), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1454), 1, - sym_raw_string_begin, - ACTIONS(1511), 1, - anon_sym_LBRACE, - ACTIONS(1606), 1, - anon_sym_LBRACK, - ACTIONS(3135), 1, - anon_sym_null, - ACTIONS(3139), 1, - anon_sym_DOT_DOT, - ACTIONS(3143), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3145), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3149), 1, - sym_val_date, - ACTIONS(3151), 1, - aux_sym__unquoted_in_record_token1, - STATE(1393), 1, - sym_comment, - STATE(3746), 1, - sym__val_number_decimal, - STATE(4196), 1, - sym_val_variable, - STATE(4264), 1, - sym_expr_parenthesized, - STATE(4415), 1, - sym__unquoted_in_record, - STATE(4498), 1, - sym_val_bool, - STATE(4612), 1, - sym__val_number, - STATE(4926), 1, - sym__inter_single_quotes, - STATE(4927), 1, - sym__inter_double_quotes, - ACTIONS(1436), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3133), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3141), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3147), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4812), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(1432), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3137), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(4965), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(3776), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4854), 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, - [8811] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1414), 1, - anon_sym_LPAREN, - ACTIONS(1418), 1, - anon_sym_DOLLAR, - ACTIONS(1434), 1, - anon_sym_0b, - ACTIONS(1440), 1, - anon_sym_DQUOTE, - ACTIONS(1442), 1, - anon_sym_SQUOTE, - ACTIONS(1444), 1, - anon_sym_BQUOTE, - ACTIONS(1446), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(1448), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1454), 1, - sym_raw_string_begin, - ACTIONS(1511), 1, - anon_sym_LBRACE, - ACTIONS(1606), 1, - anon_sym_LBRACK, - ACTIONS(3135), 1, - anon_sym_null, - ACTIONS(3139), 1, - anon_sym_DOT_DOT, - ACTIONS(3143), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3145), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3149), 1, - sym_val_date, - ACTIONS(3151), 1, - aux_sym__unquoted_in_record_token1, - STATE(1394), 1, - sym_comment, - STATE(3746), 1, - sym__val_number_decimal, - STATE(4196), 1, - sym_val_variable, - STATE(4263), 1, - sym_expr_parenthesized, - STATE(4403), 1, - sym__unquoted_in_record, - STATE(4498), 1, - sym_val_bool, - STATE(4612), 1, - sym__val_number, - STATE(4926), 1, - sym__inter_single_quotes, - STATE(4927), 1, - sym__inter_double_quotes, - ACTIONS(1436), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3133), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3141), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3147), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4812), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(1432), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3137), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(5094), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(3776), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4854), 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, - [8948] = 4, + [8532] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1395), 1, + STATE(1391), 1, sym_comment, - ACTIONS(3178), 10, + ACTIONS(3174), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -151093,7 +150707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3180), 50, + ACTIONS(3176), 50, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -151144,12 +150758,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, anon_sym_PERCENT, - [9019] = 4, + [8603] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1396), 1, + STATE(1392), 1, sym_comment, - ACTIONS(3184), 10, + ACTIONS(3180), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -151160,7 +150774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3182), 50, + ACTIONS(3178), 50, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -151211,93 +150825,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, anon_sym_PERCENT, - [9090] = 36, + [8674] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(841), 1, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, anon_sym_DOLLAR, - ACTIONS(857), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(863), 1, + ACTIONS(1438), 1, anon_sym_0b, - ACTIONS(883), 1, - aux_sym_unquoted_token1, - ACTIONS(885), 1, - sym_raw_string_begin, - ACTIONS(3188), 1, - anon_sym_null, - ACTIONS(3192), 1, - anon_sym_LBRACK, - ACTIONS(3194), 1, - anon_sym_LPAREN, - ACTIONS(3196), 1, - anon_sym_LBRACE, - ACTIONS(3198), 1, - anon_sym_DOT_DOT, - ACTIONS(3200), 1, - anon_sym_LPAREN2, - ACTIONS(3204), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3210), 1, - sym_val_date, - ACTIONS(3212), 1, + ACTIONS(1444), 1, anon_sym_DQUOTE, - ACTIONS(3214), 1, + ACTIONS(1446), 1, anon_sym_SQUOTE, - ACTIONS(3216), 1, + ACTIONS(1448), 1, anon_sym_BQUOTE, - ACTIONS(3218), 1, + ACTIONS(1450), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3220), 1, + ACTIONS(1452), 1, anon_sym_DOLLAR_DQUOTE, - STATE(1397), 1, + ACTIONS(1458), 1, + sym_raw_string_begin, + ACTIONS(1508), 1, + anon_sym_LBRACE, + ACTIONS(1642), 1, + anon_sym_LBRACK, + ACTIONS(3156), 1, + anon_sym_null, + ACTIONS(3160), 1, + anon_sym_DOT_DOT, + ACTIONS(3164), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3166), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3170), 1, + sym_val_date, + ACTIONS(3172), 1, + aux_sym__unquoted_in_record_token1, + STATE(1393), 1, sym_comment, - STATE(2511), 1, + STATE(3694), 1, sym__val_number_decimal, - STATE(2899), 1, + STATE(3992), 1, + sym_val_variable, + STATE(4215), 1, + sym_expr_parenthesized, + STATE(4464), 1, sym_val_bool, - STATE(3060), 1, - sym_unquoted, - STATE(3139), 1, + STATE(4602), 1, sym__val_number, - STATE(3179), 1, + STATE(4635), 1, + sym__unquoted_in_record, + STATE(4742), 1, sym__inter_single_quotes, - STATE(3180), 1, + STATE(4743), 1, sym__inter_double_quotes, - ACTIONS(865), 2, + ACTIONS(1440), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3186), 2, + ACTIONS(3154), 2, anon_sym_true, anon_sym_false, - ACTIONS(3202), 2, + ACTIONS(3162), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3206), 2, + ACTIONS(3168), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3059), 2, - sym__expr_parenthesized_immediate, - sym__value, - STATE(5531), 2, + STATE(4814), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3190), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3208), 3, + ACTIONS(1436), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2503), 4, + ACTIONS(3158), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(5005), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(3806), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3138), 13, + STATE(4868), 12, sym_val_nothing, - sym_val_variable, sym_val_cellpath, sym_val_number, sym_val_duration, @@ -151309,113 +150925,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9224] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3225), 1, - anon_sym_null, - ACTIONS(3231), 1, - anon_sym_LBRACK, - ACTIONS(3234), 1, - anon_sym_LPAREN, - ACTIONS(3237), 1, - anon_sym_DOLLAR, - ACTIONS(3240), 1, - anon_sym_LBRACE, - ACTIONS(3243), 1, - anon_sym__, - ACTIONS(3246), 1, - anon_sym_DOT_DOT, - ACTIONS(3252), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3255), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3264), 1, - anon_sym_0b, - ACTIONS(3270), 1, - sym_val_date, - ACTIONS(3273), 1, - anon_sym_DQUOTE, - ACTIONS(3276), 1, - anon_sym_SQUOTE, - ACTIONS(3279), 1, - anon_sym_BQUOTE, - ACTIONS(3282), 1, - aux_sym_unquoted_token1, - ACTIONS(3285), 1, - sym_raw_string_begin, - STATE(726), 1, - sym__val_number, - STATE(3674), 1, - sym__val_number_decimal, - STATE(3961), 1, - sym_expr_parenthesized, - STATE(3966), 1, - sym_val_variable, - STATE(4099), 1, - sym__match_pattern, - STATE(4358), 1, - sym_val_bool, - STATE(4655), 1, - sym__match_pattern_expression, - STATE(4659), 1, - sym__match_pattern_list, - STATE(4665), 1, - sym_unquoted, - STATE(5399), 1, - sym_match_pattern, - ACTIONS(3222), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3249), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3258), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3267), 2, - anon_sym_0o, - anon_sym_0x, - STATE(1398), 2, - sym_comment, - aux_sym__ctrl_match_body_repeat1, - STATE(4656), 2, - sym__match_pattern_value, - sym_val_range, - STATE(5033), 2, - sym_match_arm, - sym_default_arm, - STATE(5303), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3228), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3261), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(2276), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4663), 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, - [9364] = 4, + [8811] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1399), 1, + STATE(1394), 1, sym_comment, - ACTIONS(3104), 10, + ACTIONS(3182), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -151426,7 +150941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3106), 49, + ACTIONS(3184), 50, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -151458,6 +150973,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, @@ -151476,12 +150992,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, anon_sym_PERCENT, - [9434] = 4, + [8882] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1400), 1, + STATE(1395), 1, sym_comment, - ACTIONS(3165), 10, + ACTIONS(3188), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -151492,8 +151008,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3167), 49, + ACTIONS(3186), 50, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -151542,57 +151059,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, anon_sym_PERCENT, - [9504] = 13, + [8953] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3294), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3301), 1, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_DOLLAR, + ACTIONS(1438), 1, + anon_sym_0b, + ACTIONS(1444), 1, + anon_sym_DQUOTE, + ACTIONS(1446), 1, + anon_sym_SQUOTE, + ACTIONS(1448), 1, + anon_sym_BQUOTE, + ACTIONS(1450), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1452), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1458), 1, + sym_raw_string_begin, + ACTIONS(1508), 1, + anon_sym_LBRACE, + ACTIONS(1642), 1, + anon_sym_LBRACK, + ACTIONS(3156), 1, + anon_sym_null, + ACTIONS(3160), 1, + anon_sym_DOT_DOT, + ACTIONS(3164), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3304), 1, + ACTIONS(3166), 1, aux_sym__val_number_decimal_token2, - STATE(2130), 1, + ACTIONS(3170), 1, + sym_val_date, + ACTIONS(3172), 1, + aux_sym__unquoted_in_record_token1, + STATE(1396), 1, + sym_comment, + STATE(3694), 1, sym__val_number_decimal, - STATE(4695), 1, - sym_env_var, - STATE(5211), 1, - sym_cmd_identifier, - ACTIONS(3288), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3307), 2, + STATE(3992), 1, + sym_val_variable, + STATE(4208), 1, + sym_expr_parenthesized, + STATE(4464), 1, + sym_val_bool, + STATE(4602), 1, + sym__val_number, + STATE(4659), 1, + sym__unquoted_in_record, + STATE(4742), 1, + sym__inter_single_quotes, + STATE(4743), 1, + sym__inter_double_quotes, + ACTIONS(1440), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3154), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3162), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3168), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(1401), 2, + STATE(4814), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1436), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3158), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(5080), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(3806), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4868), 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, + [9090] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1397), 1, sym_comment, - aux_sym_pipe_element_parenthesized_repeat2, - ACTIONS(3299), 6, + ACTIONS(3098), 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(3297), 18, + ACTIONS(3100), 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, - anon_sym_PERCENT, - ACTIONS(3291), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -151617,45 +151201,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [9592] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3316), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3326), 1, - aux_sym__val_number_decimal_token2, - STATE(2130), 1, - sym__val_number_decimal, - STATE(4949), 1, - sym_env_var, - STATE(5211), 1, - sym_cmd_identifier, - ACTIONS(3310), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3329), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(1402), 2, - sym_comment, - aux_sym_pipe_element_repeat2, - ACTIONS(3321), 6, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3319), 18, - sym_raw_string_begin, + 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, @@ -151667,116 +151225,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3313), 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, + [9160] = 36, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(946), 1, + anon_sym_DOLLAR, + ACTIONS(962), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(968), 1, + anon_sym_0b, + ACTIONS(988), 1, + aux_sym_unquoted_token1, + ACTIONS(990), 1, + sym_raw_string_begin, + ACTIONS(3192), 1, + anon_sym_null, + ACTIONS(3196), 1, + anon_sym_LBRACK, + ACTIONS(3198), 1, + anon_sym_LPAREN, + ACTIONS(3200), 1, + anon_sym_LBRACE, + ACTIONS(3202), 1, + anon_sym_DOT_DOT, + ACTIONS(3204), 1, + anon_sym_LPAREN2, + ACTIONS(3208), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3214), 1, + sym_val_date, + ACTIONS(3216), 1, + anon_sym_DQUOTE, + ACTIONS(3218), 1, + anon_sym_SQUOTE, + ACTIONS(3220), 1, + anon_sym_BQUOTE, + ACTIONS(3222), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3224), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(1398), 1, + sym_comment, + STATE(2568), 1, + sym__val_number_decimal, + STATE(3037), 1, + sym_val_bool, + STATE(3273), 1, + sym_unquoted, + STATE(3325), 1, + sym__val_number, + STATE(3372), 1, + sym__inter_double_quotes, + STATE(3375), 1, + sym__inter_single_quotes, + ACTIONS(970), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3190), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + ACTIONS(3206), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3210), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(3272), 2, + sym__expr_parenthesized_immediate, + sym__value, + STATE(5288), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3194), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [9680] = 36, + ACTIONS(3212), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(2553), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3321), 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, + [9294] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1770), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(3050), 1, + ACTIONS(3030), 1, anon_sym_0b, - ACTIONS(3062), 1, + ACTIONS(3042), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3064), 1, + ACTIONS(3044), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3334), 1, + ACTIONS(3228), 1, anon_sym_null, - ACTIONS(3338), 1, + ACTIONS(3232), 1, anon_sym_LBRACK, - ACTIONS(3340), 1, + ACTIONS(3234), 1, anon_sym_LPAREN, - ACTIONS(3342), 1, + ACTIONS(3236), 1, anon_sym_DOLLAR, - ACTIONS(3344), 1, + ACTIONS(3238), 1, anon_sym_LBRACE, - ACTIONS(3346), 1, + ACTIONS(3240), 1, anon_sym_DOT_DOT, - ACTIONS(3348), 1, + ACTIONS(3242), 1, anon_sym_LPAREN2, - ACTIONS(3352), 1, + ACTIONS(3246), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3354), 1, + ACTIONS(3248), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3358), 1, + ACTIONS(3252), 1, sym_val_date, - ACTIONS(3360), 1, + ACTIONS(3254), 1, aux_sym_unquoted_token1, - STATE(1403), 1, + STATE(1399), 1, sym_comment, - STATE(3177), 1, + STATE(3088), 1, sym__val_number, - STATE(3230), 1, - sym__inter_single_quotes, - STATE(3231), 1, + STATE(3253), 1, sym__inter_double_quotes, - STATE(3749), 1, + STATE(3254), 1, + sym__inter_single_quotes, + STATE(3754), 1, sym__val_number_decimal, - STATE(4458), 1, + STATE(4434), 1, sym_val_bool, - STATE(4704), 1, + STATE(4865), 1, sym_unquoted, - ACTIONS(3052), 2, + ACTIONS(3032), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3332), 2, + ACTIONS(3226), 2, anon_sym_true, anon_sym_false, - ACTIONS(3350), 2, + ACTIONS(3244), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3356), 2, + ACTIONS(3250), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4702), 2, + STATE(4864), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(5120), 2, + STATE(5337), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3048), 3, + ACTIONS(3028), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3336), 3, + ACTIONS(3230), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2276), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3176), 13, + STATE(3086), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -151790,91 +151421,91 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9814] = 36, + [9428] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3364), 1, + ACTIONS(843), 1, + anon_sym_DOLLAR, + ACTIONS(865), 1, + anon_sym_0b, + ACTIONS(885), 1, + aux_sym_unquoted_token1, + ACTIONS(887), 1, + sym_raw_string_begin, + ACTIONS(1278), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3258), 1, anon_sym_null, - ACTIONS(3368), 1, + ACTIONS(3262), 1, anon_sym_LBRACK, - ACTIONS(3370), 1, + ACTIONS(3264), 1, anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_DOLLAR, - ACTIONS(3374), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - ACTIONS(3376), 1, + ACTIONS(3268), 1, anon_sym_DOT_DOT, - ACTIONS(3378), 1, + ACTIONS(3270), 1, anon_sym_LPAREN2, - ACTIONS(3382), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3384), 1, + ACTIONS(3274), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3390), 1, - anon_sym_0b, - ACTIONS(3394), 1, + ACTIONS(3280), 1, sym_val_date, - ACTIONS(3396), 1, + ACTIONS(3282), 1, anon_sym_DQUOTE, - ACTIONS(3398), 1, + ACTIONS(3284), 1, anon_sym_SQUOTE, - ACTIONS(3400), 1, + ACTIONS(3286), 1, anon_sym_BQUOTE, - ACTIONS(3402), 1, + ACTIONS(3288), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3404), 1, + ACTIONS(3290), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3406), 1, - aux_sym_unquoted_token1, - ACTIONS(3408), 1, - sym_raw_string_begin, - STATE(1404), 1, + STATE(1400), 1, sym_comment, - STATE(1863), 1, - sym__val_number_decimal, - STATE(2083), 1, - sym_val_bool, - STATE(2199), 1, - sym_unquoted, - STATE(2203), 1, + STATE(3090), 1, sym__inter_single_quotes, - STATE(2205), 1, + STATE(3091), 1, sym__inter_double_quotes, - STATE(2210), 1, + STATE(3095), 1, sym__val_number, - ACTIONS(3362), 2, + STATE(3187), 1, + sym_unquoted, + STATE(3749), 1, + sym__val_number_decimal, + STATE(4294), 1, + sym_val_bool, + ACTIONS(867), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3256), 2, anon_sym_true, anon_sym_false, - ACTIONS(3380), 2, + ACTIONS(3272), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3386), 2, + ACTIONS(3276), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3392), 2, - anon_sym_0o, - anon_sym_0x, - STATE(2197), 2, + STATE(3189), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(5254), 2, + STATE(5242), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3366), 3, + ACTIONS(3260), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3388), 3, + ACTIONS(3278), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2172), 4, + STATE(2515), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(2209), 13, + STATE(3096), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -151888,100 +151519,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9948] = 40, + [9562] = 40, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(193), 1, anon_sym_0b, - ACTIONS(1766), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1770), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(1969), 1, + ACTIONS(1973), 1, aux_sym_unquoted_token1, - ACTIONS(2810), 1, + ACTIONS(2742), 1, anon_sym_LPAREN, - ACTIONS(2937), 1, + ACTIONS(2927), 1, anon_sym_null, - ACTIONS(2943), 1, + ACTIONS(2933), 1, anon_sym_LBRACK, - ACTIONS(2945), 1, + ACTIONS(2935), 1, anon_sym_DOLLAR, - ACTIONS(2947), 1, + ACTIONS(2937), 1, anon_sym_LBRACE, - ACTIONS(2951), 1, + ACTIONS(2941), 1, anon_sym__, - ACTIONS(2953), 1, + ACTIONS(2943), 1, anon_sym_DOT_DOT, - ACTIONS(2957), 1, + ACTIONS(2947), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2959), 1, + ACTIONS(2949), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2963), 1, + ACTIONS(2953), 1, sym_val_date, - STATE(726), 1, + STATE(705), 1, sym__val_number, - STATE(1398), 1, - aux_sym__ctrl_match_body_repeat1, - STATE(1405), 1, + STATE(1401), 1, sym_comment, - STATE(3674), 1, + STATE(1406), 1, + aux_sym__ctrl_match_body_repeat1, + STATE(3677), 1, sym__val_number_decimal, - STATE(3961), 1, - sym_expr_parenthesized, - STATE(3966), 1, + STATE(3915), 1, sym_val_variable, - STATE(4099), 1, + STATE(3916), 1, + sym_expr_parenthesized, + STATE(4158), 1, sym__match_pattern, - STATE(4358), 1, + STATE(4244), 1, sym_val_bool, - STATE(4655), 1, - sym__match_pattern_expression, - STATE(4659), 1, + STATE(4599), 1, sym__match_pattern_list, - STATE(4665), 1, + STATE(4603), 1, sym_unquoted, - STATE(5399), 1, + STATE(4626), 1, + sym__match_pattern_expression, + STATE(5353), 1, sym_match_pattern, ACTIONS(195), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(2935), 2, + ACTIONS(2925), 2, anon_sym_true, anon_sym_false, - ACTIONS(2955), 2, + ACTIONS(2945), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2961), 2, + ACTIONS(2951), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4656), 2, + STATE(4598), 2, sym__match_pattern_value, sym_val_range, - STATE(4885), 2, + STATE(4746), 2, sym_match_arm, sym_default_arm, - STATE(5303), 2, + STATE(5111), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(191), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(2939), 3, + ACTIONS(2929), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2276), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4663), 8, + STATE(4600), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -151990,91 +151621,91 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [10090] = 36, + [9704] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(940), 1, - anon_sym_DOLLAR, - ACTIONS(956), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(962), 1, - anon_sym_0b, - ACTIONS(982), 1, - aux_sym_unquoted_token1, - ACTIONS(984), 1, - sym_raw_string_begin, - ACTIONS(3412), 1, + ACTIONS(3294), 1, anon_sym_null, - ACTIONS(3416), 1, + ACTIONS(3298), 1, anon_sym_LBRACK, - ACTIONS(3418), 1, + ACTIONS(3300), 1, anon_sym_LPAREN, - ACTIONS(3420), 1, + ACTIONS(3302), 1, + anon_sym_DOLLAR, + ACTIONS(3304), 1, anon_sym_LBRACE, - ACTIONS(3422), 1, + ACTIONS(3306), 1, anon_sym_DOT_DOT, - ACTIONS(3424), 1, + ACTIONS(3308), 1, anon_sym_LPAREN2, - ACTIONS(3428), 1, + ACTIONS(3312), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3314), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3434), 1, + ACTIONS(3320), 1, + anon_sym_0b, + ACTIONS(3324), 1, sym_val_date, - ACTIONS(3436), 1, + ACTIONS(3326), 1, anon_sym_DQUOTE, - ACTIONS(3438), 1, + ACTIONS(3328), 1, anon_sym_SQUOTE, - ACTIONS(3440), 1, + ACTIONS(3330), 1, anon_sym_BQUOTE, - ACTIONS(3442), 1, + ACTIONS(3332), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3444), 1, + ACTIONS(3334), 1, anon_sym_DOLLAR_DQUOTE, - STATE(1406), 1, + ACTIONS(3336), 1, + aux_sym_unquoted_token1, + ACTIONS(3338), 1, + sym_raw_string_begin, + STATE(1402), 1, sym_comment, - STATE(2563), 1, + STATE(1838), 1, sym__val_number_decimal, - STATE(3030), 1, + STATE(2025), 1, sym_val_bool, - STATE(3317), 1, + STATE(2175), 1, sym__inter_single_quotes, - STATE(3318), 1, + STATE(2180), 1, sym__inter_double_quotes, - STATE(3341), 1, + STATE(2193), 1, sym__val_number, - STATE(3397), 1, + STATE(2196), 1, sym_unquoted, - ACTIONS(964), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3410), 2, + ACTIONS(3292), 2, anon_sym_true, anon_sym_false, - ACTIONS(3426), 2, + ACTIONS(3310), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3430), 2, + ACTIONS(3316), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3396), 2, + ACTIONS(3322), 2, + anon_sym_0o, + anon_sym_0x, + STATE(2214), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(5266), 2, + STATE(5397), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3414), 3, + ACTIONS(3296), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3432), 3, + ACTIONS(3318), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2543), 4, + STATE(2185), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3333), 13, + STATE(2177), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -152088,100 +151719,241 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [10224] = 40, + [9838] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1403), 1, + sym_comment, + ACTIONS(3137), 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(3139), 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, + 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, + anon_sym_PERCENT, + [9908] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3346), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3353), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3356), 1, + aux_sym__val_number_decimal_token2, + STATE(2120), 1, + sym__val_number_decimal, + STATE(4915), 1, + sym_env_var, + STATE(5281), 1, + sym_cmd_identifier, + ACTIONS(3340), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3359), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(1404), 2, + sym_comment, + aux_sym_pipe_element_parenthesized_repeat2, + ACTIONS(3351), 6, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3349), 18, + 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, + anon_sym_PERCENT, + ACTIONS(3343), 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, + [9996] = 40, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(193), 1, anon_sym_0b, - ACTIONS(1766), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1770), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(1969), 1, + ACTIONS(1973), 1, aux_sym_unquoted_token1, - ACTIONS(2810), 1, + ACTIONS(2742), 1, anon_sym_LPAREN, - ACTIONS(2937), 1, + ACTIONS(2927), 1, anon_sym_null, - ACTIONS(2943), 1, + ACTIONS(2933), 1, anon_sym_LBRACK, - ACTIONS(2945), 1, + ACTIONS(2935), 1, anon_sym_DOLLAR, - ACTIONS(2947), 1, + ACTIONS(2937), 1, anon_sym_LBRACE, - ACTIONS(2951), 1, + ACTIONS(2941), 1, anon_sym__, - ACTIONS(2953), 1, + ACTIONS(2943), 1, anon_sym_DOT_DOT, - ACTIONS(2957), 1, + ACTIONS(2947), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2959), 1, + ACTIONS(2949), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2963), 1, + ACTIONS(2953), 1, sym_val_date, - STATE(726), 1, + STATE(705), 1, sym__val_number, - STATE(1398), 1, - aux_sym__ctrl_match_body_repeat1, - STATE(1407), 1, + STATE(1405), 1, sym_comment, - STATE(3674), 1, + STATE(1406), 1, + aux_sym__ctrl_match_body_repeat1, + STATE(3677), 1, sym__val_number_decimal, - STATE(3961), 1, - sym_expr_parenthesized, - STATE(3966), 1, + STATE(3915), 1, sym_val_variable, - STATE(4099), 1, + STATE(3916), 1, + sym_expr_parenthesized, + STATE(4158), 1, sym__match_pattern, - STATE(4358), 1, + STATE(4244), 1, sym_val_bool, - STATE(4655), 1, - sym__match_pattern_expression, - STATE(4659), 1, + STATE(4599), 1, sym__match_pattern_list, - STATE(4665), 1, + STATE(4603), 1, sym_unquoted, - STATE(5399), 1, + STATE(4626), 1, + sym__match_pattern_expression, + STATE(5353), 1, sym_match_pattern, ACTIONS(195), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(2935), 2, + ACTIONS(2925), 2, anon_sym_true, anon_sym_false, - ACTIONS(2955), 2, + ACTIONS(2945), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2961), 2, + ACTIONS(2951), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4656), 2, + STATE(4598), 2, sym__match_pattern_value, sym_val_range, - STATE(4737), 2, + STATE(4820), 2, sym_match_arm, sym_default_arm, - STATE(5303), 2, + STATE(5111), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(191), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(2939), 3, + ACTIONS(2929), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2276), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4663), 8, + STATE(4600), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -152190,91 +151962,192 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [10366] = 36, + [10138] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(841), 1, + ACTIONS(3365), 1, + anon_sym_null, + ACTIONS(3371), 1, + anon_sym_LBRACK, + ACTIONS(3374), 1, + anon_sym_LPAREN, + ACTIONS(3377), 1, anon_sym_DOLLAR, - ACTIONS(863), 1, + ACTIONS(3380), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym__, + ACTIONS(3386), 1, + anon_sym_DOT_DOT, + ACTIONS(3392), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3395), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3404), 1, anon_sym_0b, - ACTIONS(883), 1, + ACTIONS(3410), 1, + sym_val_date, + ACTIONS(3413), 1, + anon_sym_DQUOTE, + ACTIONS(3416), 1, + anon_sym_SQUOTE, + ACTIONS(3419), 1, + anon_sym_BQUOTE, + ACTIONS(3422), 1, aux_sym_unquoted_token1, - ACTIONS(885), 1, + ACTIONS(3425), 1, sym_raw_string_begin, - ACTIONS(1274), 1, + STATE(705), 1, + sym__val_number, + STATE(3677), 1, + sym__val_number_decimal, + STATE(3915), 1, + sym_val_variable, + STATE(3916), 1, + sym_expr_parenthesized, + STATE(4158), 1, + sym__match_pattern, + STATE(4244), 1, + sym_val_bool, + STATE(4599), 1, + sym__match_pattern_list, + STATE(4603), 1, + sym_unquoted, + STATE(4626), 1, + sym__match_pattern_expression, + STATE(5353), 1, + sym_match_pattern, + ACTIONS(3362), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3389), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3398), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3407), 2, + anon_sym_0o, + anon_sym_0x, + STATE(1406), 2, + sym_comment, + aux_sym__ctrl_match_body_repeat1, + STATE(4598), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5002), 2, + sym_match_arm, + sym_default_arm, + STATE(5111), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3368), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3401), 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(4600), 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, + [10278] = 36, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(843), 1, + anon_sym_DOLLAR, + ACTIONS(859), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3192), 1, + ACTIONS(865), 1, + anon_sym_0b, + ACTIONS(885), 1, + aux_sym_unquoted_token1, + ACTIONS(887), 1, + sym_raw_string_begin, + ACTIONS(3262), 1, anon_sym_LBRACK, - ACTIONS(3194), 1, + ACTIONS(3264), 1, anon_sym_LPAREN, - ACTIONS(3196), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - ACTIONS(3198), 1, + ACTIONS(3268), 1, anon_sym_DOT_DOT, - ACTIONS(3200), 1, + ACTIONS(3270), 1, anon_sym_LPAREN2, - ACTIONS(3212), 1, + ACTIONS(3282), 1, anon_sym_DQUOTE, - ACTIONS(3214), 1, + ACTIONS(3284), 1, anon_sym_SQUOTE, - ACTIONS(3216), 1, + ACTIONS(3286), 1, anon_sym_BQUOTE, - ACTIONS(3218), 1, + ACTIONS(3288), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3220), 1, + ACTIONS(3290), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3448), 1, + ACTIONS(3430), 1, anon_sym_null, - ACTIONS(3452), 1, + ACTIONS(3434), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3456), 1, + ACTIONS(3438), 1, sym_val_date, - STATE(1408), 1, + STATE(1407), 1, sym_comment, - STATE(3060), 1, - sym_unquoted, - STATE(3139), 1, - sym__val_number, - STATE(3179), 1, - sym__inter_single_quotes, - STATE(3180), 1, - sym__inter_double_quotes, - STATE(3817), 1, + STATE(2487), 1, sym__val_number_decimal, - STATE(4311), 1, + STATE(2760), 1, sym_val_bool, - ACTIONS(865), 2, + STATE(3090), 1, + sym__inter_single_quotes, + STATE(3091), 1, + sym__inter_double_quotes, + STATE(3095), 1, + sym__val_number, + STATE(3187), 1, + sym_unquoted, + ACTIONS(867), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3202), 2, + ACTIONS(3272), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3446), 2, + ACTIONS(3428), 2, anon_sym_true, anon_sym_false, - ACTIONS(3454), 2, + ACTIONS(3436), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3059), 2, + STATE(3189), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(5531), 2, + STATE(5242), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3208), 3, + ACTIONS(3278), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3450), 3, + ACTIONS(3432), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2503), 4, + STATE(2515), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3138), 13, + STATE(3096), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -152288,19 +152161,94 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, + [10412] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3446), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3453), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3456), 1, + aux_sym__val_number_decimal_token2, + STATE(2120), 1, + sym__val_number_decimal, + STATE(5025), 1, + sym_env_var, + STATE(5281), 1, + sym_cmd_identifier, + ACTIONS(3440), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3459), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(1408), 2, + sym_comment, + aux_sym_pipe_element_repeat2, + ACTIONS(3451), 6, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3449), 18, + 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, + anon_sym_PERCENT, + ACTIONS(3443), 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, [10500] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3460), 1, + ACTIONS(3464), 1, sym__newline, - ACTIONS(3463), 1, + ACTIONS(3467), 1, sym__space, - ACTIONS(3466), 1, + ACTIONS(3470), 1, sym_raw_string_begin, STATE(1409), 2, sym_comment, aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(3458), 54, + ACTIONS(3462), 54, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -152358,17 +152306,17 @@ static const uint16_t ts_small_parse_table[] = { [10573] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3297), 1, + ACTIONS(3349), 1, sym_raw_string_begin, - ACTIONS(3468), 1, + ACTIONS(3472), 1, sym__newline, - ACTIONS(3470), 1, + ACTIONS(3474), 1, sym__space, STATE(1409), 1, aux_sym_pipe_element_parenthesized_repeat1, STATE(1410), 1, sym_comment, - ACTIONS(3299), 54, + ACTIONS(3351), 54, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -152426,35 +152374,35 @@ static const uint16_t ts_small_parse_table[] = { [10648] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(1634), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(1659), 1, + ACTIONS(1636), 1, sym__unquoted_pattern, - ACTIONS(3472), 1, + ACTIONS(3476), 1, anon_sym_DOT, STATE(1411), 1, sym_comment, - STATE(1456), 1, + STATE(1455), 1, sym__immediate_decimal, - ACTIONS(3474), 2, + ACTIONS(3478), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3476), 2, + ACTIONS(3480), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(718), 2, + STATE(725), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1644), 6, + ACTIONS(1626), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1642), 41, + ACTIONS(1622), 41, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152496,100 +152444,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [10733] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(1412), 1, - sym_comment, - ACTIONS(3478), 2, - sym_raw_string_begin, - sym__space, - ACTIONS(890), 55, - 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, - anon_sym_PERCENT, - [10801] = 11, + [10733] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(1634), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(1711), 1, + ACTIONS(1636), 1, sym__unquoted_pattern, - STATE(1413), 1, + STATE(1412), 1, sym_comment, STATE(1495), 1, sym__immediate_decimal, - ACTIONS(3480), 2, + ACTIONS(3482), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3482), 2, + ACTIONS(3484), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(747), 2, + STATE(851), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1691), 6, + ACTIONS(1626), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1689), 41, + ACTIONS(1622), 41, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152631,18 +152515,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [10883] = 6, + [10815] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3319), 1, + ACTIONS(3449), 1, sym_raw_string_begin, - ACTIONS(3484), 1, + ACTIONS(3486), 1, sym__space, - STATE(1414), 1, + STATE(1413), 1, sym_comment, - STATE(1417), 1, + STATE(1415), 1, aux_sym_pipe_element_repeat1, - ACTIONS(3321), 54, + ACTIONS(3451), 54, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -152697,103 +152581,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, anon_sym_PERCENT, - [10955] = 12, - ACTIONS(3), 1, + [10887] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(1693), 1, - anon_sym_DOLLAR, - ACTIONS(1695), 1, - anon_sym_LPAREN2, - ACTIONS(3486), 1, - anon_sym_DOT, - STATE(1415), 1, + STATE(1414), 1, sym_comment, - STATE(1463), 1, - sym__immediate_decimal, ACTIONS(3488), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3490), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(957), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1644), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1642), 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, - [11039] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3492), 1, - sym__newline, - STATE(1416), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1893), 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(1888), 45, sym_raw_string_begin, + sym__space, + ACTIONS(898), 55, + 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, @@ -152808,24 +152610,33 @@ 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, @@ -152834,17 +152645,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, anon_sym_PERCENT, - [11109] = 5, + [10955] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3497), 1, + ACTIONS(3492), 1, sym__space, - ACTIONS(3500), 1, + ACTIONS(3495), 1, sym_raw_string_begin, - STATE(1417), 2, + STATE(1415), 2, sym_comment, aux_sym_pipe_element_repeat1, - ACTIONS(3495), 54, + ACTIONS(3490), 54, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -152899,36 +152710,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, anon_sym_PERCENT, - [11179] = 11, + [11025] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(1634), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(1659), 1, + ACTIONS(1697), 1, sym__unquoted_pattern, - STATE(1418), 1, + STATE(1416), 1, sym_comment, - STATE(1499), 1, + STATE(1510), 1, sym__immediate_decimal, - ACTIONS(3480), 2, + ACTIONS(3482), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3482), 2, + ACTIONS(3484), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(925), 2, + STATE(758), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1644), 6, + ACTIONS(1689), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1642), 41, + ACTIONS(1687), 41, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152970,12 +152781,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [11261] = 4, + [11107] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1419), 1, + ACTIONS(3497), 1, + sym__newline, + STATE(1417), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(2128), 10, + ACTIONS(1943), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -152986,68 +152800,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2126), 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, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - anon_sym_PERCENT, - [11328] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(1420), 1, - sym_comment, - ACTIONS(3504), 2, + ACTIONS(1938), 45, sym_raw_string_begin, - sym__space, - ACTIONS(3502), 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, @@ -153062,7 +152820,6 @@ 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, @@ -153071,23 +152828,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token5, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_DOT_DOT, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -153096,332 +152846,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, anon_sym_PERCENT, - [11395] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3506), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - aux_sym__immediate_decimal_token5, - STATE(1421), 1, - sym_comment, - ACTIONS(751), 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(753), 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, - [11466] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3510), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3512), 1, - aux_sym__immediate_decimal_token5, - STATE(1422), 1, - sym_comment, - ACTIONS(759), 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(761), 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, - [11537] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1404), 1, - anon_sym_null, - ACTIONS(1414), 1, - anon_sym_LPAREN, - ACTIONS(1426), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1428), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(1434), 1, - anon_sym_0b, - ACTIONS(1440), 1, - anon_sym_DQUOTE, - ACTIONS(1442), 1, - anon_sym_SQUOTE, - ACTIONS(1444), 1, - anon_sym_BQUOTE, - ACTIONS(1452), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(1454), 1, - sym_raw_string_begin, - ACTIONS(1590), 1, - anon_sym_DOT_DOT, - ACTIONS(2768), 1, - anon_sym_DOLLAR, - ACTIONS(2770), 1, - anon_sym_LBRACE, - ACTIONS(2772), 1, - sym_val_date, - ACTIONS(3514), 1, - sym__newline, - ACTIONS(3516), 1, - anon_sym_LBRACK, - STATE(1423), 1, - sym_comment, - STATE(1443), 1, - aux_sym__match_pattern_list_body_repeat1, - STATE(2295), 1, - aux_sym__types_body_repeat1, - STATE(3789), 1, - sym__val_number_decimal, - STATE(4000), 1, - sym_expr_parenthesized, - STATE(4001), 1, - sym_val_variable, - STATE(4442), 1, - sym_val_bool, - STATE(4612), 1, - sym__val_number, - STATE(4713), 1, - sym__match_pattern_list, - ACTIONS(1402), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1424), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(1430), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(1436), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4615), 2, - sym__match_pattern_expression, - sym__unquoted_in_list, - STATE(4712), 2, - sym__match_pattern_value, - sym_val_range, - STATE(5257), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(1406), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(1432), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3776), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4714), 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, - [11670] = 11, + [11177] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1636), 1, sym__unquoted_pattern, - ACTIONS(1693), 1, - anon_sym_DOLLAR, - ACTIONS(1695), 1, - anon_sym_LPAREN2, - STATE(1424), 1, - sym_comment, - STATE(1537), 1, - sym__immediate_decimal, - ACTIONS(3518), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3520), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1325), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1644), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1642), 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, - [11751] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1693), 1, + ACTIONS(1703), 1, anon_sym_DOLLAR, - ACTIONS(1695), 1, + ACTIONS(1705), 1, anon_sym_LPAREN2, - ACTIONS(1711), 1, - sym__unquoted_pattern, - STATE(1425), 1, + ACTIONS(3500), 1, + anon_sym_DOT, + STATE(1418), 1, sym_comment, - STATE(1513), 1, + STATE(1469), 1, sym__immediate_decimal, - ACTIONS(3518), 2, + ACTIONS(3502), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3520), 2, + ACTIONS(3504), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1306), 2, + STATE(965), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1691), 6, + ACTIONS(1626), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1689), 40, + ACTIONS(1622), 40, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -153462,177 +152918,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [11832] = 33, + [11261] = 33, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1414), 1, - anon_sym_LPAREN, ACTIONS(1418), 1, - anon_sym_DOLLAR, - ACTIONS(1434), 1, - anon_sym_0b, - ACTIONS(1440), 1, - anon_sym_DQUOTE, - ACTIONS(1442), 1, - anon_sym_SQUOTE, - ACTIONS(1444), 1, - anon_sym_BQUOTE, - ACTIONS(1446), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(1448), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1454), 1, - sym_raw_string_begin, - ACTIONS(1517), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1519), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(1606), 1, - anon_sym_LBRACK, - ACTIONS(3522), 1, - anon_sym_null, - ACTIONS(3524), 1, - anon_sym_LBRACE, - ACTIONS(3526), 1, - anon_sym_DOT_DOT, - ACTIONS(3530), 1, - sym_val_date, - STATE(1426), 1, - sym_comment, - STATE(3982), 1, - sym__val_number_decimal, - STATE(4196), 1, - sym_val_variable, - STATE(4355), 1, - sym_expr_parenthesized, - STATE(4612), 1, - sym__val_number, - STATE(4926), 1, - sym__inter_single_quotes, - STATE(4927), 1, - sym__inter_double_quotes, - STATE(5021), 1, - sym_block, - ACTIONS(1436), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1497), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1521), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3528), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(5023), 2, - sym_val_range, - sym__value, - STATE(3776), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1432), 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(4854), 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, - [11957] = 33, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1414), 1, anon_sym_LPAREN, - ACTIONS(1418), 1, + ACTIONS(1422), 1, anon_sym_DOLLAR, - ACTIONS(1434), 1, + ACTIONS(1438), 1, anon_sym_0b, - ACTIONS(1440), 1, + ACTIONS(1444), 1, anon_sym_DQUOTE, - ACTIONS(1442), 1, + ACTIONS(1446), 1, anon_sym_SQUOTE, - ACTIONS(1444), 1, + ACTIONS(1448), 1, anon_sym_BQUOTE, - ACTIONS(1446), 1, + ACTIONS(1450), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(1448), 1, + ACTIONS(1452), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1454), 1, + ACTIONS(1458), 1, sym_raw_string_begin, - ACTIONS(1517), 1, + ACTIONS(1514), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1519), 1, + ACTIONS(1516), 1, aux_sym__val_number_decimal_token2, - ACTIONS(1606), 1, + ACTIONS(1642), 1, anon_sym_LBRACK, - ACTIONS(3522), 1, + ACTIONS(3506), 1, anon_sym_null, - ACTIONS(3524), 1, + ACTIONS(3508), 1, anon_sym_LBRACE, - ACTIONS(3526), 1, + ACTIONS(3510), 1, anon_sym_DOT_DOT, - ACTIONS(3530), 1, + ACTIONS(3514), 1, sym_val_date, - STATE(1427), 1, + STATE(1419), 1, sym_comment, - STATE(3982), 1, + STATE(3903), 1, sym__val_number_decimal, - STATE(4196), 1, + STATE(3992), 1, sym_val_variable, - STATE(4352), 1, + STATE(4227), 1, sym_expr_parenthesized, - STATE(4612), 1, + STATE(4602), 1, sym__val_number, - STATE(4926), 1, + STATE(4742), 1, sym__inter_single_quotes, - STATE(4927), 1, + STATE(4743), 1, sym__inter_double_quotes, - STATE(5012), 1, + STATE(5006), 1, sym_block, - ACTIONS(1436), 2, + ACTIONS(1440), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(1497), 2, + ACTIONS(1494), 2, anon_sym_true, anon_sym_false, - ACTIONS(1521), 2, + ACTIONS(1518), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3528), 2, + ACTIONS(3512), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(5017), 2, + STATE(5004), 2, sym_val_range, sym__value, - STATE(3776), 4, + STATE(3806), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1432), 6, + ACTIONS(1436), 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(4854), 13, + STATE(4868), 13, sym_val_nothing, sym_val_bool, sym_val_cellpath, @@ -153646,25 +153010,36 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [12082] = 6, + [11386] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3532), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3534), 1, - aux_sym__immediate_decimal_token5, - STATE(1428), 1, + ACTIONS(1697), 1, + sym__unquoted_pattern, + ACTIONS(1703), 1, + anon_sym_DOLLAR, + ACTIONS(1705), 1, + anon_sym_LPAREN2, + STATE(1420), 1, sym_comment, - ACTIONS(759), 8, + STATE(1512), 1, + sym__immediate_decimal, + ACTIONS(3516), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3518), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1352), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1689), 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(761), 45, + ACTIONS(1687), 40, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -153678,7 +153053,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, @@ -153697,7 +153071,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, @@ -153707,28 +153080,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [12152] = 6, + [11467] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3536), 1, - anon_sym_DOT, - ACTIONS(3538), 1, - aux_sym__immediate_decimal_token5, - STATE(1429), 1, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(1703), 1, + anon_sym_DOLLAR, + ACTIONS(1705), 1, + anon_sym_LPAREN2, + STATE(1421), 1, sym_comment, - ACTIONS(751), 8, + STATE(1518), 1, + sym__immediate_decimal, + ACTIONS(3516), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3518), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1295), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1626), 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(753), 45, + ACTIONS(1622), 40, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -153742,7 +153123,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, @@ -153761,7 +153141,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, @@ -153771,17 +153150,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, - [12222] = 5, + [11548] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3508), 1, + ACTIONS(3520), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3522), 1, aux_sym__immediate_decimal_token5, - STATE(1430), 1, + STATE(1422), 1, sym_comment, - ACTIONS(751), 8, + ACTIONS(755), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -153790,7 +153168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(753), 46, + ACTIONS(757), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153837,33 +153215,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12290] = 11, + [11619] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, - sym__unquoted_pattern, - ACTIONS(3540), 1, - anon_sym_DOT_DOT2, - ACTIONS(3544), 1, - sym_filesize_unit, - ACTIONS(3546), 1, - sym_duration_unit, - STATE(1431), 1, + ACTIONS(3524), 1, + anon_sym_DOT, + ACTIONS(3526), 1, + aux_sym__immediate_decimal_token5, + STATE(1423), 1, sym_comment, - STATE(5068), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3542), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(811), 5, + ACTIONS(763), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(914), 42, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(765), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153897,6 +153267,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, @@ -153906,14 +153277,333 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [12370] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [11690] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(1424), 1, + sym_comment, + ACTIONS(3530), 2, + sym_raw_string_begin, + sym__space, + ACTIONS(3528), 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, + 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, + anon_sym_PERCENT, + [11757] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1408), 1, + anon_sym_null, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1430), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1432), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1438), 1, + anon_sym_0b, + ACTIONS(1444), 1, + anon_sym_DQUOTE, + ACTIONS(1446), 1, + anon_sym_SQUOTE, + ACTIONS(1448), 1, + anon_sym_BQUOTE, + ACTIONS(1456), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(1458), 1, + sym_raw_string_begin, + ACTIONS(1606), 1, + anon_sym_DOT_DOT, + ACTIONS(2772), 1, + anon_sym_DOLLAR, + ACTIONS(2774), 1, + anon_sym_LBRACE, + ACTIONS(2776), 1, + sym_val_date, + ACTIONS(3532), 1, + sym__newline, + ACTIONS(3534), 1, + anon_sym_LBRACK, + STATE(1425), 1, + sym_comment, + STATE(1437), 1, + aux_sym__match_pattern_list_body_repeat1, + STATE(2296), 1, + aux_sym__types_body_repeat1, + STATE(3772), 1, + sym__val_number_decimal, + STATE(4084), 1, + sym_expr_parenthesized, + STATE(4085), 1, + sym_val_variable, + STATE(4451), 1, + sym_val_bool, + STATE(4602), 1, + sym__val_number, + STATE(4906), 1, + sym__match_pattern_list, + ACTIONS(1406), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1428), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(1434), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(1440), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4649), 2, + sym__match_pattern_expression, + sym__unquoted_in_list, + STATE(4894), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5490), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1410), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(1436), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3806), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4932), 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, + [11890] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1426), 1, + sym_comment, + ACTIONS(2113), 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(2111), 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, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + anon_sym_PERCENT, + [11957] = 33, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_DOLLAR, + ACTIONS(1438), 1, + anon_sym_0b, + ACTIONS(1444), 1, + anon_sym_DQUOTE, + ACTIONS(1446), 1, + anon_sym_SQUOTE, + ACTIONS(1448), 1, + anon_sym_BQUOTE, + ACTIONS(1450), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1452), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1458), 1, + sym_raw_string_begin, + ACTIONS(1514), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1516), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1642), 1, + anon_sym_LBRACK, + ACTIONS(3506), 1, + anon_sym_null, + ACTIONS(3508), 1, + anon_sym_LBRACE, + ACTIONS(3510), 1, + anon_sym_DOT_DOT, + ACTIONS(3514), 1, + sym_val_date, + STATE(1427), 1, + sym_comment, + STATE(3903), 1, + sym__val_number_decimal, + STATE(3992), 1, + sym_val_variable, + STATE(4226), 1, + sym_expr_parenthesized, + STATE(4602), 1, + sym__val_number, + STATE(4742), 1, + sym__inter_single_quotes, + STATE(4743), 1, + sym__inter_double_quotes, + STATE(4980), 1, + sym_block, + ACTIONS(1440), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1494), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1518), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3512), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5009), 2, + sym_val_range, + sym__value, + STATE(3806), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1436), 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(4868), 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, + [12082] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3548), 1, + ACTIONS(3536), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3538), 1, aux_sym__immediate_decimal_token5, - STATE(1432), 1, + STATE(1428), 1, sym_comment, - ACTIONS(791), 8, + ACTIONS(755), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -153922,7 +153612,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(793), 46, + ACTIONS(757), 45, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153935,9 +153626,7 @@ static const uint16_t ts_small_parse_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, @@ -153969,12 +153658,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12438] = 4, + [12152] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1433), 1, + ACTIONS(3526), 1, + aux_sym__immediate_decimal_token5, + STATE(1429), 1, sym_comment, - ACTIONS(759), 8, + ACTIONS(763), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -153983,7 +153674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(761), 46, + ACTIONS(765), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154030,200 +153721,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12503] = 36, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(193), 1, - anon_sym_0b, - ACTIONS(1766), 1, - anon_sym_DQUOTE, - ACTIONS(1768), 1, - anon_sym_SQUOTE, - ACTIONS(1770), 1, - anon_sym_BQUOTE, - ACTIONS(1772), 1, - sym_raw_string_begin, - ACTIONS(1969), 1, - aux_sym_unquoted_token1, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2943), 1, - anon_sym_LBRACK, - ACTIONS(2945), 1, - anon_sym_DOLLAR, - ACTIONS(2947), 1, - anon_sym_LBRACE, - ACTIONS(3552), 1, - anon_sym_null, - ACTIONS(3556), 1, - anon_sym_DOT_DOT, - ACTIONS(3560), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3562), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3566), 1, - sym_val_date, - STATE(726), 1, - sym__val_number, - STATE(1434), 1, - sym_comment, - STATE(3769), 1, - sym__val_number_decimal, - STATE(3961), 1, - sym_expr_parenthesized, - STATE(3966), 1, - sym_val_variable, - STATE(4502), 1, - sym_val_bool, - STATE(4655), 1, - sym__match_pattern_expression, - STATE(4659), 1, - sym__match_pattern_list, - STATE(4665), 1, - sym_unquoted, - STATE(4914), 1, - sym__match_pattern, - ACTIONS(195), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3550), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3558), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3564), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4656), 2, - sym__match_pattern_value, - sym_val_range, - STATE(5303), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(191), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3554), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2276), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4663), 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, - [12632] = 36, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(193), 1, - anon_sym_0b, - ACTIONS(1766), 1, - anon_sym_DQUOTE, - ACTIONS(1768), 1, - anon_sym_SQUOTE, - ACTIONS(1770), 1, - anon_sym_BQUOTE, - ACTIONS(1772), 1, - sym_raw_string_begin, - ACTIONS(1969), 1, - aux_sym_unquoted_token1, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2943), 1, - anon_sym_LBRACK, - ACTIONS(2945), 1, - anon_sym_DOLLAR, - ACTIONS(2947), 1, - anon_sym_LBRACE, - ACTIONS(3552), 1, - anon_sym_null, - ACTIONS(3556), 1, - anon_sym_DOT_DOT, - ACTIONS(3560), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3562), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3566), 1, - sym_val_date, - STATE(726), 1, - sym__val_number, - STATE(1435), 1, - sym_comment, - STATE(3769), 1, - sym__val_number_decimal, - STATE(3961), 1, - sym_expr_parenthesized, - STATE(3966), 1, - sym_val_variable, - STATE(4502), 1, - sym_val_bool, - STATE(4655), 1, - sym__match_pattern_expression, - STATE(4659), 1, - sym__match_pattern_list, - STATE(4665), 1, - sym_unquoted, - STATE(4884), 1, - sym__match_pattern, - ACTIONS(195), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3550), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3558), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3564), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4656), 2, - sym__match_pattern_value, - sym_val_range, - STATE(5303), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(191), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3554), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2276), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4663), 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, - [12761] = 5, + [12220] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3568), 1, + ACTIONS(3540), 1, + anon_sym_DOT, + ACTIONS(3542), 1, aux_sym__immediate_decimal_token5, - STATE(1436), 1, + STATE(1430), 1, sym_comment, - ACTIONS(791), 8, + ACTIONS(763), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -154232,7 +153739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(793), 45, + ACTIONS(765), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -154278,34 +153785,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12828] = 11, + [12290] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(1864), 1, - sym__unquoted_pattern, - ACTIONS(3570), 1, - anon_sym_DOT_DOT2, - ACTIONS(3574), 1, - sym_filesize_unit, - ACTIONS(3576), 1, - sym_duration_unit, - STATE(1437), 1, + ACTIONS(3544), 1, + aux_sym__immediate_decimal_token5, + STATE(1431), 1, sym_comment, - STATE(4987), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3572), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(811), 5, + ACTIONS(775), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(914), 41, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(777), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154318,7 +153814,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, @@ -154337,6 +153835,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, @@ -154346,21 +153845,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [12907] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [12358] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(1438), 1, + ACTIONS(1830), 1, + anon_sym_LPAREN2, + ACTIONS(1840), 1, + sym__unquoted_pattern, + ACTIONS(3546), 1, + anon_sym_DOT_DOT2, + ACTIONS(3550), 1, + sym_filesize_unit, + ACTIONS(3552), 1, + sym_duration_unit, + STATE(1432), 1, sym_comment, - ACTIONS(791), 8, + STATE(5102), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3548), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(811), 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(793), 46, + ACTIONS(910), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154394,7 +153908,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, @@ -154404,15 +153917,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, - [12972] = 4, + [12438] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1439), 1, + ACTIONS(3554), 1, + aux_sym__immediate_decimal_token5, + STATE(1433), 1, sym_comment, - ACTIONS(803), 8, + ACTIONS(775), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -154421,7 +153933,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(805), 46, + ACTIONS(777), 45, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154434,9 +153947,7 @@ static const uint16_t ts_small_parse_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, @@ -154468,91 +153979,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [13037] = 36, + [12505] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1404), 1, + ACTIONS(3559), 1, anon_sym_null, - ACTIONS(1414), 1, + ACTIONS(3565), 1, + anon_sym_LBRACK, + ACTIONS(3568), 1, anon_sym_LPAREN, - ACTIONS(1426), 1, + ACTIONS(3571), 1, + anon_sym_DOLLAR, + ACTIONS(3574), 1, + anon_sym_LBRACE, + ACTIONS(3577), 1, + anon_sym_DOT_DOT, + ACTIONS(3583), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1428), 1, + ACTIONS(3586), 1, aux_sym__val_number_decimal_token2, - ACTIONS(1434), 1, + ACTIONS(3595), 1, anon_sym_0b, - ACTIONS(1440), 1, + ACTIONS(3601), 1, + sym_val_date, + ACTIONS(3604), 1, anon_sym_DQUOTE, - ACTIONS(1442), 1, + ACTIONS(3607), 1, anon_sym_SQUOTE, - ACTIONS(1444), 1, + ACTIONS(3610), 1, anon_sym_BQUOTE, - ACTIONS(1452), 1, + ACTIONS(3613), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(1454), 1, + ACTIONS(3616), 1, sym_raw_string_begin, - ACTIONS(1590), 1, - anon_sym_DOT_DOT, - ACTIONS(2768), 1, - anon_sym_DOLLAR, - ACTIONS(2770), 1, - anon_sym_LBRACE, - ACTIONS(2772), 1, - sym_val_date, - ACTIONS(3516), 1, - anon_sym_LBRACK, - STATE(1440), 1, - sym_comment, - STATE(1445), 1, - aux_sym__match_pattern_list_body_repeat1, - STATE(3789), 1, + STATE(3892), 1, sym__val_number_decimal, - STATE(4000), 1, + STATE(4510), 1, sym_expr_parenthesized, - STATE(4001), 1, + STATE(4511), 1, sym_val_variable, - STATE(4442), 1, - sym_val_bool, - STATE(4612), 1, + STATE(4602), 1, sym__val_number, - STATE(4620), 1, - sym__match_pattern_expression, - STATE(4622), 1, - sym__unquoted_in_list, - STATE(4713), 1, + STATE(4906), 1, sym__match_pattern_list, - ACTIONS(1402), 2, + STATE(5036), 1, + sym_val_bool, + ACTIONS(3556), 2, anon_sym_true, anon_sym_false, - ACTIONS(1424), 2, + ACTIONS(3580), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(1430), 2, + ACTIONS(3589), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(1436), 2, + ACTIONS(3598), 2, anon_sym_0o, anon_sym_0x, - STATE(4712), 2, + STATE(1434), 2, + sym_comment, + aux_sym__match_pattern_list_body_repeat1, + STATE(4894), 2, sym__match_pattern_value, sym_val_range, - STATE(5257), 2, + STATE(5090), 2, + sym__match_pattern_expression, + sym__unquoted_in_list, + STATE(5490), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(1406), 3, + ACTIONS(3562), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(1432), 3, + ACTIONS(3592), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3776), 4, + STATE(3806), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4714), 8, + STATE(4932), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -154561,24 +154070,21 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [13166] = 6, + [12630] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3578), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3580), 1, - aux_sym__immediate_decimal_token5, - STATE(1441), 1, + STATE(1435), 1, sym_comment, - ACTIONS(1776), 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(1774), 45, + ACTIONS(777), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154624,24 +154130,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [13235] = 5, + sym_duration_unit, + [12695] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3538), 1, + ACTIONS(3619), 1, + anon_sym_DOT, + ACTIONS(3621), 1, aux_sym__immediate_decimal_token5, - STATE(1442), 1, + STATE(1436), 1, sym_comment, - ACTIONS(751), 8, + ACTIONS(1812), 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(753), 45, - ts_builtin_sym_end, + ACTIONS(1810), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154654,7 +154161,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, @@ -154685,92 +154194,91 @@ 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, - [13302] = 36, + [12764] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1404), 1, + ACTIONS(1408), 1, anon_sym_null, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1426), 1, + ACTIONS(1430), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1428), 1, + ACTIONS(1432), 1, aux_sym__val_number_decimal_token2, - ACTIONS(1434), 1, + ACTIONS(1438), 1, anon_sym_0b, - ACTIONS(1440), 1, + ACTIONS(1444), 1, anon_sym_DQUOTE, - ACTIONS(1442), 1, + ACTIONS(1446), 1, anon_sym_SQUOTE, - ACTIONS(1444), 1, + ACTIONS(1448), 1, anon_sym_BQUOTE, - ACTIONS(1452), 1, + ACTIONS(1456), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(1454), 1, + ACTIONS(1458), 1, sym_raw_string_begin, - ACTIONS(1590), 1, + ACTIONS(1606), 1, anon_sym_DOT_DOT, - ACTIONS(2768), 1, + ACTIONS(2772), 1, anon_sym_DOLLAR, - ACTIONS(2770), 1, + ACTIONS(2774), 1, anon_sym_LBRACE, - ACTIONS(2772), 1, + ACTIONS(2776), 1, sym_val_date, - ACTIONS(3516), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - STATE(1443), 1, - sym_comment, - STATE(1445), 1, + STATE(1434), 1, aux_sym__match_pattern_list_body_repeat1, - STATE(3789), 1, + STATE(1437), 1, + sym_comment, + STATE(3772), 1, sym__val_number_decimal, - STATE(4000), 1, + STATE(4084), 1, sym_expr_parenthesized, - STATE(4001), 1, + STATE(4085), 1, sym_val_variable, - STATE(4384), 1, - sym__match_pattern_expression, - STATE(4385), 1, - sym__unquoted_in_list, - STATE(4442), 1, + STATE(4451), 1, sym_val_bool, - STATE(4612), 1, + STATE(4536), 1, + sym__unquoted_in_list, + STATE(4537), 1, + sym__match_pattern_expression, + STATE(4602), 1, sym__val_number, - STATE(4713), 1, + STATE(4906), 1, sym__match_pattern_list, - ACTIONS(1402), 2, + ACTIONS(1406), 2, anon_sym_true, anon_sym_false, - ACTIONS(1424), 2, + ACTIONS(1428), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(1430), 2, + ACTIONS(1434), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(1436), 2, + ACTIONS(1440), 2, anon_sym_0o, anon_sym_0x, - STATE(4712), 2, + STATE(4894), 2, sym__match_pattern_value, sym_val_range, - STATE(5257), 2, + STATE(5490), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(1406), 3, + ACTIONS(1410), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(1432), 3, + ACTIONS(1436), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3776), 4, + STATE(3806), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4714), 8, + STATE(4932), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -154779,24 +154287,207 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [13431] = 6, + [12893] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3582), 1, - anon_sym_DOT, - ACTIONS(3584), 1, - aux_sym__immediate_decimal_token5, - STATE(1444), 1, + ACTIONS(193), 1, + anon_sym_0b, + ACTIONS(1764), 1, + anon_sym_DQUOTE, + ACTIONS(1766), 1, + anon_sym_SQUOTE, + ACTIONS(1768), 1, + anon_sym_BQUOTE, + ACTIONS(1770), 1, + sym_raw_string_begin, + ACTIONS(1973), 1, + aux_sym_unquoted_token1, + ACTIONS(2742), 1, + anon_sym_LPAREN, + ACTIONS(2933), 1, + anon_sym_LBRACK, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + ACTIONS(2937), 1, + anon_sym_LBRACE, + ACTIONS(3625), 1, + anon_sym_null, + ACTIONS(3629), 1, + anon_sym_DOT_DOT, + ACTIONS(3633), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3635), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3639), 1, + sym_val_date, + STATE(705), 1, + sym__val_number, + STATE(1438), 1, + sym_comment, + STATE(3784), 1, + sym__val_number_decimal, + STATE(3915), 1, + sym_val_variable, + STATE(3916), 1, + sym_expr_parenthesized, + STATE(4595), 1, + sym_val_bool, + STATE(4599), 1, + sym__match_pattern_list, + STATE(4603), 1, + sym_unquoted, + STATE(4626), 1, + sym__match_pattern_expression, + STATE(4819), 1, + sym__match_pattern, + ACTIONS(195), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3623), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3631), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3637), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4598), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5111), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(191), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3627), 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(4600), 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, + [13022] = 36, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(193), 1, + anon_sym_0b, + ACTIONS(1764), 1, + anon_sym_DQUOTE, + ACTIONS(1766), 1, + anon_sym_SQUOTE, + ACTIONS(1768), 1, + anon_sym_BQUOTE, + ACTIONS(1770), 1, + sym_raw_string_begin, + ACTIONS(1973), 1, + aux_sym_unquoted_token1, + ACTIONS(2742), 1, + anon_sym_LPAREN, + ACTIONS(2933), 1, + anon_sym_LBRACK, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + ACTIONS(2937), 1, + anon_sym_LBRACE, + ACTIONS(3625), 1, + anon_sym_null, + ACTIONS(3629), 1, + anon_sym_DOT_DOT, + ACTIONS(3633), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3635), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3639), 1, + sym_val_date, + STATE(705), 1, + sym__val_number, + STATE(1439), 1, + sym_comment, + STATE(3784), 1, + sym__val_number_decimal, + STATE(3915), 1, + sym_val_variable, + STATE(3916), 1, + sym_expr_parenthesized, + STATE(4595), 1, + sym_val_bool, + STATE(4599), 1, + sym__match_pattern_list, + STATE(4603), 1, + sym_unquoted, + STATE(4626), 1, + sym__match_pattern_expression, + STATE(4728), 1, + sym__match_pattern, + ACTIONS(195), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3623), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3631), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3637), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4598), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5111), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(191), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3627), 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(4600), 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, + [13151] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1440), 1, sym_comment, - ACTIONS(1790), 7, + ACTIONS(801), 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(1788), 45, + ACTIONS(803), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154842,112 +154533,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [13500] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3589), 1, - anon_sym_null, - ACTIONS(3595), 1, - anon_sym_LBRACK, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3601), 1, - anon_sym_DOLLAR, - ACTIONS(3604), 1, - anon_sym_LBRACE, - ACTIONS(3607), 1, - anon_sym_DOT_DOT, - ACTIONS(3613), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3616), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3625), 1, - anon_sym_0b, - ACTIONS(3631), 1, - sym_val_date, - ACTIONS(3634), 1, - anon_sym_DQUOTE, - ACTIONS(3637), 1, - anon_sym_SQUOTE, - ACTIONS(3640), 1, - anon_sym_BQUOTE, - ACTIONS(3643), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3646), 1, - sym_raw_string_begin, - STATE(3901), 1, - sym__val_number_decimal, - STATE(4576), 1, - sym_expr_parenthesized, - STATE(4577), 1, - sym_val_variable, - STATE(4612), 1, - sym__val_number, - STATE(4713), 1, - sym__match_pattern_list, - STATE(5062), 1, - sym_val_bool, - ACTIONS(3586), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3610), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3619), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3628), 2, - anon_sym_0o, - anon_sym_0x, - STATE(1445), 2, - sym_comment, - aux_sym__match_pattern_list_body_repeat1, - STATE(4712), 2, - sym__match_pattern_value, - sym_val_range, - STATE(5043), 2, - sym__match_pattern_expression, - sym__unquoted_in_list, - STATE(5257), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3592), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3622), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3776), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4714), 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, - [13625] = 4, + sym_duration_unit, + [13216] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(1446), 1, + ACTIONS(1830), 1, + anon_sym_LPAREN2, + ACTIONS(1872), 1, + sym__unquoted_pattern, + ACTIONS(3641), 1, + anon_sym_DOT_DOT2, + ACTIONS(3645), 1, + sym_filesize_unit, + ACTIONS(3647), 1, + sym_duration_unit, + STATE(1441), 1, sym_comment, - ACTIONS(791), 8, + STATE(5063), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3643), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(811), 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(793), 45, + ACTIONS(910), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -154980,7 +154593,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, @@ -154990,28 +154602,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, - sym_duration_unit, - [13689] = 6, + [13295] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3649), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3651), 1, - aux_sym__immediate_decimal_token5, - STATE(1447), 1, + STATE(1442), 1, sym_comment, - ACTIONS(1776), 7, + ACTIONS(755), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1774), 44, - ts_builtin_sym_end, + ACTIONS(757), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155024,7 +154629,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, @@ -155055,12 +154662,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [13757] = 4, + sym_duration_unit, + [13360] = 36, ACTIONS(3), 1, anon_sym_POUND, - STATE(1448), 1, + ACTIONS(1408), 1, + anon_sym_null, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1430), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1432), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1438), 1, + anon_sym_0b, + ACTIONS(1444), 1, + anon_sym_DQUOTE, + ACTIONS(1446), 1, + anon_sym_SQUOTE, + ACTIONS(1448), 1, + anon_sym_BQUOTE, + ACTIONS(1456), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(1458), 1, + sym_raw_string_begin, + ACTIONS(1606), 1, + anon_sym_DOT_DOT, + ACTIONS(2772), 1, + anon_sym_DOLLAR, + ACTIONS(2774), 1, + anon_sym_LBRACE, + ACTIONS(2776), 1, + sym_val_date, + ACTIONS(3534), 1, + anon_sym_LBRACK, + STATE(1434), 1, + aux_sym__match_pattern_list_body_repeat1, + STATE(1443), 1, + sym_comment, + STATE(3772), 1, + sym__val_number_decimal, + STATE(4084), 1, + sym_expr_parenthesized, + STATE(4085), 1, + sym_val_variable, + STATE(4451), 1, + sym_val_bool, + STATE(4602), 1, + sym__val_number, + STATE(4647), 1, + sym__unquoted_in_list, + STATE(4648), 1, + sym__match_pattern_expression, + STATE(4906), 1, + sym__match_pattern_list, + ACTIONS(1406), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1428), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(1434), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(1440), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4894), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5490), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1410), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(1436), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3806), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4932), 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, + [13489] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3542), 1, + aux_sym__immediate_decimal_token5, + STATE(1444), 1, sym_comment, - ACTIONS(759), 8, + ACTIONS(763), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -155069,7 +154772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(761), 45, + ACTIONS(765), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155115,22 +154818,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [13821] = 4, + [13556] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1449), 1, + ACTIONS(3649), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3651), 1, + aux_sym__immediate_decimal_token5, + STATE(1445), 1, sym_comment, - ACTIONS(803), 8, + ACTIONS(1804), 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(805), 45, - ts_builtin_sym_end, + ACTIONS(1802), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155143,7 +154848,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, @@ -155174,25 +154881,21 @@ 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, - [13885] = 6, + [13625] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3653), 1, - anon_sym_DOT, - ACTIONS(3655), 1, - aux_sym__immediate_decimal_token5, - STATE(1450), 1, + STATE(1446), 1, sym_comment, - ACTIONS(1790), 7, + ACTIONS(801), 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(1788), 44, + ACTIONS(803), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155237,22 +154940,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [13953] = 5, + sym_duration_unit, + [13689] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3584), 1, - aux_sym__immediate_decimal_token5, - STATE(1451), 1, + STATE(1447), 1, sym_comment, - ACTIONS(1790), 7, + ACTIONS(755), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1788), 45, + ACTIONS(757), 45, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155265,9 +154969,7 @@ static const uint16_t ts_small_parse_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, @@ -155298,14 +155000,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14019] = 5, + sym_duration_unit, + [13753] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3657), 1, + ACTIONS(3653), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3655), 1, aux_sym__immediate_decimal_token5, - STATE(1452), 1, + STATE(1448), 1, sym_comment, - ACTIONS(1868), 7, + ACTIONS(1804), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -155313,7 +155018,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1866), 45, + ACTIONS(1802), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155326,9 +155032,7 @@ static const uint16_t ts_small_parse_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, @@ -155359,12 +155063,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14085] = 4, + [13821] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1453), 1, + ACTIONS(3621), 1, + aux_sym__immediate_decimal_token5, + STATE(1449), 1, sym_comment, - ACTIONS(1776), 7, + ACTIONS(1812), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -155372,7 +155078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1774), 45, + ACTIONS(1810), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155418,104 +155124,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14148] = 22, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_DQUOTE, - ACTIONS(1768), 1, - anon_sym_SQUOTE, - ACTIONS(1770), 1, - anon_sym_BQUOTE, - ACTIONS(1772), 1, - sym_raw_string_begin, - ACTIONS(3663), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3669), 1, - anon_sym_STAR2, - STATE(1454), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3783), 1, - sym_cmd_identifier, - STATE(3804), 1, - sym_val_string, - STATE(4421), 1, - sym_scope_pattern, - STATE(4633), 1, - sym__command_name, - STATE(4636), 1, - sym_wild_card, - STATE(4642), 1, - sym_command_list, - ACTIONS(3659), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3671), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3665), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(2276), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3661), 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, - [14247] = 8, + [13887] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(2108), 1, - anon_sym_LPAREN2, - ACTIONS(3675), 1, - anon_sym_DOT_DOT2, - STATE(1455), 1, + ACTIONS(3657), 1, + aux_sym__immediate_decimal_token5, + STATE(1450), 1, sym_comment, - ACTIONS(3677), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2106), 5, + ACTIONS(1876), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2104), 42, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1874), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155549,6 +155173,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, @@ -155558,27 +155183,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14318] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [13953] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern, - ACTIONS(3679), 1, - anon_sym_DOT_DOT2, - STATE(1456), 1, + STATE(1451), 1, sym_comment, - ACTIONS(3681), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2116), 5, + ACTIONS(775), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2114), 42, + 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, @@ -155591,9 +155213,7 @@ static const uint16_t ts_small_parse_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, @@ -155612,6 +155232,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, @@ -155621,14 +155242,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14389] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [14017] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3655), 1, + ACTIONS(3659), 1, + anon_sym_DOT, + ACTIONS(3661), 1, aux_sym__immediate_decimal_token5, - STATE(1457), 1, + STATE(1452), 1, sym_comment, - ACTIONS(1790), 7, + ACTIONS(1812), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -155636,7 +155262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1788), 44, + ACTIONS(1810), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155681,12 +155307,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14454] = 4, + [14085] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1458), 1, + STATE(1453), 1, sym_comment, - ACTIONS(1868), 7, + ACTIONS(1876), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -155694,7 +155320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1866), 45, + ACTIONS(1874), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155740,12 +155366,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14517] = 4, + [14148] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1459), 1, + ACTIONS(3661), 1, + aux_sym__immediate_decimal_token5, + STATE(1454), 1, sym_comment, - ACTIONS(1923), 7, + ACTIONS(1812), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -155753,7 +155381,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1921), 45, + ACTIONS(1810), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155766,9 +155395,7 @@ static const uint16_t ts_small_parse_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, @@ -155799,23 +155426,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14580] = 5, + [14213] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3683), 1, - aux_sym__immediate_decimal_token5, - STATE(1460), 1, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, + sym__unquoted_pattern, + ACTIONS(3663), 1, + anon_sym_DOT_DOT2, + STATE(1455), 1, sym_comment, - ACTIONS(1868), 7, + ACTIONS(3665), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2101), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1866), 44, - ts_builtin_sym_end, + ACTIONS(2099), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155828,7 +155459,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, @@ -155847,7 +155480,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, @@ -155857,61 +155489,59 @@ 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, - [14645] = 22, + [14284] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1770), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(3663), 1, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3667), 1, + ACTIONS(3675), 1, anon_sym_LBRACK, - ACTIONS(3669), 1, + ACTIONS(3677), 1, anon_sym_STAR2, - STATE(1461), 1, + STATE(1456), 1, sym_comment, - STATE(2099), 1, + STATE(2100), 1, sym__val_number_decimal, - STATE(3783), 1, + STATE(3801), 1, sym_cmd_identifier, - STATE(3804), 1, + STATE(3802), 1, sym_val_string, - STATE(4633), 1, - sym__command_name, - STATE(4635), 1, - sym_scope_pattern, - STATE(4636), 1, + STATE(4367), 1, sym_wild_card, - STATE(4642), 1, + STATE(4373), 1, + sym__command_name, + STATE(4405), 1, sym_command_list, - ACTIONS(3659), 2, + STATE(4428), 1, + sym_scope_pattern, + ACTIONS(3667), 2, anon_sym_export, anon_sym_in, - ACTIONS(3671), 2, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3685), 4, + ACTIONS(3673), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(2276), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3661), 24, + ACTIONS(3669), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -155936,58 +155566,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [14744] = 22, + [14383] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(91), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(93), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(95), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(107), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(3691), 1, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3693), 1, + ACTIONS(3675), 1, anon_sym_LBRACK, - ACTIONS(3695), 1, + ACTIONS(3677), 1, anon_sym_STAR2, - STATE(1462), 1, + STATE(1457), 1, sym_comment, - STATE(2096), 1, + STATE(2100), 1, sym__val_number_decimal, - STATE(4427), 1, + STATE(3801), 1, sym_cmd_identifier, - STATE(4428), 1, + STATE(3802), 1, sym_val_string, - STATE(4705), 1, - sym__command_name, - STATE(4711), 1, - sym_scope_pattern, - STATE(4715), 1, + STATE(4367), 1, sym_wild_card, - STATE(4717), 1, + STATE(4368), 1, + sym_scope_pattern, + STATE(4373), 1, + sym__command_name, + STATE(4405), 1, sym_command_list, - ACTIONS(3671), 2, + ACTIONS(3667), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3687), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3685), 3, - ts_builtin_sym_end, + ACTIONS(3683), 4, sym__newline, anon_sym_SEMI, - STATE(504), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3689), 24, + ACTIONS(3669), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -156012,27 +155643,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [14842] = 8, + [14482] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern, - ACTIONS(3697), 1, - anon_sym_DOT_DOT2, - STATE(1463), 1, + ACTIONS(3685), 1, + aux_sym__immediate_decimal_token5, + STATE(1458), 1, sym_comment, - ACTIONS(3699), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2116), 5, + ACTIONS(1876), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2114), 41, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1874), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156065,6 +155691,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, @@ -156074,12 +155701,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14912] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [14547] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1464), 1, + STATE(1459), 1, sym_comment, - ACTIONS(1776), 7, + ACTIONS(1947), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -156087,8 +155716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1774), 44, - ts_builtin_sym_end, + ACTIONS(1945), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156101,7 +155729,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, @@ -156132,23 +155762,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14974] = 6, + [14610] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3701), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3703), 1, - aux_sym__immediate_decimal_token5, - STATE(1465), 1, + STATE(1460), 1, sym_comment, - ACTIONS(1776), 6, + ACTIONS(1804), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1774), 43, + ACTIONS(1802), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156192,23 +155819,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15040] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [14673] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, - anon_sym_DOT, - ACTIONS(3707), 1, - aux_sym__immediate_decimal_token5, - STATE(1466), 1, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(2129), 1, + anon_sym_LPAREN2, + ACTIONS(3687), 1, + anon_sym_DOT_DOT2, + STATE(1461), 1, sym_comment, - ACTIONS(1790), 6, + ACTIONS(3689), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2127), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1788), 43, + ACTIONS(2125), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156242,7 +155875,68 @@ 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, + [14744] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(2129), 1, anon_sym_LPAREN2, + ACTIONS(3691), 1, + anon_sym_DOT_DOT2, + STATE(1462), 1, + sym_comment, + ACTIONS(3693), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2127), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2125), 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, @@ -156252,7 +155946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15106] = 22, + [14814] = 22, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(91), 1, @@ -156263,47 +155957,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(107), 1, sym_raw_string_begin, - ACTIONS(3691), 1, + ACTIONS(3699), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3693), 1, + ACTIONS(3701), 1, anon_sym_LBRACK, - ACTIONS(3695), 1, + ACTIONS(3703), 1, anon_sym_STAR2, - STATE(1467), 1, + STATE(1463), 1, sym_comment, - STATE(2096), 1, + STATE(2042), 1, sym__val_number_decimal, - STATE(4427), 1, - sym_cmd_identifier, - STATE(4428), 1, + STATE(4397), 1, sym_val_string, - STATE(4689), 1, + STATE(4398), 1, + sym_cmd_identifier, + STATE(4677), 1, + sym_command_list, + STATE(4798), 1, + sym_wild_card, + STATE(4808), 1, sym_scope_pattern, - STATE(4705), 1, + STATE(4810), 1, sym__command_name, - STATE(4715), 1, - sym_wild_card, - STATE(4717), 1, - sym_command_list, - ACTIONS(3671), 2, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3687), 2, + ACTIONS(3695), 2, anon_sym_export, anon_sym_in, - ACTIONS(3665), 3, + ACTIONS(3683), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - STATE(504), 4, + STATE(509), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3689), 24, + ACTIONS(3697), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -156328,28 +156022,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15204] = 8, + [14912] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(2108), 1, - anon_sym_LPAREN2, - ACTIONS(3709), 1, - anon_sym_DOT_DOT2, - STATE(1468), 1, + ACTIONS(3705), 1, + anon_sym_DOT, + ACTIONS(3707), 1, + aux_sym__immediate_decimal_token5, + STATE(1464), 1, sym_comment, - ACTIONS(3711), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2106), 5, + ACTIONS(1812), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2104), 41, - ts_builtin_sym_end, + sym__unquoted_pattern, + ACTIONS(1810), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156362,7 +156051,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, @@ -156381,6 +156072,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, @@ -156390,26 +156082,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15274] = 9, + [14978] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1886), 1, - anon_sym_DOT2, - STATE(438), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(472), 1, - sym_path, - STATE(959), 1, - sym_cell_path, - STATE(1469), 1, + ACTIONS(3709), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3711), 1, + aux_sym__immediate_decimal_token5, + STATE(1465), 1, sym_comment, - ACTIONS(1883), 5, + ACTIONS(1804), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(3713), 13, + sym__unquoted_pattern, + ACTIONS(1802), 43, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -156422,10 +156112,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(1880), 29, - anon_sym_in, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -156444,6 +156132,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, @@ -156453,50 +156142,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15346] = 20, + [15044] = 20, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(255), 1, aux_sym_cmd_identifier_token1, - ACTIONS(885), 1, + ACTIONS(887), 1, sym_raw_string_begin, - ACTIONS(3212), 1, + ACTIONS(3282), 1, anon_sym_DQUOTE, - ACTIONS(3214), 1, + ACTIONS(3284), 1, anon_sym_SQUOTE, - ACTIONS(3216), 1, + ACTIONS(3286), 1, anon_sym_BQUOTE, - ACTIONS(3218), 1, + ACTIONS(3288), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3220), 1, + ACTIONS(3290), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3717), 1, + ACTIONS(3713), 1, anon_sym_LPAREN, - ACTIONS(3719), 1, + ACTIONS(3715), 1, anon_sym_DOLLAR, - STATE(1470), 1, + STATE(1466), 1, sym_comment, - STATE(2124), 1, + STATE(2026), 1, sym__val_number_decimal, - STATE(3179), 1, + STATE(3090), 1, sym__inter_single_quotes, - STATE(3180), 1, + STATE(3091), 1, sym__inter_double_quotes, ACTIONS(281), 2, anon_sym_export, anon_sym_in, - ACTIONS(3671), 2, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2503), 4, + STATE(2515), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(2988), 5, + STATE(2974), 5, sym_cmd_identifier, sym_expr_parenthesized, sym_val_variable, @@ -156527,12 +156216,88 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15440] = 4, + [15138] = 22, ACTIONS(3), 1, anon_sym_POUND, - STATE(1471), 1, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(93), 1, + anon_sym_SQUOTE, + ACTIONS(95), 1, + anon_sym_BQUOTE, + ACTIONS(107), 1, + sym_raw_string_begin, + ACTIONS(3699), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3701), 1, + anon_sym_LBRACK, + ACTIONS(3703), 1, + anon_sym_STAR2, + STATE(1467), 1, + sym_comment, + STATE(2042), 1, + sym__val_number_decimal, + STATE(4397), 1, + sym_val_string, + STATE(4398), 1, + sym_cmd_identifier, + STATE(4677), 1, + sym_command_list, + STATE(4798), 1, + sym_wild_card, + STATE(4810), 1, + sym__command_name, + STATE(4866), 1, + sym_scope_pattern, + ACTIONS(3679), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3681), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3695), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3673), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + STATE(509), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3697), 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, + [15236] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1468), 1, sym_comment, - ACTIONS(1868), 7, + ACTIONS(1804), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -156540,7 +156305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1866), 44, + ACTIONS(1802), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156585,12 +156350,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [15502] = 4, + [15298] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1472), 1, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, + sym__unquoted_pattern, + ACTIONS(3717), 1, + anon_sym_DOT_DOT2, + STATE(1469), 1, sym_comment, - ACTIONS(1923), 7, + ACTIONS(3719), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2101), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2099), 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, + [15368] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1470), 1, + sym_comment, + ACTIONS(1947), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -156598,7 +156425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1921), 44, + ACTIONS(1945), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156643,56 +156470,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [15564] = 20, + [15430] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(19), 1, + ACTIONS(255), 1, aux_sym_cmd_identifier_token1, - ACTIONS(984), 1, + ACTIONS(887), 1, sym_raw_string_begin, - ACTIONS(3436), 1, + ACTIONS(3282), 1, anon_sym_DQUOTE, - ACTIONS(3438), 1, + ACTIONS(3284), 1, anon_sym_SQUOTE, - ACTIONS(3440), 1, + ACTIONS(3286), 1, anon_sym_BQUOTE, - ACTIONS(3442), 1, + ACTIONS(3288), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3444), 1, + ACTIONS(3290), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3721), 1, + ACTIONS(3713), 1, anon_sym_LPAREN, - ACTIONS(3723), 1, + ACTIONS(3715), 1, anon_sym_DOLLAR, - STATE(1473), 1, + STATE(1471), 1, sym_comment, - STATE(2077), 1, + STATE(2026), 1, sym__val_number_decimal, - STATE(3317), 1, + STATE(3090), 1, sym__inter_single_quotes, - STATE(3318), 1, + STATE(3091), 1, sym__inter_double_quotes, - ACTIONS(45), 2, + ACTIONS(281), 2, anon_sym_export, anon_sym_in, - ACTIONS(3671), 2, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2543), 4, + STATE(2515), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3108), 5, + STATE(3076), 5, sym_cmd_identifier, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - ACTIONS(39), 24, + ACTIONS(275), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -156717,56 +156544,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15658] = 20, + [15524] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(255), 1, + ACTIONS(19), 1, aux_sym_cmd_identifier_token1, - ACTIONS(885), 1, + ACTIONS(990), 1, sym_raw_string_begin, - ACTIONS(3212), 1, + ACTIONS(3216), 1, anon_sym_DQUOTE, - ACTIONS(3214), 1, + ACTIONS(3218), 1, anon_sym_SQUOTE, - ACTIONS(3216), 1, + ACTIONS(3220), 1, anon_sym_BQUOTE, - ACTIONS(3218), 1, + ACTIONS(3222), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3220), 1, + ACTIONS(3224), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3717), 1, + ACTIONS(3721), 1, anon_sym_LPAREN, - ACTIONS(3719), 1, + ACTIONS(3723), 1, anon_sym_DOLLAR, - STATE(1474), 1, + STATE(1472), 1, sym_comment, - STATE(2124), 1, + STATE(2141), 1, sym__val_number_decimal, - STATE(3179), 1, - sym__inter_single_quotes, - STATE(3180), 1, + STATE(3372), 1, sym__inter_double_quotes, - ACTIONS(281), 2, + STATE(3375), 1, + sym__inter_single_quotes, + ACTIONS(45), 2, anon_sym_export, anon_sym_in, - ACTIONS(3671), 2, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2503), 4, + STATE(2553), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3125), 5, + STATE(3065), 5, sym_cmd_identifier, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - ACTIONS(275), 24, + ACTIONS(39), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -156791,20 +156618,200 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15752] = 7, + [15618] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1898), 1, + anon_sym_DOT2, + STATE(430), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(466), 1, + sym_path, + STATE(986), 1, + sym_cell_path, + STATE(1473), 1, + sym_comment, + ACTIONS(1915), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(3725), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(1912), 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, + [15690] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1474), 1, + sym_comment, + ACTIONS(1876), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1874), 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, + [15752] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + aux_sym__immediate_decimal_token5, + STATE(1475), 1, + sym_comment, + ACTIONS(1812), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1810), 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, + [15817] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1618), 1, sym__entry_separator, - ACTIONS(3727), 1, + ACTIONS(3735), 1, anon_sym_RBRACE, - ACTIONS(3729), 1, + ACTIONS(3737), 1, sym_raw_string_begin, - STATE(1475), 1, + STATE(1476), 1, sym_comment, - STATE(1483), 1, + STATE(1479), 1, aux_sym__types_body_repeat2, - ACTIONS(3725), 46, + ACTIONS(3733), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -156851,24 +156858,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [15819] = 6, + [15884] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3739), 1, + aux_sym__immediate_decimal_token5, + STATE(1477), 1, + sym_comment, + ACTIONS(1876), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1874), 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, + [15947] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3731), 1, - anon_sym_DOT, - ACTIONS(3733), 1, + ACTIONS(3707), 1, aux_sym__immediate_decimal_token5, - STATE(1476), 1, + STATE(1478), 1, sym_comment, - ACTIONS(1790), 6, + ACTIONS(1812), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1788), 42, - ts_builtin_sym_end, + ACTIONS(1810), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156881,7 +156943,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, @@ -156910,20 +156974,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15884] = 7, + [16010] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(3743), 1, sym__entry_separator, - ACTIONS(3737), 1, - anon_sym_RBRACE, - ACTIONS(3739), 1, + ACTIONS(3746), 1, sym_raw_string_begin, - STATE(1477), 1, + STATE(1479), 2, sym_comment, - STATE(1483), 1, aux_sym__types_body_repeat2, - ACTIONS(3735), 46, + ACTIONS(3741), 47, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -156954,66 +157015,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - [15951] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1624), 1, - sym__entry_separator, - ACTIONS(3729), 1, - sym_raw_string_begin, - ACTIONS(3741), 1, anon_sym_RBRACE, - STATE(1478), 1, - sym_comment, - STATE(1483), 1, - aux_sym__types_body_repeat2, - ACTIONS(3725), 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, @@ -157030,20 +157032,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16018] = 7, + [16073] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1618), 1, sym__entry_separator, - ACTIONS(3729), 1, - sym_raw_string_begin, - ACTIONS(3741), 1, + ACTIONS(3751), 1, anon_sym_RBRACE, + ACTIONS(3754), 1, + sym_raw_string_begin, STATE(1479), 1, - sym_comment, - STATE(1483), 1, aux_sym__types_body_repeat2, - ACTIONS(3725), 46, + STATE(1480), 1, + sym_comment, + ACTIONS(3748), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -157090,20 +157092,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16085] = 7, + [16140] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1618), 1, sym__entry_separator, - ACTIONS(3739), 1, + ACTIONS(3737), 1, sym_raw_string_begin, - ACTIONS(3743), 1, + ACTIONS(3757), 1, anon_sym_RBRACE, - STATE(1480), 1, - sym_comment, - STATE(1483), 1, + STATE(1479), 1, aux_sym__types_body_repeat2, - ACTIONS(3735), 46, + STATE(1481), 1, + sym_comment, + ACTIONS(3733), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -157150,80 +157152,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16152] = 7, - ACTIONS(105), 1, + [16207] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1624), 1, - sym__entry_separator, - ACTIONS(3739), 1, - sym_raw_string_begin, - ACTIONS(3745), 1, - anon_sym_RBRACE, - STATE(1481), 1, + ACTIONS(2417), 1, + anon_sym_DOT2, + STATE(580), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(712), 1, + sym_path, + STATE(1334), 1, + sym_cell_path, + STATE(1482), 1, sym_comment, - STATE(1483), 1, - aux_sym__types_body_repeat2, - ACTIONS(3735), 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, + ACTIONS(1915), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(3725), 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(1912), 29, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_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, - [16219] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [16278] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1618), 1, sym__entry_separator, - ACTIONS(3750), 1, + ACTIONS(3761), 1, anon_sym_RBRACE, - ACTIONS(3753), 1, + ACTIONS(3763), 1, sym_raw_string_begin, - STATE(1482), 1, - sym_comment, - STATE(1483), 1, + STATE(1479), 1, aux_sym__types_body_repeat2, - ACTIONS(3747), 46, + STATE(1483), 1, + sym_comment, + ACTIONS(3759), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -157270,17 +157274,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16286] = 5, + [16345] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3758), 1, + ACTIONS(1618), 1, sym__entry_separator, - ACTIONS(3761), 1, + ACTIONS(3737), 1, sym_raw_string_begin, - STATE(1483), 2, - sym_comment, + ACTIONS(3765), 1, + anon_sym_RBRACE, + STATE(1479), 1, aux_sym__types_body_repeat2, - ACTIONS(3756), 47, + STATE(1484), 1, + sym_comment, + ACTIONS(3733), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -157311,7 +157318,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, @@ -157328,20 +157334,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16349] = 7, + [16412] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1618), 1, sym__entry_separator, - ACTIONS(3729), 1, + ACTIONS(3737), 1, sym_raw_string_begin, - ACTIONS(3763), 1, + ACTIONS(3765), 1, anon_sym_RBRACE, - STATE(1483), 1, + STATE(1479), 1, aux_sym__types_body_repeat2, - STATE(1484), 1, + STATE(1485), 1, sym_comment, - ACTIONS(3725), 46, + ACTIONS(3733), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -157388,20 +157394,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16416] = 7, + [16479] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1618), 1, sym__entry_separator, - ACTIONS(3753), 1, + ACTIONS(3754), 1, sym_raw_string_begin, - ACTIONS(3765), 1, + ACTIONS(3767), 1, anon_sym_RBRACE, - STATE(1483), 1, + STATE(1479), 1, aux_sym__types_body_repeat2, - STATE(1485), 1, + STATE(1486), 1, sym_comment, - ACTIONS(3747), 46, + ACTIONS(3748), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -157448,20 +157454,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16483] = 7, + [16546] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1618), 1, sym__entry_separator, - ACTIONS(3739), 1, + ACTIONS(3763), 1, sym_raw_string_begin, - ACTIONS(3768), 1, + ACTIONS(3770), 1, anon_sym_RBRACE, - STATE(1483), 1, + STATE(1479), 1, aux_sym__types_body_repeat2, - STATE(1486), 1, + STATE(1487), 1, sym_comment, - ACTIONS(3735), 46, + ACTIONS(3759), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -157508,201 +157514,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16550] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3707), 1, - aux_sym__immediate_decimal_token5, - STATE(1487), 1, - sym_comment, - ACTIONS(1790), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1788), 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, - [16613] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3770), 1, - aux_sym__immediate_decimal_token5, - STATE(1488), 1, - sym_comment, - ACTIONS(1868), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1866), 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, - [16676] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2417), 1, - anon_sym_DOT2, - STATE(586), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(737), 1, - sym_path, - STATE(1294), 1, - sym_cell_path, - STATE(1489), 1, - sym_comment, - ACTIONS(1883), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(3713), 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(1880), 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, - [16747] = 6, + [16613] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3772), 1, aux_sym__immediate_decimal_token1, ACTIONS(3774), 1, aux_sym__immediate_decimal_token5, - STATE(1490), 1, + STATE(1488), 1, sym_comment, - ACTIONS(1776), 6, + ACTIONS(1804), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1774), 42, + ACTIONS(1802), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -157745,20 +157573,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16812] = 7, + [16678] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1618), 1, sym__entry_separator, - ACTIONS(3729), 1, - sym_raw_string_begin, - ACTIONS(3776), 1, + ACTIONS(3735), 1, anon_sym_RBRACE, - STATE(1483), 1, + ACTIONS(3737), 1, + sym_raw_string_begin, + STATE(1479), 1, aux_sym__types_body_repeat2, - STATE(1491), 1, + STATE(1489), 1, sym_comment, - ACTIONS(3725), 46, + ACTIONS(3733), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -157805,20 +157633,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16879] = 7, + [16745] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1618), 1, sym__entry_separator, - ACTIONS(3729), 1, - sym_raw_string_begin, ACTIONS(3763), 1, + sym_raw_string_begin, + ACTIONS(3776), 1, anon_sym_RBRACE, - STATE(1483), 1, + STATE(1479), 1, aux_sym__types_body_repeat2, - STATE(1492), 1, + STATE(1490), 1, sym_comment, - ACTIONS(3725), 46, + ACTIONS(3759), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -157865,74 +157693,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16946] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1493), 1, - sym_comment, - ACTIONS(1923), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1921), 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, - [17006] = 6, + [16812] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1618), 1, sym__entry_separator, - ACTIONS(3729), 1, + ACTIONS(3737), 1, sym_raw_string_begin, - STATE(1483), 1, + ACTIONS(3778), 1, + anon_sym_RBRACE, + STATE(1479), 1, aux_sym__types_body_repeat2, - STATE(1494), 1, + STATE(1491), 1, sym_comment, - ACTIONS(3725), 46, + ACTIONS(3733), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -157979,132 +157753,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17070] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2684), 1, - anon_sym_LPAREN2, - ACTIONS(2686), 1, - sym__unquoted_pattern, - STATE(1495), 1, - sym_comment, - ACTIONS(2678), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2676), 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, - [17134] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1496), 1, - sym_comment, - ACTIONS(2578), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2576), 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, - [17194] = 6, + [16879] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1618), 1, sym__entry_separator, - ACTIONS(3739), 1, + ACTIONS(3763), 1, sym_raw_string_begin, - STATE(1483), 1, + ACTIONS(3780), 1, + anon_sym_RBRACE, + STATE(1479), 1, aux_sym__types_body_repeat2, - STATE(1497), 1, + STATE(1492), 1, sym_comment, - ACTIONS(3735), 46, + ACTIONS(3759), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -158151,309 +157813,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17258] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2608), 1, - anon_sym_LPAREN2, - ACTIONS(2610), 1, - sym__unquoted_pattern, - STATE(1498), 1, - sym_comment, - ACTIONS(2606), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2604), 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, - [17322] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern, - STATE(1499), 1, - sym_comment, - ACTIONS(2116), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2114), 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, - [17386] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2630), 1, - anon_sym_LPAREN2, - ACTIONS(2632), 1, - sym__unquoted_pattern, - STATE(1500), 1, - sym_comment, - ACTIONS(1242), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1258), 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, - [17450] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2630), 1, - anon_sym_LPAREN2, - ACTIONS(2632), 1, - sym__unquoted_pattern, - STATE(1501), 1, - sym_comment, - ACTIONS(1234), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1250), 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, - [17514] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern, - STATE(1502), 1, - sym_comment, - ACTIONS(2698), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2696), 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, - [17578] = 4, + [16946] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1503), 1, + STATE(1493), 1, sym_comment, - ACTIONS(1776), 6, + ACTIONS(2598), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1774), 43, + ACTIONS(2596), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -158469,163 +157841,50 @@ static const uint16_t ts_small_parse_table[] = { 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, - [17638] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(1504), 1, - sym_comment, - ACTIONS(3780), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3778), 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, - [17698] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3786), 1, - sym__newline, - STATE(1505), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3782), 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(3784), 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, - [17760] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, + [17006] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3733), 1, - aux_sym__immediate_decimal_token5, - STATE(1506), 1, + ACTIONS(2636), 1, + anon_sym_LPAREN2, + ACTIONS(2638), 1, + sym__unquoted_pattern, + STATE(1494), 1, sym_comment, - ACTIONS(1790), 6, + ACTIONS(1246), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1788), 42, - ts_builtin_sym_end, + ACTIONS(1262), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -158638,7 +157897,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, @@ -158657,7 +157918,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, @@ -158667,22 +157927,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17822] = 6, + [17070] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(2108), 1, + ACTIONS(2103), 1, anon_sym_LPAREN2, - STATE(1507), 1, + ACTIONS(2109), 1, + sym__unquoted_pattern, + STATE(1495), 1, sym_comment, - ACTIONS(2106), 5, + ACTIONS(2101), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2104), 42, + ACTIONS(2099), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -158725,22 +157985,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17886] = 6, + [17134] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - sym__unquoted_pattern, - ACTIONS(2718), 1, - anon_sym_LPAREN2, - STATE(1508), 1, + ACTIONS(3782), 1, + aux_sym__immediate_decimal_token5, + STATE(1496), 1, sym_comment, - ACTIONS(2662), 5, + ACTIONS(1876), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2660), 42, + sym__unquoted_pattern, + ACTIONS(1874), 42, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -158753,9 +158013,7 @@ static const uint16_t ts_small_parse_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, @@ -158774,6 +158032,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, @@ -158783,22 +158042,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17950] = 6, + [17196] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1618), 1, + sym__entry_separator, + ACTIONS(3763), 1, + sym_raw_string_begin, + STATE(1479), 1, + aux_sym__types_body_repeat2, + STATE(1497), 1, + sym_comment, + ACTIONS(3759), 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, + [17260] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2672), 1, - anon_sym_LPAREN2, - ACTIONS(2674), 1, - sym__unquoted_pattern, - STATE(1509), 1, + STATE(1498), 1, sym_comment, - ACTIONS(1616), 5, + ACTIONS(1804), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1738), 42, + sym__unquoted_pattern, + ACTIONS(1802), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -158832,6 +158146,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, @@ -158841,19 +158156,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18014] = 4, + [17320] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1510), 1, + ACTIONS(2636), 1, + anon_sym_LPAREN2, + ACTIONS(2638), 1, + sym__unquoted_pattern, + STATE(1499), 1, sym_comment, - ACTIONS(1868), 6, + ACTIONS(1238), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1866), 43, + ACTIONS(1254), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -158887,7 +158205,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, @@ -158897,21 +158214,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18074] = 5, + [17384] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3789), 1, + ACTIONS(3731), 1, aux_sym__immediate_decimal_token5, - STATE(1511), 1, + STATE(1500), 1, sym_comment, - ACTIONS(1868), 6, + ACTIONS(1812), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1866), 42, + ACTIONS(1810), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -158954,51 +158271,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18136] = 18, + [17446] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_DQUOTE, - ACTIONS(1768), 1, - anon_sym_SQUOTE, - ACTIONS(1770), 1, - anon_sym_BQUOTE, - ACTIONS(1772), 1, - sym_raw_string_begin, - ACTIONS(3663), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3791), 1, - anon_sym_LBRACK, - ACTIONS(3793), 1, - anon_sym_DOLLAR, - ACTIONS(3795), 1, - anon_sym_LBRACE, - STATE(1512), 1, + ACTIONS(3788), 1, + sym__newline, + STATE(1501), 2, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - ACTIONS(3659), 2, + aux_sym__types_body_repeat1, + ACTIONS(3784), 7, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3671), 2, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(3001), 2, - sym_cmd_identifier, - sym_val_string, - STATE(3010), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(2276), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3661), 24, + ACTIONS(3786), 40, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -159023,23 +158313,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [18223] = 6, + 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, + [17508] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2684), 1, - anon_sym_LPAREN2, - ACTIONS(2686), 1, - sym__unquoted_pattern, - STATE(1513), 1, + STATE(1502), 1, sym_comment, - ACTIONS(2678), 5, + ACTIONS(1947), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2676), 41, - ts_builtin_sym_end, + sym__unquoted_pattern, + ACTIONS(1945), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -159052,7 +158353,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, @@ -159071,6 +158374,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, @@ -159080,20 +158384,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18286] = 4, + [17568] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(1503), 1, + sym_comment, + ACTIONS(3793), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3791), 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, + [17628] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1514), 1, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(2129), 1, + anon_sym_LPAREN2, + STATE(1504), 1, sym_comment, - ACTIONS(1868), 6, + ACTIONS(2127), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1866), 42, - ts_builtin_sym_end, + ACTIONS(2125), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -159106,7 +158468,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, @@ -159125,7 +158489,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, @@ -159135,20 +158498,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18345] = 4, + [17692] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1515), 1, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(1505), 1, sym_comment, - ACTIONS(1923), 6, + ACTIONS(2610), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1921), 42, - ts_builtin_sym_end, + ACTIONS(2608), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -159161,7 +158526,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, @@ -159180,7 +158547,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, @@ -159190,23 +158556,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18404] = 6, + [17756] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2608), 1, - anon_sym_LPAREN2, - ACTIONS(2610), 1, - sym__unquoted_pattern, - STATE(1516), 1, + STATE(1506), 1, sym_comment, - ACTIONS(2606), 5, + ACTIONS(1876), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2604), 41, - ts_builtin_sym_end, + sym__unquoted_pattern, + ACTIONS(1874), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -159219,7 +158581,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, @@ -159238,6 +158602,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, @@ -159247,23 +158612,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18467] = 6, + [17816] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2630), 1, + ACTIONS(2720), 1, anon_sym_LPAREN2, - ACTIONS(2632), 1, + ACTIONS(2722), 1, sym__unquoted_pattern, - STATE(1517), 1, + STATE(1507), 1, sym_comment, - ACTIONS(1242), 5, + ACTIONS(1610), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1258), 41, - ts_builtin_sym_end, + ACTIONS(1736), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -159276,7 +158640,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, @@ -159304,23 +158670,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18530] = 6, + [17880] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1618), 1, + sym__entry_separator, + ACTIONS(3737), 1, + sym_raw_string_begin, + STATE(1479), 1, + aux_sym__types_body_repeat2, + STATE(1508), 1, + sym_comment, + ACTIONS(3733), 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, + [17944] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2630), 1, + ACTIONS(2103), 1, anon_sym_LPAREN2, - ACTIONS(2632), 1, + ACTIONS(2109), 1, sym__unquoted_pattern, - STATE(1518), 1, + STATE(1509), 1, sym_comment, - ACTIONS(1234), 5, + ACTIONS(2642), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1250), 41, - ts_builtin_sym_end, + ACTIONS(2640), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -159333,7 +158756,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, @@ -159361,91 +158786,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18593] = 20, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_DQUOTE, - ACTIONS(1768), 1, - anon_sym_SQUOTE, - ACTIONS(1770), 1, - anon_sym_BQUOTE, - ACTIONS(1772), 1, - sym_raw_string_begin, - ACTIONS(2786), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2834), 1, - anon_sym_COLON2, - ACTIONS(3663), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3797), 1, - anon_sym_DASH_DASH, - STATE(1519), 1, - sym_comment, - STATE(1730), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, - sym__val_number_decimal, - STATE(2173), 1, - sym_long_flag, - STATE(3783), 1, - sym_cmd_identifier, - STATE(3804), 1, - sym_val_string, - STATE(3917), 1, - sym__command_name, - ACTIONS(3799), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3801), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2276), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3659), 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, - [18684] = 4, + [18008] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1520), 1, + ACTIONS(2716), 1, + anon_sym_LPAREN2, + ACTIONS(2718), 1, + sym__unquoted_pattern, + STATE(1510), 1, sym_comment, - ACTIONS(2578), 6, + ACTIONS(2714), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2576), 42, - ts_builtin_sym_end, + ACTIONS(2712), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -159458,7 +158814,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, @@ -159477,7 +158835,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, @@ -159487,88 +158844,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18743] = 18, - 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(107), 1, - sym_raw_string_begin, - ACTIONS(3691), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3805), 1, - anon_sym_DOLLAR, - ACTIONS(3807), 1, - anon_sym_LBRACE, - STATE(1521), 1, - sym_comment, - STATE(2096), 1, - sym__val_number_decimal, - ACTIONS(3671), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3687), 2, - anon_sym_export, - anon_sym_in, - STATE(3291), 2, - sym_cmd_identifier, - sym_val_string, - STATE(3321), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(504), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3689), 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, - [18830] = 5, + [18072] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1522), 1, + ACTIONS(1697), 1, + sym__unquoted_pattern, + ACTIONS(2710), 1, + anon_sym_LPAREN2, + STATE(1511), 1, sym_comment, - ACTIONS(2586), 5, + ACTIONS(2708), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(3809), 14, - anon_sym_finally, + ACTIONS(2706), 42, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -159581,10 +158873,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2584), 29, - anon_sym_in, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -159612,94 +158902,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18891] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1440), 1, - anon_sym_DQUOTE, - ACTIONS(1442), 1, - anon_sym_SQUOTE, - ACTIONS(1444), 1, - anon_sym_BQUOTE, - ACTIONS(1454), 1, - sym_raw_string_begin, - ACTIONS(3816), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3818), 1, - sym__newline, - ACTIONS(3820), 1, - anon_sym_RBRACK, - STATE(1523), 1, - sym_comment, - STATE(1718), 1, - aux_sym__types_body_repeat1, - STATE(1755), 1, - aux_sym__command_list_body_repeat1, - STATE(2131), 1, - sym__val_number_decimal, - STATE(4772), 1, - sym__command_name, - STATE(4993), 1, - sym_cmd_identifier, - STATE(4994), 1, - sym_val_string, - STATE(5125), 1, - sym__command_list_body, - ACTIONS(3671), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3812), 2, - anon_sym_export, - anon_sym_in, - STATE(3776), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3814), 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, - [18984] = 6, + [18136] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2672), 1, + ACTIONS(2716), 1, anon_sym_LPAREN2, - ACTIONS(2674), 1, + ACTIONS(2718), 1, sym__unquoted_pattern, - STATE(1524), 1, + STATE(1512), 1, sym_comment, - ACTIONS(1616), 5, + ACTIONS(2714), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1738), 41, + ACTIONS(2712), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -159741,178 +158959,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19047] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1525), 1, - sym_comment, - ACTIONS(2626), 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(2628), 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, - [19106] = 18, + [18199] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1444), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1446), 1, anon_sym_SQUOTE, - ACTIONS(1770), 1, + ACTIONS(1448), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1458), 1, sym_raw_string_begin, - ACTIONS(3663), 1, + ACTIONS(3799), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3793), 1, - anon_sym_DOLLAR, - ACTIONS(3822), 1, + ACTIONS(3801), 1, anon_sym_LBRACK, - ACTIONS(3824), 1, + ACTIONS(3803), 1, + anon_sym_DOLLAR, + ACTIONS(3805), 1, anon_sym_LBRACE, - STATE(1526), 1, + STATE(1513), 1, sym_comment, - STATE(2099), 1, + STATE(2075), 1, sym__val_number_decimal, - ACTIONS(3659), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3671), 2, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3001), 2, + ACTIONS(3795), 2, + anon_sym_export, + anon_sym_in, + STATE(5067), 2, sym_cmd_identifier, sym_val_string, - STATE(3010), 3, + STATE(5066), 3, sym_val_variable, sym_val_list, sym_val_record, - STATE(2276), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3661), 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, - [19193] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1440), 1, - anon_sym_DQUOTE, - ACTIONS(1442), 1, - anon_sym_SQUOTE, - ACTIONS(1444), 1, - anon_sym_BQUOTE, - ACTIONS(1454), 1, - sym_raw_string_begin, - ACTIONS(3816), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3818), 1, - sym__newline, - ACTIONS(3826), 1, - anon_sym_RBRACK, - STATE(1527), 1, - sym_comment, - STATE(1718), 1, - aux_sym__types_body_repeat1, - STATE(1755), 1, - aux_sym__command_list_body_repeat1, - STATE(2131), 1, - sym__val_number_decimal, - STATE(4772), 1, - sym__command_name, - STATE(4993), 1, - sym_cmd_identifier, - STATE(4994), 1, - sym_val_string, - STATE(5250), 1, - sym__command_list_body, - ACTIONS(3671), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3812), 2, - anon_sym_export, - anon_sym_in, - STATE(3776), 4, + STATE(3806), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3814), 24, + ACTIONS(3797), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -159937,20 +159028,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [19286] = 5, + [18286] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1806), 1, + ACTIONS(2636), 1, + anon_sym_LPAREN2, + ACTIONS(2638), 1, sym__unquoted_pattern, - STATE(1528), 1, + STATE(1514), 1, sym_comment, - ACTIONS(811), 5, + ACTIONS(1246), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(914), 42, + ACTIONS(1262), 41, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -159963,9 +159057,7 @@ static const uint16_t ts_small_parse_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, @@ -159993,70 +159085,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19347] = 5, - ACTIONS(105), 1, + [18349] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - STATE(1529), 1, + ACTIONS(2636), 1, + anon_sym_LPAREN2, + ACTIONS(2638), 1, + sym__unquoted_pattern, + STATE(1515), 1, sym_comment, - ACTIONS(2576), 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(2578), 29, - anon_sym_in, + ACTIONS(1238), 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, - [19408] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - STATE(1530), 1, - sym_comment, - ACTIONS(2604), 18, + ACTIONS(1254), 41, + ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -160068,18 +159114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_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(2606), 29, - anon_sym_in, - anon_sym_GT2, anon_sym_DASH2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -160090,37 +159125,39 @@ 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, - [19469] = 6, + [18412] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1697), 1, sym__unquoted_pattern, - ACTIONS(2108), 1, + ACTIONS(2710), 1, anon_sym_LPAREN2, - STATE(1531), 1, + STATE(1516), 1, sym_comment, - ACTIONS(2106), 5, + ACTIONS(2708), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2104), 41, + ACTIONS(2706), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -160162,83 +159199,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19532] = 18, + [18475] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3691), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3828), 1, - anon_sym_LBRACK, - ACTIONS(3830), 1, - anon_sym_DOLLAR, - ACTIONS(3832), 1, - anon_sym_LBRACE, - ACTIONS(3834), 1, - anon_sym_DQUOTE, - ACTIONS(3836), 1, - anon_sym_SQUOTE, - ACTIONS(3838), 1, - anon_sym_BQUOTE, - ACTIONS(3840), 1, - sym_raw_string_begin, - STATE(1532), 1, + STATE(1517), 1, sym_comment, - STATE(2096), 1, - sym__val_number_decimal, - ACTIONS(3671), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3687), 2, - anon_sym_export, - anon_sym_in, - STATE(3291), 2, - sym_cmd_identifier, - sym_val_string, - STATE(3321), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(2411), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3689), 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, + ACTIONS(2407), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(3807), 14, 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, - [19619] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - STATE(1533), 1, - sym_comment, - ACTIONS(914), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -160252,16 +159225,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(811), 29, + ACTIONS(2405), 29, anon_sym_in, - anon_sym_GT2, anon_sym_DASH2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -160272,37 +159238,39 @@ 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, - [19680] = 6, + [18536] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2118), 1, + ACTIONS(2103), 1, anon_sym_LPAREN2, - ACTIONS(2124), 1, + ACTIONS(2109), 1, sym__unquoted_pattern, - STATE(1534), 1, + STATE(1518), 1, sym_comment, - ACTIONS(2698), 5, + ACTIONS(2101), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2696), 41, + ACTIONS(2099), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -160344,51 +159312,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19743] = 18, + [18599] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3056), 1, - anon_sym_DQUOTE, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - ACTIONS(3068), 1, - sym_raw_string_begin, - ACTIONS(3846), 1, + ACTIONS(3699), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3848), 1, + ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3850), 1, + ACTIONS(3812), 1, anon_sym_DOLLAR, - ACTIONS(3852), 1, + ACTIONS(3814), 1, anon_sym_LBRACE, - STATE(1535), 1, + ACTIONS(3816), 1, + anon_sym_DQUOTE, + ACTIONS(3818), 1, + anon_sym_SQUOTE, + ACTIONS(3820), 1, + anon_sym_BQUOTE, + ACTIONS(3822), 1, + sym_raw_string_begin, + STATE(1519), 1, sym_comment, - STATE(2134), 1, + STATE(2042), 1, sym__val_number_decimal, - ACTIONS(3671), 2, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3842), 2, + ACTIONS(3695), 2, anon_sym_export, anon_sym_in, - STATE(3433), 2, + STATE(3383), 2, sym_cmd_identifier, sym_val_string, - STATE(3434), 3, + STATE(3379), 3, sym_val_variable, sym_val_list, sym_val_record, - STATE(2599), 4, + STATE(2404), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3844), 24, + ACTIONS(3697), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -160413,19 +159381,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [19830] = 4, + [18686] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1536), 1, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, + sym__unquoted_pattern, + STATE(1520), 1, sym_comment, - ACTIONS(1776), 6, + ACTIONS(2642), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1774), 42, + ACTIONS(2640), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -160458,7 +159429,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, @@ -160468,24 +159438,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19889] = 6, - ACTIONS(3), 1, + [18749] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern, - STATE(1537), 1, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + STATE(1521), 1, sym_comment, - ACTIONS(2116), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2114), 41, - ts_builtin_sym_end, - anon_sym_in, + ACTIONS(2608), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -160497,64 +159457,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_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_RPAREN, + anon_sym_RBRACE, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_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, - [19952] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1711), 1, - sym__unquoted_pattern, - ACTIONS(2718), 1, - anon_sym_LPAREN2, - STATE(1538), 1, - sym_comment, - ACTIONS(2662), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2660), 41, - ts_builtin_sym_end, + ACTIONS(2610), 29, 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_GT2, anon_sym_DASH2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -160564,138 +159478,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_starts_DASHwith2, anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_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, - [20015] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_DQUOTE, - ACTIONS(1768), 1, - anon_sym_SQUOTE, - ACTIONS(1770), 1, - anon_sym_BQUOTE, - ACTIONS(1772), 1, - sym_raw_string_begin, - ACTIONS(2945), 1, - anon_sym_DOLLAR, - ACTIONS(3663), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3854), 1, - anon_sym_LBRACK, - ACTIONS(3856), 1, - anon_sym_LBRACE, - STATE(1539), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - ACTIONS(3659), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3671), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(3001), 2, - sym_cmd_identifier, - sym_val_string, - STATE(3010), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(2276), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3661), 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, - [20102] = 18, + 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, + [18810] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1440), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1442), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1444), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1454), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(3816), 1, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3858), 1, + ACTIONS(3824), 1, anon_sym_LBRACK, - ACTIONS(3860), 1, + ACTIONS(3826), 1, anon_sym_DOLLAR, - ACTIONS(3862), 1, + ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(1540), 1, + STATE(1522), 1, sym_comment, - STATE(2131), 1, + STATE(2100), 1, sym__val_number_decimal, - ACTIONS(3671), 2, + ACTIONS(3667), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3812), 2, - anon_sym_export, - anon_sym_in, - STATE(5078), 2, + STATE(3040), 2, sym_cmd_identifier, sym_val_string, - STATE(5089), 3, + STATE(3041), 3, sym_val_variable, sym_val_list, sym_val_record, - STATE(3776), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3814), 24, + ACTIONS(3669), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -160720,51 +159563,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [20189] = 18, + [18897] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1440), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1442), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1444), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1454), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(3816), 1, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3864), 1, - anon_sym_LBRACK, - ACTIONS(3866), 1, + ACTIONS(3826), 1, anon_sym_DOLLAR, - ACTIONS(3868), 1, + ACTIONS(3830), 1, + anon_sym_LBRACK, + ACTIONS(3832), 1, anon_sym_LBRACE, - STATE(1541), 1, + STATE(1523), 1, sym_comment, - STATE(2131), 1, + STATE(2100), 1, sym__val_number_decimal, - ACTIONS(3671), 2, + ACTIONS(3667), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3812), 2, - anon_sym_export, - anon_sym_in, - STATE(5078), 2, + STATE(3040), 2, sym_cmd_identifier, sym_val_string, - STATE(5089), 3, + STATE(3041), 3, sym_val_variable, sym_val_list, sym_val_record, - STATE(3776), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3814), 24, + ACTIONS(3669), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -160789,36 +159632,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [20276] = 12, - ACTIONS(3), 1, + [18984] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2967), 1, - sym__newline, - ACTIONS(3870), 1, - anon_sym_DASH2, - ACTIONS(3878), 1, - anon_sym_PLUS2, - STATE(1542), 1, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + STATE(1524), 1, sym_comment, - STATE(1643), 1, - aux_sym__repeat_newline, - ACTIONS(2838), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3872), 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(2836), 33, - anon_sym_in, + ACTIONS(2596), 18, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160830,6 +159652,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_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + ACTIONS(2598), 29, + anon_sym_in, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -160840,320 +159673,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, + anon_sym_LT2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [20350] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(1543), 1, - sym_comment, - STATE(4728), 1, - sym_block, - STATE(4981), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [20430] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(1544), 1, - sym_comment, - STATE(4729), 1, - sym_block, - STATE(4985), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [20510] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(1545), 1, - sym_comment, - STATE(4730), 1, - sym_block, - STATE(4988), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [20590] = 15, + [19045] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(1546), 1, + STATE(1525), 1, sym_comment, - STATE(4731), 1, - sym_block, - STATE(4991), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [20670] = 19, + ACTIONS(2658), 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(2660), 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, + [19104] = 20, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1770), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(2986), 1, + ACTIONS(2800), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3663), 1, + ACTIONS(2838), 1, + anon_sym_COLON2, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3797), 1, + ACTIONS(3834), 1, anon_sym_DASH_DASH, - STATE(1547), 1, + STATE(1526), 1, sym_comment, - STATE(1710), 1, + STATE(1708), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2100), 1, sym__val_number_decimal, - STATE(2173), 1, + STATE(2168), 1, sym_long_flag, - STATE(3783), 1, + STATE(3801), 1, sym_cmd_identifier, - STATE(3804), 1, + STATE(3802), 1, sym_val_string, - STATE(3892), 1, + STATE(3985), 1, sym__command_name, - ACTIONS(3799), 2, + ACTIONS(3836), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3801), 2, + ACTIONS(3838), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2276), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3659), 26, + ACTIONS(3667), 26, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -161180,200 +159814,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [20758] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(1548), 1, - sym_comment, - STATE(4431), 1, - sym_block, - STATE(5098), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [20838] = 15, + [19195] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(1549), 1, - sym_comment, - STATE(4432), 1, - sym_block, - STATE(5099), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [20918] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2986), 1, - aux_sym_cmd_identifier_token2, - STATE(1550), 1, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(2129), 1, + anon_sym_LPAREN2, + STATE(1527), 1, sym_comment, - ACTIONS(2576), 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(2578), 29, - anon_sym_in, + ACTIONS(2127), 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, - [20978] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2986), 1, - aux_sym_cmd_identifier_token2, - STATE(1551), 1, - sym_comment, - ACTIONS(2604), 17, + ACTIONS(2125), 41, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161385,16 +159843,7 @@ static const uint16_t 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(2606), 29, - anon_sym_in, - anon_sym_GT2, anon_sym_DASH2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -161403,1747 +159852,1249 @@ static const uint16_t ts_small_parse_table[] = { 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, - [21038] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(1552), 1, - sym_comment, - STATE(4468), 1, - sym_block, - STATE(5009), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21118] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(1553), 1, - sym_comment, - STATE(4469), 1, - sym_block, - STATE(5100), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21198] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(1554), 1, - sym_comment, - STATE(4481), 1, - sym_block, - STATE(4995), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21278] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(1555), 1, - sym_comment, - STATE(4483), 1, - sym_block, - STATE(5007), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21358] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(1556), 1, - sym_comment, - STATE(4485), 1, - sym_block, - STATE(5019), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21438] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(1557), 1, - sym_comment, - STATE(4486), 1, - sym_block, - STATE(5030), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21518] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(1558), 1, - sym_comment, - STATE(4718), 1, - sym_block, - STATE(4943), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21598] = 15, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, + [19258] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(1559), 1, + ACTIONS(1840), 1, + sym__unquoted_pattern, + STATE(1528), 1, sym_comment, - STATE(4742), 1, - sym_block, - STATE(5000), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21678] = 15, + ACTIONS(811), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(910), 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, + [19319] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(1560), 1, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(1529), 1, sym_comment, - STATE(4800), 1, - sym_block, - STATE(4997), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21758] = 15, + ACTIONS(2610), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2608), 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, + [19382] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + STATE(1530), 1, + sym_comment, + ACTIONS(910), 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(811), 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, + [19443] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(1561), 1, + STATE(1531), 1, sym_comment, - STATE(4807), 1, - sym_block, - STATE(5054), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21838] = 15, + ACTIONS(1876), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1874), 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, + [19502] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(1562), 1, + STATE(1532), 1, sym_comment, - STATE(4514), 1, - sym_block, - STATE(5072), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21918] = 15, + ACTIONS(1804), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1802), 42, + ts_builtin_sym_end, + 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, + [19561] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(93), 1, + anon_sym_SQUOTE, + ACTIONS(95), 1, + anon_sym_BQUOTE, + ACTIONS(107), 1, + sym_raw_string_begin, + ACTIONS(3699), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3840), 1, anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3896), 1, + ACTIONS(3842), 1, + anon_sym_DOLLAR, + ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(1563), 1, + STATE(1533), 1, sym_comment, - STATE(4515), 1, - sym_block, - STATE(5075), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21998] = 15, + STATE(2042), 1, + sym__val_number_decimal, + ACTIONS(3679), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3681), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3695), 2, + anon_sym_export, + anon_sym_in, + STATE(3383), 2, + sym_cmd_identifier, + sym_val_string, + STATE(3379), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(509), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3697), 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, + [19648] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(1564), 1, + ACTIONS(1444), 1, + anon_sym_DQUOTE, + ACTIONS(1446), 1, + anon_sym_SQUOTE, + ACTIONS(1448), 1, + anon_sym_BQUOTE, + ACTIONS(1458), 1, + sym_raw_string_begin, + ACTIONS(3799), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3846), 1, + sym__newline, + ACTIONS(3848), 1, + anon_sym_RBRACK, + STATE(1534), 1, sym_comment, - STATE(4517), 1, - sym_block, - STATE(5076), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22078] = 15, + STATE(1730), 1, + aux_sym__types_body_repeat1, + STATE(1749), 1, + aux_sym__command_list_body_repeat1, + STATE(2075), 1, + sym__val_number_decimal, + STATE(4930), 1, + sym__command_name, + STATE(4965), 1, + sym_cmd_identifier, + STATE(5041), 1, + sym_val_string, + STATE(5513), 1, + sym__command_list_body, + ACTIONS(3679), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3681), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3795), 2, + anon_sym_export, + anon_sym_in, + STATE(3806), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3797), 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, + [19741] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(1565), 1, + STATE(1535), 1, sym_comment, - STATE(4526), 1, - sym_block, - STATE(5077), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22158] = 15, + ACTIONS(1947), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1945), 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, + [19800] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, + ACTIONS(1444), 1, + anon_sym_DQUOTE, + ACTIONS(1446), 1, + anon_sym_SQUOTE, + ACTIONS(1448), 1, + anon_sym_BQUOTE, + ACTIONS(1458), 1, + sym_raw_string_begin, + ACTIONS(3799), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3896), 1, + ACTIONS(3852), 1, + anon_sym_DOLLAR, + ACTIONS(3854), 1, anon_sym_LBRACE, - STATE(1566), 1, + STATE(1536), 1, sym_comment, - STATE(4542), 1, - sym_block, - STATE(5091), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22238] = 15, + STATE(2075), 1, + sym__val_number_decimal, + ACTIONS(3679), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3681), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3795), 2, + anon_sym_export, + anon_sym_in, + STATE(5067), 2, + sym_cmd_identifier, + sym_val_string, + STATE(5066), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(3806), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3797), 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, + [19887] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(1567), 1, + ACTIONS(1444), 1, + anon_sym_DQUOTE, + ACTIONS(1446), 1, + anon_sym_SQUOTE, + ACTIONS(1448), 1, + anon_sym_BQUOTE, + ACTIONS(1458), 1, + sym_raw_string_begin, + ACTIONS(3799), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3846), 1, + sym__newline, + ACTIONS(3856), 1, + anon_sym_RBRACK, + STATE(1537), 1, sym_comment, - STATE(4543), 1, - sym_block, - STATE(4935), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22318] = 15, + STATE(1730), 1, + aux_sym__types_body_repeat1, + STATE(1749), 1, + aux_sym__command_list_body_repeat1, + STATE(2075), 1, + sym__val_number_decimal, + STATE(4930), 1, + sym__command_name, + STATE(4965), 1, + sym_cmd_identifier, + STATE(5041), 1, + sym_val_string, + STATE(5335), 1, + sym__command_list_body, + ACTIONS(3679), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3681), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3795), 2, + anon_sym_export, + anon_sym_in, + STATE(3806), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3797), 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, + [19980] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, + ACTIONS(1764), 1, + anon_sym_DQUOTE, + ACTIONS(1766), 1, + anon_sym_SQUOTE, + ACTIONS(1768), 1, + anon_sym_BQUOTE, + ACTIONS(1770), 1, + sym_raw_string_begin, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + ACTIONS(3671), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3858), 1, anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3894), 1, + ACTIONS(3860), 1, anon_sym_LBRACE, - STATE(1568), 1, + STATE(1538), 1, sym_comment, - STATE(4903), 1, - sym_block, - STATE(5055), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22398] = 15, + STATE(2100), 1, + sym__val_number_decimal, + ACTIONS(3667), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3679), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3681), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(3040), 2, + sym_cmd_identifier, + sym_val_string, + STATE(3041), 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(3669), 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, + [20067] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(1569), 1, + ACTIONS(2720), 1, + anon_sym_LPAREN2, + ACTIONS(2722), 1, + sym__unquoted_pattern, + STATE(1539), 1, sym_comment, - STATE(4904), 1, - sym_block, - STATE(5057), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22478] = 15, + ACTIONS(1610), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1736), 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, + [20130] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, + ACTIONS(3036), 1, + anon_sym_DQUOTE, + ACTIONS(3038), 1, + anon_sym_SQUOTE, + ACTIONS(3040), 1, + anon_sym_BQUOTE, + ACTIONS(3048), 1, + sym_raw_string_begin, + ACTIONS(3866), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3868), 1, anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3894), 1, + ACTIONS(3870), 1, + anon_sym_DOLLAR, + ACTIONS(3872), 1, anon_sym_LBRACE, - STATE(1570), 1, + STATE(1540), 1, sym_comment, - STATE(4906), 1, - sym_block, - STATE(5060), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22558] = 15, + STATE(2079), 1, + sym__val_number_decimal, + ACTIONS(3679), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3681), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3862), 2, + anon_sym_export, + anon_sym_in, + STATE(3482), 2, + sym_cmd_identifier, + sym_val_string, + STATE(3483), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(2583), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3864), 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, + [20217] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(1571), 1, + STATE(1541), 1, sym_comment, - STATE(4907), 1, - sym_block, - STATE(5063), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22638] = 15, + ACTIONS(2598), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(2596), 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, + [20276] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, + ACTIONS(2989), 1, + sym__newline, + ACTIONS(3878), 1, + anon_sym_DASH2, ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, + anon_sym_PLUS2, ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(1572), 1, + anon_sym_bit_DASHand2, + STATE(1542), 1, sym_comment, - STATE(4855), 1, - sym_block, - STATE(4979), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, + STATE(1656), 1, + aux_sym__repeat_newline, + ACTIONS(3876), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3880), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3886), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22718] = 15, - ACTIONS(3), 1, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3892), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3882), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3884), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3874), 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(2794), 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, + [20358] = 19, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(1573), 1, + ACTIONS(1764), 1, + anon_sym_DQUOTE, + ACTIONS(1766), 1, + anon_sym_SQUOTE, + ACTIONS(1768), 1, + anon_sym_BQUOTE, + ACTIONS(1770), 1, + sym_raw_string_begin, + ACTIONS(2994), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3671), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3834), 1, + anon_sym_DASH_DASH, + STATE(1543), 1, sym_comment, - STATE(4559), 1, - sym_block, - STATE(4977), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22798] = 15, + STATE(1725), 1, + aux_sym_decl_def_repeat1, + STATE(2100), 1, + sym__val_number_decimal, + STATE(2168), 1, + sym_long_flag, + STATE(3801), 1, + sym_cmd_identifier, + STATE(3802), 1, + sym_val_string, + STATE(3969), 1, + sym__command_name, + ACTIONS(3836), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3838), 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(3667), 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, + [20446] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(1574), 1, + anon_sym_DASH2, + ACTIONS(3904), 1, + anon_sym_PLUS2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(1544), 1, sym_comment, - STATE(4560), 1, - sym_block, - STATE(4982), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22878] = 15, + ACTIONS(2850), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3898), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3900), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3902), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2848), 36, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [20516] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(1575), 1, + anon_sym_DASH2, + ACTIONS(3904), 1, + anon_sym_PLUS2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(1545), 1, sym_comment, - STATE(4571), 1, - sym_block, - STATE(5052), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22958] = 15, + ACTIONS(3898), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3900), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3902), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3908), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3914), 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(3912), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3906), 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(2848), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [20594] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(1576), 1, - sym_comment, - STATE(4573), 1, - sym_block, - STATE(5056), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23038] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(1577), 1, + anon_sym_DASH2, + ACTIONS(3904), 1, + anon_sym_PLUS2, + ACTIONS(3916), 1, + anon_sym_bit_DASHand2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(1546), 1, sym_comment, - STATE(4860), 1, - sym_block, - STATE(4983), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23118] = 15, + ACTIONS(3898), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3900), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3902), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3908), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3914), 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(3912), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3906), 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(2848), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [20674] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, + ACTIONS(3918), 1, anon_sym_COLON, - ACTIONS(3884), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(3890), 1, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(3928), 1, anon_sym_oneof, - ACTIONS(3896), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, - STATE(1578), 1, + STATE(1547), 1, sym_comment, - STATE(4590), 1, + STATE(4792), 1, sym_block, - STATE(5014), 1, + STATE(5021), 1, sym_returns, - STATE(5304), 1, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, sym__one_type, - STATE(5308), 1, - sym__multiple_types, STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, + sym__multiple_types, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(2679), 4, + STATE(2720), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -163175,40 +161126,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23198] = 15, + [20754] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, + ACTIONS(3918), 1, anon_sym_COLON, - ACTIONS(3884), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(3890), 1, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(3928), 1, anon_sym_oneof, - ACTIONS(3896), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, - STATE(1579), 1, + STATE(1548), 1, sym_comment, - STATE(4591), 1, + STATE(4790), 1, sym_block, - STATE(5025), 1, + STATE(5022), 1, sym_returns, - STATE(5304), 1, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, sym__one_type, - STATE(5308), 1, - sym__multiple_types, STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, + sym__multiple_types, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(2679), 4, + STATE(2720), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -163240,40 +161191,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23278] = 15, + [20834] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3896), 1, + anon_sym_DASH2, + ACTIONS(3904), 1, + anon_sym_PLUS2, + ACTIONS(3916), 1, + anon_sym_bit_DASHand2, + ACTIONS(3932), 1, + anon_sym_bit_DASHxor2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(1549), 1, + sym_comment, + ACTIONS(3898), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3900), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3902), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3908), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3914), 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(3912), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3906), 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(2848), 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, + [20916] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, + ACTIONS(3918), 1, anon_sym_COLON, - ACTIONS(3884), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(3890), 1, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(3928), 1, anon_sym_oneof, - ACTIONS(3896), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, - STATE(1580), 1, + STATE(1550), 1, sym_comment, - STATE(4592), 1, + STATE(4709), 1, sym_block, - STATE(5028), 1, + STATE(5089), 1, sym_returns, - STATE(5304), 1, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, sym__one_type, - STATE(5308), 1, - sym__multiple_types, STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, + sym__multiple_types, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(2679), 4, + STATE(2720), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -163305,40 +161322,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23358] = 15, + [20996] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, + ACTIONS(3918), 1, anon_sym_COLON, - ACTIONS(3884), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(3890), 1, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(3928), 1, anon_sym_oneof, - ACTIONS(3896), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, - STATE(1581), 1, + STATE(1551), 1, sym_comment, - STATE(4593), 1, + STATE(4711), 1, sym_block, - STATE(5031), 1, + STATE(5088), 1, sym_returns, - STATE(5304), 1, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, sym__one_type, - STATE(5308), 1, - sym__multiple_types, STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, + sym__multiple_types, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(2679), 4, + STATE(2720), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -163370,40 +161387,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23438] = 15, + [21076] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, + ACTIONS(3918), 1, anon_sym_COLON, - ACTIONS(3884), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(3890), 1, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(3928), 1, anon_sym_oneof, - ACTIONS(3896), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, - STATE(1582), 1, + STATE(1552), 1, sym_comment, - STATE(4601), 1, + STATE(4713), 1, sym_block, - STATE(4937), 1, + STATE(5087), 1, sym_returns, - STATE(5304), 1, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, sym__one_type, - STATE(5308), 1, - sym__multiple_types, STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, + sym__multiple_types, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(2679), 4, + STATE(2720), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -163435,40 +161452,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23518] = 15, + [21156] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, + ACTIONS(3918), 1, anon_sym_COLON, - ACTIONS(3884), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(3890), 1, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(3928), 1, anon_sym_oneof, - ACTIONS(3896), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, - STATE(1583), 1, + STATE(1553), 1, sym_comment, - STATE(4602), 1, + STATE(4715), 1, sym_block, - STATE(4948), 1, + STATE(5085), 1, sym_returns, - STATE(5304), 1, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, sym__one_type, - STATE(5308), 1, - sym__multiple_types, STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, + sym__multiple_types, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(2679), 4, + STATE(2720), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -163500,14 +161517,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23598] = 5, + [21236] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(3878), 1, + anon_sym_DASH2, + ACTIONS(3890), 1, + anon_sym_PLUS2, + ACTIONS(3894), 1, + anon_sym_bit_DASHand2, + ACTIONS(3934), 1, + anon_sym_and2, + ACTIONS(3936), 1, + anon_sym_xor2, + ACTIONS(3938), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3940), 1, + anon_sym_bit_DASHor2, + STATE(1554), 1, + sym_comment, + STATE(1576), 1, + aux_sym__repeat_newline, + ACTIONS(3876), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3880), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3886), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3888), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3892), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3882), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3884), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3874), 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(2840), 12, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_or2, + [21326] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(1555), 1, + sym_comment, + ACTIONS(3898), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3900), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3902), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2788), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2786), 37, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [21392] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2986), 1, + ACTIONS(2994), 1, aux_sym_cmd_identifier_token2, - STATE(1584), 1, + STATE(1556), 1, sym_comment, - ACTIONS(914), 17, + ACTIONS(2596), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -163525,7 +161670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, - ACTIONS(811), 29, + ACTIONS(2598), 29, anon_sym_in, anon_sym_GT2, anon_sym_DASH2, @@ -163555,105 +161700,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23658] = 15, + [21452] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, + ACTIONS(2986), 1, + sym__newline, + STATE(1557), 1, + sym_comment, + STATE(1623), 1, + aux_sym__repeat_newline, + ACTIONS(3886), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2764), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2762), 38, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [21516] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2876), 1, + sym__newline, + ACTIONS(3878), 1, + anon_sym_DASH2, ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, + anon_sym_PLUS2, ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(1585), 1, + anon_sym_bit_DASHand2, + ACTIONS(3934), 1, + anon_sym_and2, + ACTIONS(3938), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3940), 1, + anon_sym_bit_DASHor2, + STATE(1558), 1, sym_comment, - STATE(4721), 1, - sym_block, - STATE(4958), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, + STATE(1577), 1, + aux_sym__repeat_newline, + ACTIONS(3876), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3880), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3886), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23738] = 15, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3892), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3882), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3884), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3874), 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(2840), 13, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [21604] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, + ACTIONS(3918), 1, anon_sym_COLON, - ACTIONS(3884), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(3890), 1, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(3928), 1, anon_sym_oneof, - ACTIONS(3894), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(1586), 1, + STATE(1559), 1, sym_comment, - STATE(4722), 1, + STATE(4623), 1, sym_block, - STATE(4960), 1, + STATE(5093), 1, sym_returns, - STATE(5304), 1, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, sym__one_type, - STATE(5308), 1, - sym__multiple_types, STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, + sym__multiple_types, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(2679), 4, + STATE(2720), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -163685,170 +161891,428 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23818] = 15, + [21684] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, + ACTIONS(2986), 1, + sym__newline, + ACTIONS(3878), 1, + anon_sym_DASH2, ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(1587), 1, + anon_sym_PLUS2, + STATE(1560), 1, sym_comment, - STATE(4724), 1, - sym_block, - STATE(4963), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, + STATE(1632), 1, + aux_sym__repeat_newline, + ACTIONS(2764), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3880), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3886), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23898] = 15, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3892), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2762), 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, + [21758] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, + ACTIONS(3896), 1, + anon_sym_DASH2, + ACTIONS(3904), 1, + anon_sym_PLUS2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(1561), 1, + sym_comment, + ACTIONS(3898), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3900), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3902), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3908), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3914), 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(2786), 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, + [21832] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3896), 1, + anon_sym_DASH2, + ACTIONS(3904), 1, + anon_sym_PLUS2, + ACTIONS(3916), 1, + anon_sym_bit_DASHand2, + ACTIONS(3932), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3944), 1, + anon_sym_bit_DASHor2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(1562), 1, + sym_comment, + ACTIONS(3898), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3900), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3902), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3908), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3914), 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(3912), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3906), 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(2844), 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, + [21916] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2986), 1, + sym__newline, + ACTIONS(3878), 1, + anon_sym_DASH2, ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, + anon_sym_PLUS2, + STATE(1563), 1, + sym_comment, + STATE(1634), 1, + aux_sym__repeat_newline, + ACTIONS(3876), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3880), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3886), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3888), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3892), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3882), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2762), 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, + [21992] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3896), 1, + anon_sym_DASH2, + ACTIONS(3904), 1, + anon_sym_PLUS2, + ACTIONS(3916), 1, + anon_sym_bit_DASHand2, + ACTIONS(3932), 1, + anon_sym_bit_DASHxor2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(1564), 1, + sym_comment, + ACTIONS(3898), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3900), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3902), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3908), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3914), 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(3912), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3906), 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(2782), 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, + [22074] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2876), 1, + sym__newline, + ACTIONS(3878), 1, + anon_sym_DASH2, + ACTIONS(3890), 1, + anon_sym_PLUS2, ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(1588), 1, + anon_sym_bit_DASHand2, + ACTIONS(3938), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3940), 1, + anon_sym_bit_DASHor2, + STATE(1565), 1, sym_comment, - STATE(4725), 1, - sym_block, - STATE(4972), 1, - sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, - sym__type_annotation, + STATE(1578), 1, + aux_sym__repeat_newline, + ACTIONS(3876), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3880), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3886), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - 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, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3892), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3882), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3884), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3874), 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(2840), 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, + [22160] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, + ACTIONS(3918), 1, anon_sym_COLON, - ACTIONS(3884), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(3890), 1, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(3928), 1, anon_sym_oneof, - ACTIONS(3894), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, - STATE(1589), 1, + STATE(1566), 1, sym_comment, - STATE(4794), 1, + STATE(4797), 1, sym_block, - STATE(5026), 1, + STATE(5023), 1, sym_returns, - STATE(5304), 1, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, sym__one_type, - STATE(5308), 1, - sym__multiple_types, STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, + sym__multiple_types, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(2679), 4, + STATE(2720), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -163880,40 +162344,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [24058] = 15, + [22240] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, + ACTIONS(3918), 1, anon_sym_COLON, - ACTIONS(3884), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(3890), 1, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(3928), 1, anon_sym_oneof, - ACTIONS(3894), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, - STATE(1590), 1, + STATE(1567), 1, sym_comment, - STATE(4798), 1, + STATE(4817), 1, sym_block, - STATE(5032), 1, + STATE(5008), 1, sym_returns, - STATE(5304), 1, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, sym__one_type, - STATE(5308), 1, - sym__multiple_types, STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, + sym__multiple_types, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(2679), 4, + STATE(2720), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -163945,40 +162409,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [24138] = 15, + [22320] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, + ACTIONS(3918), 1, anon_sym_COLON, - ACTIONS(3884), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(3890), 1, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(3928), 1, anon_sym_oneof, - ACTIONS(3894), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, - STATE(1591), 1, + STATE(1568), 1, sym_comment, - STATE(4791), 1, + STATE(4727), 1, sym_block, - STATE(5015), 1, + STATE(5003), 1, sym_returns, - STATE(5304), 1, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, sym__one_type, - STATE(5308), 1, - sym__multiple_types, STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, + sym__multiple_types, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(2679), 4, + STATE(2720), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -164007,98 +162471,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_path, anon_sym_range, anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [24218] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1864), 1, - sym__unquoted_pattern, - STATE(1592), 1, - sym_comment, - ACTIONS(811), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(914), 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, - [24278] = 15, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22400] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, + ACTIONS(3918), 1, anon_sym_COLON, - ACTIONS(3884), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(3890), 1, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(3928), 1, anon_sym_oneof, - ACTIONS(3894), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, - STATE(1593), 1, + STATE(1569), 1, sym_comment, - STATE(4793), 1, + STATE(4831), 1, sym_block, - STATE(5018), 1, + STATE(4995), 1, sym_returns, - STATE(5304), 1, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, sym__one_type, - STATE(5308), 1, - sym__multiple_types, STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, + sym__multiple_types, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(2679), 4, + STATE(2720), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -164130,41 +162539,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [24358] = 13, + [22480] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - sym__newline, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3904), 1, anon_sym_PLUS2, - STATE(1594), 1, - sym_comment, - STATE(1608), 1, + ACTIONS(3916), 1, + anon_sym_bit_DASHand2, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, + STATE(1570), 1, + sym_comment, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, + ACTIONS(3908), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3900), 4, + ACTIONS(3914), 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(2840), 29, + ACTIONS(3912), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3906), 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(2782), 17, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164179,6 +162602,46 @@ 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, + [22560] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3896), 1, + anon_sym_DASH2, + ACTIONS(3904), 1, + anon_sym_PLUS2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(1571), 1, + sym_comment, + ACTIONS(3898), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3900), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3902), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3908), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3914), 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(3912), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3906), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -164186,43 +162649,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_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + ACTIONS(2782), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24434] = 12, + [22638] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - sym__newline, - ACTIONS(3870), 1, - anon_sym_DASH2, - ACTIONS(3878), 1, - anon_sym_PLUS2, - STATE(1595), 1, - sym_comment, - STATE(1609), 1, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(2842), 2, + STATE(1572), 1, + sym_comment, + ACTIONS(3900), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2788), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3872), 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(2840), 33, + anon_sym_PLUS2, + ACTIONS(2786), 39, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164234,6 +162698,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, @@ -164252,33 +162717,32 @@ 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, - [24508] = 9, + [22700] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - sym__newline, - STATE(1596), 1, - sym_comment, - STATE(1611), 1, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3874), 2, + STATE(1573), 1, + sym_comment, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2842), 3, + ACTIONS(2846), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2840), 36, + ACTIONS(2844), 39, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164309,31 +162773,39 @@ 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, - [24576] = 7, + [22762] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - sym__newline, - STATE(1597), 1, - sym_comment, - STATE(1613), 1, + ACTIONS(3896), 1, + anon_sym_DASH2, + ACTIONS(3904), 1, + anon_sym_PLUS2, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(3874), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2842), 5, + STATE(1574), 1, + sym_comment, + ACTIONS(2784), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3898), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2840), 38, + ACTIONS(3900), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3902), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2782), 36, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164345,7 +162817,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, @@ -164364,58 +162835,43 @@ 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, - [24640] = 18, + [22832] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - sym__newline, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3904), 1, anon_sym_PLUS2, - ACTIONS(3906), 1, - anon_sym_bit_DASHand2, - ACTIONS(3908), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3910), 1, - anon_sym_bit_DASHor2, - STATE(1598), 1, - sym_comment, - STATE(1615), 1, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, + STATE(1575), 1, + sym_comment, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, + ACTIONS(3908), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3900), 4, + ACTIONS(3914), 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(3904), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3902), 8, + ACTIONS(3906), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164424,7 +162880,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2840), 14, + ACTIONS(2782), 22, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164439,53 +162896,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [24726] = 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, + [22908] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - sym__newline, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3904), 1, anon_sym_PLUS2, - ACTIONS(3906), 1, + ACTIONS(3916), 1, anon_sym_bit_DASHand2, - ACTIONS(3908), 1, + ACTIONS(3932), 1, anon_sym_bit_DASHxor2, - ACTIONS(3910), 1, + ACTIONS(3944), 1, anon_sym_bit_DASHor2, - ACTIONS(3912), 1, + ACTIONS(3946), 1, anon_sym_and2, - STATE(1599), 1, - sym_comment, - STATE(1617), 1, + ACTIONS(3948), 1, + anon_sym_xor2, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, + STATE(1576), 1, + sym_comment, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, + ACTIONS(3908), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3900), 4, + ACTIONS(3914), 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(3904), 4, + ACTIONS(3912), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3902), 8, + ACTIONS(3906), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164494,7 +162958,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2840), 13, + ACTIONS(2782), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164506,57 +162971,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_xor2, anon_sym_or2, - [24814] = 20, + [22996] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3904), 1, anon_sym_PLUS2, - ACTIONS(3906), 1, + ACTIONS(3916), 1, anon_sym_bit_DASHand2, - ACTIONS(3908), 1, + ACTIONS(3932), 1, anon_sym_bit_DASHxor2, - ACTIONS(3910), 1, + ACTIONS(3944), 1, anon_sym_bit_DASHor2, - ACTIONS(3912), 1, + ACTIONS(3946), 1, anon_sym_and2, - ACTIONS(3914), 1, - anon_sym_xor2, - STATE(1600), 1, - sym_comment, - STATE(1619), 1, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, + STATE(1577), 1, + sym_comment, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, + ACTIONS(3908), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3900), 4, + ACTIONS(3914), 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(3904), 4, + ACTIONS(3912), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3902), 8, + ACTIONS(3906), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164565,7 +163025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2840), 12, + ACTIONS(2782), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164577,41 +163038,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_xor2, anon_sym_or2, - [24904] = 14, + [23082] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - sym__newline, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3904), 1, anon_sym_PLUS2, - STATE(1601), 1, - sym_comment, - STATE(1621), 1, + ACTIONS(3916), 1, + anon_sym_bit_DASHand2, + ACTIONS(3932), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3944), 1, + anon_sym_bit_DASHor2, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, + STATE(1578), 1, + sym_comment, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, + ACTIONS(3908), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3900), 4, + ACTIONS(3914), 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(3902), 8, + ACTIONS(3912), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3906), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164620,7 +163091,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2840), 21, + ACTIONS(2782), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164635,48 +163107,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [24982] = 12, + [23166] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1630), 1, - anon_sym_DOLLAR, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(3916), 1, - anon_sym_DOT, - STATE(1602), 1, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(1579), 1, sym_comment, - STATE(1905), 1, - sym__immediate_decimal, - ACTIONS(3918), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3920), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(718), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1644), 6, + ACTIONS(3900), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2784), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1642), 30, + ACTIONS(2782), 39, anon_sym_in, sym__newline, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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, @@ -164695,8 +163156,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, @@ -164704,33 +163163,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25056] = 11, + [23228] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - sym__newline, - ACTIONS(3870), 1, - anon_sym_DASH2, - ACTIONS(3878), 1, - anon_sym_PLUS2, - STATE(1603), 1, - sym_comment, - STATE(1623), 1, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(2842), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3872), 2, + STATE(1580), 1, + sym_comment, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2840), 35, + ACTIONS(2784), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2782), 37, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164742,6 +163197,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, @@ -164765,54 +163221,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25128] = 15, + [23294] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, + ACTIONS(2876), 1, sym__newline, - ACTIONS(3870), 1, - anon_sym_DASH2, - ACTIONS(3878), 1, - anon_sym_PLUS2, - STATE(1604), 1, - sym_comment, - STATE(1625), 1, + STATE(1579), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3874), 2, + STATE(1581), 1, + sym_comment, + ACTIONS(3886), 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(3898), 2, + ACTIONS(2842), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(3900), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3904), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3902), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2840), 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(2840), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164824,62 +163252,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_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, - [25208] = 16, + [23358] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - sym__newline, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3904), 1, anon_sym_PLUS2, - ACTIONS(3906), 1, - anon_sym_bit_DASHand2, - STATE(1605), 1, - sym_comment, - STATE(1627), 1, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, + STATE(1582), 1, + sym_comment, + ACTIONS(2784), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, + ACTIONS(3914), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3900), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3904), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3902), 8, + ACTIONS(2782), 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(2840), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164894,60 +163321,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25290] = 17, + [23430] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - sym__newline, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3904), 1, anon_sym_PLUS2, - ACTIONS(3906), 1, - anon_sym_bit_DASHand2, - ACTIONS(3908), 1, - anon_sym_bit_DASHxor2, - STATE(1606), 1, - sym_comment, - STATE(1629), 1, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, + STATE(1583), 1, + sym_comment, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, + ACTIONS(3908), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3900), 4, + ACTIONS(3914), 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(3904), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3902), 8, + ACTIONS(2782), 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(2840), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164962,42 +163387,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25374] = 13, + [23504] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2967), 1, - sym__newline, - ACTIONS(3870), 1, - anon_sym_DASH2, - ACTIONS(3878), 1, - anon_sym_PLUS2, - STATE(1607), 1, - sym_comment, - STATE(1642), 1, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, + STATE(1584), 1, + sym_comment, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, + ACTIONS(2846), 3, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3900), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2836), 29, + anon_sym_PLUS2, + ACTIONS(2844), 37, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165009,6 +163435,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, @@ -165019,47 +163446,71 @@ 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, - [25450] = 12, + [23570] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(2955), 1, + sym__newline, + ACTIONS(3878), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3890), 1, anon_sym_PLUS2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(1608), 1, + ACTIONS(3894), 1, + anon_sym_bit_DASHand2, + ACTIONS(3938), 1, + anon_sym_bit_DASHxor2, + STATE(1585), 1, sym_comment, - ACTIONS(3922), 2, + STATE(1652), 1, + aux_sym__repeat_newline, + ACTIONS(3876), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, + ACTIONS(3892), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, + ACTIONS(3882), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2844), 30, + ACTIONS(3884), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3874), 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(2834), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165074,49 +163525,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25524] = 11, + [23654] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, - anon_sym_DASH2, - ACTIONS(3934), 1, - anon_sym_PLUS2, - STATE(501), 1, + ACTIONS(2876), 1, + sym__newline, + STATE(1580), 1, aux_sym__repeat_newline, - STATE(1609), 1, + STATE(1586), 1, sym_comment, - ACTIONS(2846), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2844), 34, + ACTIONS(2842), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2840), 36, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165128,6 +163561,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, @@ -165146,33 +163580,40 @@ 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, - [25596] = 9, + [23722] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2967), 1, - sym__newline, - STATE(1610), 1, - sym_comment, - STATE(1644), 1, + ACTIONS(3896), 1, + anon_sym_DASH2, + ACTIONS(3904), 1, + anon_sym_PLUS2, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, + STATE(1587), 1, + sym_comment, + ACTIONS(2846), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2838), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2836), 36, + ACTIONS(3914), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2844), 34, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165184,7 +163625,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, @@ -165203,34 +163643,169 @@ 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, - [25664] = 8, + [23794] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(1588), 1, + sym_comment, + STATE(4445), 1, + sym_block, + STATE(5058), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [23874] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(1589), 1, + sym_comment, + STATE(4586), 1, + sym_block, + STATE(5099), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [23954] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(501), 1, + ACTIONS(2876), 1, + sym__newline, + ACTIONS(3878), 1, + anon_sym_DASH2, + ACTIONS(3890), 1, + anon_sym_PLUS2, + STATE(1582), 1, aux_sym__repeat_newline, - STATE(1611), 1, + STATE(1590), 1, sym_comment, - ACTIONS(3926), 2, + ACTIONS(2842), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2846), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2844), 37, + ACTIONS(3892), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2840), 33, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165242,7 +163817,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, @@ -165261,31 +163835,238 @@ 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, - [25730] = 7, + [24028] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2967), 1, - sym__newline, - STATE(1612), 1, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(1591), 1, sym_comment, - STATE(1645), 1, + STATE(4585), 1, + sym_block, + STATE(5100), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [24108] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(1592), 1, + sym_comment, + STATE(4570), 1, + sym_block, + STATE(4988), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [24188] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(1593), 1, + sym_comment, + STATE(4563), 1, + sym_block, + STATE(5018), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [24268] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3896), 1, + anon_sym_DASH2, + ACTIONS(3904), 1, + anon_sym_PLUS2, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(3874), 2, + STATE(1594), 1, + sym_comment, + ACTIONS(3898), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2838), 5, + ACTIONS(3902), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3908), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2836), 38, + ACTIONS(3914), 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(2844), 30, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165297,7 +164078,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, @@ -165308,40 +164088,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25794] = 6, + [24342] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(501), 1, + ACTIONS(2876), 1, + sym__newline, + ACTIONS(3878), 1, + anon_sym_DASH2, + ACTIONS(3890), 1, + anon_sym_PLUS2, + STATE(1583), 1, aux_sym__repeat_newline, - STATE(1613), 1, + STATE(1595), 1, sym_comment, - ACTIONS(3930), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2846), 5, + ACTIONS(3876), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3880), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2844), 39, + ACTIONS(3886), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3888), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3892), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3882), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2840), 29, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165353,7 +164141,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, @@ -165364,66 +164151,58 @@ 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_like2, + anon_sym_not_DASHlike2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25856] = 18, + [24418] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2967), 1, - sym__newline, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3904), 1, anon_sym_PLUS2, - ACTIONS(3906), 1, + ACTIONS(3916), 1, anon_sym_bit_DASHand2, - ACTIONS(3908), 1, + ACTIONS(3932), 1, anon_sym_bit_DASHxor2, - ACTIONS(3910), 1, + ACTIONS(3944), 1, anon_sym_bit_DASHor2, - STATE(1614), 1, - sym_comment, - STATE(1646), 1, + ACTIONS(3946), 1, + anon_sym_and2, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, + STATE(1596), 1, + sym_comment, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, + ACTIONS(3908), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3900), 4, + ACTIONS(3914), 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(3904), 4, + ACTIONS(3912), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3902), 8, + ACTIONS(3906), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165432,7 +164211,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2836), 14, + ACTIONS(2844), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165444,52 +164224,179 @@ static 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, - [25942] = 17, + [24504] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(1597), 1, + sym_comment, + STATE(4777), 1, + sym_block, + STATE(5029), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [24584] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(1598), 1, + sym_comment, + STATE(4775), 1, + sym_block, + STATE(5030), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [24664] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(2955), 1, + sym__newline, + ACTIONS(3878), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3890), 1, anon_sym_PLUS2, - ACTIONS(3942), 1, + ACTIONS(3894), 1, anon_sym_bit_DASHand2, - ACTIONS(3944), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3946), 1, - anon_sym_bit_DASHor2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(1615), 1, + STATE(1599), 1, sym_comment, - ACTIONS(3922), 2, + STATE(1682), 1, + aux_sym__repeat_newline, + ACTIONS(3876), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, + ACTIONS(3892), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, + ACTIONS(3882), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3940), 4, + ACTIONS(3884), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3938), 8, + ACTIONS(3874), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165498,8 +164405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2844), 15, - sym__newline, + ACTIONS(2834), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165514,53 +164420,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [26026] = 19, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [24746] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2967), 1, + ACTIONS(2986), 1, sym__newline, - ACTIONS(3870), 1, - anon_sym_DASH2, ACTIONS(3878), 1, + anon_sym_DASH2, + ACTIONS(3890), 1, anon_sym_PLUS2, - ACTIONS(3906), 1, + ACTIONS(3894), 1, anon_sym_bit_DASHand2, - ACTIONS(3908), 1, + ACTIONS(3938), 1, anon_sym_bit_DASHxor2, - ACTIONS(3910), 1, + ACTIONS(3940), 1, anon_sym_bit_DASHor2, - ACTIONS(3912), 1, - anon_sym_and2, - STATE(1616), 1, + STATE(1600), 1, sym_comment, - STATE(1647), 1, + STATE(1618), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, + ACTIONS(3876), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, + ACTIONS(3892), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3900), 4, + ACTIONS(3882), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3904), 4, + ACTIONS(3884), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3902), 8, + ACTIONS(3874), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165569,7 +164475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2836), 13, + ACTIONS(2762), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165581,53 +164487,377 @@ static 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, - [26114] = 18, + [24832] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(1601), 1, + sym_comment, + STATE(4773), 1, + sym_block, + STATE(5031), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [24912] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(1602), 1, + sym_comment, + STATE(4902), 1, + sym_block, + STATE(4954), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [24992] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(1603), 1, + sym_comment, + STATE(4908), 1, + sym_block, + STATE(4939), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [25072] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(1604), 1, + sym_comment, + STATE(4444), 1, + sym_block, + STATE(5055), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [25152] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(1605), 1, + sym_comment, + STATE(4771), 1, + sym_block, + STATE(5032), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [25232] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(3896), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3904), 1, anon_sym_PLUS2, - ACTIONS(3942), 1, + ACTIONS(3916), 1, anon_sym_bit_DASHand2, - ACTIONS(3944), 1, + ACTIONS(3932), 1, anon_sym_bit_DASHxor2, - ACTIONS(3946), 1, + ACTIONS(3944), 1, anon_sym_bit_DASHor2, - ACTIONS(3948), 1, - anon_sym_and2, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(1617), 1, + STATE(1606), 1, sym_comment, - ACTIONS(3922), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, + ACTIONS(3908), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3914), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3940), 4, + ACTIONS(3912), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3938), 8, + ACTIONS(3906), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165636,7 +164866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2844), 14, + ACTIONS(2786), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165649,57 +164879,371 @@ static 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, - [26200] = 20, + [25316] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(1607), 1, + sym_comment, + STATE(4657), 1, + sym_block, + STATE(5035), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [25396] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(1608), 1, + sym_comment, + STATE(4663), 1, + sym_block, + STATE(5028), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [25476] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(1609), 1, + sym_comment, + STATE(4669), 1, + sym_block, + STATE(4997), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [25556] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(1610), 1, + sym_comment, + STATE(4666), 1, + sym_block, + STATE(4996), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [25636] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + STATE(1611), 1, + sym_comment, + ACTIONS(2407), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(3807), 13, + ts_builtin_sym_end, + anon_sym_finally, sym__newline, - ACTIONS(3870), 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, + ACTIONS(2405), 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, + [25696] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2986), 1, + sym__newline, ACTIONS(3878), 1, + anon_sym_DASH2, + ACTIONS(3890), 1, anon_sym_PLUS2, - ACTIONS(3906), 1, + ACTIONS(3894), 1, anon_sym_bit_DASHand2, - ACTIONS(3908), 1, + ACTIONS(3934), 1, + anon_sym_and2, + ACTIONS(3938), 1, anon_sym_bit_DASHxor2, - ACTIONS(3910), 1, + ACTIONS(3940), 1, anon_sym_bit_DASHor2, - ACTIONS(3912), 1, - anon_sym_and2, - ACTIONS(3914), 1, - anon_sym_xor2, - STATE(1618), 1, + STATE(1612), 1, sym_comment, - STATE(1648), 1, + STATE(1615), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, + ACTIONS(3876), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, + ACTIONS(3892), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3900), 4, + ACTIONS(3882), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3904), 4, + ACTIONS(3884), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3902), 8, + ACTIONS(3874), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165708,7 +165252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2836), 12, + ACTIONS(2762), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165720,54 +165264,120 @@ static 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, - [26290] = 19, + [25784] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(1613), 1, + sym_comment, + STATE(4826), 1, + sym_block, + STATE(4959), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [25864] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(3896), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3904), 1, anon_sym_PLUS2, - ACTIONS(3942), 1, + ACTIONS(3916), 1, anon_sym_bit_DASHand2, - ACTIONS(3944), 1, + ACTIONS(3932), 1, anon_sym_bit_DASHxor2, - ACTIONS(3946), 1, + ACTIONS(3944), 1, anon_sym_bit_DASHor2, - ACTIONS(3948), 1, + ACTIONS(3946), 1, anon_sym_and2, - ACTIONS(3950), 1, + ACTIONS(3948), 1, anon_sym_xor2, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(1619), 1, + STATE(1614), 1, sym_comment, - ACTIONS(3922), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, + ACTIONS(3908), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3914), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3940), 4, + ACTIONS(3912), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3938), 8, + ACTIONS(3906), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165776,7 +165386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2844), 13, + ACTIONS(2848), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165790,40 +165400,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [26378] = 14, + [25952] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2967), 1, - sym__newline, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3904), 1, anon_sym_PLUS2, - STATE(1620), 1, - sym_comment, - STATE(1649), 1, + ACTIONS(3916), 1, + anon_sym_bit_DASHand2, + ACTIONS(3932), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3944), 1, + anon_sym_bit_DASHor2, + ACTIONS(3946), 1, + anon_sym_and2, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, + STATE(1615), 1, + sym_comment, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, + ACTIONS(3908), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3900), 4, + ACTIONS(3914), 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(3902), 8, + ACTIONS(3912), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3906), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165832,7 +165453,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2836), 21, + ACTIONS(2848), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165844,48 +165466,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26456] = 13, + [26038] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(3896), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3904), 1, anon_sym_PLUS2, - STATE(501), 1, + ACTIONS(3916), 1, + anon_sym_bit_DASHand2, + ACTIONS(3932), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3944), 1, + anon_sym_bit_DASHor2, + ACTIONS(3946), 1, + anon_sym_and2, + STATE(522), 1, aux_sym__repeat_newline, - STATE(1621), 1, + STATE(1616), 1, sym_comment, - ACTIONS(3922), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, + ACTIONS(3908), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3914), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3938), 8, + ACTIONS(3912), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3906), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165894,7 +165521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2844), 22, + ACTIONS(2786), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165907,43 +165534,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - 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, - [26532] = 11, + [26124] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2967), 1, - sym__newline, - ACTIONS(3870), 1, - anon_sym_DASH2, - ACTIONS(3878), 1, - anon_sym_PLUS2, - STATE(1622), 1, + ACTIONS(1872), 1, + sym__unquoted_pattern, + STATE(1617), 1, sym_comment, - STATE(1650), 1, - aux_sym__repeat_newline, - ACTIONS(2838), 2, + ACTIONS(811), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3872), 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(2836), 35, + anon_sym_PLUS2, + ACTIONS(910), 41, + ts_builtin_sym_end, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165954,7 +165563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -165973,36 +165582,67 @@ 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, - [26604] = 10, + [26184] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(3896), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3904), 1, anon_sym_PLUS2, - STATE(501), 1, + ACTIONS(3916), 1, + anon_sym_bit_DASHand2, + ACTIONS(3932), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3944), 1, + anon_sym_bit_DASHor2, + STATE(522), 1, aux_sym__repeat_newline, - STATE(1623), 1, + STATE(1618), 1, sym_comment, - ACTIONS(2846), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2844), 36, + ACTIONS(3908), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3914), 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(3912), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3906), 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(2848), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166018,65 +165658,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26674] = 15, + [26268] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2967), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(3870), 1, - anon_sym_DASH2, ACTIONS(3878), 1, + anon_sym_DASH2, + ACTIONS(3890), 1, anon_sym_PLUS2, - STATE(1624), 1, - sym_comment, - STATE(1651), 1, + ACTIONS(3894), 1, + anon_sym_bit_DASHand2, + ACTIONS(3934), 1, + anon_sym_and2, + ACTIONS(3936), 1, + anon_sym_xor2, + ACTIONS(3938), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3940), 1, + anon_sym_bit_DASHor2, + STATE(1614), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, + STATE(1619), 1, + sym_comment, + ACTIONS(3876), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, + ACTIONS(3892), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3900), 4, + ACTIONS(3882), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3904), 4, + ACTIONS(3884), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3902), 8, + ACTIONS(3874), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166085,7 +165715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2836), 17, + ACTIONS(2762), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166097,49 +165727,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_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26754] = 14, + [26358] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(3896), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3904), 1, anon_sym_PLUS2, - STATE(501), 1, + ACTIONS(3916), 1, + anon_sym_bit_DASHand2, + ACTIONS(3932), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3944), 1, + anon_sym_bit_DASHor2, + ACTIONS(3946), 1, + anon_sym_and2, + ACTIONS(3948), 1, + anon_sym_xor2, + STATE(522), 1, aux_sym__repeat_newline, - STATE(1625), 1, + STATE(1620), 1, sym_comment, - ACTIONS(3922), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, + ACTIONS(3908), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3914), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3940), 4, + ACTIONS(3912), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3938), 8, + ACTIONS(3906), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166148,7 +165783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2844), 18, + ACTIONS(2844), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166161,53 +165796,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_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26832] = 16, + [26446] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2967), 1, - sym__newline, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3904), 1, anon_sym_PLUS2, - ACTIONS(3906), 1, + ACTIONS(3916), 1, anon_sym_bit_DASHand2, - STATE(1626), 1, - sym_comment, - STATE(1652), 1, + ACTIONS(3932), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3944), 1, + anon_sym_bit_DASHor2, + ACTIONS(3946), 1, + anon_sym_and2, + ACTIONS(3948), 1, + anon_sym_xor2, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, + STATE(1621), 1, + sym_comment, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, + ACTIONS(3908), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3900), 4, + ACTIONS(3914), 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(3904), 4, + ACTIONS(3912), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3902), 8, + ACTIONS(3906), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166216,7 +165852,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2836), 16, + ACTIONS(2786), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166228,50 +165865,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26914] = 15, + [26534] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(2876), 1, + sym__newline, + ACTIONS(3878), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3890), 1, anon_sym_PLUS2, - ACTIONS(3942), 1, - anon_sym_bit_DASHand2, - STATE(501), 1, + STATE(1575), 1, aux_sym__repeat_newline, - STATE(1627), 1, + STATE(1622), 1, sym_comment, - ACTIONS(3922), 2, + ACTIONS(3876), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, + ACTIONS(3892), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, + ACTIONS(3882), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3940), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3938), 8, + ACTIONS(3874), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166280,8 +165908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2844), 17, - sym__newline, + ACTIONS(2840), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166296,51 +165923,101 @@ 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, - [26994] = 17, + [26612] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2967), 1, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(1623), 1, + sym_comment, + ACTIONS(3900), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2850), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2848), 39, + anon_sym_in, sym__newline, - ACTIONS(3870), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, - ACTIONS(3878), 1, - anon_sym_PLUS2, - ACTIONS(3906), 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_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, - ACTIONS(3908), 1, anon_sym_bit_DASHxor2, - STATE(1628), 1, - sym_comment, - STATE(1653), 1, + anon_sym_bit_DASHor2, + [26674] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3896), 1, + anon_sym_DASH2, + ACTIONS(3904), 1, + anon_sym_PLUS2, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, + STATE(1624), 1, + sym_comment, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, + ACTIONS(3908), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3900), 4, + ACTIONS(3914), 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(3904), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3902), 8, + ACTIONS(3906), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166349,7 +166026,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2836), 15, + ACTIONS(2844), 22, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166364,49 +166042,125 @@ 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, - [27078] = 16, + [26750] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(1625), 1, + sym_comment, + STATE(4611), 1, + sym_block, + STATE(4940), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [26830] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(3952), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3962), 1, anon_sym_PLUS2, - ACTIONS(3942), 1, - anon_sym_bit_DASHand2, - ACTIONS(3944), 1, - anon_sym_bit_DASHxor2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(1629), 1, + STATE(1626), 1, sym_comment, - ACTIONS(3922), 2, + ACTIONS(3950), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3954), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3958), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3960), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, + ACTIONS(3964), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, + ACTIONS(3956), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3940), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3938), 8, + ACTIONS(2624), 31, 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, @@ -166414,7 +166168,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2844), 16, + 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, + [26902] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3952), 1, + anon_sym_DASH2, + ACTIONS(3962), 1, + anon_sym_PLUS2, + STATE(1627), 1, + sym_comment, + ACTIONS(2626), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3954), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3958), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3960), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3964), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2624), 35, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166427,108 +166213,119 @@ static const 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_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27160] = 19, - ACTIONS(105), 1, + [26972] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_DQUOTE, - ACTIONS(1768), 1, - anon_sym_SQUOTE, - ACTIONS(1770), 1, - anon_sym_BQUOTE, - ACTIONS(1772), 1, - sym_raw_string_begin, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3663), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3797), 1, - anon_sym_DASH_DASH, - STATE(1630), 1, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(1628), 1, sym_comment, - STATE(1730), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, - sym__val_number_decimal, - STATE(2173), 1, - sym_long_flag, - STATE(3783), 1, - sym_cmd_identifier, - STATE(3804), 1, - sym_val_string, - STATE(3917), 1, - sym__command_name, - ACTIONS(3799), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3801), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2276), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3659), 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, - [27248] = 12, + STATE(4613), 1, + sym_block, + STATE(4945), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [27052] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2878), 1, + ACTIONS(2876), 1, sym__newline, - ACTIONS(3870), 1, - anon_sym_DASH2, ACTIONS(3878), 1, + anon_sym_DASH2, + ACTIONS(3890), 1, anon_sym_PLUS2, - STATE(1631), 1, - sym_comment, - STATE(1657), 1, + STATE(1574), 1, aux_sym__repeat_newline, - ACTIONS(2730), 2, + STATE(1629), 1, + sym_comment, + ACTIONS(2842), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3872), 2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2728), 33, + ACTIONS(2840), 35, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -166559,33 +166356,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, - [27322] = 9, + [27124] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2878), 1, - sym__newline, - STATE(1632), 1, - sym_comment, - STATE(1659), 1, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, + STATE(1630), 1, + sym_comment, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2730), 3, + ACTIONS(2850), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2728), 36, + ACTIONS(2848), 37, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166621,26 +166419,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27390] = 7, + [27190] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2878), 1, - sym__newline, - STATE(1633), 1, - sym_comment, - STATE(1661), 1, + ACTIONS(3896), 1, + anon_sym_DASH2, + ACTIONS(3904), 1, + anon_sym_PLUS2, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(3874), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2730), 5, + STATE(1631), 1, + sym_comment, + ACTIONS(2846), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3898), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2728), 38, + ACTIONS(3900), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3902), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2844), 36, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166652,7 +166456,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, @@ -166671,67 +166474,40 @@ 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] = 18, + [27260] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2878), 1, - sym__newline, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3904), 1, anon_sym_PLUS2, - ACTIONS(3906), 1, - anon_sym_bit_DASHand2, - ACTIONS(3908), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3910), 1, - anon_sym_bit_DASHor2, - STATE(1634), 1, - sym_comment, - STATE(1663), 1, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, + STATE(1632), 1, + sym_comment, + ACTIONS(2850), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, + ACTIONS(3914), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3900), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3904), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3902), 8, + ACTIONS(2848), 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(2728), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166746,53 +166522,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [27540] = 19, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [27332] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2878), 1, + ACTIONS(2955), 1, sym__newline, - ACTIONS(3870), 1, - anon_sym_DASH2, ACTIONS(3878), 1, + anon_sym_DASH2, + ACTIONS(3890), 1, anon_sym_PLUS2, - ACTIONS(3906), 1, - anon_sym_bit_DASHand2, - ACTIONS(3908), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3910), 1, - anon_sym_bit_DASHor2, - ACTIONS(3912), 1, - anon_sym_and2, - STATE(1635), 1, + STATE(1633), 1, sym_comment, - STATE(1665), 1, + STATE(1703), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, + ACTIONS(3876), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, + ACTIONS(3892), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3900), 4, + ACTIONS(3882), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3904), 4, + ACTIONS(3884), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3902), 8, + ACTIONS(3874), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166801,7 +166587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 13, + ACTIONS(2834), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166813,66 +166599,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, - [27628] = 20, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [27412] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3904), 1, anon_sym_PLUS2, - ACTIONS(3906), 1, - anon_sym_bit_DASHand2, - ACTIONS(3908), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3910), 1, - anon_sym_bit_DASHor2, - ACTIONS(3912), 1, - anon_sym_and2, - ACTIONS(3914), 1, - anon_sym_xor2, - STATE(1636), 1, - sym_comment, - STATE(1667), 1, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, + STATE(1634), 1, + sym_comment, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, + ACTIONS(3908), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3900), 4, + ACTIONS(3914), 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(3904), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3902), 8, + ACTIONS(2848), 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(2728), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166884,41 +166650,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [27718] = 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_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [27486] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2878), 1, + ACTIONS(2876), 1, sym__newline, - ACTIONS(3870), 1, - anon_sym_DASH2, ACTIONS(3878), 1, + anon_sym_DASH2, + ACTIONS(3890), 1, anon_sym_PLUS2, - STATE(1637), 1, - sym_comment, - STATE(1669), 1, + STATE(1571), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, + STATE(1635), 1, + sym_comment, + ACTIONS(3876), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, + ACTIONS(3892), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3900), 4, + ACTIONS(3882), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3902), 8, + ACTIONS(3884), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3874), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166927,7 +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(2728), 21, + ACTIONS(2840), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166942,40 +166729,121 @@ 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, - [27796] = 11, + [27566] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2878), 1, - sym__newline, - ACTIONS(3870), 1, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(1636), 1, + sym_comment, + STATE(4691), 1, + sym_block, + STATE(5095), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [27646] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3896), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3904), 1, anon_sym_PLUS2, - STATE(1638), 1, - sym_comment, - STATE(1671), 1, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(2730), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3872), 2, + STATE(1637), 1, + sym_comment, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2728), 35, + ACTIONS(3908), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3914), 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(3912), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3906), 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(2844), 18, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166990,65 +166858,368 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27868] = 15, + [27724] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(1638), 1, + sym_comment, + STATE(4546), 1, + sym_block, + STATE(4943), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [27804] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(1639), 1, + sym_comment, + STATE(4544), 1, + sym_block, + STATE(4944), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [27884] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(1640), 1, + sym_comment, + STATE(4541), 1, + sym_block, + STATE(4993), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [27964] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(1641), 1, + sym_comment, + STATE(4909), 1, + sym_block, + STATE(4937), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [28044] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(1642), 1, + sym_comment, + STATE(4917), 1, + sym_block, + STATE(4934), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [28124] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2878), 1, + ACTIONS(2986), 1, sym__newline, - ACTIONS(3870), 1, - anon_sym_DASH2, ACTIONS(3878), 1, + anon_sym_DASH2, + ACTIONS(3890), 1, anon_sym_PLUS2, - STATE(1639), 1, + STATE(1643), 1, sym_comment, - STATE(1673), 1, + STATE(1666), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, + ACTIONS(3876), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, + ACTIONS(3892), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3900), 4, + ACTIONS(3882), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3904), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3902), 8, + ACTIONS(3874), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167057,7 +167228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 17, + ACTIONS(2762), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -167072,118 +167243,45 @@ 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, - [27948] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2878), 1, - sym__newline, - ACTIONS(3870), 1, - anon_sym_DASH2, - ACTIONS(3878), 1, - anon_sym_PLUS2, - ACTIONS(3906), 1, - anon_sym_bit_DASHand2, - STATE(1640), 1, - sym_comment, - STATE(1675), 1, - aux_sym__repeat_newline, - ACTIONS(3872), 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(3898), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3900), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3904), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3902), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 16, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28030] = 17, + [28202] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2878), 1, - sym__newline, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3904), 1, anon_sym_PLUS2, - ACTIONS(3906), 1, - anon_sym_bit_DASHand2, - ACTIONS(3908), 1, - anon_sym_bit_DASHxor2, - STATE(1641), 1, - sym_comment, - STATE(1677), 1, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, + STATE(1644), 1, + sym_comment, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, + ACTIONS(3908), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3900), 4, + ACTIONS(3914), 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(3904), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3902), 8, + ACTIONS(3906), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167192,55 +167290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 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, - [28114] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3924), 1, - anon_sym_DASH2, - ACTIONS(3934), 1, - anon_sym_PLUS2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(1642), 1, - sym_comment, - ACTIONS(3922), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3926), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3930), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2720), 30, - anon_sym_in, + ACTIONS(2786), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167256,13 +167306,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, @@ -167270,35 +167313,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28188] = 11, + [28278] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(1645), 1, + sym_comment, + STATE(4551), 1, + sym_block, + STATE(5057), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [28358] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(1646), 1, + sym_comment, + STATE(4528), 1, + sym_block, + STATE(4994), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [28438] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(2955), 1, + sym__newline, + ACTIONS(3878), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3890), 1, anon_sym_PLUS2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(1643), 1, + STATE(1647), 1, sym_comment, - ACTIONS(2722), 2, + STATE(1676), 1, + aux_sym__repeat_newline, + ACTIONS(2836), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2720), 34, + ACTIONS(2834), 35, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -167328,31 +167499,20 @@ 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, - [28260] = 8, - ACTIONS(3), 1, + [28510] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(1644), 1, + ACTIONS(2994), 1, + aux_sym_cmd_identifier_token2, + STATE(1648), 1, sym_comment, - ACTIONS(3926), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3930), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2722), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2720), 37, - anon_sym_in, + ACTIONS(910), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167364,62 +167524,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_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, - [28326] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(1645), 1, - sym_comment, - ACTIONS(3930), 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, - ACTIONS(2720), 39, + ACTIONS(811), 29, 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_GT2, anon_sym_DASH2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -167430,64 +167544,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, + anon_sym_LT2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28388] = 17, + [28570] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(1649), 1, + sym_comment, + STATE(4689), 1, + sym_block, + STATE(5097), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [28650] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(1650), 1, + sym_comment, + STATE(4622), 1, + sym_block, + STATE(5094), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [28730] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(2955), 1, + sym__newline, + ACTIONS(3878), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3890), 1, anon_sym_PLUS2, - ACTIONS(3942), 1, - anon_sym_bit_DASHand2, - ACTIONS(3944), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3946), 1, - anon_sym_bit_DASHor2, - STATE(501), 1, + STATE(1644), 1, aux_sym__repeat_newline, - STATE(1646), 1, + STATE(1651), 1, sym_comment, - ACTIONS(3922), 2, + ACTIONS(3876), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, + ACTIONS(3892), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, + ACTIONS(3882), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3940), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3938), 8, + ACTIONS(3874), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167496,8 +167731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 15, - sym__newline, + ACTIONS(2834), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -167512,175 +167746,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [28472] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3924), 1, - anon_sym_DASH2, - ACTIONS(3934), 1, - anon_sym_PLUS2, - ACTIONS(3942), 1, - anon_sym_bit_DASHand2, - ACTIONS(3944), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3946), 1, - anon_sym_bit_DASHor2, - ACTIONS(3948), 1, - anon_sym_and2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(1647), 1, - sym_comment, - ACTIONS(3922), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3926), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3930), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3940), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3938), 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), 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, - [28558] = 19, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [28808] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(3896), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3904), 1, anon_sym_PLUS2, - ACTIONS(3942), 1, + ACTIONS(3916), 1, anon_sym_bit_DASHand2, - ACTIONS(3944), 1, + ACTIONS(3932), 1, anon_sym_bit_DASHxor2, - ACTIONS(3946), 1, - anon_sym_bit_DASHor2, - ACTIONS(3948), 1, - anon_sym_and2, - ACTIONS(3950), 1, - anon_sym_xor2, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(1648), 1, + STATE(1652), 1, sym_comment, - ACTIONS(3922), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, + ACTIONS(3908), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3914), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3940), 4, + ACTIONS(3912), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3938), 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), 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, - [28646] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3924), 1, - anon_sym_DASH2, - ACTIONS(3934), 1, - anon_sym_PLUS2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(1649), 1, - sym_comment, - ACTIONS(3922), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3926), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3930), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3938), 8, + ACTIONS(3906), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167689,7 +167802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 22, + ACTIONS(2786), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167705,110 +167818,48 @@ 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, - [28722] = 10, + [28890] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, - anon_sym_DASH2, - ACTIONS(3934), 1, - anon_sym_PLUS2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(1650), 1, - sym_comment, - ACTIONS(2722), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3926), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3930), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2720), 36, - anon_sym_in, + ACTIONS(2876), 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, - [28792] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(3878), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3890), 1, anon_sym_PLUS2, - STATE(501), 1, + ACTIONS(3894), 1, + anon_sym_bit_DASHand2, + STATE(1570), 1, aux_sym__repeat_newline, - STATE(1651), 1, + STATE(1653), 1, sym_comment, - ACTIONS(3922), 2, + ACTIONS(3876), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, + ACTIONS(3892), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, + ACTIONS(3882), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3940), 4, + ACTIONS(3884), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3938), 8, + ACTIONS(3874), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167817,8 +167868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 18, - sym__newline, + ACTIONS(2840), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -167833,48 +167883,57 @@ 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, - [28870] = 15, + [28972] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(3878), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3890), 1, anon_sym_PLUS2, - ACTIONS(3942), 1, + ACTIONS(3894), 1, anon_sym_bit_DASHand2, - STATE(501), 1, + ACTIONS(3934), 1, + anon_sym_and2, + ACTIONS(3936), 1, + anon_sym_xor2, + ACTIONS(3938), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3940), 1, + anon_sym_bit_DASHor2, + STATE(1621), 1, aux_sym__repeat_newline, - STATE(1652), 1, + STATE(1654), 1, sym_comment, - ACTIONS(3922), 2, + ACTIONS(3876), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, + ACTIONS(3892), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, + ACTIONS(3882), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3940), 4, + ACTIONS(3884), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3938), 8, + ACTIONS(3874), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167883,8 +167942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 17, - sym__newline, + ACTIONS(2834), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -167896,52 +167954,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [28950] = 16, + [29062] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(2986), 1, + sym__newline, + ACTIONS(3878), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3890), 1, anon_sym_PLUS2, - ACTIONS(3942), 1, + ACTIONS(3894), 1, anon_sym_bit_DASHand2, - ACTIONS(3944), 1, + ACTIONS(3938), 1, anon_sym_bit_DASHxor2, - STATE(501), 1, + STATE(1549), 1, aux_sym__repeat_newline, - STATE(1653), 1, + STATE(1655), 1, sym_comment, - ACTIONS(3922), 2, + ACTIONS(3876), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, + ACTIONS(3892), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, + ACTIONS(3882), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3940), 4, + ACTIONS(3884), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3938), 8, + ACTIONS(3874), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167950,8 +168006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 16, - sym__newline, + ACTIONS(2762), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -167967,117 +168022,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [29032] = 13, + [29146] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2913), 1, - sym__newline, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3904), 1, anon_sym_PLUS2, - STATE(1654), 1, - sym_comment, - STATE(1680), 1, + ACTIONS(3916), 1, + anon_sym_bit_DASHand2, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, + STATE(1656), 1, + sym_comment, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, + ACTIONS(3908), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3900), 4, + ACTIONS(3914), 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(2782), 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, + ACTIONS(3912), 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, - [29108] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3924), 1, - anon_sym_DASH2, - ACTIONS(3934), 1, - anon_sym_PLUS2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(1655), 1, - sym_comment, - ACTIONS(3922), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3926), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3930), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2788), 30, + ACTIONS(3906), 8, anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -168085,43 +168069,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_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [29182] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2913), 1, + ACTIONS(2844), 17, sym__newline, - ACTIONS(3870), 1, - anon_sym_DASH2, - ACTIONS(3878), 1, - anon_sym_PLUS2, - STATE(1656), 1, - sym_comment, - STATE(1681), 1, - aux_sym__repeat_newline, - ACTIONS(2784), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3872), 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(2782), 33, - anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -168136,108 +168085,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29256] = 11, + [29226] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(2986), 1, + sym__newline, + ACTIONS(3878), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3890), 1, anon_sym_PLUS2, - STATE(501), 1, + STATE(1544), 1, aux_sym__repeat_newline, STATE(1657), 1, sym_comment, - ACTIONS(2790), 2, + ACTIONS(2764), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3926), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3930), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2788), 34, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [29328] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2913), 1, - sym__newline, - STATE(1658), 1, - sym_comment, - STATE(1682), 1, - aux_sym__repeat_newline, - ACTIONS(3872), 2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2784), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2782), 36, + ACTIONS(2762), 35, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -168250,7 +168125,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, @@ -168274,96 +168148,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29396] = 8, + [29298] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(1659), 1, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(1658), 1, sym_comment, - ACTIONS(3926), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3930), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2790), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2788), 37, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [29462] = 7, + STATE(4403), 1, + sym_block, + STATE(5056), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [29378] = 12, ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2913), 1, - sym__newline, - STATE(1660), 1, + anon_sym_POUND, + ACTIONS(1624), 1, + anon_sym_DOLLAR, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(3966), 1, + anon_sym_DOT, + STATE(1659), 1, sym_comment, - STATE(1683), 1, - aux_sym__repeat_newline, - ACTIONS(3874), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2784), 5, + STATE(1892), 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(725), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1626), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2782), 38, + ACTIONS(1622), 30, 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, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -168382,6 +168266,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, @@ -168389,24 +168275,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29526] = 6, - ACTIONS(3), 1, + [29452] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(1661), 1, + ACTIONS(2994), 1, + aux_sym_cmd_identifier_token2, + STATE(1660), 1, sym_comment, - ACTIONS(3930), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2790), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2788), 39, - anon_sym_in, + ACTIONS(2608), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -168418,8 +168295,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + ACTIONS(2610), 29, + anon_sym_in, + anon_sym_GT2, anon_sym_DASH2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -168430,66 +168315,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, + anon_sym_LT2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29588] = 18, + [29512] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(1661), 1, + sym_comment, + STATE(4913), 1, + sym_block, + STATE(4946), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [29592] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2913), 1, + ACTIONS(2955), 1, sym__newline, - ACTIONS(3870), 1, - anon_sym_DASH2, ACTIONS(3878), 1, + anon_sym_DASH2, + ACTIONS(3890), 1, anon_sym_PLUS2, - ACTIONS(3906), 1, + ACTIONS(3894), 1, anon_sym_bit_DASHand2, - ACTIONS(3908), 1, + ACTIONS(3934), 1, + anon_sym_and2, + ACTIONS(3938), 1, anon_sym_bit_DASHxor2, - ACTIONS(3910), 1, + ACTIONS(3940), 1, anon_sym_bit_DASHor2, + STATE(1616), 1, + aux_sym__repeat_newline, STATE(1662), 1, sym_comment, - STATE(1684), 1, - aux_sym__repeat_newline, - ACTIONS(3872), 2, + ACTIONS(3876), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, + ACTIONS(3892), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3900), 4, + ACTIONS(3882), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3904), 4, + ACTIONS(3884), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3902), 8, + ACTIONS(3874), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -168498,7 +168450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2782), 14, + ACTIONS(2834), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -168510,190 +168462,183 @@ static 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, - [29674] = 17, + [29680] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, - anon_sym_DASH2, - ACTIONS(3934), 1, - anon_sym_PLUS2, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, ACTIONS(3942), 1, - anon_sym_bit_DASHand2, - ACTIONS(3944), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3946), 1, - anon_sym_bit_DASHor2, - STATE(501), 1, - aux_sym__repeat_newline, + anon_sym_LBRACE, STATE(1663), 1, sym_comment, - ACTIONS(3922), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3926), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3930), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3940), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3938), 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(2788), 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, - [29758] = 19, + STATE(4634), 1, + sym_block, + STATE(4961), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [29760] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2913), 1, - sym__newline, - ACTIONS(3870), 1, - anon_sym_DASH2, - ACTIONS(3878), 1, - anon_sym_PLUS2, - ACTIONS(3906), 1, - anon_sym_bit_DASHand2, - ACTIONS(3908), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3910), 1, - anon_sym_bit_DASHor2, - ACTIONS(3912), 1, - anon_sym_and2, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3942), 1, + anon_sym_LBRACE, STATE(1664), 1, sym_comment, - STATE(1685), 1, - aux_sym__repeat_newline, - ACTIONS(3872), 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(3898), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3900), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3904), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3902), 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(2782), 13, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [29846] = 18, + STATE(4637), 1, + sym_block, + STATE(4962), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [29840] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(2955), 1, + sym__newline, + ACTIONS(3878), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3890), 1, anon_sym_PLUS2, - ACTIONS(3942), 1, + ACTIONS(3894), 1, anon_sym_bit_DASHand2, - ACTIONS(3944), 1, + ACTIONS(3938), 1, anon_sym_bit_DASHxor2, - ACTIONS(3946), 1, + ACTIONS(3940), 1, anon_sym_bit_DASHor2, - ACTIONS(3948), 1, - anon_sym_and2, - STATE(501), 1, + STATE(1606), 1, aux_sym__repeat_newline, STATE(1665), 1, sym_comment, - ACTIONS(3922), 2, + ACTIONS(3876), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, + ACTIONS(3892), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, + ACTIONS(3882), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3940), 4, + ACTIONS(3884), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3938), 8, + ACTIONS(3874), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -168702,8 +168647,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, - sym__newline, + ACTIONS(2834), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -168715,57 +168659,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [29932] = 20, + [29926] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(3870), 1, + ACTIONS(3896), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(3904), 1, anon_sym_PLUS2, - ACTIONS(3906), 1, - anon_sym_bit_DASHand2, - ACTIONS(3908), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3910), 1, - anon_sym_bit_DASHor2, - ACTIONS(3912), 1, - anon_sym_and2, - ACTIONS(3914), 1, - anon_sym_xor2, + STATE(522), 1, + aux_sym__repeat_newline, STATE(1666), 1, sym_comment, - STATE(1686), 1, - aux_sym__repeat_newline, - ACTIONS(3872), 2, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, + ACTIONS(3908), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3900), 4, + ACTIONS(3914), 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(3904), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3902), 8, + ACTIONS(3906), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -168774,7 +168702,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2782), 12, + ACTIONS(2848), 22, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -168786,64 +168715,185 @@ static 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, - [30022] = 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, + [30002] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(1667), 1, + sym_comment, + STATE(4639), 1, + sym_block, + STATE(4963), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [30082] = 19, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1764), 1, + anon_sym_DQUOTE, + ACTIONS(1766), 1, + anon_sym_SQUOTE, + ACTIONS(1768), 1, + anon_sym_BQUOTE, + ACTIONS(1770), 1, + sym_raw_string_begin, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3671), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3834), 1, + anon_sym_DASH_DASH, + STATE(1668), 1, + sym_comment, + STATE(1708), 1, + aux_sym_decl_def_repeat1, + STATE(2100), 1, + sym__val_number_decimal, + STATE(2168), 1, + sym_long_flag, + STATE(3801), 1, + sym_cmd_identifier, + STATE(3802), 1, + sym_val_string, + STATE(3985), 1, + sym__command_name, + ACTIONS(3836), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3838), 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(3667), 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, + [30170] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(2989), 1, + sym__newline, + ACTIONS(3878), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3890), 1, anon_sym_PLUS2, - ACTIONS(3942), 1, - anon_sym_bit_DASHand2, - ACTIONS(3944), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3946), 1, - anon_sym_bit_DASHor2, - ACTIONS(3948), 1, - anon_sym_and2, - ACTIONS(3950), 1, - anon_sym_xor2, - STATE(501), 1, + STATE(1594), 1, aux_sym__repeat_newline, - STATE(1667), 1, + STATE(1669), 1, sym_comment, - ACTIONS(3922), 2, + ACTIONS(3876), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, + ACTIONS(3892), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, + ACTIONS(3882), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3940), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3938), 8, + ACTIONS(2794), 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), 13, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -168855,42 +168905,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [30110] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2913), 1, - sym__newline, - ACTIONS(3870), 1, - anon_sym_DASH2, - ACTIONS(3878), 1, - anon_sym_PLUS2, - STATE(1668), 1, - sym_comment, - STATE(1687), 1, - aux_sym__repeat_newline, - ACTIONS(3872), 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(3898), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3900), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3902), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -168898,21 +168915,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2782), 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, @@ -168920,38 +168922,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30188] = 13, + [30246] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(1670), 1, + sym_comment, + STATE(4643), 1, + sym_block, + STATE(4967), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [30326] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(2876), 1, + sym__newline, + ACTIONS(3878), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3890), 1, anon_sym_PLUS2, - STATE(501), 1, + ACTIONS(3894), 1, + anon_sym_bit_DASHand2, + ACTIONS(3938), 1, + anon_sym_bit_DASHxor2, + STATE(1564), 1, aux_sym__repeat_newline, - STATE(1669), 1, + STATE(1671), 1, sym_comment, - ACTIONS(3922), 2, + ACTIONS(3876), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, + ACTIONS(3892), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, + ACTIONS(3882), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3938), 8, + ACTIONS(3884), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3874), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -168960,8 +169038,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), 22, - sym__newline, + ACTIONS(2840), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -168976,39 +169053,30 @@ 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, - [30264] = 11, + [30410] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2913), 1, + ACTIONS(2986), 1, sym__newline, - ACTIONS(3870), 1, - anon_sym_DASH2, - ACTIONS(3878), 1, - anon_sym_PLUS2, - STATE(1670), 1, - sym_comment, - STATE(1688), 1, + STATE(1630), 1, aux_sym__repeat_newline, - ACTIONS(2784), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3872), 2, + STATE(1672), 1, + sym_comment, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2782), 35, + ACTIONS(2764), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2762), 36, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -169021,6 +169089,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, @@ -169044,32 +169113,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30336] = 10, + [30478] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(1673), 1, + sym_comment, + STATE(4734), 1, + sym_block, + STATE(5054), 1, + sym_returns, + STATE(5104), 1, + sym__type_annotation, + STATE(5316), 1, + sym__one_type, + STATE(5317), 1, + sym__multiple_types, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [30558] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(2989), 1, + sym__newline, + ACTIONS(3878), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3890), 1, anon_sym_PLUS2, - STATE(501), 1, + STATE(1587), 1, aux_sym__repeat_newline, - STATE(1671), 1, + STATE(1674), 1, sym_comment, - ACTIONS(2790), 2, + ACTIONS(2796), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2788), 36, + ACTIONS(3892), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2794), 33, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -169099,50 +169237,52 @@ 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, - [30406] = 15, + [30632] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2913), 1, + ACTIONS(2989), 1, sym__newline, - ACTIONS(3870), 1, - anon_sym_DASH2, ACTIONS(3878), 1, + anon_sym_DASH2, + ACTIONS(3890), 1, anon_sym_PLUS2, - STATE(1672), 1, + ACTIONS(3894), 1, + anon_sym_bit_DASHand2, + ACTIONS(3938), 1, + anon_sym_bit_DASHxor2, + STATE(1675), 1, sym_comment, - STATE(1689), 1, + STATE(1696), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, + ACTIONS(3876), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, + ACTIONS(3892), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3900), 4, + ACTIONS(3882), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3904), 4, + ACTIONS(3884), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3902), 8, + ACTIONS(3874), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -169151,7 +169291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2782), 17, + ACTIONS(2794), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -169166,55 +169306,32 @@ 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, - [30486] = 14, + [30716] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(3896), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3904), 1, anon_sym_PLUS2, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(1673), 1, + STATE(1676), 1, sym_comment, - ACTIONS(3922), 2, + ACTIONS(2788), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3940), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3938), 8, + ACTIONS(2786), 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), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -169230,59 +169347,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30564] = 16, + [30786] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2913), 1, - sym__newline, - ACTIONS(3870), 1, - anon_sym_DASH2, - ACTIONS(3878), 1, - anon_sym_PLUS2, - ACTIONS(3906), 1, - anon_sym_bit_DASHand2, - STATE(1674), 1, + STATE(1677), 1, sym_comment, - STATE(1690), 1, - aux_sym__repeat_newline, - ACTIONS(3872), 2, + ACTIONS(3954), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3958), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3960), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, + ACTIONS(2626), 3, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3900), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3904), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3902), 8, + anon_sym_PLUS2, + ACTIONS(2624), 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(2782), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -169294,59 +169399,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [30646] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3924), 1, - anon_sym_DASH2, - ACTIONS(3934), 1, - anon_sym_PLUS2, - ACTIONS(3942), 1, - anon_sym_bit_DASHand2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(1675), 1, - sym_comment, - ACTIONS(3922), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3926), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3930), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3928), 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(3940), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3938), 8, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [30850] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1678), 1, + sym_comment, + ACTIONS(3958), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2626), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2624), 40, anon_sym_in, - anon_sym_not_DASHin2, - anon_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, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -169359,63 +169452,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30726] = 17, + [30910] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2913), 1, + ACTIONS(2989), 1, sym__newline, - ACTIONS(3870), 1, - anon_sym_DASH2, - ACTIONS(3878), 1, - anon_sym_PLUS2, - ACTIONS(3906), 1, - anon_sym_bit_DASHand2, - ACTIONS(3908), 1, - anon_sym_bit_DASHxor2, - STATE(1676), 1, - sym_comment, - STATE(1691), 1, + STATE(1584), 1, aux_sym__repeat_newline, - ACTIONS(3872), 2, + STATE(1679), 1, + sym_comment, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, + ACTIONS(2796), 3, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3900), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3904), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3902), 8, + anon_sym_PLUS2, + ACTIONS(2794), 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(2782), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -169427,61 +169514,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_bit_DASHor2, - [30810] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3924), 1, - anon_sym_DASH2, - ACTIONS(3934), 1, - anon_sym_PLUS2, - ACTIONS(3942), 1, - anon_sym_bit_DASHand2, - ACTIONS(3944), 1, - anon_sym_bit_DASHxor2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(1677), 1, - sym_comment, - ACTIONS(3922), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3926), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3930), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3928), 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(3940), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3938), 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(2788), 16, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [30978] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2989), 1, sym__newline, + STATE(1573), 1, + aux_sym__repeat_newline, + STATE(1680), 1, + sym_comment, + ACTIONS(3886), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2796), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2794), 38, + anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -169493,109 +169569,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_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, - [30892] = 15, + [31042] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3882), 1, + ACTIONS(3918), 1, anon_sym_COLON, - ACTIONS(3884), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(3890), 1, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(3928), 1, anon_sym_oneof, - ACTIONS(3894), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, - STATE(1678), 1, + STATE(1681), 1, sym_comment, - STATE(4828), 1, + STATE(4763), 1, sym_block, - STATE(4942), 1, + STATE(5027), 1, sym_returns, - STATE(5304), 1, - sym__one_type, - STATE(5308), 1, - sym__multiple_types, - STATE(5317), 1, + STATE(5104), 1, sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [30972] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3882), 1, - anon_sym_COLON, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(1679), 1, - sym_comment, - STATE(4835), 1, - sym_block, - STATE(4950), 1, - sym_returns, - STATE(5304), 1, + STATE(5316), 1, sym__one_type, - STATE(5308), 1, - sym__multiple_types, STATE(5317), 1, - sym__type_annotation, - ACTIONS(3888), 2, + sym__multiple_types, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(2679), 4, + STATE(2720), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -169627,39 +169660,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [31052] = 12, + [31122] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(3896), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3904), 1, anon_sym_PLUS2, - STATE(501), 1, + ACTIONS(3916), 1, + anon_sym_bit_DASHand2, + STATE(522), 1, aux_sym__repeat_newline, - STATE(1680), 1, + STATE(1682), 1, sym_comment, - ACTIONS(3922), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, + ACTIONS(3908), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3914), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2796), 30, + ACTIONS(3912), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3906), 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(2786), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -169675,47 +169723,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31126] = 11, + [31202] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(3896), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3904), 1, anon_sym_PLUS2, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(1681), 1, + STATE(1683), 1, sym_comment, - ACTIONS(2798), 2, + ACTIONS(2788), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, + ACTIONS(3914), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2796), 34, + ACTIONS(2786), 34, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -169750,82 +169786,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31198] = 8, + [31274] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(1682), 1, + ACTIONS(3952), 1, + anon_sym_DASH2, + ACTIONS(3962), 1, + anon_sym_PLUS2, + ACTIONS(3976), 1, + anon_sym_bit_DASHand2, + ACTIONS(3978), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3980), 1, + anon_sym_bit_DASHor2, + STATE(1684), 1, sym_comment, - ACTIONS(3926), 2, + ACTIONS(3950), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3954), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3958), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3960), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2798), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2796), 37, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(3964), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3956), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(3974), 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, - [31264] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(1683), 1, - sym_comment, - ACTIONS(3930), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2798), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2796), 39, + ACTIONS(3972), 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(2624), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -169838,75 +169848,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [31326] = 17, + [31356] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(3952), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3962), 1, anon_sym_PLUS2, - ACTIONS(3942), 1, + ACTIONS(3976), 1, anon_sym_bit_DASHand2, - ACTIONS(3944), 1, + ACTIONS(3978), 1, anon_sym_bit_DASHxor2, - ACTIONS(3946), 1, + ACTIONS(3980), 1, anon_sym_bit_DASHor2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(1684), 1, + ACTIONS(3982), 1, + anon_sym_and2, + STATE(1685), 1, sym_comment, - ACTIONS(3922), 2, + ACTIONS(3950), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3954), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3958), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3960), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, + ACTIONS(3964), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, + ACTIONS(3956), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3940), 4, + ACTIONS(3974), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3938), 8, + ACTIONS(3972), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -169915,7 +169903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2796), 15, + ACTIONS(2624), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -169928,54 +169916,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [31410] = 18, + [31440] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(3952), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3962), 1, anon_sym_PLUS2, - ACTIONS(3942), 1, + ACTIONS(3976), 1, anon_sym_bit_DASHand2, - ACTIONS(3944), 1, + ACTIONS(3978), 1, anon_sym_bit_DASHxor2, - ACTIONS(3946), 1, + ACTIONS(3980), 1, anon_sym_bit_DASHor2, - ACTIONS(3948), 1, + ACTIONS(3982), 1, anon_sym_and2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(1685), 1, + ACTIONS(3984), 1, + anon_sym_xor2, + STATE(1686), 1, sym_comment, - ACTIONS(3922), 2, + ACTIONS(3950), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3954), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3958), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3960), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, + ACTIONS(3964), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, + ACTIONS(3956), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3940), 4, + ACTIONS(3974), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3938), 8, + ACTIONS(3972), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -169984,7 +169972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2796), 14, + ACTIONS(2624), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -169997,55 +169985,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_xor2, + anon_sym_RBRACE, anon_sym_or2, - [31496] = 19, + [31526] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(2989), 1, + sym__newline, + ACTIONS(3878), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3890), 1, anon_sym_PLUS2, - ACTIONS(3942), 1, + ACTIONS(3894), 1, anon_sym_bit_DASHand2, - ACTIONS(3944), 1, + ACTIONS(3938), 1, anon_sym_bit_DASHxor2, - ACTIONS(3946), 1, + ACTIONS(3940), 1, anon_sym_bit_DASHor2, - ACTIONS(3948), 1, - anon_sym_and2, - ACTIONS(3950), 1, - anon_sym_xor2, - STATE(501), 1, + STATE(1562), 1, aux_sym__repeat_newline, - STATE(1686), 1, + STATE(1687), 1, sym_comment, - ACTIONS(3922), 2, + ACTIONS(3876), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, + ACTIONS(3892), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, + ACTIONS(3882), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3940), 4, + ACTIONS(3884), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3938), 8, + ACTIONS(3874), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -170054,8 +170040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2796), 13, - sym__newline, + ACTIONS(2794), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -170067,39 +170052,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [31584] = 13, + [31612] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(3952), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3962), 1, anon_sym_PLUS2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(1687), 1, + STATE(1688), 1, sym_comment, - ACTIONS(3922), 2, + ACTIONS(3950), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3954), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3958), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3960), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, + ACTIONS(3964), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, + ACTIONS(3956), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3938), 8, + ACTIONS(3972), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -170108,7 +170093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2796), 22, + ACTIONS(2624), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -170121,6 +170106,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, @@ -170131,30 +170117,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31660] = 10, + [31686] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(3952), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3962), 1, anon_sym_PLUS2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(1688), 1, + STATE(1689), 1, sym_comment, - ACTIONS(2798), 2, + ACTIONS(2626), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3954), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3958), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3960), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2796), 36, + ACTIONS(2624), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -170168,6 +170152,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, @@ -170191,43 +170176,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31730] = 14, + [31754] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(3952), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3962), 1, anon_sym_PLUS2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(1689), 1, + STATE(1690), 1, sym_comment, - ACTIONS(3922), 2, + ACTIONS(3950), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3954), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3958), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3960), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, + ACTIONS(3964), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, + ACTIONS(3956), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3940), 4, + ACTIONS(3974), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3938), 8, + ACTIONS(3972), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -170236,7 +170219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2796), 18, + ACTIONS(2624), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -170249,51 +170232,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, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31808] = 15, + [31830] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(2989), 1, + sym__newline, + ACTIONS(3878), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3890), 1, anon_sym_PLUS2, - ACTIONS(3942), 1, + ACTIONS(3894), 1, anon_sym_bit_DASHand2, - STATE(501), 1, + ACTIONS(3934), 1, + anon_sym_and2, + ACTIONS(3938), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3940), 1, + anon_sym_bit_DASHor2, + STATE(1596), 1, aux_sym__repeat_newline, - STATE(1690), 1, + STATE(1691), 1, sym_comment, - ACTIONS(3922), 2, + ACTIONS(3876), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, + ACTIONS(3892), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, + ACTIONS(3882), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3940), 4, + ACTIONS(3884), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3938), 8, + ACTIONS(3874), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -170302,8 +170294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2796), 17, - sym__newline, + ACTIONS(2794), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -170315,52 +170306,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, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [31888] = 16, + [31918] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(3952), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(3962), 1, anon_sym_PLUS2, - ACTIONS(3942), 1, + ACTIONS(3976), 1, anon_sym_bit_DASHand2, - ACTIONS(3944), 1, - anon_sym_bit_DASHxor2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(1691), 1, + STATE(1692), 1, sym_comment, - ACTIONS(3922), 2, + ACTIONS(3950), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(3954), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3958), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(3960), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, + ACTIONS(3964), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, + ACTIONS(3956), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3940), 4, + ACTIONS(3974), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3938), 8, + ACTIONS(3972), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -170369,7 +170353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2796), 16, + ACTIONS(2624), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -170382,42 +170366,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31970] = 11, + [31996] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3954), 1, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(3878), 1, anon_sym_DASH2, - ACTIONS(3964), 1, + ACTIONS(3890), 1, anon_sym_PLUS2, - STATE(1692), 1, + ACTIONS(3894), 1, + anon_sym_bit_DASHand2, + ACTIONS(3934), 1, + anon_sym_and2, + ACTIONS(3936), 1, + anon_sym_xor2, + ACTIONS(3938), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3940), 1, + anon_sym_bit_DASHor2, + STATE(1620), 1, + aux_sym__repeat_newline, + STATE(1693), 1, sym_comment, - ACTIONS(3952), 2, + ACTIONS(3876), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3956), 2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3960), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3962), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3966), 2, + ACTIONS(3892), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3958), 4, + ACTIONS(3882), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2700), 31, + ACTIONS(3884), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3874), 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(2794), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -170429,121 +170441,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_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, - [32042] = 10, + [32086] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3954), 1, + ACTIONS(3952), 1, anon_sym_DASH2, - ACTIONS(3964), 1, + ACTIONS(3962), 1, anon_sym_PLUS2, - STATE(1693), 1, + ACTIONS(3976), 1, + anon_sym_bit_DASHand2, + ACTIONS(3978), 1, + anon_sym_bit_DASHxor2, + STATE(1694), 1, sym_comment, - ACTIONS(2702), 2, + ACTIONS(3950), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3956), 2, + ACTIONS(3954), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3960), 2, + ACTIONS(3958), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3962), 2, + ACTIONS(3960), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3966), 2, + ACTIONS(3964), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2700), 35, - 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, + ACTIONS(3956), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(3974), 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, - [32112] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1694), 1, - sym_comment, - ACTIONS(3956), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3960), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3962), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2702), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2700), 38, + ACTIONS(3972), 8, anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -170551,35 +170489,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, - [32176] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1695), 1, - sym_comment, - ACTIONS(3960), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2702), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2700), 40, - anon_sym_in, + ACTIONS(2624), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -170592,74 +170502,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32236] = 16, + [32166] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3954), 1, + ACTIONS(2986), 1, + sym__newline, + ACTIONS(3878), 1, anon_sym_DASH2, - ACTIONS(3964), 1, + ACTIONS(3890), 1, anon_sym_PLUS2, - ACTIONS(3972), 1, - anon_sym_bit_DASHand2, - ACTIONS(3974), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3976), 1, - anon_sym_bit_DASHor2, - STATE(1696), 1, + STATE(1545), 1, + aux_sym__repeat_newline, + STATE(1695), 1, sym_comment, - ACTIONS(3952), 2, + ACTIONS(3876), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3956), 2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3960), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3962), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3966), 2, + ACTIONS(3892), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3958), 4, + ACTIONS(3882), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3970), 4, + ACTIONS(3884), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3968), 8, + ACTIONS(3874), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -170668,8 +170554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2700), 16, - sym__newline, + ACTIONS(2762), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -170681,53 +170566,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, - [32318] = 17, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [32246] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3954), 1, + ACTIONS(3896), 1, anon_sym_DASH2, - ACTIONS(3964), 1, + ACTIONS(3904), 1, anon_sym_PLUS2, - ACTIONS(3972), 1, + ACTIONS(3916), 1, anon_sym_bit_DASHand2, - ACTIONS(3974), 1, + ACTIONS(3932), 1, anon_sym_bit_DASHxor2, - ACTIONS(3976), 1, - anon_sym_bit_DASHor2, - ACTIONS(3978), 1, - anon_sym_and2, - STATE(1697), 1, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(1696), 1, sym_comment, - ACTIONS(3952), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3956), 2, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3960), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3962), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3966), 2, + ACTIONS(3908), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3914), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3958), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3970), 4, + ACTIONS(3912), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3968), 8, + ACTIONS(3906), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -170736,7 +170621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2700), 15, + ACTIONS(2844), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -170749,54 +170634,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [32402] = 18, + anon_sym_bit_DASHor2, + [32328] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3954), 1, + ACTIONS(2989), 1, + sym__newline, + ACTIONS(3878), 1, anon_sym_DASH2, - ACTIONS(3964), 1, + ACTIONS(3890), 1, anon_sym_PLUS2, - ACTIONS(3972), 1, - anon_sym_bit_DASHand2, - ACTIONS(3974), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3976), 1, - anon_sym_bit_DASHor2, - ACTIONS(3978), 1, - anon_sym_and2, - ACTIONS(3980), 1, - anon_sym_xor2, - STATE(1698), 1, + STATE(1637), 1, + aux_sym__repeat_newline, + STATE(1697), 1, sym_comment, - ACTIONS(3952), 2, + ACTIONS(3876), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3956), 2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3960), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3962), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3966), 2, + ACTIONS(3892), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3958), 4, + ACTIONS(3882), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3970), 4, + ACTIONS(3884), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3968), 8, + ACTIONS(3874), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -170805,8 +170685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2700), 14, - sym__newline, + ACTIONS(2794), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -170818,38 +170697,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [32488] = 12, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [32408] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3954), 1, + ACTIONS(2989), 1, + sym__newline, + ACTIONS(3878), 1, anon_sym_DASH2, - ACTIONS(3964), 1, + ACTIONS(3890), 1, anon_sym_PLUS2, - STATE(1699), 1, + STATE(1624), 1, + aux_sym__repeat_newline, + STATE(1698), 1, sym_comment, - ACTIONS(3952), 2, + ACTIONS(3876), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3956), 2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3960), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3962), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3966), 2, + ACTIONS(3892), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3958), 4, + ACTIONS(3882), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3968), 8, + ACTIONS(3874), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -170858,8 +170745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2700), 23, - sym__newline, + ACTIONS(2794), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -170871,7 +170757,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, @@ -170882,30 +170767,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32562] = 9, + [32486] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3954), 1, - anon_sym_DASH2, - ACTIONS(3964), 1, - anon_sym_PLUS2, - STATE(1700), 1, + ACTIONS(2955), 1, + sym__newline, + STATE(1572), 1, + aux_sym__repeat_newline, + STATE(1699), 1, sym_comment, - ACTIONS(2702), 2, + ACTIONS(3886), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2836), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(3956), 2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2834), 38, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [32550] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2955), 1, + sym__newline, + STATE(1555), 1, + aux_sym__repeat_newline, + STATE(1700), 1, + sym_comment, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3960), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3962), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2700), 37, + ACTIONS(2836), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2834), 36, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -170917,7 +170859,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -170941,51 +170883,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32630] = 13, + [32618] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3954), 1, + ACTIONS(2989), 1, + sym__newline, + ACTIONS(3878), 1, anon_sym_DASH2, - ACTIONS(3964), 1, + ACTIONS(3890), 1, anon_sym_PLUS2, + STATE(1631), 1, + aux_sym__repeat_newline, STATE(1701), 1, sym_comment, - ACTIONS(3952), 2, + ACTIONS(2796), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3956), 2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3960), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3962), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3966), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3958), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3970), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3968), 8, + ACTIONS(2794), 35, anon_sym_in, - anon_sym_not_DASHin2, - anon_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(2700), 19, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -170997,50 +170921,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, - [32706] = 14, + [32690] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3954), 1, + ACTIONS(2986), 1, + sym__newline, + ACTIONS(3878), 1, anon_sym_DASH2, - ACTIONS(3964), 1, + ACTIONS(3890), 1, anon_sym_PLUS2, - ACTIONS(3972), 1, + ACTIONS(3894), 1, anon_sym_bit_DASHand2, + STATE(1546), 1, + aux_sym__repeat_newline, STATE(1702), 1, sym_comment, - ACTIONS(3952), 2, + ACTIONS(3876), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3956), 2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3960), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3962), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3966), 2, + ACTIONS(3892), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3958), 4, + ACTIONS(3882), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3970), 4, + ACTIONS(3884), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3968), 8, + ACTIONS(3874), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -171049,8 +170993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2700), 18, - sym__newline, + ACTIONS(2762), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -171062,51 +171005,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32784] = 15, + [32772] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3954), 1, + ACTIONS(3896), 1, anon_sym_DASH2, - ACTIONS(3964), 1, + ACTIONS(3904), 1, anon_sym_PLUS2, - ACTIONS(3972), 1, - anon_sym_bit_DASHand2, - ACTIONS(3974), 1, - anon_sym_bit_DASHxor2, + STATE(522), 1, + aux_sym__repeat_newline, STATE(1703), 1, sym_comment, - ACTIONS(3952), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3956), 2, + ACTIONS(3898), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3960), 2, + ACTIONS(3900), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3962), 2, + ACTIONS(3902), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3966), 2, + ACTIONS(3908), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3914), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3958), 4, + ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3970), 4, + ACTIONS(3912), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3968), 8, + ACTIONS(3906), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -171115,7 +171055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2700), 17, + ACTIONS(2786), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -171128,26 +171068,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32864] = 5, + [32850] = 12, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2955), 1, + sym__newline, + ACTIONS(3878), 1, + anon_sym_DASH2, + ACTIONS(3890), 1, + anon_sym_PLUS2, + STATE(1683), 1, + aux_sym__repeat_newline, STATE(1704), 1, sym_comment, - ACTIONS(2586), 5, + ACTIONS(2836), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3880), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(3809), 13, - ts_builtin_sym_end, - anon_sym_finally, - sym__newline, + ACTIONS(3886), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3888), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3892), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2834), 33, + anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -171158,9 +171114,7 @@ static const 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(2584), 29, - anon_sym_in, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -171179,49 +171133,43 @@ 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, [32924] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2878), 1, + ACTIONS(2955), 1, sym__newline, - ACTIONS(3870), 1, - anon_sym_DASH2, ACTIONS(3878), 1, + anon_sym_DASH2, + ACTIONS(3890), 1, anon_sym_PLUS2, - STATE(1655), 1, + STATE(1561), 1, aux_sym__repeat_newline, STATE(1705), 1, sym_comment, - ACTIONS(3872), 2, + ACTIONS(3876), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3880), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(3886), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(3888), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, + ACTIONS(3892), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3900), 4, + ACTIONS(3882), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2728), 29, + ACTIONS(2834), 29, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -171251,47 +171199,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33000] = 16, + [33000] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3986), 1, + ACTIONS(3990), 1, anon_sym_DASH2, - ACTIONS(3998), 1, - anon_sym_PLUS2, ACTIONS(4002), 1, + anon_sym_PLUS2, + STATE(1706), 1, + sym_comment, + ACTIONS(3988), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3992), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3998), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4000), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4004), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3994), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3996), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3986), 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(2624), 18, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHand2, - ACTIONS(4004), 1, anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [33075] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3990), 1, + anon_sym_DASH2, + ACTIONS(4002), 1, + anon_sym_PLUS2, ACTIONS(4006), 1, + anon_sym_and2, + ACTIONS(4008), 1, + anon_sym_bit_DASHand2, + ACTIONS(4010), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4012), 1, anon_sym_bit_DASHor2, - STATE(1706), 1, + STATE(1707), 1, sym_comment, - ACTIONS(3984), 2, + ACTIONS(3988), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3988), 2, + ACTIONS(3992), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3994), 2, + ACTIONS(3998), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3996), 2, + ACTIONS(4000), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4000), 2, + ACTIONS(4004), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3990), 4, + ACTIONS(3994), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3992), 4, + ACTIONS(3996), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3982), 8, + ACTIONS(3986), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -171300,7 +171312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2700), 15, + ACTIONS(2624), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -171313,53 +171325,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_and2, anon_sym_xor2, anon_sym_or2, - [33081] = 19, + [33158] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1770), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(3663), 1, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, - ACTIONS(4008), 1, + ACTIONS(4014), 1, anon_sym_DASH_DASH, - STATE(1707), 1, + STATE(1708), 1, sym_comment, - STATE(1732), 1, + STATE(2017), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2100), 1, sym__val_number_decimal, - STATE(2173), 1, + STATE(2168), 1, sym_long_flag, - STATE(3783), 1, + STATE(3801), 1, sym_cmd_identifier, - STATE(3804), 1, + STATE(3802), 1, sym_val_string, - STATE(3928), 1, + STATE(3970), 1, sym__command_name, - ACTIONS(3659), 2, + ACTIONS(3667), 2, anon_sym_export, anon_sym_in, - ACTIONS(3671), 2, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2276), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3661), 24, + ACTIONS(3669), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171384,96 +171395,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [33168] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1630), 1, - anon_sym_DOLLAR, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - ACTIONS(1711), 1, - sym__unquoted_pattern, - STATE(1708), 1, - sym_comment, - STATE(2003), 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(747), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1691), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1689), 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, - [33239] = 11, + [33245] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3986), 1, + ACTIONS(3990), 1, anon_sym_DASH2, - ACTIONS(3998), 1, + ACTIONS(4002), 1, anon_sym_PLUS2, STATE(1709), 1, sym_comment, - ACTIONS(3984), 2, + ACTIONS(3988), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3988), 2, + ACTIONS(3992), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3994), 2, + ACTIONS(3998), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3996), 2, + ACTIONS(4000), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4000), 2, + ACTIONS(4004), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3990), 4, + ACTIONS(3994), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2700), 30, + ACTIONS(2624), 30, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -171504,101 +171455,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33310] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_DQUOTE, - ACTIONS(1768), 1, - anon_sym_SQUOTE, - ACTIONS(1770), 1, - anon_sym_BQUOTE, - ACTIONS(1772), 1, - sym_raw_string_begin, - ACTIONS(3663), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(4008), 1, - anon_sym_DASH_DASH, - STATE(1710), 1, - sym_comment, - STATE(1978), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, - sym__val_number_decimal, - STATE(2173), 1, - sym_long_flag, - STATE(3783), 1, - sym_cmd_identifier, - STATE(3804), 1, - sym_val_string, - STATE(3958), 1, - sym__command_name, - ACTIONS(3659), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3671), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2276), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3661), 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, - [33397] = 10, + [33316] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3986), 1, + ACTIONS(3990), 1, anon_sym_DASH2, - ACTIONS(3998), 1, + ACTIONS(4002), 1, anon_sym_PLUS2, - STATE(1711), 1, + ACTIONS(4006), 1, + anon_sym_and2, + ACTIONS(4008), 1, + anon_sym_bit_DASHand2, + ACTIONS(4010), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4012), 1, + anon_sym_bit_DASHor2, + ACTIONS(4016), 1, + anon_sym_xor2, + STATE(1710), 1, sym_comment, - ACTIONS(2702), 2, + ACTIONS(3988), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3988), 2, + ACTIONS(3992), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3994), 2, + ACTIONS(3998), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3996), 2, + ACTIONS(4000), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4000), 2, + ACTIONS(4004), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2700), 34, - ts_builtin_sym_end, + ACTIONS(3994), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3996), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3986), 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(2624), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -171610,46 +171521,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_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_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, - [33466] = 7, + [33401] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1712), 1, + ACTIONS(3990), 1, + anon_sym_DASH2, + ACTIONS(4002), 1, + anon_sym_PLUS2, + STATE(1711), 1, sym_comment, - ACTIONS(3988), 2, + ACTIONS(2626), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3992), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3994), 2, + ACTIONS(3998), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3996), 2, + ACTIONS(4000), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2702), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2700), 37, + ACTIONS(2624), 36, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -171663,7 +171557,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, @@ -171687,84 +171580,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33529] = 14, + [33468] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, + ACTIONS(1764), 1, + anon_sym_DQUOTE, + ACTIONS(1766), 1, + anon_sym_SQUOTE, + ACTIONS(1768), 1, + anon_sym_BQUOTE, + ACTIONS(1770), 1, + sym_raw_string_begin, + ACTIONS(3671), 1, + aux_sym_cmd_identifier_token1, ACTIONS(4014), 1, - sym__newline, - ACTIONS(4016), 1, - anon_sym_RBRACK, - STATE(1713), 1, + anon_sym_DASH_DASH, + STATE(1712), 1, sym_comment, - STATE(1758), 1, - aux_sym__types_body_repeat1, - STATE(1846), 1, - aux_sym__types_body_repeat3, - STATE(4894), 1, - sym__one_type, - STATE(5261), 1, - sym__type_annotation, - STATE(5394), 1, - sym__types_body, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [33606] = 5, + STATE(2017), 1, + aux_sym_decl_def_repeat1, + STATE(2100), 1, + sym__val_number_decimal, + STATE(2168), 1, + sym_long_flag, + STATE(3801), 1, + sym_cmd_identifier, + STATE(3802), 1, + sym_val_string, + STATE(3962), 1, + sym__command_name, + ACTIONS(3667), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3679), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3681), 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(3669), 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, + [33555] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1714), 1, + ACTIONS(3990), 1, + anon_sym_DASH2, + ACTIONS(4002), 1, + anon_sym_PLUS2, + STATE(1713), 1, sym_comment, - ACTIONS(3994), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2702), 5, + ACTIONS(2626), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3992), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2700), 39, + ACTIONS(3998), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4000), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4004), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2624), 34, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -171778,7 +171686,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, @@ -171797,43 +171704,39 @@ 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, - [33665] = 11, + [33624] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(1634), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(1659), 1, + ACTIONS(1636), 1, sym__unquoted_pattern, - STATE(1715), 1, + STATE(1714), 1, sym_comment, - STATE(2016), 1, + STATE(1996), 1, sym__immediate_decimal, - ACTIONS(4010), 2, + ACTIONS(4018), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4012), 2, + ACTIONS(4020), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(925), 2, + STATE(851), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1644), 6, + ACTIONS(1626), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1642), 30, + ACTIONS(1622), 30, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -171864,49 +171767,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33736] = 17, + [33695] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1764), 1, + anon_sym_DQUOTE, + ACTIONS(1766), 1, + anon_sym_SQUOTE, + ACTIONS(1768), 1, + anon_sym_BQUOTE, + ACTIONS(1770), 1, + sym_raw_string_begin, + ACTIONS(3671), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4014), 1, + anon_sym_DASH_DASH, + STATE(1715), 1, + sym_comment, + STATE(1724), 1, + aux_sym_decl_def_repeat1, + STATE(2100), 1, + sym__val_number_decimal, + STATE(2168), 1, + sym_long_flag, + STATE(3801), 1, + sym_cmd_identifier, + STATE(3802), 1, + sym_val_string, + STATE(3954), 1, + sym__command_name, + ACTIONS(3667), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3679), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3681), 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(3669), 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, + [33782] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3986), 1, + ACTIONS(3990), 1, anon_sym_DASH2, - ACTIONS(3998), 1, - anon_sym_PLUS2, ACTIONS(4002), 1, - anon_sym_bit_DASHand2, - ACTIONS(4004), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4006), 1, - anon_sym_bit_DASHor2, - ACTIONS(4018), 1, - anon_sym_and2, + anon_sym_PLUS2, STATE(1716), 1, sym_comment, - ACTIONS(3984), 2, + ACTIONS(3988), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3988), 2, + ACTIONS(3992), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3994), 2, + ACTIONS(3998), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3996), 2, + ACTIONS(4000), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4000), 2, + ACTIONS(4004), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3990), 4, + ACTIONS(3994), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3992), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3982), 8, + ACTIONS(3986), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -171915,7 +171873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2700), 14, + ACTIONS(2624), 22, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -171928,53 +171886,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [33819] = 18, + 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, + [33855] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3986), 1, + ACTIONS(3990), 1, anon_sym_DASH2, - ACTIONS(3998), 1, - anon_sym_PLUS2, ACTIONS(4002), 1, + anon_sym_PLUS2, + ACTIONS(4008), 1, anon_sym_bit_DASHand2, - ACTIONS(4004), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4006), 1, - anon_sym_bit_DASHor2, - ACTIONS(4018), 1, - anon_sym_and2, - ACTIONS(4020), 1, - anon_sym_xor2, STATE(1717), 1, sym_comment, - ACTIONS(3984), 2, + ACTIONS(3988), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3988), 2, + ACTIONS(3992), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3994), 2, + ACTIONS(3998), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3996), 2, + ACTIONS(4000), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4000), 2, + ACTIONS(4004), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3990), 4, + ACTIONS(3994), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3992), 4, + ACTIONS(3996), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3982), 8, + ACTIONS(3986), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -171983,7 +171941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2700), 13, + ACTIONS(2624), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -171996,51 +171954,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [33904] = 19, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [33932] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1440), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1442), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1444), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1454), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(3816), 1, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3818), 1, - sym__newline, + ACTIONS(4014), 1, + anon_sym_DASH_DASH, STATE(1718), 1, sym_comment, - STATE(1775), 1, - aux_sym__command_list_body_repeat1, - STATE(2076), 1, - aux_sym__types_body_repeat1, - STATE(2131), 1, + STATE(2017), 1, + aux_sym_decl_def_repeat1, + STATE(2100), 1, sym__val_number_decimal, - STATE(4916), 1, - sym__command_name, - STATE(4993), 1, + STATE(2168), 1, + sym_long_flag, + STATE(3801), 1, sym_cmd_identifier, - STATE(4994), 1, + STATE(3802), 1, sym_val_string, - ACTIONS(3671), 2, + STATE(3877), 1, + sym__command_name, + ACTIONS(3667), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3812), 2, - anon_sym_export, - anon_sym_in, - STATE(3776), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3814), 24, + ACTIONS(3669), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172065,50 +172027,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [33991] = 19, + [34019] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1770), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(3663), 1, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, - ACTIONS(4008), 1, + ACTIONS(4014), 1, anon_sym_DASH_DASH, STATE(1719), 1, sym_comment, - STATE(1978), 1, + STATE(1731), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2100), 1, sym__val_number_decimal, - STATE(2173), 1, + STATE(2168), 1, sym_long_flag, - STATE(3783), 1, + STATE(3801), 1, sym_cmd_identifier, - STATE(3804), 1, + STATE(3802), 1, sym_val_string, - STATE(3910), 1, + STATE(3947), 1, sym__command_name, - ACTIONS(3659), 2, + ACTIONS(3667), 2, anon_sym_export, anon_sym_in, - ACTIONS(3671), 2, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2276), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3661), 24, + ACTIONS(3669), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172133,46 +172095,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34078] = 12, + [34106] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3986), 1, - anon_sym_DASH2, - ACTIONS(3998), 1, - anon_sym_PLUS2, STATE(1720), 1, sym_comment, - ACTIONS(3984), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3988), 2, + ACTIONS(3992), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3994), 2, + ACTIONS(3998), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3996), 2, + ACTIONS(4000), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4000), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3990), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3982), 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(2700), 22, + ACTIONS(2626), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2624), 37, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -172184,51 +172127,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_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, - [34151] = 9, + [34169] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3986), 1, - anon_sym_DASH2, - ACTIONS(3998), 1, - anon_sym_PLUS2, + ACTIONS(1624), 1, + anon_sym_DOLLAR, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + ACTIONS(1697), 1, + sym__unquoted_pattern, STATE(1721), 1, sym_comment, - ACTIONS(2702), 2, + STATE(2011), 1, + sym__immediate_decimal, + ACTIONS(4018), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4020), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(758), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1689), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3988), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3994), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3996), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2700), 36, - ts_builtin_sym_end, + anon_sym_PLUS2, + ACTIONS(1687), 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_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -172247,47 +172202,52 @@ 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, - [34218] = 13, + [34240] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3986), 1, - anon_sym_DASH2, - ACTIONS(3998), 1, - anon_sym_PLUS2, + ACTIONS(1624), 1, + anon_sym_DOLLAR, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(4022), 1, + anon_sym_DOT, STATE(1722), 1, sym_comment, - ACTIONS(3984), 2, + STATE(1923), 1, + sym__immediate_decimal, + ACTIONS(4024), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4026), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2016), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1626), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3988), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3994), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3996), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4000), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3990), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3992), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3982), 8, + anon_sym_PLUS2, + ACTIONS(1622), 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, @@ -172295,127 +172255,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2700), 18, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [34293] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3986), 1, - anon_sym_DASH2, - ACTIONS(3998), 1, - anon_sym_PLUS2, - ACTIONS(4002), 1, - anon_sym_bit_DASHand2, - STATE(1723), 1, - sym_comment, - ACTIONS(3984), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3988), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3994), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3996), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4000), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3990), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3992), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3982), 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(2700), 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_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34370] = 15, + [34313] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3986), 1, + ACTIONS(3990), 1, anon_sym_DASH2, - ACTIONS(3998), 1, - anon_sym_PLUS2, ACTIONS(4002), 1, + anon_sym_PLUS2, + ACTIONS(4008), 1, anon_sym_bit_DASHand2, - ACTIONS(4004), 1, + ACTIONS(4010), 1, anon_sym_bit_DASHxor2, - STATE(1724), 1, + STATE(1723), 1, sym_comment, - ACTIONS(3984), 2, + ACTIONS(3988), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3988), 2, + ACTIONS(3992), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3994), 2, + ACTIONS(3998), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3996), 2, + ACTIONS(4000), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4000), 2, + ACTIONS(4004), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3990), 4, + ACTIONS(3994), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3992), 4, + ACTIONS(3996), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3982), 8, + ACTIONS(3986), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -172424,7 +172319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2700), 16, + ACTIONS(2624), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -172441,50 +172336,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [34449] = 19, + [34392] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1770), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(3663), 1, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, - ACTIONS(4008), 1, + ACTIONS(4014), 1, anon_sym_DASH_DASH, - STATE(1725), 1, + STATE(1724), 1, sym_comment, - STATE(1978), 1, + STATE(2017), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2100), 1, sym__val_number_decimal, - STATE(2173), 1, + STATE(2168), 1, sym_long_flag, - STATE(3783), 1, + STATE(3801), 1, sym_cmd_identifier, - STATE(3804), 1, + STATE(3802), 1, sym_val_string, - STATE(3972), 1, + STATE(3930), 1, sym__command_name, - ACTIONS(3659), 2, + ACTIONS(3667), 2, anon_sym_export, anon_sym_in, - ACTIONS(3671), 2, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2276), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3661), 24, + ACTIONS(3669), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172509,50 +172404,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34536] = 19, + [34479] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1770), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(3663), 1, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, - ACTIONS(4008), 1, + ACTIONS(4014), 1, anon_sym_DASH_DASH, STATE(1725), 1, - aux_sym_decl_def_repeat1, - STATE(1726), 1, sym_comment, - STATE(2099), 1, + STATE(2017), 1, + aux_sym_decl_def_repeat1, + STATE(2100), 1, sym__val_number_decimal, - STATE(2173), 1, + STATE(2168), 1, sym_long_flag, - STATE(3783), 1, + STATE(3801), 1, sym_cmd_identifier, - STATE(3804), 1, + STATE(3802), 1, sym_val_string, - STATE(3885), 1, + STATE(3966), 1, sym__command_name, - ACTIONS(3659), 2, + ACTIONS(3667), 2, anon_sym_export, anon_sym_in, - ACTIONS(3671), 2, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2276), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3661), 24, + ACTIONS(3669), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172577,50 +172472,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34623] = 19, + [34566] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1770), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(3663), 1, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, - ACTIONS(4008), 1, + ACTIONS(4014), 1, anon_sym_DASH_DASH, - STATE(1719), 1, + STATE(1712), 1, aux_sym_decl_def_repeat1, - STATE(1727), 1, + STATE(1726), 1, sym_comment, - STATE(2099), 1, + STATE(2100), 1, sym__val_number_decimal, - STATE(2173), 1, + STATE(2168), 1, sym_long_flag, - STATE(3783), 1, + STATE(3801), 1, sym_cmd_identifier, - STATE(3804), 1, + STATE(3802), 1, sym_val_string, - STATE(3884), 1, + STATE(3976), 1, sym__command_name, - ACTIONS(3659), 2, + ACTIONS(3667), 2, anon_sym_export, anon_sym_in, - ACTIONS(3671), 2, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2276), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3661), 24, + ACTIONS(3669), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172645,40 +172540,98 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34710] = 12, + [34653] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(4028), 1, + sym__newline, + ACTIONS(4030), 1, + anon_sym_RBRACK, + STATE(1727), 1, + sym_comment, + STATE(1751), 1, + aux_sym__types_body_repeat1, + STATE(1860), 1, + aux_sym__types_body_repeat3, + STATE(4782), 1, + sym__one_type, + STATE(5264), 1, + sym__type_annotation, + STATE(5484), 1, + sym__types_body, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [34730] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1630), 1, - anon_sym_DOLLAR, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(4022), 1, - anon_sym_DOT, STATE(1728), 1, sym_comment, - STATE(1911), 1, - sym__immediate_decimal, - ACTIONS(4024), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4026), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1996), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1644), 6, + ACTIONS(3998), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2626), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1642), 29, + ACTIONS(2624), 39, + ts_builtin_sym_end, anon_sym_in, - anon_sym_EQ_GT, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, @@ -172697,8 +172650,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, @@ -172706,50 +172657,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34783] = 19, + [34789] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(3990), 1, + anon_sym_DASH2, + ACTIONS(4002), 1, + anon_sym_PLUS2, + ACTIONS(4008), 1, + anon_sym_bit_DASHand2, + ACTIONS(4010), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4012), 1, + anon_sym_bit_DASHor2, + STATE(1729), 1, + sym_comment, + ACTIONS(3988), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3992), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3998), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4000), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4004), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3994), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3996), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3986), 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(2624), 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, + [34870] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1444), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1446), 1, anon_sym_SQUOTE, - ACTIONS(1770), 1, + ACTIONS(1448), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1458), 1, sym_raw_string_begin, - ACTIONS(3663), 1, + ACTIONS(3799), 1, aux_sym_cmd_identifier_token1, - ACTIONS(4008), 1, - anon_sym_DASH_DASH, - STATE(1729), 1, + ACTIONS(3846), 1, + sym__newline, + STATE(1730), 1, sym_comment, - STATE(1731), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(1770), 1, + aux_sym__command_list_body_repeat1, + STATE(2023), 1, + aux_sym__types_body_repeat1, + STATE(2075), 1, sym__val_number_decimal, - STATE(2173), 1, - sym_long_flag, - STATE(3783), 1, + STATE(4748), 1, + sym__command_name, + STATE(4965), 1, sym_cmd_identifier, - STATE(3804), 1, + STATE(5041), 1, sym_val_string, - STATE(3920), 1, - sym__command_name, - ACTIONS(3659), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3671), 2, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2276), 4, + ACTIONS(3795), 2, + anon_sym_export, + anon_sym_in, + STATE(3806), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3661), 24, + ACTIONS(3797), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172774,50 +172790,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34870] = 19, + [34957] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1770), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(3663), 1, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, - ACTIONS(4008), 1, + ACTIONS(4014), 1, anon_sym_DASH_DASH, - STATE(1730), 1, + STATE(1731), 1, sym_comment, - STATE(1978), 1, + STATE(2017), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2100), 1, sym__val_number_decimal, - STATE(2173), 1, + STATE(2168), 1, sym_long_flag, - STATE(3783), 1, + STATE(3801), 1, sym_cmd_identifier, - STATE(3804), 1, + STATE(3802), 1, sym_val_string, - STATE(3922), 1, + STATE(3948), 1, sym__command_name, - ACTIONS(3659), 2, + ACTIONS(3667), 2, anon_sym_export, anon_sym_in, - ACTIONS(3671), 2, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2276), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3661), 24, + ACTIONS(3669), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172842,50 +172858,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34957] = 19, + [35044] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1770), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(3663), 1, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, - ACTIONS(4008), 1, + ACTIONS(4014), 1, anon_sym_DASH_DASH, - STATE(1731), 1, - sym_comment, - STATE(1978), 1, + STATE(1718), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(1732), 1, + sym_comment, + STATE(2100), 1, sym__val_number_decimal, - STATE(2173), 1, + STATE(2168), 1, sym_long_flag, - STATE(3783), 1, + STATE(3801), 1, sym_cmd_identifier, - STATE(3804), 1, + STATE(3802), 1, sym_val_string, - STATE(3925), 1, + STATE(3911), 1, sym__command_name, - ACTIONS(3659), 2, + ACTIONS(3667), 2, anon_sym_export, anon_sym_in, - ACTIONS(3671), 2, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2276), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3661), 24, + ACTIONS(3669), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172910,50 +172926,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35044] = 19, - ACTIONS(3), 1, + [35131] = 17, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1770), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(3663), 1, + ACTIONS(2800), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2838), 1, + anon_sym_COLON2, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, - ACTIONS(4008), 1, - anon_sym_DASH_DASH, - STATE(1732), 1, + STATE(1733), 1, sym_comment, - STATE(1978), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2100), 1, sym__val_number_decimal, - STATE(2173), 1, - sym_long_flag, - STATE(3783), 1, + STATE(3801), 1, sym_cmd_identifier, - STATE(3804), 1, + STATE(3802), 1, sym_val_string, - STATE(3934), 1, + STATE(4567), 1, sym__command_name, - ACTIONS(3659), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3671), 2, + ACTIONS(3836), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3838), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2276), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3661), 24, + ACTIONS(3667), 26, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172972,35 +172984,45 @@ 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, - [35131] = 6, + [35213] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4028), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4030), 1, - aux_sym__immediate_decimal_token5, - STATE(1733), 1, + ACTIONS(1624), 1, + anon_sym_DOLLAR, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + ACTIONS(1638), 1, + anon_sym_DOT, + STATE(1734), 1, sym_comment, - ACTIONS(759), 8, + STATE(1973), 1, + sym__immediate_decimal, + ACTIONS(4024), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4026), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2016), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1626), 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(761), 35, + ACTIONS(1622), 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, @@ -173019,158 +173041,33 @@ 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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [35191] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4032), 1, - anon_sym_DOT2, - STATE(1734), 1, - sym_comment, - STATE(1761), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1851), 1, - sym_path, - STATE(1898), 1, - sym_cell_path, - ACTIONS(1671), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1669), 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, - [35255] = 17, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_DQUOTE, - ACTIONS(1768), 1, - anon_sym_SQUOTE, - ACTIONS(1770), 1, - anon_sym_BQUOTE, - ACTIONS(1772), 1, - sym_raw_string_begin, - ACTIONS(2786), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2834), 1, - anon_sym_COLON2, - ACTIONS(3663), 1, - aux_sym_cmd_identifier_token1, - STATE(1735), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3783), 1, - sym_cmd_identifier, - STATE(3804), 1, - sym_val_string, - STATE(5299), 1, - sym__command_name, - ACTIONS(3799), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3801), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2276), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3659), 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, - [35337] = 8, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [35283] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4032), 1, anon_sym_DOT2, - STATE(1736), 1, + STATE(1735), 1, sym_comment, - STATE(1761), 1, + STATE(1764), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(1851), 1, + STATE(1850), 1, sym_path, - STATE(1883), 1, + STATE(1901), 1, sym_cell_path, - ACTIONS(1466), 3, + ACTIONS(1669), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1468), 38, + ACTIONS(1667), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -173209,38 +173106,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [35401] = 11, + [35347] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1630), 1, - anon_sym_DOLLAR, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - ACTIONS(1646), 1, + ACTIONS(4034), 1, anon_sym_DOT, - STATE(1737), 1, + ACTIONS(4036), 1, + aux_sym__immediate_decimal_token5, + STATE(1736), 1, sym_comment, - STATE(1985), 1, - sym__immediate_decimal, - ACTIONS(4024), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4026), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1996), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1644), 6, + ACTIONS(763), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1642), 29, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(765), 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, @@ -173259,6 +173147,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, @@ -173268,23 +173157,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35471] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [35407] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4034), 1, + ACTIONS(4038), 1, anon_sym_QMARK2, - ACTIONS(4036), 1, + ACTIONS(4040), 1, anon_sym_BANG, - STATE(1738), 1, + STATE(1737), 1, sym_comment, - STATE(1868), 1, + STATE(1863), 1, sym__path_suffix, - ACTIONS(1472), 4, + ACTIONS(1470), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1474), 38, + ACTIONS(1472), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -173323,81 +173215,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [35533] = 17, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_DQUOTE, - ACTIONS(1768), 1, - anon_sym_SQUOTE, - ACTIONS(1770), 1, - anon_sym_BQUOTE, - ACTIONS(1772), 1, - sym_raw_string_begin, - ACTIONS(2786), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2834), 1, - anon_sym_COLON2, - ACTIONS(3663), 1, - aux_sym_cmd_identifier_token1, - STATE(1739), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3783), 1, - sym_cmd_identifier, - STATE(3804), 1, - sym_val_string, - STATE(4625), 1, - sym__command_name, - ACTIONS(3799), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3801), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2276), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3659), 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, - [35615] = 6, + [35469] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4038), 1, - anon_sym_DOT, - ACTIONS(4040), 1, + ACTIONS(4042), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4044), 1, aux_sym__immediate_decimal_token5, - STATE(1740), 1, + STATE(1738), 1, sym_comment, - ACTIONS(751), 8, + ACTIONS(755), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -173406,7 +173233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(753), 35, + ACTIONS(757), 35, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -173442,36 +173269,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [35675] = 11, + [35529] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(1634), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(1659), 1, + ACTIONS(1636), 1, sym__unquoted_pattern, - STATE(1741), 1, + STATE(1739), 1, sym_comment, - STATE(2102), 1, + STATE(2165), 1, sym__immediate_decimal, - ACTIONS(4042), 2, + ACTIONS(4046), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4044), 2, + ACTIONS(4048), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(925), 2, + STATE(851), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1644), 6, + ACTIONS(1626), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1642), 29, + ACTIONS(1622), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -173501,36 +173328,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35745] = 11, + [35599] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4032), 1, + anon_sym_DOT2, + STATE(1740), 1, + sym_comment, + STATE(1764), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1850), 1, + sym_path, + STATE(1899), 1, + sym_cell_path, + ACTIONS(1685), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1683), 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, + [35663] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(1634), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(1711), 1, - sym__unquoted_pattern, - STATE(1742), 1, + ACTIONS(1652), 1, + anon_sym_DOT, + STATE(1741), 1, sym_comment, - STATE(2105), 1, + STATE(2015), 1, sym__immediate_decimal, - ACTIONS(4042), 2, + ACTIONS(4024), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4044), 2, + ACTIONS(4026), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(747), 2, + STATE(2005), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1691), 6, + ACTIONS(1650), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1689), 29, + ACTIONS(1648), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -173560,45 +173443,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35815] = 17, + [35733] = 17, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, + ACTIONS(1768), 1, + anon_sym_BQUOTE, ACTIONS(1770), 1, + sym_raw_string_begin, + ACTIONS(2800), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2838), 1, + anon_sym_COLON2, + ACTIONS(3671), 1, + aux_sym_cmd_identifier_token1, + STATE(1742), 1, + sym_comment, + STATE(2100), 1, + sym__val_number_decimal, + STATE(3801), 1, + sym_cmd_identifier, + STATE(3802), 1, + sym_val_string, + STATE(3991), 1, + sym__command_name, + ACTIONS(3836), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3838), 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(3667), 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, + [35815] = 17, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1764), 1, + anon_sym_DQUOTE, + ACTIONS(1766), 1, + anon_sym_SQUOTE, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(2786), 1, + ACTIONS(2800), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2834), 1, + ACTIONS(2838), 1, anon_sym_COLON2, - ACTIONS(3663), 1, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, STATE(1743), 1, sym_comment, - STATE(2099), 1, + STATE(2100), 1, sym__val_number_decimal, - STATE(3783), 1, + STATE(3801), 1, sym_cmd_identifier, - STATE(3804), 1, + STATE(3802), 1, sym_val_string, - STATE(4007), 1, + STATE(5113), 1, sym__command_name, - ACTIONS(3799), 2, + ACTIONS(3836), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3801), 2, + ACTIONS(3838), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2276), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3659), 26, + ACTIONS(3667), 26, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -173632,17 +173580,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT2, STATE(1744), 1, sym_comment, - STATE(1761), 1, + STATE(1764), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(1851), 1, + STATE(1850), 1, sym_path, - STATE(1903), 1, + STATE(1876), 1, sym_cell_path, - ACTIONS(1705), 3, + ACTIONS(1478), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1703), 38, + ACTIONS(1480), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -173684,33 +173632,33 @@ static const uint16_t ts_small_parse_table[] = { [35961] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(1634), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(1636), 1, - anon_sym_DOT, + ACTIONS(1697), 1, + sym__unquoted_pattern, STATE(1745), 1, sym_comment, - STATE(1995), 1, + STATE(2149), 1, sym__immediate_decimal, - ACTIONS(4024), 2, + ACTIONS(4046), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4026), 2, + ACTIONS(4048), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1994), 2, + STATE(758), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1632), 6, + ACTIONS(1689), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1628), 29, + ACTIONS(1687), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -173740,26 +173688,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36031] = 8, + [36031] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4046), 1, - anon_sym_DOT2, STATE(1746), 1, sym_comment, - STATE(1796), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1906), 1, - sym_path, - STATE(1917), 1, - sym_cell_path, - ACTIONS(1671), 3, + ACTIONS(1544), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1669), 37, + anon_sym_DOT2, + ACTIONS(1546), 40, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173787,6 +173727,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, @@ -173795,162 +173737,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [36094] = 16, - ACTIONS(105), 1, + anon_sym_QMARK2, + anon_sym_BANG, + [36086] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_DQUOTE, - ACTIONS(1768), 1, - anon_sym_SQUOTE, - ACTIONS(1770), 1, - anon_sym_BQUOTE, - ACTIONS(1772), 1, - sym_raw_string_begin, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3663), 1, - aux_sym_cmd_identifier_token1, + ACTIONS(4050), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4052), 1, + aux_sym__immediate_decimal_token5, STATE(1747), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3783), 1, - sym_cmd_identifier, - STATE(3804), 1, - sym_val_string, - STATE(4007), 1, - sym__command_name, - ACTIONS(3799), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3801), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2276), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3659), 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, + ACTIONS(755), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(757), 34, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [36173] = 8, + 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, + [36145] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4046), 1, - anon_sym_DOT2, + ACTIONS(1624), 1, + anon_sym_DOLLAR, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + STATE(759), 1, + sym__immediate_decimal, STATE(1748), 1, sym_comment, - STATE(1796), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1906), 1, - sym_path, - STATE(1908), 1, - sym_cell_path, - ACTIONS(1466), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1468), 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, + ACTIONS(4046), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4048), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(760), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1675), 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, - [36236] = 16, - ACTIONS(105), 1, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1673), 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, + [36212] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1444), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1446), 1, anon_sym_SQUOTE, - ACTIONS(1770), 1, + ACTIONS(1448), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1458), 1, sym_raw_string_begin, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3663), 1, + ACTIONS(3799), 1, aux_sym_cmd_identifier_token1, STATE(1749), 1, sym_comment, - STATE(2099), 1, + STATE(1755), 1, + aux_sym__command_list_body_repeat1, + STATE(2075), 1, sym__val_number_decimal, - STATE(3783), 1, + STATE(4766), 1, + sym__command_name, + STATE(4965), 1, sym_cmd_identifier, - STATE(3804), 1, + STATE(5041), 1, sym_val_string, - STATE(4625), 1, - sym__command_name, - ACTIONS(3799), 2, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3801), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2276), 4, + ACTIONS(3795), 2, + anon_sym_export, + anon_sym_in, + STATE(3806), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3659), 26, - anon_sym_export, + ACTIONS(3797), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173969,41 +173907,97 @@ 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, - [36315] = 12, + [36293] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4014), 1, - sym__newline, - ACTIONS(4052), 1, + ACTIONS(1624), 1, + anon_sym_DOLLAR, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + STATE(896), 1, + sym__immediate_decimal, + STATE(1750), 1, + sym_comment, + ACTIONS(4046), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4048), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(897), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1650), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1648), 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, + [36360] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(4054), 1, + ACTIONS(3928), 1, anon_sym_oneof, - STATE(1750), 1, + ACTIONS(4028), 1, + sym__newline, + STATE(1751), 1, sym_comment, - STATE(1790), 1, + STATE(1837), 1, + aux_sym__types_body_repeat3, + STATE(2010), 1, aux_sym__types_body_repeat1, - STATE(1890), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4765), 1, - sym__all_type, - STATE(5196), 1, - sym__composite_argument_body, - ACTIONS(4050), 2, + STATE(4699), 1, + sym__one_type, + STATE(5264), 1, + sym__type_annotation, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(4802), 4, + STATE(2720), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4048), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174035,23 +174029,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [36386] = 6, + [36431] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4056), 1, + ACTIONS(4054), 1, anon_sym_DOT, - ACTIONS(4058), 1, + ACTIONS(4056), 1, aux_sym__immediate_decimal_token5, - STATE(1751), 1, + STATE(1752), 1, sym_comment, - ACTIONS(751), 6, + ACTIONS(763), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT_DOT2, sym_duration_unit, sym__unquoted_pattern, - ACTIONS(753), 36, + ACTIONS(765), 36, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -174088,93 +174082,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [36445] = 11, + [36490] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, - sym__unquoted_pattern, + ACTIONS(4058), 1, + aux_sym__immediate_decimal_token1, ACTIONS(4060), 1, + aux_sym__immediate_decimal_token5, + STATE(1753), 1, + sym_comment, + ACTIONS(755), 7, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, anon_sym_DOT_DOT2, - ACTIONS(4064), 1, - sym_filesize_unit, - ACTIONS(4066), 1, + aux_sym__val_number_decimal_token1, sym_duration_unit, - STATE(1752), 1, - sym_comment, - STATE(5068), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4062), 2, + sym__unquoted_pattern, + ACTIONS(757), 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, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(811), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(914), 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, - [36514] = 10, + 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, + [36549] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1630), 1, - anon_sym_DOLLAR, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - STATE(986), 1, - sym__immediate_decimal, - STATE(1753), 1, + ACTIONS(4062), 1, + anon_sym_DOT, + ACTIONS(4064), 1, + aux_sym__immediate_decimal_token5, + STATE(1754), 1, sym_comment, - ACTIONS(4042), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4044), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(925), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1644), 6, + ACTIONS(763), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1642), 29, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(765), 34, anon_sym_in, + anon_sym_DASH2, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -174194,6 +174175,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, @@ -174203,14 +174185,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36581] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [36608] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4072), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4081), 1, + anon_sym_DQUOTE, + ACTIONS(4084), 1, + anon_sym_SQUOTE, + ACTIONS(4087), 1, + anon_sym_BQUOTE, + ACTIONS(4090), 1, + sym_raw_string_begin, + STATE(2075), 1, + sym__val_number_decimal, + STATE(4965), 1, + sym_cmd_identifier, + STATE(5041), 1, + sym_val_string, + STATE(5098), 1, + sym__command_name, + ACTIONS(4066), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(4075), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4078), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(1755), 2, + sym_comment, + aux_sym__command_list_body_repeat1, + STATE(3806), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4069), 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, + [36687] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4068), 1, + ACTIONS(4093), 1, aux_sym__immediate_decimal_token5, - STATE(1754), 1, + STATE(1756), 1, sym_comment, - ACTIONS(791), 8, + ACTIONS(775), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -174219,7 +174267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(793), 35, + ACTIONS(777), 35, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -174255,46 +174303,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [36638] = 17, + [36744] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1440), 1, - anon_sym_DQUOTE, - ACTIONS(1442), 1, - anon_sym_SQUOTE, - ACTIONS(1444), 1, - anon_sym_BQUOTE, - ACTIONS(1454), 1, - sym_raw_string_begin, - ACTIONS(3816), 1, - aux_sym_cmd_identifier_token1, - STATE(1755), 1, + ACTIONS(4095), 1, + anon_sym_DOT2, + STATE(1757), 1, sym_comment, - STATE(1787), 1, - aux_sym__command_list_body_repeat1, - STATE(2131), 1, - sym__val_number_decimal, - STATE(4919), 1, - sym__command_name, - STATE(4993), 1, - sym_cmd_identifier, - STATE(4994), 1, - sym_val_string, - ACTIONS(3671), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3812), 2, + STATE(1808), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1890), 1, + sym_path, + STATE(1915), 1, + sym_cell_path, + ACTIONS(1669), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - STATE(3776), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3814), 24, + ACTIONS(1667), 37, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174319,22 +174347,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [36719] = 6, + 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, + [36807] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4028), 1, + sym__newline, + ACTIONS(4101), 1, + anon_sym_list, + ACTIONS(4103), 1, + anon_sym_oneof, + STATE(1758), 1, + sym_comment, + STATE(1823), 1, + aux_sym__types_body_repeat1, + STATE(1881), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4702), 1, + sym__all_type, + STATE(5348), 1, + sym__composite_argument_body, + ACTIONS(4099), 2, + anon_sym_table, + anon_sym_record, + STATE(4922), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4097), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [36878] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4070), 1, + ACTIONS(4095), 1, anon_sym_DOT2, - STATE(1851), 1, - sym_path, - STATE(1756), 2, + STATE(1759), 1, sym_comment, + STATE(1808), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1490), 3, + STATE(1890), 1, + sym_path, + STATE(1946), 1, + sym_cell_path, + ACTIONS(1478), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1492), 38, + ACTIONS(1480), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174362,8 +174464,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, @@ -174372,34 +174472,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [36778] = 10, + [36941] = 16, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1764), 1, + anon_sym_DQUOTE, + ACTIONS(1766), 1, + anon_sym_SQUOTE, + ACTIONS(1768), 1, + anon_sym_BQUOTE, + ACTIONS(1770), 1, + sym_raw_string_begin, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3671), 1, + aux_sym_cmd_identifier_token1, + STATE(1760), 1, + sym_comment, + STATE(2100), 1, + sym__val_number_decimal, + STATE(3801), 1, + sym_cmd_identifier, + STATE(3802), 1, + sym_val_string, + STATE(5398), 1, + sym__command_name, + ACTIONS(3836), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3838), 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(3667), 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, + [37020] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(1634), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - STATE(953), 1, + STATE(981), 1, sym__immediate_decimal, - STATE(1757), 1, + STATE(1761), 1, sym_comment, - ACTIONS(4042), 2, + ACTIONS(4046), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4044), 2, + ACTIONS(4048), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(747), 2, + STATE(758), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1691), 6, + ACTIONS(1689), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1689), 29, + ACTIONS(1687), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -174429,34 +174592,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36845] = 12, + [37087] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3890), 1, + ACTIONS(1624), 1, + anon_sym_DOLLAR, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + STATE(960), 1, + sym__immediate_decimal, + STATE(1762), 1, + sym_comment, + ACTIONS(4046), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4048), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(851), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1626), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1622), 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, + [37154] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4028), 1, + sym__newline, + ACTIONS(4101), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(4103), 1, anon_sym_oneof, - ACTIONS(4014), 1, - sym__newline, - STATE(1758), 1, + STATE(1763), 1, sym_comment, - STATE(1855), 1, - aux_sym__types_body_repeat3, - STATE(1999), 1, + STATE(1823), 1, aux_sym__types_body_repeat1, - STATE(4780), 1, - sym__one_type, - STATE(5261), 1, - sym__type_annotation, - ACTIONS(3888), 2, + STATE(1881), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4702), 1, + sym__all_type, + STATE(5521), 1, + sym__composite_argument_body, + ACTIONS(4099), 2, anon_sym_table, anon_sym_record, - STATE(2679), 4, + STATE(4922), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(4097), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174488,17 +174708,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [36916] = 4, + [37225] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4032), 1, + anon_sym_DOT2, + STATE(1764), 1, + sym_comment, + STATE(1772), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1850), 1, + sym_path, + ACTIONS(1567), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1569), 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, + [37286] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1759), 1, + STATE(1765), 1, sym_comment, - ACTIONS(1486), 4, + ACTIONS(1522), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1488), 40, + ACTIONS(1524), 40, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -174539,43 +174813,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [36971] = 16, + [37341] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4036), 1, + aux_sym__immediate_decimal_token5, + STATE(1766), 1, + sym_comment, + ACTIONS(763), 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(765), 35, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [37398] = 16, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1770), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(2986), 1, + ACTIONS(2690), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3663), 1, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, - STATE(1760), 1, + STATE(1767), 1, sym_comment, - STATE(2099), 1, + STATE(2100), 1, sym__val_number_decimal, - STATE(3783), 1, + STATE(3801), 1, sym_cmd_identifier, - STATE(3804), 1, + STATE(3802), 1, sym_val_string, - STATE(4422), 1, + STATE(5255), 1, sym__command_name, - ACTIONS(3799), 2, + ACTIONS(3836), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3801), 2, + ACTIONS(3838), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2276), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3659), 26, + ACTIONS(3667), 26, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -174602,22 +174928,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [37050] = 7, + [37477] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4032), 1, - anon_sym_DOT2, - STATE(1756), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1761), 1, + STATE(1768), 1, sym_comment, - STATE(1851), 1, - sym_path, - ACTIONS(1577), 3, + ACTIONS(1540), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1579), 38, + anon_sym_DOT2, + ACTIONS(1542), 40, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -174656,36 +174977,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37111] = 10, + anon_sym_QMARK2, + anon_sym_BANG, + [37532] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1630), 1, - anon_sym_DOLLAR, - ACTIONS(1634), 1, + ACTIONS(1830), 1, anon_sym_LPAREN2, - STATE(923), 1, - sym__immediate_decimal, - STATE(1762), 1, + ACTIONS(1840), 1, + sym__unquoted_pattern, + ACTIONS(4105), 1, + anon_sym_DOT_DOT2, + ACTIONS(4109), 1, + sym_filesize_unit, + ACTIONS(4111), 1, + sym_duration_unit, + STATE(1769), 1, sym_comment, - ACTIONS(4042), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4044), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(922), 2, + STATE(5102), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1632), 6, + ACTIONS(4107), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(811), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1628), 29, + ACTIONS(910), 31, anon_sym_in, - anon_sym_EQ_GT, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -174713,18 +175037,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [37178] = 4, + [37601] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(1763), 1, + ACTIONS(1444), 1, + anon_sym_DQUOTE, + ACTIONS(1446), 1, + anon_sym_SQUOTE, + ACTIONS(1448), 1, + anon_sym_BQUOTE, + ACTIONS(1458), 1, + sym_raw_string_begin, + ACTIONS(3799), 1, + aux_sym_cmd_identifier_token1, + STATE(1755), 1, + aux_sym__command_list_body_repeat1, + STATE(1770), 1, sym_comment, - ACTIONS(1541), 4, + STATE(2075), 1, + sym__val_number_decimal, + STATE(4688), 1, + sym__command_name, + STATE(4965), 1, + sym_cmd_identifier, + STATE(5041), 1, + sym_val_string, + ACTIONS(3679), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3681), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3795), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1543), 40, - sym_raw_string_begin, + STATE(3806), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3797), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174749,58 +175101,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_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, + [37682] = 16, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(93), 1, anon_sym_SQUOTE, + ACTIONS(95), 1, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [37233] = 16, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_DQUOTE, - ACTIONS(1768), 1, - anon_sym_SQUOTE, - ACTIONS(1770), 1, - anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(107), 1, sym_raw_string_begin, - ACTIONS(2986), 1, + ACTIONS(2994), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3663), 1, + ACTIONS(3699), 1, aux_sym_cmd_identifier_token1, - STATE(1764), 1, + STATE(1771), 1, sym_comment, - STATE(2099), 1, + STATE(2042), 1, sym__val_number_decimal, - STATE(3783), 1, - sym_cmd_identifier, - STATE(3804), 1, - sym_val_string, - STATE(5361), 1, + STATE(4339), 1, sym__command_name, - ACTIONS(3799), 2, + STATE(4397), 1, + sym_val_string, + STATE(4398), 1, + sym_cmd_identifier, + ACTIONS(3836), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3801), 2, + ACTIONS(3838), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2276), 4, + STATE(509), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3659), 26, + ACTIONS(3695), 26, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -174827,17 +175164,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [37312] = 4, + [37761] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1765), 1, + ACTIONS(4113), 1, + anon_sym_DOT2, + STATE(1850), 1, + sym_path, + STATE(1772), 2, sym_comment, - ACTIONS(1527), 4, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1558), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1529), 40, + ACTIONS(1560), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -174876,19 +175217,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [37367] = 4, + [37820] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1766), 1, + STATE(1773), 1, sym_comment, - ACTIONS(1545), 4, + ACTIONS(1550), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1547), 40, + ACTIONS(1552), 40, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -174929,17 +175268,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [37422] = 4, + [37875] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1767), 1, + STATE(1774), 1, sym_comment, - ACTIONS(1535), 4, + ACTIONS(1490), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1537), 40, + ACTIONS(1492), 40, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -174980,43 +175319,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [37477] = 16, - ACTIONS(91), 1, + [37930] = 16, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(93), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(95), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(107), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(2986), 1, + ACTIONS(2994), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3691), 1, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, - STATE(1768), 1, + STATE(1775), 1, sym_comment, - STATE(2096), 1, + STATE(2100), 1, sym__val_number_decimal, - STATE(4269), 1, - sym__command_name, - STATE(4427), 1, + STATE(3801), 1, sym_cmd_identifier, - STATE(4428), 1, + STATE(3802), 1, sym_val_string, - ACTIONS(3799), 2, + STATE(4433), 1, + sym__command_name, + ACTIONS(3836), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3801), 2, + ACTIONS(3838), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(504), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3687), 26, + ACTIONS(3667), 26, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -175043,269 +175382,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [37556] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4046), 1, - anon_sym_DOT2, - STATE(1769), 1, - sym_comment, - STATE(1796), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1906), 1, - sym_path, - STATE(1943), 1, - sym_cell_path, - ACTIONS(1705), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1703), 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, - [37619] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1630), 1, - anon_sym_DOLLAR, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - STATE(761), 1, - sym__immediate_decimal, - STATE(1770), 1, - sym_comment, - ACTIONS(4042), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4044), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(760), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1709), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1707), 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, - [37686] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1630), 1, - anon_sym_DOLLAR, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - STATE(763), 1, - sym__immediate_decimal, - STATE(1771), 1, - sym_comment, - ACTIONS(4042), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4044), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(762), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1679), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1677), 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, - [37753] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1630), 1, - anon_sym_DOLLAR, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - STATE(765), 1, - sym__immediate_decimal, - STATE(1772), 1, - sym_comment, - ACTIONS(4042), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4044), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(764), 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, - [37820] = 16, + [38009] = 16, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1770), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(2634), 1, + ACTIONS(2690), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3663), 1, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, - STATE(1773), 1, + STATE(1776), 1, sym_comment, - STATE(2099), 1, + STATE(2100), 1, sym__val_number_decimal, - STATE(3783), 1, + STATE(3801), 1, sym_cmd_identifier, - STATE(3804), 1, + STATE(3802), 1, sym_val_string, - STATE(5343), 1, + STATE(5113), 1, sym__command_name, - ACTIONS(3799), 2, + ACTIONS(3836), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3801), 2, + ACTIONS(3838), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2276), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3659), 26, + ACTIONS(3667), 26, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -175332,99 +175445,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [37899] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4075), 1, - aux_sym__immediate_decimal_token5, - STATE(1774), 1, - sym_comment, - ACTIONS(759), 7, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT_DOT2, - aux_sym__val_number_decimal_token1, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(761), 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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_filesize_unit, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [37958] = 17, - ACTIONS(3), 1, + [38088] = 16, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1440), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1442), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1444), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1454), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(3816), 1, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, - STATE(1775), 1, + STATE(1777), 1, sym_comment, - STATE(1787), 1, - aux_sym__command_list_body_repeat1, - STATE(2131), 1, + STATE(2100), 1, sym__val_number_decimal, - STATE(4801), 1, - sym__command_name, - STATE(4993), 1, + STATE(3801), 1, sym_cmd_identifier, - STATE(4994), 1, + STATE(3802), 1, sym_val_string, - ACTIONS(3671), 2, + STATE(4567), 1, + sym__command_name, + ACTIONS(3836), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3838), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3812), 2, - anon_sym_export, - anon_sym_in, - STATE(3776), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3814), 24, + ACTIONS(3667), 26, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175443,49 +175501,50 @@ 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, - [38039] = 16, + [38167] = 16, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1770), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(2634), 1, + ACTIONS(2690), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3663), 1, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, - STATE(1776), 1, + STATE(1778), 1, sym_comment, - STATE(2099), 1, + STATE(2100), 1, sym__val_number_decimal, - STATE(3783), 1, + STATE(3801), 1, sym_cmd_identifier, - STATE(3804), 1, + STATE(3802), 1, sym_val_string, - STATE(5299), 1, + STATE(3991), 1, sym__command_name, - ACTIONS(3799), 2, + ACTIONS(3836), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3801), 2, + ACTIONS(3838), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2276), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3659), 26, + ACTIONS(3667), 26, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -175512,208 +175571,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38118] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4040), 1, - aux_sym__immediate_decimal_token5, - STATE(1777), 1, - sym_comment, - ACTIONS(751), 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(753), 35, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [38175] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4014), 1, - sym__newline, - ACTIONS(4052), 1, - anon_sym_list, - ACTIONS(4054), 1, - anon_sym_oneof, - STATE(1778), 1, - sym_comment, - STATE(1790), 1, - aux_sym__types_body_repeat1, - STATE(1890), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4765), 1, - sym__all_type, - STATE(5122), 1, - sym__composite_argument_body, - ACTIONS(4050), 2, - anon_sym_table, - anon_sym_record, - STATE(4802), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4048), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [38246] = 6, + [38246] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4077), 1, - anon_sym_DOT, - ACTIONS(4079), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(4095), 1, + anon_sym_DOT2, STATE(1779), 1, sym_comment, - ACTIONS(751), 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(753), 34, + STATE(1808), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1890), 1, + sym_path, + STATE(1932), 1, + sym_cell_path, + ACTIONS(1685), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - 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, - [38305] = 16, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_DQUOTE, - ACTIONS(1768), 1, - anon_sym_SQUOTE, - ACTIONS(1770), 1, - anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1683), 37, sym_raw_string_begin, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3663), 1, - aux_sym_cmd_identifier_token1, - STATE(1780), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3783), 1, - sym_cmd_identifier, - STATE(3804), 1, - sym_val_string, - STATE(5135), 1, - sym__command_name, - ACTIONS(3799), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3801), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2276), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3659), 26, - anon_sym_export, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175732,163 +175609,35 @@ 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, - [38384] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4014), 1, sym__newline, - ACTIONS(4052), 1, - anon_sym_list, - ACTIONS(4054), 1, - anon_sym_oneof, - STATE(1781), 1, - sym_comment, - STATE(1790), 1, - aux_sym__types_body_repeat1, - STATE(1890), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4765), 1, - sym__all_type, - STATE(5501), 1, - sym__composite_argument_body, - ACTIONS(4050), 2, - anon_sym_table, - anon_sym_record, - STATE(4802), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4048), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [38455] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4081), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4083), 1, - aux_sym__immediate_decimal_token5, - STATE(1782), 1, - sym_comment, - ACTIONS(759), 8, - anon_sym_GT2, + 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(761), 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, - [38514] = 16, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_DQUOTE, - ACTIONS(1768), 1, - anon_sym_SQUOTE, - ACTIONS(1770), 1, - anon_sym_BQUOTE, - ACTIONS(1772), 1, - sym_raw_string_begin, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3663), 1, - aux_sym_cmd_identifier_token1, - STATE(1783), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3783), 1, - sym_cmd_identifier, - STATE(3804), 1, - sym_val_string, - STATE(5245), 1, - sym__command_name, - ACTIONS(3799), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3801), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2276), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3659), 26, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [38309] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1780), 1, + sym_comment, + ACTIONS(1574), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1576), 40, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175907,110 +175656,46 @@ 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, - [38593] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4014), 1, sym__newline, - ACTIONS(4052), 1, - anon_sym_list, - ACTIONS(4054), 1, - anon_sym_oneof, - STATE(1784), 1, - sym_comment, - STATE(1790), 1, - aux_sym__types_body_repeat1, - STATE(1890), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4765), 1, - sym__all_type, - STATE(5493), 1, - sym__composite_argument_body, - ACTIONS(4050), 2, - anon_sym_table, - anon_sym_record, - STATE(4802), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4048), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [38664] = 16, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_DQUOTE, - ACTIONS(1768), 1, - anon_sym_SQUOTE, - ACTIONS(1770), 1, - anon_sym_BQUOTE, - ACTIONS(1772), 1, - sym_raw_string_begin, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3663), 1, - aux_sym_cmd_identifier_token1, - STATE(1785), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3783), 1, - sym_cmd_identifier, - STATE(3804), 1, - sym_val_string, - STATE(5252), 1, - sym__command_name, - ACTIONS(3799), 2, + 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, - ACTIONS(3801), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2276), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3659), 26, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [38364] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4116), 1, + anon_sym_QMARK2, + ACTIONS(4118), 1, + anon_sym_BANG, + STATE(1781), 1, + sym_comment, + STATE(1888), 1, + sym__path_suffix, + ACTIONS(1470), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1472), 37, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176029,32 +175714,61 @@ 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, - [38743] = 7, - ACTIONS(3), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [38425] = 16, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4085), 1, - anon_sym_QMARK2, - ACTIONS(4087), 1, - anon_sym_BANG, - STATE(1786), 1, + ACTIONS(1764), 1, + anon_sym_DQUOTE, + ACTIONS(1766), 1, + anon_sym_SQUOTE, + ACTIONS(1768), 1, + anon_sym_BQUOTE, + ACTIONS(1770), 1, + sym_raw_string_begin, + ACTIONS(2994), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3671), 1, + aux_sym_cmd_identifier_token1, + STATE(1782), 1, sym_comment, - STATE(1887), 1, - sym__path_suffix, - ACTIONS(1472), 4, + STATE(2100), 1, + sym__val_number_decimal, + STATE(3801), 1, + sym_cmd_identifier, + STATE(3802), 1, + sym_val_string, + STATE(5416), 1, + sym__command_name, + ACTIONS(3836), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3838), 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(3667), 26, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1474), 37, - sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176073,62 +175787,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, - 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, - [38804] = 16, + [38504] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4095), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(4104), 1, + ACTIONS(1624), 1, + anon_sym_DOLLAR, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + STATE(763), 1, + sym__immediate_decimal, + STATE(1783), 1, + sym_comment, + ACTIONS(4046), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4048), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(764), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1681), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1679), 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, + [38571] = 16, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(4107), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(4110), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(4113), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - STATE(2131), 1, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3671), 1, + aux_sym_cmd_identifier_token1, + STATE(1784), 1, + sym_comment, + STATE(2100), 1, sym__val_number_decimal, - STATE(4993), 1, + STATE(3801), 1, sym_cmd_identifier, - STATE(4994), 1, + STATE(3802), 1, sym_val_string, - STATE(5059), 1, + STATE(5130), 1, sym__command_name, - ACTIONS(4089), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(4098), 2, + ACTIONS(3836), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4101), 2, + ACTIONS(3838), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(1787), 2, - sym_comment, - aux_sym__command_list_body_repeat1, - STATE(3776), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4092), 24, + ACTIONS(3667), 26, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176147,24 +175907,51 @@ 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, - [38883] = 4, - ACTIONS(3), 1, + [38650] = 16, + ACTIONS(105), 1, anon_sym_POUND, - STATE(1788), 1, + ACTIONS(1764), 1, + anon_sym_DQUOTE, + ACTIONS(1766), 1, + anon_sym_SQUOTE, + ACTIONS(1768), 1, + anon_sym_BQUOTE, + ACTIONS(1770), 1, + sym_raw_string_begin, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3671), 1, + aux_sym_cmd_identifier_token1, + STATE(1785), 1, sym_comment, - ACTIONS(1531), 4, + STATE(2100), 1, + sym__val_number_decimal, + STATE(3801), 1, + sym_cmd_identifier, + STATE(3802), 1, + sym_val_string, + STATE(5118), 1, + sym__command_name, + ACTIONS(3836), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3838), 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(3667), 26, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1533), 40, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176183,53 +175970,98 @@ 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, + [38729] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1624), 1, + anon_sym_DOLLAR, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + STATE(761), 1, + sym__immediate_decimal, + STATE(1786), 1, + sym_comment, + ACTIONS(4046), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4048), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(762), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1717), 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, - anon_sym_QMARK2, - anon_sym_BANG, - [38938] = 11, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1715), 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, + [38796] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3890), 1, + ACTIONS(4028), 1, + sym__newline, + ACTIONS(4101), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(4103), 1, anon_sym_oneof, - ACTIONS(4116), 1, - anon_sym_GT2, - ACTIONS(4118), 1, - anon_sym_AT2, - STATE(1789), 1, + STATE(1787), 1, sym_comment, - STATE(4757), 1, + STATE(1823), 1, + aux_sym__types_body_repeat1, + STATE(1881), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4702), 1, sym__all_type, - STATE(5152), 1, - sym_param_completer, - ACTIONS(3888), 2, + STATE(5522), 1, + sym__composite_argument_body, + ACTIONS(4099), 2, anon_sym_table, anon_sym_record, - STATE(4941), 4, + STATE(4922), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(4097), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176261,32 +176093,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [39006] = 11, + [38867] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4014), 1, + ACTIONS(4028), 1, sym__newline, - ACTIONS(4052), 1, + ACTIONS(4101), 1, anon_sym_list, - ACTIONS(4054), 1, + ACTIONS(4103), 1, anon_sym_oneof, - STATE(1790), 1, + STATE(1788), 1, sym_comment, - STATE(1889), 1, - aux_sym__composite_argument_body_repeat1, - STATE(1999), 1, + STATE(1823), 1, aux_sym__types_body_repeat1, - STATE(4865), 1, + STATE(1881), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4702), 1, sym__all_type, - ACTIONS(4050), 2, + STATE(5499), 1, + sym__composite_argument_body, + ACTIONS(4099), 2, anon_sym_table, anon_sym_record, - STATE(4802), 4, + STATE(4922), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4048), 31, + ACTIONS(4097), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176318,19 +176152,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [39074] = 4, + [38938] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(1791), 1, + ACTIONS(1764), 1, + anon_sym_DQUOTE, + ACTIONS(1766), 1, + anon_sym_SQUOTE, + ACTIONS(1768), 1, + anon_sym_BQUOTE, + ACTIONS(1770), 1, + sym_raw_string_begin, + ACTIONS(3671), 1, + aux_sym_cmd_identifier_token1, + STATE(1789), 1, + sym_comment, + STATE(2100), 1, + sym__val_number_decimal, + STATE(3801), 1, + sym_cmd_identifier, + STATE(3802), 1, + sym_val_string, + STATE(4645), 1, + sym__command_name, + ACTIONS(3667), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3679), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3681), 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(3669), 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, + [39016] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4120), 1, + aux_sym__immediate_decimal_token5, + STATE(1790), 1, sym_comment, - ACTIONS(1531), 4, + ACTIONS(775), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1533), 39, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(777), 36, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176355,57 +176254,31 @@ 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, - anon_sym_QMARK2, - anon_sym_BANG, - [39128] = 16, + [39072] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_DQUOTE, - ACTIONS(1768), 1, - anon_sym_SQUOTE, - ACTIONS(1770), 1, - anon_sym_BQUOTE, - ACTIONS(1772), 1, - sym_raw_string_begin, - ACTIONS(3663), 1, - aux_sym_cmd_identifier_token1, - STATE(1792), 1, + ACTIONS(4122), 1, + anon_sym_QMARK2, + STATE(1791), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3783), 1, - sym_cmd_identifier, - STATE(3804), 1, - sym_val_string, - STATE(5139), 1, - sym__command_name, - ACTIONS(3659), 2, + ACTIONS(1464), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3671), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2276), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3661), 24, + anon_sym_DOT2, + ACTIONS(1466), 38, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176430,24 +176303,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39206] = 6, + 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, + [39128] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4120), 1, - anon_sym_DOT, - ACTIONS(4122), 1, - aux_sym__immediate_decimal_token5, - STATE(1793), 1, + STATE(1792), 1, sym_comment, - ACTIONS(1790), 7, + ACTIONS(755), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1788), 34, + ACTIONS(757), 35, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -176482,69 +176365,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [39264] = 11, + sym_duration_unit, + [39182] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(4118), 1, - anon_sym_AT2, ACTIONS(4124), 1, - anon_sym_GT2, - STATE(1794), 1, - sym_comment, - STATE(4753), 1, - sym__all_type, - STATE(5490), 1, - sym_param_completer, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(4941), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [39332] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1795), 1, + aux_sym__immediate_decimal_token5, + STATE(1793), 1, sym_comment, - ACTIONS(791), 8, + ACTIONS(775), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -176553,11 +176382,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(793), 35, + ACTIONS(777), 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, @@ -176589,22 +176417,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [39386] = 7, + [39238] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4046), 1, - anon_sym_DOT2, - STATE(1796), 1, + STATE(1794), 1, sym_comment, - STATE(1800), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1906), 1, - sym_path, - ACTIONS(1577), 3, + ACTIONS(1544), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1579), 37, + anon_sym_DOT2, + ACTIONS(1546), 39, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -176642,20 +176465,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [39446] = 5, + anon_sym_QMARK2, + anon_sym_BANG, + [39292] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4126), 1, - anon_sym_BANG, - STATE(1797), 1, + STATE(1795), 1, sym_comment, - ACTIONS(1460), 4, + ACTIONS(1540), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1462), 38, + ACTIONS(1542), 39, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176683,8 +176507,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, @@ -176693,17 +176515,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [39502] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [39346] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1798), 1, + ACTIONS(4126), 1, + anon_sym_DOT2, + STATE(1890), 1, + sym_path, + STATE(1796), 2, sym_comment, - ACTIONS(1535), 4, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1558), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1537), 39, + ACTIONS(1560), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -176741,46 +176569,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [39556] = 16, + [39404] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, + ACTIONS(1768), 1, + anon_sym_BQUOTE, ACTIONS(1770), 1, + sym_raw_string_begin, + ACTIONS(3671), 1, + aux_sym_cmd_identifier_token1, + STATE(1797), 1, + sym_comment, + STATE(2100), 1, + sym__val_number_decimal, + STATE(3801), 1, + sym_cmd_identifier, + STATE(3802), 1, + sym_val_string, + STATE(5298), 1, + sym__command_name, + ACTIONS(3667), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3679), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3681), 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(3669), 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, + [39482] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(4129), 1, + anon_sym_GT2, + ACTIONS(4131), 1, + anon_sym_AT2, + STATE(1798), 1, + sym_comment, + STATE(4704), 1, + sym__all_type, + STATE(5520), 1, + sym_param_completer, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(5013), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [39550] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1764), 1, + anon_sym_DQUOTE, + ACTIONS(1766), 1, + anon_sym_SQUOTE, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(3663), 1, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, STATE(1799), 1, sym_comment, - STATE(2099), 1, + STATE(2100), 1, sym__val_number_decimal, - STATE(3783), 1, + STATE(3801), 1, sym_cmd_identifier, - STATE(3804), 1, + STATE(3802), 1, sym_val_string, - STATE(4369), 1, + STATE(4523), 1, sym__command_name, - ACTIONS(3659), 2, + ACTIONS(3667), 2, anon_sym_export, anon_sym_in, - ACTIONS(3671), 2, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2276), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3661), 24, + ACTIONS(3669), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176805,21 +176750,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39634] = 6, + [39628] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4128), 1, - anon_sym_DOT2, - STATE(1906), 1, - sym_path, - STATE(1800), 2, + STATE(1800), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1490), 3, + ACTIONS(1550), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1492), 37, + anon_sym_DOT2, + ACTIONS(1552), 39, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -176857,44 +176798,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [39692] = 16, + anon_sym_QMARK2, + anon_sym_BANG, + [39682] = 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(107), 1, - sym_raw_string_begin, - ACTIONS(3691), 1, - aux_sym_cmd_identifier_token1, STATE(1801), 1, sym_comment, - STATE(2096), 1, - sym__val_number_decimal, - STATE(4213), 1, - sym__command_name, - STATE(4427), 1, - sym_cmd_identifier, - STATE(4428), 1, - sym_val_string, - ACTIONS(3671), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3687), 2, + ACTIONS(1490), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - STATE(504), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3689), 24, + anon_sym_DOT2, + ACTIONS(1492), 39, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176919,44 +176837,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39770] = 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, + [39736] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1770), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(3663), 1, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, STATE(1802), 1, sym_comment, - STATE(2099), 1, + STATE(2100), 1, sym__val_number_decimal, - STATE(3783), 1, + STATE(3801), 1, sym_cmd_identifier, - STATE(3804), 1, + STATE(3802), 1, sym_val_string, - STATE(5371), 1, + STATE(4587), 1, sym__command_name, - ACTIONS(3659), 2, + ACTIONS(3667), 2, anon_sym_export, anon_sym_in, - ACTIONS(3671), 2, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2276), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3661), 24, + ACTIONS(3669), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176981,44 +176912,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39848] = 16, + [39814] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1770), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(3663), 1, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, STATE(1803), 1, sym_comment, - STATE(2099), 1, + STATE(2100), 1, sym__val_number_decimal, - STATE(3783), 1, + STATE(3801), 1, sym_cmd_identifier, - STATE(3804), 1, + STATE(3802), 1, sym_val_string, - STATE(4645), 1, + STATE(5297), 1, sym__command_name, - ACTIONS(3659), 2, + ACTIONS(3667), 2, anon_sym_export, anon_sym_in, - ACTIONS(3671), 2, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2276), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3661), 24, + ACTIONS(3669), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177043,72 +176974,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39926] = 5, + [39892] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4131), 1, + ACTIONS(4056), 1, aux_sym__immediate_decimal_token5, STATE(1804), 1, sym_comment, - ACTIONS(791), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(763), 6, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, anon_sym_DOT_DOT2, - sym_filesize_unit, + sym_duration_unit, sym__unquoted_pattern, - ACTIONS(793), 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, + ACTIONS(765), 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, - sym_duration_unit, - [39982] = 4, + 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, + [39948] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4133), 1, + anon_sym_DOT, + ACTIONS(4135), 1, + aux_sym__immediate_decimal_token5, STATE(1805), 1, sym_comment, - ACTIONS(803), 8, + ACTIONS(1812), 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(805), 35, + ACTIONS(1810), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -177143,80 +177077,17 @@ 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, - [40036] = 16, + [40006] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_DQUOTE, - ACTIONS(1768), 1, - anon_sym_SQUOTE, - ACTIONS(1770), 1, - anon_sym_BQUOTE, - ACTIONS(1772), 1, - sym_raw_string_begin, - ACTIONS(3663), 1, - aux_sym_cmd_identifier_token1, STATE(1806), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3783), 1, - sym_cmd_identifier, - STATE(3804), 1, - sym_val_string, - STATE(4060), 1, - sym__command_name, - ACTIONS(3659), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3671), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2276), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3661), 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, - [40114] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1807), 1, - sym_comment, - ACTIONS(1545), 4, + ACTIONS(1574), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1547), 39, + ACTIONS(1576), 39, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -177256,32 +177127,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [40168] = 11, + [40060] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3890), 1, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(3928), 1, anon_sym_oneof, - ACTIONS(4118), 1, + ACTIONS(4131), 1, anon_sym_AT2, - ACTIONS(4133), 1, + ACTIONS(4137), 1, anon_sym_GT2, - STATE(1808), 1, + STATE(1807), 1, sym_comment, - STATE(4684), 1, + STATE(4697), 1, sym__all_type, - STATE(5478), 1, + STATE(5524), 1, sym_param_completer, - ACTIONS(3888), 2, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(4941), 4, + STATE(5013), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -177313,71 +177184,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [40236] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4079), 1, - aux_sym__immediate_decimal_token5, - STATE(1809), 1, - sym_comment, - ACTIONS(751), 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(753), 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, - [40292] = 5, + [40128] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4126), 1, - anon_sym_QMARK2, - STATE(1810), 1, + ACTIONS(4095), 1, + anon_sym_DOT2, + STATE(1796), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1808), 1, sym_comment, - ACTIONS(1460), 4, + STATE(1890), 1, + sym_path, + ACTIONS(1567), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1462), 38, + ACTIONS(1569), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177405,8 +177229,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, @@ -177415,81 +177237,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [40348] = 16, + [40188] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1770), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(3663), 1, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, - STATE(1811), 1, + STATE(1809), 1, sym_comment, - STATE(2099), 1, + STATE(2100), 1, sym__val_number_decimal, - STATE(3783), 1, + STATE(3801), 1, sym_cmd_identifier, - STATE(3804), 1, + STATE(3802), 1, sym_val_string, - STATE(5217), 1, + STATE(5407), 1, sym__command_name, - ACTIONS(3659), 2, + ACTIONS(3667), 2, anon_sym_export, anon_sym_in, - ACTIONS(3671), 2, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2276), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3661), 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, - [40426] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1812), 1, - sym_comment, - ACTIONS(1486), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1488), 39, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(3669), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177514,164 +177299,94 @@ 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, - [40480] = 11, + [40266] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, - sym__unquoted_pattern, - ACTIONS(4135), 1, - anon_sym_DOT_DOT2, - ACTIONS(4139), 1, - sym_filesize_unit, - ACTIONS(4141), 1, - sym_duration_unit, - STATE(1813), 1, + STATE(1810), 1, sym_comment, - STATE(5068), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4137), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(811), 5, + ACTIONS(801), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(914), 30, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(803), 35, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_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, - [40548] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1814), 1, - sym_comment, - ACTIONS(1541), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1543), 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, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [40602] = 16, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, + [40320] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1770), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(3663), 1, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, - STATE(1815), 1, + STATE(1811), 1, sym_comment, - STATE(2099), 1, + STATE(2100), 1, sym__val_number_decimal, - STATE(3783), 1, + STATE(3801), 1, sym_cmd_identifier, - STATE(3804), 1, + STATE(3802), 1, sym_val_string, - STATE(5336), 1, + STATE(5378), 1, sym__command_name, - ACTIONS(3659), 2, + ACTIONS(3667), 2, anon_sym_export, anon_sym_in, - ACTIONS(3671), 2, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2276), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3661), 24, + ACTIONS(3669), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177696,19 +177411,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [40680] = 4, + [40398] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(1816), 1, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(93), 1, + anon_sym_SQUOTE, + ACTIONS(95), 1, + anon_sym_BQUOTE, + ACTIONS(107), 1, + sym_raw_string_begin, + ACTIONS(3699), 1, + aux_sym_cmd_identifier_token1, + STATE(1812), 1, sym_comment, - ACTIONS(1527), 4, + STATE(2042), 1, + sym__val_number_decimal, + STATE(4274), 1, + sym__command_name, + STATE(4397), 1, + sym_val_string, + STATE(4398), 1, + sym_cmd_identifier, + ACTIONS(3679), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3681), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3695), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1529), 39, - sym_raw_string_begin, - ts_builtin_sym_end, + STATE(509), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3697), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177733,35 +177473,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, + [40476] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1764), 1, anon_sym_DQUOTE, + ACTIONS(1766), 1, anon_sym_SQUOTE, + ACTIONS(1768), 1, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [40734] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4143), 1, - aux_sym__immediate_decimal_token5, - STATE(1817), 1, + ACTIONS(1770), 1, + sym_raw_string_begin, + ACTIONS(3671), 1, + aux_sym_cmd_identifier_token1, + STATE(1813), 1, sym_comment, - ACTIONS(791), 6, + STATE(2100), 1, + sym__val_number_decimal, + STATE(3801), 1, + sym_cmd_identifier, + STATE(3802), 1, + sym_val_string, + STATE(4488), 1, + sym__command_name, + ACTIONS(3667), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(793), 36, - sym_raw_string_begin, + ACTIONS(3679), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3681), 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(3669), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177786,55 +177535,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_filesize_unit, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [40790] = 16, + [40554] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1770), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(3663), 1, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, - STATE(1818), 1, + STATE(1814), 1, sym_comment, - STATE(2099), 1, + STATE(2100), 1, sym__val_number_decimal, - STATE(3783), 1, + STATE(3801), 1, sym_cmd_identifier, - STATE(3804), 1, + STATE(3802), 1, sym_val_string, - STATE(5253), 1, + STATE(5276), 1, sym__command_name, - ACTIONS(3659), 2, + ACTIONS(3667), 2, anon_sym_export, anon_sym_in, - ACTIONS(3671), 2, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2276), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3661), 24, + ACTIONS(3669), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177859,12 +177597,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] = 4, + [40632] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1819), 1, + ACTIONS(4064), 1, + aux_sym__immediate_decimal_token5, + STATE(1815), 1, sym_comment, - ACTIONS(759), 8, + ACTIONS(763), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -177873,11 +177613,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(761), 35, + ACTIONS(765), 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, @@ -177909,22 +177648,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [40922] = 5, + [40688] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4058), 1, - aux_sym__immediate_decimal_token5, - STATE(1820), 1, + ACTIONS(1764), 1, + anon_sym_DQUOTE, + ACTIONS(1766), 1, + anon_sym_SQUOTE, + ACTIONS(1768), 1, + anon_sym_BQUOTE, + ACTIONS(1770), 1, + sym_raw_string_begin, + ACTIONS(3671), 1, + aux_sym_cmd_identifier_token1, + STATE(1816), 1, sym_comment, - ACTIONS(751), 6, + STATE(2100), 1, + sym__val_number_decimal, + STATE(3801), 1, + sym_cmd_identifier, + STATE(3802), 1, + sym_val_string, + STATE(5266), 1, + sym__command_name, + ACTIONS(3667), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(753), 36, - sym_raw_string_begin, + ACTIONS(3679), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3681), 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(3669), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177949,95 +177710,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_filesize_unit, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [40978] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4145), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4147), 1, - aux_sym__immediate_decimal_token5, - STATE(1821), 1, - sym_comment, - ACTIONS(1776), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1774), 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, - [41036] = 11, + [40766] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3890), 1, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(3928), 1, anon_sym_oneof, - STATE(1822), 1, + ACTIONS(4131), 1, + anon_sym_AT2, + ACTIONS(4139), 1, + anon_sym_GT2, + STATE(1817), 1, sym_comment, - STATE(5317), 1, - sym__type_annotation, - STATE(5386), 1, - sym__one_type, - STATE(5387), 1, - sym__multiple_types, - ACTIONS(3888), 2, + STATE(4904), 1, + sym__all_type, + STATE(5349), 1, + sym_param_completer, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(2679), 4, + STATE(5013), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178069,44 +177767,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41104] = 16, + [40834] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_DQUOTE, - ACTIONS(1768), 1, - anon_sym_SQUOTE, - ACTIONS(1770), 1, - anon_sym_BQUOTE, - ACTIONS(1772), 1, - sym_raw_string_begin, - ACTIONS(3663), 1, - aux_sym_cmd_identifier_token1, - STATE(1823), 1, + ACTIONS(4122), 1, + anon_sym_BANG, + STATE(1818), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3783), 1, - sym_cmd_identifier, - STATE(3804), 1, - sym_val_string, - STATE(5263), 1, - sym__command_name, - ACTIONS(3659), 2, + ACTIONS(1464), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3671), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2276), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3661), 24, + anon_sym_DOT2, + ACTIONS(1466), 38, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178131,32 +177805,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [41182] = 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, + [40890] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3890), 1, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(3928), 1, anon_sym_oneof, - ACTIONS(4118), 1, - anon_sym_AT2, - ACTIONS(4149), 1, - anon_sym_GT2, - STATE(1824), 1, + STATE(1819), 1, sym_comment, - STATE(4810), 1, - sym__all_type, - STATE(5115), 1, - sym_param_completer, - ACTIONS(3888), 2, + STATE(5104), 1, + sym__type_annotation, + STATE(5481), 1, + sym__one_type, + STATE(5482), 1, + sym__multiple_types, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(4941), 4, + STATE(2720), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178188,44 +177875,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41250] = 16, + [40958] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_DQUOTE, - ACTIONS(1768), 1, - anon_sym_SQUOTE, - ACTIONS(1770), 1, - anon_sym_BQUOTE, - ACTIONS(1772), 1, - sym_raw_string_begin, - ACTIONS(3663), 1, - aux_sym_cmd_identifier_token1, - STATE(1825), 1, + STATE(1820), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3783), 1, - sym_cmd_identifier, - STATE(3804), 1, - sym_val_string, - STATE(4490), 1, - sym__command_name, - ACTIONS(3659), 2, + ACTIONS(1522), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3671), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2276), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3661), 24, + anon_sym_DOT2, + ACTIONS(1524), 39, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178250,82 +177912,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [41328] = 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, + [41012] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1764), 1, anon_sym_DQUOTE, - ACTIONS(1768), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - ACTIONS(1770), 1, + ACTIONS(1768), 1, anon_sym_BQUOTE, - ACTIONS(1772), 1, + ACTIONS(1770), 1, sym_raw_string_begin, - ACTIONS(3663), 1, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, - STATE(1826), 1, + STATE(1821), 1, sym_comment, - STATE(2099), 1, + STATE(2100), 1, sym__val_number_decimal, - STATE(3783), 1, + STATE(3801), 1, sym_cmd_identifier, - STATE(3804), 1, + STATE(3802), 1, sym_val_string, - STATE(4505), 1, + STATE(4035), 1, sym__command_name, - ACTIONS(3659), 2, + ACTIONS(3667), 2, anon_sym_export, anon_sym_in, - ACTIONS(3671), 2, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2276), 4, + STATE(2288), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3661), 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, - [41406] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1827), 1, - sym_comment, - ACTIONS(803), 6, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(805), 36, - sym_raw_string_begin, + ACTIONS(3669), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178350,38 +177987,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_filesize_unit, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [41459] = 6, + [41090] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4151), 1, - anon_sym_DOT, - ACTIONS(4153), 1, - aux_sym__immediate_decimal_token5, - STATE(1828), 1, + STATE(1822), 1, sym_comment, - ACTIONS(1790), 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(1788), 33, + ACTIONS(777), 35, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -178412,30 +178036,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [41516] = 10, + sym_duration_unit, + [41144] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3890), 1, + ACTIONS(4028), 1, + sym__newline, + ACTIONS(4101), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(4103), 1, anon_sym_oneof, - ACTIONS(4155), 1, - sym__newline, - STATE(1829), 1, + STATE(1823), 1, sym_comment, - STATE(2115), 1, - aux_sym__repeat_newline, - STATE(4756), 1, - sym__type_annotation, - ACTIONS(3888), 2, + STATE(1903), 1, + aux_sym__composite_argument_body_repeat1, + STATE(2010), 1, + aux_sym__types_body_repeat1, + STATE(4710), 1, + sym__all_type, + ACTIONS(4099), 2, anon_sym_table, anon_sym_record, - STATE(2679), 4, + STATE(4922), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(4097), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178467,30 +178094,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41581] = 10, + [41212] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3890), 1, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(3928), 1, anon_sym_oneof, - ACTIONS(4155), 1, - sym__newline, - STATE(1830), 1, + ACTIONS(4131), 1, + anon_sym_AT2, + ACTIONS(4141), 1, + anon_sym_GT2, + STATE(1824), 1, sym_comment, - STATE(1836), 1, - aux_sym__repeat_newline, - STATE(4758), 1, - sym__type_annotation, - ACTIONS(3888), 2, + STATE(4732), 1, + sym__all_type, + STATE(5501), 1, + sym_param_completer, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(2679), 4, + STATE(5013), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178522,19 +178151,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41646] = 4, + [41280] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(1831), 1, + ACTIONS(1830), 1, + anon_sym_LPAREN2, + ACTIONS(1840), 1, + sym__unquoted_pattern, + ACTIONS(4143), 1, + anon_sym_DOT_DOT2, + ACTIONS(4147), 1, + sym_filesize_unit, + ACTIONS(4149), 1, + sym_duration_unit, + STATE(1825), 1, + sym_comment, + STATE(5102), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4145), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(811), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(910), 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, + [41348] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4151), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4153), 1, + aux_sym__immediate_decimal_token5, + STATE(1826), 1, + sym_comment, + ACTIONS(1804), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1802), 34, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [41406] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4155), 1, + anon_sym_QMARK2, + STATE(1827), 1, + sym_comment, + ACTIONS(1464), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1466), 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, + [41461] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1828), 1, sym_comment, - ACTIONS(759), 6, + ACTIONS(801), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT_DOT2, sym_duration_unit, sym__unquoted_pattern, - ACTIONS(761), 36, + ACTIONS(803), 36, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -178571,85 +178359,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [41699] = 10, + [41514] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4155), 1, + ACTIONS(4157), 1, sym__newline, - ACTIONS(4161), 1, - anon_sym_list, ACTIONS(4163), 1, - anon_sym_oneof, - STATE(1832), 1, - sym_comment, - STATE(2115), 1, - aux_sym__repeat_newline, - STATE(3181), 1, - sym__type_annotation, - ACTIONS(4159), 2, - anon_sym_table, - anon_sym_record, - STATE(3353), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4157), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [41764] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4155), 1, - sym__newline, - ACTIONS(4161), 1, anon_sym_list, - ACTIONS(4163), 1, + ACTIONS(4165), 1, anon_sym_oneof, - STATE(1833), 1, + STATE(1829), 1, sym_comment, - STATE(1837), 1, + STATE(2115), 1, aux_sym__repeat_newline, - STATE(3071), 1, + STATE(3017), 1, sym__type_annotation, - ACTIONS(4159), 2, + ACTIONS(4161), 2, anon_sym_table, anon_sym_record, - STATE(3353), 4, + STATE(3114), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4157), 31, + ACTIONS(4159), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178681,30 +178414,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41829] = 10, + [41579] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4155), 1, + ACTIONS(4157), 1, sym__newline, - ACTIONS(4169), 1, - anon_sym_list, ACTIONS(4171), 1, + anon_sym_list, + ACTIONS(4173), 1, anon_sym_oneof, - STATE(1834), 1, + STATE(1830), 1, sym_comment, - STATE(1859), 1, + STATE(2115), 1, aux_sym__repeat_newline, - STATE(3034), 1, + STATE(3236), 1, sym__type_annotation, - ACTIONS(4167), 2, + ACTIONS(4169), 2, anon_sym_table, anon_sym_record, - STATE(3237), 4, + STATE(3394), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4165), 31, + ACTIONS(4167), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178736,79 +178469,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41894] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1835), 1, - sym_comment, - ACTIONS(791), 6, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(793), 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, - [41947] = 10, + [41644] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3890), 1, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(3928), 1, anon_sym_oneof, - ACTIONS(4155), 1, + ACTIONS(4157), 1, sym__newline, - STATE(1836), 1, + STATE(1831), 1, sym_comment, STATE(2115), 1, aux_sym__repeat_newline, - STATE(4805), 1, + STATE(4854), 1, sym__type_annotation, - ACTIONS(3888), 2, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(2679), 4, + STATE(2720), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178840,30 +178524,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42012] = 10, + [41709] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4155), 1, - sym__newline, - ACTIONS(4161), 1, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(4163), 1, + ACTIONS(3928), 1, anon_sym_oneof, - STATE(1837), 1, - sym_comment, - STATE(2115), 1, + ACTIONS(4157), 1, + sym__newline, + STATE(1831), 1, aux_sym__repeat_newline, - STATE(3075), 1, + STATE(1832), 1, + sym_comment, + STATE(4754), 1, sym__type_annotation, - ACTIONS(4159), 2, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(3353), 4, + STATE(2720), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4157), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178895,30 +178579,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42077] = 10, + [41774] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3890), 1, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(3928), 1, anon_sym_oneof, - ACTIONS(4155), 1, + ACTIONS(4157), 1, sym__newline, - STATE(1838), 1, + STATE(1833), 1, sym_comment, STATE(2115), 1, aux_sym__repeat_newline, - STATE(2919), 1, + STATE(4756), 1, sym__type_annotation, - ACTIONS(3888), 2, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(2679), 4, + STATE(2720), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178950,30 +178634,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42142] = 10, + [41839] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, - ACTIONS(4155), 1, - sym__newline, - STATE(1829), 1, - aux_sym__repeat_newline, - STATE(1839), 1, + STATE(1834), 1, sym_comment, - STATE(4697), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(4175), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179003,26 +178674,34 @@ 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, - [42207] = 4, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [41890] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1840), 1, + ACTIONS(4135), 1, + aux_sym__immediate_decimal_token5, + STATE(1835), 1, sym_comment, - ACTIONS(759), 8, + ACTIONS(1812), 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(761), 34, + ACTIONS(1810), 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, @@ -179053,80 +178732,17 @@ 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, - [42260] = 4, + [41945] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1841), 1, + STATE(1836), 1, sym_comment, - ACTIONS(791), 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(793), 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, - [42313] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4155), 1, + ACTIONS(4177), 42, sym__newline, - ACTIONS(4169), 1, - anon_sym_list, - ACTIONS(4171), 1, - anon_sym_oneof, - STATE(1842), 1, - sym_comment, - STATE(2115), 1, - aux_sym__repeat_newline, - STATE(2946), 1, - sym__type_annotation, - ACTIONS(4167), 2, - anon_sym_table, - anon_sym_record, - STATE(3237), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4165), 31, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179156,19 +178772,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, - [42378] = 3, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [41996] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1843), 1, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + STATE(1837), 1, sym_comment, - ACTIONS(4173), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + STATE(1866), 1, + aux_sym__types_body_repeat3, + STATE(4724), 1, + sym__one_type, + STATE(5264), 1, + sym__type_annotation, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179198,29 +178833,180 @@ 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, - [42429] = 4, + [42061] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4179), 1, + anon_sym_DOT_DOT2, + ACTIONS(4183), 1, + sym_filesize_unit, + ACTIONS(4185), 1, + sym_duration_unit, + ACTIONS(4187), 1, + sym__unquoted_pattern, + STATE(1838), 1, + sym_comment, + ACTIONS(4181), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(811), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(910), 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, + [42124] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4189), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4191), 1, + aux_sym__immediate_decimal_token5, + STATE(1839), 1, + sym_comment, + ACTIONS(1804), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1802), 33, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [42181] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1840), 1, + sym_comment, + ACTIONS(755), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(757), 34, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [42234] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1844), 1, + ACTIONS(4193), 1, + anon_sym_DOT, + ACTIONS(4195), 1, + aux_sym__immediate_decimal_token5, + STATE(1841), 1, sym_comment, - ACTIONS(803), 8, + ACTIONS(1812), 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(805), 34, + ACTIONS(1810), 33, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -179254,18 +179040,30 @@ 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, - [42482] = 3, + [42291] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1845), 1, - sym_comment, - ACTIONS(4175), 42, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(4157), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + STATE(1833), 1, + aux_sym__repeat_newline, + STATE(1842), 1, + sym_comment, + STATE(4856), 1, + sym__type_annotation, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179295,38 +179093,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, - [42533] = 10, + [42356] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3890), 1, + ACTIONS(4157), 1, + sym__newline, + ACTIONS(4163), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(4165), 1, anon_sym_oneof, - STATE(1846), 1, + STATE(1843), 1, sym_comment, - STATE(1856), 1, - aux_sym__types_body_repeat3, - STATE(4782), 1, - sym__one_type, - STATE(5261), 1, + STATE(1847), 1, + aux_sym__repeat_newline, + STATE(3233), 1, sym__type_annotation, - ACTIONS(3888), 2, + ACTIONS(4161), 2, anon_sym_table, anon_sym_record, - STATE(2679), 4, + STATE(3114), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(4159), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179358,30 +179150,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42598] = 10, + [42421] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4155), 1, - sym__newline, - ACTIONS(4161), 1, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(4163), 1, + ACTIONS(3928), 1, anon_sym_oneof, - STATE(1832), 1, - aux_sym__repeat_newline, - STATE(1847), 1, + ACTIONS(4157), 1, + sym__newline, + STATE(1844), 1, sym_comment, - STATE(3142), 1, + STATE(2115), 1, + aux_sym__repeat_newline, + STATE(2770), 1, sym__type_annotation, - ACTIONS(4159), 2, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(3353), 4, + STATE(2720), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4157), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179413,30 +179205,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42663] = 10, + [42486] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4155), 1, - sym__newline, - ACTIONS(4169), 1, + STATE(1845), 1, + sym_comment, + ACTIONS(801), 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(803), 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, + [42539] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(4171), 1, + ACTIONS(3928), 1, anon_sym_oneof, - STATE(1848), 1, + ACTIONS(4157), 1, + sym__newline, + STATE(1846), 1, sym_comment, STATE(2115), 1, aux_sym__repeat_newline, - STATE(3194), 1, + STATE(2823), 1, sym__type_annotation, - ACTIONS(4167), 2, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(3237), 4, + STATE(2720), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4165), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179468,30 +179309,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42728] = 10, + [42604] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4155), 1, + ACTIONS(4157), 1, sym__newline, - ACTIONS(4169), 1, + ACTIONS(4163), 1, anon_sym_list, - ACTIONS(4171), 1, + ACTIONS(4165), 1, anon_sym_oneof, - STATE(1848), 1, - aux_sym__repeat_newline, - STATE(1849), 1, + STATE(1847), 1, sym_comment, - STATE(3184), 1, + STATE(2115), 1, + aux_sym__repeat_newline, + STATE(3227), 1, sym__type_annotation, - ACTIONS(4167), 2, + ACTIONS(4161), 2, anon_sym_table, anon_sym_record, - STATE(3237), 4, + STATE(3114), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4165), 31, + ACTIONS(4159), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179523,17 +179364,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42793] = 4, + [42669] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1850), 1, + STATE(1848), 1, sym_comment, - ACTIONS(1565), 4, + ACTIONS(1532), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1567), 38, + ACTIONS(1534), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -179572,17 +179413,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [42846] = 4, + [42722] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1851), 1, + ACTIONS(4157), 1, + sym__newline, + ACTIONS(4163), 1, + anon_sym_list, + ACTIONS(4165), 1, + anon_sym_oneof, + STATE(1849), 1, + sym_comment, + STATE(1868), 1, + aux_sym__repeat_newline, + STATE(3018), 1, + sym__type_annotation, + ACTIONS(4161), 2, + anon_sym_table, + anon_sym_record, + STATE(3114), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4159), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [42787] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1850), 1, sym_comment, - ACTIONS(1555), 4, + ACTIONS(1584), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1557), 38, + ACTIONS(1586), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -179621,30 +179517,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [42899] = 10, + [42840] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3890), 1, + ACTIONS(4157), 1, + sym__newline, + ACTIONS(4171), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(4173), 1, anon_sym_oneof, - ACTIONS(4155), 1, - sym__newline, - STATE(1838), 1, + STATE(1830), 1, aux_sym__repeat_newline, - STATE(1852), 1, + STATE(1851), 1, sym_comment, - STATE(2730), 1, + STATE(3258), 1, sym__type_annotation, - ACTIONS(3888), 2, + ACTIONS(4169), 2, anon_sym_table, anon_sym_record, - STATE(2679), 4, + STATE(3394), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(4167), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179676,60 +179572,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42964] = 3, + [42905] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1853), 1, + STATE(1852), 1, sym_comment, - ACTIONS(4177), 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, - [43015] = 3, + ACTIONS(755), 6, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(757), 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, + [42958] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1854), 1, + STATE(1853), 1, sym_comment, - ACTIONS(4179), 42, + ACTIONS(4197), 42, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -179772,30 +179669,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneof, anon_sym_LBRACE, anon_sym_RBRACE, - [43066] = 10, + [43009] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3890), 1, + ACTIONS(4157), 1, + sym__newline, + ACTIONS(4171), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(4173), 1, anon_sym_oneof, - STATE(1855), 1, + STATE(1854), 1, sym_comment, - STATE(1856), 1, - aux_sym__types_body_repeat3, - STATE(4869), 1, - sym__one_type, - STATE(5261), 1, + STATE(1857), 1, + aux_sym__repeat_newline, + STATE(3166), 1, sym__type_annotation, - ACTIONS(3888), 2, + ACTIONS(4169), 2, anon_sym_table, anon_sym_record, - STATE(2679), 4, + STATE(3394), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(4167), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179827,29 +179724,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43131] = 9, + [43074] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4187), 1, - anon_sym_list, - ACTIONS(4190), 1, - anon_sym_oneof, - STATE(5013), 1, - sym__one_type, - STATE(5261), 1, - sym__type_annotation, - ACTIONS(4184), 2, - anon_sym_table, - anon_sym_record, - STATE(1856), 2, + STATE(1855), 1, sym_comment, - aux_sym__types_body_repeat3, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4181), 31, + ACTIONS(4199), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179879,73 +179764,28 @@ 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, - [43194] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4193), 1, - aux_sym__immediate_decimal_token5, - STATE(1857), 1, - sym_comment, - ACTIONS(1868), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1866), 34, - anon_sym_in, - sym__newline, - anon_sym_DASH2, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, 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, - [43249] = 5, + anon_sym_RBRACE, + [43125] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4195), 1, - anon_sym_QMARK2, - STATE(1858), 1, + STATE(1856), 1, sym_comment, - ACTIONS(1460), 4, + ACTIONS(775), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1462), 37, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(777), 36, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179970,41 +179810,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_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, - [43304] = 10, + [43178] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4155), 1, + ACTIONS(4157), 1, sym__newline, - ACTIONS(4169), 1, - anon_sym_list, ACTIONS(4171), 1, + anon_sym_list, + ACTIONS(4173), 1, anon_sym_oneof, - STATE(1859), 1, + STATE(1857), 1, sym_comment, STATE(2115), 1, aux_sym__repeat_newline, - STATE(2924), 1, + STATE(3147), 1, sym__type_annotation, - ACTIONS(4167), 2, + ACTIONS(4169), 2, anon_sym_table, anon_sym_record, - STATE(3237), 4, + STATE(3394), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4165), 31, + ACTIONS(4167), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180036,30 +179876,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43369] = 10, + [43243] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4155), 1, + STATE(1858), 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, + [43296] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4157), 1, sym__newline, - ACTIONS(4169), 1, + ACTIONS(4163), 1, anon_sym_list, - ACTIONS(4171), 1, + ACTIONS(4165), 1, anon_sym_oneof, - STATE(1842), 1, - aux_sym__repeat_newline, - STATE(1860), 1, + STATE(1859), 1, sym_comment, - STATE(2928), 1, + STATE(1875), 1, + aux_sym__repeat_newline, + STATE(3249), 1, sym__type_annotation, - ACTIONS(4167), 2, + ACTIONS(4161), 2, anon_sym_table, anon_sym_record, - STATE(3237), 4, + STATE(3114), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4165), 31, + ACTIONS(4159), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180091,30 +179980,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43434] = 10, + [43361] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4155), 1, - sym__newline, - ACTIONS(4169), 1, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(4171), 1, + ACTIONS(3928), 1, anon_sym_oneof, - STATE(1861), 1, + STATE(1860), 1, sym_comment, - STATE(1862), 1, - aux_sym__repeat_newline, - STATE(3147), 1, + STATE(1866), 1, + aux_sym__types_body_repeat3, + STATE(4698), 1, + sym__one_type, + STATE(5264), 1, sym__type_annotation, - ACTIONS(4167), 2, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(3237), 4, + STATE(2720), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4165), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180146,30 +180035,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43499] = 10, + [43426] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4155), 1, - sym__newline, - ACTIONS(4169), 1, - anon_sym_list, - ACTIONS(4171), 1, - anon_sym_oneof, - STATE(1862), 1, + STATE(1861), 1, sym_comment, - STATE(2115), 1, - aux_sym__repeat_newline, - STATE(3221), 1, - sym__type_annotation, - ACTIONS(4167), 2, - anon_sym_table, - anon_sym_record, - STATE(3237), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4165), 31, + ACTIONS(4201), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180199,29 +180075,75 @@ 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, - [43564] = 9, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [43477] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4197), 1, - anon_sym_DOT_DOT2, - ACTIONS(4201), 1, - sym_filesize_unit, ACTIONS(4203), 1, - sym_duration_unit, - ACTIONS(4205), 1, - sym__unquoted_pattern, - STATE(1863), 1, + aux_sym__immediate_decimal_token5, + STATE(1862), 1, sym_comment, - ACTIONS(4199), 2, + ACTIONS(1876), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1874), 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, - ACTIONS(811), 3, + [43532] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1863), 1, + sym_comment, + ACTIONS(1536), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(914), 33, + anon_sym_DOT2, + ACTIONS(1538), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -180247,7 +180169,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -180255,30 +180182,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43627] = 10, + [43585] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, ACTIONS(4155), 1, - sym__newline, + anon_sym_BANG, STATE(1864), 1, sym_comment, - STATE(1869), 1, - aux_sym__repeat_newline, - STATE(3027), 1, + ACTIONS(1464), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1466), 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, + [43640] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1865), 1, + sym_comment, + ACTIONS(4205), 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, + [43691] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4213), 1, + anon_sym_list, + ACTIONS(4216), 1, + anon_sym_oneof, + STATE(5086), 1, + sym__one_type, + STATE(5264), 1, sym__type_annotation, - ACTIONS(3888), 2, + ACTIONS(4210), 2, anon_sym_table, anon_sym_record, - STATE(2679), 4, + STATE(1866), 2, + sym_comment, + aux_sym__types_body_repeat3, + STATE(2720), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(4207), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180310,68 +180334,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43692] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4207), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4209), 1, - aux_sym__immediate_decimal_token5, - STATE(1865), 1, - sym_comment, - ACTIONS(1776), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1774), 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, - [43749] = 3, + [43754] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1866), 1, - sym_comment, - ACTIONS(4211), 42, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(4157), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + STATE(1867), 1, + sym_comment, + STATE(2115), 1, + aux_sym__repeat_newline, + STATE(2995), 1, + sym__type_annotation, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180401,25 +180387,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, - [43800] = 3, + [43819] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1867), 1, - sym_comment, - ACTIONS(4213), 42, + ACTIONS(4157), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + ACTIONS(4163), 1, + anon_sym_list, + ACTIONS(4165), 1, + anon_sym_oneof, + STATE(1868), 1, + sym_comment, + STATE(2115), 1, + aux_sym__repeat_newline, + STATE(3035), 1, + sym__type_annotation, + ACTIONS(4161), 2, + anon_sym_table, + anon_sym_record, + STATE(3114), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4159), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180449,87 +180442,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, - [43851] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1868), 1, - sym_comment, - ACTIONS(1561), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1563), 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, - [43904] = 10, + [43884] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3890), 1, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(3928), 1, anon_sym_oneof, - ACTIONS(4155), 1, + ACTIONS(4157), 1, sym__newline, STATE(1869), 1, sym_comment, - STATE(2115), 1, + STATE(1874), 1, aux_sym__repeat_newline, - STATE(3031), 1, + STATE(2989), 1, sym__type_annotation, - ACTIONS(3888), 2, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(2679), 4, + STATE(2720), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180561,30 +180499,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43969] = 10, + [43949] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3890), 1, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(3928), 1, anon_sym_oneof, - ACTIONS(4155), 1, + ACTIONS(4157), 1, sym__newline, + STATE(1844), 1, + aux_sym__repeat_newline, STATE(1870), 1, sym_comment, - STATE(1871), 1, - aux_sym__repeat_newline, - STATE(3032), 1, + STATE(2771), 1, sym__type_annotation, - ACTIONS(3888), 2, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(2679), 4, + STATE(2720), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180616,30 +180554,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [44034] = 10, + [44014] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3890), 1, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(3928), 1, anon_sym_oneof, - ACTIONS(4155), 1, + ACTIONS(4157), 1, sym__newline, + STATE(1846), 1, + aux_sym__repeat_newline, STATE(1871), 1, sym_comment, - STATE(2115), 1, - aux_sym__repeat_newline, - STATE(3033), 1, + STATE(2765), 1, sym__type_annotation, - ACTIONS(3888), 2, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(2679), 4, + STATE(2720), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180671,80 +180609,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [44099] = 5, + [44079] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4195), 1, - anon_sym_BANG, + ACTIONS(3926), 1, + anon_sym_list, + ACTIONS(3928), 1, + anon_sym_oneof, + ACTIONS(4157), 1, + sym__newline, + STATE(1867), 1, + aux_sym__repeat_newline, STATE(1872), 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, - [44154] = 10, + STATE(2994), 1, + sym__type_annotation, + ACTIONS(3924), 2, + anon_sym_table, + anon_sym_record, + STATE(2720), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3922), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [44144] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3890), 1, + ACTIONS(4157), 1, + sym__newline, + ACTIONS(4163), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(4165), 1, anon_sym_oneof, - ACTIONS(4155), 1, - sym__newline, + STATE(1829), 1, + aux_sym__repeat_newline, STATE(1873), 1, sym_comment, - STATE(1874), 1, - aux_sym__repeat_newline, - STATE(2917), 1, + STATE(2942), 1, sym__type_annotation, - ACTIONS(3888), 2, + ACTIONS(4161), 2, anon_sym_table, anon_sym_record, - STATE(2679), 4, + STATE(3114), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(4159), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180776,30 +180719,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [44219] = 10, + [44209] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3890), 1, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(3892), 1, + ACTIONS(3928), 1, anon_sym_oneof, - ACTIONS(4155), 1, + ACTIONS(4157), 1, sym__newline, STATE(1874), 1, sym_comment, STATE(2115), 1, aux_sym__repeat_newline, - STATE(2918), 1, + STATE(2992), 1, sym__type_annotation, - ACTIONS(3888), 2, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(2679), 4, + STATE(2720), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3886), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180829,120 +180772,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [44284] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4122), 1, - aux_sym__immediate_decimal_token5, - STATE(1875), 1, - sym_comment, - ACTIONS(1790), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1788), 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, - [44339] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(2108), 1, - anon_sym_LPAREN2, - ACTIONS(4215), 1, - anon_sym_DOT_DOT2, - STATE(1876), 1, - sym_comment, - ACTIONS(4217), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2106), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2104), 31, - anon_sym_in, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [44274] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4157), 1, 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, - [44399] = 4, + ACTIONS(4163), 1, + anon_sym_list, + ACTIONS(4165), 1, + anon_sym_oneof, + STATE(1875), 1, + sym_comment, + STATE(2115), 1, + aux_sym__repeat_newline, + STATE(3230), 1, + sym__type_annotation, + ACTIONS(4161), 2, + anon_sym_table, + anon_sym_record, + STATE(3114), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4159), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [44339] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1877), 1, + STATE(1876), 1, sym_comment, - ACTIONS(1531), 3, + ACTIONS(1596), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1533), 38, + ACTIONS(1598), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -180981,64 +180877,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44451] = 8, + [44391] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(819), 1, - anon_sym_DOT_DOT2, ACTIONS(4219), 1, - sym_filesize_unit, - ACTIONS(4221), 1, - sym_duration_unit, - STATE(1878), 1, - sym_comment, - ACTIONS(821), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(811), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(914), 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, - [44511] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1879), 1, + aux_sym__immediate_decimal_token5, + STATE(1877), 1, sym_comment, - ACTIONS(1868), 7, + ACTIONS(1876), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -181046,11 +180892,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1866), 34, + ACTIONS(1874), 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, @@ -181081,60 +180926,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [44563] = 4, + [44445] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1880), 1, + ACTIONS(4227), 1, + anon_sym_list, + ACTIONS(4230), 1, + anon_sym_oneof, + STATE(4964), 1, + sym__all_type, + ACTIONS(4224), 2, + anon_sym_table, + anon_sym_record, + STATE(1878), 2, sym_comment, - ACTIONS(1535), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1537), 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, - [44615] = 4, + aux_sym__composite_argument_body_repeat1, + STATE(4922), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4221), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [44505] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1881), 1, + ACTIONS(4195), 1, + aux_sym__immediate_decimal_token5, + STATE(1879), 1, sym_comment, - ACTIONS(1923), 7, + ACTIONS(1812), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -181142,11 +180993,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1921), 34, + ACTIONS(1810), 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, @@ -181177,14 +181027,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [44667] = 5, + [44559] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4153), 1, - aux_sym__immediate_decimal_token5, - STATE(1882), 1, + STATE(1880), 1, sym_comment, - ACTIONS(1790), 7, + ACTIONS(1947), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -181192,10 +181040,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1788), 33, + ACTIONS(1945), 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, @@ -181226,160 +181075,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [44721] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1883), 1, - sym_comment, - ACTIONS(1600), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1602), 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, - [44773] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1884), 1, - sym_comment, - ACTIONS(1486), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1488), 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, - [44825] = 4, + [44611] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1885), 1, + ACTIONS(4101), 1, + anon_sym_list, + ACTIONS(4103), 1, + anon_sym_oneof, + STATE(1878), 1, + aux_sym__composite_argument_body_repeat1, + STATE(1881), 1, sym_comment, - ACTIONS(1541), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1543), 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, - [44877] = 4, + STATE(4692), 1, + sym__all_type, + ACTIONS(4099), 2, + anon_sym_table, + anon_sym_record, + STATE(4922), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4097), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [44673] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1886), 1, + STATE(1882), 1, sym_comment, - ACTIONS(1545), 3, + ACTIONS(1490), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1547), 38, + ACTIONS(1492), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181418,65 +181176,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44929] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1887), 1, - sym_comment, - ACTIONS(1561), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1563), 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, - [44981] = 4, + [44725] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1888), 1, + STATE(1883), 1, sym_comment, - ACTIONS(1565), 4, + ACTIONS(1532), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1567), 37, + ACTIONS(1534), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -181514,122 +181224,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45033] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4052), 1, - anon_sym_list, - ACTIONS(4054), 1, - anon_sym_oneof, - STATE(1889), 1, - sym_comment, - STATE(1893), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4743), 1, - sym__all_type, - ACTIONS(4050), 2, - anon_sym_table, - anon_sym_record, - STATE(4802), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4048), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [45095] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4052), 1, - anon_sym_list, - ACTIONS(4054), 1, - anon_sym_oneof, - STATE(1890), 1, - sym_comment, - STATE(1893), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4866), 1, - sym__all_type, - ACTIONS(4050), 2, - anon_sym_table, - anon_sym_record, - STATE(4802), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4048), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [45157] = 4, + [44777] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1891), 1, + STATE(1884), 1, sym_comment, - ACTIONS(2350), 3, + ACTIONS(2249), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2348), 38, + ACTIONS(2247), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181668,116 +181272,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45209] = 4, + [44829] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1892), 1, + STATE(1885), 1, sym_comment, - ACTIONS(2457), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1876), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1874), 34, anon_sym_in, - ACTIONS(2455), 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, - [45261] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4229), 1, - anon_sym_list, - ACTIONS(4232), 1, - anon_sym_oneof, - STATE(5049), 1, - sym__all_type, - ACTIONS(4226), 2, - anon_sym_table, - anon_sym_record, - STATE(1893), 2, - sym_comment, - aux_sym__composite_argument_body_repeat1, - STATE(4802), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4223), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [45321] = 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, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [44881] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1894), 1, + STATE(1886), 1, sym_comment, - ACTIONS(2469), 3, + ACTIONS(2491), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2467), 38, + ACTIONS(2489), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181816,16 +181368,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45373] = 4, + [44933] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1895), 1, + STATE(1887), 1, sym_comment, - ACTIONS(2473), 3, + ACTIONS(2487), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2471), 38, + ACTIONS(2485), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181864,17 +181416,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45425] = 4, + [44985] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1896), 1, + STATE(1888), 1, sym_comment, - ACTIONS(2363), 3, + ACTIONS(1536), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2361), 38, + anon_sym_DOT2, + ACTIONS(1538), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -181902,8 +181456,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, @@ -181912,25 +181464,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45477] = 5, + [45037] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4235), 1, - aux_sym__immediate_decimal_token5, - STATE(1897), 1, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(2129), 1, + anon_sym_LPAREN2, + ACTIONS(4233), 1, + anon_sym_DOT_DOT2, + STATE(1889), 1, sym_comment, - ACTIONS(1868), 7, + ACTIONS(4235), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2127), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1866), 33, + ACTIONS(2125), 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, @@ -181949,7 +181507,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, @@ -181959,19 +181516,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [45531] = 4, + [45097] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1898), 1, + STATE(1890), 1, sym_comment, - ACTIONS(1874), 3, + ACTIONS(1584), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1872), 38, + anon_sym_DOT2, + ACTIONS(1586), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -181999,8 +181556,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, @@ -182009,16 +181564,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45583] = 4, + [45149] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1899), 1, + STATE(1891), 1, sym_comment, - ACTIONS(2457), 3, + ACTIONS(1544), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2455), 38, + ACTIONS(1546), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -182057,20 +181612,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45635] = 4, + [45201] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1900), 1, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, + sym__unquoted_pattern, + ACTIONS(4237), 1, + anon_sym_DOT_DOT2, + STATE(1892), 1, sym_comment, - ACTIONS(1776), 7, + ACTIONS(4239), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2101), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1774), 34, + ACTIONS(2099), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -182093,7 +181655,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, @@ -182103,66 +181664,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, - [45687] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1901), 1, - sym_comment, - ACTIONS(2461), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2459), 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, - [45739] = 4, + [45261] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1902), 1, + STATE(1893), 1, sym_comment, - ACTIONS(2465), 3, + ACTIONS(2415), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2463), 38, + ACTIONS(2413), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -182201,16 +181712,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45791] = 4, + [45313] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1903), 1, + STATE(1894), 1, sym_comment, - ACTIONS(1671), 3, + ACTIONS(2415), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1669), 38, + ACTIONS(2413), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -182249,16 +181760,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45843] = 4, + [45365] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1904), 1, + STATE(1895), 1, sym_comment, - ACTIONS(1527), 3, + ACTIONS(1574), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1529), 38, + ACTIONS(1576), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -182297,27 +181808,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45895] = 8, + [45417] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern, - ACTIONS(4237), 1, - anon_sym_DOT_DOT2, - STATE(1905), 1, + STATE(1896), 1, sym_comment, - ACTIONS(4239), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2116), 5, + ACTIONS(1804), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2114), 31, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1802), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -182340,6 +181844,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, @@ -182349,19 +181854,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [45955] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [45469] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1906), 1, + STATE(1897), 1, sym_comment, - ACTIONS(1555), 4, + ACTIONS(1540), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1557), 37, + ACTIONS(1542), 38, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -182389,6 +181894,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, @@ -182397,69 +181904,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46007] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4052), 1, - anon_sym_list, - ACTIONS(4054), 1, - anon_sym_oneof, - STATE(1907), 1, - sym_comment, - STATE(4858), 1, - sym__all_type, - ACTIONS(4050), 2, - anon_sym_table, - anon_sym_record, - STATE(4802), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4048), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [46066] = 4, + [45521] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1908), 1, + STATE(1898), 1, sym_comment, - ACTIONS(1600), 3, + ACTIONS(2590), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1602), 37, + ACTIONS(2588), 38, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -182487,6 +181942,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, @@ -182495,75 +181952,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46117] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4241), 1, - anon_sym_DOT2, - STATE(1909), 1, - sym_comment, - STATE(1956), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2094), 1, - sym_path, - STATE(2184), 1, - sym_cell_path, - ACTIONS(1927), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1925), 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, - [46176] = 8, + [45573] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4241), 1, - anon_sym_DOT2, - STATE(1910), 1, + STATE(1899), 1, sym_comment, - STATE(1956), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2094), 1, - sym_path, - STATE(2191), 1, - sym_cell_path, - ACTIONS(1883), 3, + ACTIONS(1669), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1880), 33, + ACTIONS(1667), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -182586,129 +181984,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_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, - [46235] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern, - ACTIONS(4243), 1, - anon_sym_DOT_DOT2, - STATE(1911), 1, - sym_comment, - ACTIONS(4245), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2116), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2114), 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, - [46294] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4247), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4249), 1, - aux_sym__immediate_decimal_token5, - STATE(1912), 1, - sym_comment, - ACTIONS(1776), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1774), 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, - [46349] = 4, + 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, + [45625] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1913), 1, + STATE(1900), 1, sym_comment, - ACTIONS(2363), 3, + ACTIONS(1550), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2361), 37, + ACTIONS(1552), 38, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -182736,6 +182038,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, @@ -182744,18 +182048,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46400] = 4, + [45677] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1914), 1, + STATE(1901), 1, sym_comment, - ACTIONS(2469), 3, + ACTIONS(1858), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2467), 37, + ACTIONS(1856), 38, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -182783,6 +182086,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, @@ -182791,18 +182096,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46451] = 4, + [45729] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1915), 1, + STATE(1902), 1, sym_comment, - ACTIONS(2461), 3, + ACTIONS(2160), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2459), 37, + ACTIONS(2158), 38, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -182830,6 +182134,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, @@ -182838,18 +182144,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46502] = 4, + [45781] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1916), 1, + ACTIONS(4101), 1, + anon_sym_list, + ACTIONS(4103), 1, + anon_sym_oneof, + STATE(1878), 1, + aux_sym__composite_argument_body_repeat1, + STATE(1903), 1, + sym_comment, + STATE(4871), 1, + sym__all_type, + ACTIONS(4099), 2, + anon_sym_table, + anon_sym_record, + STATE(4922), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4097), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [45843] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1904), 1, sym_comment, - ACTIONS(2465), 3, + ACTIONS(2594), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2463), 37, + ACTIONS(2592), 38, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -182877,6 +182235,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, @@ -182885,18 +182245,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46553] = 4, + [45895] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1917), 1, + ACTIONS(819), 1, + anon_sym_DOT_DOT2, + ACTIONS(4241), 1, + sym_filesize_unit, + ACTIONS(4243), 1, + sym_duration_unit, + STATE(1905), 1, sym_comment, - ACTIONS(1874), 3, + ACTIONS(821), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(811), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(910), 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, + [45955] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1906), 1, + sym_comment, + ACTIONS(1522), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1872), 37, + ACTIONS(1524), 38, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -182924,6 +182335,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, @@ -182932,16 +182345,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46604] = 4, + [46007] = 28, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2800), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2838), 1, + anon_sym_COLON2, + ACTIONS(4245), 1, + anon_sym_null, + ACTIONS(4249), 1, + anon_sym_LPAREN, + ACTIONS(4251), 1, + anon_sym_DOLLAR, + ACTIONS(4253), 1, + anon_sym_DOT_DOT, + ACTIONS(4257), 1, + sym_val_date, + ACTIONS(4259), 1, + anon_sym_DQUOTE, + ACTIONS(4261), 1, + anon_sym_SQUOTE, + ACTIONS(4263), 1, + anon_sym_BQUOTE, + ACTIONS(4265), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4267), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4269), 1, + aux_sym_unquoted_token1, + ACTIONS(4271), 1, + sym_raw_string_begin, + STATE(1893), 1, + sym__inter_double_quotes, + STATE(1894), 1, + sym__inter_single_quotes, + STATE(1907), 1, + sym_comment, + STATE(4078), 1, + sym__val_number_decimal, + STATE(5392), 1, + sym_val_bool, + ACTIONS(3121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3131), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3133), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4255), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5115), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4247), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1895), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1457), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [46106] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1918), 1, + STATE(1908), 1, sym_comment, - ACTIONS(1486), 3, + ACTIONS(2594), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1488), 37, + ACTIONS(2592), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -182979,27 +182463,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46655] = 8, + [46157] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4219), 1, - sym_filesize_unit, - ACTIONS(4221), 1, - sym_duration_unit, - ACTIONS(4251), 1, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(2129), 1, + anon_sym_LPAREN2, + ACTIONS(4273), 1, anon_sym_DOT_DOT2, - STATE(1919), 1, + STATE(1909), 1, sym_comment, - ACTIONS(4253), 2, + ACTIONS(4275), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(811), 5, + ACTIONS(2127), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(914), 30, + ACTIONS(2125), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -183030,18 +182514,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [46714] = 4, + [46216] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1920), 1, + ACTIONS(4277), 1, + anon_sym_DOT2, + STATE(1910), 1, sym_comment, - ACTIONS(1531), 3, + STATE(1953), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2112), 1, + sym_path, + STATE(2213), 1, + sym_cell_path, + ACTIONS(1906), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1533), 37, + ACTIONS(1904), 33, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -183066,10 +182557,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, @@ -183077,24 +182565,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46765] = 8, + [46275] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4241), 1, - anon_sym_DOT2, - STATE(1921), 1, + ACTIONS(4279), 1, + anon_sym_QMARK2, + ACTIONS(4281), 1, + anon_sym_BANG, + STATE(1911), 1, sym_comment, - STATE(1956), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2094), 1, - sym_path, - STATE(2174), 1, - sym_cell_path, - ACTIONS(1907), 3, + STATE(2160), 1, + sym__path_suffix, + ACTIONS(1470), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1905), 33, + anon_sym_DOT2, + ACTIONS(1472), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -183128,89 +182615,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46824] = 28, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2786), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2834), 1, - anon_sym_COLON2, - ACTIONS(4255), 1, - anon_sym_null, - ACTIONS(4259), 1, - anon_sym_LPAREN, - ACTIONS(4261), 1, - anon_sym_DOLLAR, - ACTIONS(4263), 1, - anon_sym_DOT_DOT, - ACTIONS(4267), 1, - sym_val_date, - ACTIONS(4269), 1, - anon_sym_DQUOTE, - ACTIONS(4271), 1, - anon_sym_SQUOTE, - ACTIONS(4273), 1, - anon_sym_BQUOTE, - ACTIONS(4275), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4277), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4279), 1, - aux_sym_unquoted_token1, - ACTIONS(4281), 1, - sym_raw_string_begin, - STATE(1892), 1, - sym__inter_single_quotes, - STATE(1899), 1, - sym__inter_double_quotes, - STATE(1922), 1, - sym_comment, - STATE(4059), 1, - sym__val_number_decimal, - STATE(5176), 1, - sym_val_bool, - ACTIONS(3114), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3124), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3126), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(4265), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(5140), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4257), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1904), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1461), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [46923] = 4, + [46332] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1923), 1, + ACTIONS(4277), 1, + anon_sym_DOT2, + STATE(1912), 1, sym_comment, - ACTIONS(2457), 3, + STATE(1953), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2112), 1, + sym_path, + STATE(2174), 1, + sym_cell_path, + ACTIONS(1936), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2455), 37, + ACTIONS(1934), 33, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -183235,10 +182658,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, @@ -183246,25 +182666,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46974] = 8, + [46391] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4241), 1, - anon_sym_DOT2, - STATE(1924), 1, + STATE(1913), 1, sym_comment, - STATE(1956), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2094), 1, - sym_path, - STATE(2180), 1, - sym_cell_path, - ACTIONS(1911), 3, + ACTIONS(2249), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1909), 33, + ACTIONS(2247), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -183289,7 +182702,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, @@ -183297,16 +182713,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47033] = 4, + [46442] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1925), 1, + STATE(1914), 1, + sym_comment, + ACTIONS(1947), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1945), 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, + [46493] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1915), 1, sym_comment, - ACTIONS(2457), 3, + ACTIONS(1858), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2455), 37, + ACTIONS(1856), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -183344,26 +182807,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47084] = 8, + [46544] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4052), 1, + ACTIONS(3926), 1, anon_sym_list, - ACTIONS(4054), 1, + ACTIONS(3928), 1, anon_sym_oneof, - STATE(1926), 1, + STATE(1916), 1, sym_comment, - STATE(4456), 1, - sym__all_type, - ACTIONS(4050), 2, + STATE(5526), 1, + sym__type_annotation, + ACTIONS(3924), 2, anon_sym_table, anon_sym_record, - STATE(4802), 4, + STATE(2720), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4048), 31, + ACTIONS(3922), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -183395,27 +182858,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [47143] = 8, + [46603] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(2108), 1, - anon_sym_LPAREN2, + ACTIONS(4277), 1, + anon_sym_DOT2, + STATE(1917), 1, + sym_comment, + STATE(1953), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2112), 1, + sym_path, + STATE(2210), 1, + sym_cell_path, + ACTIONS(1928), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1926), 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, + [46662] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4241), 1, + sym_filesize_unit, + ACTIONS(4243), 1, + sym_duration_unit, ACTIONS(4283), 1, anon_sym_DOT_DOT2, - STATE(1927), 1, + STATE(1918), 1, sym_comment, ACTIONS(4285), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2106), 5, + ACTIONS(811), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2104), 30, + ACTIONS(910), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -183446,16 +182960,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47202] = 4, + [46721] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1928), 1, + ACTIONS(4101), 1, + anon_sym_list, + ACTIONS(4103), 1, + anon_sym_oneof, + STATE(1919), 1, + sym_comment, + STATE(4985), 1, + sym__type_annotation, + ACTIONS(4099), 2, + anon_sym_table, + anon_sym_record, + STATE(5019), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4097), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [46780] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1920), 1, sym_comment, - ACTIONS(1545), 3, + ACTIONS(1550), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1547), 37, + ACTIONS(1552), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -183493,63 +183058,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47253] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1929), 1, - sym_comment, - ACTIONS(1776), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1774), 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, - [47304] = 4, + [46831] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1930), 1, + STATE(1921), 1, sym_comment, - ACTIONS(1535), 3, + ACTIONS(2590), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1537), 37, + ACTIONS(2588), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -183587,27 +183105,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47355] = 6, + [46882] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4101), 1, + anon_sym_list, + ACTIONS(4103), 1, + anon_sym_oneof, + STATE(1922), 1, + sym_comment, + STATE(4485), 1, + sym__all_type, + ACTIONS(4099), 2, + anon_sym_table, + anon_sym_record, + STATE(4922), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4097), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [46941] = 8, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, + sym__unquoted_pattern, ACTIONS(4287), 1, - anon_sym_DOT, - ACTIONS(4289), 1, - aux_sym__immediate_decimal_token5, - STATE(1931), 1, + anon_sym_DOT_DOT2, + STATE(1923), 1, sym_comment, - ACTIONS(1790), 6, + ACTIONS(4289), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2101), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1788), 32, + ACTIONS(2099), 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, @@ -183626,7 +183198,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, @@ -183636,24 +183207,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47410] = 8, + [47000] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4241), 1, + ACTIONS(4277), 1, anon_sym_DOT2, - STATE(1932), 1, + STATE(1924), 1, sym_comment, - STATE(1956), 1, + STATE(1953), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2094), 1, + STATE(2112), 1, sym_path, - STATE(2193), 1, + STATE(2199), 1, sym_cell_path, - ACTIONS(1919), 3, + ACTIONS(1932), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1917), 33, + ACTIONS(1930), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -183687,23 +183258,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47469] = 7, + [47059] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4291), 1, - anon_sym_QMARK2, - ACTIONS(4293), 1, - anon_sym_BANG, - STATE(1933), 1, + ACTIONS(4277), 1, + anon_sym_DOT2, + STATE(1925), 1, sym_comment, - STATE(2108), 1, - sym__path_suffix, - ACTIONS(1472), 4, + STATE(1953), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2112), 1, + sym_path, + STATE(2208), 1, + sym_cell_path, + ACTIONS(1915), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1474), 33, + ACTIONS(1912), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -183737,15 +183309,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47526] = 4, + [47118] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4101), 1, + anon_sym_list, + ACTIONS(4103), 1, + anon_sym_oneof, + STATE(1926), 1, + sym_comment, + STATE(4870), 1, + sym__all_type, + ACTIONS(4099), 2, + anon_sym_table, + anon_sym_record, + STATE(4922), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4097), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [47177] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4291), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4293), 1, + aux_sym__immediate_decimal_token5, + STATE(1927), 1, + sym_comment, + ACTIONS(755), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(757), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [47232] = 4, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(4295), 1, sym__entry_separator, - STATE(1934), 2, + STATE(1928), 2, sym_comment, aux_sym__types_body_repeat2, - ACTIONS(3756), 38, + ACTIONS(3741), 38, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_any, @@ -183784,12 +183456,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_list, anon_sym_GT2, anon_sym_oneof, - [47577] = 4, + [47283] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1935), 1, + STATE(1929), 1, + sym_comment, + ACTIONS(2160), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2158), 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, + [47334] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4277), 1, + anon_sym_DOT2, + STATE(1930), 1, + sym_comment, + STATE(1953), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2112), 1, + sym_path, + STATE(2172), 1, + sym_cell_path, + ACTIONS(1478), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1480), 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, + [47393] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1931), 1, sym_comment, - ACTIONS(1868), 7, + ACTIONS(1804), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -183797,7 +183567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1866), 33, + ACTIONS(1802), 33, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -183831,23 +183601,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [47628] = 4, + [47444] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1936), 1, + STATE(1932), 1, + sym_comment, + ACTIONS(1669), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1667), 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, + [47495] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4298), 1, + anon_sym_DOT, + ACTIONS(4300), 1, + aux_sym__immediate_decimal_token5, + STATE(1933), 1, + sym_comment, + ACTIONS(763), 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(765), 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, + [47550] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4302), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4304), 1, + aux_sym__immediate_decimal_token5, + STATE(1934), 1, sym_comment, - ACTIONS(1923), 7, + ACTIONS(1804), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1921), 33, + ACTIONS(1802), 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, @@ -183876,18 +183746,157 @@ 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, - [47679] = 4, + [47605] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1935), 1, + sym_comment, + ACTIONS(1544), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1546), 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, + [47656] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1936), 1, + sym_comment, + ACTIONS(1540), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1542), 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, + [47707] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1937), 1, + sym_comment, + ACTIONS(1574), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1576), 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, + [47758] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1937), 1, + STATE(1938), 1, sym_comment, - ACTIONS(2350), 3, + ACTIONS(1490), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2348), 37, + ACTIONS(1492), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -183925,25 +183934,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47730] = 8, + [47809] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4241), 1, - anon_sym_DOT2, - STATE(1938), 1, + STATE(1939), 1, sym_comment, - STATE(1956), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2094), 1, - sym_path, - STATE(2219), 1, - sym_cell_path, - ACTIONS(1466), 3, + ACTIONS(1522), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1468), 33, + ACTIONS(1524), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -183968,7 +183970,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, @@ -183976,126 +183981,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47789] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4052), 1, - anon_sym_list, - ACTIONS(4054), 1, - anon_sym_oneof, - STATE(1939), 1, - sym_comment, - STATE(5071), 1, - sym__type_annotation, - ACTIONS(4050), 2, - anon_sym_table, - anon_sym_record, - STATE(5084), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4048), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [47848] = 8, + [47860] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3890), 1, - anon_sym_list, - ACTIONS(3892), 1, - anon_sym_oneof, STATE(1940), 1, sym_comment, - STATE(5316), 1, - sym__type_annotation, - ACTIONS(3888), 2, - anon_sym_table, - anon_sym_record, - STATE(2679), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3886), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [47907] = 8, + ACTIONS(1876), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1874), 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, + [47911] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4241), 1, + ACTIONS(4277), 1, anon_sym_DOT2, STATE(1941), 1, sym_comment, - STATE(1956), 1, + STATE(1953), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2094), 1, + STATE(2112), 1, sym_path, - STATE(2198), 1, + STATE(2215), 1, sym_cell_path, - ACTIONS(1903), 3, + ACTIONS(1896), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1901), 33, + ACTIONS(1894), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -184129,65 +184079,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47966] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4298), 1, - anon_sym_DOT, - ACTIONS(4300), 1, - aux_sym__immediate_decimal_token5, - STATE(1942), 1, - sym_comment, - ACTIONS(751), 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(753), 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, - [48021] = 4, + [47970] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1943), 1, + STATE(1942), 1, sym_comment, - ACTIONS(1671), 3, + ACTIONS(2415), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1669), 37, + ACTIONS(2413), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -184225,16 +184126,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [48072] = 4, + [48021] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1944), 1, + STATE(1943), 1, sym_comment, - ACTIONS(2473), 3, + ACTIONS(2415), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2471), 37, + ACTIONS(2413), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -184272,16 +184173,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [48123] = 4, + [48072] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1945), 1, + STATE(1944), 1, sym_comment, - ACTIONS(1527), 3, + ACTIONS(2491), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1529), 37, + ACTIONS(2489), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -184319,65 +184220,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [48174] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4302), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4304), 1, - aux_sym__immediate_decimal_token5, - STATE(1946), 1, - sym_comment, - ACTIONS(759), 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(761), 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, - [48229] = 4, + [48123] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1947), 1, + STATE(1945), 1, sym_comment, - ACTIONS(1541), 3, + ACTIONS(2487), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1543), 37, + ACTIONS(2485), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -184415,91 +184267,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [48280] = 27, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2986), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(4255), 1, - anon_sym_null, - ACTIONS(4267), 1, - sym_val_date, - ACTIONS(4308), 1, - anon_sym_LPAREN, - ACTIONS(4310), 1, - anon_sym_DOLLAR, - ACTIONS(4312), 1, - anon_sym_DOT_DOT, - ACTIONS(4316), 1, - anon_sym_DQUOTE, - ACTIONS(4318), 1, - anon_sym_SQUOTE, - ACTIONS(4320), 1, - anon_sym_BQUOTE, - ACTIONS(4322), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4324), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4326), 1, - aux_sym_unquoted_token1, - ACTIONS(4328), 1, - sym_raw_string_begin, - STATE(1923), 1, - sym__inter_single_quotes, - STATE(1925), 1, - sym__inter_double_quotes, - STATE(1948), 1, - sym_comment, - STATE(4122), 1, - sym__val_number_decimal, - STATE(5176), 1, - sym_val_bool, - ACTIONS(3114), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3124), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3126), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(4314), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(5348), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4306), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1945), 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, - [48376] = 6, + [48174] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4330), 1, - anon_sym_DOT2, - STATE(2094), 1, - sym_path, - STATE(1949), 2, + STATE(1946), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1490), 3, + ACTIONS(1596), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1492), 33, + ACTIONS(1598), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -184524,7 +184303,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, @@ -184532,21 +184314,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [48430] = 5, + [48225] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4289), 1, + ACTIONS(4306), 1, + anon_sym_DOT, + ACTIONS(4308), 1, aux_sym__immediate_decimal_token5, - STATE(1950), 1, + STATE(1947), 1, sym_comment, - ACTIONS(1790), 6, + ACTIONS(1812), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1788), 32, + ACTIONS(1810), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -184579,17 +184363,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48482] = 4, + [48280] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1951), 1, + ACTIONS(4310), 1, + anon_sym_DOT2, + STATE(2112), 1, + sym_path, + STATE(1948), 2, sym_comment, - ACTIONS(1527), 4, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1558), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1529), 35, + ACTIONS(1560), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -184623,16 +184411,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [48532] = 5, + [48334] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4300), 1, + ACTIONS(4313), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4315), 1, aux_sym__immediate_decimal_token5, - STATE(1952), 1, + STATE(1949), 1, sym_comment, - ACTIONS(751), 8, + ACTIONS(755), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -184640,8 +184428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(753), 30, + ACTIONS(757), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -184672,14 +184459,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [48584] = 5, + [48388] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4333), 1, + ACTIONS(4317), 1, aux_sym__immediate_decimal_token5, - STATE(1953), 1, + STATE(1950), 1, sym_comment, - ACTIONS(791), 8, + ACTIONS(775), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -184688,7 +184475,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, sym_filesize_unit, anon_sym_COLON2, - ACTIONS(793), 30, + ACTIONS(777), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -184719,64 +184506,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [48636] = 6, - ACTIONS(105), 1, + [48440] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4335), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4337), 1, + ACTIONS(4323), 1, + sym_long_flag_identifier, + ACTIONS(4325), 1, + anon_sym_EQ2, + STATE(1951), 1, + sym_comment, + STATE(2167), 1, + sym__flag_equals_value, + ACTIONS(4321), 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(4319), 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, + [48496] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4327), 1, + anon_sym_DOT, + ACTIONS(4329), 1, aux_sym__immediate_decimal_token5, - STATE(1954), 1, + STATE(1952), 1, sym_comment, - ACTIONS(759), 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(761), 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, - [48690] = 6, + ACTIONS(1812), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1810), 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, + [48550] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4277), 1, + anon_sym_DOT2, + STATE(1948), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1953), 1, + sym_comment, + STATE(2112), 1, + sym_path, + ACTIONS(1567), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1569), 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, + [48606] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4339), 1, - anon_sym_DOT, - ACTIONS(4341), 1, + ACTIONS(4300), 1, aux_sym__immediate_decimal_token5, - STATE(1955), 1, + STATE(1954), 1, sym_comment, - ACTIONS(751), 7, + ACTIONS(763), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -184784,7 +184667,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - ACTIONS(753), 30, + anon_sym_COLON2, + ACTIONS(765), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -184815,22 +184699,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [48744] = 7, + [48658] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4241), 1, - anon_sym_DOT2, - STATE(1949), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1956), 1, + STATE(1955), 1, sym_comment, - STATE(2094), 1, - sym_path, - ACTIONS(1577), 3, + ACTIONS(1574), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1579), 33, + anon_sym_DOT2, + ACTIONS(1576), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -184864,17 +184743,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [48800] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [48708] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1957), 1, + STATE(1956), 1, sym_comment, - ACTIONS(1531), 4, + ACTIONS(1490), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1533), 35, + ACTIONS(1492), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -184910,69 +184791,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [48850] = 4, - ACTIONS(3), 1, + [48758] = 27, + ACTIONS(105), 1, anon_sym_POUND, - STATE(1958), 1, - sym_comment, - ACTIONS(1535), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1537), 35, + ACTIONS(2994), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4245), 1, + anon_sym_null, + ACTIONS(4257), 1, + sym_val_date, + ACTIONS(4333), 1, + anon_sym_LPAREN, + ACTIONS(4335), 1, + anon_sym_DOLLAR, + ACTIONS(4337), 1, + anon_sym_DOT_DOT, + ACTIONS(4341), 1, + anon_sym_DQUOTE, + ACTIONS(4343), 1, + anon_sym_SQUOTE, + ACTIONS(4345), 1, + anon_sym_BQUOTE, + ACTIONS(4347), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4349), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4351), 1, + aux_sym_unquoted_token1, + ACTIONS(4353), 1, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_finally, - anon_sym_match, + STATE(1942), 1, + sym__inter_double_quotes, + STATE(1943), 1, + sym__inter_single_quotes, + STATE(1957), 1, + sym_comment, + STATE(4032), 1, + sym__val_number_decimal, + STATE(5392), 1, + sym_val_bool, + ACTIONS(3121), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + ACTIONS(3131), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3133), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + ACTIONS(4339), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5395), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4331), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1937), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1463), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [48854] = 27, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4245), 1, + anon_sym_null, + ACTIONS(4249), 1, + anon_sym_LPAREN, + ACTIONS(4251), 1, + anon_sym_DOLLAR, + ACTIONS(4253), 1, + anon_sym_DOT_DOT, + ACTIONS(4257), 1, + sym_val_date, + ACTIONS(4259), 1, anon_sym_DQUOTE, + ACTIONS(4261), 1, anon_sym_SQUOTE, + ACTIONS(4263), 1, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [48900] = 6, + ACTIONS(4265), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4267), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4269), 1, + aux_sym_unquoted_token1, + ACTIONS(4271), 1, + sym_raw_string_begin, + STATE(1893), 1, + sym__inter_double_quotes, + STATE(1894), 1, + sym__inter_single_quotes, + STATE(1958), 1, + sym_comment, + STATE(4078), 1, + sym__val_number_decimal, + STATE(5392), 1, + sym_val_bool, + ACTIONS(3121), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3131), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3133), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4255), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5115), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4247), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1895), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1457), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [48950] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4343), 1, + ACTIONS(4355), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4345), 1, + ACTIONS(4357), 1, aux_sym__immediate_decimal_token5, STATE(1959), 1, sym_comment, - ACTIONS(1776), 6, + ACTIONS(1804), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1774), 31, + ACTIONS(1802), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -185004,26 +184977,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48954] = 6, + [49004] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4347), 1, - anon_sym_DOT, - ACTIONS(4349), 1, + ACTIONS(4308), 1, aux_sym__immediate_decimal_token5, STATE(1960), 1, sym_comment, - ACTIONS(1790), 6, + ACTIONS(1812), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1788), 31, + ACTIONS(1810), 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, @@ -185052,17 +185024,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49008] = 4, + [49056] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1961), 1, sym_comment, - ACTIONS(1486), 4, + ACTIONS(1550), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1488), 35, + ACTIONS(1552), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -185098,63 +185070,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [49058] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3780), 1, - sym__entry_separator, - STATE(1962), 1, - sym_comment, - ACTIONS(3778), 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, - [49108] = 4, + [49106] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1963), 1, + STATE(1962), 1, sym_comment, - ACTIONS(1541), 4, + ACTIONS(1522), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1543), 35, + ACTIONS(1524), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -185190,17 +185116,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [49158] = 4, + [49156] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1964), 1, + STATE(1963), 1, sym_comment, - ACTIONS(1545), 4, + ACTIONS(1540), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1547), 35, + ACTIONS(1542), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -185236,90 +185162,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [49208] = 27, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(4255), 1, - anon_sym_null, - ACTIONS(4259), 1, - anon_sym_LPAREN, - ACTIONS(4261), 1, - anon_sym_DOLLAR, - ACTIONS(4263), 1, - anon_sym_DOT_DOT, - ACTIONS(4267), 1, - sym_val_date, - ACTIONS(4269), 1, - anon_sym_DQUOTE, - ACTIONS(4271), 1, - anon_sym_SQUOTE, - ACTIONS(4273), 1, - anon_sym_BQUOTE, - ACTIONS(4275), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4277), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4279), 1, - aux_sym_unquoted_token1, - ACTIONS(4281), 1, - sym_raw_string_begin, - STATE(1892), 1, - sym__inter_single_quotes, - STATE(1899), 1, - sym__inter_double_quotes, - STATE(1965), 1, - sym_comment, - STATE(4059), 1, - sym__val_number_decimal, - STATE(5176), 1, - sym_val_bool, - ACTIONS(3114), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3124), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3126), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(4265), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(5140), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4257), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1904), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1461), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [49304] = 5, + [49206] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4351), 1, + ACTIONS(4359), 1, aux_sym__immediate_decimal_token5, - STATE(1966), 1, + STATE(1964), 1, sym_comment, - ACTIONS(1868), 6, + ACTIONS(1876), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1866), 32, + ACTIONS(1874), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -185352,28 +185209,254 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49356] = 7, + [49258] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4361), 1, + anon_sym_DOT, + ACTIONS(4363), 1, + aux_sym__immediate_decimal_token5, + STATE(1965), 1, + sym_comment, + ACTIONS(763), 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(765), 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, + [49312] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3793), 1, + sym__entry_separator, + STATE(1966), 1, + sym_comment, + ACTIONS(3791), 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, + [49362] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4357), 1, - sym_long_flag_identifier, - ACTIONS(4359), 1, - anon_sym_EQ2, STATE(1967), 1, sym_comment, - STATE(2194), 1, - sym__flag_equals_value, - ACTIONS(4355), 9, + ACTIONS(1544), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1546), 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, + [49412] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4363), 1, + aux_sym__immediate_decimal_token5, + STATE(1968), 1, + sym_comment, + ACTIONS(763), 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(765), 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, + [49463] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4367), 1, + anon_sym_RBRACK, + ACTIONS(4369), 1, + sym__entry_separator, + ACTIONS(4371), 1, sym_raw_string_begin, + STATE(1969), 1, + sym_comment, + STATE(1989), 1, + aux_sym__types_body_repeat2, + ACTIONS(4365), 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, - anon_sym_DASH_DASH, + 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, - ACTIONS(4353), 27, + [49518] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4369), 1, + sym__entry_separator, + ACTIONS(4371), 1, + sym_raw_string_begin, + ACTIONS(4373), 1, + anon_sym_RBRACK, + STATE(1970), 1, + sym_comment, + STATE(1989), 1, + aux_sym__types_body_repeat2, + ACTIONS(4365), 34, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -185399,21 +185482,28 @@ static const uint16_t ts_small_parse_table[] = { 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, - [49412] = 5, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [49573] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4361), 1, - anon_sym_QMARK2, - STATE(1968), 1, + ACTIONS(4375), 1, + anon_sym_BANG, + STATE(1971), 1, sym_comment, - ACTIONS(1460), 4, + ACTIONS(1464), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1462), 33, + ACTIONS(1466), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -185447,17 +185537,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [49463] = 5, + [49624] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3761), 1, - sym_raw_string_begin, - ACTIONS(4363), 1, + ACTIONS(4369), 1, sym__entry_separator, - STATE(1969), 2, + ACTIONS(4371), 1, + sym_raw_string_begin, + ACTIONS(4377), 1, + anon_sym_RBRACK, + STATE(1972), 1, sym_comment, + STATE(1989), 1, aux_sym__types_body_repeat2, - ACTIONS(3756), 35, + ACTIONS(4365), 34, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -185485,7 +185578,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_RBRACK, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -185493,18 +185585,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [49514] = 6, + [49679] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4379), 1, + anon_sym_DOT_DOT2, + STATE(1973), 1, + sym_comment, + ACTIONS(4381), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2101), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2099), 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, + [49732] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4366), 1, + ACTIONS(4383), 1, anon_sym_RBRACK, - ACTIONS(4370), 1, + ACTIONS(4387), 1, sym__entry_separator, - STATE(1934), 1, + STATE(1928), 1, aux_sym__types_body_repeat2, - STATE(1970), 1, + STATE(1974), 1, + sym_comment, + ACTIONS(4385), 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, + [49785] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4387), 1, + sym__entry_separator, + ACTIONS(4391), 1, + anon_sym_GT2, + STATE(1928), 1, + aux_sym__types_body_repeat2, + STATE(1975), 1, + sym_comment, + ACTIONS(4389), 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, + [49838] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(1976), 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, + [49887] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4387), 1, + sym__entry_separator, + ACTIONS(4393), 1, + anon_sym_GT2, + STATE(1928), 1, + aux_sym__types_body_repeat2, + STATE(1977), 1, sym_comment, - ACTIONS(4368), 35, + ACTIONS(4389), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -185540,22 +185818,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [49567] = 6, + [49940] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4395), 1, + anon_sym_DOT_DOT2, + STATE(1978), 1, + sym_comment, + ACTIONS(4397), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2127), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2125), 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, + [49993] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2630), 1, + ACTIONS(2636), 1, anon_sym_LPAREN2, - ACTIONS(2632), 1, + ACTIONS(2638), 1, sym__unquoted_pattern, - STATE(1971), 1, + STATE(1979), 1, sym_comment, - ACTIONS(1242), 5, + ACTIONS(1246), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1258), 31, + ACTIONS(1262), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -185587,22 +185912,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49620] = 6, + [50046] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2630), 1, - anon_sym_LPAREN2, - ACTIONS(2632), 1, - sym__unquoted_pattern, - STATE(1972), 1, + STATE(1980), 1, sym_comment, - ACTIONS(1234), 5, + ACTIONS(1947), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1250), 31, + sym__unquoted_pattern, + ACTIONS(1945), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -185625,6 +185947,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, @@ -185634,142 +185957,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49673] = 27, + [50095] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3124), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4308), 1, - anon_sym_LPAREN, - ACTIONS(4310), 1, - anon_sym_DOLLAR, - ACTIONS(4312), 1, - anon_sym_DOT_DOT, - ACTIONS(4316), 1, - anon_sym_DQUOTE, - ACTIONS(4318), 1, - anon_sym_SQUOTE, - ACTIONS(4320), 1, - anon_sym_BQUOTE, - ACTIONS(4322), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4324), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4326), 1, - aux_sym_unquoted_token1, - ACTIONS(4328), 1, - sym_raw_string_begin, - ACTIONS(4374), 1, - anon_sym_null, - ACTIONS(4378), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4382), 1, - sym_val_date, - STATE(1923), 1, - sym__inter_single_quotes, - STATE(1925), 1, - sym__inter_double_quotes, - STATE(1973), 1, + ACTIONS(2720), 1, + anon_sym_LPAREN2, + ACTIONS(2722), 1, + sym__unquoted_pattern, + STATE(1981), 1, sym_comment, - STATE(4122), 1, - sym__val_number_decimal, - STATE(5176), 1, - sym_val_bool, - ACTIONS(4314), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4372), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4380), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(5348), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4376), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1945), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1467), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [49768] = 7, - ACTIONS(105), 1, + ACTIONS(1610), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1736), 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, + [50148] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4386), 1, - anon_sym_RBRACK, - ACTIONS(4388), 1, - sym__entry_separator, - ACTIONS(4390), 1, - sym_raw_string_begin, - STATE(1969), 1, - aux_sym__types_body_repeat2, - STATE(1974), 1, + ACTIONS(2636), 1, + anon_sym_LPAREN2, + ACTIONS(2638), 1, + sym__unquoted_pattern, + STATE(1982), 1, sym_comment, - ACTIONS(4384), 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(1238), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1254), 31, 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, - [49823] = 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, + [50201] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(2235), 1, + anon_sym_EQ_GT, + ACTIONS(4399), 1, anon_sym_DOT_DOT2, - STATE(1975), 1, + STATE(1983), 1, sym_comment, - ACTIONS(4394), 2, + ACTIONS(4401), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1616), 5, + ACTIONS(2237), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1738), 30, + ACTIONS(2233), 29, anon_sym_in, anon_sym_DASH2, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -185797,14 +186099,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49876] = 5, + [50256] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4341), 1, - aux_sym__immediate_decimal_token5, - STATE(1976), 1, + STATE(1984), 1, sym_comment, - ACTIONS(751), 7, + ACTIONS(755), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -185812,7 +186112,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - ACTIONS(753), 30, + anon_sym_COLON2, + ACTIONS(757), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -185843,119 +186144,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [49927] = 7, + [50305] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4388), 1, + ACTIONS(4387), 1, sym__entry_separator, - ACTIONS(4390), 1, - sym_raw_string_begin, - ACTIONS(4396), 1, - anon_sym_RBRACK, - STATE(1969), 1, + ACTIONS(4403), 1, + anon_sym_GT2, + STATE(1928), 1, aux_sym__types_body_repeat2, - STATE(1977), 1, + STATE(1985), 1, sym_comment, - ACTIONS(4384), 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, - [49982] = 6, + ACTIONS(4389), 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, + [50358] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4402), 1, - anon_sym_DASH_DASH, - STATE(2173), 1, - sym_long_flag, - STATE(1978), 2, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(1986), 1, sym_comment, - aux_sym_decl_def_repeat1, - ACTIONS(4398), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(2610), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2608), 31, anon_sym_in, - ACTIONS(4400), 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, - [50035] = 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, + [50411] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4349), 1, - aux_sym__immediate_decimal_token5, - STATE(1979), 1, + STATE(1987), 1, sym_comment, - ACTIONS(1790), 6, + ACTIONS(1876), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1788), 31, + ACTIONS(1874), 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, @@ -185984,12 +186283,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50086] = 4, + [50460] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(1980), 1, + ACTIONS(4387), 1, + sym__entry_separator, + ACTIONS(4405), 1, + anon_sym_RBRACK, + STATE(1928), 1, + aux_sym__types_body_repeat2, + STATE(1988), 1, + sym_comment, + ACTIONS(4385), 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, + [50513] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3746), 1, + sym_raw_string_begin, + ACTIONS(4407), 1, + sym__entry_separator, + STATE(1989), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(3741), 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_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, + [50564] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(1990), 1, sym_comment, - ACTIONS(791), 8, + ACTIONS(801), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -185998,7 +186390,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, sym_filesize_unit, anon_sym_COLON2, - ACTIONS(793), 30, + ACTIONS(803), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -186029,18 +186421,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [50135] = 6, + [50613] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4370), 1, + ACTIONS(4387), 1, sym__entry_separator, - ACTIONS(4405), 1, + ACTIONS(4410), 1, anon_sym_RBRACK, - STATE(1934), 1, + STATE(1928), 1, aux_sym__types_body_repeat2, - STATE(1981), 1, + STATE(1991), 1, sym_comment, - ACTIONS(4368), 35, + ACTIONS(4385), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -186076,27 +186468,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [50188] = 7, + [50666] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4369), 1, + sym__entry_separator, + ACTIONS(4371), 1, + sym_raw_string_begin, + ACTIONS(4412), 1, + anon_sym_RBRACK, + STATE(1989), 1, + aux_sym__types_body_repeat2, + STATE(1992), 1, + sym_comment, + ACTIONS(4365), 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, + [50721] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2265), 1, - anon_sym_EQ_GT, - ACTIONS(4392), 1, - anon_sym_DOT_DOT2, - STATE(1982), 1, + ACTIONS(4414), 1, + aux_sym__immediate_decimal_token5, + STATE(1993), 1, sym_comment, - ACTIONS(4394), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2148), 5, + ACTIONS(1876), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2146), 29, + sym__unquoted_pattern, + ACTIONS(1874), 31, anon_sym_in, anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -186115,6 +186552,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, @@ -186124,12 +186562,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50243] = 4, + [50772] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(1983), 1, + ACTIONS(4416), 1, + aux_sym__immediate_decimal_token5, + STATE(1994), 1, sym_comment, - ACTIONS(759), 8, + ACTIONS(775), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -186137,8 +186577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(761), 30, + ACTIONS(777), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -186169,26 +186608,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [50292] = 6, + [50823] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4407), 1, - anon_sym_DOT_DOT2, - STATE(1984), 1, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, + sym__unquoted_pattern, + STATE(1995), 1, sym_comment, - ACTIONS(4409), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2106), 5, + ACTIONS(2642), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2104), 30, + ACTIONS(2640), 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, @@ -186216,26 +186655,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50345] = 6, + [50876] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4411), 1, - anon_sym_DOT_DOT2, - STATE(1985), 1, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, + sym__unquoted_pattern, + STATE(1996), 1, sym_comment, - ACTIONS(4413), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2116), 5, + ACTIONS(2101), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2114), 30, + ACTIONS(2099), 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, @@ -186263,22 +186702,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50398] = 6, + [50929] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(2108), 1, - anon_sym_LPAREN2, - STATE(1986), 1, + STATE(1997), 1, sym_comment, - ACTIONS(2106), 5, + ACTIONS(2598), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2104), 31, + sym__unquoted_pattern, + ACTIONS(2596), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -186301,6 +186737,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, @@ -186310,118 +186747,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50451] = 6, - ACTIONS(105), 1, + [50978] = 27, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4370), 1, - sym__entry_separator, - ACTIONS(4417), 1, - anon_sym_GT2, - STATE(1934), 1, - aux_sym__types_body_repeat2, - STATE(1987), 1, + ACTIONS(3131), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4333), 1, + anon_sym_LPAREN, + ACTIONS(4335), 1, + anon_sym_DOLLAR, + ACTIONS(4337), 1, + anon_sym_DOT_DOT, + ACTIONS(4341), 1, + anon_sym_DQUOTE, + ACTIONS(4343), 1, + anon_sym_SQUOTE, + ACTIONS(4345), 1, + anon_sym_BQUOTE, + ACTIONS(4347), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4349), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4351), 1, + aux_sym_unquoted_token1, + ACTIONS(4353), 1, + sym_raw_string_begin, + ACTIONS(4420), 1, + anon_sym_null, + ACTIONS(4424), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4428), 1, + sym_val_date, + STATE(1942), 1, + sym__inter_double_quotes, + STATE(1943), 1, + sym__inter_single_quotes, + STATE(1998), 1, sym_comment, - ACTIONS(4415), 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, - [50504] = 6, - ACTIONS(105), 1, + STATE(4032), 1, + sym__val_number_decimal, + STATE(5392), 1, + sym_val_bool, + ACTIONS(4339), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4418), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4426), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5395), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4422), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1937), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1467), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [51073] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4370), 1, - sym__entry_separator, - ACTIONS(4419), 1, - anon_sym_RBRACK, - STATE(1934), 1, - aux_sym__types_body_repeat2, - STATE(1988), 1, + ACTIONS(4375), 1, + anon_sym_QMARK2, + STATE(1999), 1, sym_comment, - ACTIONS(4368), 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, - [50557] = 5, + ACTIONS(1464), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1466), 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, + [51124] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4421), 1, - aux_sym__immediate_decimal_token5, - STATE(1989), 1, + ACTIONS(1697), 1, + sym__unquoted_pattern, + ACTIONS(2710), 1, + anon_sym_LPAREN2, + STATE(2000), 1, sym_comment, - ACTIONS(1868), 6, + ACTIONS(2708), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1866), 31, + ACTIONS(2706), 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, @@ -186440,7 +186899,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, @@ -186450,74 +186908,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50608] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4388), 1, - sym__entry_separator, - ACTIONS(4390), 1, - sym_raw_string_begin, - ACTIONS(4423), 1, - anon_sym_RBRACK, - STATE(1969), 1, - aux_sym__types_body_repeat2, - STATE(1990), 1, - sym_comment, - ACTIONS(4384), 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, - [50663] = 7, - ACTIONS(105), 1, + [51177] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4388), 1, - sym__entry_separator, - ACTIONS(4390), 1, - sym_raw_string_begin, - ACTIONS(4425), 1, - anon_sym_RBRACK, - STATE(1969), 1, - aux_sym__types_body_repeat2, - STATE(1991), 1, + ACTIONS(4325), 1, + anon_sym_EQ2, + STATE(2001), 1, sym_comment, - ACTIONS(4384), 34, + STATE(2219), 1, + sym__flag_equals_value, + ACTIONS(4430), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(4432), 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, @@ -186532,13 +186941,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, @@ -186546,73 +186955,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [50718] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4370), 1, - sym__entry_separator, - ACTIONS(4427), 1, - anon_sym_RBRACK, - STATE(1934), 1, - aux_sym__types_body_repeat2, - STATE(1992), 1, - sym_comment, - ACTIONS(4368), 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, - [50771] = 6, + [51230] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4429), 1, - anon_sym_DOT_DOT2, - STATE(1993), 1, + STATE(2002), 1, sym_comment, - ACTIONS(4431), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2156), 5, + ACTIONS(1804), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2154), 30, + sym__unquoted_pattern, + ACTIONS(1802), 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, @@ -186631,6 +186990,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, @@ -186640,23 +187000,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50824] = 6, + [51279] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(4399), 1, anon_sym_DOT_DOT2, - STATE(1994), 1, + STATE(2003), 1, sym_comment, - ACTIONS(4435), 2, + ACTIONS(4401), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2168), 5, + ACTIONS(2237), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2166), 30, + ACTIONS(2233), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -186687,23 +187047,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50877] = 6, + [51332] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4387), 1, + sym__entry_separator, + ACTIONS(4434), 1, + anon_sym_RBRACK, + STATE(1928), 1, + aux_sym__types_body_repeat2, + STATE(2004), 1, + sym_comment, + ACTIONS(4385), 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, + [51385] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4437), 1, + ACTIONS(4436), 1, anon_sym_DOT_DOT2, - STATE(1995), 1, + STATE(2005), 1, sym_comment, - ACTIONS(4439), 2, + ACTIONS(4438), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2176), 5, + ACTIONS(2253), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2174), 30, + ACTIONS(2251), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -186734,23 +187141,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50930] = 6, + [51438] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4441), 1, + ACTIONS(4399), 1, anon_sym_DOT_DOT2, - STATE(1996), 1, + STATE(2006), 1, sym_comment, - ACTIONS(4443), 2, + ACTIONS(4401), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2188), 5, + ACTIONS(1610), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2186), 30, + ACTIONS(1736), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -186781,26 +187188,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50983] = 6, + [51491] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2608), 1, - anon_sym_LPAREN2, - ACTIONS(2610), 1, - sym__unquoted_pattern, - STATE(1997), 1, + ACTIONS(4329), 1, + aux_sym__immediate_decimal_token5, + STATE(2007), 1, sym_comment, - ACTIONS(2606), 5, + ACTIONS(1812), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2604), 31, + sym__unquoted_pattern, + ACTIONS(1810), 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, @@ -186819,6 +187224,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, @@ -186828,26 +187234,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51036] = 6, + [51542] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2672), 1, - anon_sym_LPAREN2, - ACTIONS(2674), 1, - sym__unquoted_pattern, - STATE(1998), 1, + ACTIONS(4440), 1, + anon_sym_DOT_DOT2, + STATE(2008), 1, sym_comment, - ACTIONS(1616), 5, + ACTIONS(4442), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2316), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1738), 31, + ACTIONS(2314), 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, @@ -186875,15 +187281,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51089] = 4, + [51595] = 27, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3131), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4249), 1, + anon_sym_LPAREN, + ACTIONS(4251), 1, + anon_sym_DOLLAR, + ACTIONS(4253), 1, + anon_sym_DOT_DOT, + ACTIONS(4259), 1, + anon_sym_DQUOTE, + ACTIONS(4261), 1, + anon_sym_SQUOTE, + ACTIONS(4263), 1, + anon_sym_BQUOTE, + ACTIONS(4265), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4267), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4269), 1, + aux_sym_unquoted_token1, + ACTIONS(4271), 1, + sym_raw_string_begin, + ACTIONS(4420), 1, + anon_sym_null, + ACTIONS(4424), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4428), 1, + sym_val_date, + STATE(1893), 1, + sym__inter_double_quotes, + STATE(1894), 1, + sym__inter_single_quotes, + STATE(2009), 1, + sym_comment, + STATE(4078), 1, + sym__val_number_decimal, + STATE(5392), 1, + sym_val_bool, + ACTIONS(4255), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4418), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4426), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5115), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4444), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1895), 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, + [51690] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4445), 1, + ACTIONS(4446), 1, sym__newline, - STATE(1999), 2, + STATE(2010), 2, sym_comment, aux_sym__types_body_repeat1, - ACTIONS(3784), 36, + ACTIONS(3786), 36, anon_sym_LBRACK, anon_sym_any, anon_sym_binary, @@ -186920,164 +187394,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [51138] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(811), 1, - anon_sym_COLON2, - ACTIONS(817), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4448), 1, - sym_filesize_unit, - ACTIONS(4450), 1, - sym_duration_unit, - STATE(2000), 1, - sym_comment, - ACTIONS(815), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(813), 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, - [51195] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4452), 1, - aux_sym__immediate_decimal_token5, - STATE(2001), 1, - sym_comment, - ACTIONS(791), 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(793), 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, - [51246] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4370), 1, - sym__entry_separator, - ACTIONS(4454), 1, - anon_sym_GT2, - STATE(1934), 1, - aux_sym__types_body_repeat2, - STATE(2002), 1, - sym_comment, - ACTIONS(4415), 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, - [51299] = 6, + [51739] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2684), 1, + ACTIONS(2716), 1, anon_sym_LPAREN2, - ACTIONS(2686), 1, + ACTIONS(2718), 1, sym__unquoted_pattern, - STATE(2003), 1, + STATE(2011), 1, sym_comment, - ACTIONS(2678), 5, + ACTIONS(2714), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2676), 31, + ACTIONS(2712), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -187109,18 +187441,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51352] = 6, + [51792] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4370), 1, + ACTIONS(4387), 1, sym__entry_separator, - ACTIONS(4456), 1, + ACTIONS(4449), 1, anon_sym_GT2, - STATE(1934), 1, + STATE(1928), 1, aux_sym__types_body_repeat2, - STATE(2004), 1, + STATE(2012), 1, sym_comment, - ACTIONS(4415), 35, + ACTIONS(4389), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -187156,19 +187488,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [51405] = 4, + [51845] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(811), 1, + anon_sym_COLON2, + ACTIONS(817), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4451), 1, + sym_filesize_unit, + ACTIONS(4453), 1, + sym_duration_unit, + STATE(2013), 1, + sym_comment, + ACTIONS(815), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(813), 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, + [51902] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2005), 1, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(2129), 1, + anon_sym_LPAREN2, + STATE(2014), 1, sym_comment, - ACTIONS(1776), 6, + ACTIONS(2127), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1774), 32, + ACTIONS(2125), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -187191,7 +187575,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, @@ -187201,70 +187584,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51454] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4370), 1, - sym__entry_separator, - ACTIONS(4458), 1, - anon_sym_GT2, - STATE(1934), 1, - aux_sym__types_body_repeat2, - STATE(2006), 1, - sym_comment, - ACTIONS(4415), 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, - [51507] = 4, + [51955] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2007), 1, + ACTIONS(4455), 1, + anon_sym_DOT_DOT2, + STATE(2015), 1, sym_comment, - ACTIONS(2578), 6, + ACTIONS(4457), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2148), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2576), 32, + ACTIONS(2146), 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, @@ -187283,7 +187622,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, @@ -187293,23 +187631,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51556] = 4, + [52008] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2008), 1, + ACTIONS(4459), 1, + anon_sym_DOT_DOT2, + STATE(2016), 1, sym_comment, - ACTIONS(1868), 6, + ACTIONS(4461), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2273), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1866), 32, + ACTIONS(2271), 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, @@ -187328,7 +187669,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, @@ -187338,20 +187678,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51605] = 6, + [52061] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4359), 1, - anon_sym_EQ2, - STATE(2009), 1, + ACTIONS(4467), 1, + anon_sym_DASH_DASH, + STATE(2168), 1, + sym_long_flag, + STATE(2017), 2, sym_comment, - STATE(2196), 1, - sym__flag_equals_value, - ACTIONS(4460), 3, + aux_sym_decl_def_repeat1, + ACTIONS(4463), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4462), 33, + ACTIONS(4465), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -187377,7 +187718,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, @@ -187385,24 +187725,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [51658] = 6, + [52114] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - sym__unquoted_pattern, - ACTIONS(2718), 1, - anon_sym_LPAREN2, - STATE(2010), 1, + ACTIONS(2989), 1, + sym__newline, + STATE(2018), 1, sym_comment, - ACTIONS(2662), 5, - anon_sym_GT2, + STATE(2027), 1, + aux_sym__repeat_newline, + ACTIONS(4470), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(4472), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4474), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2796), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2660), 31, + ACTIONS(2794), 26, anon_sym_in, - sym__newline, anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, @@ -187423,75 +187769,32 @@ 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, - [51711] = 6, + [52172] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, - anon_sym_DOT_DOT2, - STATE(2011), 1, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2019), 1, sym_comment, - ACTIONS(4394), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2148), 5, - anon_sym_GT2, + ACTIONS(4476), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2146), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [51764] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2012), 1, - sym_comment, - ACTIONS(1923), 6, + ACTIONS(2850), 3, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1921), 32, + ACTIONS(2848), 27, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -187514,32 +187817,117 @@ 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, - [51813] = 6, + [52228] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4484), 1, + anon_sym_RBRACK, + ACTIONS(4486), 1, + sym__entry_separator, + ACTIONS(4488), 1, + sym_raw_string_begin, + STATE(2020), 1, + sym_comment, + STATE(2021), 1, + aux_sym__types_body_repeat2, + ACTIONS(4482), 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, + [52282] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3746), 1, + sym_raw_string_begin, + ACTIONS(4490), 1, + sym__entry_separator, + STATE(2021), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(3741), 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, + [52332] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, + ACTIONS(1840), 1, sym__unquoted_pattern, - STATE(2013), 1, + STATE(2022), 1, sym_comment, - ACTIONS(2698), 5, + ACTIONS(811), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2696), 31, + ACTIONS(910), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -187571,12 +187959,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51866] = 4, + [52382] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4493), 1, + sym__newline, + STATE(2023), 2, + sym_comment, + aux_sym__types_body_repeat1, + ACTIONS(3784), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(3786), 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, + [52432] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2014), 1, + STATE(2024), 1, sym_comment, - ACTIONS(803), 8, + ACTIONS(755), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -187584,8 +188017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(805), 30, + ACTIONS(757), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -187616,134 +188048,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [51915] = 27, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3124), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4259), 1, - anon_sym_LPAREN, - ACTIONS(4261), 1, - anon_sym_DOLLAR, - ACTIONS(4263), 1, - anon_sym_DOT_DOT, - ACTIONS(4269), 1, - anon_sym_DQUOTE, - ACTIONS(4271), 1, - anon_sym_SQUOTE, - ACTIONS(4273), 1, - anon_sym_BQUOTE, - ACTIONS(4275), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4277), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4279), 1, - aux_sym_unquoted_token1, - ACTIONS(4281), 1, - sym_raw_string_begin, - ACTIONS(4374), 1, - anon_sym_null, - ACTIONS(4378), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4382), 1, - sym_val_date, - STATE(1892), 1, - sym__inter_single_quotes, - STATE(1899), 1, - sym__inter_double_quotes, - STATE(2015), 1, - sym_comment, - STATE(4059), 1, - sym__val_number_decimal, - STATE(5176), 1, - sym_val_bool, - ACTIONS(4265), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4372), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4380), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(5140), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4464), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1904), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1454), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [52010] = 6, + [52480] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, + ACTIONS(2722), 1, sym__unquoted_pattern, - STATE(2016), 1, - sym_comment, - ACTIONS(2116), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2114), 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, - [52063] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4361), 1, - anon_sym_BANG, - STATE(2017), 1, + STATE(2025), 1, sym_comment, - ACTIONS(1460), 4, + ACTIONS(1610), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1462), 33, + ACTIONS(1736), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -187777,32 +188093,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [52114] = 10, + [52530] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(904), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4496), 1, + sym_filesize_unit, + ACTIONS(4498), 1, + sym_duration_unit, + STATE(2026), 1, + sym_comment, + 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, + [52584] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, - anon_sym_DASH2, - ACTIONS(4474), 1, - anon_sym_PLUS2, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2018), 1, + STATE(2027), 1, sym_comment, - ACTIONS(2790), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4468), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2788), 26, + ACTIONS(2846), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2844), 27, anon_sym_in, sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -187827,33 +188188,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52174] = 11, + [52640] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2878), 1, + ACTIONS(2876), 1, sym__newline, - ACTIONS(4476), 1, - anon_sym_DASH2, - ACTIONS(4484), 1, - anon_sym_PLUS2, - STATE(2018), 1, - aux_sym__repeat_newline, - STATE(2019), 1, + STATE(2028), 1, sym_comment, - ACTIONS(2730), 2, + STATE(2052), 1, + aux_sym__repeat_newline, + ACTIONS(4472), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2842), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4478), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4480), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2728), 25, + anon_sym_PLUS2, + ACTIONS(2840), 28, anon_sym_in, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -187873,114 +188228,61 @@ 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, - [52236] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2878), 1, - sym__newline, - ACTIONS(4476), 1, - anon_sym_DASH2, - ACTIONS(4484), 1, - anon_sym_PLUS2, - STATE(2020), 1, - sym_comment, - STATE(2054), 1, - aux_sym__repeat_newline, - ACTIONS(4478), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4480), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4490), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4492), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2728), 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(4486), 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, - [52306] = 16, + [52694] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2878), 1, + ACTIONS(2989), 1, sym__newline, - ACTIONS(4476), 1, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4484), 1, + ACTIONS(4510), 1, anon_sym_PLUS2, - ACTIONS(4496), 1, + ACTIONS(4514), 1, anon_sym_bit_DASHand2, - STATE(2021), 1, + STATE(2029), 1, sym_comment, - STATE(2056), 1, + STATE(2097), 1, aux_sym__repeat_newline, - ACTIONS(4478), 2, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4502), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4512), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4490), 4, + ACTIONS(4506), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4492), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2728), 6, + ACTIONS(2794), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4486), 8, + ACTIONS(4500), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187989,80 +188291,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52378] = 17, + [52766] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2878), 1, - sym__newline, - ACTIONS(4476), 1, - anon_sym_DASH2, - ACTIONS(4484), 1, - anon_sym_PLUS2, - ACTIONS(4496), 1, - anon_sym_bit_DASHand2, - ACTIONS(4498), 1, - anon_sym_bit_DASHxor2, - STATE(2022), 1, + STATE(2030), 1, sym_comment, - STATE(2058), 1, + ACTIONS(2660), 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, + [52812] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(522), 1, aux_sym__repeat_newline, + STATE(2031), 1, + sym_comment, ACTIONS(4478), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4480), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4490), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4492), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2728), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4486), 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, - [52452] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2023), 1, - sym_comment, - ACTIONS(1234), 5, + ACTIONS(2846), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1250), 32, + ACTIONS(2844), 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, @@ -188081,8 +188373,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, @@ -188090,44 +188380,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52500] = 12, + [52864] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4516), 1, + sym__newline, + ACTIONS(4520), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_DOT_DOT, + STATE(2032), 1, + sym_comment, + ACTIONS(4523), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2658), 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(2660), 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, + [52920] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(2876), 1, + sym__newline, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4474), 1, + ACTIONS(4510), 1, anon_sym_PLUS2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2024), 1, + ACTIONS(4514), 1, + anon_sym_bit_DASHand2, + ACTIONS(4528), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4530), 1, + anon_sym_bit_DASHor2, + STATE(2033), 1, sym_comment, - ACTIONS(4468), 2, + STATE(2051), 1, + aux_sym__repeat_newline, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, + ACTIONS(4502), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4504), 2, + ACTIONS(4512), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4502), 4, + ACTIONS(2840), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4506), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2720), 20, + ACTIONS(4508), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4500), 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, @@ -188135,46 +188486,56 @@ 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, - [52564] = 11, + [52996] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(4536), 1, anon_sym_DASH2, - ACTIONS(4474), 1, + ACTIONS(4542), 1, anon_sym_PLUS2, - STATE(501), 1, + ACTIONS(4546), 1, + anon_sym_bit_DASHand2, + ACTIONS(4548), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4550), 1, + anon_sym_bit_DASHor2, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2025), 1, + STATE(2034), 1, sym_comment, - ACTIONS(2722), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4468), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4534), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4544), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 24, - anon_sym_in, + ACTIONS(4538), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4540), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2844), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(4532), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -188182,89 +188543,58 @@ 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, + [53070] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2876), 1, + sym__newline, + ACTIONS(4504), 1, + anon_sym_DASH2, + ACTIONS(4510), 1, + anon_sym_PLUS2, + ACTIONS(4514), 1, anon_sym_bit_DASHand2, + ACTIONS(4528), 1, anon_sym_bit_DASHxor2, + ACTIONS(4530), 1, anon_sym_bit_DASHor2, - [52626] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2026), 1, + ACTIONS(4552), 1, + anon_sym_and2, + STATE(2035), 1, sym_comment, - ACTIONS(4468), 2, + STATE(2103), 1, + aux_sym__repeat_newline, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2722), 3, + ACTIONS(4502), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2720), 27, - anon_sym_in, - sym__newline, - anon_sym_DASH2, + ACTIONS(4512), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2840), 3, 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(4506), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4508), 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, - [52682] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2027), 1, - sym_comment, - ACTIONS(4470), 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, - ACTIONS(2720), 29, + ACTIONS(4500), 8, 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, @@ -188272,70 +188602,56 @@ 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, - [52734] = 17, + [53148] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(4536), 1, anon_sym_DASH2, - ACTIONS(4474), 1, + ACTIONS(4542), 1, anon_sym_PLUS2, - ACTIONS(4510), 1, + ACTIONS(4546), 1, anon_sym_bit_DASHand2, - ACTIONS(4512), 1, + ACTIONS(4548), 1, anon_sym_bit_DASHxor2, - ACTIONS(4514), 1, + ACTIONS(4550), 1, anon_sym_bit_DASHor2, - STATE(501), 1, + ACTIONS(4554), 1, + anon_sym_and2, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2028), 1, + STATE(2036), 1, sym_comment, - ACTIONS(4468), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, + ACTIONS(4534), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4504), 2, + ACTIONS(4544), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4502), 4, + ACTIONS(2844), 4, + sym__newline, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4538), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4540), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4506), 8, + ACTIONS(4532), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188344,46 +188660,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52808] = 18, + [53224] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4474), 1, - anon_sym_PLUS2, ACTIONS(4510), 1, + anon_sym_PLUS2, + ACTIONS(4514), 1, anon_sym_bit_DASHand2, - ACTIONS(4512), 1, + ACTIONS(4528), 1, anon_sym_bit_DASHxor2, - ACTIONS(4514), 1, + ACTIONS(4530), 1, anon_sym_bit_DASHor2, - ACTIONS(4516), 1, + ACTIONS(4552), 1, anon_sym_and2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2029), 1, + ACTIONS(4556), 1, + anon_sym_xor2, + STATE(2037), 1, sym_comment, - ACTIONS(4468), 2, + STATE(2150), 1, + aux_sym__repeat_newline, + ACTIONS(2840), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, + ACTIONS(4502), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4504), 2, + ACTIONS(4512), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 4, - sym__newline, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4502), 4, + ACTIONS(4506), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -188393,7 +188711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4506), 8, + ACTIONS(4500), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188402,47 +188720,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52884] = 19, + [53304] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(2989), 1, + sym__newline, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4474), 1, - anon_sym_PLUS2, ACTIONS(4510), 1, + anon_sym_PLUS2, + ACTIONS(4514), 1, anon_sym_bit_DASHand2, - ACTIONS(4512), 1, + ACTIONS(4528), 1, anon_sym_bit_DASHxor2, - ACTIONS(4514), 1, + ACTIONS(4530), 1, anon_sym_bit_DASHor2, - ACTIONS(4516), 1, - anon_sym_and2, - ACTIONS(4518), 1, - anon_sym_xor2, - STATE(501), 1, + STATE(2034), 1, aux_sym__repeat_newline, - STATE(2030), 1, + STATE(2038), 1, sym_comment, - ACTIONS(4468), 2, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, + ACTIONS(4502), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4504), 2, + ACTIONS(4512), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 3, - sym__newline, + ACTIONS(2794), 4, anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - ACTIONS(4502), 4, + ACTIONS(4506), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -188452,7 +188769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4506), 8, + ACTIONS(4500), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188461,38 +188778,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52962] = 13, + [53380] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(4536), 1, anon_sym_DASH2, - ACTIONS(4474), 1, + ACTIONS(4542), 1, anon_sym_PLUS2, - STATE(501), 1, + ACTIONS(4546), 1, + anon_sym_bit_DASHand2, + ACTIONS(4548), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4550), 1, + anon_sym_bit_DASHor2, + ACTIONS(4554), 1, + anon_sym_and2, + ACTIONS(4558), 1, + anon_sym_xor2, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2031), 1, + STATE(2039), 1, sym_comment, - ACTIONS(4468), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, + ACTIONS(4534), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4504), 2, + ACTIONS(4544), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4502), 4, + ACTIONS(2844), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4538), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4506), 8, + ACTIONS(4540), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4532), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188501,53 +188837,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 12, - 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, - [53028] = 14, + [53458] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2878), 1, + ACTIONS(2876), 1, sym__newline, - ACTIONS(4476), 1, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4484), 1, + ACTIONS(4510), 1, anon_sym_PLUS2, - STATE(2032), 1, + STATE(2040), 1, sym_comment, - STATE(2051), 1, + STATE(2152), 1, aux_sym__repeat_newline, - ACTIONS(4478), 2, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4502), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4512), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4490), 4, + ACTIONS(4506), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4486), 8, + ACTIONS(4500), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188556,7 +188879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 11, + ACTIONS(2840), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -188568,52 +188891,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53096] = 14, + [53526] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(4536), 1, anon_sym_DASH2, - ACTIONS(4474), 1, + ACTIONS(4542), 1, anon_sym_PLUS2, - STATE(501), 1, + ACTIONS(4546), 1, + anon_sym_bit_DASHand2, + ACTIONS(4548), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4550), 1, + anon_sym_bit_DASHor2, + ACTIONS(4554), 1, + anon_sym_and2, + ACTIONS(4558), 1, + anon_sym_xor2, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2033), 1, + STATE(2041), 1, sym_comment, - ACTIONS(4468), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, + ACTIONS(4534), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4504), 2, + ACTIONS(4544), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4502), 4, + ACTIONS(2786), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4538), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4540), 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(4506), 8, + ACTIONS(4532), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188622,53 +188950,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53164] = 15, + [53604] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4564), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4566), 1, + sym_filesize_unit, + ACTIONS(4568), 1, + sym_duration_unit, + STATE(2042), 1, + sym_comment, + ACTIONS(4562), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4560), 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, + [53658] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4570), 1, + sym__newline, + STATE(2043), 1, + sym_comment, + ACTIONS(4523), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2658), 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(2660), 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, + [53710] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(4536), 1, anon_sym_DASH2, - ACTIONS(4474), 1, + ACTIONS(4542), 1, anon_sym_PLUS2, - ACTIONS(4510), 1, - anon_sym_bit_DASHand2, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2034), 1, + STATE(2044), 1, sym_comment, - ACTIONS(4468), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, + ACTIONS(4534), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4504), 2, + ACTIONS(4544), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4502), 4, + ACTIONS(4538), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2720), 7, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4506), 8, + ACTIONS(4532), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188677,37 +189083,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53234] = 16, + ACTIONS(2844), 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, + [53776] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2045), 1, + sym_comment, + ACTIONS(3793), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3791), 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_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, + [53824] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(2989), 1, + sym__newline, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4474), 1, - anon_sym_PLUS2, ACTIONS(4510), 1, - anon_sym_bit_DASHand2, - ACTIONS(4512), 1, - anon_sym_bit_DASHxor2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2035), 1, + anon_sym_PLUS2, + STATE(2046), 1, sym_comment, - ACTIONS(4468), 2, + STATE(2087), 1, + aux_sym__repeat_newline, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, + ACTIONS(4502), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4504), 2, + ACTIONS(4512), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4502), 4, + ACTIONS(4506), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -188717,14 +189178,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 6, - sym__newline, + ACTIONS(2794), 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(4506), 8, + ACTIONS(4500), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188733,45 +189195,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53306] = 13, + [53894] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2913), 1, + ACTIONS(2986), 1, sym__newline, - ACTIONS(4476), 1, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4484), 1, + ACTIONS(4510), 1, anon_sym_PLUS2, - STATE(2036), 1, + STATE(2047), 1, sym_comment, - STATE(2059), 1, + STATE(2153), 1, aux_sym__repeat_newline, - ACTIONS(4478), 2, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4502), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4512), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4490), 4, + ACTIONS(4506), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2782), 19, + ACTIONS(4500), 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, @@ -188779,58 +189237,11 @@ 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, - [53372] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4466), 1, - anon_sym_DASH2, - ACTIONS(4474), 1, - anon_sym_PLUS2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2037), 1, - sym_comment, - ACTIONS(4468), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4470), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4504), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4502), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2788), 20, - anon_sym_in, - sym__newline, + ACTIONS(2762), 11, 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, @@ -188838,37 +189249,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53436] = 12, + [53962] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2913), 1, - sym__newline, - ACTIONS(4476), 1, - anon_sym_DASH2, - ACTIONS(4484), 1, - anon_sym_PLUS2, - STATE(2038), 1, + STATE(2048), 1, sym_comment, - STATE(2060), 1, - aux_sym__repeat_newline, - ACTIONS(2784), 2, + ACTIONS(1238), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4478), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4480), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4494), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2782), 23, + anon_sym_PLUS2, + ACTIONS(1254), 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, @@ -188887,42 +189284,48 @@ 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, - [53500] = 11, + [54010] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(4536), 1, anon_sym_DASH2, - ACTIONS(4474), 1, + ACTIONS(4542), 1, anon_sym_PLUS2, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2039), 1, + STATE(2049), 1, sym_comment, - ACTIONS(2790), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4468), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4534), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4544), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2788), 24, + ACTIONS(4538), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4532), 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, @@ -188930,10 +189333,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_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + ACTIONS(2786), 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, @@ -188941,31 +189346,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53562] = 9, + [54076] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2913), 1, + ACTIONS(2986), 1, sym__newline, - STATE(2040), 1, + ACTIONS(4504), 1, + anon_sym_DASH2, + ACTIONS(4510), 1, + anon_sym_PLUS2, + STATE(2050), 1, sym_comment, - STATE(2061), 1, + STATE(2156), 1, aux_sym__repeat_newline, - ACTIONS(4478), 2, + ACTIONS(2764), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2784), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2782), 26, + ACTIONS(2762), 25, anon_sym_in, - anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -188990,34 +189397,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53620] = 8, + [54138] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(501), 1, + ACTIONS(4536), 1, + anon_sym_DASH2, + ACTIONS(4542), 1, + anon_sym_PLUS2, + ACTIONS(4546), 1, + anon_sym_bit_DASHand2, + ACTIONS(4548), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4550), 1, + anon_sym_bit_DASHor2, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2041), 1, + STATE(2051), 1, sym_comment, - ACTIONS(4468), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2790), 3, + ACTIONS(4534), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2788), 27, - anon_sym_in, + ACTIONS(4544), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4538), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4540), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2782), 5, sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(4532), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -189025,29 +189454,14 @@ 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, - [53676] = 7, + [54212] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2913), 1, - sym__newline, - STATE(2042), 1, - sym_comment, - STATE(2062), 1, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(4480), 2, + STATE(2052), 1, + sym_comment, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, ACTIONS(2784), 5, @@ -189056,8 +189470,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2782), 28, + ACTIONS(2782), 29, anon_sym_in, + sym__newline, anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, @@ -189085,26 +189500,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53730] = 6, + [54264] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(501), 1, + ACTIONS(4536), 1, + anon_sym_DASH2, + ACTIONS(4542), 1, + anon_sym_PLUS2, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2043), 1, + STATE(2053), 1, sym_comment, - ACTIONS(4470), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2790), 5, + ACTIONS(2788), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4476), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2788), 29, + ACTIONS(4478), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4480), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2786), 26, anon_sym_in, sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -189124,121 +189545,90 @@ 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, - [53782] = 18, + [54324] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2913), 1, + ACTIONS(2876), 1, sym__newline, - ACTIONS(4476), 1, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4484), 1, + ACTIONS(4510), 1, anon_sym_PLUS2, - ACTIONS(4496), 1, - anon_sym_bit_DASHand2, - ACTIONS(4498), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4520), 1, - anon_sym_bit_DASHor2, - STATE(2044), 1, + STATE(2054), 1, sym_comment, - STATE(2063), 1, + STATE(2158), 1, aux_sym__repeat_newline, - ACTIONS(4478), 2, + ACTIONS(2842), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2782), 4, + ACTIONS(2840), 25, + anon_sym_in, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4490), 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(4492), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4486), 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, - [53858] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4466), 1, - anon_sym_DASH2, - ACTIONS(4474), 1, - anon_sym_PLUS2, - ACTIONS(4510), 1, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, - ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - ACTIONS(4514), 1, anon_sym_bit_DASHor2, - STATE(501), 1, + [54386] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2045), 1, + STATE(2055), 1, sym_comment, - ACTIONS(4468), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, + ACTIONS(2784), 3, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4504), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4502), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4508), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2788), 5, + anon_sym_PLUS2, + ACTIONS(2782), 27, + anon_sym_in, sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4506), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -189246,116 +189636,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53932] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2913), 1, - sym__newline, - ACTIONS(4476), 1, - anon_sym_DASH2, - ACTIONS(4484), 1, - anon_sym_PLUS2, - ACTIONS(4496), 1, - anon_sym_bit_DASHand2, - ACTIONS(4498), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4520), 1, - anon_sym_bit_DASHor2, - ACTIONS(4522), 1, - anon_sym_and2, - STATE(2046), 1, - sym_comment, - STATE(2064), 1, - aux_sym__repeat_newline, - ACTIONS(4478), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4480), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2782), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4490), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4492), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4486), 8, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [54442] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4187), 1, + sym__unquoted_pattern, + STATE(2056), 1, + sym_comment, + ACTIONS(811), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [54010] = 18, + ACTIONS(910), 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, + [54492] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(4536), 1, anon_sym_DASH2, - ACTIONS(4474), 1, + ACTIONS(4542), 1, anon_sym_PLUS2, - ACTIONS(4510), 1, - anon_sym_bit_DASHand2, - ACTIONS(4512), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4514), 1, - anon_sym_bit_DASHor2, - ACTIONS(4516), 1, - anon_sym_and2, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2047), 1, + STATE(2057), 1, sym_comment, - ACTIONS(4468), 2, + ACTIONS(2784), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4504), 2, + ACTIONS(4544), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2788), 4, + ACTIONS(2782), 24, + anon_sym_in, sym__newline, anon_sym_LBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4502), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4508), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4506), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -189363,160 +189734,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54086] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(4476), 1, - anon_sym_DASH2, - ACTIONS(4484), 1, - anon_sym_PLUS2, - ACTIONS(4496), 1, - anon_sym_bit_DASHand2, - ACTIONS(4498), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4520), 1, - anon_sym_bit_DASHor2, - ACTIONS(4522), 1, - anon_sym_and2, - ACTIONS(4524), 1, - anon_sym_xor2, - STATE(2048), 1, - sym_comment, - STATE(2065), 1, - aux_sym__repeat_newline, - ACTIONS(2782), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4478), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4480), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4490), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4492), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4486), 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, - [54166] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4466), 1, - anon_sym_DASH2, - ACTIONS(4474), 1, - anon_sym_PLUS2, - ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - ACTIONS(4514), 1, anon_sym_bit_DASHor2, - ACTIONS(4516), 1, - anon_sym_and2, - ACTIONS(4518), 1, - anon_sym_xor2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2049), 1, + [54554] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4486), 1, + sym__entry_separator, + ACTIONS(4488), 1, + sym_raw_string_begin, + ACTIONS(4573), 1, + anon_sym_RBRACK, + STATE(2021), 1, + aux_sym__types_body_repeat2, + STATE(2058), 1, sym_comment, - ACTIONS(4468), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4470), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4504), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2788), 3, - sym__newline, + ACTIONS(4482), 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_or2, - ACTIONS(4502), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4508), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4506), 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, - [54244] = 14, + 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, + [54608] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2913), 1, + ACTIONS(2989), 1, sym__newline, - ACTIONS(4476), 1, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4484), 1, + ACTIONS(4510), 1, anon_sym_PLUS2, - STATE(2050), 1, + STATE(2059), 1, sym_comment, - STATE(2066), 1, + STATE(2067), 1, aux_sym__repeat_newline, - ACTIONS(4478), 2, + ACTIONS(2796), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4490), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4486), 8, + ACTIONS(4474), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2794), 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, @@ -189524,51 +189830,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2782), 11, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54312] = 13, + [54670] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(4536), 1, anon_sym_DASH2, - ACTIONS(4474), 1, + ACTIONS(4542), 1, anon_sym_PLUS2, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2051), 1, + STATE(2060), 1, sym_comment, - ACTIONS(4468), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, + ACTIONS(4534), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4504), 2, + ACTIONS(4544), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4502), 4, + ACTIONS(4538), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4506), 8, + ACTIONS(2782), 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, @@ -189576,12 +189888,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), 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, @@ -189589,34 +189895,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54378] = 11, + [54734] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2913), 1, - sym__newline, - ACTIONS(4476), 1, - anon_sym_DASH2, - ACTIONS(4484), 1, - anon_sym_PLUS2, - STATE(2052), 1, + STATE(2061), 1, sym_comment, - STATE(2067), 1, - aux_sym__repeat_newline, - ACTIONS(2784), 2, + ACTIONS(1246), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4478), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4480), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2782), 25, + anon_sym_PLUS2, + ACTIONS(1262), 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, @@ -189635,50 +189930,144 @@ 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, - [54440] = 15, + [54782] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4387), 1, + sym__entry_separator, + STATE(1928), 1, + aux_sym__types_body_repeat2, + STATE(2062), 1, + sym_comment, + ACTIONS(4389), 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, + [54832] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2638), 1, + sym__unquoted_pattern, + STATE(2063), 1, + sym_comment, + ACTIONS(1246), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1262), 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, + [54882] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2913), 1, + ACTIONS(2986), 1, sym__newline, - ACTIONS(4476), 1, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4484), 1, + ACTIONS(4510), 1, anon_sym_PLUS2, - STATE(2053), 1, + STATE(2064), 1, sym_comment, - STATE(2068), 1, + STATE(2164), 1, aux_sym__repeat_newline, - ACTIONS(4478), 2, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4502), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4512), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4490), 4, + ACTIONS(4506), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4492), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2782), 7, + ACTIONS(2762), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -189686,7 +190075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4486), 8, + ACTIONS(4500), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189695,53 +190084,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54510] = 14, + [54952] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, - anon_sym_DASH2, - ACTIONS(4474), 1, - anon_sym_PLUS2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2054), 1, + STATE(2065), 1, sym_comment, - ACTIONS(4468), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4470), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, + ACTIONS(2610), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(4504), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4502), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4508), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2788), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2608), 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_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4506), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -189749,54 +190111,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54578] = 16, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [55000] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2913), 1, + ACTIONS(2989), 1, sym__newline, - ACTIONS(4476), 1, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4484), 1, + ACTIONS(4510), 1, anon_sym_PLUS2, - ACTIONS(4496), 1, - anon_sym_bit_DASHand2, - STATE(2055), 1, - sym_comment, - STATE(2069), 1, + STATE(2044), 1, aux_sym__repeat_newline, - ACTIONS(4478), 2, + STATE(2066), 1, + sym_comment, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4502), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4512), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4490), 4, + ACTIONS(4506), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4492), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2782), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4486), 8, + ACTIONS(4500), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189805,54 +190170,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54650] = 15, + ACTIONS(2794), 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, + [55068] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(4536), 1, anon_sym_DASH2, - ACTIONS(4474), 1, + ACTIONS(4542), 1, anon_sym_PLUS2, - ACTIONS(4510), 1, - anon_sym_bit_DASHand2, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2056), 1, + STATE(2067), 1, sym_comment, - ACTIONS(4468), 2, + ACTIONS(2846), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4504), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4502), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4508), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2788), 7, + ACTIONS(2844), 26, + anon_sym_in, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4506), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -189860,55 +190219,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54720] = 17, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, + [55128] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2913), 1, + ACTIONS(2955), 1, sym__newline, - ACTIONS(4476), 1, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4484), 1, + ACTIONS(4510), 1, anon_sym_PLUS2, - ACTIONS(4496), 1, + ACTIONS(4514), 1, anon_sym_bit_DASHand2, - ACTIONS(4498), 1, + ACTIONS(4528), 1, anon_sym_bit_DASHxor2, - STATE(2057), 1, + STATE(2068), 1, sym_comment, - STATE(2070), 1, + STATE(2102), 1, aux_sym__repeat_newline, - ACTIONS(4478), 2, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4502), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4512), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4490), 4, + ACTIONS(4506), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4492), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2782), 5, + ACTIONS(2834), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4486), 8, + ACTIONS(4500), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189917,37 +190289,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54794] = 16, + [55202] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(2955), 1, + sym__newline, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4474), 1, - anon_sym_PLUS2, ACTIONS(4510), 1, + anon_sym_PLUS2, + ACTIONS(4514), 1, anon_sym_bit_DASHand2, - ACTIONS(4512), 1, - anon_sym_bit_DASHxor2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2058), 1, + STATE(2069), 1, sym_comment, - ACTIONS(4468), 2, + STATE(2083), 1, + aux_sym__repeat_newline, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, + ACTIONS(4502), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4504), 2, + ACTIONS(4512), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4502), 4, + ACTIONS(4506), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -189957,14 +190329,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2788), 6, - sym__newline, + ACTIONS(2834), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4506), 8, + ACTIONS(4500), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189973,181 +190345,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54866] = 12, + [55274] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, - anon_sym_DASH2, - ACTIONS(4474), 1, - anon_sym_PLUS2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2059), 1, - sym_comment, - ACTIONS(4468), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4470), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4504), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4502), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2796), 20, - anon_sym_in, + ACTIONS(2986), 1, 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, - [54930] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4474), 1, + ACTIONS(4510), 1, anon_sym_PLUS2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2060), 1, - sym_comment, - ACTIONS(2798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4468), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4470), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2796), 24, - anon_sym_in, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + ACTIONS(4514), 1, anon_sym_bit_DASHand2, + ACTIONS(4528), 1, anon_sym_bit_DASHxor2, + ACTIONS(4530), 1, anon_sym_bit_DASHor2, - [54992] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2061), 1, + STATE(2070), 1, sym_comment, - ACTIONS(4468), 2, + STATE(2125), 1, + aux_sym__repeat_newline, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2798), 3, + ACTIONS(4502), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2796), 27, - anon_sym_in, - sym__newline, - anon_sym_DASH2, + ACTIONS(4512), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2762), 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(4506), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4508), 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, - [55048] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2062), 1, - sym_comment, - ACTIONS(4470), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2798), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2796), 29, + ACTIONS(4500), 8, 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, @@ -190155,70 +190403,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, - [55100] = 17, + [55350] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(4536), 1, anon_sym_DASH2, - ACTIONS(4474), 1, + ACTIONS(4542), 1, anon_sym_PLUS2, - ACTIONS(4510), 1, - anon_sym_bit_DASHand2, - ACTIONS(4512), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4514), 1, - anon_sym_bit_DASHor2, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2063), 1, + STATE(2071), 1, sym_comment, - ACTIONS(4468), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, + ACTIONS(4534), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4504), 2, + ACTIONS(4544), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4502), 4, + ACTIONS(4538), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4540), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2796), 5, + ACTIONS(2786), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4506), 8, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4532), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190227,46 +190457,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55174] = 18, + [55418] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(2955), 1, + sym__newline, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4474), 1, - anon_sym_PLUS2, ACTIONS(4510), 1, - anon_sym_bit_DASHand2, - ACTIONS(4512), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4514), 1, - anon_sym_bit_DASHor2, - ACTIONS(4516), 1, - anon_sym_and2, - STATE(501), 1, + anon_sym_PLUS2, + STATE(2071), 1, aux_sym__repeat_newline, - STATE(2064), 1, + STATE(2072), 1, sym_comment, - ACTIONS(4468), 2, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, + ACTIONS(4502), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4504), 2, + ACTIONS(4512), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2796), 4, - sym__newline, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4502), 4, + ACTIONS(4506), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -190276,7 +190495,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4506), 8, + ACTIONS(2834), 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(4500), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190285,47 +190512,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55250] = 19, + [55488] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4474), 1, - anon_sym_PLUS2, ACTIONS(4510), 1, + anon_sym_PLUS2, + ACTIONS(4514), 1, anon_sym_bit_DASHand2, - ACTIONS(4512), 1, + ACTIONS(4528), 1, anon_sym_bit_DASHxor2, - ACTIONS(4514), 1, + ACTIONS(4530), 1, anon_sym_bit_DASHor2, - ACTIONS(4516), 1, + ACTIONS(4552), 1, anon_sym_and2, - ACTIONS(4518), 1, + ACTIONS(4556), 1, anon_sym_xor2, - STATE(501), 1, + STATE(2039), 1, aux_sym__repeat_newline, - STATE(2065), 1, + STATE(2073), 1, sym_comment, - ACTIONS(4468), 2, + ACTIONS(2794), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, + ACTIONS(4502), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4504), 2, + ACTIONS(4512), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2796), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4502), 4, + ACTIONS(4506), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -190335,7 +190563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4506), 8, + ACTIONS(4500), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190344,85 +190572,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55328] = 13, + [55568] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, - anon_sym_DASH2, - ACTIONS(4474), 1, - anon_sym_PLUS2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2066), 1, - sym_comment, - ACTIONS(4468), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4470), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4504), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4502), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4506), 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(2796), 12, + ACTIONS(2955), 1, 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, - [55394] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4474), 1, + ACTIONS(4510), 1, anon_sym_PLUS2, - STATE(501), 1, + STATE(2053), 1, aux_sym__repeat_newline, - STATE(2067), 1, + STATE(2074), 1, sym_comment, - ACTIONS(2798), 2, + ACTIONS(2836), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4468), 2, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2796), 26, + ACTIONS(2834), 25, anon_sym_in, - sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -190447,33 +190623,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55454] = 14, + [55630] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4579), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4581), 1, + sym_filesize_unit, + ACTIONS(4583), 1, + sym_duration_unit, + STATE(2075), 1, + sym_comment, + ACTIONS(4577), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4575), 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, + [55684] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(2986), 1, + sym__newline, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4474), 1, + ACTIONS(4510), 1, anon_sym_PLUS2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2068), 1, + ACTIONS(4514), 1, + anon_sym_bit_DASHand2, + STATE(2076), 1, sym_comment, - ACTIONS(4468), 2, + STATE(2148), 1, + aux_sym__repeat_newline, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, + ACTIONS(4502), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4504), 2, + ACTIONS(4512), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4502), 4, + ACTIONS(4506), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -190483,16 +190710,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2796), 8, - sym__newline, + ACTIONS(2762), 6, 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(4506), 8, + ACTIONS(4500), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190501,53 +190726,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55522] = 15, + [55756] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2077), 1, + sym_comment, + ACTIONS(801), 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(803), 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, + [55804] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(2955), 1, + sym__newline, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4474), 1, - anon_sym_PLUS2, ACTIONS(4510), 1, - anon_sym_bit_DASHand2, - STATE(501), 1, + anon_sym_PLUS2, + STATE(2049), 1, aux_sym__repeat_newline, - STATE(2069), 1, + STATE(2078), 1, sym_comment, - ACTIONS(4468), 2, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, + ACTIONS(4502), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4504), 2, + ACTIONS(4512), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4502), 4, + ACTIONS(4506), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2796), 7, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4506), 8, + ACTIONS(4500), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190556,350 +190812,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55592] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4466), 1, - anon_sym_DASH2, - ACTIONS(4474), 1, - anon_sym_PLUS2, - ACTIONS(4510), 1, - anon_sym_bit_DASHand2, - ACTIONS(4512), 1, - anon_sym_bit_DASHxor2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2070), 1, - sym_comment, - ACTIONS(4468), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4470), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4504), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4502), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4508), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2796), 6, - sym__newline, + ACTIONS(2834), 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, - ACTIONS(4506), 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, - [55664] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4370), 1, - sym__entry_separator, - STATE(1934), 1, - aux_sym__types_body_repeat2, - STATE(2071), 1, - sym_comment, - ACTIONS(4368), 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, - [55714] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4526), 1, - sym__newline, - STATE(2072), 1, - sym_comment, - ACTIONS(4529), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2626), 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(2628), 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, - [55766] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4205), 1, - sym__unquoted_pattern, - STATE(2073), 1, - sym_comment, - ACTIONS(811), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(914), 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, - [55816] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4370), 1, - sym__entry_separator, - STATE(1934), 1, - aux_sym__types_body_repeat2, - STATE(2074), 1, - sym_comment, - ACTIONS(4415), 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, - [55866] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2075), 1, - sym_comment, - ACTIONS(3780), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3778), 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_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, - [55914] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4531), 1, - sym__newline, - STATE(2076), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3782), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(3784), 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, - [55964] = 7, + [55872] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(920), 1, + ACTIONS(4589), 1, aux_sym_cmd_identifier_token6, - ACTIONS(4534), 1, + ACTIONS(4591), 1, sym_filesize_unit, - ACTIONS(4536), 1, + ACTIONS(4593), 1, sym_duration_unit, - STATE(2077), 1, + STATE(2079), 1, sym_comment, - ACTIONS(918), 5, + ACTIONS(4587), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(916), 29, + ACTIONS(4585), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -190929,66 +190871,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [56018] = 7, - ACTIONS(105), 1, + [55926] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4540), 1, - anon_sym_RBRACK, - ACTIONS(4542), 1, - sym__entry_separator, - ACTIONS(4544), 1, - sym_raw_string_begin, - STATE(2078), 1, - sym_comment, - STATE(2132), 1, - aux_sym__types_body_repeat2, - ACTIONS(4538), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(2876), 1, + sym__newline, + ACTIONS(4504), 1, + anon_sym_DASH2, + ACTIONS(4510), 1, + anon_sym_PLUS2, + STATE(2080), 1, + sym_comment, + STATE(2162), 1, + aux_sym__repeat_newline, + ACTIONS(4470), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4472), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4474), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4502), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4512), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4506), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4508), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2840), 7, 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, - [56072] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4500), 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, + [55996] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2079), 1, + ACTIONS(2636), 1, + anon_sym_LPAREN2, + ACTIONS(2638), 1, + sym__unquoted_pattern, + STATE(2081), 1, sym_comment, - ACTIONS(1776), 6, + ACTIONS(1238), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1774), 31, + ACTIONS(1254), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -191010,7 +190963,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, @@ -191020,117 +190972,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56120] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4546), 1, - anon_sym_LBRACK2, - STATE(2080), 1, - sym_comment, - ACTIONS(2377), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2375), 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, - [56170] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2610), 1, - sym__unquoted_pattern, - STATE(2081), 1, - sym_comment, - ACTIONS(2606), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2604), 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, - [56220] = 5, + [56048] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1806), 1, - sym__unquoted_pattern, - STATE(2082), 1, - sym_comment, - ACTIONS(811), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(914), 31, - anon_sym_in, + ACTIONS(2966), 1, sym__newline, + ACTIONS(4504), 1, anon_sym_DASH2, - anon_sym_LBRACE, + ACTIONS(4510), 1, + anon_sym_PLUS2, + ACTIONS(4514), 1, + anon_sym_bit_DASHand2, + ACTIONS(4528), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4530), 1, + anon_sym_bit_DASHor2, + ACTIONS(4552), 1, anon_sym_and2, + ACTIONS(4556), 1, anon_sym_xor2, + STATE(2041), 1, + aux_sym__repeat_newline, + STATE(2082), 1, + sym_comment, + ACTIONS(2834), 2, + anon_sym_LBRACE, anon_sym_or2, + ACTIONS(4470), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4472), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4474), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4502), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4512), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4506), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4508), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4500), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -191138,84 +191032,91 @@ 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(4536), 1, + anon_sym_DASH2, + ACTIONS(4542), 1, + anon_sym_PLUS2, + ACTIONS(4546), 1, + anon_sym_bit_DASHand2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2083), 1, + sym_comment, + ACTIONS(4476), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4478), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4480), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4534), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4544), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4538), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4540), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, + ACTIONS(2786), 7, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56270] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2674), 1, - sym__unquoted_pattern, - STATE(2083), 1, - sym_comment, - ACTIONS(1616), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(4532), 8, anon_sym_in, - ACTIONS(1738), 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, - [56320] = 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, + [56198] = 11, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4536), 1, + anon_sym_DASH2, + ACTIONS(4542), 1, + anon_sym_PLUS2, + STATE(522), 1, + aux_sym__repeat_newline, STATE(2084), 1, sym_comment, - ACTIONS(1868), 6, + ACTIONS(2788), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4476), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1866), 31, + ACTIONS(4478), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4480), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4544), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2786), 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, @@ -191234,29 +191135,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [56260] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2986), 1, + sym__newline, + ACTIONS(4504), 1, + anon_sym_DASH2, + ACTIONS(4510), 1, + anon_sym_PLUS2, + ACTIONS(4514), 1, + anon_sym_bit_DASHand2, + ACTIONS(4528), 1, + anon_sym_bit_DASHxor2, + STATE(2085), 1, + sym_comment, + STATE(2146), 1, + aux_sym__repeat_newline, + ACTIONS(4470), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(4502), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4512), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, + ACTIONS(4506), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4508), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2762), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, - [56368] = 4, + ACTIONS(4500), 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, + [56334] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2085), 1, + STATE(2086), 1, sym_comment, - ACTIONS(1923), 6, + ACTIONS(1876), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1921), 31, + ACTIONS(1874), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -191288,26 +191239,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56416] = 4, + [56382] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(2086), 1, + ACTIONS(4536), 1, + anon_sym_DASH2, + ACTIONS(4542), 1, + anon_sym_PLUS2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2087), 1, sym_comment, - ACTIONS(1242), 5, - anon_sym_GT2, + ACTIONS(4476), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1258), 32, - anon_sym_in, + ACTIONS(4478), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4480), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4534), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4544), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4538), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4540), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2844), 8, sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, - 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(4532), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -191315,139 +191293,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [56450] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2876), 1, + sym__newline, + ACTIONS(4504), 1, + anon_sym_DASH2, + ACTIONS(4510), 1, + anon_sym_PLUS2, + ACTIONS(4514), 1, + anon_sym_bit_DASHand2, + STATE(2088), 1, + sym_comment, + STATE(2155), 1, + aux_sym__repeat_newline, + ACTIONS(4470), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4472), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4474), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4502), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4512), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4506), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4508), 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, - [56464] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4542), 1, - sym__entry_separator, - ACTIONS(4544), 1, - sym_raw_string_begin, - ACTIONS(4548), 1, - anon_sym_RBRACK, - STATE(2087), 1, - sym_comment, - STATE(2132), 1, - aux_sym__types_body_repeat2, - ACTIONS(4538), 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, - [56518] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4542), 1, - sym__entry_separator, - ACTIONS(4544), 1, - sym_raw_string_begin, - ACTIONS(4550), 1, - anon_sym_RBRACK, - STATE(2088), 1, - sym_comment, - STATE(2132), 1, - aux_sym__types_body_repeat2, - ACTIONS(4538), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(2840), 6, 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, - [56572] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2672), 1, - anon_sym_LPAREN2, - ACTIONS(2674), 1, - sym__unquoted_pattern, - STATE(2089), 1, - sym_comment, - ACTIONS(1616), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1738), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4500), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -191455,81 +191349,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [56522] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2989), 1, + sym__newline, + ACTIONS(4504), 1, + anon_sym_DASH2, + ACTIONS(4510), 1, + anon_sym_PLUS2, + ACTIONS(4514), 1, + anon_sym_bit_DASHand2, + ACTIONS(4528), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4530), 1, + anon_sym_bit_DASHor2, + ACTIONS(4552), 1, + anon_sym_and2, + STATE(2036), 1, + aux_sym__repeat_newline, + STATE(2089), 1, + sym_comment, + ACTIONS(4470), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4472), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4474), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4502), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4512), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2794), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4506), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4508), 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, - [56624] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2090), 1, - sym_comment, - ACTIONS(1565), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(4500), 8, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1567), 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, - [56672] = 7, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [56600] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4542), 1, + ACTIONS(4486), 1, sym__entry_separator, - ACTIONS(4544), 1, + ACTIONS(4488), 1, sym_raw_string_begin, - ACTIONS(4552), 1, + ACTIONS(4595), 1, anon_sym_RBRACK, - STATE(2091), 1, - sym_comment, - STATE(2132), 1, + STATE(2021), 1, aux_sym__types_body_repeat2, - ACTIONS(4538), 33, + STATE(2090), 1, + sym_comment, + ACTIONS(4482), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -191563,159 +191455,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, aux_sym__unquoted_in_list_token1, - [56726] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2632), 1, - sym__unquoted_pattern, - STATE(2092), 1, - sym_comment, - ACTIONS(1242), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1258), 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, - [56776] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2632), 1, - sym__unquoted_pattern, - STATE(2093), 1, - sym_comment, - ACTIONS(1234), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1250), 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, - [56826] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2094), 1, - sym_comment, - ACTIONS(1555), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1557), 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, - [56874] = 6, + [56654] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(2108), 1, - anon_sym_LPAREN2, - STATE(2095), 1, + ACTIONS(2989), 1, + sym__newline, + STATE(2031), 1, + aux_sym__repeat_newline, + STATE(2091), 1, sym_comment, - ACTIONS(2106), 5, + ACTIONS(4472), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2796), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2104), 30, + ACTIONS(2794), 28, anon_sym_in, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -191734,8 +191495,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, @@ -191743,257 +191502,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56926] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4558), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4560), 1, - sym_filesize_unit, - ACTIONS(4562), 1, - sym_duration_unit, - STATE(2096), 1, - sym_comment, - ACTIONS(4556), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4554), 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, - [56980] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2097), 1, - sym_comment, - ACTIONS(803), 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(805), 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, - [57028] = 3, + [56708] = 19, ACTIONS(3), 1, anon_sym_POUND, - STATE(2098), 1, - sym_comment, - ACTIONS(2628), 37, + ACTIONS(2955), 1, sym__newline, - anon_sym_LBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [57074] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4568), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4570), 1, - sym_filesize_unit, - ACTIONS(4572), 1, - sym_duration_unit, - STATE(2099), 1, - sym_comment, - ACTIONS(4566), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4564), 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, - [57128] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2417), 1, - anon_sym_DOT2, - STATE(431), 1, - sym_cell_path, - STATE(586), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(737), 1, - sym_path, - STATE(2100), 1, + ACTIONS(4504), 1, + anon_sym_DASH2, + ACTIONS(4510), 1, + anon_sym_PLUS2, + ACTIONS(4514), 1, + anon_sym_bit_DASHand2, + ACTIONS(4528), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4530), 1, + anon_sym_bit_DASHor2, + ACTIONS(4552), 1, + anon_sym_and2, + STATE(2092), 1, sym_comment, - ACTIONS(1466), 2, + STATE(2104), 1, + aux_sym__repeat_newline, + ACTIONS(4470), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4472), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4474), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4502), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(1468), 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, + ACTIONS(4512), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2834), 3, + anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(4506), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - [57184] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern, - STATE(2101), 1, - sym_comment, - ACTIONS(2698), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2696), 30, + ACTIONS(4500), 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, @@ -192001,42 +191561,32 @@ 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, - [57236] = 6, + [56786] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern, - STATE(2102), 1, + ACTIONS(2986), 1, + sym__newline, + STATE(2019), 1, + aux_sym__repeat_newline, + STATE(2093), 1, sym_comment, - ACTIONS(2116), 5, + ACTIONS(4470), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4472), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4474), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2764), 3, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2114), 30, + ACTIONS(2762), 26, anon_sym_in, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -192055,32 +191605,42 @@ 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, - [57288] = 4, + [56844] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(2103), 1, + ACTIONS(2989), 1, + sym__newline, + ACTIONS(4504), 1, + anon_sym_DASH2, + ACTIONS(4510), 1, + anon_sym_PLUS2, + STATE(2094), 1, sym_comment, - ACTIONS(2606), 5, + STATE(2144), 1, + aux_sym__repeat_newline, + ACTIONS(2796), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4470), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2604), 32, + ACTIONS(4472), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4474), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4512), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2794), 23, anon_sym_in, - sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -192099,34 +191659,45 @@ 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, - [57336] = 6, + [56908] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - sym__unquoted_pattern, - ACTIONS(2718), 1, - anon_sym_LPAREN2, - STATE(2104), 1, + ACTIONS(2989), 1, + sym__newline, + ACTIONS(4504), 1, + anon_sym_DASH2, + ACTIONS(4510), 1, + anon_sym_PLUS2, + STATE(2095), 1, sym_comment, - ACTIONS(2662), 5, - anon_sym_GT2, + STATE(2147), 1, + aux_sym__repeat_newline, + ACTIONS(4470), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2660), 30, + ACTIONS(4472), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4474), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4502), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4512), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4506), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2794), 19, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -192137,45 +191708,63 @@ 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, - [57388] = 6, + [56974] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2684), 1, - anon_sym_LPAREN2, - ACTIONS(2686), 1, - sym__unquoted_pattern, - STATE(2105), 1, + ACTIONS(4536), 1, + anon_sym_DASH2, + ACTIONS(4542), 1, + anon_sym_PLUS2, + ACTIONS(4546), 1, + anon_sym_bit_DASHand2, + ACTIONS(4548), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4550), 1, + anon_sym_bit_DASHor2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2096), 1, sym_comment, - ACTIONS(2678), 5, - anon_sym_GT2, + ACTIONS(4476), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2676), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + ACTIONS(4478), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4480), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4534), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4544), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4538), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4540), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2786), 5, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(4532), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -192183,42 +191772,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [57048] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4536), 1, + anon_sym_DASH2, + ACTIONS(4542), 1, + anon_sym_PLUS2, + ACTIONS(4546), 1, + anon_sym_bit_DASHand2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2097), 1, + sym_comment, + ACTIONS(4476), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4478), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4480), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4534), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4544), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4538), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4540), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, + ACTIONS(2844), 7, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57440] = 4, + ACTIONS(4532), 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, + [57118] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(2106), 1, + ACTIONS(2876), 1, + sym__newline, + ACTIONS(4504), 1, + anon_sym_DASH2, + ACTIONS(4510), 1, + anon_sym_PLUS2, + ACTIONS(4514), 1, + anon_sym_bit_DASHand2, + ACTIONS(4528), 1, + anon_sym_bit_DASHxor2, + STATE(2098), 1, sym_comment, - ACTIONS(2578), 6, - anon_sym_GT2, + STATE(2143), 1, + aux_sym__repeat_newline, + ACTIONS(4470), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2576), 31, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + ACTIONS(4472), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4474), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4502), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4512), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4506), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4508), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2840), 5, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4500), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -192226,38 +191884,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [57192] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4536), 1, + anon_sym_DASH2, + ACTIONS(4542), 1, + anon_sym_PLUS2, + ACTIONS(4546), 1, + anon_sym_bit_DASHand2, + ACTIONS(4548), 1, + anon_sym_bit_DASHxor2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2099), 1, + sym_comment, + ACTIONS(4476), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4478), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4480), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4534), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4544), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4538), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4540), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, + ACTIONS(2844), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, - [57488] = 4, + ACTIONS(4532), 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, + [57264] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(2107), 1, + ACTIONS(4601), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4603), 1, + sym_filesize_unit, + ACTIONS(4605), 1, + sym_duration_unit, + STATE(2100), 1, sym_comment, - ACTIONS(791), 7, + ACTIONS(4599), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(793), 30, + ACTIONS(4597), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -192287,138 +191987,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - sym_duration_unit, - [57536] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2108), 1, - sym_comment, - ACTIONS(1561), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1563), 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, - [57584] = 6, + [57318] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4388), 1, + ACTIONS(4486), 1, sym__entry_separator, - ACTIONS(4390), 1, + ACTIONS(4488), 1, sym_raw_string_begin, - STATE(1969), 1, + ACTIONS(4607), 1, + anon_sym_RBRACK, + STATE(2021), 1, aux_sym__types_body_repeat2, - STATE(2109), 1, + STATE(2101), 1, sym_comment, - ACTIONS(4384), 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, + ACTIONS(4482), 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, - aux_sym__val_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, - [57636] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4574), 1, - sym__newline, - ACTIONS(4578), 1, anon_sym_LBRACK, - ACTIONS(4581), 1, - anon_sym_DOT_DOT, - STATE(2110), 1, - sym_comment, - ACTIONS(4529), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2626), 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(2628), 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_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, @@ -192426,28 +192033,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, - [57692] = 6, + aux_sym__unquoted_in_list_token1, + [57372] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2608), 1, - anon_sym_LPAREN2, - ACTIONS(2610), 1, - sym__unquoted_pattern, - STATE(2111), 1, + ACTIONS(4536), 1, + anon_sym_DASH2, + ACTIONS(4542), 1, + anon_sym_PLUS2, + ACTIONS(4546), 1, + anon_sym_bit_DASHand2, + ACTIONS(4548), 1, + anon_sym_bit_DASHxor2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2102), 1, sym_comment, - ACTIONS(2606), 5, - anon_sym_GT2, + ACTIONS(4476), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2604), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + ACTIONS(4478), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4480), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4534), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4544), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4538), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4540), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2786), 6, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4532), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -192455,42 +192090,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [57444] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4536), 1, + anon_sym_DASH2, + ACTIONS(4542), 1, + anon_sym_PLUS2, + ACTIONS(4546), 1, + anon_sym_bit_DASHand2, + ACTIONS(4548), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4550), 1, + anon_sym_bit_DASHor2, + ACTIONS(4554), 1, + anon_sym_and2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2103), 1, + sym_comment, + ACTIONS(4476), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4478), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4480), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4534), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4544), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2782), 4, + sym__newline, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4538), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4540), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + ACTIONS(4532), 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, + [57520] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4536), 1, + anon_sym_DASH2, + ACTIONS(4542), 1, + anon_sym_PLUS2, + ACTIONS(4546), 1, + anon_sym_bit_DASHand2, + ACTIONS(4548), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4550), 1, + anon_sym_bit_DASHor2, + ACTIONS(4554), 1, + anon_sym_and2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2104), 1, + sym_comment, + ACTIONS(4476), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(4534), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4544), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(2786), 4, + sym__newline, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4538), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4540), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4532), 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, + [57596] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2955), 1, + sym__newline, + ACTIONS(4504), 1, + anon_sym_DASH2, + ACTIONS(4510), 1, + anon_sym_PLUS2, + ACTIONS(4514), 1, anon_sym_bit_DASHand2, + ACTIONS(4528), 1, anon_sym_bit_DASHxor2, + ACTIONS(4530), 1, anon_sym_bit_DASHor2, - [57744] = 6, + STATE(2096), 1, + aux_sym__repeat_newline, + STATE(2105), 1, + sym_comment, + ACTIONS(4470), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4472), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4474), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4502), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4512), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2834), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4506), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4508), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4500), 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, + [57672] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2630), 1, - anon_sym_LPAREN2, - ACTIONS(2632), 1, - sym__unquoted_pattern, - STATE(2112), 1, + ACTIONS(2417), 1, + anon_sym_DOT2, + STATE(438), 1, + sym_cell_path, + STATE(580), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(712), 1, + sym_path, + STATE(2106), 1, sym_comment, - ACTIONS(1242), 5, + ACTIONS(1478), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1258), 30, + ACTIONS(1480), 31, + ts_builtin_sym_end, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, @@ -192509,34 +192312,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [57796] = 6, + [57728] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2630), 1, - anon_sym_LPAREN2, - ACTIONS(2632), 1, - sym__unquoted_pattern, - STATE(2113), 1, + ACTIONS(2955), 1, + sym__newline, + STATE(2107), 1, sym_comment, - ACTIONS(1234), 5, + STATE(2159), 1, + aux_sym__repeat_newline, + ACTIONS(4472), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2836), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1250), 30, + ACTIONS(2834), 28, anon_sym_in, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -192555,8 +192352,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, @@ -192564,128 +192359,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57848] = 4, + [57782] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2114), 1, + ACTIONS(4516), 1, + sym__newline, + ACTIONS(4520), 1, + anon_sym_LBRACK, + STATE(2108), 1, sym_comment, - ACTIONS(2578), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - sym__unquoted_pattern, - ACTIONS(2576), 33, + ACTIONS(4523), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2658), 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(2660), 26, 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, + 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, - [57896] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4584), 1, - sym__newline, - STATE(2115), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1888), 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, - [57944] = 13, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [57836] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, + ACTIONS(2955), 1, sym__newline, - ACTIONS(4476), 1, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4484), 1, + ACTIONS(4510), 1, anon_sym_PLUS2, - STATE(2116), 1, + STATE(2109), 1, sym_comment, - STATE(2136), 1, + STATE(2119), 1, aux_sym__repeat_newline, - ACTIONS(4478), 2, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4502), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4512), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4490), 4, + ACTIONS(4506), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2840), 19, + ACTIONS(2834), 19, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -192705,35 +192459,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58010] = 12, + [57902] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, + ACTIONS(2986), 1, sym__newline, - ACTIONS(4476), 1, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4484), 1, + ACTIONS(4510), 1, anon_sym_PLUS2, - STATE(2117), 1, + STATE(2110), 1, sym_comment, - STATE(2138), 1, + STATE(2117), 1, aux_sym__repeat_newline, - ACTIONS(2842), 2, + ACTIONS(2764), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4478), 2, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4494), 2, + ACTIONS(4512), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2840), 23, + ACTIONS(2762), 23, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -192757,31 +192511,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58074] = 9, + [57966] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - sym__newline, - STATE(2118), 1, - sym_comment, - STATE(2140), 1, + ACTIONS(4536), 1, + anon_sym_DASH2, + ACTIONS(4542), 1, + anon_sym_PLUS2, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(4478), 2, + STATE(2111), 1, + sym_comment, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2842), 3, + ACTIONS(4534), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2840), 26, + ACTIONS(4544), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4538), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2848), 20, anon_sym_in, - anon_sym_DASH2, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -192793,41 +192556,73 @@ 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, - [58132] = 7, + [58030] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - sym__newline, - STATE(2119), 1, + STATE(2112), 1, sym_comment, - STATE(2142), 1, - aux_sym__repeat_newline, - ACTIONS(4480), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2842), 5, + ACTIONS(1584), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1586), 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, + [58078] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2113), 1, + sym_comment, + ACTIONS(1804), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2840), 28, + sym__unquoted_pattern, + ACTIONS(1802), 31, anon_sym_in, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -192846,6 +192641,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, @@ -192853,116 +192651,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58186] = 18, + [58126] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - sym__newline, - ACTIONS(4476), 1, - anon_sym_DASH2, - ACTIONS(4484), 1, - anon_sym_PLUS2, - ACTIONS(4496), 1, - anon_sym_bit_DASHand2, - ACTIONS(4498), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4520), 1, - anon_sym_bit_DASHor2, - STATE(2120), 1, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(2114), 1, sym_comment, - STATE(2144), 1, - aux_sym__repeat_newline, - ACTIONS(4478), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4480), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(2610), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(4494), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2840), 4, - anon_sym_LBRACE, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2608), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4490), 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(4492), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4486), 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, - [58262] = 19, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [58178] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, + ACTIONS(4609), 1, sym__newline, - ACTIONS(4476), 1, + STATE(2115), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(1938), 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, + [58226] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2116), 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, + [58274] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4536), 1, anon_sym_DASH2, - ACTIONS(4484), 1, + ACTIONS(4542), 1, anon_sym_PLUS2, - ACTIONS(4496), 1, - anon_sym_bit_DASHand2, - ACTIONS(4498), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4520), 1, - anon_sym_bit_DASHor2, - ACTIONS(4522), 1, - anon_sym_and2, - STATE(2121), 1, - sym_comment, - STATE(2146), 1, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(4478), 2, + STATE(2117), 1, + sym_comment, + ACTIONS(2850), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4544), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2840), 3, + ACTIONS(2848), 24, + anon_sym_in, + sym__newline, anon_sym_LBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4490), 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(4492), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4486), 8, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [58336] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2118), 1, + sym_comment, + ACTIONS(2598), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(2596), 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, @@ -192970,101 +192862,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58340] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(4476), 1, - anon_sym_DASH2, - ACTIONS(4484), 1, - anon_sym_PLUS2, - ACTIONS(4496), 1, - anon_sym_bit_DASHand2, - ACTIONS(4498), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4520), 1, - anon_sym_bit_DASHor2, - ACTIONS(4522), 1, - anon_sym_and2, - ACTIONS(4524), 1, - anon_sym_xor2, - STATE(2122), 1, - sym_comment, - STATE(2148), 1, - aux_sym__repeat_newline, - ACTIONS(2840), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4478), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4480), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4490), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4492), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4486), 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, - [58420] = 14, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [58384] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - sym__newline, - ACTIONS(4476), 1, + ACTIONS(4536), 1, anon_sym_DASH2, - ACTIONS(4484), 1, + ACTIONS(4542), 1, anon_sym_PLUS2, - STATE(2123), 1, - sym_comment, - STATE(2150), 1, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(4478), 2, + STATE(2119), 1, + sym_comment, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4534), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4544), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4490), 4, + ACTIONS(4538), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4486), 8, + ACTIONS(2786), 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, @@ -193072,11 +192925,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2840), 11, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -193084,24 +192932,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58488] = 7, + [58448] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(908), 1, + ACTIONS(4616), 1, aux_sym_cmd_identifier_token6, - ACTIONS(4587), 1, + ACTIONS(4618), 1, sym_filesize_unit, - ACTIONS(4589), 1, + ACTIONS(4620), 1, sym_duration_unit, - STATE(2124), 1, + STATE(2120), 1, sym_comment, - ACTIONS(906), 5, + ACTIONS(4614), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(904), 29, + ACTIONS(4612), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -193131,33 +192979,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [58542] = 11, + [58502] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, + ACTIONS(2955), 1, sym__newline, - ACTIONS(4476), 1, - anon_sym_DASH2, - ACTIONS(4484), 1, - anon_sym_PLUS2, - STATE(2125), 1, + STATE(2121), 1, sym_comment, - STATE(2152), 1, + STATE(2129), 1, aux_sym__repeat_newline, - ACTIONS(2842), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4478), 2, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2840), 25, + ACTIONS(2836), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2834), 26, anon_sym_in, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -193182,54 +193028,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58604] = 15, + [58560] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - sym__newline, - ACTIONS(4476), 1, - anon_sym_DASH2, - ACTIONS(4484), 1, - anon_sym_PLUS2, - STATE(2126), 1, + ACTIONS(2636), 1, + anon_sym_LPAREN2, + ACTIONS(2638), 1, + sym__unquoted_pattern, + STATE(2122), 1, sym_comment, - STATE(2154), 1, - aux_sym__repeat_newline, - ACTIONS(4478), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4480), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(1246), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(4494), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4490), 4, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1262), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4492), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2840), 7, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4486), 8, + [58612] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2123), 1, + sym_comment, + ACTIONS(4478), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2850), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2848), 29, anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -193237,101 +193105,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58674] = 7, - ACTIONS(3), 1, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, + [58664] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4574), 1, - sym__newline, - ACTIONS(4578), 1, - anon_sym_LBRACK, - STATE(2127), 1, - sym_comment, - ACTIONS(4529), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2626), 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(2628), 26, + ACTIONS(4369), 1, + sym__entry_separator, + ACTIONS(4371), 1, sym_raw_string_begin, + STATE(1989), 1, + aux_sym__types_body_repeat2, + STATE(2124), 1, + sym_comment, + ACTIONS(4365), 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, - 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_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_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, - [58728] = 16, + [58716] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - sym__newline, - ACTIONS(4476), 1, + ACTIONS(4536), 1, anon_sym_DASH2, - ACTIONS(4484), 1, + ACTIONS(4542), 1, anon_sym_PLUS2, - ACTIONS(4496), 1, + ACTIONS(4546), 1, anon_sym_bit_DASHand2, - STATE(2128), 1, - sym_comment, - STATE(2156), 1, + ACTIONS(4548), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4550), 1, + anon_sym_bit_DASHor2, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(4478), 2, + STATE(2125), 1, + sym_comment, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4534), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4544), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4490), 4, + ACTIONS(4538), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4492), 4, + ACTIONS(4540), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2840), 6, + ACTIONS(2848), 5, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4486), 8, + ACTIONS(4532), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -193340,56 +193223,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58800] = 17, + [58790] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, + ACTIONS(2955), 1, sym__newline, - ACTIONS(4476), 1, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4484), 1, + ACTIONS(4510), 1, anon_sym_PLUS2, - ACTIONS(4496), 1, - anon_sym_bit_DASHand2, - ACTIONS(4498), 1, - anon_sym_bit_DASHxor2, - STATE(2129), 1, - sym_comment, - STATE(2158), 1, + STATE(2084), 1, aux_sym__repeat_newline, - ACTIONS(4478), 2, + STATE(2126), 1, + sym_comment, + ACTIONS(2836), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4512), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4490), 4, + ACTIONS(2834), 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, - ACTIONS(4492), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2840), 5, - anon_sym_LBRACE, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [58854] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2720), 1, + anon_sym_LPAREN2, + ACTIONS(2722), 1, + sym__unquoted_pattern, + STATE(2127), 1, + sym_comment, + ACTIONS(1610), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1736), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4486), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -193397,275 +193304,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58874] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4595), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4597), 1, - sym_filesize_unit, - ACTIONS(4599), 1, - sym_duration_unit, - STATE(2130), 1, - sym_comment, - ACTIONS(4593), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4591), 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, - [58928] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4605), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4607), 1, - sym_filesize_unit, - ACTIONS(4609), 1, - sym_duration_unit, - STATE(2131), 1, - sym_comment, - ACTIONS(4603), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4601), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [58982] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3761), 1, - sym_raw_string_begin, - ACTIONS(4611), 1, - sym__entry_separator, - STATE(2132), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3756), 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, - [59032] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2133), 1, - sym_comment, - ACTIONS(759), 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(761), 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, - [59080] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4618), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4620), 1, - sym_filesize_unit, - ACTIONS(4622), 1, - sym_duration_unit, - STATE(2134), 1, - sym_comment, - ACTIONS(4616), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4614), 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, - [59134] = 13, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, + [58906] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2967), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(4476), 1, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4484), 1, + ACTIONS(4510), 1, anon_sym_PLUS2, - STATE(2024), 1, - aux_sym__repeat_newline, - STATE(2135), 1, + ACTIONS(4514), 1, + anon_sym_bit_DASHand2, + ACTIONS(4528), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4530), 1, + anon_sym_bit_DASHor2, + ACTIONS(4552), 1, + anon_sym_and2, + ACTIONS(4556), 1, + anon_sym_xor2, + STATE(2128), 1, sym_comment, - ACTIONS(4478), 2, + STATE(2135), 1, + aux_sym__repeat_newline, + ACTIONS(2762), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4502), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4512), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4490), 4, + ACTIONS(4506), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2836), 19, + ACTIONS(4508), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4500), 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, @@ -193673,47 +193381,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_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [59200] = 12, + [58986] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, - anon_sym_DASH2, - ACTIONS(4474), 1, - anon_sym_PLUS2, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2136), 1, + STATE(2129), 1, sym_comment, - ACTIONS(4468), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, + ACTIONS(2788), 3, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4504), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4502), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2844), 20, + anon_sym_PLUS2, + ACTIONS(2786), 27, anon_sym_in, sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -193725,43 +193416,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_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [59264] = 12, + [59042] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2967), 1, + ACTIONS(2876), 1, sym__newline, - ACTIONS(4476), 1, - anon_sym_DASH2, - ACTIONS(4484), 1, - anon_sym_PLUS2, - STATE(2025), 1, + STATE(2055), 1, aux_sym__repeat_newline, - STATE(2137), 1, + STATE(2130), 1, sym_comment, - ACTIONS(2838), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4478), 2, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4494), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2836), 23, + ACTIONS(2842), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2840), 26, anon_sym_in, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -193781,86 +193473,130 @@ 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, - [59328] = 11, + [59100] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(2986), 1, + sym__newline, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4474), 1, + ACTIONS(4510), 1, anon_sym_PLUS2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2138), 1, + ACTIONS(4514), 1, + anon_sym_bit_DASHand2, + ACTIONS(4528), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4530), 1, + anon_sym_bit_DASHor2, + ACTIONS(4552), 1, + anon_sym_and2, + STATE(2131), 1, sym_comment, - ACTIONS(2846), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4468), 2, + STATE(2134), 1, + aux_sym__repeat_newline, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4502), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4512), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2844), 24, - anon_sym_in, - sym__newline, + ACTIONS(2762), 3, 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(4506), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4508), 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, - [59390] = 9, + ACTIONS(4500), 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, + [59178] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2967), 1, - sym__newline, - STATE(2026), 1, - aux_sym__repeat_newline, - STATE(2139), 1, + STATE(2132), 1, sym_comment, - ACTIONS(4478), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4480), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2838), 3, + ACTIONS(2598), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + sym__unquoted_pattern, + ACTIONS(2596), 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, + [59226] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2133), 1, + sym_comment, + ACTIONS(1947), 6, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2836), 26, + sym__unquoted_pattern, + ACTIONS(1945), 31, anon_sym_in, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -193879,127 +193615,241 @@ 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, - [59448] = 8, + [59274] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(501), 1, + ACTIONS(4536), 1, + anon_sym_DASH2, + ACTIONS(4542), 1, + anon_sym_PLUS2, + ACTIONS(4546), 1, + anon_sym_bit_DASHand2, + ACTIONS(4548), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4550), 1, + anon_sym_bit_DASHor2, + ACTIONS(4554), 1, + anon_sym_and2, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2140), 1, + STATE(2134), 1, sym_comment, - ACTIONS(4468), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2846), 3, + ACTIONS(4534), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2844), 27, - anon_sym_in, + ACTIONS(4544), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2848), 4, 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(4538), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4540), 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(4532), 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, + [59350] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4536), 1, + anon_sym_DASH2, + ACTIONS(4542), 1, + anon_sym_PLUS2, + ACTIONS(4546), 1, anon_sym_bit_DASHand2, + ACTIONS(4548), 1, anon_sym_bit_DASHxor2, + ACTIONS(4550), 1, anon_sym_bit_DASHor2, - [59504] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2967), 1, - sym__newline, - STATE(2027), 1, + ACTIONS(4554), 1, + anon_sym_and2, + ACTIONS(4558), 1, + anon_sym_xor2, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2141), 1, + STATE(2135), 1, sym_comment, - ACTIONS(4480), 2, + ACTIONS(4476), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2838), 5, + ACTIONS(4480), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4534), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2836), 28, - anon_sym_in, - anon_sym_DASH2, + ACTIONS(4544), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2848), 3, + 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, + ACTIONS(4538), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4540), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [59558] = 6, + ACTIONS(4532), 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, + [59428] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2142), 1, + ACTIONS(2638), 1, + sym__unquoted_pattern, + STATE(2136), 1, sym_comment, - ACTIONS(4470), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2846), 5, + ACTIONS(1238), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1254), 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, + [59478] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2137), 1, + sym_comment, + ACTIONS(1532), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1534), 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, + [59526] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(2129), 1, + anon_sym_LPAREN2, + STATE(2138), 1, + sym_comment, + ACTIONS(2127), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2844), 29, + ACTIONS(2125), 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, @@ -194018,6 +193868,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, @@ -194025,57 +193877,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [59610] = 18, + [59578] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4622), 1, + anon_sym_LBRACK2, + STATE(2139), 1, + sym_comment, + ACTIONS(2243), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2241), 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, + [59628] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4387), 1, + sym__entry_separator, + STATE(1928), 1, + aux_sym__types_body_repeat2, + STATE(2140), 1, + sym_comment, + ACTIONS(4385), 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, + [59678] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(916), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4624), 1, + sym_filesize_unit, + ACTIONS(4626), 1, + sym_duration_unit, + STATE(2141), 1, + sym_comment, + ACTIONS(914), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(912), 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, + [59732] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2967), 1, + ACTIONS(2986), 1, sym__newline, - ACTIONS(4476), 1, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4484), 1, + ACTIONS(4510), 1, anon_sym_PLUS2, - ACTIONS(4496), 1, - anon_sym_bit_DASHand2, - ACTIONS(4498), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4520), 1, - anon_sym_bit_DASHor2, - STATE(2028), 1, + STATE(2111), 1, aux_sym__repeat_newline, - STATE(2143), 1, + STATE(2142), 1, sym_comment, - ACTIONS(4478), 2, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4502), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4512), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2836), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4490), 4, + ACTIONS(4506), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4492), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4486), 8, + ACTIONS(2762), 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, @@ -194083,55 +194060,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [59686] = 17, + 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, + [59798] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(4536), 1, anon_sym_DASH2, - ACTIONS(4474), 1, + ACTIONS(4542), 1, anon_sym_PLUS2, - ACTIONS(4510), 1, + ACTIONS(4546), 1, anon_sym_bit_DASHand2, - ACTIONS(4512), 1, + ACTIONS(4548), 1, anon_sym_bit_DASHxor2, - ACTIONS(4514), 1, - anon_sym_bit_DASHor2, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2144), 1, + STATE(2143), 1, sym_comment, - ACTIONS(4468), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, + ACTIONS(4534), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4504), 2, + ACTIONS(4544), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4502), 4, + ACTIONS(4538), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4540), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2844), 5, + ACTIONS(2782), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4506), 8, + anon_sym_bit_DASHor2, + ACTIONS(4532), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194140,116 +194123,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [59760] = 19, + [59870] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2967), 1, - sym__newline, - ACTIONS(4476), 1, + ACTIONS(4536), 1, anon_sym_DASH2, - ACTIONS(4484), 1, + ACTIONS(4542), 1, anon_sym_PLUS2, - ACTIONS(4496), 1, - anon_sym_bit_DASHand2, - ACTIONS(4498), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4520), 1, - anon_sym_bit_DASHor2, - ACTIONS(4522), 1, - anon_sym_and2, - STATE(2029), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2145), 1, + STATE(2144), 1, sym_comment, - ACTIONS(4478), 2, + ACTIONS(2846), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4544), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2836), 3, + ACTIONS(2844), 24, + anon_sym_in, + sym__newline, anon_sym_LBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4490), 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(4492), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4486), 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, - [59838] = 18, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [59932] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(2876), 1, + sym__newline, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4474), 1, - anon_sym_PLUS2, ACTIONS(4510), 1, - anon_sym_bit_DASHand2, - ACTIONS(4512), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4514), 1, - anon_sym_bit_DASHor2, - ACTIONS(4516), 1, - anon_sym_and2, - STATE(501), 1, + anon_sym_PLUS2, + STATE(2057), 1, aux_sym__repeat_newline, - STATE(2146), 1, + STATE(2145), 1, sym_comment, - ACTIONS(4468), 2, + ACTIONS(2842), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4504), 2, + ACTIONS(4512), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2844), 4, - sym__newline, + ACTIONS(2840), 23, + anon_sym_in, anon_sym_LBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4502), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4508), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4506), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -194257,117 +194215,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [59914] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(4476), 1, - anon_sym_DASH2, - ACTIONS(4484), 1, - anon_sym_PLUS2, - ACTIONS(4496), 1, - anon_sym_bit_DASHand2, - ACTIONS(4498), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4520), 1, - anon_sym_bit_DASHor2, - ACTIONS(4522), 1, - anon_sym_and2, - ACTIONS(4524), 1, - anon_sym_xor2, - STATE(2030), 1, - aux_sym__repeat_newline, - STATE(2147), 1, - sym_comment, - ACTIONS(2836), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4478), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4480), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4490), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4492), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4486), 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, - [59994] = 19, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [59996] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(4536), 1, anon_sym_DASH2, - ACTIONS(4474), 1, + ACTIONS(4542), 1, anon_sym_PLUS2, - ACTIONS(4510), 1, + ACTIONS(4546), 1, anon_sym_bit_DASHand2, - ACTIONS(4512), 1, + ACTIONS(4548), 1, anon_sym_bit_DASHxor2, - ACTIONS(4514), 1, - anon_sym_bit_DASHor2, - ACTIONS(4516), 1, - anon_sym_and2, - ACTIONS(4518), 1, - anon_sym_xor2, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2148), 1, + STATE(2146), 1, sym_comment, - ACTIONS(4468), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, + ACTIONS(4534), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4504), 2, + ACTIONS(4544), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2844), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4502), 4, + ACTIONS(4538), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4540), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4506), 8, + ACTIONS(2848), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4532), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194376,41 +194282,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60072] = 14, + [60068] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2967), 1, - sym__newline, - ACTIONS(4476), 1, + ACTIONS(4536), 1, anon_sym_DASH2, - ACTIONS(4484), 1, + ACTIONS(4542), 1, anon_sym_PLUS2, - STATE(2031), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2149), 1, + STATE(2147), 1, sym_comment, - ACTIONS(4478), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4534), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4544), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4490), 4, + ACTIONS(4538), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4486), 8, + ACTIONS(2844), 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, @@ -194418,11 +194327,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2836), 11, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -194430,90 +194334,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [60140] = 13, + [60132] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(4536), 1, anon_sym_DASH2, - ACTIONS(4474), 1, + ACTIONS(4542), 1, anon_sym_PLUS2, - STATE(501), 1, + ACTIONS(4546), 1, + anon_sym_bit_DASHand2, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2150), 1, + STATE(2148), 1, sym_comment, - ACTIONS(4468), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, + ACTIONS(4534), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4504), 2, + ACTIONS(4544), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4502), 4, + ACTIONS(4538), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4506), 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(2844), 12, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + ACTIONS(4540), 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, - [60206] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2967), 1, + ACTIONS(2848), 7, sym__newline, - ACTIONS(4476), 1, - anon_sym_DASH2, - ACTIONS(4484), 1, - anon_sym_PLUS2, - STATE(2151), 1, - sym_comment, - STATE(2166), 1, - aux_sym__repeat_newline, - ACTIONS(2838), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4478), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4480), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2836), 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(4532), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -194521,46 +194389,25 @@ 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, - [60268] = 10, + [60202] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, - anon_sym_DASH2, - ACTIONS(4474), 1, - anon_sym_PLUS2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2152), 1, + ACTIONS(2716), 1, + anon_sym_LPAREN2, + ACTIONS(2718), 1, + sym__unquoted_pattern, + STATE(2149), 1, sym_comment, - ACTIONS(2846), 2, + ACTIONS(2714), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4468), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4470), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2844), 26, + anon_sym_PLUS2, + ACTIONS(2712), 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, @@ -194579,58 +194426,66 @@ 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, - [60328] = 15, + [60254] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2967), 1, - sym__newline, - ACTIONS(4476), 1, + ACTIONS(4536), 1, anon_sym_DASH2, - ACTIONS(4484), 1, + ACTIONS(4542), 1, anon_sym_PLUS2, - STATE(2033), 1, + ACTIONS(4546), 1, + anon_sym_bit_DASHand2, + ACTIONS(4548), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4550), 1, + anon_sym_bit_DASHor2, + ACTIONS(4554), 1, + anon_sym_and2, + ACTIONS(4558), 1, + anon_sym_xor2, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2153), 1, + STATE(2150), 1, sym_comment, - ACTIONS(4478), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4534), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4544), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4490), 4, + ACTIONS(2782), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4538), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4492), 4, + ACTIONS(4540), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2836), 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(4486), 8, + ACTIONS(4532), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194639,53 +194494,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60398] = 14, + [60332] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(2876), 1, + sym__newline, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4474), 1, + ACTIONS(4510), 1, anon_sym_PLUS2, - STATE(501), 1, + STATE(2060), 1, aux_sym__repeat_newline, - STATE(2154), 1, + STATE(2151), 1, sym_comment, - ACTIONS(4468), 2, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, + ACTIONS(4502), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4504), 2, + ACTIONS(4512), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4502), 4, + ACTIONS(4506), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2844), 8, - sym__newline, + ACTIONS(2840), 19, + anon_sym_in, 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(4506), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -194693,54 +194540,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60466] = 16, + 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, + [60398] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2967), 1, - sym__newline, - ACTIONS(4476), 1, + ACTIONS(4536), 1, anon_sym_DASH2, - ACTIONS(4484), 1, + ACTIONS(4542), 1, anon_sym_PLUS2, - ACTIONS(4496), 1, - anon_sym_bit_DASHand2, - STATE(2034), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2155), 1, + STATE(2152), 1, sym_comment, - ACTIONS(4478), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4534), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4544), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4490), 4, + ACTIONS(4538), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4492), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2836), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4486), 8, + ACTIONS(4532), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194749,53 +194587,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60538] = 15, + ACTIONS(2782), 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, + [60464] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(4536), 1, anon_sym_DASH2, - ACTIONS(4474), 1, + ACTIONS(4542), 1, anon_sym_PLUS2, - ACTIONS(4510), 1, - anon_sym_bit_DASHand2, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2156), 1, + STATE(2153), 1, sym_comment, - ACTIONS(4468), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, + ACTIONS(4534), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4504), 2, + ACTIONS(4544), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4502), 4, + ACTIONS(4538), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2844), 7, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4506), 8, + ACTIONS(4532), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194804,56 +194640,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60608] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2967), 1, + ACTIONS(2848), 12, sym__newline, - ACTIONS(4476), 1, - anon_sym_DASH2, - ACTIONS(4484), 1, - anon_sym_PLUS2, - ACTIONS(4496), 1, + 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, - ACTIONS(4498), 1, anon_sym_bit_DASHxor2, - STATE(2035), 1, + anon_sym_bit_DASHor2, + [60530] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2986), 1, + sym__newline, + STATE(2123), 1, aux_sym__repeat_newline, - STATE(2157), 1, + STATE(2154), 1, sym_comment, - ACTIONS(4478), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(2764), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(4494), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4490), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4492), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2836), 5, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2762), 28, + anon_sym_in, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4486), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -194861,54 +194685,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60682] = 16, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [60584] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, + ACTIONS(4536), 1, anon_sym_DASH2, - ACTIONS(4474), 1, + ACTIONS(4542), 1, anon_sym_PLUS2, - ACTIONS(4510), 1, + ACTIONS(4546), 1, anon_sym_bit_DASHand2, - ACTIONS(4512), 1, - anon_sym_bit_DASHxor2, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2158), 1, + STATE(2155), 1, sym_comment, - ACTIONS(4468), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, + ACTIONS(4534), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4504), 2, + ACTIONS(4544), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4502), 4, + ACTIONS(4538), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4540), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2844), 6, + ACTIONS(2782), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4506), 8, + ACTIONS(4532), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194917,41 +194755,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60754] = 13, + [60654] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2878), 1, - sym__newline, - ACTIONS(4476), 1, + ACTIONS(4536), 1, anon_sym_DASH2, - ACTIONS(4484), 1, + ACTIONS(4542), 1, anon_sym_PLUS2, - STATE(2037), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2159), 1, + STATE(2156), 1, sym_comment, - ACTIONS(4478), 2, + ACTIONS(2850), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4490), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2728), 19, + ACTIONS(2848), 26, anon_sym_in, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -194963,44 +194792,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, - [60820] = 12, + [60714] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2878), 1, - sym__newline, - ACTIONS(4476), 1, - anon_sym_DASH2, - ACTIONS(4484), 1, - anon_sym_PLUS2, - STATE(2039), 1, - aux_sym__repeat_newline, - STATE(2160), 1, + ACTIONS(1697), 1, + sym__unquoted_pattern, + ACTIONS(2710), 1, + anon_sym_LPAREN2, + STATE(2157), 1, sym_comment, - ACTIONS(2730), 2, + ACTIONS(2708), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4478), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4480), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4494), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2728), 23, + anon_sym_PLUS2, + ACTIONS(2706), 30, anon_sym_in, - anon_sym_LBRACE, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -195019,34 +194842,41 @@ 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, - [60884] = 9, + [60766] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2878), 1, - sym__newline, - STATE(2041), 1, + ACTIONS(4536), 1, + anon_sym_DASH2, + ACTIONS(4542), 1, + anon_sym_PLUS2, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2161), 1, + STATE(2158), 1, sym_comment, - ACTIONS(4478), 2, + ACTIONS(2784), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2730), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2728), 26, + ACTIONS(2782), 26, anon_sym_in, - anon_sym_DASH2, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -195071,26 +194901,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [60942] = 7, + [60826] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2878), 1, - sym__newline, - STATE(2043), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2162), 1, + STATE(2159), 1, sym_comment, - ACTIONS(4480), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2730), 5, + ACTIONS(2788), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2728), 28, + ACTIONS(2786), 29, anon_sym_in, + sym__newline, anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, @@ -195118,56 +194947,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [60996] = 18, + [60878] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2160), 1, + sym_comment, + ACTIONS(1536), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1538), 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, + [60926] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2878), 1, + ACTIONS(2989), 1, sym__newline, - ACTIONS(4476), 1, + ACTIONS(4504), 1, anon_sym_DASH2, - ACTIONS(4484), 1, + ACTIONS(4510), 1, anon_sym_PLUS2, - ACTIONS(4496), 1, + ACTIONS(4514), 1, anon_sym_bit_DASHand2, - ACTIONS(4498), 1, + ACTIONS(4528), 1, anon_sym_bit_DASHxor2, - ACTIONS(4520), 1, - anon_sym_bit_DASHor2, - STATE(2045), 1, + STATE(2099), 1, aux_sym__repeat_newline, - STATE(2163), 1, + STATE(2161), 1, sym_comment, - ACTIONS(4478), 2, + ACTIONS(4470), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4472), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4474), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4502), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4512), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2728), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4490), 4, + ACTIONS(4506), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4492), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4486), 8, + ACTIONS(2794), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4500), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -195176,57 +195048,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [61072] = 19, + [61000] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2878), 1, - sym__newline, - ACTIONS(4476), 1, + ACTIONS(4536), 1, anon_sym_DASH2, - ACTIONS(4484), 1, + ACTIONS(4542), 1, anon_sym_PLUS2, - ACTIONS(4496), 1, - anon_sym_bit_DASHand2, - ACTIONS(4498), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4520), 1, - anon_sym_bit_DASHor2, - ACTIONS(4522), 1, - anon_sym_and2, - STATE(2047), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2164), 1, + STATE(2162), 1, sym_comment, - ACTIONS(4478), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4534), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4544), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2728), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4490), 4, + ACTIONS(4538), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4492), 4, + ACTIONS(4540), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4486), 8, + ACTIONS(2782), 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(4532), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -195235,58 +195102,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [61150] = 20, + [61068] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(4476), 1, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(2163), 1, + sym_comment, + ACTIONS(2610), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2608), 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, + [61118] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4536), 1, anon_sym_DASH2, - ACTIONS(4484), 1, + ACTIONS(4542), 1, anon_sym_PLUS2, - ACTIONS(4496), 1, - anon_sym_bit_DASHand2, - ACTIONS(4498), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4520), 1, - anon_sym_bit_DASHor2, - ACTIONS(4522), 1, - anon_sym_and2, - ACTIONS(4524), 1, - anon_sym_xor2, - STATE(2049), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2165), 1, + STATE(2164), 1, sym_comment, - ACTIONS(2728), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4478), 2, + ACTIONS(4476), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4480), 2, + ACTIONS(4478), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, + ACTIONS(4480), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, + ACTIONS(4534), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4544), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4490), 4, + ACTIONS(4538), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4492), 4, + ACTIONS(4540), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4486), 8, + ACTIONS(2848), 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(4532), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -195295,33 +195201,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [61230] = 10, + [61186] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4466), 1, - anon_sym_DASH2, - ACTIONS(4474), 1, - anon_sym_PLUS2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2166), 1, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, + sym__unquoted_pattern, + STATE(2165), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(2101), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4468), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4470), 2, + anon_sym_PLUS2, + ACTIONS(2099), 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(4472), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2720), 26, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [61238] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, + sym__unquoted_pattern, + STATE(2166), 1, + sym_comment, + ACTIONS(2642), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2640), 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, @@ -195340,6 +195284,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, @@ -195348,13 +195296,244 @@ static const uint16_t ts_small_parse_table[] = { [61290] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2167), 1, + STATE(2167), 1, + sym_comment, + ACTIONS(4628), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(4630), 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, + [61337] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2168), 1, + sym_comment, + ACTIONS(4632), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(4634), 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, + [61384] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2169), 1, + sym_comment, + ACTIONS(2491), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2489), 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, + [61431] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2170), 1, + sym_comment, + ACTIONS(1544), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1546), 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, + [61478] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2856), 1, + anon_sym_DASH2, + ACTIONS(2868), 1, + anon_sym_PLUS2, + ACTIONS(2872), 1, + anon_sym_bit_DASHand2, + ACTIONS(2923), 1, + anon_sym_bit_DASHxor2, + ACTIONS(2960), 1, + anon_sym_and2, + ACTIONS(2962), 1, + anon_sym_xor2, + ACTIONS(2964), 1, + anon_sym_bit_DASHor2, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(4636), 1, + anon_sym_or2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2171), 1, + sym_comment, + ACTIONS(2854), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2858), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(2864), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2866), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2870), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2860), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2862), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2852), 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, + [61557] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2172), 1, sym_comment, - ACTIONS(2350), 3, + ACTIONS(1596), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2348), 33, + ACTIONS(1598), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195388,16 +195567,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61337] = 4, + [61604] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2168), 1, + STATE(2173), 1, sym_comment, - ACTIONS(2586), 3, + ACTIONS(1490), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2584), 33, + ACTIONS(1492), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195431,16 +195610,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61384] = 4, + [61651] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2169), 1, + STATE(2174), 1, sym_comment, - ACTIONS(2590), 3, + ACTIONS(1906), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2588), 33, + ACTIONS(1904), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195474,16 +195653,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61431] = 4, + [61698] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2170), 1, + STATE(2175), 1, sym_comment, - ACTIONS(1915), 3, + ACTIONS(2415), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1913), 33, + ACTIONS(2413), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195517,16 +195696,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61478] = 4, + [61745] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2171), 1, + STATE(2176), 1, sym_comment, - ACTIONS(2594), 3, + ACTIONS(2160), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2592), 33, + ACTIONS(2158), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195560,16 +195739,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61525] = 4, + [61792] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2172), 1, + STATE(2177), 1, sym_comment, - ACTIONS(1527), 3, + ACTIONS(1610), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1529), 33, + ACTIONS(1736), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195603,16 +195782,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61572] = 4, + [61839] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2173), 1, + STATE(2178), 1, sym_comment, - ACTIONS(4624), 3, + ACTIONS(2421), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4626), 33, + ACTIONS(2419), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195646,16 +195825,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61619] = 4, + [61886] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2174), 1, + STATE(2179), 1, sym_comment, - ACTIONS(2387), 3, + ACTIONS(2487), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2385), 33, + ACTIONS(2485), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195689,16 +195868,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61666] = 4, + [61933] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2175), 1, + STATE(2180), 1, sym_comment, - ACTIONS(2391), 3, + ACTIONS(2415), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2389), 33, + ACTIONS(2413), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195732,16 +195911,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61713] = 4, + [61980] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2176), 1, + STATE(2181), 1, sym_comment, - ACTIONS(2626), 3, + ACTIONS(811), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2628), 33, + ACTIONS(910), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195767,7 +195946,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -195775,16 +195954,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61760] = 4, + [62027] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2177), 1, + STATE(2182), 1, sym_comment, - ACTIONS(2395), 3, + ACTIONS(1540), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2393), 33, + ACTIONS(1542), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195818,16 +195997,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61807] = 4, + [62074] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2178), 1, + STATE(2183), 1, sym_comment, - ACTIONS(1486), 3, + ACTIONS(2407), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1488), 33, + ACTIONS(2405), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195861,16 +196040,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61854] = 4, + [62121] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2179), 1, + STATE(2184), 1, sym_comment, - ACTIONS(2399), 3, + ACTIONS(2658), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2397), 33, + ACTIONS(2660), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195896,7 +196075,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, @@ -195904,16 +196083,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61901] = 4, + [62168] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2180), 1, + STATE(2185), 1, sym_comment, - ACTIONS(2658), 3, + ACTIONS(1574), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2656), 33, + ACTIONS(1576), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195947,16 +196126,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61948] = 4, + [62215] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2181), 1, + STATE(2186), 1, sym_comment, - ACTIONS(1935), 3, + ACTIONS(2483), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1933), 33, + ACTIONS(2481), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195990,16 +196169,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61995] = 4, + [62262] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2182), 1, + STATE(2187), 1, sym_comment, - ACTIONS(2415), 3, + ACTIONS(1550), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2413), 33, + ACTIONS(1552), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196033,16 +196212,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62042] = 4, + [62309] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2183), 1, + STATE(2188), 1, + sym_comment, + ACTIONS(2111), 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, + [62354] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(3878), 1, + anon_sym_DASH2, + ACTIONS(3890), 1, + anon_sym_PLUS2, + ACTIONS(3894), 1, + anon_sym_bit_DASHand2, + ACTIONS(3934), 1, + anon_sym_and2, + ACTIONS(3936), 1, + anon_sym_xor2, + ACTIONS(3938), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3940), 1, + anon_sym_bit_DASHor2, + ACTIONS(4638), 1, + anon_sym_or2, + STATE(2189), 1, + sym_comment, + STATE(2192), 1, + aux_sym__repeat_newline, + ACTIONS(3876), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3880), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3886), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3888), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3892), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3882), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3884), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3874), 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, + [62433] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2190), 1, sym_comment, - ACTIONS(1531), 3, + ACTIONS(2443), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1533), 33, + ACTIONS(2441), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196076,16 +196356,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62089] = 4, + [62480] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2184), 1, + STATE(2191), 1, sym_comment, - ACTIONS(2425), 3, + ACTIONS(2618), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2423), 33, + ACTIONS(2616), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196119,60 +196399,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62136] = 5, + [62527] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4628), 1, + ACTIONS(2966), 1, sym__newline, - STATE(2185), 2, + ACTIONS(3896), 1, + anon_sym_DASH2, + ACTIONS(3904), 1, + anon_sym_PLUS2, + ACTIONS(3916), 1, + anon_sym_bit_DASHand2, + ACTIONS(3932), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3944), 1, + anon_sym_bit_DASHor2, + ACTIONS(3946), 1, + anon_sym_and2, + ACTIONS(3948), 1, + anon_sym_xor2, + ACTIONS(4640), 1, + anon_sym_or2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2192), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3782), 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(3784), 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, - [62185] = 4, + ACTIONS(3898), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3900), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3902), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3908), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3914), 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(3912), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3906), 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, + [62606] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2186), 1, + STATE(2193), 1, sym_comment, - ACTIONS(1541), 3, + ACTIONS(2231), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1543), 33, + ACTIONS(2229), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196206,16 +196501,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62232] = 4, + [62653] = 20, ACTIONS(3), 1, anon_sym_POUND, - STATE(2187), 1, + ACTIONS(2881), 1, + anon_sym_DASH2, + ACTIONS(2893), 1, + anon_sym_PLUS2, + ACTIONS(2897), 1, + anon_sym_bit_DASHand2, + ACTIONS(2899), 1, + anon_sym_bit_DASHxor2, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(2968), 1, + anon_sym_and2, + ACTIONS(2970), 1, + anon_sym_xor2, + ACTIONS(2972), 1, + anon_sym_bit_DASHor2, + ACTIONS(4642), 1, + anon_sym_or2, + STATE(2171), 1, + aux_sym__repeat_newline, + STATE(2194), 1, + sym_comment, + ACTIONS(2879), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2883), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(2889), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2891), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2895), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2885), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2887), 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, + [62732] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2195), 1, sym_comment, - ACTIONS(1545), 3, + ACTIONS(1522), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1547), 33, + ACTIONS(1524), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196249,16 +196603,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62279] = 4, + [62779] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2188), 1, + STATE(2196), 1, sym_comment, - ACTIONS(2429), 3, + ACTIONS(4644), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2427), 33, + ACTIONS(4646), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196292,16 +196646,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62326] = 4, + [62826] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2189), 1, + STATE(2197), 1, sym_comment, - ACTIONS(2469), 3, + ACTIONS(1902), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2467), 33, + ACTIONS(1900), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196335,61 +196689,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62373] = 6, - ACTIONS(105), 1, + [62873] = 20, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(4536), 1, + anon_sym_DASH2, ACTIONS(4542), 1, - sym__entry_separator, - ACTIONS(4544), 1, - sym_raw_string_begin, - STATE(2132), 1, - aux_sym__types_body_repeat2, - STATE(2190), 1, + anon_sym_PLUS2, + ACTIONS(4546), 1, + anon_sym_bit_DASHand2, + ACTIONS(4548), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4550), 1, + anon_sym_bit_DASHor2, + ACTIONS(4554), 1, + anon_sym_and2, + ACTIONS(4558), 1, + anon_sym_xor2, + ACTIONS(4648), 1, + anon_sym_or2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2198), 1, sym_comment, - ACTIONS(4538), 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, - [62424] = 4, + ACTIONS(4476), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4478), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4480), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4534), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4544), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4538), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4540), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4532), 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, + [62952] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2191), 1, + STATE(2199), 1, sym_comment, - ACTIONS(1911), 3, + ACTIONS(2555), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1909), 33, + ACTIONS(2553), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196423,16 +196791,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62471] = 4, + [62999] = 20, ACTIONS(3), 1, anon_sym_POUND, - STATE(2192), 1, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(4504), 1, + anon_sym_DASH2, + ACTIONS(4510), 1, + anon_sym_PLUS2, + ACTIONS(4514), 1, + anon_sym_bit_DASHand2, + ACTIONS(4528), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4530), 1, + anon_sym_bit_DASHor2, + ACTIONS(4552), 1, + anon_sym_and2, + ACTIONS(4556), 1, + anon_sym_xor2, + ACTIONS(4650), 1, + anon_sym_or2, + STATE(2198), 1, + aux_sym__repeat_newline, + STATE(2200), 1, + sym_comment, + ACTIONS(4470), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4472), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4474), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4502), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4512), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4506), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4508), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4500), 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, + [63078] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2201), 1, sym_comment, - ACTIONS(2363), 3, + ACTIONS(2543), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2361), 33, + ACTIONS(2541), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196466,16 +196893,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62518] = 4, + [63125] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2193), 1, + STATE(2202), 1, sym_comment, - ACTIONS(1903), 3, + ACTIONS(2602), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1901), 33, + ACTIONS(2600), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196509,16 +196936,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62565] = 4, + [63172] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2194), 1, + STATE(2203), 1, sym_comment, - ACTIONS(4631), 3, + ACTIONS(2590), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4633), 33, + ACTIONS(2588), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196552,15 +196979,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62612] = 4, + [63219] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(2195), 1, - sym_comment, - ACTIONS(3780), 2, - sym_raw_string_begin, + ACTIONS(4486), 1, sym__entry_separator, - ACTIONS(3778), 34, + ACTIONS(4488), 1, + sym_raw_string_begin, + STATE(2021), 1, + aux_sym__types_body_repeat2, + STATE(2204), 1, + sym_comment, + ACTIONS(4482), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -196568,7 +196998,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, @@ -196595,16 +197024,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, aux_sym__unquoted_in_list_token1, - [62659] = 4, + [63270] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2196), 1, + STATE(2205), 1, sym_comment, - ACTIONS(4635), 3, + ACTIONS(2539), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4637), 33, + ACTIONS(2537), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196638,59 +197067,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62706] = 4, + [63317] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2197), 1, + ACTIONS(1840), 1, + sym__unquoted_pattern, + STATE(2206), 1, sym_comment, - ACTIONS(4639), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(811), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(910), 30, anon_sym_in, - ACTIONS(4641), 33, + 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, + [63366] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2207), 1, + sym_comment, + ACTIONS(3793), 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(3791), 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, - [62753] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [63413] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2198), 1, + STATE(2208), 1, sym_comment, - ACTIONS(2666), 3, + ACTIONS(1896), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2664), 33, + ACTIONS(1894), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196724,16 +197197,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62800] = 4, + [63460] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2199), 1, + STATE(2209), 1, sym_comment, - ACTIONS(4643), 3, + ACTIONS(2475), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4645), 33, + ACTIONS(2473), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196767,102 +197240,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62847] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2200), 1, - sym_comment, - ACTIONS(2126), 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, - [62892] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1806), 1, - sym__unquoted_pattern, - STATE(2201), 1, - sym_comment, - ACTIONS(811), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(914), 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, - [62941] = 4, + [63507] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2202), 1, + STATE(2210), 1, sym_comment, - ACTIONS(1535), 3, + ACTIONS(2479), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1537), 33, + ACTIONS(2477), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196896,16 +197283,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62988] = 4, + [63554] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2203), 1, + STATE(2211), 1, sym_comment, - ACTIONS(2457), 3, + ACTIONS(2535), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2455), 33, + ACTIONS(2533), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -196939,75 +197326,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63035] = 20, + [63601] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(4652), 1, sym__newline, - ACTIONS(4476), 1, - anon_sym_DASH2, - ACTIONS(4484), 1, - anon_sym_PLUS2, - ACTIONS(4496), 1, - anon_sym_bit_DASHand2, - ACTIONS(4498), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4520), 1, - anon_sym_bit_DASHor2, - ACTIONS(4522), 1, - anon_sym_and2, - ACTIONS(4524), 1, - anon_sym_xor2, - ACTIONS(4647), 1, - anon_sym_or2, - STATE(2204), 1, + STATE(2212), 2, sym_comment, - STATE(2207), 1, - aux_sym__repeat_newline, - ACTIONS(4478), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4480), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4482), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4488), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4490), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4492), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4486), 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, - [63114] = 4, + aux_sym__types_body_repeat1, + ACTIONS(3784), 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(3786), 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, + [63650] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2205), 1, + STATE(2213), 1, sym_comment, - ACTIONS(2457), 3, + ACTIONS(2680), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2455), 33, + ACTIONS(2678), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -197041,16 +197413,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63161] = 4, + [63697] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2206), 1, + STATE(2214), 1, sym_comment, - ACTIONS(2473), 3, + ACTIONS(4655), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2471), 33, + ACTIONS(4657), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -197084,75 +197456,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63208] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(4466), 1, - anon_sym_DASH2, - ACTIONS(4474), 1, - anon_sym_PLUS2, - ACTIONS(4510), 1, - anon_sym_bit_DASHand2, - ACTIONS(4512), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4514), 1, - anon_sym_bit_DASHor2, - ACTIONS(4516), 1, - anon_sym_and2, - ACTIONS(4518), 1, - anon_sym_xor2, - ACTIONS(4649), 1, - anon_sym_or2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2207), 1, - sym_comment, - ACTIONS(4468), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4470), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4472), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4500), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4504), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4502), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4508), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4506), 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, - [63287] = 4, + [63744] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2208), 1, + STATE(2215), 1, sym_comment, - ACTIONS(811), 3, + ACTIONS(2688), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(914), 33, + ACTIONS(2686), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -197186,16 +197499,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63334] = 4, + [63791] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2209), 1, + STATE(2216), 1, sym_comment, - ACTIONS(1616), 3, + ACTIONS(1910), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1738), 33, + ACTIONS(1908), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -197229,16 +197542,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63381] = 4, + [63838] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2210), 1, + STATE(2217), 1, sym_comment, - ACTIONS(2279), 3, + ACTIONS(2594), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2277), 33, + ACTIONS(2592), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -197272,16 +197585,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63428] = 4, + [63885] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2211), 1, + STATE(2218), 1, sym_comment, - ACTIONS(2461), 3, + ACTIONS(2249), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2459), 33, + ACTIONS(2247), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -197315,16 +197628,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63475] = 4, + [63932] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2212), 1, + STATE(2219), 1, sym_comment, - ACTIONS(2465), 3, + ACTIONS(4659), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2463), 33, + ACTIONS(4661), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -197347,154 +197660,652 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_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_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, + [63979] = 27, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1444), 1, + anon_sym_DQUOTE, + ACTIONS(1446), 1, + anon_sym_SQUOTE, + ACTIONS(1448), 1, + anon_sym_BQUOTE, + ACTIONS(1458), 1, + sym_raw_string_begin, + ACTIONS(3172), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4665), 1, + anon_sym_null, + ACTIONS(4669), 1, + sym__newline, + ACTIONS(4671), 1, + anon_sym_GT2, + ACTIONS(4673), 1, + anon_sym_DOT_DOT, + ACTIONS(4677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4683), 1, + sym_val_date, + STATE(2220), 1, + sym_comment, + STATE(2272), 1, + aux_sym__types_body_repeat1, + STATE(2299), 1, + aux_sym__collection_body_repeat1, + STATE(4188), 1, + sym__val_number_decimal, + STATE(4707), 1, + sym__collection_entry, + STATE(5505), 1, + sym_val_bool, + STATE(5518), 1, + sym__collection_body, + ACTIONS(4663), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4675), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4681), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4670), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5515), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4667), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3806), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [64071] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4689), 1, + aux_sym_cmd_identifier_token6, + STATE(2221), 1, + sym_comment, + ACTIONS(4687), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4685), 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, + [64119] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4695), 1, + aux_sym_cmd_identifier_token6, + STATE(2222), 1, + sym_comment, + ACTIONS(4693), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4691), 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, + [64167] = 27, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1444), 1, + anon_sym_DQUOTE, + ACTIONS(1446), 1, + anon_sym_SQUOTE, + ACTIONS(1448), 1, + anon_sym_BQUOTE, + ACTIONS(1458), 1, + sym_raw_string_begin, + ACTIONS(3172), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4665), 1, + anon_sym_null, + ACTIONS(4669), 1, + sym__newline, + ACTIONS(4673), 1, + anon_sym_DOT_DOT, + ACTIONS(4677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4683), 1, + sym_val_date, + ACTIONS(4697), 1, + anon_sym_GT2, + STATE(2223), 1, + sym_comment, + STATE(2272), 1, + aux_sym__types_body_repeat1, + STATE(2299), 1, + aux_sym__collection_body_repeat1, + STATE(4188), 1, + sym__val_number_decimal, + STATE(4707), 1, + sym__collection_entry, + STATE(5505), 1, + sym_val_bool, + STATE(5527), 1, + sym__collection_body, + ACTIONS(4663), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4675), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4681), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4670), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5515), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4667), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3806), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [64259] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4703), 1, + anon_sym_DASH2, + ACTIONS(4715), 1, + anon_sym_PLUS2, + ACTIONS(4719), 1, + anon_sym_bit_DASHand2, + STATE(2224), 1, + sym_comment, + ACTIONS(4701), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4705), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4711), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4713), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4717), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4707), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4709), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2624), 6, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4699), 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, + [64325] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1244), 1, + aux_sym_cmd_identifier_token6, + STATE(2225), 1, + sym_comment, + ACTIONS(1242), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1240), 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, + [64373] = 27, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1444), 1, + anon_sym_DQUOTE, + ACTIONS(1446), 1, + anon_sym_SQUOTE, + ACTIONS(1448), 1, + anon_sym_BQUOTE, + ACTIONS(1458), 1, + sym_raw_string_begin, + ACTIONS(3172), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4665), 1, + anon_sym_null, + ACTIONS(4669), 1, + sym__newline, + ACTIONS(4673), 1, + anon_sym_DOT_DOT, + ACTIONS(4677), 1, aux_sym__val_number_decimal_token1, + ACTIONS(4679), 1, aux_sym__val_number_decimal_token2, + ACTIONS(4683), 1, + sym_val_date, + ACTIONS(4721), 1, + anon_sym_GT2, + STATE(2226), 1, + sym_comment, + STATE(2272), 1, + aux_sym__types_body_repeat1, + STATE(2299), 1, + aux_sym__collection_body_repeat1, + STATE(4188), 1, + sym__val_number_decimal, + STATE(4707), 1, + sym__collection_entry, + STATE(5505), 1, + sym_val_bool, + STATE(5507), 1, + sym__collection_body, + ACTIONS(4663), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4675), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [63522] = 4, + STATE(4670), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5515), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4667), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3806), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [64465] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4727), 1, + aux_sym_cmd_identifier_token6, + STATE(2227), 1, + sym_comment, + ACTIONS(4725), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4723), 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, + [64513] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2213), 1, + STATE(2228), 1, sym_comment, - ACTIONS(2582), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2580), 33, + ACTIONS(2658), 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(2660), 28, 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, + 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, - [63569] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [64559] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1252), 1, + aux_sym_cmd_identifier_token6, + STATE(2229), 1, + sym_comment, + ACTIONS(1250), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1248), 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, + [64607] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4733), 1, + aux_sym_cmd_identifier_token6, + STATE(2230), 1, + sym_comment, + ACTIONS(4731), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4729), 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, + [64655] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2214), 1, + ACTIONS(4735), 1, + sym__newline, + STATE(2231), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(2712), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2710), 33, + ACTIONS(1943), 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(1938), 25, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_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, + 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, - [63616] = 20, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [64703] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(3870), 1, + ACTIONS(4742), 1, anon_sym_DASH2, - ACTIONS(3878), 1, + ACTIONS(4754), 1, anon_sym_PLUS2, - ACTIONS(3906), 1, + ACTIONS(4758), 1, anon_sym_bit_DASHand2, - ACTIONS(3908), 1, + ACTIONS(4760), 1, anon_sym_bit_DASHxor2, - ACTIONS(3910), 1, - anon_sym_bit_DASHor2, - ACTIONS(3912), 1, - anon_sym_and2, - ACTIONS(3914), 1, - anon_sym_xor2, - ACTIONS(4651), 1, - anon_sym_or2, - STATE(2215), 1, + STATE(2232), 1, sym_comment, - STATE(2216), 1, - aux_sym__repeat_newline, - ACTIONS(3872), 2, + ACTIONS(4740), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4744), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3874), 2, + ACTIONS(4750), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3876), 2, + ACTIONS(4752), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3880), 2, + ACTIONS(4756), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3898), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3900), 4, + ACTIONS(4746), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3904), 4, + ACTIONS(4748), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3902), 8, + ACTIONS(2624), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4738), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -197503,116 +198314,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [63695] = 20, + [64771] = 27, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(1444), 1, + anon_sym_DQUOTE, + ACTIONS(1446), 1, + anon_sym_SQUOTE, + ACTIONS(1448), 1, + anon_sym_BQUOTE, + ACTIONS(1458), 1, + sym_raw_string_begin, + ACTIONS(3172), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4665), 1, + anon_sym_null, + ACTIONS(4669), 1, sym__newline, - ACTIONS(3924), 1, + ACTIONS(4673), 1, + anon_sym_DOT_DOT, + ACTIONS(4677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4683), 1, + sym_val_date, + ACTIONS(4762), 1, + anon_sym_GT2, + STATE(2233), 1, + sym_comment, + STATE(2272), 1, + aux_sym__types_body_repeat1, + STATE(2299), 1, + aux_sym__collection_body_repeat1, + STATE(4188), 1, + sym__val_number_decimal, + STATE(4707), 1, + sym__collection_entry, + STATE(5352), 1, + sym__collection_body, + STATE(5505), 1, + sym_val_bool, + ACTIONS(4663), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4675), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4681), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4670), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5515), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4667), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3806), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [64863] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4742), 1, anon_sym_DASH2, - ACTIONS(3934), 1, + ACTIONS(4754), 1, anon_sym_PLUS2, - ACTIONS(3942), 1, + ACTIONS(4758), 1, anon_sym_bit_DASHand2, - ACTIONS(3944), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3946), 1, - anon_sym_bit_DASHor2, - ACTIONS(3948), 1, - anon_sym_and2, - ACTIONS(3950), 1, - anon_sym_xor2, - ACTIONS(4653), 1, - anon_sym_or2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2216), 1, + STATE(2234), 1, sym_comment, - ACTIONS(3922), 2, + ACTIONS(4740), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3926), 2, + ACTIONS(4744), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3930), 2, + ACTIONS(4750), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3932), 2, + ACTIONS(4752), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3936), 2, + ACTIONS(4756), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3928), 4, + ACTIONS(4746), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3940), 4, + ACTIONS(4748), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3938), 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, - [63774] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2848), 1, - anon_sym_DASH2, - ACTIONS(2856), 1, - anon_sym_PLUS2, - ACTIONS(2862), 1, + ACTIONS(2624), 6, + anon_sym_LBRACE, anon_sym_and2, - ACTIONS(2870), 1, - anon_sym_bit_DASHand2, - ACTIONS(2872), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2874), 1, - anon_sym_bit_DASHor2, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(2911), 1, anon_sym_xor2, - ACTIONS(4655), 1, anon_sym_or2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2217), 1, - sym_comment, - ACTIONS(2850), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2852), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2854), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2860), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2868), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2864), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2866), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2858), 8, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4738), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -197621,57 +198431,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [63853] = 20, + [64929] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1260), 1, + aux_sym_cmd_identifier_token6, + STATE(2235), 1, + sym_comment, + ACTIONS(1258), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1256), 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, + [64977] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2883), 1, + ACTIONS(4703), 1, anon_sym_DASH2, - ACTIONS(2895), 1, + ACTIONS(4715), 1, anon_sym_PLUS2, - ACTIONS(2899), 1, + ACTIONS(4719), 1, anon_sym_bit_DASHand2, - ACTIONS(2901), 1, + ACTIONS(4764), 1, anon_sym_bit_DASHxor2, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(2905), 1, - anon_sym_and2, - ACTIONS(2907), 1, - anon_sym_xor2, - ACTIONS(2909), 1, - anon_sym_bit_DASHor2, - ACTIONS(4657), 1, - anon_sym_or2, - STATE(2217), 1, - aux_sym__repeat_newline, - STATE(2218), 1, + STATE(2236), 1, sym_comment, - ACTIONS(2881), 2, + ACTIONS(4701), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2885), 2, + ACTIONS(4705), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2891), 2, + ACTIONS(4711), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2893), 2, + ACTIONS(4713), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2897), 2, + ACTIONS(4717), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2887), 4, + ACTIONS(4707), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2889), 4, + ACTIONS(4709), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2876), 8, + ACTIONS(2624), 5, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4699), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -197680,93 +198527,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [63932] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2219), 1, - sym_comment, - ACTIONS(1600), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1602), 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, - [63979] = 14, + [65045] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4663), 1, + ACTIONS(4703), 1, anon_sym_DASH2, - ACTIONS(4675), 1, + ACTIONS(4715), 1, anon_sym_PLUS2, - ACTIONS(4679), 1, - anon_sym_bit_DASHand2, - STATE(2220), 1, + STATE(2237), 1, sym_comment, - ACTIONS(4661), 2, + ACTIONS(4701), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4665), 2, + ACTIONS(4705), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4671), 2, + ACTIONS(4711), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4673), 2, + ACTIONS(4713), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4677), 2, + ACTIONS(4717), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4667), 4, + ACTIONS(4707), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4669), 4, + ACTIONS(4709), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2700), 6, + ACTIONS(2624), 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(4659), 8, + ACTIONS(4699), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -197775,68 +198578,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64045] = 7, + [65109] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(2221), 1, + ACTIONS(4703), 1, + anon_sym_DASH2, + ACTIONS(4715), 1, + anon_sym_PLUS2, + STATE(2238), 1, sym_comment, - ACTIONS(4665), 2, + ACTIONS(2626), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4705), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4671), 2, + ACTIONS(4711), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4673), 2, + ACTIONS(4713), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2702), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2700), 26, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [64097] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2222), 1, - sym_comment, - ACTIONS(4671), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2702), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2700), 28, + ACTIONS(2624), 25, anon_sym_in, - anon_sym_DASH2, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -197856,59 +198620,54 @@ 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, - [64145] = 16, + [65165] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4663), 1, + ACTIONS(4742), 1, anon_sym_DASH2, - ACTIONS(4675), 1, + ACTIONS(4754), 1, anon_sym_PLUS2, - ACTIONS(4679), 1, - anon_sym_bit_DASHand2, - ACTIONS(4681), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4683), 1, - anon_sym_bit_DASHor2, - STATE(2223), 1, + STATE(2239), 1, sym_comment, - ACTIONS(4661), 2, + ACTIONS(4740), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4665), 2, + ACTIONS(4744), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4671), 2, + ACTIONS(4750), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4673), 2, + ACTIONS(4752), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4677), 2, + ACTIONS(4756), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2700), 4, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4667), 4, + ACTIONS(4746), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4669), 4, + ACTIONS(4748), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4659), 8, + ACTIONS(2624), 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(4738), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -197917,53 +198676,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64215] = 17, + [65229] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4663), 1, + ACTIONS(4703), 1, anon_sym_DASH2, - ACTIONS(4675), 1, + ACTIONS(4715), 1, anon_sym_PLUS2, - ACTIONS(4679), 1, - anon_sym_bit_DASHand2, - ACTIONS(4681), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4683), 1, - anon_sym_bit_DASHor2, - ACTIONS(4685), 1, - anon_sym_and2, - STATE(2224), 1, + STATE(2240), 1, sym_comment, - ACTIONS(4661), 2, + ACTIONS(4701), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4665), 2, + ACTIONS(4705), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4671), 2, + ACTIONS(4711), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4673), 2, + ACTIONS(4713), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4677), 2, + ACTIONS(4717), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2700), 3, - anon_sym_EQ_GT, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4667), 4, + ACTIONS(4707), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4669), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4659), 8, + ACTIONS(4699), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -197972,166 +198714,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64287] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - anon_sym_DASH2, - ACTIONS(4695), 1, - anon_sym_PLUS2, - STATE(2225), 1, - sym_comment, - ACTIONS(2702), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4689), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4691), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4693), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2700), 25, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(2624), 11, + 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, - [64343] = 27, + [65291] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1440), 1, - anon_sym_DQUOTE, - ACTIONS(1442), 1, - anon_sym_SQUOTE, - ACTIONS(1444), 1, - anon_sym_BQUOTE, - ACTIONS(1454), 1, - sym_raw_string_begin, - ACTIONS(3151), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4699), 1, - anon_sym_null, ACTIONS(4703), 1, - sym__newline, - ACTIONS(4705), 1, - anon_sym_GT2, - ACTIONS(4707), 1, - anon_sym_DOT_DOT, - ACTIONS(4711), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4713), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4717), 1, - sym_val_date, - STATE(2226), 1, - sym_comment, - STATE(2271), 1, - aux_sym__types_body_repeat1, - STATE(2297), 1, - aux_sym__collection_body_repeat1, - STATE(4054), 1, - sym__val_number_decimal, - STATE(4745), 1, - sym__collection_entry, - STATE(5402), 1, - sym_val_bool, - STATE(5412), 1, - sym__collection_body, - ACTIONS(4697), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4709), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4715), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4465), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5228), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4701), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3776), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [64435] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4663), 1, anon_sym_DASH2, - ACTIONS(4675), 1, + ACTIONS(4715), 1, anon_sym_PLUS2, - ACTIONS(4679), 1, + ACTIONS(4719), 1, anon_sym_bit_DASHand2, - ACTIONS(4681), 1, + ACTIONS(4764), 1, anon_sym_bit_DASHxor2, - ACTIONS(4683), 1, - anon_sym_bit_DASHor2, - ACTIONS(4685), 1, + ACTIONS(4766), 1, anon_sym_and2, - ACTIONS(4719), 1, - anon_sym_xor2, - STATE(2227), 1, + ACTIONS(4768), 1, + anon_sym_bit_DASHor2, + STATE(2241), 1, sym_comment, - ACTIONS(2700), 2, - anon_sym_EQ_GT, - anon_sym_or2, - ACTIONS(4661), 2, + ACTIONS(4701), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4665), 2, + ACTIONS(4705), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4671), 2, + ACTIONS(4711), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4673), 2, + ACTIONS(4713), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4677), 2, + ACTIONS(4717), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4667), 4, + ACTIONS(2624), 3, + anon_sym_EQ_GT, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4707), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4669), 4, + ACTIONS(4709), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4659), 8, + ACTIONS(4699), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -198140,92 +198781,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64509] = 17, + [65363] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4774), 1, + aux_sym_cmd_identifier_token6, + STATE(2242), 1, + sym_comment, + ACTIONS(4772), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4770), 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, + [65411] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4687), 1, + ACTIONS(4742), 1, anon_sym_DASH2, - ACTIONS(4695), 1, + ACTIONS(4754), 1, anon_sym_PLUS2, - ACTIONS(4725), 1, - anon_sym_and2, - ACTIONS(4733), 1, - anon_sym_bit_DASHand2, - ACTIONS(4735), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4737), 1, - anon_sym_bit_DASHor2, - STATE(2228), 1, + STATE(2243), 1, sym_comment, - ACTIONS(4689), 2, + ACTIONS(2626), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4744), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4691), 2, + ACTIONS(4750), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4693), 2, + ACTIONS(4752), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4723), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4731), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2700), 3, + ACTIONS(2624), 25, + anon_sym_in, anon_sym_LBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4727), 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(4729), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4721), 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, - [64581] = 12, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [65467] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4663), 1, + ACTIONS(4703), 1, anon_sym_DASH2, - ACTIONS(4675), 1, + ACTIONS(4715), 1, anon_sym_PLUS2, - STATE(2229), 1, + STATE(2244), 1, sym_comment, - ACTIONS(4661), 2, + ACTIONS(4701), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4665), 2, + ACTIONS(4705), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4671), 2, + ACTIONS(4711), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4673), 2, + ACTIONS(4713), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4677), 2, + ACTIONS(4717), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4667), 4, + ACTIONS(4707), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4659), 8, + ACTIONS(2624), 19, anon_sym_in, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -198233,11 +198913,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2700), 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, @@ -198245,28 +198920,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [64643] = 9, + [65527] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4663), 1, + ACTIONS(4703), 1, anon_sym_DASH2, - ACTIONS(4675), 1, + ACTIONS(4715), 1, anon_sym_PLUS2, - STATE(2230), 1, + STATE(2245), 1, sym_comment, - ACTIONS(2702), 2, + ACTIONS(2626), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4665), 2, + ACTIONS(4705), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4671), 2, + ACTIONS(4711), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4673), 2, + ACTIONS(4713), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2700), 25, + ACTIONS(4717), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2624), 23, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -198287,55 +198965,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, - [64699] = 13, + [65585] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4687), 1, - anon_sym_DASH2, - ACTIONS(4695), 1, - anon_sym_PLUS2, - STATE(2231), 1, + STATE(2246), 1, sym_comment, - ACTIONS(4689), 2, + ACTIONS(4705), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4691), 2, + ACTIONS(4711), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4693), 2, + ACTIONS(4713), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4723), 2, + ACTIONS(2626), 3, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4731), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4727), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4729), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2700), 7, - anon_sym_LBRACE, + anon_sym_PLUS2, + ACTIONS(2624), 26, + anon_sym_in, + anon_sym_DASH2, + 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(4721), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -198343,103 +199000,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64763] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4663), 1, - anon_sym_DASH2, - ACTIONS(4675), 1, - anon_sym_PLUS2, - STATE(2232), 1, - sym_comment, - ACTIONS(4661), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4665), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4671), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4673), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4677), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4667), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4669), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2700), 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(4659), 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, - [64827] = 15, + [65637] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4663), 1, + ACTIONS(4742), 1, anon_sym_DASH2, - ACTIONS(4675), 1, + ACTIONS(4754), 1, anon_sym_PLUS2, - ACTIONS(4679), 1, - anon_sym_bit_DASHand2, - ACTIONS(4681), 1, - anon_sym_bit_DASHxor2, - STATE(2233), 1, + STATE(2247), 1, sym_comment, - ACTIONS(4661), 2, + ACTIONS(2626), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4665), 2, + ACTIONS(4744), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4671), 2, + ACTIONS(4750), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4673), 2, + ACTIONS(4752), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4677), 2, + ACTIONS(4756), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4667), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4669), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2700), 5, - anon_sym_EQ_GT, + ACTIONS(2624), 23, + anon_sym_in, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4659), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -198447,106 +199050,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64895] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - anon_sym_DASH2, - ACTIONS(4695), 1, - anon_sym_PLUS2, - ACTIONS(4733), 1, - anon_sym_bit_DASHand2, - STATE(2234), 1, - sym_comment, - ACTIONS(4689), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4691), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4693), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4723), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4731), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4727), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4729), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2700), 6, - 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(4721), 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, - [64961] = 18, + [65695] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4687), 1, + ACTIONS(4742), 1, anon_sym_DASH2, - ACTIONS(4695), 1, + ACTIONS(4754), 1, anon_sym_PLUS2, - ACTIONS(4725), 1, - anon_sym_and2, - ACTIONS(4733), 1, - anon_sym_bit_DASHand2, - ACTIONS(4735), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4737), 1, - anon_sym_bit_DASHor2, - ACTIONS(4739), 1, - anon_sym_xor2, - STATE(2235), 1, + STATE(2248), 1, sym_comment, - ACTIONS(2700), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4689), 2, + ACTIONS(4740), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4744), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4691), 2, + ACTIONS(4750), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4693), 2, + ACTIONS(4752), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4723), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4731), 2, + ACTIONS(4756), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4727), 4, + ACTIONS(4746), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4729), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4721), 8, + ACTIONS(4738), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -198555,210 +199099,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65035] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1240), 1, - aux_sym_cmd_identifier_token6, - STATE(2236), 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, - [65083] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - anon_sym_DASH2, - ACTIONS(4695), 1, - anon_sym_PLUS2, - STATE(2237), 1, - sym_comment, - ACTIONS(4689), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4691), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4693), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4723), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4731), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4727), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2700), 19, - anon_sym_in, + ACTIONS(2624), 11, 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, - [65143] = 27, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1440), 1, - anon_sym_DQUOTE, - ACTIONS(1442), 1, - anon_sym_SQUOTE, - ACTIONS(1444), 1, - anon_sym_BQUOTE, - ACTIONS(1454), 1, - sym_raw_string_begin, - ACTIONS(3151), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4699), 1, - anon_sym_null, - ACTIONS(4703), 1, - sym__newline, - ACTIONS(4707), 1, - anon_sym_DOT_DOT, - ACTIONS(4711), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4713), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4717), 1, - sym_val_date, - ACTIONS(4741), 1, - anon_sym_GT2, - STATE(2238), 1, - sym_comment, - STATE(2271), 1, - aux_sym__types_body_repeat1, - STATE(2297), 1, - aux_sym__collection_body_repeat1, - STATE(4054), 1, - sym__val_number_decimal, - STATE(4745), 1, - sym__collection_entry, - STATE(5402), 1, - sym_val_bool, - STATE(5484), 1, - sym__collection_body, - ACTIONS(4697), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4709), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4715), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4465), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5228), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4701), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3776), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [65235] = 16, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [65757] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4687), 1, + ACTIONS(4742), 1, anon_sym_DASH2, - ACTIONS(4695), 1, + ACTIONS(4754), 1, anon_sym_PLUS2, - ACTIONS(4733), 1, - anon_sym_bit_DASHand2, - ACTIONS(4735), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4737), 1, - anon_sym_bit_DASHor2, - STATE(2239), 1, + STATE(2249), 1, sym_comment, - ACTIONS(4689), 2, + ACTIONS(4740), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4744), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4691), 2, + ACTIONS(4750), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4693), 2, + ACTIONS(4752), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4723), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4731), 2, + ACTIONS(4756), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2700), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4727), 4, + ACTIONS(4746), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4729), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4721), 8, + ACTIONS(2624), 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, @@ -198766,51 +199153,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65305] = 15, + 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, + [65817] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4687), 1, + ACTIONS(4742), 1, anon_sym_DASH2, - ACTIONS(4695), 1, + ACTIONS(4754), 1, anon_sym_PLUS2, - ACTIONS(4733), 1, + ACTIONS(4758), 1, anon_sym_bit_DASHand2, - ACTIONS(4735), 1, + ACTIONS(4760), 1, anon_sym_bit_DASHxor2, - STATE(2240), 1, + ACTIONS(4776), 1, + anon_sym_and2, + ACTIONS(4778), 1, + anon_sym_xor2, + ACTIONS(4780), 1, + anon_sym_bit_DASHor2, + STATE(2250), 1, sym_comment, - ACTIONS(4689), 2, + ACTIONS(2624), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4740), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4744), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4691), 2, + ACTIONS(4750), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4693), 2, + ACTIONS(4752), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4723), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4731), 2, + ACTIONS(4756), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4727), 4, + ACTIONS(4746), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4729), 4, + ACTIONS(4748), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2700), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4721), 8, + ACTIONS(4738), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -198819,240 +199216,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65373] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1248), 1, - aux_sym_cmd_identifier_token6, - STATE(2241), 1, - sym_comment, - ACTIONS(1246), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1244), 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, - [65421] = 27, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1440), 1, - anon_sym_DQUOTE, - ACTIONS(1442), 1, - anon_sym_SQUOTE, - ACTIONS(1444), 1, - anon_sym_BQUOTE, - ACTIONS(1454), 1, - sym_raw_string_begin, - ACTIONS(3151), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4699), 1, - anon_sym_null, - ACTIONS(4703), 1, - sym__newline, - ACTIONS(4707), 1, - anon_sym_DOT_DOT, - ACTIONS(4711), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4713), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4717), 1, - sym_val_date, - ACTIONS(4743), 1, - anon_sym_GT2, - STATE(2242), 1, - sym_comment, - STATE(2271), 1, - aux_sym__types_body_repeat1, - STATE(2297), 1, - aux_sym__collection_body_repeat1, - STATE(4054), 1, - sym__val_number_decimal, - STATE(4745), 1, - sym__collection_entry, - STATE(5315), 1, - sym__collection_body, - STATE(5402), 1, - sym_val_bool, - ACTIONS(4697), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4709), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4715), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4465), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5228), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4701), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3776), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [65513] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4749), 1, - aux_sym_cmd_identifier_token6, - STATE(2243), 1, - sym_comment, - ACTIONS(4747), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4745), 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, - [65561] = 27, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1440), 1, - anon_sym_DQUOTE, - ACTIONS(1442), 1, - anon_sym_SQUOTE, - ACTIONS(1444), 1, - anon_sym_BQUOTE, - ACTIONS(1454), 1, - sym_raw_string_begin, - ACTIONS(3151), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4699), 1, - anon_sym_null, - ACTIONS(4703), 1, - sym__newline, - ACTIONS(4707), 1, - anon_sym_DOT_DOT, - ACTIONS(4711), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4713), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4717), 1, - sym_val_date, - ACTIONS(4751), 1, - anon_sym_GT2, - STATE(2244), 1, - sym_comment, - STATE(2271), 1, - aux_sym__types_body_repeat1, - STATE(2297), 1, - aux_sym__collection_body_repeat1, - STATE(4054), 1, - sym__val_number_decimal, - STATE(4745), 1, - sym__collection_entry, - STATE(5109), 1, - sym__collection_body, - STATE(5402), 1, - sym_val_bool, - ACTIONS(4697), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4709), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4715), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4465), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5228), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4701), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3776), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [65653] = 5, + [65891] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2245), 1, + STATE(2251), 1, sym_comment, - ACTIONS(4691), 2, + ACTIONS(4711), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2702), 5, + ACTIONS(2626), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2700), 28, + ACTIONS(2624), 28, anon_sym_in, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -199078,341 +199259,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [65701] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1256), 1, - aux_sym_cmd_identifier_token6, - STATE(2246), 1, - sym_comment, - ACTIONS(1254), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1252), 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, - [65749] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4757), 1, - aux_sym_cmd_identifier_token6, - STATE(2247), 1, - sym_comment, - ACTIONS(4755), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4753), 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, - [65797] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4763), 1, - aux_sym_cmd_identifier_token6, - STATE(2248), 1, - sym_comment, - ACTIONS(4761), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4759), 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, - [65845] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4769), 1, - aux_sym_cmd_identifier_token6, - STATE(2249), 1, - sym_comment, - ACTIONS(4767), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4765), 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, - [65893] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2250), 1, - sym_comment, - ACTIONS(2626), 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(2628), 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, - [65939] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4775), 1, - aux_sym_cmd_identifier_token6, - STATE(2251), 1, - sym_comment, - ACTIONS(4773), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4771), 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, - [65987] = 10, + [65939] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4687), 1, + ACTIONS(4742), 1, anon_sym_DASH2, - ACTIONS(4695), 1, + ACTIONS(4754), 1, anon_sym_PLUS2, + ACTIONS(4758), 1, + anon_sym_bit_DASHand2, + ACTIONS(4760), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4776), 1, + anon_sym_and2, + ACTIONS(4780), 1, + anon_sym_bit_DASHor2, STATE(2252), 1, sym_comment, - ACTIONS(2702), 2, + ACTIONS(4740), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4689), 2, + ACTIONS(4744), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4691), 2, + ACTIONS(4750), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4693), 2, + ACTIONS(4752), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4731), 2, + ACTIONS(4756), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2700), 23, - anon_sym_in, + ACTIONS(2624), 3, 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(4746), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4748), 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, - [66045] = 12, + ACTIONS(4738), 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, + [66011] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4687), 1, + ACTIONS(4742), 1, anon_sym_DASH2, - ACTIONS(4695), 1, + ACTIONS(4754), 1, anon_sym_PLUS2, + ACTIONS(4758), 1, + anon_sym_bit_DASHand2, + ACTIONS(4760), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4780), 1, + anon_sym_bit_DASHor2, STATE(2253), 1, sym_comment, - ACTIONS(4689), 2, + ACTIONS(4740), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4744), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4691), 2, + ACTIONS(4750), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4693), 2, + ACTIONS(4752), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4723), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4731), 2, + ACTIONS(4756), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4727), 4, + ACTIONS(2624), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4746), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4721), 8, + ACTIONS(4748), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4738), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -199421,50 +199368,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2700), 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, - [66107] = 11, + [66081] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4663), 1, + ACTIONS(4703), 1, anon_sym_DASH2, - ACTIONS(4675), 1, + ACTIONS(4715), 1, anon_sym_PLUS2, + ACTIONS(4719), 1, + anon_sym_bit_DASHand2, + ACTIONS(4764), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4768), 1, + anon_sym_bit_DASHor2, STATE(2254), 1, sym_comment, - ACTIONS(4661), 2, + ACTIONS(4701), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4665), 2, + ACTIONS(4705), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4671), 2, + ACTIONS(4711), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4673), 2, + ACTIONS(4713), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4677), 2, + ACTIONS(4717), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4667), 4, + ACTIONS(2624), 4, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4707), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2700), 19, + ACTIONS(4709), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4699), 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, + [66151] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2255), 1, + sym_comment, + ACTIONS(4750), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2626), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2624), 28, + anon_sym_in, + anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -199475,75 +199450,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [66167] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4777), 1, - sym__newline, - STATE(2255), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1893), 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(1888), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [66215] = 7, + [66199] = 7, ACTIONS(3), 1, anon_sym_POUND, STATE(2256), 1, sym_comment, - ACTIONS(4689), 2, + ACTIONS(4744), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4691), 2, + ACTIONS(4750), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4693), 2, + ACTIONS(4752), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2702), 3, + ACTIONS(2626), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2700), 26, + ACTIONS(2624), 26, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -199570,101 +199510,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [66267] = 10, + [66251] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4663), 1, + ACTIONS(4703), 1, anon_sym_DASH2, - ACTIONS(4675), 1, + ACTIONS(4715), 1, anon_sym_PLUS2, + ACTIONS(4719), 1, + anon_sym_bit_DASHand2, + ACTIONS(4764), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4766), 1, + anon_sym_and2, + ACTIONS(4768), 1, + anon_sym_bit_DASHor2, + ACTIONS(4782), 1, + anon_sym_xor2, STATE(2257), 1, sym_comment, - ACTIONS(2702), 2, + ACTIONS(2624), 2, + anon_sym_EQ_GT, + anon_sym_or2, + ACTIONS(4701), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4665), 2, + ACTIONS(4705), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4671), 2, + ACTIONS(4711), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4673), 2, + ACTIONS(4713), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4677), 2, + ACTIONS(4717), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2700), 23, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(4707), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4709), 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, + ACTIONS(4699), 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, [66325] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2921), 1, + ACTIONS(2905), 1, anon_sym_DASH2, - ACTIONS(2931), 1, + ACTIONS(2917), 1, anon_sym_PLUS2, - ACTIONS(2974), 1, + ACTIONS(2921), 1, anon_sym_bit_DASHand2, + ACTIONS(2974), 1, + anon_sym_and2, ACTIONS(2976), 1, - anon_sym_bit_DASHxor2, + anon_sym_xor2, ACTIONS(2978), 1, - anon_sym_bit_DASHor2, + anon_sym_bit_DASHxor2, ACTIONS(2980), 1, - anon_sym_and2, - ACTIONS(2982), 1, - anon_sym_xor2, - ACTIONS(4780), 1, + anon_sym_bit_DASHor2, + ACTIONS(4784), 1, anon_sym_or2, STATE(2258), 1, sym_comment, - ACTIONS(2919), 2, + ACTIONS(2903), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2923), 2, + ACTIONS(2907), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2927), 2, + ACTIONS(2913), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2929), 2, + ACTIONS(2915), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2933), 2, + ACTIONS(2919), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2925), 4, + ACTIONS(2909), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2972), 4, + ACTIONS(2911), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2970), 8, + ACTIONS(2901), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -199678,20 +199626,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2259), 1, sym_comment, - ACTIONS(4786), 2, + ACTIONS(4790), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4788), 4, + ACTIONS(4792), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4790), 4, + ACTIONS(4794), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4782), 8, + ACTIONS(4786), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -199700,7 +199648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(4784), 16, + ACTIONS(4788), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199717,53 +199665,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [66449] = 18, + [66449] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2260), 1, + sym_comment, + ACTIONS(2113), 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(2111), 26, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [66494] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4663), 1, + ACTIONS(3990), 1, anon_sym_DASH2, - ACTIONS(4675), 1, + ACTIONS(4002), 1, anon_sym_PLUS2, - ACTIONS(4679), 1, + ACTIONS(4006), 1, + anon_sym_and2, + ACTIONS(4008), 1, anon_sym_bit_DASHand2, - ACTIONS(4681), 1, + ACTIONS(4010), 1, anon_sym_bit_DASHxor2, - ACTIONS(4683), 1, + ACTIONS(4012), 1, anon_sym_bit_DASHor2, - ACTIONS(4685), 1, - anon_sym_and2, - ACTIONS(4719), 1, + ACTIONS(4016), 1, anon_sym_xor2, - ACTIONS(4792), 1, + ACTIONS(4796), 1, anon_sym_or2, - STATE(2260), 1, + STATE(2261), 1, sym_comment, - ACTIONS(4661), 2, + ACTIONS(3988), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4665), 2, + ACTIONS(3992), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4671), 2, + ACTIONS(3998), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4673), 2, + ACTIONS(4000), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4677), 2, + ACTIONS(4004), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4667), 4, + ACTIONS(3994), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4669), 4, + ACTIONS(3996), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4659), 8, + ACTIONS(3986), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -199772,53 +199761,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [66522] = 18, + [66567] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4687), 1, + ACTIONS(3057), 1, anon_sym_DASH2, - ACTIONS(4695), 1, + ACTIONS(3069), 1, anon_sym_PLUS2, - ACTIONS(4725), 1, - anon_sym_and2, - ACTIONS(4733), 1, + ACTIONS(3073), 1, anon_sym_bit_DASHand2, - ACTIONS(4735), 1, + ACTIONS(3075), 1, anon_sym_bit_DASHxor2, - ACTIONS(4737), 1, - anon_sym_bit_DASHor2, - ACTIONS(4739), 1, + ACTIONS(3088), 1, + anon_sym_and2, + ACTIONS(3090), 1, anon_sym_xor2, - ACTIONS(4794), 1, + ACTIONS(3092), 1, + anon_sym_bit_DASHor2, + ACTIONS(4798), 1, anon_sym_or2, - STATE(2261), 1, + STATE(2262), 1, sym_comment, - ACTIONS(4689), 2, + ACTIONS(3055), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3059), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4691), 2, + ACTIONS(3065), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4693), 2, + ACTIONS(3067), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4723), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4731), 2, + ACTIONS(3071), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4727), 4, + ACTIONS(3061), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4729), 4, + ACTIONS(3063), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4721), 8, + ACTIONS(3053), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -199827,53 +199816,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [66595] = 18, + [66640] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3986), 1, + ACTIONS(3952), 1, anon_sym_DASH2, - ACTIONS(3998), 1, + ACTIONS(3962), 1, anon_sym_PLUS2, - ACTIONS(4002), 1, + ACTIONS(3976), 1, anon_sym_bit_DASHand2, - ACTIONS(4004), 1, + ACTIONS(3978), 1, anon_sym_bit_DASHxor2, - ACTIONS(4006), 1, + ACTIONS(3980), 1, anon_sym_bit_DASHor2, - ACTIONS(4018), 1, + ACTIONS(3982), 1, anon_sym_and2, - ACTIONS(4020), 1, + ACTIONS(3984), 1, anon_sym_xor2, - ACTIONS(4796), 1, + ACTIONS(4800), 1, anon_sym_or2, - STATE(2262), 1, + STATE(2263), 1, sym_comment, - ACTIONS(3984), 2, + ACTIONS(3950), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3988), 2, + ACTIONS(3954), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3994), 2, + ACTIONS(3958), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3996), 2, + ACTIONS(3960), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4000), 2, + ACTIONS(3964), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3990), 4, + ACTIONS(3956), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3992), 4, + ACTIONS(3974), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3982), 8, + ACTIONS(3972), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -199882,94 +199871,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [66668] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2263), 1, - sym_comment, - ACTIONS(2128), 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(2126), 26, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, [66713] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3954), 1, + ACTIONS(4703), 1, anon_sym_DASH2, - ACTIONS(3964), 1, + ACTIONS(4715), 1, anon_sym_PLUS2, - ACTIONS(3972), 1, + ACTIONS(4719), 1, anon_sym_bit_DASHand2, - ACTIONS(3974), 1, + ACTIONS(4764), 1, anon_sym_bit_DASHxor2, - ACTIONS(3976), 1, - anon_sym_bit_DASHor2, - ACTIONS(3978), 1, + ACTIONS(4766), 1, anon_sym_and2, - ACTIONS(3980), 1, + ACTIONS(4768), 1, + anon_sym_bit_DASHor2, + ACTIONS(4782), 1, anon_sym_xor2, - ACTIONS(4798), 1, + ACTIONS(4802), 1, anon_sym_or2, STATE(2264), 1, sym_comment, - ACTIONS(3952), 2, + ACTIONS(4701), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3956), 2, + ACTIONS(4705), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3960), 2, + ACTIONS(4711), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3962), 2, + ACTIONS(4713), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3966), 2, + ACTIONS(4717), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3958), 4, + ACTIONS(4707), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3970), 4, + ACTIONS(4709), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3968), 8, + ACTIONS(4699), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -199981,50 +199929,50 @@ static const uint16_t ts_small_parse_table[] = { [66786] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2996), 1, + ACTIONS(4742), 1, anon_sym_DASH2, - ACTIONS(3008), 1, + ACTIONS(4754), 1, anon_sym_PLUS2, - ACTIONS(3012), 1, + ACTIONS(4758), 1, anon_sym_bit_DASHand2, - ACTIONS(3014), 1, + ACTIONS(4760), 1, anon_sym_bit_DASHxor2, - ACTIONS(3016), 1, - anon_sym_bit_DASHor2, - ACTIONS(3080), 1, + ACTIONS(4776), 1, anon_sym_and2, - ACTIONS(3082), 1, + ACTIONS(4778), 1, anon_sym_xor2, - ACTIONS(4800), 1, + ACTIONS(4780), 1, + anon_sym_bit_DASHor2, + ACTIONS(4804), 1, anon_sym_or2, STATE(2265), 1, sym_comment, - ACTIONS(2994), 2, + ACTIONS(4740), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2998), 2, + ACTIONS(4744), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3004), 2, + ACTIONS(4750), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3006), 2, + ACTIONS(4752), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3010), 2, + ACTIONS(4756), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3000), 4, + ACTIONS(4746), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3002), 4, + ACTIONS(4748), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2992), 8, + ACTIONS(4738), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -200033,62 +199981,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [66859] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(255), 1, - aux_sym_cmd_identifier_token1, - STATE(2124), 1, - sym__val_number_decimal, - STATE(2266), 1, - sym_comment, - STATE(3125), 1, - sym_cmd_identifier, - ACTIONS(281), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3671), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(275), 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, - [66913] = 5, + [66859] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3761), 1, - sym_raw_string_begin, - ACTIONS(4802), 1, + ACTIONS(4808), 1, + anon_sym_RBRACE, + ACTIONS(4810), 1, sym__entry_separator, - STATE(2267), 2, + ACTIONS(4812), 1, + sym_raw_string_begin, + STATE(2266), 1, sym_comment, + STATE(2267), 1, aux_sym__types_body_repeat2, - ACTIONS(3756), 30, + ACTIONS(4806), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -200099,7 +200005,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, @@ -200119,65 +200024,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [66959] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(19), 1, - aux_sym_cmd_identifier_token1, - STATE(2077), 1, - sym__val_number_decimal, - STATE(2268), 1, - sym_comment, - STATE(3108), 1, - sym_cmd_identifier, - ACTIONS(45), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3671), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(39), 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, - [67013] = 7, + [66909] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4807), 1, - anon_sym_RBRACE, - ACTIONS(4809), 1, - sym__entry_separator, - ACTIONS(4811), 1, + ACTIONS(3746), 1, sym_raw_string_begin, - STATE(2267), 1, - aux_sym__types_body_repeat2, - STATE(2269), 1, + ACTIONS(4814), 1, + sym__entry_separator, + STATE(2267), 2, sym_comment, - ACTIONS(4805), 29, + aux_sym__types_body_repeat2, + ACTIONS(3741), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -200188,6 +200045,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, @@ -200207,128 +200065,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [67063] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2270), 1, - sym_comment, - ACTIONS(4815), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4817), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4819), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4813), 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(4784), 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, - [67113] = 25, + [66955] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1440), 1, - anon_sym_DQUOTE, - ACTIONS(1442), 1, - anon_sym_SQUOTE, - ACTIONS(1444), 1, - anon_sym_BQUOTE, - ACTIONS(1454), 1, - sym_raw_string_begin, - ACTIONS(3151), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4699), 1, - anon_sym_null, - ACTIONS(4703), 1, + ACTIONS(4817), 1, sym__newline, - ACTIONS(4707), 1, + STATE(2268), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(1943), 7, + anon_sym_DOLLAR, anon_sym_DOT_DOT, - ACTIONS(4711), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4713), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4717), 1, - sym_val_date, - STATE(2271), 1, - sym_comment, - STATE(2296), 1, - aux_sym__collection_body_repeat1, - STATE(2441), 1, - aux_sym__types_body_repeat1, - STATE(4054), 1, - sym__val_number_decimal, - STATE(4841), 1, - sym__collection_entry, - STATE(5402), 1, - sym_val_bool, - ACTIONS(4697), 2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_record_token1, + ACTIONS(1938), 24, + sym_raw_string_begin, anon_sym_true, anon_sym_false, - ACTIONS(4709), 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, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4715), 2, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4465), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5228), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4701), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3776), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [67199] = 9, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [67001] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(255), 1, aux_sym_cmd_identifier_token1, - STATE(2124), 1, + STATE(2026), 1, sym__val_number_decimal, - STATE(2272), 1, + STATE(2269), 1, sym_comment, - STATE(2988), 1, + STATE(3076), 1, sym_cmd_identifier, ACTIONS(281), 2, anon_sym_export, anon_sym_in, - ACTIONS(3671), 2, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3673), 2, + ACTIONS(3681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, ACTIONS(275), 24, @@ -200356,61 +200151,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [67253] = 5, + [67055] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4821), 1, - sym__newline, - STATE(2273), 2, - aux_sym__repeat_newline, + ACTIONS(19), 1, + aux_sym_cmd_identifier_token1, + STATE(2141), 1, + sym__val_number_decimal, + STATE(2270), 1, sym_comment, - ACTIONS(1893), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, + STATE(3065), 1, + sym_cmd_identifier, + ACTIONS(45), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3679), 2, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_record_token1, - ACTIONS(1888), 24, - sym_raw_string_begin, + aux_sym__val_number_decimal_token2, + ACTIONS(3681), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(39), 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, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [67299] = 7, + [67109] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4809), 1, + ACTIONS(4810), 1, sym__entry_separator, - ACTIONS(4811), 1, + ACTIONS(4812), 1, sym_raw_string_begin, - ACTIONS(4824), 1, + ACTIONS(4820), 1, anon_sym_RBRACE, STATE(2267), 1, aux_sym__types_body_repeat2, - STATE(2274), 1, + STATE(2271), 1, sym_comment, - ACTIONS(4805), 29, + ACTIONS(4806), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -200440,20 +200239,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [67349] = 7, + [67159] = 25, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1444), 1, + anon_sym_DQUOTE, + ACTIONS(1446), 1, + anon_sym_SQUOTE, + ACTIONS(1448), 1, + anon_sym_BQUOTE, + ACTIONS(1458), 1, + sym_raw_string_begin, + ACTIONS(3172), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4665), 1, + anon_sym_null, + ACTIONS(4669), 1, + sym__newline, + ACTIONS(4673), 1, + anon_sym_DOT_DOT, + ACTIONS(4677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4683), 1, + sym_val_date, + STATE(2272), 1, + sym_comment, + STATE(2295), 1, + aux_sym__collection_body_repeat1, + STATE(2469), 1, + aux_sym__types_body_repeat1, + STATE(4188), 1, + sym__val_number_decimal, + STATE(4716), 1, + sym__collection_entry, + STATE(5505), 1, + sym_val_bool, + ACTIONS(4663), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4675), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4681), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4670), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5515), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4667), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3806), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [67245] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4809), 1, + ACTIONS(4810), 1, sym__entry_separator, - ACTIONS(4811), 1, + ACTIONS(4812), 1, sym_raw_string_begin, - ACTIONS(4826), 1, + ACTIONS(4822), 1, anon_sym_RBRACE, STATE(2267), 1, aux_sym__types_body_repeat2, - STATE(2275), 1, + STATE(2273), 1, sym_comment, - ACTIONS(4805), 29, + ACTIONS(4806), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -200483,16 +200343,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, + [67295] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(255), 1, + aux_sym_cmd_identifier_token1, + STATE(2026), 1, + sym__val_number_decimal, + STATE(2274), 1, + sym_comment, + STATE(2974), 1, + sym_cmd_identifier, + ACTIONS(281), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3679), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3681), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(275), 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, + [67349] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2275), 1, + sym_comment, + ACTIONS(4826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4828), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4830), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4824), 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(4788), 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, [67399] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2276), 1, sym_comment, - ACTIONS(1527), 3, + ACTIONS(1544), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1529), 29, + ACTIONS(1546), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -200522,21 +200470,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [67442] = 7, + [67442] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4832), 1, - sym__entry_separator, - ACTIONS(4834), 1, - sym_raw_string_begin, STATE(2277), 1, sym_comment, - STATE(2278), 1, - aux_sym__types_body_repeat2, - ACTIONS(4830), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4828), 27, + ACTIONS(3793), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3791), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -200547,6 +200489,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -200563,18 +200508,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [67491] = 5, + aux_sym_unquoted_token1, + [67485] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3761), 1, - sym_raw_string_begin, ACTIONS(4836), 1, sym__entry_separator, - STATE(2278), 2, + ACTIONS(4838), 1, + sym_raw_string_begin, + STATE(2278), 1, sym_comment, + STATE(2282), 1, aux_sym__types_body_repeat2, - ACTIONS(3756), 29, + ACTIONS(4834), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(4832), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -200582,11 +200531,9 @@ 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, @@ -200604,18 +200551,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [67536] = 6, + [67534] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4809), 1, + ACTIONS(4836), 1, sym__entry_separator, - ACTIONS(4811), 1, + ACTIONS(4838), 1, sym_raw_string_begin, - STATE(2267), 1, - aux_sym__types_body_repeat2, STATE(2279), 1, sym_comment, - ACTIONS(4805), 29, + STATE(2282), 1, + aux_sym__types_body_repeat2, + ACTIONS(4834), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(4832), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -200626,8 +200576,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -200644,60 +200592,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym_unquoted_token1, - [67583] = 8, + aux_sym__unquoted_in_list_token1, + [67583] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4574), 1, - sym__newline, - ACTIONS(4578), 1, - anon_sym_LBRACK, - ACTIONS(4581), 1, - anon_sym_DOT_DOT, STATE(2280), 1, sym_comment, - ACTIONS(4529), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2626), 5, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2628), 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, + ACTIONS(1490), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1492), 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_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_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, - [67634] = 4, + 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, + [67626] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2281), 1, sym_comment, - ACTIONS(1545), 3, + ACTIONS(1550), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1547), 29, + ACTIONS(1552), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -200727,62 +200671,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [67677] = 4, - ACTIONS(3), 1, + [67669] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2282), 1, + ACTIONS(3746), 1, + sym_raw_string_begin, + ACTIONS(4840), 1, + sym__entry_separator, + STATE(2282), 2, sym_comment, - ACTIONS(2128), 7, + aux_sym__types_body_repeat2, + ACTIONS(3741), 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_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, - aux_sym__unquoted_in_record_token1, - ACTIONS(2126), 25, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym__unquoted_in_list_token1, + [67714] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4836), 1, + sym__entry_separator, + ACTIONS(4838), 1, sym_raw_string_begin, + STATE(2282), 1, + aux_sym__types_body_repeat2, + STATE(2283), 1, + sym_comment, + ACTIONS(4843), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(4832), 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, - [67720] = 5, + aux_sym__unquoted_in_list_token1, + [67763] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4839), 1, + ACTIONS(4516), 1, sym__newline, - STATE(2283), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3782), 7, - anon_sym__, + ACTIONS(4520), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, anon_sym_DOT_DOT, + STATE(2284), 1, + sym_comment, + ACTIONS(4523), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2658), 5, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(3784), 23, + aux_sym__unquoted_in_list_token1, + ACTIONS(2660), 22, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -200790,7 +200781,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, @@ -200806,99 +200796,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [67765] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2284), 1, - sym_comment, - ACTIONS(1486), 3, - anon_sym_EQ, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1488), 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, - [67808] = 4, - ACTIONS(3), 1, + [67814] = 7, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4836), 1, + sym__entry_separator, + ACTIONS(4838), 1, + sym_raw_string_begin, + STATE(2282), 1, + aux_sym__types_body_repeat2, STATE(2285), 1, sym_comment, - ACTIONS(1541), 3, - anon_sym_EQ, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1543), 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, + ACTIONS(4845), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(4832), 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_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, + anon_sym_DOLLAR, 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, - [67851] = 7, + 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, + [67863] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4832), 1, + ACTIONS(4836), 1, sym__entry_separator, - ACTIONS(4834), 1, + ACTIONS(4838), 1, sym_raw_string_begin, - STATE(2278), 1, + STATE(2282), 1, aux_sym__types_body_repeat2, STATE(2286), 1, sym_comment, - ACTIONS(4842), 2, + ACTIONS(4845), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(4828), 27, + ACTIONS(4832), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -200926,21 +200880,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [67900] = 7, + [67912] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4832), 1, + ACTIONS(4836), 1, sym__entry_separator, - ACTIONS(4834), 1, + ACTIONS(4838), 1, sym_raw_string_begin, - STATE(2278), 1, + STATE(2282), 1, aux_sym__types_body_repeat2, STATE(2287), 1, sym_comment, - ACTIONS(4844), 2, + ACTIONS(4847), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(4828), 27, + ACTIONS(4832), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -200968,16 +200922,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [67949] = 4, + [67961] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2288), 1, sym_comment, - ACTIONS(1535), 3, + ACTIONS(1574), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1537), 29, + ACTIONS(1576), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -201007,63 +200961,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [67992] = 7, - ACTIONS(105), 1, + [68004] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4832), 1, - sym__entry_separator, - ACTIONS(4834), 1, - sym_raw_string_begin, - STATE(2278), 1, - aux_sym__types_body_repeat2, STATE(2289), 1, sym_comment, - ACTIONS(4846), 2, - anon_sym_RBRACK, + ACTIONS(2113), 7, + anon_sym_DOLLAR, anon_sym_DOT_DOT, - ACTIONS(4828), 27, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_record_token1, + ACTIONS(2111), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_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, - [68041] = 7, - ACTIONS(105), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [68047] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4832), 1, - sym__entry_separator, - ACTIONS(4834), 1, - sym_raw_string_begin, - STATE(2278), 1, - aux_sym__types_body_repeat2, - STATE(2290), 1, + ACTIONS(4849), 1, + sym__newline, + STATE(2290), 2, sym_comment, - ACTIONS(4846), 2, - anon_sym_RBRACK, + aux_sym__types_body_repeat1, + ACTIONS(3784), 7, + anon_sym__, anon_sym_DOT_DOT, - ACTIONS(4828), 27, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(3786), 23, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -201076,30 +201030,67 @@ 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, - [68090] = 4, - ACTIONS(105), 1, + [68092] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(2291), 1, sym_comment, - ACTIONS(3780), 2, - sym_raw_string_begin, + ACTIONS(1540), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1542), 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, + [68135] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4810), 1, sym__entry_separator, - ACTIONS(3778), 30, + ACTIONS(4812), 1, + sym_raw_string_begin, + STATE(2267), 1, + aux_sym__types_body_repeat2, + STATE(2292), 1, + sym_comment, + ACTIONS(4806), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -201110,7 +201101,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, @@ -201130,16 +201120,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [68133] = 4, + [68182] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2292), 1, + STATE(2293), 1, sym_comment, - ACTIONS(1531), 3, + ACTIONS(1522), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1533), 29, + ACTIONS(1524), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -201169,120 +201159,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [68176] = 7, - ACTIONS(105), 1, + [68225] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4832), 1, - sym__entry_separator, - ACTIONS(4834), 1, - sym_raw_string_begin, - STATE(2278), 1, - aux_sym__types_body_repeat2, - STATE(2293), 1, + STATE(2294), 1, sym_comment, - ACTIONS(4844), 2, - anon_sym_RBRACK, + ACTIONS(2658), 7, + anon_sym__, anon_sym_DOT_DOT, - ACTIONS(4828), 27, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2660), 24, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, 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, - [68225] = 22, + [68267] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4851), 1, + ACTIONS(1444), 1, + anon_sym_DQUOTE, + ACTIONS(1446), 1, + anon_sym_SQUOTE, + ACTIONS(1448), 1, + anon_sym_BQUOTE, + ACTIONS(1458), 1, + sym_raw_string_begin, + ACTIONS(3172), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4665), 1, anon_sym_null, - ACTIONS(4857), 1, + ACTIONS(4673), 1, anon_sym_DOT_DOT, - ACTIONS(4863), 1, + ACTIONS(4677), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4866), 1, + ACTIONS(4679), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4872), 1, + ACTIONS(4683), 1, sym_val_date, - ACTIONS(4875), 1, - anon_sym_DQUOTE, - ACTIONS(4878), 1, - anon_sym_SQUOTE, - ACTIONS(4881), 1, - anon_sym_BQUOTE, - ACTIONS(4884), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4887), 1, - sym_raw_string_begin, - STATE(4054), 1, + STATE(2295), 1, + sym_comment, + STATE(2300), 1, + aux_sym__collection_body_repeat1, + STATE(4188), 1, sym__val_number_decimal, - STATE(5035), 1, + STATE(4853), 1, sym__collection_entry, - STATE(5402), 1, + STATE(5505), 1, sym_val_bool, - ACTIONS(4848), 2, + ACTIONS(4663), 2, anon_sym_true, anon_sym_false, - ACTIONS(4860), 2, + ACTIONS(4675), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4869), 2, + ACTIONS(4681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2294), 2, - sym_comment, - aux_sym__collection_body_repeat1, - STATE(4929), 2, + STATE(4670), 2, sym_val_string, sym__unquoted_in_record, - STATE(5228), 2, + STATE(5515), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4854), 3, + ACTIONS(4667), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3776), 4, + STATE(3806), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68303] = 5, + [68347] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4890), 1, + ACTIONS(4852), 1, sym__newline, - STATE(2295), 2, + STATE(2296), 2, sym_comment, aux_sym__types_body_repeat1, - ACTIONS(3782), 6, + ACTIONS(3784), 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(3784), 23, + ACTIONS(3786), 23, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -201306,132 +201293,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [68347] = 23, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1440), 1, - anon_sym_DQUOTE, - ACTIONS(1442), 1, - anon_sym_SQUOTE, - ACTIONS(1444), 1, - anon_sym_BQUOTE, - ACTIONS(1454), 1, - sym_raw_string_begin, - ACTIONS(3151), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4699), 1, - anon_sym_null, - ACTIONS(4707), 1, - anon_sym_DOT_DOT, - ACTIONS(4711), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4713), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4717), 1, - sym_val_date, - STATE(2294), 1, - aux_sym__collection_body_repeat1, - STATE(2296), 1, - sym_comment, - STATE(4054), 1, - sym__val_number_decimal, - STATE(4736), 1, - sym__collection_entry, - STATE(5402), 1, - sym_val_bool, - ACTIONS(4697), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4709), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4715), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4465), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5228), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4701), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3776), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [68427] = 23, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1440), 1, - anon_sym_DQUOTE, - ACTIONS(1442), 1, - anon_sym_SQUOTE, - ACTIONS(1444), 1, - anon_sym_BQUOTE, - ACTIONS(1454), 1, - sym_raw_string_begin, - ACTIONS(3151), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4699), 1, - anon_sym_null, - ACTIONS(4707), 1, - anon_sym_DOT_DOT, - ACTIONS(4711), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4713), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4717), 1, - sym_val_date, - STATE(2294), 1, - aux_sym__collection_body_repeat1, - STATE(2297), 1, - sym_comment, - STATE(4054), 1, - sym__val_number_decimal, - STATE(4842), 1, - sym__collection_entry, - STATE(5402), 1, - sym_val_bool, - ACTIONS(4697), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4709), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4715), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4465), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5228), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4701), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3776), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [68507] = 6, + [68391] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4832), 1, + ACTIONS(4836), 1, sym__entry_separator, - ACTIONS(4834), 1, + ACTIONS(4838), 1, sym_raw_string_begin, - STATE(2278), 1, + STATE(2282), 1, aux_sym__types_body_repeat2, - STATE(2298), 1, + STATE(2297), 1, sym_comment, - ACTIONS(4828), 28, + ACTIONS(4832), 28, anon_sym_true, anon_sym_false, anon_sym_null, @@ -201460,15 +201333,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [68553] = 4, + [68437] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2299), 1, + STATE(2298), 1, sym_comment, - ACTIONS(3780), 2, + ACTIONS(3793), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(3778), 29, + ACTIONS(3791), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -201498,52 +201371,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [68595] = 4, + [68479] = 23, ACTIONS(3), 1, anon_sym_POUND, - STATE(2300), 1, - sym_comment, - ACTIONS(2626), 7, - anon_sym__, + ACTIONS(1444), 1, + anon_sym_DQUOTE, + ACTIONS(1446), 1, + anon_sym_SQUOTE, + ACTIONS(1448), 1, + anon_sym_BQUOTE, + ACTIONS(1458), 1, + sym_raw_string_begin, + ACTIONS(3172), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4665), 1, + anon_sym_null, + ACTIONS(4673), 1, anon_sym_DOT_DOT, + ACTIONS(4677), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2628), 24, - sym_raw_string_begin, + ACTIONS(4679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4683), 1, + sym_val_date, + STATE(2299), 1, + sym_comment, + STATE(2300), 1, + aux_sym__collection_body_repeat1, + STATE(4188), 1, + sym__val_number_decimal, + STATE(4714), 1, + sym__collection_entry, + STATE(5505), 1, + sym_val_bool, + ACTIONS(4663), 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_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(4675), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, + ACTIONS(4681), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + STATE(4670), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5515), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4667), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3806), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [68559] = 22, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4858), 1, + anon_sym_null, + ACTIONS(4864), 1, + anon_sym_DOT_DOT, + ACTIONS(4870), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4873), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4879), 1, sym_val_date, + ACTIONS(4882), 1, anon_sym_DQUOTE, + ACTIONS(4885), 1, anon_sym_SQUOTE, + ACTIONS(4888), 1, anon_sym_BQUOTE, + ACTIONS(4891), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4894), 1, + sym_raw_string_begin, + STATE(4188), 1, + sym__val_number_decimal, + STATE(4973), 1, + sym__collection_entry, + STATE(5505), 1, + sym_val_bool, + ACTIONS(4855), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4867), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4876), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2300), 2, + sym_comment, + aux_sym__collection_body_repeat1, + STATE(4685), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5515), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4861), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3806), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, [68637] = 6, ACTIONS(3), 1, anon_sym_POUND, STATE(2301), 1, sym_comment, - STATE(3405), 1, + STATE(3341), 1, sym_redirection, - ACTIONS(4895), 8, + ACTIONS(4899), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -201552,7 +201500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4897), 8, + ACTIONS(4901), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -201561,7 +201509,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(4893), 13, + ACTIONS(4897), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201580,9 +201528,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2302), 1, sym_comment, - STATE(3267), 1, + STATE(3299), 1, sym_redirection, - ACTIONS(4895), 8, + ACTIONS(4899), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -201591,7 +201539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4897), 8, + ACTIONS(4901), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -201600,7 +201548,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(4899), 13, + ACTIONS(4903), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201619,14 +201567,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2303), 1, sym_comment, - ACTIONS(2626), 6, + ACTIONS(2658), 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(2628), 24, + ACTIONS(2660), 24, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -201656,9 +201604,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(2304), 1, sym_comment, - STATE(3603), 1, + STATE(3552), 1, sym_redirection, - ACTIONS(4895), 8, + ACTIONS(4899), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -201667,7 +201615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4897), 8, + ACTIONS(4901), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -201676,7 +201624,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(4901), 12, + ACTIONS(4905), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201689,71 +201637,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [68812] = 25, + [68812] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(199), 1, - anon_sym_DQUOTE, - ACTIONS(201), 1, - anon_sym_SQUOTE, - ACTIONS(203), 1, - anon_sym_BQUOTE, - ACTIONS(215), 1, - sym_raw_string_begin, - ACTIONS(1630), 1, - anon_sym_DOLLAR, - ACTIONS(2818), 1, - aux_sym_expr_unary_token1, - ACTIONS(4903), 1, + STATE(2305), 1, + sym_comment, + ACTIONS(1596), 2, + anon_sym_EQ, + anon_sym_DOT_DOT2, + ACTIONS(1598), 27, + anon_sym_if, + anon_sym_in, sym__newline, - ACTIONS(4905), 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(4907), 1, - anon_sym_DASH2, - ACTIONS(4909), 1, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(4911), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, - sym__expr_unary_minus, - STATE(2305), 1, - sym_comment, - STATE(2431), 1, - sym_val_string, - STATE(2450), 1, - sym__where_predicate_lhs_path_head, - STATE(2631), 1, - sym__where_predicate_lhs, - STATE(2817), 1, - sym__binary_predicate_parenthesized, - STATE(2818), 1, - sym_where_predicate, - STATE(3235), 1, - aux_sym__repeat_newline, - STATE(3293), 1, - sym_val_closure, - ACTIONS(1949), 2, - anon_sym_true, - anon_sym_false, - STATE(2259), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2779), 2, - sym_expr_unary, - sym_val_bool, - STATE(436), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [68894] = 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, + [68852] = 6, ACTIONS(3), 1, anon_sym_POUND, STATE(2306), 1, sym_comment, - STATE(3446), 1, + STATE(3583), 1, sym_redirection, - ACTIONS(4913), 8, + ACTIONS(4907), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -201762,7 +201689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4915), 8, + ACTIONS(4909), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -201771,7 +201698,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(4899), 12, + ACTIONS(4903), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -201784,14 +201711,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, - [68938] = 6, + [68896] = 6, ACTIONS(3), 1, anon_sym_POUND, STATE(2307), 1, sym_comment, - STATE(3464), 1, + STATE(3555), 1, sym_redirection, - ACTIONS(4913), 8, + ACTIONS(4907), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -201800,7 +201727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4915), 8, + ACTIONS(4909), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -201809,7 +201736,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(4893), 12, + ACTIONS(4897), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -201822,14 +201749,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, - [68982] = 6, + [68940] = 6, ACTIONS(3), 1, anon_sym_POUND, STATE(2308), 1, sym_comment, - STATE(3466), 1, + STATE(3587), 1, sym_redirection, - ACTIONS(4895), 8, + ACTIONS(4899), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -201838,7 +201765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4897), 8, + ACTIONS(4901), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -201847,30 +201774,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(4917), 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, - [69026] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2309), 1, - sym_comment, - ACTIONS(1600), 2, - anon_sym_EQ, - anon_sym_DOT_DOT2, - ACTIONS(1602), 27, - anon_sym_if, - anon_sym_in, + ACTIONS(4911), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201882,21 +201786,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_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, - [69066] = 25, + [68984] = 25, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -201907,129 +201798,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4903), 1, + ACTIONS(4913), 1, sym__newline, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4909), 1, + ACTIONS(4919), 1, anon_sym_LBRACE, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2305), 1, - aux_sym__repeat_newline, - STATE(2310), 1, + STATE(2309), 1, sym_comment, - STATE(2431), 1, + STATE(2310), 1, + aux_sym__repeat_newline, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2881), 1, + STATE(2897), 1, sym__binary_predicate_parenthesized, - STATE(2883), 1, + STATE(2898), 1, sym_where_predicate, - STATE(3305), 1, + STATE(3295), 1, sym_val_closure, - ACTIONS(1949), 2, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69148] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4919), 1, - anon_sym_QMARK2, - ACTIONS(4921), 1, - anon_sym_BANG, - STATE(479), 1, - sym__path_suffix, - STATE(2311), 1, - sym_comment, - ACTIONS(1472), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1474), 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, - [69193] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1466), 1, - anon_sym_DOT_DOT2, - ACTIONS(4923), 1, - anon_sym_DOT2, - STATE(472), 1, - sym_path, - STATE(2309), 1, - sym_cell_path, - STATE(2312), 1, - sym_comment, - STATE(2335), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1468), 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, - [69239] = 23, + [69066] = 25, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -202040,103 +201855,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4903), 1, + ACTIONS(4913), 1, sym__newline, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4911), 1, + ACTIONS(4919), 1, + anon_sym_LBRACE, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2313), 1, + STATE(2310), 1, sym_comment, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, - sym__where_predicate_lhs_path_head, - STATE(2631), 1, - sym__where_predicate_lhs, - STATE(2840), 1, - sym__binary_predicate_parenthesized, - STATE(2841), 1, - sym_where_predicate, - STATE(3235), 1, - aux_sym__repeat_newline, - ACTIONS(1949), 2, - anon_sym_true, - anon_sym_false, - STATE(2259), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2779), 2, - sym_expr_unary, - sym_val_bool, - STATE(436), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [69315] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1705), 1, - anon_sym_DOT_DOT2, - ACTIONS(4923), 1, - anon_sym_DOT2, - STATE(472), 1, - sym_path, - STATE(482), 1, - sym_cell_path, - STATE(2314), 1, - sym_comment, - STATE(2335), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1703), 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, - [69361] = 8, + STATE(2443), 1, + sym__where_predicate_lhs_path_head, + STATE(2588), 1, + sym__where_predicate_lhs, + STATE(2875), 1, + sym_where_predicate, + STATE(2876), 1, + sym__binary_predicate_parenthesized, + STATE(3212), 1, + aux_sym__repeat_newline, + STATE(3355), 1, + sym_val_closure, + ACTIONS(1975), 2, + anon_sym_true, + anon_sym_false, + STATE(2259), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2840), 2, + sym_expr_unary, + sym_val_bool, + STATE(432), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [69148] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1671), 1, - anon_sym_DOT_DOT2, ACTIONS(4923), 1, - anon_sym_DOT2, - STATE(472), 1, - sym_path, - STATE(493), 1, - sym_cell_path, - STATE(2315), 1, + anon_sym_QMARK2, + ACTIONS(4925), 1, + anon_sym_BANG, + STATE(478), 1, + sym__path_suffix, + STATE(2311), 1, sym_comment, - STATE(2335), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1669), 22, + ACTIONS(1470), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1472), 23, anon_sym_if, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202158,7 +201939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [69407] = 23, + [69193] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -202169,49 +201950,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4903), 1, + ACTIONS(4913), 1, sym__newline, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2316), 1, + STATE(2312), 1, sym_comment, - STATE(2431), 1, + STATE(2325), 1, + aux_sym__repeat_newline, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2849), 1, - sym__binary_predicate_parenthesized, - STATE(2850), 1, + STATE(2733), 1, sym_where_predicate, - STATE(3235), 1, - aux_sym__repeat_newline, - ACTIONS(1949), 2, + STATE(2734), 1, + sym__binary_predicate_parenthesized, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69483] = 23, + [69269] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -202222,49 +202003,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4903), 1, + ACTIONS(4913), 1, sym__newline, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2317), 1, + STATE(2313), 1, sym_comment, - STATE(2431), 1, + STATE(2324), 1, + aux_sym__repeat_newline, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2867), 1, - sym__binary_predicate_parenthesized, - STATE(2869), 1, + STATE(2753), 1, sym_where_predicate, - STATE(3235), 1, - aux_sym__repeat_newline, - ACTIONS(1949), 2, + STATE(2754), 1, + sym__binary_predicate_parenthesized, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69559] = 23, + [69345] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -202275,73 +202056,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4903), 1, + ACTIONS(4913), 1, sym__newline, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2318), 1, + STATE(2314), 1, sym_comment, - STATE(2338), 1, - aux_sym__repeat_newline, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2813), 1, - sym__binary_predicate_parenthesized, - STATE(2814), 1, + STATE(2739), 1, sym_where_predicate, - ACTIONS(1949), 2, + STATE(2740), 1, + sym__binary_predicate_parenthesized, + STATE(3212), 1, + aux_sym__repeat_newline, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69635] = 11, + [69421] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1634), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(1659), 1, + ACTIONS(1636), 1, sym__unquoted_pattern, - ACTIONS(2945), 1, + ACTIONS(2935), 1, anon_sym_DOLLAR, - ACTIONS(4925), 1, + ACTIONS(4927), 1, anon_sym_DOT, - STATE(2319), 1, + STATE(2315), 1, sym_comment, - STATE(2476), 1, + STATE(2453), 1, sym__immediate_decimal, - ACTIONS(4927), 2, + ACTIONS(4929), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4929), 2, + ACTIONS(4931), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2561), 2, + STATE(2520), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1642), 16, + ACTIONS(1622), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202358,7 +202139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [69687] = 23, + [69473] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -202369,102 +202150,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4903), 1, + ACTIONS(4913), 1, sym__newline, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2320), 1, - sym_comment, - STATE(2431), 1, - sym_val_string, - STATE(2450), 1, - sym__where_predicate_lhs_path_head, - STATE(2631), 1, - sym__where_predicate_lhs, - STATE(2736), 1, - sym__binary_predicate_parenthesized, - STATE(2737), 1, - sym_where_predicate, - STATE(3235), 1, + STATE(2314), 1, aux_sym__repeat_newline, - ACTIONS(1949), 2, - anon_sym_true, - anon_sym_false, - STATE(2259), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2779), 2, - sym_expr_unary, - sym_val_bool, - STATE(436), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [69763] = 23, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(199), 1, - anon_sym_DQUOTE, - ACTIONS(201), 1, - anon_sym_SQUOTE, - ACTIONS(203), 1, - anon_sym_BQUOTE, - ACTIONS(215), 1, - sym_raw_string_begin, - ACTIONS(1630), 1, - anon_sym_DOLLAR, - ACTIONS(2818), 1, - aux_sym_expr_unary_token1, - ACTIONS(4905), 1, - anon_sym_LPAREN, - ACTIONS(4907), 1, - anon_sym_DASH2, - ACTIONS(4909), 1, - anon_sym_LBRACE, - ACTIONS(4911), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, - sym__expr_unary_minus, - STATE(2321), 1, + STATE(2316), 1, sym_comment, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2775), 1, - sym__binary_predicate, - STATE(2776), 1, + STATE(2782), 1, sym_where_predicate, - STATE(3371), 1, - sym_val_closure, - ACTIONS(1949), 2, + STATE(2783), 1, + sym__binary_predicate_parenthesized, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69839] = 23, + [69549] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -202475,49 +202203,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4903), 1, + ACTIONS(4913), 1, sym__newline, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2322), 1, + STATE(2317), 1, sym_comment, - STATE(2431), 1, + STATE(2330), 1, + aux_sym__repeat_newline, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2835), 1, + STATE(2736), 1, sym__binary_predicate_parenthesized, - STATE(2921), 1, + STATE(2793), 1, sym_where_predicate, - STATE(3235), 1, - aux_sym__repeat_newline, - ACTIONS(1949), 2, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69915] = 23, + [69625] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -202528,49 +202256,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4903), 1, + ACTIONS(4913), 1, sym__newline, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2323), 1, + STATE(2318), 1, sym_comment, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2863), 1, - sym__binary_predicate_parenthesized, - STATE(2864), 1, + STATE(2766), 1, sym_where_predicate, - STATE(3235), 1, + STATE(2769), 1, + sym__binary_predicate_parenthesized, + STATE(3212), 1, aux_sym__repeat_newline, - ACTIONS(1949), 2, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69991] = 23, + [69701] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1478), 1, + anon_sym_DOT_DOT2, + ACTIONS(4933), 1, + anon_sym_DOT2, + STATE(466), 1, + sym_path, + STATE(2305), 1, + sym_cell_path, + STATE(2319), 1, + sym_comment, + STATE(2337), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1480), 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, + [69747] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -202581,49 +202347,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4903), 1, + ACTIONS(4913), 1, sym__newline, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2324), 1, + STATE(2320), 1, sym_comment, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2740), 1, + STATE(2903), 1, sym__binary_predicate_parenthesized, - STATE(2741), 1, + STATE(2904), 1, sym_where_predicate, - STATE(3235), 1, + STATE(3212), 1, aux_sym__repeat_newline, - ACTIONS(1949), 2, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70067] = 23, + [69823] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -202634,49 +202400,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4903), 1, + ACTIONS(4913), 1, sym__newline, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2317), 1, - aux_sym__repeat_newline, - STATE(2325), 1, + STATE(2321), 1, sym_comment, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2771), 1, + STATE(2860), 1, sym__binary_predicate_parenthesized, - STATE(2772), 1, + STATE(2861), 1, sym_where_predicate, - ACTIONS(1949), 2, + STATE(3212), 1, + aux_sym__repeat_newline, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70143] = 23, + [69899] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -202687,49 +202453,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4903), 1, + ACTIONS(4913), 1, sym__newline, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2326), 1, + STATE(2322), 1, sym_comment, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2744), 1, - sym__binary_predicate_parenthesized, - STATE(2745), 1, + STATE(2730), 1, sym_where_predicate, - STATE(3235), 1, + STATE(2762), 1, + sym__binary_predicate_parenthesized, + STATE(3212), 1, aux_sym__repeat_newline, - ACTIONS(1949), 2, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70219] = 23, + [69975] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -202740,49 +202506,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4903), 1, + ACTIONS(4913), 1, sym__newline, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2324), 1, - aux_sym__repeat_newline, - STATE(2327), 1, + STATE(2323), 1, sym_comment, - STATE(2431), 1, + STATE(2333), 1, + aux_sym__repeat_newline, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2807), 1, - sym__binary_predicate_parenthesized, - STATE(2808), 1, + STATE(2784), 1, sym_where_predicate, - ACTIONS(1949), 2, + STATE(2785), 1, + sym__binary_predicate_parenthesized, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70295] = 23, + [70051] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -202793,49 +202559,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4903), 1, + ACTIONS(4913), 1, sym__newline, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2328), 1, + STATE(2324), 1, sym_comment, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2754), 1, + STATE(2854), 1, sym__binary_predicate_parenthesized, - STATE(2755), 1, + STATE(2855), 1, sym_where_predicate, - STATE(3235), 1, + STATE(3212), 1, aux_sym__repeat_newline, - ACTIONS(1949), 2, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70371] = 23, + [70127] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -202846,49 +202612,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4903), 1, + ACTIONS(4913), 1, sym__newline, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2329), 1, + STATE(2325), 1, sym_comment, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2859), 1, + STATE(2891), 1, sym__binary_predicate_parenthesized, - STATE(2860), 1, + STATE(2893), 1, sym_where_predicate, - STATE(3235), 1, + STATE(3212), 1, aux_sym__repeat_newline, - ACTIONS(1949), 2, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70447] = 23, + [70203] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -202899,49 +202665,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4903), 1, + ACTIONS(4913), 1, sym__newline, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2330), 1, + STATE(2326), 1, sym_comment, - STATE(2341), 1, - aux_sym__repeat_newline, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2815), 1, + STATE(2866), 1, sym__binary_predicate_parenthesized, - STATE(2816), 1, + STATE(2867), 1, sym_where_predicate, - ACTIONS(1949), 2, + STATE(3212), 1, + aux_sym__repeat_newline, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70523] = 23, + [70279] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -202952,49 +202718,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4903), 1, + ACTIONS(4913), 1, sym__newline, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2323), 1, - aux_sym__repeat_newline, - STATE(2331), 1, + STATE(2327), 1, sym_comment, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2768), 1, - sym__binary_predicate_parenthesized, - STATE(2770), 1, + STATE(2757), 1, sym_where_predicate, - ACTIONS(1949), 2, + STATE(2758), 1, + sym__binary_predicate_parenthesized, + STATE(3212), 1, + aux_sym__repeat_newline, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70599] = 23, + [70355] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -203005,49 +202771,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4903), 1, + ACTIONS(4913), 1, sym__newline, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2329), 1, - aux_sym__repeat_newline, - STATE(2332), 1, + STATE(2328), 1, sym_comment, - STATE(2431), 1, + STATE(2339), 1, + aux_sym__repeat_newline, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2766), 1, - sym__binary_predicate_parenthesized, - STATE(2767), 1, + STATE(2786), 1, sym_where_predicate, - ACTIONS(1949), 2, + STATE(2787), 1, + sym__binary_predicate_parenthesized, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70675] = 23, + [70431] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -203058,49 +202824,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4903), 1, + ACTIONS(4913), 1, sym__newline, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2316), 1, + STATE(2320), 1, aux_sym__repeat_newline, - STATE(2333), 1, + STATE(2329), 1, sym_comment, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2752), 1, + STATE(2732), 1, sym__binary_predicate_parenthesized, - STATE(2753), 1, + STATE(2795), 1, sym_where_predicate, - ACTIONS(1949), 2, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70751] = 23, + [70507] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -203111,86 +202877,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4903), 1, + ACTIONS(4913), 1, sym__newline, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2326), 1, - aux_sym__repeat_newline, - STATE(2334), 1, + STATE(2330), 1, sym_comment, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2809), 1, + STATE(2886), 1, sym__binary_predicate_parenthesized, - STATE(2810), 1, + STATE(2887), 1, sym_where_predicate, - ACTIONS(1949), 2, + STATE(3212), 1, + aux_sym__repeat_newline, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70827] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1577), 1, - anon_sym_DOT_DOT2, - ACTIONS(4923), 1, - anon_sym_DOT2, - STATE(472), 1, - sym_path, - STATE(2335), 1, - sym_comment, - STATE(2340), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1579), 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, - [70871] = 23, + [70583] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -203201,49 +202930,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4903), 1, + ACTIONS(4913), 1, sym__newline, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2328), 1, + STATE(2327), 1, aux_sym__repeat_newline, - STATE(2336), 1, + STATE(2331), 1, sym_comment, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2811), 1, - sym__binary_predicate_parenthesized, - STATE(2812), 1, + STATE(2788), 1, sym_where_predicate, - ACTIONS(1949), 2, + STATE(2789), 1, + sym__binary_predicate_parenthesized, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70947] = 23, + [70659] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -203254,49 +202983,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4903), 1, + ACTIONS(4913), 1, sym__newline, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, STATE(2322), 1, aux_sym__repeat_newline, - STATE(2337), 1, + STATE(2332), 1, sym_comment, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2748), 1, - sym__binary_predicate_parenthesized, - STATE(2749), 1, + STATE(2790), 1, sym_where_predicate, - ACTIONS(1949), 2, + STATE(2792), 1, + sym__binary_predicate_parenthesized, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71023] = 23, + [70735] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -203307,49 +203036,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4903), 1, + ACTIONS(4913), 1, sym__newline, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2338), 1, + STATE(2333), 1, sym_comment, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2758), 1, - sym__binary_predicate_parenthesized, - STATE(2759), 1, + STATE(2743), 1, sym_where_predicate, - STATE(3235), 1, + STATE(2744), 1, + sym__binary_predicate_parenthesized, + STATE(3212), 1, aux_sym__repeat_newline, - ACTIONS(1949), 2, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71099] = 23, + [70811] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -203360,63 +203089,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(2750), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4931), 1, + ACTIONS(4935), 1, anon_sym_LPAREN, - ACTIONS(4933), 1, + ACTIONS(4937), 1, anon_sym_DOLLAR, - ACTIONS(4935), 1, + ACTIONS(4939), 1, anon_sym_DASH2, - ACTIONS(4937), 1, + ACTIONS(4941), 1, anon_sym_LBRACE, - STATE(1293), 1, + STATE(1344), 1, sym__expr_unary_minus, - STATE(2339), 1, + STATE(2334), 1, sym_comment, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2630), 1, + STATE(2643), 1, sym__where_predicate_lhs, - STATE(2951), 1, + STATE(2978), 1, sym_where_predicate, - STATE(2993), 1, + STATE(2980), 1, sym__binary_predicate, - STATE(3543), 1, + STATE(3517), 1, sym_val_closure, - ACTIONS(2510), 2, + ACTIONS(2423), 2, anon_sym_true, anon_sym_false, - STATE(2270), 2, + STATE(2275), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2952), 2, + STATE(2976), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71175] = 6, + [70887] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1490), 1, + ACTIONS(1669), 1, anon_sym_DOT_DOT2, - ACTIONS(4939), 1, + ACTIONS(4933), 1, anon_sym_DOT2, - STATE(472), 1, + STATE(466), 1, sym_path, - STATE(2340), 2, + STATE(484), 1, + sym_cell_path, + STATE(2335), 1, sym_comment, + STATE(2337), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1492), 23, + ACTIONS(1667), 22, anon_sym_if, - anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203438,7 +203169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [71217] = 23, + [70933] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -203449,49 +203180,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4903), 1, + ACTIONS(4913), 1, sym__newline, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2341), 1, + STATE(2318), 1, + aux_sym__repeat_newline, + STATE(2336), 1, sym_comment, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2762), 1, - sym__binary_predicate_parenthesized, - STATE(2763), 1, + STATE(2781), 1, sym_where_predicate, - STATE(3235), 1, - aux_sym__repeat_newline, - ACTIONS(1949), 2, + STATE(2796), 1, + sym__binary_predicate_parenthesized, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71293] = 23, + [71009] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1567), 1, + anon_sym_DOT_DOT2, + ACTIONS(4933), 1, + anon_sym_DOT2, + STATE(466), 1, + sym_path, + STATE(2337), 1, + sym_comment, + STATE(2341), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1569), 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, + [71053] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -203502,49 +203270,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4903), 1, - sym__newline, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4911), 1, + ACTIONS(4919), 1, + anon_sym_LBRACE, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2313), 1, - aux_sym__repeat_newline, - STATE(2342), 1, + STATE(2338), 1, sym_comment, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2750), 1, - sym__binary_predicate_parenthesized, - STATE(2751), 1, + STATE(2846), 1, sym_where_predicate, - ACTIONS(1949), 2, + STATE(2848), 1, + sym__binary_predicate, + STATE(3343), 1, + sym_val_closure, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71369] = 23, + [71129] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -203555,61 +203323,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4903), 1, + ACTIONS(4913), 1, sym__newline, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2320), 1, - aux_sym__repeat_newline, - STATE(2343), 1, + STATE(2339), 1, sym_comment, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2805), 1, - sym__binary_predicate_parenthesized, - STATE(2806), 1, + STATE(2747), 1, sym_where_predicate, - ACTIONS(1949), 2, + STATE(2748), 1, + sym__binary_predicate_parenthesized, + STATE(3212), 1, + aux_sym__repeat_newline, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71445] = 5, + [71205] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1726), 1, - anon_sym_BANG, - STATE(2344), 1, - sym_comment, - ACTIONS(1460), 2, + ACTIONS(1685), 1, anon_sym_DOT_DOT2, + ACTIONS(4933), 1, anon_sym_DOT2, - ACTIONS(1462), 23, + STATE(466), 1, + sym_path, + STATE(483), 1, + sym_cell_path, + STATE(2337), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2340), 1, + sym_comment, + ACTIONS(1683), 22, anon_sym_if, - anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203631,147 +203403,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [71484] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - ACTIONS(1636), 1, - anon_sym_DOT, - ACTIONS(2945), 1, - anon_sym_DOLLAR, - STATE(2345), 1, - sym_comment, - STATE(2560), 1, - sym__immediate_decimal, - ACTIONS(1638), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(1640), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2559), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1628), 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, - [71533] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(1695), 1, - anon_sym_LPAREN2, - ACTIONS(3805), 1, - anon_sym_DOLLAR, - ACTIONS(4942), 1, - anon_sym_DOT, - STATE(2346), 1, - sym_comment, - STATE(2481), 1, - sym__immediate_decimal, - ACTIONS(4944), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4946), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2657), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1642), 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, - [71584] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(2945), 1, - anon_sym_DOLLAR, - STATE(2347), 1, - sym_comment, - STATE(2590), 1, - sym__immediate_decimal, - ACTIONS(4948), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4950), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(925), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1642), 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, - [71633] = 10, + [71251] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - ACTIONS(1711), 1, - sym__unquoted_pattern, - ACTIONS(2945), 1, - anon_sym_DOLLAR, - STATE(2348), 1, + ACTIONS(1558), 1, + anon_sym_DOT_DOT2, + ACTIONS(4943), 1, + anon_sym_DOT2, + STATE(466), 1, + sym_path, + STATE(2341), 2, sym_comment, - STATE(2592), 1, - sym__immediate_decimal, - ACTIONS(4948), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4950), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(747), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1689), 16, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1560), 23, + anon_sym_if, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203784,11 +203430,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71682] = 21, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [71293] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -203799,45 +203450,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4905), 1, + ACTIONS(4913), 1, + sym__newline, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2349), 1, + STATE(2326), 1, + aux_sym__repeat_newline, + STATE(2342), 1, sym_comment, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2790), 1, - sym__binary_predicate, - STATE(2791), 1, + STATE(2749), 1, sym_where_predicate, - ACTIONS(1949), 2, + STATE(2750), 1, + sym__binary_predicate_parenthesized, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71752] = 21, + [71369] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -203848,68 +203503,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, + ACTIONS(1624), 1, + anon_sym_DOLLAR, ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4911), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4931), 1, + ACTIONS(4913), 1, + sym__newline, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4933), 1, - anon_sym_DOLLAR, - ACTIONS(4935), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - STATE(1293), 1, + ACTIONS(4921), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2350), 1, + STATE(2321), 1, + aux_sym__repeat_newline, + STATE(2343), 1, sym_comment, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2630), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2922), 1, - sym__binary_predicate, - STATE(2935), 1, + STATE(2751), 1, sym_where_predicate, - ACTIONS(2510), 2, + STATE(2752), 1, + sym__binary_predicate_parenthesized, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, - STATE(2270), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2952), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71822] = 10, + [71445] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(1695), 1, - anon_sym_LPAREN2, - ACTIONS(3805), 1, - anon_sym_DOLLAR, - STATE(2351), 1, + ACTIONS(1730), 1, + anon_sym_BANG, + STATE(2344), 1, sym_comment, - STATE(2693), 1, - sym__immediate_decimal, - ACTIONS(4952), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4954), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1325), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1642), 15, - ts_builtin_sym_end, + ACTIONS(1464), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1466), 23, + anon_sym_if, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203921,71 +203569,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71870] = 21, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [71484] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(199), 1, - anon_sym_DQUOTE, - ACTIONS(201), 1, - anon_sym_SQUOTE, - ACTIONS(203), 1, - anon_sym_BQUOTE, - ACTIONS(215), 1, - sym_raw_string_begin, - ACTIONS(2750), 1, - aux_sym_expr_unary_token1, - ACTIONS(4911), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4931), 1, - anon_sym_LPAREN, - ACTIONS(4933), 1, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(1705), 1, + anon_sym_LPAREN2, + ACTIONS(3842), 1, anon_sym_DOLLAR, - ACTIONS(4935), 1, - anon_sym_DASH2, - STATE(1293), 1, - sym__expr_unary_minus, - STATE(2352), 1, - sym_comment, - STATE(2431), 1, - sym_val_string, - STATE(2450), 1, - sym__where_predicate_lhs_path_head, - STATE(2630), 1, - sym__where_predicate_lhs, - STATE(2960), 1, - sym_where_predicate, - STATE(3024), 1, - sym__binary_predicate, - ACTIONS(2510), 2, - anon_sym_true, - anon_sym_false, - STATE(2270), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2952), 2, - sym_expr_unary, - sym_val_bool, - STATE(436), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [71940] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4956), 1, + ACTIONS(4946), 1, anon_sym_DOT, - ACTIONS(4958), 1, - aux_sym__immediate_decimal_token5, - STATE(2353), 1, + STATE(2345), 1, sym_comment, - ACTIONS(751), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(753), 21, + STATE(2481), 1, + sym__immediate_decimal, + ACTIONS(4948), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4950), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2599), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1622), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203997,29 +203616,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [71980] = 6, + [71535] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4960), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4962), 1, - aux_sym__immediate_decimal_token5, - STATE(2354), 1, - sym_comment, - ACTIONS(759), 2, - anon_sym_DOT_DOT2, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + ACTIONS(1636), 1, sym__unquoted_pattern, - ACTIONS(761), 21, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + STATE(2346), 1, + sym_comment, + STATE(2617), 1, + sym__immediate_decimal, + ACTIONS(4952), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4954), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(851), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1622), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204036,35 +203658,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [72020] = 10, + [71584] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(1732), 1, - anon_sym_DOT, - ACTIONS(3805), 1, + ACTIONS(1697), 1, + sym__unquoted_pattern, + ACTIONS(2935), 1, anon_sym_DOLLAR, - STATE(2355), 1, + STATE(2347), 1, sym_comment, - STATE(2656), 1, + STATE(2649), 1, sym__immediate_decimal, - ACTIONS(1699), 2, + ACTIONS(4952), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1701), 2, + ACTIONS(4954), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2655), 2, + STATE(758), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1628), 15, - ts_builtin_sym_end, + ACTIONS(1687), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204076,33 +203692,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [72068] = 10, + [71633] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(1711), 1, - sym__unquoted_pattern, - ACTIONS(3805), 1, + ACTIONS(1652), 1, + anon_sym_DOT, + ACTIONS(2935), 1, anon_sym_DOLLAR, - STATE(2356), 1, + STATE(2348), 1, sym_comment, - STATE(2697), 1, + STATE(2522), 1, sym__immediate_decimal, - ACTIONS(4952), 2, + ACTIONS(1632), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4954), 2, + ACTIONS(1634), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1306), 2, + STATE(2526), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1689), 15, - ts_builtin_sym_end, + ACTIONS(1648), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204114,30 +203731,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [72116] = 9, + [71682] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, + anon_sym_BQUOTE, + ACTIONS(215), 1, + sym_raw_string_begin, + ACTIONS(2818), 1, + aux_sym_expr_unary_token1, + ACTIONS(4921), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4935), 1, + anon_sym_LPAREN, + ACTIONS(4937), 1, + anon_sym_DOLLAR, + ACTIONS(4939), 1, + anon_sym_DASH2, + STATE(1344), 1, + sym__expr_unary_minus, + STATE(2349), 1, + sym_comment, + STATE(2417), 1, + sym_val_string, + STATE(2443), 1, + sym__where_predicate_lhs_path_head, + STATE(2643), 1, + sym__where_predicate_lhs, + STATE(3010), 1, + sym__binary_predicate, + STATE(3011), 1, + sym_where_predicate, + ACTIONS(2423), 2, + anon_sym_true, + anon_sym_false, + STATE(2275), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2976), 2, + sym_expr_unary, + sym_val_bool, + STATE(432), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [71752] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, + anon_sym_BQUOTE, + ACTIONS(215), 1, + sym_raw_string_begin, + ACTIONS(1624), 1, + anon_sym_DOLLAR, + ACTIONS(2750), 1, + aux_sym_expr_unary_token1, + ACTIONS(4915), 1, + anon_sym_LPAREN, + ACTIONS(4917), 1, + anon_sym_DASH2, + ACTIONS(4921), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(937), 1, + sym__expr_unary_minus, + STATE(2350), 1, + sym_comment, + STATE(2417), 1, + sym_val_string, + STATE(2443), 1, + sym__where_predicate_lhs_path_head, + STATE(2588), 1, + sym__where_predicate_lhs, + STATE(2804), 1, + sym_where_predicate, + STATE(2805), 1, + sym__binary_predicate, + ACTIONS(1975), 2, + anon_sym_true, + anon_sym_false, + STATE(2259), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2840), 2, + sym_expr_unary, + sym_val_bool, + STATE(432), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [71822] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1634), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(2945), 1, + ACTIONS(2935), 1, anon_sym_DOLLAR, - STATE(923), 1, + STATE(896), 1, sym__immediate_decimal, - STATE(2357), 1, + STATE(2351), 1, sym_comment, - ACTIONS(1640), 2, + ACTIONS(1634), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1663), 2, + ACTIONS(1677), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(922), 2, + STATE(897), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1628), 16, + ACTIONS(1648), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204154,27 +203871,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [72162] = 9, + [71868] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - ACTIONS(2945), 1, - anon_sym_DOLLAR, - STATE(761), 1, - sym__immediate_decimal, - STATE(2358), 1, - sym_comment, - ACTIONS(1640), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1663), 2, + ACTIONS(4956), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(760), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1707), 16, + ACTIONS(4958), 1, + aux_sym__immediate_decimal_token5, + STATE(2352), 1, + sym_comment, + ACTIONS(755), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(757), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204191,27 +203900,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [72208] = 9, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [71908] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1634), 1, + ACTIONS(1705), 1, anon_sym_LPAREN2, - ACTIONS(2945), 1, + ACTIONS(1744), 1, + anon_sym_DOT, + ACTIONS(3842), 1, anon_sym_DOLLAR, - STATE(763), 1, - sym__immediate_decimal, - STATE(2359), 1, + STATE(2353), 1, sym_comment, - ACTIONS(1640), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1663), 2, + STATE(2621), 1, + sym__immediate_decimal, + ACTIONS(1709), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(762), 2, + ACTIONS(1711), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2625), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1677), 16, + ACTIONS(1648), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204223,32 +203940,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, - [72254] = 9, + [71956] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1634), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(2945), 1, + ACTIONS(2935), 1, anon_sym_DOLLAR, - STATE(765), 1, + STATE(763), 1, sym__immediate_decimal, - STATE(2360), 1, + STATE(2354), 1, sym_comment, - ACTIONS(1640), 2, + ACTIONS(1634), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1663), 2, + ACTIONS(1677), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, STATE(764), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1681), 16, + ACTIONS(1679), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204265,7 +203980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [72300] = 21, + [72002] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -204276,45 +203991,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, + ACTIONS(1624), 1, + anon_sym_DOLLAR, ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4911), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4931), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4933), 1, - anon_sym_DOLLAR, - ACTIONS(4935), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - STATE(1293), 1, + ACTIONS(4921), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2361), 1, + STATE(2355), 1, sym_comment, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2630), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2961), 1, - sym__binary_predicate, - STATE(2964), 1, + STATE(2791), 1, sym_where_predicate, - ACTIONS(2510), 2, + STATE(2797), 1, + sym__binary_predicate, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, - STATE(2270), 2, + STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2952), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [72370] = 21, + [72072] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -204325,45 +204040,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(2750), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4931), 1, + ACTIONS(4935), 1, anon_sym_LPAREN, - ACTIONS(4933), 1, + ACTIONS(4937), 1, anon_sym_DOLLAR, - ACTIONS(4935), 1, + ACTIONS(4939), 1, anon_sym_DASH2, - STATE(1293), 1, + STATE(1344), 1, sym__expr_unary_minus, - STATE(2362), 1, + STATE(2356), 1, sym_comment, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2630), 1, + STATE(2643), 1, sym__where_predicate_lhs, - STATE(3036), 1, + STATE(3012), 1, sym__binary_predicate, - STATE(3046), 1, + STATE(3015), 1, sym_where_predicate, - ACTIONS(2510), 2, + ACTIONS(2423), 2, anon_sym_true, anon_sym_false, - STATE(2270), 2, + STATE(2275), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2952), 2, + STATE(2976), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [72440] = 21, + [72142] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -204374,45 +204089,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(2750), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4931), 1, + ACTIONS(4935), 1, anon_sym_LPAREN, - ACTIONS(4933), 1, + ACTIONS(4937), 1, anon_sym_DOLLAR, - ACTIONS(4935), 1, + ACTIONS(4939), 1, anon_sym_DASH2, - STATE(1293), 1, + STATE(1344), 1, sym__expr_unary_minus, - STATE(2363), 1, + STATE(2357), 1, sym_comment, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2630), 1, + STATE(2643), 1, sym__where_predicate_lhs, - STATE(2979), 1, - sym__binary_predicate, - STATE(2980), 1, + STATE(3009), 1, sym_where_predicate, - ACTIONS(2510), 2, + STATE(3021), 1, + sym__binary_predicate, + ACTIONS(2423), 2, anon_sym_true, anon_sym_false, - STATE(2270), 2, + STATE(2275), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2952), 2, + STATE(2976), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [72510] = 21, + [72212] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -204423,45 +204138,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2364), 1, + STATE(2358), 1, sym_comment, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2786), 1, - sym__binary_predicate, - STATE(2787), 1, + STATE(2800), 1, sym_where_predicate, - ACTIONS(1949), 2, + STATE(2803), 1, + sym__binary_predicate, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [72580] = 21, + [72282] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -204472,72 +204187,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, - anon_sym_DOLLAR, ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4905), 1, + ACTIONS(4921), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4935), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4937), 1, + anon_sym_DOLLAR, + ACTIONS(4939), 1, anon_sym_DASH2, - ACTIONS(4911), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(1344), 1, sym__expr_unary_minus, - STATE(2365), 1, + STATE(2359), 1, sym_comment, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2643), 1, sym__where_predicate_lhs, - STATE(2788), 1, + STATE(3007), 1, sym__binary_predicate, - STATE(2789), 1, + STATE(3008), 1, sym_where_predicate, - ACTIONS(1949), 2, + ACTIONS(2423), 2, anon_sym_true, anon_sym_false, - STATE(2259), 2, + STATE(2275), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2976), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [72650] = 13, - ACTIONS(105), 1, + [72352] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1642), 1, - sym__space, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(3200), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(3719), 1, + ACTIONS(2935), 1, anon_sym_DOLLAR, - ACTIONS(4964), 1, - anon_sym_DOT, - ACTIONS(4966), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4968), 1, - aux_sym__immediate_decimal_token2, - STATE(2366), 1, - sym_comment, - STATE(2569), 1, + STATE(761), 1, sym__immediate_decimal, - ACTIONS(4970), 2, + STATE(2360), 1, + sym_comment, + ACTIONS(1634), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2716), 2, + ACTIONS(1677), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(762), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1644), 13, + ACTIONS(1715), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204551,56 +204259,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [72704] = 21, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [72398] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(199), 1, - anon_sym_DQUOTE, - ACTIONS(201), 1, - anon_sym_SQUOTE, - ACTIONS(203), 1, - anon_sym_BQUOTE, - ACTIONS(215), 1, - sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + ACTIONS(2935), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, - aux_sym_expr_unary_token1, - ACTIONS(4905), 1, - anon_sym_LPAREN, - ACTIONS(4907), 1, - anon_sym_DASH2, - ACTIONS(4911), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, - sym__expr_unary_minus, - STATE(2367), 1, + STATE(759), 1, + sym__immediate_decimal, + STATE(2361), 1, sym_comment, - STATE(2431), 1, - sym_val_string, - STATE(2450), 1, - sym__where_predicate_lhs_path_head, - STATE(2631), 1, - sym__where_predicate_lhs, - STATE(2792), 1, - sym__binary_predicate, - STATE(2793), 1, - sym_where_predicate, - ACTIONS(1949), 2, - anon_sym_true, - anon_sym_false, - STATE(2259), 2, - sym_expr_parenthesized, + ACTIONS(1634), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1677), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(760), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(2779), 2, - sym_expr_unary, - sym_val_bool, - STATE(436), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [72774] = 21, + ACTIONS(1673), 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, + [72444] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -204611,94 +204310,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(4905), 1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(2368), 1, + STATE(2362), 1, sym_comment, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2631), 1, + STATE(2588), 1, sym__where_predicate_lhs, - STATE(2794), 1, - sym__binary_predicate, - STATE(2795), 1, + STATE(2806), 1, sym_where_predicate, - ACTIONS(1949), 2, - anon_sym_true, - anon_sym_false, - STATE(2259), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2779), 2, - sym_expr_unary, - sym_val_bool, - STATE(436), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [72844] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(199), 1, - anon_sym_DQUOTE, - ACTIONS(201), 1, - anon_sym_SQUOTE, - ACTIONS(203), 1, - anon_sym_BQUOTE, - ACTIONS(215), 1, - sym_raw_string_begin, - ACTIONS(1630), 1, - anon_sym_DOLLAR, - ACTIONS(2818), 1, - aux_sym_expr_unary_token1, - ACTIONS(4905), 1, - anon_sym_LPAREN, - ACTIONS(4907), 1, - anon_sym_DASH2, - ACTIONS(4911), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(980), 1, - sym__expr_unary_minus, - STATE(2369), 1, - sym_comment, - STATE(2431), 1, - sym_val_string, - STATE(2450), 1, - sym__where_predicate_lhs_path_head, - STATE(2631), 1, - sym__where_predicate_lhs, - STATE(2796), 1, + STATE(2807), 1, sym__binary_predicate, - STATE(2797), 1, - sym_where_predicate, - ACTIONS(1949), 2, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, STATE(2259), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2779), 2, + STATE(2840), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [72914] = 21, + [72514] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(199), 1, @@ -204709,132 +204359,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(2750), 1, + ACTIONS(2818), 1, aux_sym_expr_unary_token1, - ACTIONS(4911), 1, + ACTIONS(4921), 1, aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4931), 1, + ACTIONS(4935), 1, anon_sym_LPAREN, - ACTIONS(4933), 1, + ACTIONS(4937), 1, anon_sym_DOLLAR, - ACTIONS(4935), 1, + ACTIONS(4939), 1, anon_sym_DASH2, - STATE(1293), 1, + STATE(1344), 1, sym__expr_unary_minus, - STATE(2370), 1, + STATE(2363), 1, sym_comment, - STATE(2431), 1, + STATE(2417), 1, sym_val_string, - STATE(2450), 1, + STATE(2443), 1, sym__where_predicate_lhs_path_head, - STATE(2630), 1, + STATE(2643), 1, sym__where_predicate_lhs, - STATE(2957), 1, + STATE(3005), 1, sym__binary_predicate, - STATE(2967), 1, + STATE(3006), 1, sym_where_predicate, - ACTIONS(2510), 2, + ACTIONS(2423), 2, anon_sym_true, anon_sym_false, - STATE(2270), 2, + STATE(2275), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2952), 2, + STATE(2976), 2, sym_expr_unary, sym_val_bool, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [72984] = 13, + [72584] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1622), 1, + sym__space, + ACTIONS(1636), 1, sym__unquoted_pattern, - ACTIONS(3424), 1, + ACTIONS(3270), 1, anon_sym_LPAREN2, - ACTIONS(3723), 1, + ACTIONS(3715), 1, anon_sym_DOLLAR, - ACTIONS(4972), 1, + ACTIONS(4960), 1, anon_sym_DOT, - ACTIONS(4974), 1, + ACTIONS(4962), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4976), 1, + ACTIONS(4964), 1, aux_sym__immediate_decimal_token2, - STATE(2371), 1, + STATE(2364), 1, sym_comment, - STATE(2636), 1, + STATE(2569), 1, sym__immediate_decimal, - ACTIONS(1642), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4978), 2, + ACTIONS(4966), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2828), 2, + STATE(2703), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1644), 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, - [73037] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, - sym__unquoted_pattern, - ACTIONS(4980), 1, - anon_sym_DOT_DOT2, - ACTIONS(4984), 1, - sym_filesize_unit, - ACTIONS(4986), 1, - sym_duration_unit, - STATE(2372), 1, - sym_comment, - STATE(5068), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4982), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(914), 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, - [73084] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4958), 1, - aux_sym__immediate_decimal_token5, - STATE(2373), 1, - sym_comment, - ACTIONS(751), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(753), 21, + ACTIONS(1626), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204848,142 +204438,29 @@ 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, - sym_filesize_unit, - sym_duration_unit, - [73121] = 5, + [72638] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4988), 1, - aux_sym__immediate_decimal_token5, - STATE(2374), 1, - sym_comment, - ACTIONS(791), 2, - anon_sym_DOT_DOT2, + ACTIONS(1636), 1, sym__unquoted_pattern, - ACTIONS(793), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [73158] = 12, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1628), 1, - sym__space, - ACTIONS(3200), 1, + ACTIONS(1705), 1, anon_sym_LPAREN2, - ACTIONS(3719), 1, + ACTIONS(3842), 1, anon_sym_DOLLAR, - ACTIONS(4966), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4968), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(4990), 1, - anon_sym_DOT, - STATE(2375), 1, + STATE(2365), 1, sym_comment, - STATE(2715), 1, - sym__immediate_decimal, - ACTIONS(4970), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2714), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1632), 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, - [73209] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1695), 1, - anon_sym_LPAREN2, - ACTIONS(3805), 1, - anon_sym_DOLLAR, - STATE(1322), 1, + STATE(2696), 1, sym__immediate_decimal, - STATE(2376), 1, - sym_comment, - ACTIONS(1701), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1782), 2, + ACTIONS(4968), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1320), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1628), 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, - [73254] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1695), 1, - anon_sym_LPAREN2, - ACTIONS(3805), 1, - anon_sym_DOLLAR, - STATE(1298), 1, - sym__immediate_decimal, - STATE(2377), 1, - sym_comment, - ACTIONS(1701), 2, + ACTIONS(4970), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1782), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1296), 2, + STATE(1295), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1707), 15, + ACTIONS(1622), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -204999,296 +204476,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [73299] = 9, + [72686] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, - anon_sym_LPAREN2, - ACTIONS(3805), 1, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, + anon_sym_BQUOTE, + ACTIONS(215), 1, + sym_raw_string_begin, + ACTIONS(2818), 1, + aux_sym_expr_unary_token1, + ACTIONS(4921), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4935), 1, + anon_sym_LPAREN, + ACTIONS(4937), 1, anon_sym_DOLLAR, - STATE(1301), 1, - sym__immediate_decimal, - STATE(2378), 1, + ACTIONS(4939), 1, + anon_sym_DASH2, + STATE(1344), 1, + sym__expr_unary_minus, + STATE(2366), 1, sym_comment, - ACTIONS(1701), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1782), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1300), 2, - sym__expr_parenthesized_immediate, + STATE(2417), 1, + sym_val_string, + STATE(2443), 1, + sym__where_predicate_lhs_path_head, + STATE(2643), 1, + sym__where_predicate_lhs, + STATE(2922), 1, + sym__binary_predicate, + STATE(3003), 1, + sym_where_predicate, + ACTIONS(2423), 2, + anon_sym_true, + anon_sym_false, + STATE(2275), 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, - [73344] = 9, + STATE(2976), 2, + sym_expr_unary, + sym_val_bool, + STATE(432), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [72756] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, - anon_sym_LPAREN2, - ACTIONS(3805), 1, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, + anon_sym_BQUOTE, + ACTIONS(215), 1, + sym_raw_string_begin, + ACTIONS(1624), 1, anon_sym_DOLLAR, - STATE(1304), 1, - sym__immediate_decimal, - STATE(2379), 1, + ACTIONS(2750), 1, + aux_sym_expr_unary_token1, + ACTIONS(4915), 1, + anon_sym_LPAREN, + ACTIONS(4917), 1, + anon_sym_DASH2, + ACTIONS(4921), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(937), 1, + sym__expr_unary_minus, + STATE(2367), 1, sym_comment, - ACTIONS(1701), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1782), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1302), 2, - sym__expr_parenthesized_immediate, + STATE(2417), 1, + sym_val_string, + STATE(2443), 1, + sym__where_predicate_lhs_path_head, + STATE(2588), 1, + sym__where_predicate_lhs, + STATE(2810), 1, + sym_where_predicate, + STATE(2812), 1, + sym__binary_predicate, + ACTIONS(1975), 2, + anon_sym_true, + anon_sym_false, + STATE(2259), 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, - [73389] = 6, + STATE(2840), 2, + sym_expr_unary, + sym_val_bool, + STATE(432), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [72826] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - aux_sym__immediate_decimal_token5, - STATE(2380), 1, - sym_comment, - ACTIONS(751), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(753), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [73428] = 12, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1689), 1, - sym__space, - ACTIONS(1711), 1, - sym__unquoted_pattern, - ACTIONS(3200), 1, - anon_sym_LPAREN2, - ACTIONS(3719), 1, - anon_sym_DOLLAR, - ACTIONS(4996), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4998), 1, - aux_sym__immediate_decimal_token2, - STATE(2381), 1, - sym_comment, - STATE(2907), 1, - sym__immediate_decimal, - ACTIONS(5000), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3136), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1691), 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, - [73479] = 12, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1642), 1, - sym__space, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(3200), 1, - anon_sym_LPAREN2, - ACTIONS(3719), 1, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(201), 1, + anon_sym_SQUOTE, + ACTIONS(203), 1, + anon_sym_BQUOTE, + ACTIONS(215), 1, + sym_raw_string_begin, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(4996), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4998), 1, - aux_sym__immediate_decimal_token2, - STATE(2382), 1, + ACTIONS(2750), 1, + aux_sym_expr_unary_token1, + ACTIONS(4915), 1, + anon_sym_LPAREN, + ACTIONS(4917), 1, + anon_sym_DASH2, + ACTIONS(4921), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(937), 1, + sym__expr_unary_minus, + STATE(2368), 1, sym_comment, - STATE(2903), 1, - sym__immediate_decimal, - ACTIONS(5000), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3113), 2, - sym__expr_parenthesized_immediate, + STATE(2417), 1, + sym_val_string, + STATE(2443), 1, + sym__where_predicate_lhs_path_head, + STATE(2588), 1, + sym__where_predicate_lhs, + STATE(2820), 1, + sym_where_predicate, + STATE(2824), 1, + sym__binary_predicate, + ACTIONS(1975), 2, + anon_sym_true, + anon_sym_false, + STATE(2259), 2, + sym_expr_parenthesized, sym_val_variable, - ACTIONS(1644), 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, - [73530] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5002), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5004), 1, - aux_sym__immediate_decimal_token5, - STATE(2383), 1, - sym_comment, - ACTIONS(759), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(761), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [73569] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2384), 1, - sym_comment, - ACTIONS(1486), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1488), 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, - [73603] = 5, + STATE(2840), 2, + sym_expr_unary, + sym_val_bool, + STATE(432), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [72896] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5006), 1, + ACTIONS(4972), 1, + anon_sym_DOT, + ACTIONS(4974), 1, aux_sym__immediate_decimal_token5, - STATE(2385), 1, - sym_comment, - ACTIONS(791), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(793), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [73639] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5008), 1, - anon_sym_QMARK2, - ACTIONS(5010), 1, - anon_sym_BANG, - STATE(2386), 1, - sym_comment, - STATE(2486), 1, - sym__path_suffix, - ACTIONS(1474), 20, - anon_sym_EQ, + STATE(2369), 1, + sym_comment, + ACTIONS(763), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(765), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205300,27 +204647,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_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_DOT2, - [73677] = 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, + [72936] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5012), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5014), 1, - aux_sym__immediate_decimal_token5, - STATE(2387), 1, - sym_comment, - ACTIONS(1776), 2, - anon_sym_DOT_DOT2, + ACTIONS(1697), 1, sym__unquoted_pattern, - ACTIONS(1774), 19, + ACTIONS(1705), 1, + anon_sym_LPAREN2, + ACTIONS(3842), 1, + anon_sym_DOLLAR, + STATE(2370), 1, + sym_comment, + STATE(2675), 1, + sym__immediate_decimal, + ACTIONS(4968), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4970), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1352), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1687), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205332,35 +204692,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73715] = 10, + [72984] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(1705), 1, anon_sym_LPAREN2, - ACTIONS(1864), 1, - sym__unquoted_pattern, - ACTIONS(5016), 1, - anon_sym_DOT_DOT2, - ACTIONS(5020), 1, - sym_filesize_unit, - ACTIONS(5022), 1, - sym_duration_unit, - STATE(2388), 1, + ACTIONS(3842), 1, + anon_sym_DOLLAR, + STATE(1354), 1, + sym__immediate_decimal, + STATE(2371), 1, sym_comment, - STATE(4987), 1, + ACTIONS(1711), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1776), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1357), 2, sym__expr_parenthesized_immediate, - ACTIONS(5018), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(914), 15, + sym_val_variable, + ACTIONS(1673), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -205376,17 +204731,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [73761] = 4, + [73029] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(2389), 1, + ACTIONS(1705), 1, + anon_sym_LPAREN2, + ACTIONS(3842), 1, + anon_sym_DOLLAR, + STATE(1297), 1, + sym__immediate_decimal, + STATE(2372), 1, sym_comment, - ACTIONS(1531), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1533), 21, + ACTIONS(1711), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1776), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1289), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1648), 15, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205398,38 +204764,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_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, - [73795] = 11, + [73074] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1628), 1, + ACTIONS(1622), 1, sym__space, - ACTIONS(3200), 1, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(3270), 1, anon_sym_LPAREN2, - ACTIONS(3719), 1, + ACTIONS(3715), 1, anon_sym_DOLLAR, - ACTIONS(5024), 1, + ACTIONS(4976), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5026), 1, + ACTIONS(4978), 1, aux_sym__immediate_decimal_token2, - STATE(2390), 1, + STATE(2373), 1, sym_comment, - STATE(3111), 1, + STATE(2902), 1, sym__immediate_decimal, - ACTIONS(4970), 2, + ACTIONS(4980), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3110), 2, + STATE(3116), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1632), 13, + ACTIONS(1626), 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, + [73125] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1830), 1, + anon_sym_LPAREN2, + ACTIONS(1840), 1, + sym__unquoted_pattern, + ACTIONS(4982), 1, + anon_sym_DOT_DOT2, + ACTIONS(4986), 1, + sym_filesize_unit, + ACTIONS(4988), 1, + sym_duration_unit, + STATE(2374), 1, + sym_comment, + STATE(5102), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4984), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(910), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205443,30 +204840,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [73843] = 11, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [73172] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1707), 1, - sym__space, - ACTIONS(3200), 1, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(3204), 1, anon_sym_LPAREN2, - ACTIONS(3719), 1, + ACTIONS(3723), 1, anon_sym_DOLLAR, - ACTIONS(5024), 1, + ACTIONS(4990), 1, + anon_sym_DOT, + ACTIONS(4992), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5026), 1, + ACTIONS(4994), 1, aux_sym__immediate_decimal_token2, - STATE(2391), 1, + STATE(2375), 1, sym_comment, - STATE(3131), 1, + STATE(2598), 1, sym__immediate_decimal, - ACTIONS(4970), 2, + ACTIONS(1622), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4996), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3130), 2, + STATE(2772), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1709), 13, + ACTIONS(1626), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205478,32 +204883,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, - [73891] = 11, - ACTIONS(105), 1, + [73225] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1677), 1, - sym__space, - ACTIONS(3200), 1, + ACTIONS(1705), 1, anon_sym_LPAREN2, - ACTIONS(3719), 1, + ACTIONS(3842), 1, anon_sym_DOLLAR, - ACTIONS(5024), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5026), 1, - aux_sym__immediate_decimal_token2, - STATE(2392), 1, - sym_comment, - STATE(3133), 1, + STATE(1360), 1, sym__immediate_decimal, - ACTIONS(4970), 2, + STATE(2376), 1, + sym_comment, + ACTIONS(1711), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3132), 2, + ACTIONS(1776), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1362), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1679), 13, + ACTIONS(1715), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205515,25 +204916,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, - [73939] = 6, - ACTIONS(105), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [73270] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5028), 1, - anon_sym_DOT, - ACTIONS(5030), 1, + ACTIONS(4998), 1, aux_sym__immediate_decimal_token5, - STATE(2393), 1, + STATE(2377), 1, sym_comment, - ACTIONS(753), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(751), 15, + ACTIONS(775), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(777), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205547,17 +204943,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [73977] = 4, + 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, + [73307] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2394), 1, + ACTIONS(5000), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5002), 1, + aux_sym__immediate_decimal_token5, + STATE(2378), 1, sym_comment, - ACTIONS(759), 2, + ACTIONS(755), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(761), 21, + ACTIONS(757), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205569,8 +204976,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -205579,17 +204984,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [74011] = 4, + [73346] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2395), 1, + ACTIONS(4974), 1, + aux_sym__immediate_decimal_token5, + STATE(2379), 1, sym_comment, - ACTIONS(1541), 2, + ACTIONS(763), 2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1543), 21, - ts_builtin_sym_end, - anon_sym_EQ, + sym__unquoted_pattern, + ACTIONS(765), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205601,25 +205006,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_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, - anon_sym_QMARK2, - anon_sym_BANG, - [74045] = 4, + sym_filesize_unit, + sym_duration_unit, + [73383] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2396), 1, + ACTIONS(5004), 1, + anon_sym_DOT, + ACTIONS(5006), 1, + aux_sym__immediate_decimal_token5, + STATE(2380), 1, sym_comment, - ACTIONS(1545), 2, + ACTIONS(763), 2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1547), 21, + sym__unquoted_pattern, + ACTIONS(765), 20, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205631,38 +205041,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [74079] = 11, - ACTIONS(105), 1, + sym_filesize_unit, + sym_duration_unit, + [73422] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1681), 1, - sym__space, - ACTIONS(3200), 1, + ACTIONS(1705), 1, anon_sym_LPAREN2, - ACTIONS(3719), 1, + ACTIONS(3842), 1, anon_sym_DOLLAR, - ACTIONS(5024), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5026), 1, - aux_sym__immediate_decimal_token2, - STATE(2397), 1, - sym_comment, - STATE(3135), 1, + STATE(1364), 1, sym__immediate_decimal, - ACTIONS(4970), 2, + STATE(2381), 1, + sym_comment, + ACTIONS(1711), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3134), 2, + ACTIONS(1776), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1366), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1683), 13, + ACTIONS(1679), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205674,35 +205082,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, - [74127] = 12, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [73467] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1687), 1, + sym__space, + ACTIONS(1697), 1, sym__unquoted_pattern, - ACTIONS(3424), 1, + ACTIONS(3270), 1, anon_sym_LPAREN2, - ACTIONS(3723), 1, + ACTIONS(3715), 1, anon_sym_DOLLAR, - ACTIONS(5032), 1, + ACTIONS(4976), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5034), 1, + ACTIONS(4978), 1, aux_sym__immediate_decimal_token2, - STATE(2398), 1, + STATE(2382), 1, sym_comment, - STATE(2959), 1, + STATE(2833), 1, sym__immediate_decimal, - ACTIONS(1642), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5036), 2, + ACTIONS(4980), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3286), 2, + STATE(3098), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1644), 11, + ACTIONS(1689), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205714,33 +205122,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, - [74177] = 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + [73518] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3424), 1, + ACTIONS(1648), 1, + sym__space, + ACTIONS(3270), 1, anon_sym_LPAREN2, - ACTIONS(3723), 1, + ACTIONS(3715), 1, anon_sym_DOLLAR, - ACTIONS(4974), 1, + ACTIONS(4962), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4976), 1, + ACTIONS(4964), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5038), 1, + ACTIONS(5008), 1, anon_sym_DOT, - STATE(2399), 1, + STATE(2383), 1, sym_comment, - STATE(2827), 1, + STATE(2705), 1, sym__immediate_decimal, - ACTIONS(1628), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4978), 2, + ACTIONS(4966), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2826), 2, + STATE(2707), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1632), 11, + ACTIONS(1650), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205752,17 +205161,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, - [74227] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [73569] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2400), 1, + ACTIONS(5010), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5012), 1, + aux_sym__immediate_decimal_token5, + STATE(2384), 1, sym_comment, - ACTIONS(1535), 2, + ACTIONS(1804), 2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1537), 21, - ts_builtin_sym_end, - anon_sym_EQ, + sym__unquoted_pattern, + ACTIONS(1802), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205774,29 +205187,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_COLON, + 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, - anon_sym_QMARK2, - anon_sym_BANG, - [74261] = 7, + [73607] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5040), 1, + ACTIONS(1478), 1, + anon_sym_DOT_DOT2, + ACTIONS(5014), 1, anon_sym_DOT2, - STATE(472), 1, - sym_path, - STATE(748), 1, + STATE(438), 1, sym_cell_path, - STATE(2335), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2401), 1, + STATE(712), 1, + sym_path, + STATE(2385), 1, sym_comment, - ACTIONS(1905), 19, - anon_sym_if, + STATE(2427), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1480), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205808,66 +205223,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, - [74301] = 12, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1711), 1, - sym__unquoted_pattern, - ACTIONS(3424), 1, - anon_sym_LPAREN2, - ACTIONS(3723), 1, - anon_sym_DOLLAR, - ACTIONS(5032), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5034), 1, - aux_sym__immediate_decimal_token2, - STATE(2402), 1, - sym_comment, - STATE(2971), 1, - sym__immediate_decimal, - ACTIONS(1689), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5036), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3279), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1691), 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, - [74351] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [73649] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5040), 1, - anon_sym_DOT2, - STATE(472), 1, - sym_path, - STATE(758), 1, - sym_cell_path, - STATE(2335), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2403), 1, + ACTIONS(5016), 1, + anon_sym_DOT, + ACTIONS(5018), 1, + aux_sym__immediate_decimal_token5, + STATE(2386), 1, sym_comment, - ACTIONS(1925), 19, - anon_sym_if, + ACTIONS(1812), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1810), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205880,59 +205254,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74391] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5042), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5044), 1, - aux_sym__immediate_decimal_token5, - STATE(2404), 1, - sym_comment, - ACTIONS(761), 6, - sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(759), 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, - [74429] = 7, + [73687] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5046), 1, + ACTIONS(5020), 1, anon_sym_QMARK2, - ACTIONS(5048), 1, + ACTIONS(5022), 1, anon_sym_BANG, - STATE(742), 1, + STATE(713), 1, sym__path_suffix, - STATE(2405), 1, + STATE(2387), 1, sym_comment, - ACTIONS(1472), 2, + ACTIONS(1470), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1474), 18, + ACTIONS(1472), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -205951,17 +205294,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74469] = 5, + [73727] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4994), 1, + ACTIONS(5024), 1, aux_sym__immediate_decimal_token5, - STATE(2406), 1, + STATE(2388), 1, sym_comment, - ACTIONS(751), 2, + ACTIONS(775), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(753), 20, + ACTIONS(777), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -205982,19 +205325,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [74505] = 6, - ACTIONS(3), 1, + [73763] = 11, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5050), 1, - anon_sym_DOT, - ACTIONS(5052), 1, - aux_sym__immediate_decimal_token5, - STATE(2407), 1, + ACTIONS(1715), 1, + sym__space, + ACTIONS(3270), 1, + anon_sym_LPAREN2, + ACTIONS(3715), 1, + anon_sym_DOLLAR, + ACTIONS(5026), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5028), 1, + aux_sym__immediate_decimal_token2, + STATE(2389), 1, sym_comment, - ACTIONS(1790), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1788), 19, + STATE(3103), 1, + sym__immediate_decimal, + ACTIONS(4966), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3104), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1717), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206008,29 +205362,30 @@ 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, - [74543] = 8, - ACTIONS(3), 1, + [73811] = 11, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1466), 1, - anon_sym_DOT_DOT2, - ACTIONS(5054), 1, - anon_sym_DOT2, - STATE(431), 1, - sym_cell_path, - STATE(737), 1, - sym_path, - STATE(2408), 1, + ACTIONS(1679), 1, + sym__space, + ACTIONS(3270), 1, + anon_sym_LPAREN2, + ACTIONS(3715), 1, + anon_sym_DOLLAR, + ACTIONS(5026), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5028), 1, + aux_sym__immediate_decimal_token2, + STATE(2390), 1, sym_comment, - STATE(2434), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1468), 18, - ts_builtin_sym_end, + STATE(3105), 1, + sym__immediate_decimal, + ACTIONS(4966), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3107), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1681), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206042,21 +205397,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [74585] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [73859] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2409), 1, + ACTIONS(5030), 1, + anon_sym_DOT2, + STATE(466), 1, + sym_path, + STATE(768), 1, + sym_cell_path, + STATE(2337), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2391), 1, sym_comment, - ACTIONS(791), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(793), 21, + ACTIONS(1926), 19, + anon_sym_if, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206069,24 +205426,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [74619] = 4, - ACTIONS(3), 1, + [73899] = 11, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2410), 1, + ACTIONS(1648), 1, + sym__space, + ACTIONS(3270), 1, + anon_sym_LPAREN2, + ACTIONS(3715), 1, + anon_sym_DOLLAR, + ACTIONS(5026), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5028), 1, + aux_sym__immediate_decimal_token2, + STATE(2392), 1, sym_comment, - ACTIONS(803), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(805), 21, + STATE(3117), 1, + sym__immediate_decimal, + ACTIONS(4966), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3118), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1650), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206100,25 +205469,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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [74653] = 4, + [73947] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2411), 1, + ACTIONS(5006), 1, + aux_sym__immediate_decimal_token5, + STATE(2393), 1, sym_comment, - ACTIONS(1527), 2, + ACTIONS(763), 2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1529), 21, + sym__unquoted_pattern, + ACTIONS(765), 20, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206130,39 +205492,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_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [74687] = 11, + sym_filesize_unit, + sym_duration_unit, + [73983] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3424), 1, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(3204), 1, anon_sym_LPAREN2, ACTIONS(3723), 1, anon_sym_DOLLAR, - ACTIONS(5056), 1, + ACTIONS(5032), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5058), 1, + ACTIONS(5034), 1, aux_sym__immediate_decimal_token2, - STATE(2412), 1, + STATE(2394), 1, sym_comment, - STATE(3367), 1, + STATE(2930), 1, sym__immediate_decimal, - ACTIONS(1628), 2, + ACTIONS(1622), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4978), 2, + ACTIONS(5036), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3359), 2, + STATE(3392), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1632), 11, + ACTIONS(1626), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206174,31 +205538,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, - [74734] = 11, + [74033] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3424), 1, + ACTIONS(1697), 1, + sym__unquoted_pattern, + ACTIONS(3204), 1, anon_sym_LPAREN2, ACTIONS(3723), 1, anon_sym_DOLLAR, - ACTIONS(5056), 1, + ACTIONS(5032), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5058), 1, + ACTIONS(5034), 1, aux_sym__immediate_decimal_token2, - STATE(2413), 1, + STATE(2395), 1, sym_comment, - STATE(3278), 1, + STATE(2954), 1, sym__immediate_decimal, - ACTIONS(1681), 2, + ACTIONS(1687), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4978), 2, + ACTIONS(5036), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3277), 2, + STATE(3263), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1683), 11, + ACTIONS(1689), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206210,16 +205576,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, - [74781] = 4, + [74083] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2414), 1, + STATE(2396), 1, sym_comment, - ACTIONS(803), 2, + ACTIONS(1550), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(805), 20, + anon_sym_DOT2, + ACTIONS(1552), 21, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206231,28 +205598,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_COLON, 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, - [74814] = 6, + anon_sym_QMARK2, + anon_sym_BANG, + [74117] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5060), 1, - anon_sym_DOT, - ACTIONS(5062), 1, - aux_sym__immediate_decimal_token5, - STATE(2415), 1, + STATE(2397), 1, sym_comment, - ACTIONS(1790), 2, + ACTIONS(1490), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1788), 18, + anon_sym_DOT2, + ACTIONS(1492), 21, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206264,26 +205628,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_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74851] = 6, + anon_sym_QMARK2, + anon_sym_BANG, + [74151] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5064), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5066), 1, - aux_sym__immediate_decimal_token5, - STATE(2416), 1, + STATE(2398), 1, sym_comment, - ACTIONS(1776), 2, + ACTIONS(1544), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1774), 18, + anon_sym_DOT2, + ACTIONS(1546), 21, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206295,29 +205658,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_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74888] = 8, + anon_sym_QMARK2, + anon_sym_BANG, + [74185] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1705), 1, + STATE(2399), 1, + sym_comment, + ACTIONS(1540), 2, anon_sym_DOT_DOT2, - ACTIONS(5054), 1, anon_sym_DOT2, - STATE(737), 1, - sym_path, - STATE(981), 1, - sym_cell_path, - STATE(2417), 1, - sym_comment, - STATE(2434), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1703), 17, + ACTIONS(1542), 21, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206329,34 +205688,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_and2, anon_sym_xor2, anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74929] = 11, - ACTIONS(105), 1, + anon_sym_QMARK2, + anon_sym_BANG, + [74219] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(914), 1, - sym__space, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(5068), 1, + STATE(2400), 1, + sym_comment, + ACTIONS(755), 2, anon_sym_DOT_DOT2, - ACTIONS(5072), 1, - sym_filesize_unit, - ACTIONS(5074), 1, - sym_duration_unit, - ACTIONS(5076), 1, sym__unquoted_pattern, - STATE(2418), 1, - sym_comment, - STATE(5081), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5070), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(811), 13, + ACTIONS(757), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206370,24 +205718,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [74976] = 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, + [74253] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5078), 1, + ACTIONS(5038), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5080), 1, + ACTIONS(5040), 1, aux_sym__immediate_decimal_token5, - STATE(2419), 1, + STATE(2401), 1, sym_comment, - ACTIONS(761), 7, - ts_builtin_sym_end, + ACTIONS(757), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(759), 13, + ACTIONS(755), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206399,125 +205754,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [75013] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3348), 1, - anon_sym_LPAREN2, - ACTIONS(3850), 1, - anon_sym_DOLLAR, - ACTIONS(5082), 1, - anon_sym_DOT, - ACTIONS(5084), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5086), 1, - aux_sym__immediate_decimal_token2, - STATE(2420), 1, - sym_comment, - STATE(2723), 1, - sym__immediate_decimal, - ACTIONS(1644), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5088), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2985), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1642), 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, - [75064] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5092), 1, - anon_sym_GT2, - ACTIONS(5094), 1, - sym__entry_separator, - ACTIONS(5096), 1, - sym_raw_string_begin, - STATE(2421), 1, - sym_comment, - STATE(2422), 1, - aux_sym__types_body_repeat2, - ACTIONS(5090), 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, - [75103] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3761), 1, - sym_raw_string_begin, - ACTIONS(5098), 1, - sym__entry_separator, - STATE(2422), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3756), 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, - [75138] = 8, + [74291] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1671), 1, - anon_sym_DOT_DOT2, - ACTIONS(5054), 1, + ACTIONS(5030), 1, anon_sym_DOT2, - STATE(737), 1, + STATE(466), 1, sym_path, - STATE(937), 1, + STATE(812), 1, sym_cell_path, - STATE(2423), 1, - sym_comment, - STATE(2434), 1, + STATE(2337), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1669), 17, - ts_builtin_sym_end, + STATE(2402), 1, + sym_comment, + ACTIONS(1930), 19, + anon_sym_if, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206529,22 +205784,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75179] = 5, + [74331] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5101), 1, - aux_sym__immediate_decimal_token5, - STATE(2424), 1, + ACTIONS(5042), 1, + anon_sym_QMARK2, + ACTIONS(5044), 1, + anon_sym_BANG, + STATE(2403), 1, sym_comment, - ACTIONS(1868), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1866), 19, + STATE(2506), 1, + sym__path_suffix, + ACTIONS(1472), 20, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206556,39 +205815,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_COLON, + 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, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75214] = 11, - ACTIONS(105), 1, + anon_sym_DOT2, + [74369] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3424), 1, - anon_sym_LPAREN2, - ACTIONS(3723), 1, - anon_sym_DOLLAR, - ACTIONS(5056), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5058), 1, - aux_sym__immediate_decimal_token2, - STATE(2425), 1, + STATE(2404), 1, sym_comment, - STATE(3268), 1, - sym__immediate_decimal, - ACTIONS(1707), 2, + ACTIONS(1574), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1576), 21, ts_builtin_sym_end, - sym__space, - ACTIONS(4978), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3266), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1709), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206600,20 +205845,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, - [75261] = 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, + [74403] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1490), 1, + STATE(2405), 1, + sym_comment, + ACTIONS(1522), 2, anon_sym_DOT_DOT2, - ACTIONS(5103), 1, anon_sym_DOT2, - STATE(737), 1, - sym_path, - STATE(2426), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1492), 18, + ACTIONS(1524), 21, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206631,31 +205881,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [75298] = 11, + anon_sym_QMARK2, + anon_sym_BANG, + [74437] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3424), 1, + ACTIONS(3204), 1, anon_sym_LPAREN2, ACTIONS(3723), 1, anon_sym_DOLLAR, - ACTIONS(5056), 1, + ACTIONS(4992), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5058), 1, + ACTIONS(4994), 1, aux_sym__immediate_decimal_token2, - STATE(2427), 1, + ACTIONS(5046), 1, + anon_sym_DOT, + STATE(2406), 1, sym_comment, - STATE(3275), 1, + STATE(2768), 1, sym__immediate_decimal, - ACTIONS(1677), 2, + ACTIONS(1648), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4978), 2, + ACTIONS(4996), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3271), 2, + STATE(2767), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1679), 11, + ACTIONS(1650), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206667,24 +205921,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, - [75345] = 6, + [74487] = 11, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_DOT, - ACTIONS(5108), 1, - aux_sym__immediate_decimal_token5, - STATE(2428), 1, - sym_comment, - ACTIONS(753), 7, - ts_builtin_sym_end, + ACTIONS(1673), 1, sym__space, + ACTIONS(3270), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(751), 13, + ACTIONS(3715), 1, + anon_sym_DOLLAR, + ACTIONS(5026), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5028), 1, + aux_sym__immediate_decimal_token2, + STATE(2407), 1, + sym_comment, + STATE(3099), 1, + sym__immediate_decimal, + ACTIONS(4966), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3101), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1675), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206696,23 +205956,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [75382] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [74535] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5110), 1, + ACTIONS(5048), 1, + anon_sym_DOT, + ACTIONS(5050), 1, aux_sym__immediate_decimal_token5, - STATE(2429), 1, + STATE(2408), 1, sym_comment, - ACTIONS(793), 6, + ACTIONS(765), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(791), 15, + ACTIONS(763), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206728,21 +205990,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [75417] = 7, + [74573] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5112), 1, - anon_sym_DOT2, - STATE(2309), 1, - sym_cell_path, - STATE(2430), 1, + STATE(2409), 1, sym_comment, - STATE(2469), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2485), 1, - sym_path, - ACTIONS(1468), 18, - anon_sym_EQ, + ACTIONS(801), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(803), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206754,122 +206010,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, anon_sym_RBRACE, - [75456] = 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, + [74607] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1685), 1, - anon_sym_QMARK2, - ACTIONS(1687), 1, - anon_sym_BANG, - STATE(2431), 1, - sym_comment, - STATE(2573), 1, - sym__path_suffix, - ACTIONS(5116), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5114), 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, - [75495] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5094), 1, - sym__entry_separator, - ACTIONS(5096), 1, - sym_raw_string_begin, - ACTIONS(5118), 1, - anon_sym_GT2, - STATE(2422), 1, - aux_sym__types_body_repeat2, - STATE(2432), 1, + STATE(2410), 1, sym_comment, - ACTIONS(5090), 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, - [75534] = 7, - ACTIONS(105), 1, + ACTIONS(775), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(777), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [74641] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5094), 1, - sym__entry_separator, - ACTIONS(5096), 1, - sym_raw_string_begin, - ACTIONS(5120), 1, - anon_sym_GT2, - STATE(2422), 1, - aux_sym__types_body_repeat2, - STATE(2433), 1, + ACTIONS(1830), 1, + anon_sym_LPAREN2, + ACTIONS(1872), 1, + sym__unquoted_pattern, + ACTIONS(5052), 1, + anon_sym_DOT_DOT2, + ACTIONS(5056), 1, + sym_filesize_unit, + ACTIONS(5058), 1, + sym_duration_unit, + STATE(2411), 1, sym_comment, - ACTIONS(5090), 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, - [75573] = 7, + STATE(5063), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5054), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(910), 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, + [74687] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1577), 1, + ACTIONS(1669), 1, anon_sym_DOT_DOT2, - ACTIONS(5054), 1, + ACTIONS(5014), 1, anon_sym_DOT2, - STATE(737), 1, + STATE(712), 1, sym_path, - STATE(2426), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2434), 1, + STATE(964), 1, + sym_cell_path, + STATE(2412), 1, sym_comment, - ACTIONS(1579), 18, + STATE(2427), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1667), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206882,59 +206114,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_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [75612] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5094), 1, - sym__entry_separator, - ACTIONS(5096), 1, - sym_raw_string_begin, - ACTIONS(5122), 1, - anon_sym_GT2, - STATE(2422), 1, - aux_sym__types_body_repeat2, - STATE(2435), 1, - sym_comment, - ACTIONS(5090), 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, - [75651] = 5, + [74728] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5030), 1, + ACTIONS(5060), 1, aux_sym__immediate_decimal_token5, - STATE(2436), 1, + STATE(2413), 1, sym_comment, - ACTIONS(753), 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(751), 15, + ACTIONS(775), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206950,16 +206149,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [75686] = 4, + [74763] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2437), 1, + ACTIONS(5018), 1, + aux_sym__immediate_decimal_token5, + STATE(2414), 1, sym_comment, - ACTIONS(759), 2, + ACTIONS(1812), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(761), 20, - ts_builtin_sym_end, + ACTIONS(1810), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206971,24 +206171,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, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [75719] = 4, + [74798] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2438), 1, + ACTIONS(5062), 1, + aux_sym__immediate_decimal_token5, + STATE(2415), 1, sym_comment, - ACTIONS(791), 2, + ACTIONS(1876), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(793), 20, - ts_builtin_sym_end, + ACTIONS(1874), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207000,25 +206201,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [75752] = 5, - ACTIONS(3), 1, + [74833] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5052), 1, + ACTIONS(5050), 1, aux_sym__immediate_decimal_token5, - STATE(2439), 1, + STATE(2416), 1, sym_comment, - ACTIONS(1790), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1788), 19, + ACTIONS(765), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(763), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207032,30 +206237,137 @@ 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_DOT_DOT2, + sym__unquoted_pattern, + [74868] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1699), 1, + anon_sym_QMARK2, + ACTIONS(1701), 1, + anon_sym_BANG, + STATE(2417), 1, + sym_comment, + STATE(2573), 1, + sym__path_suffix, + ACTIONS(5066), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5064), 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, + [74907] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1636), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3242), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75787] = 8, + ACTIONS(3870), 1, + anon_sym_DOLLAR, + ACTIONS(5068), 1, + anon_sym_DOT, + ACTIONS(5070), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5072), 1, + aux_sym__immediate_decimal_token2, + STATE(2418), 1, + sym_comment, + STATE(2685), 1, + sym__immediate_decimal, + ACTIONS(1626), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5074), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3028), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1622), 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, + [74958] = 11, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5124), 1, - anon_sym_DOT2, - STATE(2440), 1, + ACTIONS(3204), 1, + anon_sym_LPAREN2, + ACTIONS(3723), 1, + anon_sym_DOLLAR, + ACTIONS(5076), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5078), 1, + aux_sym__immediate_decimal_token2, + STATE(2419), 1, sym_comment, - STATE(2509), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2581), 1, - sym_path, - STATE(2691), 1, - sym_cell_path, - ACTIONS(1468), 3, + STATE(3412), 1, + sym__immediate_decimal, + ACTIONS(1679), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4996), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3411), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1681), 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, + [75005] = 11, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(910), 1, sym__space, + ACTIONS(1830), 1, + anon_sym_LPAREN2, + ACTIONS(5080), 1, + anon_sym_DOT_DOT2, + ACTIONS(5084), 1, + sym_filesize_unit, + ACTIONS(5086), 1, + sym_duration_unit, + ACTIONS(5088), 1, + sym__unquoted_pattern, + STATE(2420), 1, + sym_comment, + STATE(4949), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5082), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1466), 14, + ACTIONS(811), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207069,29 +206381,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [75827] = 5, - ACTIONS(3), 1, + [75052] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5126), 1, - sym__newline, - STATE(2441), 2, + ACTIONS(5092), 1, + anon_sym_GT2, + ACTIONS(5094), 1, + sym__entry_separator, + ACTIONS(5096), 1, + sym_raw_string_begin, + STATE(2421), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3782), 3, + STATE(2422), 1, + aux_sym__types_body_repeat2, + ACTIONS(5090), 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, - ACTIONS(3784), 16, + [75091] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3746), 1, sym_raw_string_begin, + ACTIONS(5098), 1, + sym__entry_separator, + STATE(2422), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(3741), 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, @@ -207099,24 +206442,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [75861] = 8, - ACTIONS(105), 1, + aux_sym__unquoted_in_record_token1, + [75126] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5124), 1, - anon_sym_DOT2, - STATE(2442), 1, + STATE(2423), 1, sym_comment, - STATE(2509), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2581), 1, - sym_path, - STATE(2701), 1, - sym_cell_path, - ACTIONS(1669), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1671), 14, + 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, @@ -207128,19 +206464,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [75901] = 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, + [75159] = 7, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(5094), 1, sym__entry_separator, ACTIONS(5096), 1, sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_GT2, STATE(2422), 1, aux_sym__types_body_repeat2, - STATE(2443), 1, + STATE(2424), 1, sym_comment, ACTIONS(5090), 18, anon_sym_true, @@ -207161,45 +206504,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_record_token1, - [75937] = 6, - ACTIONS(3), 1, + [75198] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5129), 1, - anon_sym_DOT, - ACTIONS(5131), 1, + ACTIONS(5103), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5105), 1, aux_sym__immediate_decimal_token5, - STATE(2444), 1, + STATE(2425), 1, sym_comment, - ACTIONS(751), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(753), 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(757), 7, + ts_builtin_sym_end, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [75973] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5133), 1, - anon_sym_BANG, - STATE(2445), 1, - sym_comment, - ACTIONS(1462), 20, - anon_sym_EQ, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(755), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207211,117 +206533,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_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_DOT2, - [76005] = 12, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [75235] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3348), 1, - anon_sym_LPAREN2, - ACTIONS(3850), 1, - anon_sym_DOLLAR, - ACTIONS(5135), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5137), 1, - aux_sym__immediate_decimal_token2, - STATE(2446), 1, + ACTIONS(5094), 1, + sym__entry_separator, + ACTIONS(5096), 1, + sym_raw_string_begin, + ACTIONS(5107), 1, + anon_sym_GT2, + STATE(2422), 1, + aux_sym__types_body_repeat2, + STATE(2426), 1, sym_comment, - STATE(3104), 1, - sym__immediate_decimal, - ACTIONS(1644), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5139), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3489), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1642), 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, - [76053] = 6, + ACTIONS(5090), 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, + [75274] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5141), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5143), 1, - aux_sym__immediate_decimal_token5, - STATE(2447), 1, - sym_comment, - ACTIONS(759), 6, - sym_identifier, - anon_sym_DASH2, + ACTIONS(1567), 1, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(761), 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, - [76089] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5133), 1, - anon_sym_QMARK2, - STATE(2448), 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, + ACTIONS(5014), 1, anon_sym_DOT2, - [76121] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2449), 1, + STATE(712), 1, + sym_path, + STATE(2427), 1, sym_comment, - ACTIONS(1776), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1774), 19, + STATE(2439), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1569), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207333,57 +206593,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [76153] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1886), 1, - anon_sym_DOT2, - STATE(472), 1, - sym_path, - STATE(2450), 1, - sym_comment, - STATE(2473), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(5147), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5145), 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, - [76191] = 5, - ACTIONS(3), 1, + [75313] = 11, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5062), 1, - aux_sym__immediate_decimal_token5, - STATE(2451), 1, + ACTIONS(3204), 1, + anon_sym_LPAREN2, + ACTIONS(3723), 1, + anon_sym_DOLLAR, + ACTIONS(5076), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5078), 1, + aux_sym__immediate_decimal_token2, + STATE(2428), 1, sym_comment, - ACTIONS(1790), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1788), 18, + STATE(3414), 1, + sym__immediate_decimal, + ACTIONS(1715), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4996), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3413), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1717), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207395,21 +206635,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, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76225] = 4, + [75360] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2452), 1, + STATE(2429), 1, sym_comment, - ACTIONS(1868), 2, + ACTIONS(755), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1866), 19, + ACTIONS(757), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207421,23 +206656,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [76257] = 4, + sym_filesize_unit, + sym_duration_unit, + [75393] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5094), 1, + sym__entry_separator, + ACTIONS(5096), 1, + sym_raw_string_begin, + ACTIONS(5109), 1, + anon_sym_GT2, + STATE(2422), 1, + aux_sym__types_body_repeat2, + STATE(2430), 1, + sym_comment, + ACTIONS(5090), 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, + [75432] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2453), 1, + ACTIONS(5111), 1, + anon_sym_DOT, + ACTIONS(5113), 1, + aux_sym__immediate_decimal_token5, + STATE(2431), 1, sym_comment, - ACTIONS(1923), 2, + ACTIONS(1812), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1921), 19, + ACTIONS(1810), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207449,58 +206721,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [76289] = 4, + [75469] = 11, ACTIONS(105), 1, anon_sym_POUND, - STATE(2454), 1, - sym_comment, - ACTIONS(793), 6, - sym__space, + ACTIONS(3204), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(791), 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, - [76321] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5149), 1, - anon_sym_QMARK2, - ACTIONS(5151), 1, - anon_sym_BANG, - STATE(2455), 1, + ACTIONS(3723), 1, + anon_sym_DOLLAR, + ACTIONS(5076), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5078), 1, + aux_sym__immediate_decimal_token2, + STATE(2432), 1, sym_comment, - STATE(2584), 1, - sym__path_suffix, - ACTIONS(1474), 3, + STATE(3382), 1, + sym__immediate_decimal, + ACTIONS(1648), 2, + ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1472), 15, + ACTIONS(4996), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3380), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1650), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207512,23 +206763,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [76359] = 4, + [75516] = 11, ACTIONS(105), 1, anon_sym_POUND, - STATE(2456), 1, + ACTIONS(3204), 1, + anon_sym_LPAREN2, + ACTIONS(3723), 1, + anon_sym_DOLLAR, + ACTIONS(5076), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5078), 1, + aux_sym__immediate_decimal_token2, + STATE(2433), 1, sym_comment, - ACTIONS(805), 6, + STATE(3418), 1, + sym__immediate_decimal, + ACTIONS(1673), 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(803), 15, + ACTIONS(4996), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3417), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1675), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207540,24 +206799,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, - [76391] = 7, + [75563] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5040), 1, + ACTIONS(5115), 1, anon_sym_DOT2, - STATE(472), 1, - sym_path, - STATE(959), 1, + STATE(2305), 1, sym_cell_path, - STATE(2335), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2457), 1, + STATE(2434), 1, sym_comment, - ACTIONS(1880), 17, + STATE(2472), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2499), 1, + sym_path, + ACTIONS(1480), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207569,26 +206825,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_GT2, + anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [76429] = 7, + [75602] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5040), 1, + ACTIONS(1685), 1, + anon_sym_DOT_DOT2, + ACTIONS(5014), 1, anon_sym_DOT2, - STATE(472), 1, + STATE(712), 1, sym_path, - STATE(944), 1, + STATE(935), 1, sym_cell_path, - STATE(2335), 1, + STATE(2427), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2458), 1, + STATE(2435), 1, sym_comment, - ACTIONS(1901), 17, + ACTIONS(1683), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207600,26 +206859,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_and2, anon_sym_xor2, anon_sym_or2, - [76467] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75643] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5040), 1, - anon_sym_DOT2, - STATE(472), 1, - sym_path, - STATE(939), 1, - sym_cell_path, - STATE(2335), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2459), 1, + ACTIONS(5117), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5119), 1, + aux_sym__immediate_decimal_token5, + STATE(2436), 1, sym_comment, - ACTIONS(1909), 17, + ACTIONS(1804), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1802), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207631,27 +206889,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [76505] = 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75680] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5153), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5155), 1, + ACTIONS(5121), 1, + anon_sym_DOT, + ACTIONS(5123), 1, aux_sym__immediate_decimal_token5, - STATE(2460), 1, + STATE(2437), 1, sym_comment, - ACTIONS(1774), 4, + ACTIONS(765), 7, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1776), 15, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(763), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207663,25 +206924,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [76541] = 7, + [75717] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(2108), 1, - anon_sym_LPAREN2, - ACTIONS(5157), 1, - anon_sym_DOT_DOT2, - STATE(2461), 1, + STATE(2438), 1, sym_comment, - ACTIONS(5159), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2104), 16, + ACTIONS(801), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(803), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207693,58 +206947,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, - [76579] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5108), 1, - aux_sym__immediate_decimal_token5, - STATE(2462), 1, - sym_comment, - ACTIONS(753), 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(751), 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, - [76613] = 8, - ACTIONS(105), 1, + [75750] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5124), 1, + ACTIONS(1558), 1, + anon_sym_DOT_DOT2, + ACTIONS(5125), 1, anon_sym_DOT2, - STATE(2463), 1, + STATE(712), 1, + sym_path, + STATE(2439), 2, sym_comment, - STATE(2509), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2581), 1, - sym_path, - STATE(2698), 1, - sym_cell_path, - ACTIONS(1703), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1705), 14, + ACTIONS(1560), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207756,36 +206980,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_DOT_DOT2, - [76653] = 12, + anon_sym_COLON, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75787] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3348), 1, + ACTIONS(1636), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3242), 1, anon_sym_LPAREN2, - ACTIONS(3850), 1, + ACTIONS(3870), 1, anon_sym_DOLLAR, - ACTIONS(5084), 1, + ACTIONS(5128), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5086), 1, + ACTIONS(5130), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5161), 1, - anon_sym_DOT, - STATE(2464), 1, + STATE(2440), 1, sym_comment, - STATE(2984), 1, + STATE(3052), 1, sym__immediate_decimal, - ACTIONS(1632), 2, + ACTIONS(1626), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(5088), 2, + ACTIONS(5132), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2983), 2, + STATE(3473), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1628), 9, + ACTIONS(1622), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -207795,19 +207022,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [76701] = 4, + [75835] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2465), 1, + STATE(2441), 1, sym_comment, - ACTIONS(761), 6, + ACTIONS(803), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(759), 15, + ACTIONS(801), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207823,68 +207050,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [76733] = 11, + [75867] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(5163), 1, - anon_sym_DOT_DOT2, - ACTIONS(5167), 1, - sym_filesize_unit, - ACTIONS(5169), 1, - sym_duration_unit, - ACTIONS(5171), 1, - sym__unquoted_pattern, - STATE(2466), 1, + ACTIONS(5094), 1, + sym__entry_separator, + ACTIONS(5096), 1, + sym_raw_string_begin, + STATE(2422), 1, + aux_sym__types_body_repeat2, + STATE(2442), 1, sym_comment, - STATE(5079), 1, - sym__expr_parenthesized_immediate, - ACTIONS(914), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5165), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(811), 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, - [76779] = 12, + ACTIONS(5090), 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, + [75903] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3348), 1, - anon_sym_LPAREN2, - ACTIONS(3850), 1, - anon_sym_DOLLAR, - ACTIONS(5135), 1, + ACTIONS(1898), 1, + anon_sym_DOT2, + STATE(466), 1, + sym_path, + STATE(2443), 1, + sym_comment, + STATE(2475), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(5136), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5134), 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, + [75941] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5138), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5137), 1, - aux_sym__immediate_decimal_token2, - STATE(2467), 1, + ACTIONS(5140), 1, + aux_sym__immediate_decimal_token5, + STATE(2444), 1, sym_comment, - STATE(3152), 1, - sym__immediate_decimal, - ACTIONS(1691), 2, + ACTIONS(755), 6, sym_identifier, anon_sym_DASH2, - ACTIONS(5139), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3506), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1689), 9, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(757), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -207892,104 +207135,20 @@ 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, - [76827] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5173), 1, - aux_sym__immediate_decimal_token5, - STATE(2468), 1, - sym_comment, - ACTIONS(1868), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1866), 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, - [76861] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5112), 1, - anon_sym_DOT2, - STATE(2469), 1, - sym_comment, - STATE(2470), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2485), 1, - sym_path, - ACTIONS(1579), 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_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - [76897] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5175), 1, - anon_sym_DOT2, - STATE(2485), 1, - sym_path, - STATE(2470), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1492), 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_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - [76931] = 5, + [75977] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5178), 1, + ACTIONS(5142), 1, aux_sym__immediate_decimal_token5, - STATE(2471), 1, + STATE(2445), 1, sym_comment, - ACTIONS(793), 7, + ACTIONS(777), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, @@ -207997,7 +207156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(791), 13, + ACTIONS(775), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208011,81 +207170,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [76965] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2140), 1, - anon_sym_BANG, - STATE(2472), 1, - sym_comment, - ACTIONS(1460), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1462), 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_COLON, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76999] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1886), 1, - anon_sym_DOT2, - STATE(428), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(472), 1, - sym_path, - STATE(2473), 1, - sym_comment, - ACTIONS(5182), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5180), 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, - [77037] = 6, + [76011] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5184), 1, + ACTIONS(5144), 1, anon_sym_DOT, - ACTIONS(5186), 1, + ACTIONS(5146), 1, aux_sym__immediate_decimal_token5, - STATE(2474), 1, + STATE(2446), 1, sym_comment, - ACTIONS(1788), 4, + ACTIONS(1810), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1790), 15, + ACTIONS(1812), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208101,49 +207200,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [77073] = 4, - ACTIONS(105), 1, + [76047] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2475), 1, + ACTIONS(5148), 1, + anon_sym_DOT, + ACTIONS(5150), 1, + aux_sym__immediate_decimal_token5, + STATE(2447), 1, sym_comment, - ACTIONS(3780), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3778), 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, - [77105] = 7, - ACTIONS(3), 1, + ACTIONS(763), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(765), 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, + [76083] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern, - ACTIONS(5188), 1, - anon_sym_DOT_DOT2, - STATE(2476), 1, + ACTIONS(5152), 1, + anon_sym_QMARK2, + ACTIONS(5154), 1, + anon_sym_BANG, + STATE(2448), 1, sym_comment, - ACTIONS(5190), 2, + STATE(2582), 1, + sym__path_suffix, + ACTIONS(1472), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2114), 16, + ACTIONS(1470), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208157,23 +207259,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [77143] = 7, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [76121] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5040), 1, - anon_sym_DOT2, - STATE(472), 1, - sym_path, - STATE(989), 1, - sym_cell_path, - STATE(2335), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2477), 1, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(2129), 1, + anon_sym_LPAREN2, + ACTIONS(5156), 1, + anon_sym_DOT_DOT2, + STATE(2449), 1, sym_comment, - ACTIONS(1917), 17, + ACTIONS(5158), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2125), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208186,27 +207288,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_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77181] = 7, - ACTIONS(3), 1, + [76159] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(2108), 1, - anon_sym_LPAREN2, - ACTIONS(5192), 1, - anon_sym_DOT_DOT2, - STATE(2478), 1, + ACTIONS(5123), 1, + aux_sym__immediate_decimal_token5, + STATE(2450), 1, sym_comment, - ACTIONS(5194), 2, + ACTIONS(765), 7, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2104), 15, - ts_builtin_sym_end, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(763), 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, + [76193] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2451), 1, + sym_comment, + ACTIONS(1804), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1802), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208218,23 +207341,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77218] = 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [76225] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2479), 1, + STATE(2452), 1, sym_comment, - ACTIONS(793), 7, - ts_builtin_sym_end, + ACTIONS(757), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(791), 13, + ACTIONS(755), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208246,23 +207373,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [77249] = 6, - ACTIONS(105), 1, + [76257] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5196), 1, - anon_sym_DOT2, - STATE(2581), 1, - sym_path, - STATE(2480), 2, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, + sym__unquoted_pattern, + ACTIONS(5160), 1, + anon_sym_DOT_DOT2, + STATE(2453), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1492), 3, - sym__space, + ACTIONS(5162), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1490), 14, + ACTIONS(2099), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208276,23 +207405,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [77284] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [76295] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern, - ACTIONS(5199), 1, - anon_sym_DOT_DOT2, - STATE(2481), 1, + ACTIONS(5164), 1, + anon_sym_BANG, + STATE(2454), 1, sym_comment, - ACTIONS(5201), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2114), 15, - ts_builtin_sym_end, + ACTIONS(1466), 20, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208304,28 +207428,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, - [77321] = 8, - ACTIONS(105), 1, + 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, + [76327] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5203), 1, + ACTIONS(5030), 1, anon_sym_DOT2, - STATE(2482), 1, - sym_comment, - STATE(2568), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2660), 1, + STATE(466), 1, sym_path, - STATE(2878), 1, + STATE(973), 1, sym_cell_path, - ACTIONS(1703), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1705), 12, + STATE(2337), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2455), 1, + sym_comment, + ACTIONS(1894), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208337,23 +207461,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [77360] = 6, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [76365] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5205), 1, - anon_sym_DOT, - ACTIONS(5207), 1, - aux_sym__immediate_decimal_token5, - STATE(2483), 1, + STATE(2456), 1, sym_comment, - ACTIONS(1788), 5, - ts_builtin_sym_end, + ACTIONS(777), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1790), 13, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(775), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208365,22 +207491,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, sym__unquoted_pattern, - [77395] = 4, + [76397] = 8, ACTIONS(105), 1, anon_sym_POUND, - STATE(2484), 1, + ACTIONS(5166), 1, + anon_sym_DOT2, + STATE(2457), 1, sym_comment, - ACTIONS(805), 7, - ts_builtin_sym_end, + STATE(2505), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2639), 1, + sym_path, + STATE(2694), 1, + sym_cell_path, + ACTIONS(1683), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(803), 13, + ACTIONS(1685), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208392,14 +207524,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [77426] = 3, + [76437] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(2485), 1, + ACTIONS(3242), 1, + anon_sym_LPAREN2, + ACTIONS(3870), 1, + anon_sym_DOLLAR, + ACTIONS(5070), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5072), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5168), 1, + anon_sym_DOT, + STATE(2458), 1, + sym_comment, + STATE(3026), 1, + sym__immediate_decimal, + ACTIONS(1650), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5074), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3025), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1648), 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, + [76485] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5164), 1, + anon_sym_QMARK2, + STATE(2459), 1, sym_comment, - ACTIONS(1557), 20, + ACTIONS(1466), 20, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -208420,13 +207591,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_DOT2, - [77455] = 3, + [76517] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2486), 1, + ACTIONS(5030), 1, + anon_sym_DOT2, + STATE(466), 1, + sym_path, + STATE(984), 1, + sym_cell_path, + STATE(2337), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2460), 1, sym_comment, - ACTIONS(1563), 20, - anon_sym_EQ, + ACTIONS(1934), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208438,21 +207616,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_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, - [77484] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [76555] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2487), 1, + STATE(2461), 1, sym_comment, - ACTIONS(1567), 20, - anon_sym_EQ, + ACTIONS(1876), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1874), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208464,27 +207642,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - 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, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [76587] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5030), 1, anon_sym_DOT2, - [77513] = 5, + STATE(466), 1, + sym_path, + STATE(986), 1, + sym_cell_path, + STATE(2337), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2462), 1, + sym_comment, + ACTIONS(1912), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [76625] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5209), 1, - aux_sym__immediate_decimal_token5, - STATE(2488), 1, + ACTIONS(5166), 1, + anon_sym_DOT2, + STATE(2463), 1, sym_comment, - ACTIONS(1866), 4, + STATE(2505), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2639), 1, + sym_path, + STATE(2709), 1, + sym_cell_path, + ACTIONS(1667), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1868), 15, + ACTIONS(1669), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208499,19 +207713,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [77546] = 6, + [76665] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1790), 1, - sym__unquoted_pattern, - ACTIONS(5211), 1, - anon_sym_DOT, - ACTIONS(5213), 1, - aux_sym__immediate_decimal_token5, - STATE(2489), 1, + ACTIONS(5030), 1, + anon_sym_DOT2, + STATE(466), 1, + sym_path, + STATE(969), 1, + sym_cell_path, + STATE(2337), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2464), 1, + sym_comment, + ACTIONS(1904), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [76703] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2465), 1, sym_comment, - ACTIONS(1788), 17, + ACTIONS(1947), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1945), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208529,22 +207770,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [77581] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [76735] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5215), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5217), 1, - aux_sym__immediate_decimal_token5, - STATE(2490), 1, + ACTIONS(5166), 1, + anon_sym_DOT2, + STATE(2466), 1, sym_comment, - ACTIONS(1774), 5, - ts_builtin_sym_end, + STATE(2505), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2639), 1, + sym_path, + STATE(2702), 1, + sym_cell_path, + ACTIONS(1480), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1776), 13, + ACTIONS(1478), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208556,46 +207801,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, - [77616] = 5, + [76775] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5131), 1, - aux_sym__immediate_decimal_token5, - STATE(2491), 1, + ACTIONS(5170), 1, + anon_sym_DOT2, + STATE(2499), 1, + sym_path, + STATE(2467), 2, sym_comment, - ACTIONS(751), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(753), 13, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1560), 18, 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, - [77649] = 4, - ACTIONS(105), 1, + anon_sym_RBRACE, + [76809] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2492), 1, + ACTIONS(5113), 1, + aux_sym__immediate_decimal_token5, + STATE(2468), 1, sym_comment, - ACTIONS(1533), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1531), 17, + ACTIONS(1812), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1810), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208607,22 +207856,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [77680] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [76843] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2493), 1, + ACTIONS(5173), 1, + sym__newline, + STATE(2469), 2, sym_comment, - ACTIONS(2626), 3, + aux_sym__types_body_repeat1, + ACTIONS(3784), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(2628), 17, + ACTIONS(3786), 16, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -208630,7 +207882,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_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -208640,20 +207891,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [77711] = 4, - ACTIONS(105), 1, + [76877] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2494), 1, + ACTIONS(2144), 1, + anon_sym_BANG, + STATE(2470), 1, sym_comment, - ACTIONS(761), 7, + ACTIONS(1464), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1466), 18, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(759), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208665,27 +207914,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, - sym__unquoted_pattern, - [77742] = 8, + anon_sym_COLON, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [76911] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT2, - STATE(2495), 1, + STATE(2471), 1, sym_comment, - STATE(2568), 1, + ACTIONS(3793), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3791), 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, + [76943] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5115), 1, + anon_sym_DOT2, + STATE(2467), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2660), 1, + STATE(2472), 1, + sym_comment, + STATE(2499), 1, sym_path, - STATE(2882), 1, - sym_cell_path, - ACTIONS(1669), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1671), 12, + ACTIONS(1569), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208697,20 +207972,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [77781] = 5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + [76979] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5186), 1, + ACTIONS(5176), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5178), 1, aux_sym__immediate_decimal_token5, - STATE(2496), 1, + STATE(2473), 1, sym_comment, - ACTIONS(1788), 4, + ACTIONS(1802), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1790), 15, + ACTIONS(1804), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208726,31 +208008,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [77814] = 11, + [77015] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3348), 1, + ACTIONS(1697), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3242), 1, anon_sym_LPAREN2, - ACTIONS(3850), 1, + ACTIONS(3870), 1, anon_sym_DOLLAR, - ACTIONS(5219), 1, + ACTIONS(5128), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5221), 1, + ACTIONS(5130), 1, aux_sym__immediate_decimal_token2, - STATE(2497), 1, + STATE(2474), 1, sym_comment, - STATE(3501), 1, + STATE(3106), 1, sym__immediate_decimal, - ACTIONS(1709), 2, + ACTIONS(1689), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(5088), 2, + ACTIONS(5132), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3500), 2, + STATE(3597), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1707), 9, + ACTIONS(1687), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -208760,57 +208044,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [77859] = 11, + [77063] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3348), 1, - anon_sym_LPAREN2, - ACTIONS(3850), 1, - anon_sym_DOLLAR, - ACTIONS(5219), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5221), 1, - aux_sym__immediate_decimal_token2, - STATE(2498), 1, + ACTIONS(1898), 1, + anon_sym_DOT2, + STATE(429), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(466), 1, + sym_path, + STATE(2475), 1, sym_comment, - STATE(3503), 1, - sym__immediate_decimal, - ACTIONS(1679), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5088), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3502), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1677), 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, - [77904] = 7, + ACTIONS(5182), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5180), 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, + [77101] = 11, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5223), 1, - anon_sym_QMARK2, - ACTIONS(5225), 1, - anon_sym_BANG, - STATE(2499), 1, + ACTIONS(1830), 1, + anon_sym_LPAREN2, + ACTIONS(5184), 1, + anon_sym_DOT_DOT2, + ACTIONS(5188), 1, + sym_filesize_unit, + ACTIONS(5190), 1, + sym_duration_unit, + ACTIONS(5192), 1, + sym__unquoted_pattern, + STATE(2476), 1, sym_comment, - STATE(2663), 1, - sym__path_suffix, - ACTIONS(1474), 4, + STATE(5017), 1, + sym__expr_parenthesized_immediate, + ACTIONS(910), 2, ts_builtin_sym_end, sym__space, + ACTIONS(5186), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1472), 13, + ACTIONS(811), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208822,17 +208110,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [77941] = 4, + [77147] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2500), 1, + ACTIONS(5194), 1, + aux_sym__immediate_decimal_token5, + STATE(2477), 1, sym_comment, - ACTIONS(1776), 2, + ACTIONS(1876), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1774), 18, + ACTIONS(1874), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -208851,50 +208139,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77972] = 11, + [77181] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3348), 1, - anon_sym_LPAREN2, - ACTIONS(3850), 1, - anon_sym_DOLLAR, - ACTIONS(5219), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5221), 1, - aux_sym__immediate_decimal_token2, - STATE(2501), 1, + STATE(2478), 1, sym_comment, - STATE(3505), 1, - sym__immediate_decimal, - ACTIONS(1683), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5088), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3504), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1681), 9, - anon_sym_EQ, + ACTIONS(1876), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1874), 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, - [78017] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2502), 1, - sym_comment, - ACTIONS(1537), 3, - sym__space, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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(1535), 17, + [77212] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1804), 1, + sym__unquoted_pattern, + ACTIONS(5196), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5198), 1, + aux_sym__immediate_decimal_token5, + STATE(2479), 1, + sym_comment, + ACTIONS(1802), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208908,20 +208191,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [78048] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [77247] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(2503), 1, + ACTIONS(5146), 1, + aux_sym__immediate_decimal_token5, + STATE(2480), 1, sym_comment, - ACTIONS(1529), 3, + ACTIONS(1810), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1527), 17, + ACTIONS(1812), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208936,18 +208222,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [78079] = 4, + sym__unquoted_pattern, + [77280] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2504), 1, - sym_comment, - ACTIONS(1868), 2, - anon_sym_DOT_DOT2, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, sym__unquoted_pattern, - ACTIONS(1866), 18, + ACTIONS(5200), 1, + anon_sym_DOT_DOT2, + STATE(2481), 1, + sym_comment, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2099), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -208963,55 +208253,23 @@ 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, - [78110] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3348), 1, - anon_sym_LPAREN2, - ACTIONS(3850), 1, - anon_sym_DOLLAR, - ACTIONS(5219), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5221), 1, - aux_sym__immediate_decimal_token2, - STATE(2505), 1, - sym_comment, - STATE(3488), 1, - sym__immediate_decimal, - ACTIONS(1632), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5088), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3487), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1628), 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, - [78155] = 6, - ACTIONS(3), 1, + [77317] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1776), 1, - sym__unquoted_pattern, - ACTIONS(5227), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5229), 1, - aux_sym__immediate_decimal_token5, - STATE(2506), 1, + ACTIONS(5204), 1, + anon_sym_QMARK2, + ACTIONS(5206), 1, + anon_sym_BANG, + STATE(2482), 1, sym_comment, - ACTIONS(1774), 17, + STATE(2728), 1, + sym__path_suffix, + ACTIONS(1472), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1470), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209023,36 +208281,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, - [78190] = 11, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [77354] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_LPAREN2, - ACTIONS(5233), 1, + ACTIONS(5150), 1, + aux_sym__immediate_decimal_token5, + STATE(2483), 1, + sym_comment, + ACTIONS(763), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(5237), 1, sym_filesize_unit, - ACTIONS(5239), 1, sym_duration_unit, - ACTIONS(5241), 1, sym__unquoted_pattern_in_record, - STATE(2507), 1, - sym_comment, - STATE(5041), 1, - sym__expr_parenthesized_immediate, - ACTIONS(811), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5235), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(914), 10, + ACTIONS(765), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -209063,49 +208308,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [78235] = 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [77387] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(2508), 1, + ACTIONS(3242), 1, + anon_sym_LPAREN2, + ACTIONS(3870), 1, + anon_sym_DOLLAR, + ACTIONS(5208), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5210), 1, + aux_sym__immediate_decimal_token2, + STATE(2484), 1, sym_comment, - ACTIONS(1923), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1921), 18, - ts_builtin_sym_end, + STATE(3590), 1, + sym__immediate_decimal, + ACTIONS(1650), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5074), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3592), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1648), 9, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [78266] = 7, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [77432] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5124), 1, - anon_sym_DOT2, - STATE(2480), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2509), 1, + STATE(2485), 1, sym_comment, - STATE(2581), 1, - sym_path, - ACTIONS(1579), 3, + ACTIONS(1546), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1577), 14, + ACTIONS(1544), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209120,25 +208369,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [78303] = 8, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77463] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT2, - STATE(2510), 1, + STATE(2486), 1, sym_comment, - STATE(2568), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2660), 1, - sym_path, - STATE(2915), 1, - sym_cell_path, - ACTIONS(1468), 4, - ts_builtin_sym_end, + ACTIONS(1542), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1466), 12, + ACTIONS(1540), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209150,23 +208393,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, - [78342] = 9, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77494] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(914), 1, + ACTIONS(910), 1, sym__space, - ACTIONS(4197), 1, + ACTIONS(4179), 1, anon_sym_DOT_DOT2, - ACTIONS(5072), 1, + ACTIONS(5084), 1, sym_filesize_unit, - ACTIONS(5074), 1, + ACTIONS(5086), 1, sym_duration_unit, - ACTIONS(5076), 1, + ACTIONS(5088), 1, sym__unquoted_pattern, - STATE(2511), 1, + STATE(2487), 1, sym_comment, - ACTIONS(4199), 2, + ACTIONS(4181), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(811), 13, @@ -209183,16 +208431,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [78383] = 4, + [77535] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2512), 1, + STATE(2488), 1, sym_comment, - ACTIONS(1488), 3, + ACTIONS(1524), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1486), 17, + ACTIONS(1522), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209210,16 +208458,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [78414] = 4, + [77566] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2513), 1, + STATE(2489), 1, sym_comment, - ACTIONS(1543), 3, + ACTIONS(777), 7, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1541), 17, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(775), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209231,22 +208483,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [78445] = 4, - ACTIONS(105), 1, + sym__unquoted_pattern, + [77597] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2514), 1, + STATE(2490), 1, sym_comment, - ACTIONS(1547), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1545), 17, + ACTIONS(1947), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1945), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209258,55 +208506,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [78476] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5243), 1, - aux_sym__immediate_decimal_token5, - STATE(2515), 1, - sym_comment, - ACTIONS(791), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(793), 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_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [78509] = 7, - ACTIONS(3), 1, + [77628] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(5212), 1, anon_sym_DOT2, - STATE(737), 1, + STATE(2491), 1, + sym_comment, + STATE(2551), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2687), 1, sym_path, - STATE(1340), 1, + STATE(2919), 1, sym_cell_path, - STATE(2434), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2516), 1, - sym_comment, - ACTIONS(1909), 15, + ACTIONS(1667), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1669), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209318,16 +208542,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, - [78545] = 3, + anon_sym_DOT_DOT2, + [77667] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2517), 1, + STATE(2492), 1, sym_comment, - ACTIONS(5247), 19, - anon_sym_EQ, + ACTIONS(1804), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1802), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209339,24 +208564,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [78573] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [77698] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(2518), 1, + ACTIONS(5214), 1, + aux_sym__immediate_decimal_token5, + STATE(2493), 1, sym_comment, - ACTIONS(1543), 4, - ts_builtin_sym_end, + ACTIONS(1874), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1541), 15, + ACTIONS(1876), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209368,20 +208594,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, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [78603] = 4, + sym__unquoted_pattern, + [77731] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5251), 1, - anon_sym_LT, - STATE(2519), 1, + ACTIONS(3242), 1, + anon_sym_LPAREN2, + ACTIONS(3870), 1, + anon_sym_DOLLAR, + ACTIONS(5208), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5210), 1, + aux_sym__immediate_decimal_token2, + STATE(2494), 1, sym_comment, - ACTIONS(5249), 18, + STATE(3580), 1, + sym__immediate_decimal, + ACTIONS(1681), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5074), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3564), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1679), 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, + [77776] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(2129), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_DOT_DOT2, + STATE(2495), 1, + sym_comment, + ACTIONS(5218), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2125), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209392,26 +208659,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [78633] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [77813] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5253), 1, + ACTIONS(5220), 1, + anon_sym_DOT, + ACTIONS(5222), 1, aux_sym__immediate_decimal_token5, - STATE(2520), 1, + STATE(2496), 1, sym_comment, - ACTIONS(1866), 5, + ACTIONS(1810), 5, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1868), 13, + ACTIONS(1812), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209425,18 +208691,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [78665] = 5, - ACTIONS(105), 1, + [77848] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5255), 1, - anon_sym_BANG, - STATE(2521), 1, + ACTIONS(1812), 1, + sym__unquoted_pattern, + ACTIONS(5224), 1, + anon_sym_DOT, + ACTIONS(5226), 1, + aux_sym__immediate_decimal_token5, + STATE(2497), 1, sym_comment, - ACTIONS(1462), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1460), 15, + ACTIONS(1810), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209450,27 +208716,35 @@ 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, - [78697] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [77883] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5257), 1, - anon_sym_DOT2, - STATE(2522), 1, + ACTIONS(5228), 1, + anon_sym_LPAREN2, + ACTIONS(5230), 1, + anon_sym_DOT_DOT2, + ACTIONS(5234), 1, + sym_filesize_unit, + ACTIONS(5236), 1, + sym_duration_unit, + ACTIONS(5238), 1, + sym__unquoted_pattern_in_record, + STATE(2498), 1, sym_comment, - STATE(2596), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2912), 1, - sym_path, - STATE(2998), 1, - sym_cell_path, - ACTIONS(1466), 2, + STATE(5026), 1, + sym__expr_parenthesized_immediate, + ACTIONS(811), 2, + sym_identifier, anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1468), 13, + ACTIONS(5232), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(910), 10, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -209480,86 +208754,78 @@ 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, - [78735] = 8, + [77928] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5257), 1, - anon_sym_DOT2, - STATE(2523), 1, + STATE(2499), 1, sym_comment, - STATE(2596), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2912), 1, - sym_path, - STATE(3013), 1, - sym_cell_path, - ACTIONS(1705), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1703), 13, + ACTIONS(1586), 20, 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_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_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [78773] = 15, + anon_sym_RBRACE, + anon_sym_DOT2, + [77957] = 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(107), 1, - sym_raw_string_begin, - ACTIONS(5259), 1, - anon_sym_LPAREN, - ACTIONS(5261), 1, - anon_sym_DOLLAR, - ACTIONS(5263), 1, - sym__unquoted_naive, - STATE(1359), 1, - sym__inter_single_quotes, - STATE(1361), 1, - sym__inter_double_quotes, - STATE(2524), 1, + STATE(2500), 1, sym_comment, - STATE(504), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3491), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [78825] = 4, + ACTIONS(2658), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(2660), 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, + [77988] = 8, ACTIONS(105), 1, anon_sym_POUND, - STATE(2525), 1, + ACTIONS(5212), 1, + anon_sym_DOT2, + STATE(2501), 1, sym_comment, - ACTIONS(1866), 4, + STATE(2551), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2687), 1, + sym_path, + STATE(2882), 1, + sym_cell_path, + ACTIONS(1683), 4, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1868), 15, + ACTIONS(1685), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209571,21 +208837,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, - [78855] = 4, + [78027] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2526), 1, + STATE(2502), 1, sym_comment, - ACTIONS(1547), 4, + ACTIONS(803), 7, ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1545), 15, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(801), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209598,16 +208864,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, - [78885] = 3, - ACTIONS(3), 1, + sym__unquoted_pattern, + [78058] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2527), 1, + STATE(2503), 1, sym_comment, - ACTIONS(5265), 19, - anon_sym_EQ, + ACTIONS(1552), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1550), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209619,28 +208886,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_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - [78913] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5245), 1, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, anon_sym_DOT2, - STATE(737), 1, - sym_path, - STATE(1294), 1, - sym_cell_path, - STATE(2434), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2528), 1, + [78089] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5240), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5242), 1, + aux_sym__immediate_decimal_token5, + STATE(2504), 1, sym_comment, - ACTIONS(1880), 15, + ACTIONS(1802), 5, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1804), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209652,20 +208919,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, - [78949] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5269), 1, anon_sym_DOT_DOT2, - STATE(2529), 1, + sym__unquoted_pattern, + [78124] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5166), 1, + anon_sym_DOT2, + STATE(2505), 1, sym_comment, - ACTIONS(5271), 2, + STATE(2511), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2639), 1, + sym_path, + ACTIONS(1569), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5267), 16, + ACTIONS(1567), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209679,50 +208950,48 @@ 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, - [78981] = 6, + anon_sym_DOT_DOT2, + [78161] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5273), 1, - anon_sym_DOT, - ACTIONS(5275), 1, - aux_sym__immediate_decimal_token5, - STATE(2530), 1, + STATE(2506), 1, sym_comment, - ACTIONS(1790), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1788), 13, + ACTIONS(1538), 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_RBRACK, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_GT2, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [79015] = 4, + anon_sym_RBRACE, + anon_sym_DOT2, + [78190] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2531), 1, + ACTIONS(5244), 1, + aux_sym__immediate_decimal_token5, + STATE(2507), 1, sym_comment, - ACTIONS(759), 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(761), 13, + ACTIONS(777), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -209736,21 +209005,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [79045] = 7, - ACTIONS(3), 1, + [78223] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5245), 1, - anon_sym_DOT2, - STATE(737), 1, - sym_path, - STATE(1309), 1, - sym_cell_path, - STATE(2434), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2532), 1, + STATE(2508), 1, sym_comment, - ACTIONS(1925), 15, + ACTIONS(757), 7, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(755), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209762,52 +209030,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_and2, - anon_sym_xor2, - anon_sym_or2, - [79081] = 7, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [78254] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(5212), 1, anon_sym_DOT2, - STATE(737), 1, + STATE(2509), 1, + sym_comment, + STATE(2551), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2687), 1, sym_path, - STATE(1341), 1, + STATE(2778), 1, sym_cell_path, - STATE(2434), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2533), 1, - sym_comment, - ACTIONS(1901), 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, - [79117] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5207), 1, - aux_sym__immediate_decimal_token5, - STATE(2534), 1, - sym_comment, - ACTIONS(1788), 5, + ACTIONS(1480), 4, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1790), 13, + ACTIONS(1478), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209820,20 +209063,13 @@ 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, - [79149] = 6, + [78293] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1776), 1, - sym__unquoted_pattern, - ACTIONS(5277), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5279), 1, - aux_sym__immediate_decimal_token5, - STATE(2535), 1, + STATE(2510), 1, sym_comment, - ACTIONS(1774), 16, - ts_builtin_sym_end, + ACTIONS(1534), 20, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209845,25 +209081,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, - [79183] = 7, - ACTIONS(3), 1, + 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, + [78322] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(5246), 1, anon_sym_DOT2, - STATE(737), 1, + STATE(2639), 1, sym_path, - STATE(1343), 1, - sym_cell_path, - STATE(2434), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2536), 1, + STATE(2511), 2, sym_comment, - ACTIONS(1905), 15, - ts_builtin_sym_end, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1560), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1558), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209875,20 +209115,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, - [79219] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [78357] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2537), 1, + STATE(2512), 1, sym_comment, - ACTIONS(1537), 4, - ts_builtin_sym_end, + ACTIONS(1492), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1535), 15, + ACTIONS(1490), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209900,51 +209139,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [79249] = 8, - ACTIONS(105), 1, + [78388] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(2104), 1, - sym__space, - ACTIONS(2108), 1, + ACTIONS(3242), 1, anon_sym_LPAREN2, - ACTIONS(5281), 1, - anon_sym_DOT_DOT2, - STATE(2538), 1, + ACTIONS(3870), 1, + anon_sym_DOLLAR, + ACTIONS(5208), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5210), 1, + aux_sym__immediate_decimal_token2, + STATE(2513), 1, sym_comment, - ACTIONS(5283), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2106), 13, + STATE(3595), 1, + sym__immediate_decimal, + ACTIONS(1675), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5074), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3586), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1673), 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, - [79287] = 4, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [78433] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3242), 1, + anon_sym_LPAREN2, + ACTIONS(3870), 1, + anon_sym_DOLLAR, + ACTIONS(5208), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5210), 1, + aux_sym__immediate_decimal_token2, + STATE(2514), 1, + sym_comment, + STATE(3584), 1, + sym__immediate_decimal, + ACTIONS(1717), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5074), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3581), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1715), 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, + [78478] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2539), 1, + STATE(2515), 1, sym_comment, - ACTIONS(1774), 4, + ACTIONS(1576), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1776), 15, + ACTIONS(1574), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209959,20 +209237,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [79317] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [78509] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2540), 1, + ACTIONS(5249), 1, + anon_sym_DOT, + ACTIONS(5251), 1, + aux_sym__immediate_decimal_token5, + STATE(2516), 1, sym_comment, - ACTIONS(791), 6, + ACTIONS(1812), 4, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, sym__unquoted_pattern_in_record, - ACTIONS(793), 13, + ACTIONS(1810), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -209986,51 +209268,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [79347] = 7, + [78543] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5285), 1, - anon_sym_QMARK2, - ACTIONS(5287), 1, - anon_sym_BANG, - STATE(2541), 1, - sym_comment, - STATE(2731), 1, - sym__path_suffix, - ACTIONS(1472), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1474), 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, - [79383] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5289), 1, - anon_sym_DOT2, - STATE(2660), 1, - sym_path, - STATE(2542), 2, + ACTIONS(1876), 1, + sym__unquoted_pattern, + ACTIONS(5253), 1, + aux_sym__immediate_decimal_token5, + STATE(2517), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1492), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1490), 12, + ACTIONS(1874), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210042,18 +209289,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [79417] = 4, - ACTIONS(105), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [78575] = 15, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2543), 1, + ACTIONS(990), 1, + sym_raw_string_begin, + ACTIONS(3216), 1, + anon_sym_DQUOTE, + ACTIONS(3218), 1, + anon_sym_SQUOTE, + ACTIONS(3220), 1, + anon_sym_BQUOTE, + ACTIONS(3222), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3224), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3721), 1, + anon_sym_LPAREN, + ACTIONS(3723), 1, + anon_sym_DOLLAR, + ACTIONS(5255), 1, + sym__unquoted_naive, + STATE(2518), 1, sym_comment, - ACTIONS(1529), 4, - ts_builtin_sym_end, - sym__space, + STATE(3372), 1, + sym__inter_double_quotes, + STATE(3375), 1, + sym__inter_single_quotes, + STATE(2553), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3284), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [78627] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(205), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(207), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1752), 1, + anon_sym_LPAREN, + ACTIONS(1764), 1, + anon_sym_DQUOTE, + ACTIONS(1766), 1, + anon_sym_SQUOTE, + ACTIONS(1768), 1, + anon_sym_BQUOTE, + ACTIONS(1770), 1, + sym_raw_string_begin, + ACTIONS(5257), 1, + anon_sym_DOLLAR, + ACTIONS(5259), 1, + sym__unquoted_naive, + STATE(752), 1, + sym__inter_single_quotes, + STATE(753), 1, + sym__inter_double_quotes, + STATE(2519), 1, + sym_comment, + STATE(2288), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3307), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [78679] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5261), 1, + anon_sym_DOT_DOT2, + STATE(2520), 1, + sym_comment, + ACTIONS(5263), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1527), 15, + ACTIONS(2271), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210065,21 +209391,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [78711] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2521), 1, + sym_comment, + ACTIONS(755), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [79447] = 4, - ACTIONS(105), 1, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(757), 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, + [78741] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2544), 1, + ACTIONS(5265), 1, + anon_sym_DOT_DOT2, + STATE(2522), 1, sym_comment, - ACTIONS(1533), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(5267), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1531), 15, + ACTIONS(2146), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210091,16 +209444,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [79477] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [78773] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2545), 1, + ACTIONS(5271), 1, + anon_sym_LT, + STATE(2523), 1, sym_comment, - ACTIONS(5292), 19, + ACTIONS(5269), 18, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -210113,58 +209469,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_LBRACK, - anon_sym_LPAREN, + anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_GT2, - anon_sym_DASH_DASH, + anon_sym_AT2, anon_sym_LBRACE, anon_sym_RBRACE, - [79505] = 8, + [78803] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5257), 1, - anon_sym_DOT2, - STATE(2546), 1, + ACTIONS(5273), 1, + anon_sym_LT, + STATE(2524), 1, sym_comment, - STATE(2596), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2912), 1, - sym_path, - STATE(3020), 1, - sym_cell_path, - ACTIONS(1671), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1669), 13, + ACTIONS(5269), 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, - [79543] = 7, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [78833] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(5275), 1, anon_sym_DOT2, - STATE(737), 1, - sym_path, - STATE(1327), 1, + STATE(2305), 1, sym_cell_path, - STATE(2434), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2547), 1, + STATE(2499), 1, + sym_path, + STATE(2525), 1, sym_comment, - ACTIONS(1917), 15, - ts_builtin_sym_end, + STATE(2613), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1480), 15, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210176,19 +209527,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, - [79579] = 5, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + [78869] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1790), 1, - sym__unquoted_pattern, - ACTIONS(5213), 1, - aux_sym__immediate_decimal_token5, - STATE(2548), 1, + ACTIONS(5277), 1, + anon_sym_DOT_DOT2, + STATE(2526), 1, sym_comment, - ACTIONS(1788), 17, + ACTIONS(5279), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2251), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210205,55 +209557,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [79611] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(885), 1, - sym_raw_string_begin, - ACTIONS(3212), 1, - anon_sym_DQUOTE, - ACTIONS(3214), 1, - anon_sym_SQUOTE, - ACTIONS(3216), 1, - anon_sym_BQUOTE, - ACTIONS(3218), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3220), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3717), 1, - anon_sym_LPAREN, - ACTIONS(3719), 1, - anon_sym_DOLLAR, - ACTIONS(5294), 1, - sym__unquoted_naive, - STATE(2549), 1, - sym_comment, - STATE(3179), 1, - sym__inter_single_quotes, - STATE(3180), 1, - sym__inter_double_quotes, - STATE(2503), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3068), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [79663] = 5, + [78901] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5269), 1, + ACTIONS(5281), 1, anon_sym_DOT_DOT2, - STATE(2550), 1, + STATE(2527), 1, sym_comment, - ACTIONS(5271), 2, + ACTIONS(5283), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 16, + ACTIONS(2314), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210270,13 +209584,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79695] = 3, - ACTIONS(3), 1, + [78933] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2551), 1, + STATE(2528), 1, sym_comment, - ACTIONS(5296), 19, - anon_sym_EQ, + ACTIONS(1552), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1550), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210288,60 +209606,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [79723] = 15, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [78963] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(205), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(207), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1754), 1, - anon_sym_LPAREN, - ACTIONS(1766), 1, - anon_sym_DQUOTE, - ACTIONS(1768), 1, - anon_sym_SQUOTE, - ACTIONS(1770), 1, - anon_sym_BQUOTE, - ACTIONS(1772), 1, - sym_raw_string_begin, - ACTIONS(5298), 1, - anon_sym_DOLLAR, - ACTIONS(5300), 1, - sym__unquoted_naive, - STATE(766), 1, - sym__inter_single_quotes, - STATE(767), 1, - sym__inter_double_quotes, - STATE(2552), 1, + ACTIONS(5285), 1, + anon_sym_DOT2, + STATE(2529), 1, sym_comment, - STATE(2276), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3301), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [79775] = 5, + STATE(2594), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2899), 1, + sym_path, + STATE(2988), 1, + sym_cell_path, + ACTIONS(1685), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1683), 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, + [79001] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1868), 1, - sym__unquoted_pattern, - ACTIONS(5302), 1, - aux_sym__immediate_decimal_token5, - STATE(2553), 1, + STATE(2530), 1, sym_comment, - ACTIONS(1866), 17, + ACTIONS(5287), 19, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210353,23 +209658,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_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [79807] = 5, - ACTIONS(3), 1, + [79029] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5269), 1, - anon_sym_DOT_DOT2, - STATE(2554), 1, + ACTIONS(5289), 1, + aux_sym__immediate_decimal_token5, + STATE(2531), 1, sym_comment, - ACTIONS(5271), 2, + ACTIONS(1874), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5267), 16, + ACTIONS(1876), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210381,23 +209690,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, - [79839] = 6, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [79061] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1790), 1, - sym__unquoted_pattern, - ACTIONS(5304), 1, - anon_sym_DOT, - ACTIONS(5306), 1, - aux_sym__immediate_decimal_token5, - STATE(2555), 1, + ACTIONS(5291), 1, + anon_sym_DOT2, + STATE(712), 1, + sym_path, + STATE(1339), 1, + sym_cell_path, + STATE(2427), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2532), 1, sym_comment, - ACTIONS(1788), 16, + ACTIONS(1926), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -210413,13 +209721,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [79873] = 3, + [79097] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2556), 1, + STATE(2533), 1, sym_comment, - ACTIONS(5308), 19, + ACTIONS(5293), 19, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -210439,21 +209746,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [79901] = 6, + [79125] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5310), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5312), 1, - aux_sym__immediate_decimal_token5, - STATE(2557), 1, + STATE(2534), 1, sym_comment, - ACTIONS(1776), 4, + ACTIONS(775), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, sym__unquoted_pattern_in_record, - ACTIONS(1774), 13, + ACTIONS(777), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -210467,17 +209772,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [79935] = 5, + [79155] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5314), 1, + STATE(2535), 1, + sym_comment, + ACTIONS(801), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - STATE(2558), 1, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(803), 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, + [79185] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5295), 1, + anon_sym_DOT_DOT2, + STATE(2536), 1, sym_comment, - ACTIONS(5316), 2, + ACTIONS(5297), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 16, + ACTIONS(1736), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210494,17 +209825,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79967] = 5, - ACTIONS(3), 1, + [79217] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5318), 1, - anon_sym_DOT_DOT2, - STATE(2559), 1, + STATE(2537), 1, sym_comment, - ACTIONS(5320), 2, + ACTIONS(1492), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2166), 16, + ACTIONS(1490), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210516,22 +209847,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [79999] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [79247] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5322), 1, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(2125), 1, + sym__space, + ACTIONS(2129), 1, + anon_sym_LPAREN2, + ACTIONS(5299), 1, anon_sym_DOT_DOT2, - STATE(2560), 1, + STATE(2538), 1, sym_comment, - ACTIONS(5324), 2, + ACTIONS(5301), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2174), 16, + ACTIONS(2127), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210545,20 +209881,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, - [80031] = 5, - ACTIONS(3), 1, + [79285] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5326), 1, - anon_sym_DOT_DOT2, - STATE(2561), 1, + ACTIONS(5303), 1, + anon_sym_BANG, + STATE(2539), 1, sym_comment, - ACTIONS(5328), 2, + ACTIONS(1466), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2186), 16, + ACTIONS(1464), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210572,21 +209906,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [80063] = 5, - ACTIONS(105), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [79317] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5255), 1, - anon_sym_QMARK2, - STATE(2562), 1, + STATE(2540), 1, sym_comment, - ACTIONS(1462), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1460), 15, + ACTIONS(5305), 19, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210598,30 +209926,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [80095] = 9, - ACTIONS(105), 1, + [79345] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4197), 1, + ACTIONS(5285), 1, + anon_sym_DOT2, + STATE(2541), 1, + sym_comment, + STATE(2594), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2899), 1, + sym_path, + STATE(2946), 1, + sym_cell_path, + ACTIONS(1478), 2, + anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(5167), 1, - sym_filesize_unit, - ACTIONS(5169), 1, - sym_duration_unit, - ACTIONS(5171), 1, + ACTIONS(1480), 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, + [79383] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1804), 1, sym__unquoted_pattern, - STATE(2563), 1, + ACTIONS(5307), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5309), 1, + aux_sym__immediate_decimal_token5, + STATE(2542), 1, sym_comment, - ACTIONS(914), 2, + ACTIONS(1802), 16, ts_builtin_sym_end, - sym__space, - ACTIONS(4199), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(811), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210633,51 +209987,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, - [80135] = 14, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [79417] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1509), 1, - anon_sym_COMMA, - ACTIONS(5332), 1, - anon_sym_EQ, - ACTIONS(5334), 1, - sym__newline, - ACTIONS(5336), 1, - anon_sym_COLON, - ACTIONS(5338), 1, + ACTIONS(887), 1, + sym_raw_string_begin, + ACTIONS(3282), 1, + anon_sym_DQUOTE, + ACTIONS(3284), 1, + anon_sym_SQUOTE, + ACTIONS(3286), 1, + anon_sym_BQUOTE, + ACTIONS(3288), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3290), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3713), 1, anon_sym_LPAREN, - ACTIONS(5340), 1, - anon_sym_DASH2, - STATE(2564), 1, - sym_comment, - STATE(2675), 1, - sym_flag_capsule, - STATE(2729), 1, - aux_sym_parameter_repeat1, - STATE(3613), 1, - aux_sym_parameter_repeat2, - STATE(4411), 1, - aux_sym__repeat_newline, - STATE(3468), 2, - sym_param_type, - sym_param_value, - ACTIONS(5330), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(3715), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [80185] = 4, + ACTIONS(5311), 1, + sym__unquoted_naive, + STATE(2543), 1, + sym_comment, + STATE(3090), 1, + sym__inter_single_quotes, + STATE(3091), 1, + sym__inter_double_quotes, + STATE(2515), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3173), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [79469] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_LT, - STATE(2565), 1, + ACTIONS(5291), 1, + anon_sym_DOT2, + STATE(712), 1, + sym_path, + STATE(1349), 1, + sym_cell_path, + STATE(2427), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2544), 1, sym_comment, - ACTIONS(5249), 18, - anon_sym_EQ, + ACTIONS(1930), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210689,23 +210054,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [80215] = 4, - ACTIONS(105), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79505] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2566), 1, + STATE(2545), 1, sym_comment, - ACTIONS(1921), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1923), 15, + ACTIONS(5313), 19, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210717,64 +210075,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, + [79533] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5285), 1, + anon_sym_DOT2, + STATE(2546), 1, + sym_comment, + STATE(2594), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2899), 1, + sym_path, + STATE(2924), 1, + sym_cell_path, + ACTIONS(1669), 2, + anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [80245] = 15, + ACTIONS(1667), 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, + [79571] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(984), 1, - sym_raw_string_begin, - ACTIONS(3436), 1, + ACTIONS(5315), 1, + anon_sym_QMARK2, + ACTIONS(5317), 1, + anon_sym_BANG, + STATE(2547), 1, + sym_comment, + STATE(2879), 1, + sym__path_suffix, + ACTIONS(1470), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1472), 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, + [79607] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(3438), 1, + ACTIONS(93), 1, anon_sym_SQUOTE, - ACTIONS(3440), 1, + ACTIONS(95), 1, anon_sym_BQUOTE, - ACTIONS(3442), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3444), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3721), 1, + ACTIONS(107), 1, + sym_raw_string_begin, + ACTIONS(5319), 1, anon_sym_LPAREN, - ACTIONS(3723), 1, + ACTIONS(5321), 1, anon_sym_DOLLAR, - ACTIONS(5344), 1, + ACTIONS(5323), 1, sym__unquoted_naive, - STATE(2567), 1, - sym_comment, - STATE(3317), 1, + STATE(1353), 1, sym__inter_single_quotes, - STATE(3318), 1, + STATE(1361), 1, sym__inter_double_quotes, - STATE(2543), 4, + STATE(2548), 1, + sym_comment, + STATE(509), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3274), 4, + STATE(3535), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - [80297] = 7, + [79659] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5291), 1, + anon_sym_DOT2, + STATE(712), 1, + sym_path, + STATE(1347), 1, + sym_cell_path, + STATE(2427), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2549), 1, + sym_comment, + ACTIONS(1904), 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, + [79695] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2550), 1, + sym_comment, + 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, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [79725] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5203), 1, + ACTIONS(5212), 1, anon_sym_DOT2, - STATE(2542), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2568), 1, + STATE(2551), 1, sym_comment, - STATE(2660), 1, + STATE(2560), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2687), 1, sym_path, - ACTIONS(1579), 4, + ACTIONS(1569), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1577), 12, + ACTIONS(1567), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210787,23 +210262,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, - [80333] = 8, + [79761] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2114), 1, - sym__space, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern, - ACTIONS(5346), 1, - anon_sym_DOT_DOT2, - STATE(2569), 1, + STATE(2552), 1, sym_comment, - ACTIONS(5348), 2, + ACTIONS(1542), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2116), 13, + ACTIONS(1540), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210815,19 +210284,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, - [80371] = 4, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [79791] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2570), 1, + STATE(2553), 1, sym_comment, - ACTIONS(1488), 4, + ACTIONS(1576), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1486), 15, + ACTIONS(1574), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210843,13 +210314,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [80401] = 3, + [79821] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2571), 1, + ACTIONS(5291), 1, + anon_sym_DOT2, + STATE(712), 1, + sym_path, + STATE(1341), 1, + sym_cell_path, + STATE(2427), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2554), 1, sym_comment, - ACTIONS(5350), 19, - anon_sym_EQ, + ACTIONS(1934), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210861,79 +210340,15 @@ static const uint16_t 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, - [80429] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2572), 1, - sym_comment, - ACTIONS(803), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(805), 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, - [80459] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2573), 1, - sym_comment, - ACTIONS(5354), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5352), 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, - [80489] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79857] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5356), 1, - anon_sym_DOT2, - STATE(2309), 1, - sym_cell_path, - STATE(2485), 1, - sym_path, - STATE(2574), 1, + STATE(2555), 1, sym_comment, - STATE(2651), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1468), 15, + ACTIONS(5325), 19, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -210946,20 +210361,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_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - [80525] = 5, + [79885] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5269), 1, - anon_sym_DOT_DOT2, - STATE(2575), 1, + ACTIONS(1812), 1, + sym__unquoted_pattern, + ACTIONS(5226), 1, + aux_sym__immediate_decimal_token5, + STATE(2556), 1, sym_comment, - ACTIONS(5271), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5267), 16, + ACTIONS(1810), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210976,18 +210394,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80557] = 5, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [79917] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5358), 1, - anon_sym_DOT_DOT2, - STATE(2576), 1, + STATE(2557), 1, sym_comment, - ACTIONS(5360), 2, + ACTIONS(1546), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 15, - ts_builtin_sym_end, + ACTIONS(1544), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210999,23 +210417,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, - [80588] = 7, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [79947] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5112), 1, - anon_sym_DOT2, - STATE(2469), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2485), 1, - sym_path, - STATE(2577), 1, + STATE(2558), 1, sym_comment, - STATE(3236), 1, - sym_cell_path, - ACTIONS(1901), 14, + ACTIONS(5327), 19, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -211028,21 +210439,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - [80623] = 5, + [79975] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1506), 1, + anon_sym_COMMA, + ACTIONS(5331), 1, + anon_sym_EQ, + ACTIONS(5333), 1, + sym__newline, + ACTIONS(5335), 1, + anon_sym_COLON, + ACTIONS(5337), 1, + anon_sym_LPAREN, + ACTIONS(5339), 1, + anon_sym_DASH2, + STATE(2559), 1, + sym_comment, + STATE(2667), 1, + aux_sym_parameter_repeat1, + STATE(2668), 1, + sym_flag_capsule, + STATE(3644), 1, + aux_sym_parameter_repeat2, + STATE(4636), 1, + aux_sym__repeat_newline, + STATE(3539), 2, + sym_param_type, + sym_param_value, + ACTIONS(5329), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [80025] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5362), 1, - anon_sym_BANG, - STATE(2578), 1, + ACTIONS(5341), 1, + anon_sym_DOT2, + STATE(2687), 1, + sym_path, + STATE(2560), 2, sym_comment, - ACTIONS(1462), 4, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1560), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1460), 13, + ACTIONS(1558), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211055,23 +210510,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - anon_sym_DOT2, - [80654] = 7, + [80059] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5364), 1, + ACTIONS(5291), 1, anon_sym_DOT2, - STATE(2579), 1, - sym_comment, - STATE(2687), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2940), 1, + STATE(712), 1, sym_path, - STATE(3086), 1, + STATE(1334), 1, sym_cell_path, - ACTIONS(1468), 14, + STATE(2427), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2561), 1, + sym_comment, + ACTIONS(1912), 15, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211083,17 +210536,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, - [80689] = 4, - ACTIONS(105), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80095] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2580), 1, + ACTIONS(5295), 1, + anon_sym_DOT_DOT2, + STATE(2562), 1, sym_comment, - ACTIONS(1567), 3, - sym__space, + ACTIONS(5297), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1565), 15, + ACTIONS(5344), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211107,18 +210563,48 @@ 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, + [80127] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5295), 1, anon_sym_DOT_DOT2, - anon_sym_DOT2, - [80718] = 4, + STATE(2563), 1, + sym_comment, + ACTIONS(5297), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5344), 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, + [80159] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(2581), 1, + ACTIONS(5303), 1, + anon_sym_QMARK2, + STATE(2564), 1, sym_comment, - ACTIONS(1557), 3, + ACTIONS(1466), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1555), 15, + ACTIONS(1464), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211134,18 +210620,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [80747] = 5, - ACTIONS(3), 1, + [80191] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5366), 1, - anon_sym_DOT_DOT2, - STATE(2582), 1, + ACTIONS(5222), 1, + aux_sym__immediate_decimal_token5, + STATE(2565), 1, sym_comment, - ACTIONS(5368), 2, + ACTIONS(1810), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5267), 15, - ts_builtin_sym_end, + ACTIONS(1812), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211157,20 +210645,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [80778] = 5, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [80223] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5366), 1, - anon_sym_DOT_DOT2, - STATE(2583), 1, + ACTIONS(5291), 1, + anon_sym_DOT2, + STATE(712), 1, + sym_path, + STATE(1369), 1, + sym_cell_path, + STATE(2427), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2566), 1, sym_comment, - ACTIONS(5368), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5267), 15, + ACTIONS(1894), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -211186,16 +210676,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80809] = 4, + [80259] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2584), 1, + STATE(2567), 1, sym_comment, - ACTIONS(1563), 3, + ACTIONS(1945), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1561), 15, + ACTIONS(1947), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211210,19 +210701,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT2, - [80838] = 5, - ACTIONS(3), 1, + sym__unquoted_pattern, + [80289] = 9, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5366), 1, + ACTIONS(4179), 1, anon_sym_DOT_DOT2, - STATE(2585), 1, + ACTIONS(5188), 1, + sym_filesize_unit, + ACTIONS(5190), 1, + sym_duration_unit, + ACTIONS(5192), 1, + sym__unquoted_pattern, + STATE(2568), 1, sym_comment, - ACTIONS(5368), 2, + ACTIONS(910), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4181), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5267), 15, - ts_builtin_sym_end, + ACTIONS(811), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211234,17 +210733,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, - [80869] = 4, - ACTIONS(3), 1, + [80329] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2578), 1, + ACTIONS(2099), 1, + sym__space, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, sym__unquoted_pattern, - STATE(2586), 1, + ACTIONS(5346), 1, + anon_sym_DOT_DOT2, + STATE(2569), 1, sym_comment, - ACTIONS(2576), 17, + ACTIONS(5348), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2101), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211258,20 +210763,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [80898] = 5, - ACTIONS(3), 1, + [80367] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2672), 1, - anon_sym_LPAREN2, - ACTIONS(2674), 1, - sym__unquoted_pattern, - STATE(2587), 1, + STATE(2570), 1, sym_comment, - ACTIONS(1738), 16, + ACTIONS(1874), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1876), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211285,19 +210787,47 @@ 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, - [80929] = 5, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [80397] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(2108), 1, + ACTIONS(5350), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5352), 1, + aux_sym__immediate_decimal_token5, + STATE(2571), 1, + sym_comment, + ACTIONS(1804), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1802), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LPAREN2, - STATE(2588), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [80431] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5295), 1, + anon_sym_DOT_DOT2, + STATE(2572), 1, sym_comment, - ACTIONS(2104), 16, + ACTIONS(5297), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5344), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211314,16 +210844,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80960] = 5, + [80463] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, + STATE(2573), 1, + sym_comment, + ACTIONS(5356), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5354), 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, + [80493] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1812), 1, sym__unquoted_pattern, - STATE(2589), 1, + ACTIONS(5358), 1, + anon_sym_DOT, + ACTIONS(5360), 1, + aux_sym__immediate_decimal_token5, + STATE(2574), 1, sym_comment, - ACTIONS(2696), 16, + ACTIONS(1810), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211335,21 +210894,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80991] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2118), 1, anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern, - STATE(2590), 1, + [80527] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2575), 1, sym_comment, - ACTIONS(2114), 16, + ACTIONS(1802), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1804), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211363,19 +210922,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [81022] = 5, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [80557] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - sym__unquoted_pattern, - ACTIONS(2718), 1, - anon_sym_LPAREN2, - STATE(2591), 1, + ACTIONS(5115), 1, + anon_sym_DOT2, + STATE(2472), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2499), 1, + sym_path, + STATE(2576), 1, sym_comment, - ACTIONS(2660), 16, + STATE(3229), 1, + sym_cell_path, + ACTIONS(5362), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211389,19 +210952,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, - [81053] = 5, + [80592] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2684), 1, - anon_sym_LPAREN2, - ACTIONS(2686), 1, + ACTIONS(1697), 1, sym__unquoted_pattern, - STATE(2592), 1, + ACTIONS(2710), 1, + anon_sym_LPAREN2, + STATE(2577), 1, sym_comment, - ACTIONS(2676), 16, + ACTIONS(2706), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211418,16 +210978,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81084] = 5, + [80623] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2608), 1, - anon_sym_LPAREN2, - ACTIONS(2610), 1, - sym__unquoted_pattern, - STATE(2593), 1, + STATE(2578), 1, sym_comment, - ACTIONS(2604), 16, + ACTIONS(5364), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211439,21 +210996,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_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, - [81115] = 5, - ACTIONS(3), 1, + [80650] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2630), 1, - anon_sym_LPAREN2, - ACTIONS(2632), 1, - sym__unquoted_pattern, - STATE(2594), 1, + ACTIONS(5366), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5368), 1, + aux_sym__immediate_decimal_token5, + STATE(2579), 1, sym_comment, - ACTIONS(1258), 16, + ACTIONS(1802), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1804), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211467,19 +211028,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, - [81146] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2630), 1, - anon_sym_LPAREN2, - ACTIONS(2632), 1, sym__unquoted_pattern, - STATE(2595), 1, + [80683] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5370), 1, + anon_sym_BANG, + STATE(2580), 1, sym_comment, - ACTIONS(1250), 16, + ACTIONS(1466), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1464), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211491,53 +211053,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, - [81177] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5257), 1, - anon_sym_DOT2, - STATE(2596), 1, - sym_comment, - STATE(2597), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2912), 1, - sym_path, - ACTIONS(1577), 2, - anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1579), 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, - [81212] = 6, + anon_sym_DOT2, + [80714] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5370), 1, + ACTIONS(5372), 1, anon_sym_DOT2, - STATE(2912), 1, + STATE(2899), 1, sym_path, - ACTIONS(1490), 2, + ACTIONS(1558), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - STATE(2597), 2, + STATE(2581), 2, sym_comment, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1492), 13, + ACTIONS(1560), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -211551,19 +211082,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [81245] = 6, + [80747] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5373), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5375), 1, - aux_sym__immediate_decimal_token5, - STATE(2598), 1, + STATE(2582), 1, sym_comment, - ACTIONS(1774), 2, + ACTIONS(1538), 3, sym__space, - anon_sym_LPAREN2, - ACTIONS(1776), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1536), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211577,17 +211105,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [81278] = 4, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [80776] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2599), 1, + STATE(2583), 1, sym_comment, - ACTIONS(1527), 3, + ACTIONS(1574), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1529), 15, + ACTIONS(1576), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -211603,18 +211132,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [81307] = 4, + [80805] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5370), 1, + anon_sym_QMARK2, + STATE(2584), 1, + sym_comment, + ACTIONS(1466), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1464), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [80836] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2600), 1, + ACTIONS(5375), 1, + aux_sym__immediate_decimal_token5, + STATE(2585), 1, sym_comment, - ACTIONS(1531), 3, + ACTIONS(1876), 4, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1533), 15, + sym__unquoted_pattern_in_record, + ACTIONS(1874), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -211624,72 +211181,207 @@ 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, - [81336] = 4, + [80867] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2601), 1, + STATE(2586), 1, sym_comment, - ACTIONS(1535), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1537), 15, + ACTIONS(5377), 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_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [80894] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2720), 1, + anon_sym_LPAREN2, + ACTIONS(2722), 1, + sym__unquoted_pattern, + STATE(2587), 1, + sym_comment, + ACTIONS(1736), 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, + [80925] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2588), 1, + sym_comment, + ACTIONS(4790), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4792), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4794), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4786), 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, + [80958] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5379), 1, + anon_sym_DOT_DOT2, + STATE(2589), 1, + sym_comment, + ACTIONS(5381), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [81365] = 4, + ACTIONS(1736), 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, + [80989] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2602), 1, + ACTIONS(5383), 1, + anon_sym_QMARK2, + ACTIONS(5385), 1, + anon_sym_BANG, + STATE(2590), 1, sym_comment, - ACTIONS(1486), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1488), 15, + STATE(2923), 1, + sym__path_suffix, + ACTIONS(1472), 15, + 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, + anon_sym_DOT2, + [81022] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(2129), 1, + anon_sym_LPAREN2, + ACTIONS(5387), 1, + anon_sym_DOT_DOT2, + STATE(2591), 1, + sym_comment, + ACTIONS(2125), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5389), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [81394] = 4, + ACTIONS(2127), 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, + [81059] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2592), 1, + sym_comment, + ACTIONS(1874), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1876), 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, + [81088] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2603), 1, + ACTIONS(5251), 1, + aux_sym__immediate_decimal_token5, + STATE(2593), 1, sym_comment, - ACTIONS(1541), 3, + ACTIONS(1812), 4, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1543), 15, + sym__unquoted_pattern_in_record, + ACTIONS(1810), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -211699,20 +211391,24 @@ 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, - [81423] = 4, + [81119] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2604), 1, + ACTIONS(5285), 1, + anon_sym_DOT2, + STATE(2581), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2594), 1, sym_comment, - ACTIONS(1545), 3, + STATE(2899), 1, + sym_path, + ACTIONS(1567), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1547), 15, + ACTIONS(1569), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -211726,15 +211422,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [81452] = 3, + [81154] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2605), 1, + ACTIONS(2598), 1, + sym__unquoted_pattern, + STATE(2595), 1, sym_comment, - ACTIONS(5249), 18, - anon_sym_EQ, + ACTIONS(2596), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211746,19 +211441,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, - [81479] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [81183] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2606), 1, + ACTIONS(1830), 1, + anon_sym_LPAREN2, + STATE(2596), 1, sym_comment, - ACTIONS(1529), 18, - anon_sym_EQ, + STATE(5101), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5391), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211770,25 +211468,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, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [81506] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81214] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5379), 1, - aux_sym__immediate_decimal_token5, - STATE(2607), 1, + STATE(2597), 1, sym_comment, - ACTIONS(1788), 2, + ACTIONS(1945), 5, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - ACTIONS(1790), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1947), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211800,20 +211496,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - [81539] = 5, - ACTIONS(3), 1, + [81243] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1790), 1, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, sym__unquoted_pattern, - ACTIONS(5306), 1, - aux_sym__immediate_decimal_token5, - STATE(2608), 1, + ACTIONS(5393), 1, + anon_sym_DOT_DOT2, + STATE(2598), 1, sym_comment, - ACTIONS(1788), 16, + ACTIONS(2099), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5395), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2101), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211825,17 +211527,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, - anon_sym_LPAREN2, - [81570] = 3, + [81280] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2609), 1, + ACTIONS(5397), 1, + anon_sym_DOT_DOT2, + STATE(2599), 1, sym_comment, - ACTIONS(1533), 18, - anon_sym_EQ, + ACTIONS(5399), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2271), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211847,18 +211550,15 @@ static const uint16_t 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, - [81597] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81311] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2610), 1, + STATE(2600), 1, sym_comment, - ACTIONS(1537), 18, + ACTIONS(5401), 18, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -211871,19 +211571,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_COLON, + anon_sym_DASH_GT, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [81624] = 3, - ACTIONS(3), 1, + [81338] = 8, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2611), 1, + ACTIONS(5166), 1, + anon_sym_DOT2, + ACTIONS(5405), 1, + sym__space, + STATE(2505), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2601), 1, sym_comment, - ACTIONS(1488), 18, - anon_sym_EQ, + STATE(2639), 1, + sym_path, + STATE(3232), 1, + sym_cell_path, + ACTIONS(5403), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211895,19 +211604,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, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [81651] = 3, - ACTIONS(3), 1, + [81375] = 8, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2612), 1, + ACTIONS(5166), 1, + anon_sym_DOT2, + ACTIONS(5409), 1, + sym__space, + STATE(2505), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2602), 1, sym_comment, - ACTIONS(1543), 18, - anon_sym_EQ, + STATE(2639), 1, + sym_path, + STATE(3231), 1, + sym_cell_path, + ACTIONS(5407), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211919,19 +211633,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, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [81678] = 3, + [81412] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2613), 1, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(2129), 1, + anon_sym_LPAREN2, + STATE(2603), 1, sym_comment, - ACTIONS(1547), 18, - anon_sym_EQ, + ACTIONS(2125), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211943,23 +211656,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, - [81705] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81443] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1868), 1, - sym__unquoted_pattern, - ACTIONS(5381), 1, - aux_sym__immediate_decimal_token5, - STATE(2614), 1, + ACTIONS(1830), 1, + anon_sym_LPAREN2, + STATE(2604), 1, sym_comment, - ACTIONS(1866), 16, - ts_builtin_sym_end, + STATE(5101), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5391), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211971,18 +211682,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, - anon_sym_LPAREN2, - [81736] = 4, + [81474] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1776), 1, - sym__unquoted_pattern, - STATE(2615), 1, + STATE(2605), 1, sym_comment, - ACTIONS(1774), 17, + ACTIONS(5411), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211994,20 +211705,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, - [81765] = 4, + [81501] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1868), 1, + ACTIONS(2636), 1, + anon_sym_LPAREN2, + ACTIONS(2638), 1, sym__unquoted_pattern, - STATE(2616), 1, + STATE(2606), 1, sym_comment, - ACTIONS(1866), 17, + ACTIONS(1254), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212024,15 +211737,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [81794] = 4, + [81532] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1923), 1, + ACTIONS(2636), 1, + anon_sym_LPAREN2, + ACTIONS(2638), 1, sym__unquoted_pattern, - STATE(2617), 1, + STATE(2607), 1, sym_comment, - ACTIONS(1921), 17, + ACTIONS(1262), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212049,43 +211763,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [81823] = 5, + [81563] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5275), 1, - aux_sym__immediate_decimal_token5, - STATE(2618), 1, + ACTIONS(1830), 1, + anon_sym_LPAREN2, + STATE(2608), 1, sym_comment, - ACTIONS(1790), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1788), 13, - anon_sym_EQ, + STATE(5101), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5391), 16, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [81854] = 5, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81594] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(2103), 1, anon_sym_LPAREN2, - STATE(2619), 1, + ACTIONS(2109), 1, + sym__unquoted_pattern, + STATE(2609), 1, sym_comment, - STATE(5069), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5383), 16, + ACTIONS(2640), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212102,21 +211815,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81885] = 7, - ACTIONS(3), 1, + [81625] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5112), 1, + ACTIONS(1894), 1, + sym__space, + ACTIONS(5166), 1, anon_sym_DOT2, - STATE(2469), 1, + STATE(2505), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2485), 1, - sym_path, - STATE(2620), 1, + STATE(2610), 1, sym_comment, - STATE(3107), 1, + STATE(2639), 1, + sym_path, + STATE(3054), 1, sym_cell_path, - ACTIONS(1917), 14, - anon_sym_EQ, + ACTIONS(1896), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212130,16 +211844,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [81920] = 5, + [81662] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - STATE(2621), 1, + ACTIONS(1947), 1, + sym__unquoted_pattern, + STATE(2611), 1, sym_comment, - STATE(5069), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5383), 16, + ACTIONS(1945), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212156,16 +211868,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81951] = 5, + anon_sym_LPAREN2, + [81691] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - STATE(2622), 1, + STATE(2612), 1, sym_comment, - STATE(5069), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5383), 16, + ACTIONS(5413), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212177,17 +211887,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_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, - [81982] = 3, + [81718] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2623), 1, + ACTIONS(5275), 1, + anon_sym_DOT2, + STATE(2499), 1, + sym_path, + STATE(2613), 1, sym_comment, - ACTIONS(5385), 18, + STATE(2631), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1569), 15, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -212200,19 +211917,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_GT, + anon_sym_COLON, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, anon_sym_RBRACE, - [82009] = 3, + [81751] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2624), 1, + ACTIONS(1876), 1, + sym__unquoted_pattern, + STATE(2614), 1, sym_comment, - ACTIONS(5387), 18, - anon_sym_EQ, + ACTIONS(1874), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212224,19 +211939,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_GT2, - anon_sym_AT2, - anon_sym_LBRACE, anon_sym_RBRACE, - [82036] = 3, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [81780] = 8, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2625), 1, + ACTIONS(5166), 1, + anon_sym_DOT2, + ACTIONS(5417), 1, + sym__space, + STATE(2505), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2615), 1, sym_comment, - ACTIONS(5389), 18, - anon_sym_EQ, + STATE(2639), 1, + sym_path, + STATE(3251), 1, + sym_cell_path, + ACTIONS(5415), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212248,19 +211972,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_DASH_GT, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, anon_sym_RBRACE, - [82063] = 3, + [81817] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2616), 1, + sym_comment, + ACTIONS(1490), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1492), 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, + [81846] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2626), 1, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, + sym__unquoted_pattern, + STATE(2617), 1, sym_comment, - ACTIONS(5391), 18, - anon_sym_EQ, + ACTIONS(2099), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212272,19 +212020,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, - [82090] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81877] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2627), 1, + ACTIONS(1804), 1, + sym__unquoted_pattern, + STATE(2618), 1, sym_comment, - ACTIONS(5393), 18, - anon_sym_EQ, + ACTIONS(1802), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212296,43 +212044,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_GT, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, anon_sym_RBRACE, - [82117] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [81906] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2628), 1, + STATE(2619), 1, sym_comment, - ACTIONS(5395), 18, + ACTIONS(1550), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1552), 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, - [82144] = 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, + anon_sym_QMARK2, + anon_sym_BANG, + [81935] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2629), 1, + ACTIONS(1876), 1, + sym__unquoted_pattern, + ACTIONS(5419), 1, + aux_sym__immediate_decimal_token5, + STATE(2620), 1, sym_comment, - ACTIONS(5397), 18, - anon_sym_EQ, + ACTIONS(1874), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212344,84 +212097,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, - [82171] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2630), 1, - sym_comment, - ACTIONS(4815), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4817), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4819), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4813), 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, - [82204] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [81966] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2631), 1, - sym_comment, - ACTIONS(4786), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4788), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4790), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4782), 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, - [82237] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(2108), 1, - anon_sym_LPAREN2, - ACTIONS(5399), 1, + ACTIONS(5421), 1, anon_sym_DOT_DOT2, - STATE(2632), 1, + STATE(2621), 1, sym_comment, - ACTIONS(2104), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5401), 2, + ACTIONS(5423), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2106), 11, + ACTIONS(2146), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212433,22 +212124,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, - [82274] = 8, - ACTIONS(105), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81997] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5124), 1, + ACTIONS(5115), 1, anon_sym_DOT2, - ACTIONS(5405), 1, - sym__space, - STATE(2509), 1, + STATE(2472), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2581), 1, + STATE(2499), 1, sym_path, - STATE(2633), 1, + STATE(2622), 1, sym_comment, - STATE(3162), 1, + STATE(3197), 1, sym_cell_path, - ACTIONS(5403), 13, + ACTIONS(1904), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212462,22 +212155,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [82311] = 8, + [82032] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5124), 1, - anon_sym_DOT2, - ACTIONS(5409), 1, - sym__space, - STATE(2509), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2581), 1, - sym_path, - STATE(2634), 1, + STATE(2623), 1, sym_comment, - STATE(3167), 1, - sym_cell_path, - ACTIONS(5407), 13, + ACTIONS(1802), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1804), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212489,24 +212178,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, - [82348] = 8, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [82061] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5124), 1, - anon_sym_DOT2, - ACTIONS(5413), 1, + ACTIONS(1934), 1, sym__space, - STATE(2509), 1, + ACTIONS(5166), 1, + anon_sym_DOT2, + STATE(2505), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2581), 1, - sym_path, - STATE(2635), 1, + STATE(2624), 1, sym_comment, - STATE(3168), 1, + STATE(2639), 1, + sym_path, + STATE(3128), 1, sym_cell_path, - ACTIONS(5411), 13, + ACTIONS(1936), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212520,24 +212209,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [82385] = 8, - ACTIONS(105), 1, + [82098] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern, - ACTIONS(5415), 1, + ACTIONS(5425), 1, anon_sym_DOT_DOT2, - STATE(2636), 1, + STATE(2625), 1, sym_comment, - ACTIONS(2114), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5417), 2, + ACTIONS(5427), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2116), 11, + ACTIONS(2251), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212549,22 +212232,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, - [82422] = 8, - ACTIONS(105), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82129] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5124), 1, - anon_sym_DOT2, - ACTIONS(5421), 1, - sym__space, - STATE(2509), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2581), 1, - sym_path, - STATE(2637), 1, + STATE(2626), 1, sym_comment, - STATE(3192), 1, - sym_cell_path, - ACTIONS(5419), 13, + ACTIONS(5429), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212576,24 +212253,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_GT2, + anon_sym_AT2, + anon_sym_LBRACE, anon_sym_RBRACE, - [82459] = 8, + [82156] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5124), 1, + ACTIONS(5166), 1, anon_sym_DOT2, - ACTIONS(5425), 1, + ACTIONS(5433), 1, sym__space, - STATE(2509), 1, + STATE(2505), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2581), 1, - sym_path, - STATE(2638), 1, + STATE(2627), 1, sym_comment, - STATE(3193), 1, + STATE(2639), 1, + sym_path, + STATE(3248), 1, sym_cell_path, - ACTIONS(5423), 13, + ACTIONS(5431), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212607,20 +212288,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [82496] = 7, + [82193] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5112), 1, + ACTIONS(5115), 1, anon_sym_DOT2, - STATE(2469), 1, + STATE(2472), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2485), 1, + STATE(2499), 1, sym_path, - STATE(2639), 1, + STATE(2628), 1, sym_comment, - STATE(3248), 1, + STATE(3201), 1, sym_cell_path, - ACTIONS(5427), 14, + ACTIONS(1934), 14, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -212635,22 +212316,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [82531] = 8, - ACTIONS(105), 1, + [82228] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, - sym__space, - ACTIONS(5124), 1, + ACTIONS(5435), 1, anon_sym_DOT2, - STATE(2509), 1, + STATE(2629), 1, + sym_comment, + STATE(2661), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2581), 1, + STATE(2966), 1, sym_path, - STATE(2640), 1, - sym_comment, - STATE(3153), 1, + STATE(3206), 1, sym_cell_path, - ACTIONS(1883), 13, + ACTIONS(1480), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212662,24 +212343,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, - [82568] = 8, - ACTIONS(105), 1, + anon_sym_COLON, + [82263] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1905), 1, - sym__space, - ACTIONS(5124), 1, - anon_sym_DOT2, - STATE(2509), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2581), 1, - sym_path, - STATE(2641), 1, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(2630), 1, sym_comment, - STATE(3161), 1, - sym_cell_path, - ACTIONS(1907), 13, + ACTIONS(2608), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212693,19 +212367,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [82605] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82294] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5429), 1, - anon_sym_QMARK2, - ACTIONS(5431), 1, - anon_sym_BANG, - STATE(2642), 1, + ACTIONS(5437), 1, + anon_sym_DOT2, + STATE(2499), 1, + sym_path, + STATE(2631), 2, sym_comment, - STATE(2969), 1, - sym__path_suffix, - ACTIONS(1474), 15, - ts_builtin_sym_end, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1560), 15, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -212719,23 +212394,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_COLON, - anon_sym_DOT2, - [82638] = 8, - ACTIONS(105), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [82325] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1909), 1, - sym__space, - ACTIONS(5124), 1, + STATE(2632), 1, + sym_comment, + ACTIONS(1544), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, anon_sym_DOT2, - STATE(2509), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2581), 1, - sym_path, - STATE(2643), 1, + ACTIONS(1546), 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, + [82354] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2633), 1, sym_comment, - STATE(3166), 1, - sym_cell_path, - ACTIONS(1911), 13, + ACTIONS(1576), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212747,24 +212439,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_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - [82675] = 8, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [82381] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1925), 1, - sym__space, - ACTIONS(5124), 1, - anon_sym_DOT2, - STATE(2509), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2581), 1, - sym_path, - STATE(2644), 1, + ACTIONS(5440), 1, + anon_sym_DOT, + ACTIONS(5442), 1, + aux_sym__immediate_decimal_token5, + STATE(2634), 1, sym_comment, - STATE(3172), 1, - sym_cell_path, - ACTIONS(1927), 13, + ACTIONS(1810), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1812), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212778,22 +212471,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [82712] = 8, + sym__unquoted_pattern, + [82414] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1917), 1, + ACTIONS(1926), 1, sym__space, - ACTIONS(5124), 1, + ACTIONS(5166), 1, anon_sym_DOT2, - STATE(2509), 1, + STATE(2505), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2581), 1, - sym_path, - STATE(2645), 1, + STATE(2635), 1, sym_comment, - STATE(3191), 1, + STATE(2639), 1, + sym_path, + STATE(3070), 1, sym_cell_path, - ACTIONS(1919), 13, + ACTIONS(1928), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212807,22 +212501,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [82749] = 8, - ACTIONS(105), 1, + [82451] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1901), 1, - sym__space, - ACTIONS(5124), 1, - anon_sym_DOT2, - STATE(2509), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2581), 1, - sym_path, - STATE(2646), 1, + ACTIONS(1812), 1, + sym__unquoted_pattern, + ACTIONS(5360), 1, + aux_sym__immediate_decimal_token5, + STATE(2636), 1, sym_comment, - STATE(3204), 1, - sym_cell_path, - ACTIONS(1903), 13, + ACTIONS(1810), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212834,20 +212523,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [82786] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [82482] = 8, ACTIONS(105), 1, anon_sym_POUND, - STATE(2647), 1, - sym_comment, - ACTIONS(1774), 5, - ts_builtin_sym_end, + ACTIONS(1912), 1, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1776), 13, + ACTIONS(5166), 1, + anon_sym_DOT2, + STATE(2505), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2637), 1, + sym_comment, + STATE(2639), 1, + sym_path, + STATE(3062), 1, + sym_cell_path, + ACTIONS(1915), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212859,20 +212554,15 @@ static const uint16_t 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, - [82815] = 4, - ACTIONS(105), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [82519] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2648), 1, + STATE(2638), 1, sym_comment, - ACTIONS(1866), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1868), 13, + ACTIONS(1492), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212884,20 +212574,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [82844] = 4, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [82546] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2649), 1, + STATE(2639), 1, sym_comment, - ACTIONS(1921), 5, - ts_builtin_sym_end, + ACTIONS(1586), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1923), 13, + ACTIONS(1584), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212909,20 +212601,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [82873] = 5, + anon_sym_DOT2, + [82575] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5366), 1, - anon_sym_DOT_DOT2, - STATE(2650), 1, + STATE(2640), 1, sym_comment, - ACTIONS(5368), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 15, - ts_builtin_sym_end, + ACTIONS(1552), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212934,21 +212623,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, - [82904] = 6, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [82602] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5356), 1, - anon_sym_DOT2, - STATE(2485), 1, - sym_path, - STATE(2651), 1, + STATE(2641), 1, sym_comment, - STATE(2652), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1579), 15, + ACTIONS(5444), 18, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -212961,20 +212647,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, + anon_sym_DASH_GT, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, anon_sym_RBRACE, - [82937] = 5, + [82629] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5433), 1, + STATE(2642), 1, + sym_comment, + ACTIONS(1540), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, anon_sym_DOT2, - STATE(2485), 1, - sym_path, - STATE(2652), 2, + ACTIONS(1542), 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, + [82658] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2643), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1492), 15, + ACTIONS(4826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4828), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4830), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4824), 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, + [82691] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2644), 1, + sym_comment, + ACTIONS(5269), 18, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -212987,24 +212723,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_COLON, + anon_sym_DASH_GT, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, anon_sym_RBRACE, - [82968] = 7, - ACTIONS(3), 1, + [82718] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5112), 1, + ACTIONS(5166), 1, anon_sym_DOT2, - STATE(2469), 1, + ACTIONS(5448), 1, + sym__space, + STATE(2505), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2485), 1, + STATE(2639), 1, sym_path, - STATE(2653), 1, + STATE(2645), 1, sym_comment, - STATE(3257), 1, + STATE(3247), 1, sym_cell_path, - ACTIONS(1909), 14, - anon_sym_EQ, + ACTIONS(5446), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213018,19 +212758,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [83003] = 5, - ACTIONS(105), 1, + [82755] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5362), 1, - anon_sym_QMARK2, - STATE(2654), 1, + STATE(2646), 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(1546), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213042,20 +212776,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_BANG, anon_sym_DOT2, - [83034] = 5, - ACTIONS(3), 1, + [82782] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_DOT_DOT2, - STATE(2655), 1, + ACTIONS(1930), 1, + sym__space, + ACTIONS(5166), 1, + anon_sym_DOT2, + STATE(2505), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2639), 1, + sym_path, + STATE(2647), 1, sym_comment, - ACTIONS(5438), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2166), 15, - ts_builtin_sym_end, + STATE(3081), 1, + sym_cell_path, + ACTIONS(1932), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213067,21 +212809,15 @@ static const uint16_t 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, - [83065] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [82819] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5440), 1, - anon_sym_DOT_DOT2, - STATE(2656), 1, + STATE(2648), 1, sym_comment, - ACTIONS(5442), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2174), 15, - ts_builtin_sym_end, + ACTIONS(1542), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213093,21 +212829,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [83096] = 5, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [82846] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5444), 1, - anon_sym_DOT_DOT2, - STATE(2657), 1, + ACTIONS(2716), 1, + anon_sym_LPAREN2, + ACTIONS(2718), 1, + sym__unquoted_pattern, + STATE(2649), 1, sym_comment, - ACTIONS(5446), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2186), 15, - ts_builtin_sym_end, + ACTIONS(2712), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213119,70 +212856,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, - [83127] = 5, + [82877] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5448), 1, - aux_sym__immediate_decimal_token5, - STATE(2658), 1, - sym_comment, - ACTIONS(1868), 4, - sym_identifier, - anon_sym_DASH2, + ACTIONS(5450), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1866), 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, - [83158] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2659), 1, + STATE(2650), 1, sym_comment, - ACTIONS(1868), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1866), 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, + ACTIONS(5452), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [83186] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2660), 1, - sym_comment, - ACTIONS(1557), 4, + ACTIONS(2314), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1555), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213194,40 +212884,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [83214] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82908] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2661), 1, + STATE(2651), 1, sym_comment, - ACTIONS(1923), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1921), 14, + ACTIONS(1524), 18, anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - 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, - [83242] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1806), 1, - sym__unquoted_pattern, - STATE(2662), 1, - sym_comment, - ACTIONS(914), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213239,22 +212905,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, - [83270] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [82935] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2663), 1, + STATE(2652), 1, sym_comment, - ACTIONS(1563), 4, - ts_builtin_sym_end, + ACTIONS(1534), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1561), 13, + ACTIONS(1532), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213266,47 +212932,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, - [83298] = 5, - ACTIONS(105), 1, + [82964] = 5, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5379), 1, - aux_sym__immediate_decimal_token5, - STATE(2664), 1, - sym_comment, - ACTIONS(1788), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1790), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym__unquoted_pattern, - [83328] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5450), 1, - anon_sym_DOT, - ACTIONS(5452), 1, - aux_sym__immediate_decimal_token5, - STATE(2665), 1, + anon_sym_DOT_DOT2, + STATE(2653), 1, sym_comment, - ACTIONS(1788), 3, + ACTIONS(5381), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5344), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1790), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213318,25 +212959,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [83360] = 9, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82995] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5454), 1, - sym__newline, - ACTIONS(5456), 1, + ACTIONS(1904), 1, sym__space, - ACTIONS(5460), 1, - anon_sym_COLON2, - ACTIONS(5462), 1, - anon_sym_EQ2, - STATE(2666), 1, + ACTIONS(5166), 1, + anon_sym_DOT2, + STATE(2505), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2639), 1, + sym_path, + STATE(2654), 1, sym_comment, - STATE(3037), 1, - aux_sym_attribute_repeat1, - STATE(4472), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(5458), 11, + STATE(3162), 1, + sym_cell_path, + ACTIONS(1906), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213347,19 +212989,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, - [83398] = 5, + [83032] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5464), 1, - anon_sym_BANG, - STATE(2667), 1, + STATE(2655), 1, sym_comment, - ACTIONS(1460), 3, + ACTIONS(1522), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1462), 13, + ACTIONS(1524), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -213373,91 +213014,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [83428] = 5, + anon_sym_QMARK2, + anon_sym_BANG, + [83061] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5464), 1, - anon_sym_QMARK2, - STATE(2668), 1, - sym_comment, - ACTIONS(1460), 3, - anon_sym_DASH2, + ACTIONS(5379), 1, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1462), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + STATE(2656), 1, + sym_comment, + ACTIONS(5381), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [83458] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5466), 1, - aux_sym__immediate_decimal_token5, - STATE(2669), 1, - sym_comment, - ACTIONS(1866), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1868), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym__unquoted_pattern, - [83488] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - STATE(2670), 1, - sym_comment, - STATE(5005), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5383), 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, - [83518] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2630), 1, - anon_sym_LPAREN2, - ACTIONS(2632), 1, - sym__unquoted_pattern, - STATE(2671), 1, - sym_comment, - ACTIONS(1258), 15, + ACTIONS(5344), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213473,17 +213042,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83548] = 5, + [83092] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2630), 1, - anon_sym_LPAREN2, - ACTIONS(2632), 1, - sym__unquoted_pattern, - STATE(2672), 1, + ACTIONS(5115), 1, + anon_sym_DOT2, + STATE(2472), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2499), 1, + sym_path, + STATE(2657), 1, sym_comment, - ACTIONS(1250), 15, - ts_builtin_sym_end, + STATE(3220), 1, + sym_cell_path, + ACTIONS(1894), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213495,19 +213068,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, - [83578] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [83127] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2672), 1, - anon_sym_LPAREN2, - ACTIONS(2674), 1, - sym__unquoted_pattern, - STATE(2673), 1, + ACTIONS(5379), 1, + anon_sym_DOT_DOT2, + STATE(2658), 1, sym_comment, - ACTIONS(1738), 15, + ACTIONS(5381), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5344), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213523,17 +213096,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83608] = 5, - ACTIONS(3), 1, + [83158] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - STATE(2674), 1, + ACTIONS(5212), 1, + anon_sym_DOT2, + STATE(2551), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2659), 1, sym_comment, - STATE(5005), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5383), 15, + STATE(2687), 1, + sym_path, + STATE(3336), 1, + sym_cell_path, + ACTIONS(1912), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1915), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213545,87 +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, - [83638] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1509), 1, - anon_sym_COMMA, - ACTIONS(5332), 1, - anon_sym_EQ, - ACTIONS(5334), 1, - sym__newline, - ACTIONS(5336), 1, - anon_sym_COLON, - ACTIONS(5470), 1, - anon_sym_DASH2, - STATE(2675), 1, - sym_comment, - STATE(2676), 1, - aux_sym_parameter_repeat1, - STATE(3647), 1, - aux_sym_parameter_repeat2, - STATE(4411), 1, - aux_sym__repeat_newline, - STATE(3468), 2, - sym_param_type, - sym_param_value, - ACTIONS(5468), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [83682] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1509), 1, - anon_sym_COMMA, - ACTIONS(5332), 1, - anon_sym_EQ, - ACTIONS(5334), 1, - sym__newline, - ACTIONS(5336), 1, - anon_sym_COLON, - ACTIONS(5474), 1, - anon_sym_DASH2, - STATE(2676), 1, - sym_comment, - STATE(2774), 1, - aux_sym_parameter_repeat1, - STATE(3629), 1, - aux_sym_parameter_repeat2, - STATE(4411), 1, - aux_sym__repeat_newline, - STATE(3468), 2, - sym_param_type, - sym_param_value, - ACTIONS(5472), 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] = 7, + [83194] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5364), 1, + ACTIONS(5435), 1, anon_sym_DOT2, - STATE(2677), 1, + STATE(2660), 1, sym_comment, - STATE(2687), 1, + STATE(2661), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2940), 1, + STATE(2966), 1, sym_path, - STATE(3331), 1, + STATE(3269), 1, sym_cell_path, - ACTIONS(5427), 13, + ACTIONS(1894), 13, ts_builtin_sym_end, anon_sym_EQ, sym__newline, @@ -213639,15 +213151,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, - [83760] = 4, + [83228] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2578), 1, - sym__unquoted_pattern, - STATE(2678), 1, + ACTIONS(5435), 1, + anon_sym_DOT2, + STATE(2661), 1, sym_comment, - ACTIONS(2576), 16, + STATE(2684), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2966), 1, + sym_path, + ACTIONS(1569), 14, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213659,17 +213176,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, - anon_sym_LPAREN2, - [83788] = 3, - ACTIONS(3), 1, + anon_sym_COLON, + [83260] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2679), 1, + STATE(2662), 1, sym_comment, - ACTIONS(5476), 17, - anon_sym_EQ, + ACTIONS(1900), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1902), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213681,21 +213198,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, - [83814] = 5, + anon_sym_DOT_DOT2, + [83288] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(1830), 1, anon_sym_LPAREN2, - STATE(2680), 1, + STATE(2663), 1, sym_comment, - STATE(5005), 1, + STATE(5059), 1, sym__expr_parenthesized_immediate, - ACTIONS(5383), 15, + ACTIONS(5391), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213711,23 +213226,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83844] = 8, + [83318] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5203), 1, + ACTIONS(5212), 1, anon_sym_DOT2, - STATE(2568), 1, + STATE(2551), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2660), 1, - sym_path, - STATE(2681), 1, + STATE(2664), 1, sym_comment, - STATE(3413), 1, + STATE(2687), 1, + sym_path, + STATE(3312), 1, sym_cell_path, - ACTIONS(1880), 2, + ACTIONS(5433), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1883), 11, + ACTIONS(5431), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213739,23 +213254,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, - [83880] = 8, + [83354] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5203), 1, + ACTIONS(5212), 1, anon_sym_DOT2, - STATE(2568), 1, + STATE(2551), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2660), 1, - sym_path, - STATE(2682), 1, + STATE(2665), 1, sym_comment, - STATE(3287), 1, + STATE(2687), 1, + sym_path, + STATE(3361), 1, sym_cell_path, - ACTIONS(1905), 2, + ACTIONS(1934), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1907), 11, + ACTIONS(1936), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213767,23 +213282,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, - [83916] = 8, + [83390] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5203), 1, + ACTIONS(5212), 1, anon_sym_DOT2, - STATE(2568), 1, + STATE(2551), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2660), 1, - sym_path, - STATE(2683), 1, + STATE(2666), 1, sym_comment, - STATE(3320), 1, + STATE(2687), 1, + sym_path, + STATE(3311), 1, sym_cell_path, - ACTIONS(1909), 2, + ACTIONS(5448), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1911), 11, + ACTIONS(5446), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213795,78 +213310,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, - [83952] = 8, - ACTIONS(105), 1, + [83426] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT2, - STATE(2568), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2660), 1, - sym_path, - STATE(2684), 1, - sym_comment, - STATE(3372), 1, - sym_cell_path, - ACTIONS(1925), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1927), 11, + ACTIONS(1506), 1, + anon_sym_COMMA, + ACTIONS(5331), 1, + anon_sym_EQ, + ACTIONS(5333), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(5335), 1, + anon_sym_COLON, + ACTIONS(5456), 1, + anon_sym_DASH2, + STATE(2667), 1, + sym_comment, + STATE(2780), 1, + aux_sym_parameter_repeat1, + STATE(3622), 1, + aux_sym_parameter_repeat2, + STATE(4636), 1, + aux_sym__repeat_newline, + STATE(3539), 2, + sym_param_type, + sym_param_value, + ACTIONS(5454), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [83988] = 7, - ACTIONS(105), 1, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [83470] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4355), 1, - sym__space, - ACTIONS(5478), 1, - sym_long_flag_identifier, - ACTIONS(5480), 1, - anon_sym_EQ2, - STATE(2685), 1, - sym_comment, - STATE(3247), 1, - sym__flag_equals_value, - ACTIONS(4353), 13, + ACTIONS(1506), 1, + anon_sym_COMMA, + ACTIONS(5331), 1, + anon_sym_EQ, + ACTIONS(5333), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(5335), 1, + anon_sym_COLON, + ACTIONS(5460), 1, + anon_sym_DASH2, + STATE(2668), 1, + sym_comment, + STATE(2721), 1, + aux_sym_parameter_repeat1, + STATE(3610), 1, + aux_sym_parameter_repeat2, + STATE(4636), 1, + aux_sym__repeat_newline, + STATE(3539), 2, + sym_param_type, + sym_param_value, + ACTIONS(5458), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [84022] = 8, - ACTIONS(105), 1, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [83514] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT2, - STATE(2568), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2660), 1, - sym_path, - STATE(2686), 1, + ACTIONS(1830), 1, + anon_sym_LPAREN2, + STATE(2669), 1, sym_comment, - STATE(3346), 1, - sym_cell_path, - ACTIONS(1917), 2, + STATE(5059), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5391), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1919), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213878,20 +213396,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, - [84058] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [83544] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5364), 1, - anon_sym_DOT2, - STATE(2687), 1, + STATE(2670), 1, sym_comment, - STATE(2690), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2940), 1, - sym_path, - ACTIONS(1579), 14, + ACTIONS(1534), 4, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1532), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213903,17 +213421,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, - [84090] = 5, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [83572] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1697), 1, sym__unquoted_pattern, - ACTIONS(2108), 1, + ACTIONS(2710), 1, anon_sym_LPAREN2, - STATE(2688), 1, + STATE(2671), 1, sym_comment, - ACTIONS(2104), 15, + ACTIONS(2706), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213929,23 +213448,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [84120] = 8, + [83602] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT2, - STATE(2568), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2660), 1, - sym_path, - STATE(2689), 1, - sym_comment, - STATE(3296), 1, - sym_cell_path, - ACTIONS(1901), 2, - ts_builtin_sym_end, + ACTIONS(4321), 1, sym__space, - ACTIONS(1903), 11, + ACTIONS(5462), 1, + sym_long_flag_identifier, + ACTIONS(5464), 1, + anon_sym_EQ2, + STATE(2672), 1, + sym_comment, + STATE(3209), 1, + sym__flag_equals_value, + ACTIONS(4319), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213957,17 +213473,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, - [84156] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [83636] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5482), 1, + ACTIONS(5435), 1, anon_sym_DOT2, - STATE(2940), 1, - sym_path, - STATE(2690), 2, - sym_comment, + STATE(2661), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1492), 14, + STATE(2673), 1, + sym_comment, + STATE(2966), 1, + sym_path, + STATE(3323), 1, + sym_cell_path, + ACTIONS(1904), 13, ts_builtin_sym_end, anon_sym_EQ, sym__newline, @@ -213981,17 +213502,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, - [84186] = 4, + [83670] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2691), 1, + STATE(2674), 1, sym_comment, - ACTIONS(1602), 3, + ACTIONS(1908), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1600), 14, + ACTIONS(1910), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214006,16 +213526,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [84214] = 5, + [83698] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2118), 1, + ACTIONS(2716), 1, anon_sym_LPAREN2, - ACTIONS(2124), 1, + ACTIONS(2718), 1, sym__unquoted_pattern, - STATE(2692), 1, + STATE(2675), 1, sym_comment, - ACTIONS(2696), 15, + ACTIONS(2712), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -214031,17 +213551,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [84244] = 5, + [83728] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern, - STATE(2693), 1, + ACTIONS(1506), 1, + anon_sym_COMMA, + ACTIONS(5331), 1, + anon_sym_EQ, + ACTIONS(5333), 1, + sym__newline, + ACTIONS(5335), 1, + anon_sym_COLON, + ACTIONS(5468), 1, + anon_sym_DASH2, + STATE(2676), 1, + sym_comment, + STATE(2780), 1, + aux_sym_parameter_repeat1, + STATE(3624), 1, + aux_sym_parameter_repeat2, + STATE(4636), 1, + aux_sym__repeat_newline, + STATE(3539), 2, + sym_param_type, + sym_param_value, + ACTIONS(5466), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [83772] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5212), 1, + anon_sym_DOT2, + STATE(2551), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2677), 1, sym_comment, - ACTIONS(2114), 15, + STATE(2687), 1, + sym_path, + STATE(3313), 1, + sym_cell_path, + ACTIONS(5417), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5415), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214053,17 +213611,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, - [84274] = 4, + [83808] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1636), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2127), 1, + anon_sym_DASH2, + ACTIONS(2129), 1, + anon_sym_LPAREN2, + ACTIONS(5470), 1, + anon_sym_DOT_DOT2, + STATE(2678), 1, + sym_comment, + ACTIONS(5472), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2125), 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, + [83844] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1776), 1, + ACTIONS(1804), 1, sym__unquoted_pattern, - STATE(2694), 1, + STATE(2679), 1, sym_comment, - ACTIONS(1774), 16, + ACTIONS(1802), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -214080,48 +213663,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [84302] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1509), 1, - anon_sym_COMMA, - ACTIONS(5332), 1, - anon_sym_EQ, - ACTIONS(5334), 1, - sym__newline, - ACTIONS(5336), 1, - anon_sym_COLON, - ACTIONS(5487), 1, - anon_sym_DASH2, - STATE(2695), 1, - sym_comment, - STATE(2774), 1, - aux_sym_parameter_repeat1, - STATE(3623), 1, - aux_sym_parameter_repeat2, - STATE(4411), 1, - aux_sym__repeat_newline, - STATE(3468), 2, - sym_param_type, - sym_param_value, - ACTIONS(5485), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [84346] = 5, + [83872] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - sym__unquoted_pattern, - ACTIONS(2718), 1, + ACTIONS(2612), 1, anon_sym_LPAREN2, - STATE(2696), 1, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(2680), 1, sym_comment, - ACTIONS(2660), 15, + ACTIONS(2608), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -214137,17 +213688,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [84376] = 5, + [83902] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2684), 1, - anon_sym_LPAREN2, - ACTIONS(2686), 1, + ACTIONS(1840), 1, sym__unquoted_pattern, - STATE(2697), 1, + STATE(2681), 1, sym_comment, - ACTIONS(2676), 15, - ts_builtin_sym_end, + ACTIONS(910), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214159,19 +213707,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, - [84406] = 4, + [83930] = 8, ACTIONS(105), 1, anon_sym_POUND, - STATE(2698), 1, + ACTIONS(5212), 1, + anon_sym_DOT2, + STATE(2551), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2682), 1, sym_comment, - ACTIONS(1669), 3, + STATE(2687), 1, + sym_path, + STATE(3337), 1, + sym_cell_path, + ACTIONS(1904), 2, + ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1671), 14, + ACTIONS(1906), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214183,23 +213740,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, - [84434] = 7, + [83966] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5040), 1, + ACTIONS(5030), 1, anon_sym_DOT2, - STATE(472), 1, + STATE(466), 1, sym_path, - STATE(959), 1, + STATE(986), 1, sym_cell_path, - STATE(2335), 1, + STATE(2337), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2699), 1, + STATE(2683), 1, sym_comment, - ACTIONS(5427), 13, + ACTIONS(5362), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214213,23 +213767,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84468] = 8, - ACTIONS(105), 1, + [84000] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5203), 1, + ACTIONS(5474), 1, anon_sym_DOT2, - STATE(2568), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2660), 1, + STATE(2966), 1, sym_path, - STATE(2700), 1, + STATE(2684), 2, sym_comment, - STATE(3263), 1, - sym_cell_path, - ACTIONS(5405), 2, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1560), 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, + [84030] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2101), 1, + anon_sym_DASH2, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, + sym__unquoted_pattern_in_record, + ACTIONS(5477), 1, + anon_sym_DOT_DOT2, + STATE(2685), 1, + sym_comment, + ACTIONS(5479), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2099), 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, + [84066] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5481), 1, + anon_sym_DOT, + ACTIONS(5483), 1, + aux_sym__immediate_decimal_token5, + STATE(2686), 1, + sym_comment, + ACTIONS(1810), 3, ts_builtin_sym_end, sym__space, - ACTIONS(5403), 11, + anon_sym_LPAREN2, + ACTIONS(1812), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214241,16 +213845,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, - [84504] = 4, + sym__unquoted_pattern, + [84098] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2701), 1, + STATE(2687), 1, sym_comment, - ACTIONS(1872), 3, + ACTIONS(1586), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1874), 14, + ACTIONS(1584), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214262,17 +213868,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - [84532] = 4, + anon_sym_DOT2, + [84126] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1868), 1, + ACTIONS(2598), 1, sym__unquoted_pattern, - STATE(2702), 1, + STATE(2688), 1, sym_comment, - ACTIONS(1866), 16, + ACTIONS(2596), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -214289,23 +213894,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [84560] = 8, + [84154] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT2, - STATE(2568), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2660), 1, - sym_path, - STATE(2703), 1, + ACTIONS(5485), 1, + aux_sym__immediate_decimal_token5, + STATE(2689), 1, sym_comment, - STATE(3313), 1, - sym_cell_path, - ACTIONS(5421), 2, - ts_builtin_sym_end, + ACTIONS(1874), 2, sym__space, - ACTIONS(5419), 11, + anon_sym_LPAREN2, + ACTIONS(1876), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214317,22 +213916,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, - [84596] = 7, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym__unquoted_pattern, + [84184] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5364), 1, + ACTIONS(5212), 1, anon_sym_DOT2, - STATE(2687), 1, + STATE(2551), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2704), 1, - sym_comment, - STATE(2940), 1, + STATE(2687), 1, sym_path, - STATE(3342), 1, + STATE(2690), 1, + sym_comment, + STATE(3290), 1, sym_cell_path, - ACTIONS(1909), 13, + ACTIONS(5409), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(5407), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214344,44 +213947,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, - [84630] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2705), 1, - sym_comment, - ACTIONS(1915), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1913), 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, - [84658] = 6, + [84220] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5489), 1, + ACTIONS(5487), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5491), 1, + ACTIONS(5489), 1, aux_sym__immediate_decimal_token5, - STATE(2706), 1, + STATE(2691), 1, sym_comment, - ACTIONS(1774), 3, + ACTIONS(1802), 3, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - ACTIONS(1776), 12, + ACTIONS(1804), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214394,15 +213973,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, sym__unquoted_pattern, - [84690] = 4, + [84252] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2707), 1, + STATE(2692), 1, sym_comment, - ACTIONS(1935), 2, + ACTIONS(1902), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1933), 15, + ACTIONS(1900), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -214418,20 +213997,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [84718] = 7, - ACTIONS(105), 1, + [84280] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5480), 1, - anon_sym_EQ2, - ACTIONS(5495), 1, - sym__space, - ACTIONS(5497), 1, - sym_short_flag_identifier, - STATE(2708), 1, + ACTIONS(1830), 1, + anon_sym_LPAREN2, + STATE(2693), 1, sym_comment, - STATE(3116), 1, - sym__flag_equals_value, - ACTIONS(5493), 13, + STATE(5059), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5391), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214443,21 +214019,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, - [84752] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84310] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5501), 1, - sym__space, - ACTIONS(5503), 1, - anon_sym_DOT_DOT2, - STATE(2709), 1, + STATE(2694), 1, sym_comment, - ACTIONS(5505), 2, + ACTIONS(1667), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5499), 13, + ACTIONS(1669), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214471,14 +214045,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84784] = 4, + anon_sym_DOT_DOT2, + [84338] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1506), 1, + anon_sym_COMMA, + ACTIONS(5331), 1, + anon_sym_EQ, + ACTIONS(5333), 1, + sym__newline, + ACTIONS(5335), 1, + anon_sym_COLON, + ACTIONS(5493), 1, + anon_sym_DASH2, + STATE(2676), 1, + aux_sym_parameter_repeat1, + STATE(2695), 1, + sym_comment, + STATE(3646), 1, + aux_sym_parameter_repeat2, + STATE(4636), 1, + aux_sym__repeat_newline, + STATE(3539), 2, + sym_param_type, + sym_param_value, + ACTIONS(5491), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [84382] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1923), 1, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, sym__unquoted_pattern, - STATE(2710), 1, + STATE(2696), 1, sym_comment, - ACTIONS(1921), 16, + ACTIONS(2099), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -214494,23 +214103,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [84812] = 7, + [84412] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5364), 1, - anon_sym_DOT2, - STATE(2687), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2711), 1, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, + sym__unquoted_pattern, + STATE(2697), 1, sym_comment, - STATE(2940), 1, - sym_path, - STATE(3391), 1, - sym_cell_path, - ACTIONS(1917), 13, + ACTIONS(2640), 15, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214522,19 +214125,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, - [84846] = 6, - ACTIONS(105), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84442] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__space, - ACTIONS(5503), 1, - anon_sym_DOT_DOT2, - STATE(2712), 1, + ACTIONS(2636), 1, + anon_sym_LPAREN2, + ACTIONS(2638), 1, + sym__unquoted_pattern, + STATE(2698), 1, sym_comment, - ACTIONS(5505), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1616), 13, + ACTIONS(1262), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214546,21 +214150,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, - [84878] = 6, - ACTIONS(105), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84472] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2154), 1, - sym__space, - ACTIONS(5507), 1, - anon_sym_DOT_DOT2, - STATE(2713), 1, + ACTIONS(2636), 1, + anon_sym_LPAREN2, + ACTIONS(2638), 1, + sym__unquoted_pattern, + STATE(2699), 1, sym_comment, - ACTIONS(5509), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2156), 13, + ACTIONS(1254), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214572,21 +214175,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, - [84910] = 6, - ACTIONS(105), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84502] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2166), 1, - sym__space, - ACTIONS(5511), 1, - anon_sym_DOT_DOT2, - STATE(2714), 1, + ACTIONS(5435), 1, + anon_sym_DOT2, + STATE(2661), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2700), 1, sym_comment, - ACTIONS(5513), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2168), 13, + STATE(2966), 1, + sym_path, + STATE(3301), 1, + sym_cell_path, + ACTIONS(5362), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214598,21 +214205,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, - [84942] = 6, - ACTIONS(105), 1, + [84536] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2174), 1, - sym__space, - ACTIONS(5515), 1, - anon_sym_DOT_DOT2, - STATE(2715), 1, + ACTIONS(5435), 1, + anon_sym_DOT2, + STATE(2661), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2701), 1, sym_comment, - ACTIONS(5517), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2176), 13, + STATE(2966), 1, + sym_path, + STATE(3300), 1, + sym_cell_path, + ACTIONS(1934), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214624,21 +214232,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, - [84974] = 6, + [84570] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2186), 1, - sym__space, - ACTIONS(5519), 1, - anon_sym_DOT_DOT2, - STATE(2716), 1, + STATE(2702), 1, sym_comment, - ACTIONS(5521), 2, + ACTIONS(1598), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2188), 13, + ACTIONS(1596), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214652,51 +214255,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [85006] = 8, + anon_sym_DOT_DOT2, + [84598] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT2, - STATE(2568), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2660), 1, - sym_path, - STATE(2717), 1, - sym_comment, - STATE(3323), 1, - sym_cell_path, - ACTIONS(5425), 2, - ts_builtin_sym_end, + ACTIONS(2271), 1, sym__space, - ACTIONS(5423), 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, - [85042] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT2, - STATE(2568), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2660), 1, - sym_path, - STATE(2718), 1, + ACTIONS(5495), 1, + anon_sym_DOT_DOT2, + STATE(2703), 1, sym_comment, - STATE(3264), 1, - sym_cell_path, - ACTIONS(5409), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5407), 11, + ACTIONS(5497), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2273), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214708,22 +214280,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, - [85078] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + [84630] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5364), 1, - anon_sym_DOT2, - STATE(2687), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2719), 1, + ACTIONS(1947), 1, + sym__unquoted_pattern, + STATE(2704), 1, sym_comment, - STATE(2940), 1, - sym_path, - STATE(3403), 1, - sym_cell_path, - ACTIONS(1901), 13, + ACTIONS(1945), 16, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214735,44 +214302,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, - [85112] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [84658] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5203), 1, - anon_sym_DOT2, - STATE(2568), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2660), 1, - sym_path, - STATE(2720), 1, - sym_comment, - STATE(3265), 1, - sym_cell_path, - ACTIONS(5413), 2, - ts_builtin_sym_end, + ACTIONS(2146), 1, sym__space, - ACTIONS(5411), 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, - [85148] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2721), 1, + ACTIONS(5499), 1, + anon_sym_DOT_DOT2, + STATE(2705), 1, sym_comment, - ACTIONS(1913), 3, - sym__space, + ACTIONS(5501), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1915), 14, + ACTIONS(2148), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214786,105 +214332,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [85176] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2106), 1, - anon_sym_DASH2, - ACTIONS(2108), 1, - anon_sym_LPAREN2, - ACTIONS(5523), 1, - anon_sym_DOT_DOT2, - STATE(2722), 1, - sym_comment, - ACTIONS(5525), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2104), 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, - [85212] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2116), 1, - anon_sym_DASH2, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern_in_record, - ACTIONS(5527), 1, - anon_sym_DOT_DOT2, - STATE(2723), 1, - sym_comment, - ACTIONS(5529), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2114), 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, - [85248] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1509), 1, - anon_sym_COMMA, - ACTIONS(5332), 1, - anon_sym_EQ, - ACTIONS(5334), 1, - sym__newline, - ACTIONS(5336), 1, - anon_sym_COLON, - ACTIONS(5533), 1, - anon_sym_DASH2, - STATE(2695), 1, - aux_sym_parameter_repeat1, - STATE(2724), 1, - sym_comment, - STATE(3610), 1, - aux_sym_parameter_repeat2, - STATE(4411), 1, - aux_sym__repeat_newline, - STATE(3468), 2, - sym_param_type, - sym_param_value, - ACTIONS(5531), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [85292] = 4, + [84690] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2725), 1, + ACTIONS(5503), 1, + anon_sym_BANG, + STATE(2706), 1, sym_comment, - ACTIONS(1776), 3, + ACTIONS(1464), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1774), 14, + anon_sym_DOT2, + ACTIONS(1466), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -214896,44 +214355,21 @@ 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, - [85320] = 4, + [84720] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(2726), 1, - sym_comment, - ACTIONS(1933), 3, + ACTIONS(2251), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1935), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5505), 1, anon_sym_DOT_DOT2, - [85348] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2727), 1, + STATE(2707), 1, sym_comment, - ACTIONS(1567), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(5507), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1565), 13, + ACTIONS(2253), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214945,18 +214381,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [85376] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [84752] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2608), 1, - anon_sym_LPAREN2, - ACTIONS(2610), 1, + ACTIONS(1876), 1, sym__unquoted_pattern, - STATE(2728), 1, + STATE(2708), 1, sym_comment, - ACTIONS(2604), 15, + ACTIONS(1874), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -214972,94 +214406,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85406] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1509), 1, - anon_sym_COMMA, - ACTIONS(5332), 1, - anon_sym_EQ, - ACTIONS(5334), 1, - sym__newline, - ACTIONS(5336), 1, - anon_sym_COLON, - ACTIONS(5537), 1, - anon_sym_DASH2, - STATE(2729), 1, - sym_comment, - STATE(2774), 1, - aux_sym_parameter_repeat1, - STATE(3654), 1, - aux_sym_parameter_repeat2, - STATE(4411), 1, - aux_sym__repeat_newline, - STATE(3468), 2, - sym_param_type, - sym_param_value, - ACTIONS(5535), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [85450] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5541), 1, - anon_sym_AT2, - STATE(2730), 1, - sym_comment, - STATE(3244), 1, - sym_param_completer, - ACTIONS(5539), 14, - 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_RPAREN, - anon_sym_RBRACE, - [85479] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2731), 1, - sym_comment, - ACTIONS(1561), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1563), 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, - [85506] = 4, + anon_sym_LPAREN2, + [84780] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2732), 1, + STATE(2709), 1, sym_comment, - ACTIONS(1866), 2, + ACTIONS(1856), 3, sym__space, - anon_sym_LPAREN2, - ACTIONS(1868), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1858), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215073,42 +214430,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [85533] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2733), 1, - sym_comment, - ACTIONS(1565), 3, - anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1567), 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, - [85560] = 6, + [84808] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(5545), 1, + ACTIONS(2314), 1, sym__space, - STATE(2734), 1, + ACTIONS(5509), 1, + anon_sym_DOT_DOT2, + STATE(2710), 1, sym_comment, - STATE(5082), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5543), 13, + ACTIONS(5511), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2316), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215122,15 +214457,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [85591] = 4, + [84840] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(2735), 1, - sym_comment, - ACTIONS(1921), 2, + ACTIONS(5464), 1, + anon_sym_EQ2, + ACTIONS(5515), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1923), 14, + ACTIONS(5517), 1, + sym_short_flag_identifier, + STATE(2711), 1, + sym_comment, + STATE(3228), 1, + sym__flag_equals_value, + ACTIONS(5513), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215144,15 +214484,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [85618] = 4, + [84874] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2736), 1, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(2129), 1, + anon_sym_LPAREN2, + STATE(2712), 1, sym_comment, - STATE(2829), 1, - aux_sym__repeat_newline, - ACTIONS(5547), 15, + ACTIONS(2125), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215164,18 +214506,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85645] = 4, - ACTIONS(3), 1, + [84904] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2737), 1, + ACTIONS(5521), 1, + sym__space, + ACTIONS(5523), 1, + anon_sym_DOT_DOT2, + STATE(2713), 1, sym_comment, - STATE(2830), 1, - aux_sym__repeat_newline, - ACTIONS(5549), 15, + ACTIONS(5525), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5519), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215188,17 +214534,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, - [85672] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [84936] = 8, + ACTIONS(105), 1, anon_sym_POUND, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2738), 1, + ACTIONS(5212), 1, + anon_sym_DOT2, + STATE(2551), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2687), 1, + sym_path, + STATE(2714), 1, sym_comment, - ACTIONS(5551), 15, + STATE(3400), 1, + sym_cell_path, + ACTIONS(1894), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1896), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215210,19 +214563,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_and2, - anon_sym_xor2, - anon_sym_or2, - [85699] = 4, - ACTIONS(3), 1, + [84972] = 9, + ACTIONS(105), 1, anon_sym_POUND, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2739), 1, - sym_comment, - ACTIONS(5553), 15, + ACTIONS(5527), 1, sym__newline, + ACTIONS(5529), 1, + sym__space, + ACTIONS(5533), 1, + anon_sym_COLON2, + ACTIONS(5535), 1, + anon_sym_EQ2, + STATE(2715), 1, + sym_comment, + STATE(2975), 1, + aux_sym_attribute_repeat1, + STATE(4573), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(5531), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215233,22 +214591,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [85726] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [85010] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5555), 1, - sym__newline, - ACTIONS(5558), 1, - anon_sym_and2, - STATE(2740), 1, + ACTIONS(1736), 1, + sym__space, + ACTIONS(5523), 1, + anon_sym_DOT_DOT2, + STATE(2716), 1, sym_comment, - STATE(2831), 1, - aux_sym__repeat_newline, - ACTIONS(5547), 13, + ACTIONS(5525), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1610), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215260,20 +214617,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [85757] = 6, + anon_sym_RBRACE, + [85042] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5560), 1, + STATE(2717), 1, + sym_comment, + ACTIONS(1910), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1908), 15, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(5563), 1, - anon_sym_and2, - STATE(2741), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [85070] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2720), 1, + anon_sym_LPAREN2, + ACTIONS(2722), 1, + sym__unquoted_pattern, + STATE(2718), 1, sym_comment, - STATE(2832), 1, - aux_sym__repeat_newline, - ACTIONS(5549), 13, + ACTIONS(1736), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215284,19 +214664,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, - [85788] = 5, + [85100] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5565), 1, - anon_sym_and2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2742), 1, + STATE(2719), 1, sym_comment, - ACTIONS(5551), 14, + ACTIONS(1804), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1802), 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, + [85128] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2720), 1, + sym_comment, + ACTIONS(5537), 17, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215308,19 +214709,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_GT, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [85817] = 5, + anon_sym_AT2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [85154] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, - anon_sym_and2, - STATE(501), 1, + ACTIONS(1506), 1, + anon_sym_COMMA, + ACTIONS(5331), 1, + anon_sym_EQ, + ACTIONS(5333), 1, + sym__newline, + ACTIONS(5335), 1, + anon_sym_COLON, + ACTIONS(5541), 1, + anon_sym_DASH2, + STATE(2721), 1, + sym_comment, + STATE(2780), 1, + aux_sym_parameter_repeat1, + STATE(3617), 1, + aux_sym_parameter_repeat2, + STATE(4636), 1, aux_sym__repeat_newline, - STATE(2743), 1, + STATE(3539), 2, + sym_param_type, + sym_param_value, + ACTIONS(5539), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [85198] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5212), 1, + anon_sym_DOT2, + STATE(2551), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2687), 1, + sym_path, + STATE(2722), 1, sym_comment, - ACTIONS(5553), 14, + STATE(3291), 1, + sym_cell_path, + ACTIONS(5405), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5403), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215332,23 +214774,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, - [85846] = 7, - ACTIONS(3), 1, + [85234] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(5558), 1, - anon_sym_and2, - ACTIONS(5569), 1, - anon_sym_xor2, - STATE(2744), 1, + ACTIONS(5442), 1, + aux_sym__immediate_decimal_token5, + STATE(2723), 1, sym_comment, - STATE(2833), 1, - aux_sym__repeat_newline, - ACTIONS(5547), 12, + ACTIONS(1810), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1812), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215360,21 +214797,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [85879] = 7, - ACTIONS(3), 1, + anon_sym_RBRACE, + sym__unquoted_pattern, + [85264] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(5563), 1, - anon_sym_and2, - ACTIONS(5571), 1, - anon_sym_xor2, - STATE(2745), 1, + ACTIONS(5212), 1, + anon_sym_DOT2, + STATE(2551), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2687), 1, + sym_path, + STATE(2724), 1, sym_comment, - STATE(2834), 1, - aux_sym__repeat_newline, - ACTIONS(5549), 12, + STATE(3409), 1, + sym_cell_path, + ACTIONS(1926), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1928), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215385,20 +214827,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_or2, - [85912] = 6, - ACTIONS(3), 1, + [85300] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5565), 1, - anon_sym_and2, - ACTIONS(5573), 1, - anon_sym_xor2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2746), 1, + ACTIONS(5212), 1, + anon_sym_DOT2, + STATE(2551), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2687), 1, + sym_path, + STATE(2725), 1, sym_comment, - ACTIONS(5551), 13, + STATE(3395), 1, + sym_cell_path, + ACTIONS(1930), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1932), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215410,20 +214855,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [85336] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2726), 1, + sym_comment, + ACTIONS(1876), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1874), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_or2, - [85943] = 6, + 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, + [85364] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, - anon_sym_and2, - ACTIONS(5575), 1, - anon_sym_xor2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2747), 1, + STATE(2727), 1, + sym_comment, + ACTIONS(1947), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1945), 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, + [85392] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2728), 1, sym_comment, - ACTIONS(5553), 13, + ACTIONS(1538), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1536), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215435,17 +214925,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [85420] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5503), 1, + anon_sym_QMARK2, + STATE(2729), 1, + sym_comment, + ACTIONS(1464), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1466), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_or2, - [85974] = 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, + [85450] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2748), 1, + ACTIONS(5543), 1, + sym__newline, + ACTIONS(5548), 1, + anon_sym_and2, + STATE(2730), 1, sym_comment, - STATE(2837), 1, + STATE(2847), 1, aux_sym__repeat_newline, - ACTIONS(5577), 15, - sym__newline, + ACTIONS(5546), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215457,17 +214975,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, - [86001] = 4, + [85481] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2749), 1, + ACTIONS(5550), 1, + anon_sym_EQ, + ACTIONS(5554), 1, + anon_sym_COLON, + STATE(2731), 1, sym_comment, - STATE(2839), 1, + STATE(3286), 1, + sym_param_type, + STATE(4680), 1, aux_sym__repeat_newline, - ACTIONS(5579), 15, + ACTIONS(5552), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215480,21 +215003,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, - [86028] = 6, + [85514] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2966), 1, + sym__newline, ACTIONS(5558), 1, anon_sym_and2, - ACTIONS(5581), 1, - sym__newline, - STATE(2750), 1, + ACTIONS(5560), 1, + anon_sym_xor2, + STATE(2732), 1, sym_comment, - STATE(2844), 1, + STATE(2906), 1, aux_sym__repeat_newline, - ACTIONS(5577), 13, + ACTIONS(5556), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215506,20 +215028,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, - [86059] = 6, + [85547] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5563), 1, + ACTIONS(5548), 1, anon_sym_and2, - ACTIONS(5584), 1, + ACTIONS(5562), 1, sym__newline, - STATE(2751), 1, + STATE(2733), 1, sym_comment, - STATE(2848), 1, + STATE(2901), 1, aux_sym__repeat_newline, - ACTIONS(5579), 13, + ACTIONS(5565), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215533,46 +215054,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [86090] = 7, + [85578] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, ACTIONS(5558), 1, anon_sym_and2, - ACTIONS(5569), 1, - anon_sym_xor2, - STATE(2752), 1, - sym_comment, - STATE(2851), 1, - aux_sym__repeat_newline, - ACTIONS(5577), 12, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [86123] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(5567), 1, sym__newline, - ACTIONS(5563), 1, - anon_sym_and2, - ACTIONS(5571), 1, - anon_sym_xor2, - STATE(2753), 1, + STATE(2734), 1, sym_comment, - STATE(2852), 1, + STATE(2900), 1, aux_sym__repeat_newline, - ACTIONS(5579), 12, + ACTIONS(5556), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215584,15 +215077,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, - [86156] = 4, - ACTIONS(3), 1, + [85609] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2754), 1, + ACTIONS(5483), 1, + aux_sym__immediate_decimal_token5, + STATE(2735), 1, sym_comment, - STATE(2853), 1, - aux_sym__repeat_newline, - ACTIONS(5587), 15, + ACTIONS(1810), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1812), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215604,18 +215102,15 @@ static const uint16_t ts_small_parse_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, - [86183] = 4, + sym__unquoted_pattern, + [85638] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2755), 1, + STATE(2736), 1, sym_comment, - STATE(2854), 1, + STATE(2888), 1, aux_sym__repeat_newline, - ACTIONS(5589), 15, + ACTIONS(5556), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215631,14 +215126,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86210] = 4, + [85665] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(501), 1, + ACTIONS(5572), 1, + anon_sym_and2, + ACTIONS(5574), 1, + anon_sym_xor2, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2756), 1, + STATE(2737), 1, sym_comment, - ACTIONS(5591), 15, + ACTIONS(5570), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215651,17 +215150,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, - [86237] = 4, + [85696] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(501), 1, + ACTIONS(5578), 1, + anon_sym_and2, + ACTIONS(5580), 1, + anon_sym_xor2, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2757), 1, + STATE(2738), 1, sym_comment, - ACTIONS(5593), 15, + ACTIONS(5576), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215674,21 +215175,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, - [86264] = 6, + [85727] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5558), 1, - anon_sym_and2, - ACTIONS(5595), 1, + ACTIONS(2966), 1, sym__newline, - STATE(2758), 1, + ACTIONS(5548), 1, + anon_sym_and2, + ACTIONS(5584), 1, + anon_sym_xor2, + STATE(2739), 1, sym_comment, - STATE(2855), 1, + STATE(2885), 1, aux_sym__repeat_newline, - ACTIONS(5587), 13, + ACTIONS(5582), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215700,20 +215201,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [86295] = 6, + [85760] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5563), 1, - anon_sym_and2, - ACTIONS(5598), 1, + ACTIONS(2966), 1, sym__newline, - STATE(2759), 1, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5560), 1, + anon_sym_xor2, + STATE(2740), 1, sym_comment, - STATE(2856), 1, + STATE(2884), 1, aux_sym__repeat_newline, - ACTIONS(5589), 13, + ACTIONS(5586), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215725,18 +215227,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [86326] = 5, + [85793] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5565), 1, + ACTIONS(5572), 1, anon_sym_and2, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2760), 1, + STATE(2741), 1, sym_comment, - ACTIONS(5591), 14, + ACTIONS(5570), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215751,16 +215252,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [86355] = 5, + [85822] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(5578), 1, anon_sym_and2, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2761), 1, + STATE(2742), 1, sym_comment, - ACTIONS(5593), 14, + ACTIONS(5576), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215775,20 +215276,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [86384] = 7, + [85851] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(5558), 1, + ACTIONS(5548), 1, anon_sym_and2, - ACTIONS(5569), 1, - anon_sym_xor2, - STATE(2762), 1, + ACTIONS(5588), 1, + sym__newline, + STATE(2743), 1, sym_comment, - STATE(2857), 1, + STATE(2883), 1, aux_sym__repeat_newline, - ACTIONS(5587), 12, + ACTIONS(5582), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215800,21 +215299,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, - [86417] = 7, + [85882] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(5563), 1, + ACTIONS(5558), 1, anon_sym_and2, - ACTIONS(5571), 1, - anon_sym_xor2, - STATE(2763), 1, + ACTIONS(5591), 1, + sym__newline, + STATE(2744), 1, sym_comment, - STATE(2858), 1, + STATE(2880), 1, aux_sym__repeat_newline, - ACTIONS(5589), 12, + ACTIONS(5586), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215826,19 +215324,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, - [86450] = 6, + [85913] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5565), 1, - anon_sym_and2, - ACTIONS(5573), 1, - anon_sym_xor2, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2764), 1, + STATE(2745), 1, sym_comment, - ACTIONS(5591), 13, + ACTIONS(5570), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215851,19 +215346,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, - [86481] = 6, + [85940] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, - anon_sym_and2, - ACTIONS(5575), 1, - anon_sym_xor2, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2765), 1, + STATE(2746), 1, sym_comment, - ACTIONS(5593), 13, + ACTIONS(5576), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215876,15 +215369,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, - [86512] = 4, + [85967] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2766), 1, + STATE(2747), 1, sym_comment, - STATE(2861), 1, + STATE(2874), 1, aux_sym__repeat_newline, - ACTIONS(5601), 15, + ACTIONS(5582), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215900,14 +215395,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86539] = 4, + [85994] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2767), 1, + STATE(2748), 1, sym_comment, - STATE(2862), 1, + STATE(2871), 1, aux_sym__repeat_newline, - ACTIONS(5603), 15, + ACTIONS(5586), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215923,18 +215418,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86566] = 6, + [86021] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5558), 1, - anon_sym_and2, - ACTIONS(5605), 1, + ACTIONS(2966), 1, sym__newline, - STATE(2768), 1, + ACTIONS(5548), 1, + anon_sym_and2, + ACTIONS(5584), 1, + anon_sym_xor2, + STATE(2749), 1, sym_comment, - STATE(2865), 1, + STATE(2869), 1, aux_sym__repeat_newline, - ACTIONS(5601), 13, + ACTIONS(5594), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215946,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_xor2, anon_sym_or2, - [86597] = 6, + [86054] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5610), 1, - anon_sym_COLON, - STATE(2769), 1, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5560), 1, + anon_sym_xor2, + STATE(2750), 1, sym_comment, - STATE(3334), 1, - sym_param_type, - STATE(4924), 1, + STATE(2868), 1, aux_sym__repeat_newline, - ACTIONS(5608), 13, - sym__newline, + ACTIONS(5596), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215972,19 +215469,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, - [86628] = 6, + anon_sym_or2, + [86087] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5563), 1, + ACTIONS(5548), 1, anon_sym_and2, - ACTIONS(5612), 1, + ACTIONS(5598), 1, sym__newline, - STATE(2770), 1, + STATE(2751), 1, sym_comment, - STATE(2866), 1, + STATE(2864), 1, aux_sym__repeat_newline, - ACTIONS(5603), 13, + ACTIONS(5594), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215998,20 +215495,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [86659] = 7, + [86118] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, ACTIONS(5558), 1, anon_sym_and2, - ACTIONS(5569), 1, - anon_sym_xor2, - STATE(2771), 1, + ACTIONS(5601), 1, + sym__newline, + STATE(2752), 1, sym_comment, - STATE(2870), 1, + STATE(2862), 1, aux_sym__repeat_newline, - ACTIONS(5601), 12, + ACTIONS(5596), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216023,21 +215518,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [86692] = 7, + [86149] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(5563), 1, - anon_sym_and2, - ACTIONS(5571), 1, - anon_sym_xor2, - STATE(2772), 1, + STATE(2753), 1, sym_comment, - STATE(2871), 1, + STATE(2858), 1, aux_sym__repeat_newline, - ACTIONS(5603), 12, + ACTIONS(5594), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216049,16 +215540,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, - [86725] = 3, + [86176] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2773), 1, + STATE(2754), 1, sym_comment, - ACTIONS(5615), 16, - anon_sym_else, - anon_sym_catch, - anon_sym_finally, + STATE(2856), 1, + aux_sym__repeat_newline, + ACTIONS(5596), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216071,47 +215563,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, - [86750] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5619), 1, - anon_sym_EQ, - ACTIONS(5622), 1, - sym__newline, - ACTIONS(5625), 1, - anon_sym_COLON, - ACTIONS(5628), 1, - anon_sym_DASH2, - STATE(4411), 1, - aux_sym__repeat_newline, - STATE(2774), 2, - sym_comment, - aux_sym_parameter_repeat1, - STATE(3468), 2, - sym_param_type, - sym_param_value, - ACTIONS(5617), 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, - [86787] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86203] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5632), 1, + ACTIONS(5572), 1, anon_sym_and2, - ACTIONS(5634), 1, + ACTIONS(5574), 1, anon_sym_xor2, - ACTIONS(5636), 1, - anon_sym_or2, - STATE(2775), 1, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2755), 1, sym_comment, - ACTIONS(5630), 13, + ACTIONS(5604), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216124,19 +215590,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, - [86818] = 6, + anon_sym_or2, + [86234] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5640), 1, + ACTIONS(5578), 1, anon_sym_and2, - ACTIONS(5642), 1, + ACTIONS(5580), 1, anon_sym_xor2, - ACTIONS(5644), 1, - anon_sym_or2, - STATE(2776), 1, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2756), 1, sym_comment, - ACTIONS(5638), 13, + ACTIONS(5606), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216149,16 +215615,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, - [86849] = 3, + anon_sym_or2, + [86265] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2777), 1, - sym_comment, - ACTIONS(5646), 16, - anon_sym_EQ, - anon_sym_in, + ACTIONS(2966), 1, sym__newline, + ACTIONS(5548), 1, + anon_sym_and2, + ACTIONS(5584), 1, + anon_sym_xor2, + STATE(2757), 1, + sym_comment, + STATE(2853), 1, + aux_sym__repeat_newline, + ACTIONS(5546), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216169,16 +215640,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, - [86874] = 3, + anon_sym_or2, + [86298] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2778), 1, - sym_comment, - ACTIONS(5267), 16, + ACTIONS(2966), 1, sym__newline, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5560), 1, + anon_sym_xor2, + STATE(2758), 1, + sym_comment, + STATE(2850), 1, + aux_sym__repeat_newline, + ACTIONS(5608), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216190,16 +215667,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [86899] = 3, + [86331] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2779), 1, + ACTIONS(5572), 1, + anon_sym_and2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2759), 1, sym_comment, - ACTIONS(4784), 16, + ACTIONS(5604), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216212,16 +215690,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, - [86924] = 3, - ACTIONS(3), 1, + [86360] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2780), 1, + ACTIONS(1736), 1, + sym__space, + ACTIONS(2720), 1, + anon_sym_LPAREN2, + ACTIONS(2722), 1, + sym__unquoted_pattern, + STATE(2760), 1, sym_comment, - ACTIONS(5383), 16, + ACTIONS(1610), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216235,15 +215717,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, - [86949] = 3, + [86391] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2781), 1, + ACTIONS(5578), 1, + anon_sym_and2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2761), 1, sym_comment, - ACTIONS(5267), 16, + ACTIONS(5606), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216256,42 +215739,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, - [86974] = 6, + [86420] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5648), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5650), 1, - aux_sym__immediate_decimal_token5, - STATE(2782), 1, - sym_comment, - ACTIONS(1776), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1774), 11, - anon_sym_EQ, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5610), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [87005] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2783), 1, + STATE(2762), 1, sym_comment, - ACTIONS(5383), 16, - sym__newline, + STATE(2845), 1, + aux_sym__repeat_newline, + ACTIONS(5608), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216303,16 +215764,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, - [87030] = 3, + [86451] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2784), 1, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2763), 1, sym_comment, - ACTIONS(5267), 16, + ACTIONS(5604), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216325,16 +215786,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87055] = 3, + [86478] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2785), 1, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2764), 1, sym_comment, - ACTIONS(5383), 16, + ACTIONS(5606), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216347,16 +215809,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, - [87080] = 3, + [86505] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2786), 1, + ACTIONS(5615), 1, + anon_sym_AT2, + STATE(2765), 1, sym_comment, - ACTIONS(5652), 16, + STATE(3242), 1, + sym_param_completer, + ACTIONS(5613), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216370,15 +215836,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, - [87105] = 3, + [86534] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2787), 1, + STATE(2766), 1, sym_comment, - ACTIONS(5654), 16, + STATE(2911), 1, + aux_sym__repeat_newline, + ACTIONS(5546), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216391,18 +215856,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87130] = 4, - ACTIONS(3), 1, + [86561] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5632), 1, - anon_sym_and2, - STATE(2788), 1, + ACTIONS(5617), 1, + anon_sym_DOT_DOT2, + STATE(2767), 1, sym_comment, - ACTIONS(5652), 15, + ACTIONS(2251), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5619), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2253), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216414,18 +215884,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_xor2, - anon_sym_or2, - [87157] = 4, - ACTIONS(3), 1, + [86592] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5640), 1, - anon_sym_and2, - STATE(2789), 1, + ACTIONS(5621), 1, + anon_sym_DOT_DOT2, + STATE(2768), 1, sym_comment, - ACTIONS(5654), 15, + ACTIONS(2146), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5623), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2148), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216437,20 +215909,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_xor2, - anon_sym_or2, - [87184] = 5, + [86623] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5632), 1, - anon_sym_and2, - ACTIONS(5634), 1, - anon_sym_xor2, - STATE(2790), 1, + STATE(2769), 1, sym_comment, - ACTIONS(5652), 14, + STATE(2844), 1, + aux_sym__repeat_newline, + ACTIONS(5608), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216463,38 +215929,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_or2, - [87213] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5640), 1, anon_sym_and2, - ACTIONS(5642), 1, anon_sym_xor2, - STATE(2791), 1, - sym_comment, - ACTIONS(5654), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_or2, - [87242] = 3, + [86650] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2792), 1, + ACTIONS(5615), 1, + anon_sym_AT2, + STATE(2770), 1, sym_comment, - ACTIONS(5656), 16, + STATE(3241), 1, + sym_param_completer, + ACTIONS(5613), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216508,15 +215956,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [87267] = 3, + [86679] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2793), 1, + ACTIONS(5615), 1, + anon_sym_AT2, + STATE(2771), 1, sym_comment, - ACTIONS(5658), 16, + STATE(3234), 1, + sym_param_completer, + ACTIONS(5625), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216530,17 +215980,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, - [87292] = 4, - ACTIONS(3), 1, + [86708] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5632), 1, - anon_sym_and2, - STATE(2794), 1, + ACTIONS(5627), 1, + anon_sym_DOT_DOT2, + STATE(2772), 1, sym_comment, - ACTIONS(5656), 15, + ACTIONS(2271), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5629), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2273), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216552,18 +216005,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_xor2, - anon_sym_or2, - [87319] = 4, - ACTIONS(3), 1, + [86739] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5640), 1, - anon_sym_and2, - STATE(2795), 1, + STATE(2773), 1, sym_comment, - ACTIONS(5658), 15, + ACTIONS(2596), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2598), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216577,18 +216027,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_xor2, - anon_sym_or2, - [87346] = 5, - ACTIONS(3), 1, + sym__unquoted_pattern, + [86766] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5632), 1, - anon_sym_and2, - ACTIONS(5634), 1, - anon_sym_xor2, - STATE(2796), 1, + ACTIONS(5631), 1, + sym_long_flag_identifier, + ACTIONS(5633), 1, + anon_sym_EQ2, + STATE(2774), 1, sym_comment, - ACTIONS(5656), 14, + STATE(3266), 1, + sym__flag_equals_value, + ACTIONS(4321), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4319), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216600,19 +216054,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_or2, - [87375] = 5, - ACTIONS(3), 1, + [86799] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5640), 1, - anon_sym_and2, - ACTIONS(5642), 1, - anon_sym_xor2, - STATE(2797), 1, + STATE(2775), 1, sym_comment, - ACTIONS(5658), 14, + ACTIONS(1908), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1910), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216624,24 +216076,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_or2, - [87404] = 7, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [86826] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5660), 1, - anon_sym_EQ, - ACTIONS(5662), 1, - anon_sym_COLON, - STATE(2798), 1, + ACTIONS(1262), 1, + sym__space, + ACTIONS(2636), 1, + anon_sym_LPAREN2, + ACTIONS(2638), 1, + sym__unquoted_pattern, + STATE(2776), 1, sym_comment, - STATE(3402), 1, - sym_param_type, - STATE(4901), 1, - aux_sym__repeat_newline, - ACTIONS(5608), 12, - ts_builtin_sym_end, + ACTIONS(1246), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216653,18 +216100,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, - [87437] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [86857] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1788), 1, + ACTIONS(1254), 1, sym__space, - ACTIONS(5186), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5664), 1, - anon_sym_DOT, - STATE(2799), 1, + ACTIONS(2636), 1, + anon_sym_LPAREN2, + ACTIONS(2638), 1, + sym__unquoted_pattern, + STATE(2777), 1, sym_comment, - ACTIONS(1790), 13, + ACTIONS(1238), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216678,15 +216127,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [87468] = 3, - ACTIONS(3), 1, + [86888] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2800), 1, + STATE(2778), 1, sym_comment, - ACTIONS(5666), 16, - anon_sym_else, - anon_sym_catch, - anon_sym_finally, + ACTIONS(1598), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1596), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216698,22 +216149,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, - [87493] = 6, + anon_sym_DOT_DOT2, + [86915] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5668), 1, + ACTIONS(5635), 1, anon_sym_DOT, - ACTIONS(5670), 1, + ACTIONS(5637), 1, aux_sym__immediate_decimal_token5, - STATE(2801), 1, + STATE(2779), 1, sym_comment, - ACTIONS(1790), 3, + ACTIONS(1812), 3, sym_identifier, anon_sym_DASH2, sym__unquoted_pattern_in_record, - ACTIONS(1788), 11, + ACTIONS(1810), 11, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -216725,92 +216175,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [87524] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5672), 1, - sym_long_flag_identifier, - ACTIONS(5674), 1, - anon_sym_EQ2, - STATE(2802), 1, - sym_comment, - STATE(3418), 1, - sym__flag_equals_value, - ACTIONS(4355), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4353), 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, - [87557] = 7, + [86946] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5565), 1, - anon_sym_and2, - ACTIONS(5573), 1, - anon_sym_xor2, - ACTIONS(5678), 1, - anon_sym_or2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2803), 1, - sym_comment, - ACTIONS(5676), 12, + ACTIONS(5641), 1, + anon_sym_EQ, + ACTIONS(5644), 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, - [87590] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5567), 1, - anon_sym_and2, - ACTIONS(5575), 1, - anon_sym_xor2, - ACTIONS(5682), 1, - anon_sym_or2, - STATE(501), 1, + ACTIONS(5647), 1, + anon_sym_COLON, + ACTIONS(5650), 1, + anon_sym_DASH2, + STATE(4636), 1, aux_sym__repeat_newline, - STATE(2804), 1, + STATE(2780), 2, sym_comment, - ACTIONS(5680), 12, - sym__newline, - anon_sym_SEMI, + aux_sym_parameter_repeat1, + STATE(3539), 2, + sym_param_type, + sym_param_value, + ACTIONS(5639), 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, - [87623] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [86983] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2738), 1, + STATE(2763), 1, aux_sym__repeat_newline, - STATE(2805), 1, + STATE(2781), 1, sym_comment, - ACTIONS(5684), 15, + ACTIONS(5652), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216826,15 +216226,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87650] = 4, + [87010] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2739), 1, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(5548), 1, + anon_sym_and2, + ACTIONS(5584), 1, + anon_sym_xor2, + STATE(2737), 1, aux_sym__repeat_newline, - STATE(2806), 1, + STATE(2782), 1, sym_comment, - ACTIONS(5686), 15, - sym__newline, + ACTIONS(5654), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216846,21 +216251,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, - [87677] = 6, + [87043] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2966), 1, + sym__newline, ACTIONS(5558), 1, anon_sym_and2, - ACTIONS(5688), 1, - sym__newline, - STATE(2742), 1, + ACTIONS(5560), 1, + anon_sym_xor2, + STATE(2738), 1, aux_sym__repeat_newline, - STATE(2807), 1, + STATE(2783), 1, sym_comment, - ACTIONS(5684), 13, + ACTIONS(5656), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216872,20 +216277,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, - [87708] = 6, + [87076] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5563), 1, + ACTIONS(5548), 1, anon_sym_and2, - ACTIONS(5691), 1, + ACTIONS(5658), 1, sym__newline, - STATE(2743), 1, + STATE(2741), 1, aux_sym__repeat_newline, - STATE(2808), 1, + STATE(2784), 1, sym_comment, - ACTIONS(5686), 13, + ACTIONS(5654), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216899,46 +216303,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [87739] = 7, + [87107] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, ACTIONS(5558), 1, anon_sym_and2, - ACTIONS(5569), 1, - anon_sym_xor2, - STATE(2746), 1, - aux_sym__repeat_newline, - STATE(2809), 1, - sym_comment, - ACTIONS(5684), 12, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [87772] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(5661), 1, sym__newline, - ACTIONS(5563), 1, - anon_sym_and2, - ACTIONS(5571), 1, - anon_sym_xor2, - STATE(2747), 1, + STATE(2742), 1, aux_sym__repeat_newline, - STATE(2810), 1, + STATE(2785), 1, sym_comment, - ACTIONS(5686), 12, + ACTIONS(5656), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216950,15 +216326,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, - [87805] = 4, + [87138] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2756), 1, + STATE(2745), 1, aux_sym__repeat_newline, - STATE(2811), 1, + STATE(2786), 1, sym_comment, - ACTIONS(5694), 15, + ACTIONS(5654), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216974,14 +216351,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87832] = 4, + [87165] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2757), 1, + STATE(2746), 1, aux_sym__repeat_newline, - STATE(2812), 1, + STATE(2787), 1, sym_comment, - ACTIONS(5696), 15, + ACTIONS(5656), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216997,43 +216374,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87859] = 6, + [87192] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5558), 1, - anon_sym_and2, - ACTIONS(5698), 1, + ACTIONS(2966), 1, sym__newline, - STATE(2760), 1, - aux_sym__repeat_newline, - STATE(2813), 1, - sym_comment, - ACTIONS(5694), 13, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [87890] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5563), 1, + ACTIONS(5548), 1, anon_sym_and2, - ACTIONS(5701), 1, - sym__newline, - STATE(2761), 1, + ACTIONS(5584), 1, + anon_sym_xor2, + STATE(2755), 1, aux_sym__repeat_newline, - STATE(2814), 1, + STATE(2788), 1, sym_comment, - ACTIONS(5696), 13, + ACTIONS(5652), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217045,22 +216399,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [87921] = 7, + [87225] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, ACTIONS(5558), 1, anon_sym_and2, - ACTIONS(5569), 1, + ACTIONS(5560), 1, anon_sym_xor2, - STATE(2764), 1, + STATE(2756), 1, aux_sym__repeat_newline, - STATE(2815), 1, + STATE(2789), 1, sym_comment, - ACTIONS(5694), 12, + ACTIONS(5664), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217073,20 +216426,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [87954] = 7, + [87258] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(5563), 1, + ACTIONS(5548), 1, anon_sym_and2, - ACTIONS(5571), 1, - anon_sym_xor2, - STATE(2765), 1, + ACTIONS(5666), 1, + sym__newline, + STATE(2759), 1, aux_sym__repeat_newline, - STATE(2816), 1, + STATE(2790), 1, sym_comment, - ACTIONS(5696), 12, + ACTIONS(5652), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217098,23 +216449,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, - [87987] = 8, + [87289] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(5558), 1, + ACTIONS(5671), 1, anon_sym_and2, - ACTIONS(5569), 1, + ACTIONS(5673), 1, anon_sym_xor2, - ACTIONS(5706), 1, - anon_sym_or2, - STATE(2803), 1, - aux_sym__repeat_newline, - STATE(2817), 1, + STATE(2791), 1, sym_comment, - ACTIONS(5704), 11, + ACTIONS(5669), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217126,22 +216473,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [88022] = 8, + anon_sym_RBRACE, + anon_sym_or2, + [87318] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(5563), 1, + ACTIONS(5558), 1, anon_sym_and2, - ACTIONS(5571), 1, - anon_sym_xor2, - ACTIONS(5710), 1, - anon_sym_or2, - STATE(2804), 1, + ACTIONS(5675), 1, + sym__newline, + STATE(2761), 1, aux_sym__repeat_newline, - STATE(2818), 1, + STATE(2792), 1, sym_comment, - ACTIONS(5708), 11, + ACTIONS(5664), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217153,20 +216498,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [88057] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5565), 1, - anon_sym_and2, - ACTIONS(5573), 1, anon_sym_xor2, - ACTIONS(5678), 1, anon_sym_or2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2819), 1, + [87349] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2793), 1, sym_comment, - ACTIONS(5712), 12, + STATE(2889), 1, + aux_sym__repeat_newline, + ACTIONS(5565), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217179,20 +216520,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [88090] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [87376] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5714), 1, + ACTIONS(5678), 1, anon_sym_EQ, - ACTIONS(5716), 1, + ACTIONS(5680), 1, anon_sym_COLON, - STATE(2820), 1, + STATE(2794), 1, sym_comment, - STATE(3345), 1, + STATE(3287), 1, sym_param_type, - STATE(4930), 1, + STATE(4830), 1, aux_sym__repeat_newline, - ACTIONS(5608), 12, + ACTIONS(5552), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217204,22 +216549,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, - [88123] = 7, + [87409] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(5548), 1, anon_sym_and2, - ACTIONS(5575), 1, + ACTIONS(5584), 1, anon_sym_xor2, - ACTIONS(5682), 1, - anon_sym_or2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2821), 1, + STATE(2795), 1, sym_comment, - ACTIONS(5718), 12, - sym__newline, + STATE(2908), 1, + aux_sym__repeat_newline, + ACTIONS(5565), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217231,190 +216574,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [88156] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5674), 1, - anon_sym_EQ2, - ACTIONS(5720), 1, - sym_short_flag_identifier, - STATE(2822), 1, - sym_comment, - STATE(3332), 1, - sym__flag_equals_value, - ACTIONS(5495), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5493), 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, - [88189] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5722), 1, - anon_sym_DOT_DOT2, - STATE(2823), 1, - sym_comment, - ACTIONS(1738), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5724), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1616), 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, - [88220] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5722), 1, - anon_sym_DOT_DOT2, - STATE(2824), 1, - sym_comment, - ACTIONS(5501), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5724), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5499), 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, - [88251] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5726), 1, - anon_sym_DOT_DOT2, - STATE(2825), 1, - sym_comment, - ACTIONS(2154), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5728), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2156), 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, - [88282] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5730), 1, - anon_sym_DOT_DOT2, - STATE(2826), 1, - sym_comment, - ACTIONS(2166), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5732), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2168), 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, - [88313] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5734), 1, - anon_sym_DOT_DOT2, - STATE(2827), 1, - sym_comment, - ACTIONS(2174), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5736), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2176), 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, - [88344] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5738), 1, - anon_sym_DOT_DOT2, - STATE(2828), 1, - sym_comment, - ACTIONS(2186), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5740), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2188), 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, - [88375] = 4, + anon_sym_or2, + [87442] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(501), 1, + STATE(2764), 1, aux_sym__repeat_newline, - STATE(2829), 1, + STATE(2796), 1, sym_comment, - ACTIONS(5742), 15, + ACTIONS(5664), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217430,14 +216598,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [88402] = 4, + [87469] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2830), 1, + ACTIONS(5684), 1, + anon_sym_and2, + ACTIONS(5686), 1, + anon_sym_xor2, + STATE(2797), 1, sym_comment, - ACTIONS(5744), 15, + ACTIONS(5682), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217450,19 +216620,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_RBRACE, anon_sym_or2, - [88429] = 5, + [87498] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5565), 1, + ACTIONS(5572), 1, anon_sym_and2, - STATE(501), 1, + ACTIONS(5574), 1, + anon_sym_xor2, + ACTIONS(5690), 1, + anon_sym_or2, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2831), 1, + STATE(2798), 1, sym_comment, - ACTIONS(5742), 14, + ACTIONS(5688), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217475,18 +216648,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, - [88458] = 5, + [87531] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(5578), 1, anon_sym_and2, - STATE(501), 1, + ACTIONS(5580), 1, + anon_sym_xor2, + ACTIONS(5694), 1, + anon_sym_or2, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2832), 1, + STATE(2799), 1, sym_comment, - ACTIONS(5744), 14, + ACTIONS(5692), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217499,20 +216674,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [88487] = 6, + [87564] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5565), 1, + ACTIONS(5671), 1, anon_sym_and2, - ACTIONS(5573), 1, - anon_sym_xor2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2833), 1, + STATE(2800), 1, sym_comment, - ACTIONS(5742), 13, + ACTIONS(5669), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217525,19 +216694,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, - [88518] = 6, - ACTIONS(3), 1, + [87591] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5567), 1, - anon_sym_and2, - ACTIONS(5575), 1, - anon_sym_xor2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2834), 1, + ACTIONS(1830), 1, + anon_sym_LPAREN2, + ACTIONS(2287), 1, + sym__space, + STATE(2801), 1, sym_comment, - ACTIONS(5744), 13, + STATE(5375), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2289), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217550,15 +216721,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [88549] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [87622] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2835), 1, + ACTIONS(1830), 1, + anon_sym_LPAREN2, + ACTIONS(2265), 1, + sym__space, + STATE(2802), 1, sym_comment, - STATE(2886), 1, - aux_sym__repeat_newline, - ACTIONS(5746), 15, + STATE(5375), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2267), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217571,18 +216746,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, - [88576] = 4, + anon_sym_RBRACE, + [87653] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, - sym__unquoted_pattern, - STATE(2836), 1, + ACTIONS(5684), 1, + anon_sym_and2, + STATE(2803), 1, sym_comment, - ACTIONS(914), 15, - ts_builtin_sym_end, + ACTIONS(5682), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217594,17 +216766,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_RPAREN, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [88603] = 4, + [87680] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2837), 1, + STATE(2804), 1, sym_comment, - ACTIONS(5748), 15, + ACTIONS(5669), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217617,24 +216788,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, - [88630] = 7, + [87705] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5245), 1, - anon_sym_DOT2, - STATE(737), 1, - sym_path, - STATE(1294), 1, - sym_cell_path, - STATE(2434), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2838), 1, + STATE(2805), 1, sym_comment, - ACTIONS(5427), 12, - ts_builtin_sym_end, + ACTIONS(5682), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217646,14 +216809,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, - [88663] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [87730] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2839), 1, + ACTIONS(5671), 1, + anon_sym_and2, + ACTIONS(5673), 1, + anon_sym_xor2, + STATE(2806), 1, sym_comment, - ACTIONS(5750), 15, + ACTIONS(5696), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217666,21 +216836,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_RBRACE, anon_sym_or2, - [88690] = 6, + [87759] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5558), 1, + ACTIONS(5684), 1, anon_sym_and2, - ACTIONS(5752), 1, - sym__newline, - STATE(2840), 1, + ACTIONS(5686), 1, + anon_sym_xor2, + STATE(2807), 1, sym_comment, - STATE(2888), 1, - aux_sym__repeat_newline, - ACTIONS(5746), 13, + ACTIONS(5698), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217692,20 +216860,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, + anon_sym_RBRACE, anon_sym_or2, - [88721] = 6, + [87788] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5563), 1, + ACTIONS(5578), 1, anon_sym_and2, - ACTIONS(5755), 1, - sym__newline, - STATE(2841), 1, - sym_comment, - STATE(2889), 1, + ACTIONS(5580), 1, + anon_sym_xor2, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(5758), 13, + STATE(2808), 1, + sym_comment, + ACTIONS(5700), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217717,20 +216886,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [88752] = 6, - ACTIONS(105), 1, + [87819] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(2369), 1, - sym__space, - STATE(2842), 1, + ACTIONS(1906), 1, + anon_sym_DASH2, + ACTIONS(5285), 1, + anon_sym_DOT2, + STATE(2594), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2809), 1, sym_comment, - STATE(5283), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2371), 13, + STATE(2899), 1, + sym_path, + STATE(2935), 1, + sym_cell_path, + ACTIONS(1904), 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, + [87854] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5671), 1, + anon_sym_and2, + STATE(2810), 1, + sym_comment, + ACTIONS(5696), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217744,18 +216935,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88783] = 6, + anon_sym_xor2, + anon_sym_or2, + [87881] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(2142), 1, - sym__space, - STATE(2843), 1, + ACTIONS(5702), 1, + anon_sym_DOT_DOT2, + STATE(2811), 1, sym_comment, - STATE(5283), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2144), 13, + ACTIONS(2314), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5704), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2316), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217767,18 +216962,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, - [88814] = 5, + [87912] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5565), 1, + ACTIONS(5684), 1, anon_sym_and2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2844), 1, + STATE(2812), 1, sym_comment, - ACTIONS(5748), 14, + ACTIONS(5698), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217791,20 +216982,102 @@ static const 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, - [88843] = 6, + [87939] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1936), 1, + anon_sym_DASH2, + ACTIONS(5285), 1, + anon_sym_DOT2, + STATE(2594), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2813), 1, + sym_comment, + STATE(2899), 1, + sym_path, + STATE(2951), 1, + sym_cell_path, + ACTIONS(1934), 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, + [87974] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1928), 1, + anon_sym_DASH2, + ACTIONS(5285), 1, + anon_sym_DOT2, + STATE(2594), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2814), 1, + sym_comment, + STATE(2899), 1, + sym_path, + STATE(3184), 1, + sym_cell_path, + ACTIONS(1926), 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, + [88009] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1896), 1, + anon_sym_DASH2, + ACTIONS(5285), 1, + anon_sym_DOT2, + STATE(2594), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2815), 1, + sym_comment, + STATE(2899), 1, + sym_path, + STATE(3031), 1, + sym_cell_path, + ACTIONS(1894), 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, + [88044] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(1830), 1, anon_sym_LPAREN2, - ACTIONS(2269), 1, + ACTIONS(2283), 1, sym__space, - STATE(2845), 1, + STATE(2816), 1, sym_comment, - STATE(5283), 1, + STATE(5375), 1, sym__expr_parenthesized_immediate, - ACTIONS(2271), 13, + ACTIONS(2285), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217818,18 +217091,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88874] = 6, + [88075] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(1830), 1, anon_sym_LPAREN2, - ACTIONS(2281), 1, + ACTIONS(2298), 1, sym__space, - STATE(2846), 1, + STATE(2817), 1, sym_comment, - STATE(5283), 1, + STATE(5375), 1, sym__expr_parenthesized_immediate, - ACTIONS(2283), 13, + ACTIONS(2300), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217843,22 +217116,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88905] = 8, + [88106] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5257), 1, + ACTIONS(1932), 1, + anon_sym_DASH2, + ACTIONS(5285), 1, anon_sym_DOT2, - ACTIONS(5760), 1, + STATE(2594), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2818), 1, + sym_comment, + STATE(2899), 1, + sym_path, + STATE(3164), 1, + sym_cell_path, + ACTIONS(1930), 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, + [88141] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1915), 1, anon_sym_DASH2, - STATE(2596), 1, + ACTIONS(5285), 1, + anon_sym_DOT2, + STATE(2594), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2847), 1, + STATE(2819), 1, sym_comment, - STATE(2912), 1, + STATE(2899), 1, sym_path, - STATE(3005), 1, + STATE(3014), 1, sym_cell_path, - ACTIONS(5427), 11, + ACTIONS(1912), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -217870,16 +217170,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [88940] = 5, + [88176] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, - anon_sym_and2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2848), 1, + STATE(2820), 1, sym_comment, - ACTIONS(5750), 14, + ACTIONS(5696), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217892,22 +217188,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [88969] = 7, + [88201] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(5558), 1, - anon_sym_and2, - ACTIONS(5569), 1, - anon_sym_xor2, - STATE(2849), 1, + ACTIONS(5706), 1, + anon_sym_BANG, + STATE(2821), 1, sym_comment, - STATE(2891), 1, - aux_sym__repeat_newline, - ACTIONS(5746), 12, + ACTIONS(1466), 15, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217918,22 +217213,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [89002] = 7, + anon_sym_COLON, + anon_sym_DOT2, + [88228] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(5285), 1, + anon_sym_DOT2, + ACTIONS(5708), 1, + anon_sym_DASH2, + STATE(2594), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2822), 1, + sym_comment, + STATE(2899), 1, + sym_path, + STATE(3014), 1, + sym_cell_path, + ACTIONS(5362), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(5563), 1, - anon_sym_and2, - ACTIONS(5571), 1, - anon_sym_xor2, - STATE(2850), 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, + [88263] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5615), 1, + anon_sym_AT2, + STATE(2823), 1, sym_comment, - STATE(2892), 1, - aux_sym__repeat_newline, - ACTIONS(5758), 12, + STATE(3246), 1, + sym_param_completer, + ACTIONS(5710), 14, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217945,19 +217265,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [89035] = 6, + anon_sym_RBRACE, + [88292] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5565), 1, - anon_sym_and2, - ACTIONS(5573), 1, - anon_sym_xor2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2851), 1, + STATE(2824), 1, sym_comment, - ACTIONS(5748), 13, + ACTIONS(5698), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217970,19 +217284,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [89066] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5567), 1, + anon_sym_RBRACE, anon_sym_and2, - ACTIONS(5575), 1, anon_sym_xor2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2852), 1, + anon_sym_or2, + [88317] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2825), 1, sym_comment, - ACTIONS(5750), 13, + ACTIONS(1900), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1902), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217994,16 +217310,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, - [89097] = 4, + anon_sym_DOT_DOT2, + [88344] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2853), 1, + STATE(2826), 1, sym_comment, - ACTIONS(5762), 15, + ACTIONS(5391), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218016,17 +217329,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, - [89124] = 4, + [88369] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2854), 1, + STATE(2827), 1, sym_comment, - ACTIONS(5764), 15, + ACTIONS(5344), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218039,19 +217351,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, - [89151] = 5, + [88394] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5565), 1, - anon_sym_and2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2855), 1, + STATE(2828), 1, sym_comment, - ACTIONS(5762), 14, + ACTIONS(5391), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218064,18 +217373,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, - [89180] = 5, - ACTIONS(3), 1, + [88419] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5567), 1, - anon_sym_and2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2856), 1, + ACTIONS(5712), 1, + anon_sym_DOT_DOT2, + STATE(2829), 1, sym_comment, - ACTIONS(5764), 14, + ACTIONS(1736), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5714), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1610), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218087,21 +217402,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [89209] = 6, + [88450] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5565), 1, - anon_sym_and2, - ACTIONS(5573), 1, - anon_sym_xor2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2857), 1, + STATE(2830), 1, sym_comment, - ACTIONS(5762), 13, + ACTIONS(5344), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218114,19 +217420,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, - [89240] = 6, + [88475] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, - anon_sym_and2, - ACTIONS(5575), 1, - anon_sym_xor2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2858), 1, + STATE(2831), 1, sym_comment, - ACTIONS(5764), 13, + ACTIONS(5391), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218139,15 +217442,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, - [89271] = 4, + [88500] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2859), 1, + STATE(2832), 1, sym_comment, - STATE(2893), 1, - aux_sym__repeat_newline, - ACTIONS(5766), 15, + ACTIONS(5344), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218160,17 +217464,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, - [89298] = 4, - ACTIONS(3), 1, + [88525] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2860), 1, + ACTIONS(2712), 1, + sym__space, + ACTIONS(2716), 1, + anon_sym_LPAREN2, + ACTIONS(2718), 1, + sym__unquoted_pattern, + STATE(2833), 1, sym_comment, - STATE(2894), 1, - aux_sym__repeat_newline, - ACTIONS(5768), 15, + ACTIONS(2714), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218183,17 +217492,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, - [89325] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [88556] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2861), 1, + ACTIONS(1697), 1, + sym__unquoted_pattern, + ACTIONS(2706), 1, + sym__space, + ACTIONS(2710), 1, + anon_sym_LPAREN2, + STATE(2834), 1, sym_comment, - ACTIONS(5770), 15, + ACTIONS(2708), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218206,17 +217517,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, - [89352] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [88587] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2862), 1, + ACTIONS(4432), 1, + sym__space, + ACTIONS(5464), 1, + anon_sym_EQ2, + STATE(2835), 1, sym_comment, - ACTIONS(5772), 15, + STATE(3190), 1, + sym__flag_equals_value, + ACTIONS(4430), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218229,21 +217542,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, - [89379] = 6, + anon_sym_RBRACE, + [88618] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5558), 1, - anon_sym_and2, - ACTIONS(5774), 1, - sym__newline, - STATE(2863), 1, + STATE(2836), 1, sym_comment, - STATE(2895), 1, - aux_sym__repeat_newline, - ACTIONS(5766), 13, + ACTIONS(5716), 16, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218255,20 +217564,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, - [89410] = 6, + anon_sym_RBRACE, + [88643] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5563), 1, - anon_sym_and2, - ACTIONS(5777), 1, - sym__newline, - STATE(2864), 1, + ACTIONS(5718), 1, + anon_sym_COLON, + STATE(2837), 1, sym_comment, - STATE(2896), 1, + STATE(3306), 1, + sym_param_type, + STATE(4706), 1, aux_sym__repeat_newline, - ACTIONS(5768), 13, + ACTIONS(5552), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218280,18 +217589,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, - [89441] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [88674] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5565), 1, - anon_sym_and2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2865), 1, + ACTIONS(5464), 1, + anon_sym_EQ2, + ACTIONS(5722), 1, + sym__space, + STATE(2838), 1, sym_comment, - ACTIONS(5770), 14, + STATE(3240), 1, + sym__flag_equals_value, + ACTIONS(5720), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218304,18 +217614,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, - [89470] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [88705] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5567), 1, - anon_sym_and2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2866), 1, + ACTIONS(1830), 1, + anon_sym_LPAREN2, + ACTIONS(5726), 1, + sym__space, + STATE(2839), 1, sym_comment, - ACTIONS(5772), 14, + STATE(4947), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5724), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218328,22 +217639,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [89499] = 7, + anon_sym_RBRACE, + [88736] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(5558), 1, - anon_sym_and2, - ACTIONS(5569), 1, - anon_sym_xor2, - STATE(2867), 1, + STATE(2840), 1, sym_comment, - STATE(2897), 1, - aux_sym__repeat_newline, - ACTIONS(5766), 12, + ACTIONS(4788), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218355,15 +217658,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, - [89532] = 3, + [88761] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2868), 1, + STATE(2841), 1, sym_comment, - ACTIONS(5780), 16, - anon_sym_EQ, - anon_sym_in, + ACTIONS(5728), 16, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218375,23 +217682,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, - [89557] = 7, - ACTIONS(3), 1, + [88786] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(5563), 1, - anon_sym_and2, - ACTIONS(5571), 1, - anon_sym_xor2, - STATE(2869), 1, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(2125), 1, + sym__space, + ACTIONS(2129), 1, + anon_sym_LPAREN2, + STATE(2842), 1, sym_comment, - STATE(2898), 1, - aux_sym__repeat_newline, - ACTIONS(5768), 12, + ACTIONS(2127), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218403,19 +217708,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_or2, - [89590] = 6, + anon_sym_RBRACE, + [88817] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5565), 1, + ACTIONS(1872), 1, + sym__unquoted_pattern, + STATE(2843), 1, + sym_comment, + ACTIONS(910), 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, - ACTIONS(5573), 1, anon_sym_xor2, - STATE(501), 1, + anon_sym_or2, + [88844] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2870), 1, + STATE(2844), 1, sym_comment, - ACTIONS(5770), 13, + ACTIONS(5730), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218428,19 +217752,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, - [89621] = 6, + [88871] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(5578), 1, anon_sym_and2, - ACTIONS(5575), 1, - anon_sym_xor2, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2871), 1, + STATE(2845), 1, sym_comment, - ACTIONS(5772), 13, + ACTIONS(5730), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218453,180 +217777,143 @@ static 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, - [89652] = 8, + [88900] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1883), 1, - anon_sym_DASH2, - ACTIONS(5257), 1, - anon_sym_DOT2, - STATE(2596), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2872), 1, + ACTIONS(5671), 1, + anon_sym_and2, + ACTIONS(5673), 1, + anon_sym_xor2, + ACTIONS(5734), 1, + anon_sym_or2, + STATE(2846), 1, sym_comment, - STATE(2912), 1, - sym_path, - STATE(3005), 1, - sym_cell_path, - ACTIONS(1880), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5732), 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, - [89687] = 8, + anon_sym_RBRACE, + [88931] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1907), 1, - anon_sym_DASH2, - ACTIONS(5257), 1, - anon_sym_DOT2, - STATE(2596), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2873), 1, + ACTIONS(5572), 1, + anon_sym_and2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2847), 1, sym_comment, - STATE(2912), 1, - sym_path, - STATE(3205), 1, - sym_cell_path, - ACTIONS(1905), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5736), 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, - [89722] = 8, + anon_sym_xor2, + anon_sym_or2, + [88960] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1911), 1, - anon_sym_DASH2, - ACTIONS(5257), 1, - anon_sym_DOT2, - STATE(2596), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2874), 1, + ACTIONS(5684), 1, + anon_sym_and2, + ACTIONS(5686), 1, + anon_sym_xor2, + ACTIONS(5740), 1, + anon_sym_or2, + STATE(2848), 1, sym_comment, - STATE(2912), 1, - sym_path, - STATE(3006), 1, - sym_cell_path, - ACTIONS(1909), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5738), 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, - [89757] = 8, + anon_sym_RBRACE, + [88991] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1927), 1, - anon_sym_DASH2, - ACTIONS(5257), 1, - anon_sym_DOT2, - STATE(2596), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2875), 1, + STATE(2849), 1, sym_comment, - STATE(2912), 1, - sym_path, - STATE(3210), 1, - sym_cell_path, - ACTIONS(1925), 11, + ACTIONS(5742), 16, anon_sym_EQ, - sym_identifier, + 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_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [89792] = 8, + anon_sym_RBRACE, + [89016] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1919), 1, - anon_sym_DASH2, - ACTIONS(5257), 1, - anon_sym_DOT2, - STATE(2596), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2876), 1, + ACTIONS(5578), 1, + anon_sym_and2, + ACTIONS(5580), 1, + anon_sym_xor2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2850), 1, sym_comment, - STATE(2912), 1, - sym_path, - STATE(3012), 1, - sym_cell_path, - ACTIONS(1917), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5730), 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, - [89827] = 8, + anon_sym_or2, + [89047] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1903), 1, - anon_sym_DASH2, - ACTIONS(5257), 1, - anon_sym_DOT2, - STATE(2596), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2877), 1, - sym_comment, - STATE(2912), 1, - sym_path, - STATE(3019), 1, - sym_cell_path, - ACTIONS(1901), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, + ACTIONS(5554), 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, - [89862] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(2878), 1, + ACTIONS(5744), 1, + anon_sym_EQ, + STATE(2851), 1, sym_comment, - ACTIONS(1669), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1671), 12, + STATE(3340), 1, + sym_param_type, + STATE(4680), 1, + aux_sym__repeat_newline, + ACTIONS(5552), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218638,17 +217925,15 @@ static const uint16_t 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, - [89889] = 4, + anon_sym_RBRACE, + [89080] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5782), 1, - anon_sym_QMARK2, - STATE(2879), 1, + STATE(2852), 1, sym_comment, - ACTIONS(1462), 15, - ts_builtin_sym_end, + ACTIONS(5746), 16, anon_sym_EQ, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218661,21 +217946,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_COLON, - anon_sym_DOT2, - [89916] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + [89105] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5716), 1, - anon_sym_COLON, - ACTIONS(5784), 1, - anon_sym_EQ, - STATE(2880), 1, - sym_comment, - STATE(3329), 1, - sym_param_type, - STATE(4930), 1, + ACTIONS(5572), 1, + anon_sym_and2, + ACTIONS(5574), 1, + anon_sym_xor2, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(5608), 12, + STATE(2853), 1, + sym_comment, + ACTIONS(5736), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218688,22 +217972,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [89949] = 8, + anon_sym_or2, + [89136] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(5558), 1, - anon_sym_and2, - ACTIONS(5569), 1, - anon_sym_xor2, - ACTIONS(5706), 1, - anon_sym_or2, - STATE(2819), 1, - aux_sym__repeat_newline, - STATE(2881), 1, + STATE(2854), 1, sym_comment, - ACTIONS(5786), 11, + STATE(2914), 1, + aux_sym__repeat_newline, + ACTIONS(5748), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218715,17 +217993,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [89984] = 4, - ACTIONS(105), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [89163] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2882), 1, + STATE(2855), 1, sym_comment, - ACTIONS(1872), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1874), 12, + STATE(2915), 1, + aux_sym__repeat_newline, + ACTIONS(5750), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218737,23 +218015,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, - [90011] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(5563), 1, + anon_sym_RPAREN, anon_sym_and2, - ACTIONS(5571), 1, anon_sym_xor2, - ACTIONS(5710), 1, anon_sym_or2, - STATE(2821), 1, + [89190] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2883), 1, + STATE(2856), 1, sym_comment, - ACTIONS(5788), 11, + ACTIONS(5752), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218765,17 +218039,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [90046] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [89217] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2884), 1, + STATE(2857), 1, sym_comment, - ACTIONS(1913), 4, - ts_builtin_sym_end, + ACTIONS(1945), 2, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1915), 12, + anon_sym_LPAREN2, + ACTIONS(1947), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218787,17 +218062,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [90073] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym__unquoted_pattern, + [89244] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5782), 1, - anon_sym_BANG, - STATE(2885), 1, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2858), 1, sym_comment, - ACTIONS(1462), 15, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(5754), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218809,17 +218084,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_DOT2, - [90100] = 4, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [89271] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2886), 1, + STATE(2859), 1, sym_comment, - ACTIONS(5790), 15, + ACTIONS(1532), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1534), 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, + [89298] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5756), 1, sym__newline, + STATE(2860), 1, + sym_comment, + STATE(2916), 1, + aux_sym__repeat_newline, + ACTIONS(5748), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218831,18 +218134,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, - [90127] = 4, + [89329] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2887), 1, - sym_comment, - ACTIONS(5792), 15, + ACTIONS(5548), 1, + anon_sym_and2, + ACTIONS(5759), 1, sym__newline, + STATE(2861), 1, + sym_comment, + STATE(2918), 1, + aux_sym__repeat_newline, + ACTIONS(5750), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218854,19 +218159,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, - [90154] = 5, + [89360] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5565), 1, + ACTIONS(5578), 1, anon_sym_and2, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2888), 1, + STATE(2862), 1, sym_comment, - ACTIONS(5790), 14, + ACTIONS(5752), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218881,16 +218185,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [90183] = 5, + [89389] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1810), 1, + sym__space, + ACTIONS(5146), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5762), 1, + anon_sym_DOT, + STATE(2863), 1, + sym_comment, + ACTIONS(1812), 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, + [89420] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(5572), 1, anon_sym_and2, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2889), 1, + STATE(2864), 1, sym_comment, - ACTIONS(5792), 14, + ACTIONS(5754), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218905,17 +218234,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [90212] = 4, + [89449] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(2890), 1, + STATE(2865), 1, sym_comment, - ACTIONS(1933), 4, - ts_builtin_sym_end, + ACTIONS(1874), 2, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1935), 12, + anon_sym_LPAREN2, + ACTIONS(1876), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218927,20 +218254,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, - [90239] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym__unquoted_pattern, + [89476] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5565), 1, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(5558), 1, anon_sym_and2, - ACTIONS(5573), 1, + ACTIONS(5560), 1, anon_sym_xor2, - STATE(501), 1, + STATE(2808), 1, aux_sym__repeat_newline, - STATE(2891), 1, + STATE(2866), 1, sym_comment, - ACTIONS(5790), 13, - sym__newline, + ACTIONS(5748), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218953,19 +218283,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [90270] = 6, + [89509] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(5548), 1, anon_sym_and2, - ACTIONS(5575), 1, + ACTIONS(5584), 1, anon_sym_xor2, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2892), 1, + STATE(2867), 1, sym_comment, - ACTIONS(5792), 13, - sym__newline, + STATE(2920), 1, + aux_sym__repeat_newline, + ACTIONS(5750), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218978,14 +218309,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [90301] = 4, + [89542] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(501), 1, + ACTIONS(5578), 1, + anon_sym_and2, + ACTIONS(5580), 1, + anon_sym_xor2, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2893), 1, + STATE(2868), 1, sym_comment, - ACTIONS(5794), 15, + ACTIONS(5752), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218998,17 +218333,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, - [90328] = 4, + [89573] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(501), 1, + ACTIONS(5572), 1, + anon_sym_and2, + ACTIONS(5574), 1, + anon_sym_xor2, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2894), 1, + STATE(2869), 1, sym_comment, - ACTIONS(5796), 15, + ACTIONS(5754), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219021,19 +218358,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, - [90355] = 5, + [89604] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5565), 1, - anon_sym_and2, - STATE(501), 1, + ACTIONS(5764), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5766), 1, + aux_sym__immediate_decimal_token5, + STATE(2870), 1, + sym_comment, + ACTIONS(1804), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1802), 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, + [89635] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2895), 1, + STATE(2871), 1, sym_comment, - ACTIONS(5794), 14, + ACTIONS(5768), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219046,18 +218404,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [90384] = 5, + [89662] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(5572), 1, anon_sym_and2, - STATE(501), 1, + ACTIONS(5574), 1, + anon_sym_xor2, + ACTIONS(5690), 1, + anon_sym_or2, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2896), 1, + STATE(2872), 1, sym_comment, - ACTIONS(5796), 14, + ACTIONS(5770), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219070,20 +218433,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, - [90413] = 6, + [89695] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5565), 1, + ACTIONS(5578), 1, anon_sym_and2, - ACTIONS(5573), 1, + ACTIONS(5580), 1, anon_sym_xor2, - STATE(501), 1, + ACTIONS(5694), 1, + anon_sym_or2, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2897), 1, + STATE(2873), 1, sym_comment, - ACTIONS(5794), 13, + ACTIONS(5772), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219096,19 +218459,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_or2, - [90444] = 6, + [89728] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, - anon_sym_and2, - ACTIONS(5575), 1, - anon_sym_xor2, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2898), 1, + STATE(2874), 1, sym_comment, - ACTIONS(5796), 13, + ACTIONS(5774), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219121,20 +218479,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [90475] = 6, - ACTIONS(105), 1, + [89755] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__space, - ACTIONS(2672), 1, - anon_sym_LPAREN2, - ACTIONS(2674), 1, - sym__unquoted_pattern, - STATE(2899), 1, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(5548), 1, + anon_sym_and2, + ACTIONS(5584), 1, + anon_sym_xor2, + ACTIONS(5778), 1, + anon_sym_or2, + STATE(2798), 1, + aux_sym__repeat_newline, + STATE(2875), 1, sym_comment, - ACTIONS(1616), 13, - sym__newline, + ACTIONS(5776), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219146,20 +218509,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, - [90506] = 5, - ACTIONS(105), 1, + [89790] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5452), 1, - aux_sym__immediate_decimal_token5, - STATE(2900), 1, - sym_comment, - ACTIONS(1788), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1790), 12, + ACTIONS(2966), 1, sym__newline, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5560), 1, + anon_sym_xor2, + ACTIONS(5782), 1, + anon_sym_or2, + STATE(2799), 1, + aux_sym__repeat_newline, + STATE(2876), 1, + sym_comment, + ACTIONS(5780), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219170,19 +218535,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, - [90535] = 6, + anon_sym_RPAREN, + [89825] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(2104), 1, + ACTIONS(5535), 1, + anon_sym_EQ2, + ACTIONS(5784), 1, sym__space, - ACTIONS(2108), 1, - anon_sym_LPAREN2, - STATE(2901), 1, + STATE(2877), 1, sym_comment, - ACTIONS(2106), 13, + STATE(2975), 1, + aux_sym_attribute_repeat1, + ACTIONS(5531), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219196,18 +218561,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90566] = 6, - ACTIONS(105), 1, + [89856] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern, - ACTIONS(2696), 1, - sym__space, - STATE(2902), 1, + ACTIONS(5291), 1, + anon_sym_DOT2, + STATE(712), 1, + sym_path, + STATE(1334), 1, + sym_cell_path, + STATE(2427), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2878), 1, sym_comment, - ACTIONS(2698), 13, + ACTIONS(5362), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219219,20 +218587,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, + [89889] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2879), 1, + sym_comment, + ACTIONS(1536), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1538), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [90597] = 6, - ACTIONS(105), 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, + [89916] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2114), 1, - sym__space, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern, - STATE(2903), 1, + ACTIONS(5578), 1, + anon_sym_and2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2880), 1, sym_comment, - ACTIONS(2116), 13, + ACTIONS(5768), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219245,19 +218632,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, - [90628] = 5, + anon_sym_xor2, + anon_sym_or2, + [89945] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5798), 1, - aux_sym__immediate_decimal_token5, - STATE(2904), 1, + STATE(2881), 1, sym_comment, - ACTIONS(1866), 3, - ts_builtin_sym_end, + ACTIONS(1802), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1868), 12, + ACTIONS(1804), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219269,21 +218654,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, sym__unquoted_pattern, - [90657] = 7, - ACTIONS(3), 1, + [89972] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5716), 1, - anon_sym_COLON, - ACTIONS(5800), 1, - anon_sym_EQ, - STATE(2905), 1, + STATE(2882), 1, sym_comment, - STATE(3350), 1, - sym_param_type, - STATE(4930), 1, - aux_sym__repeat_newline, - ACTIONS(5608), 12, + ACTIONS(1667), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1669), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219295,19 +218679,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, - [90690] = 6, - ACTIONS(105), 1, + anon_sym_DOT_DOT2, + [89999] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - sym__unquoted_pattern, - ACTIONS(2660), 1, - sym__space, - ACTIONS(2718), 1, - anon_sym_LPAREN2, - STATE(2906), 1, + ACTIONS(5572), 1, + anon_sym_and2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2883), 1, sym_comment, - ACTIONS(2662), 13, + ACTIONS(5774), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219320,19 +218702,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, - [90721] = 6, - ACTIONS(105), 1, + anon_sym_xor2, + anon_sym_or2, + [90028] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2676), 1, - sym__space, - ACTIONS(2684), 1, - anon_sym_LPAREN2, - ACTIONS(2686), 1, - sym__unquoted_pattern, - STATE(2907), 1, + ACTIONS(5578), 1, + anon_sym_and2, + ACTIONS(5580), 1, + anon_sym_xor2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2884), 1, sym_comment, - ACTIONS(2678), 13, + ACTIONS(5768), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219345,19 +218728,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, - [90752] = 6, - ACTIONS(105), 1, + anon_sym_or2, + [90059] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5480), 1, - anon_sym_EQ2, - ACTIONS(5804), 1, - sym__space, - STATE(2908), 1, + ACTIONS(5572), 1, + anon_sym_and2, + ACTIONS(5574), 1, + anon_sym_xor2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2885), 1, sym_comment, - STATE(3223), 1, - sym__flag_equals_value, - ACTIONS(5802), 13, + ACTIONS(5774), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219370,16 +218753,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, - [90783] = 4, - ACTIONS(105), 1, + anon_sym_or2, + [90090] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2909), 1, + STATE(2886), 1, sym_comment, - ACTIONS(2576), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2578), 14, + STATE(2921), 1, + aux_sym__repeat_newline, + ACTIONS(5786), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219392,20 +218774,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - sym__unquoted_pattern, - [90810] = 6, - ACTIONS(105), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90117] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2604), 1, - sym__space, - ACTIONS(2608), 1, - anon_sym_LPAREN2, - ACTIONS(2610), 1, - sym__unquoted_pattern, - STATE(2910), 1, + STATE(2887), 1, sym_comment, - ACTIONS(2606), 13, + STATE(2913), 1, + aux_sym__repeat_newline, + ACTIONS(5788), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219418,19 +218797,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, - [90841] = 6, - ACTIONS(105), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90144] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4462), 1, - sym__space, - ACTIONS(5480), 1, - anon_sym_EQ2, - STATE(2911), 1, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2888), 1, sym_comment, - STATE(3058), 1, - sym__flag_equals_value, - ACTIONS(4460), 13, + ACTIONS(5790), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219443,42 +218820,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, - [90872] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90171] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2912), 1, - sym_comment, - ACTIONS(1555), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1557), 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, - [90899] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1258), 1, - sym__space, - ACTIONS(2630), 1, - anon_sym_LPAREN2, - ACTIONS(2632), 1, - sym__unquoted_pattern, - STATE(2913), 1, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2889), 1, sym_comment, - ACTIONS(1242), 13, + ACTIONS(5792), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219491,19 +218843,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, - [90930] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90198] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1250), 1, - sym__space, - ACTIONS(2630), 1, - anon_sym_LPAREN2, - ACTIONS(2632), 1, - sym__unquoted_pattern, - STATE(2914), 1, + ACTIONS(5633), 1, + anon_sym_EQ2, + ACTIONS(5794), 1, + sym_short_flag_identifier, + STATE(2890), 1, sym_comment, - ACTIONS(1234), 13, + STATE(3370), 1, + sym__flag_equals_value, + ACTIONS(5515), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5513), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219515,20 +218872,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, - [90961] = 4, - ACTIONS(105), 1, + [90231] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2915), 1, - sym_comment, - ACTIONS(1602), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1600), 12, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5796), 1, sym__newline, + STATE(2891), 1, + sym_comment, + STATE(2912), 1, + aux_sym__repeat_newline, + ACTIONS(5786), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219539,16 +218894,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, - [90988] = 4, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [90262] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(2916), 1, + ACTIONS(5799), 1, + aux_sym__immediate_decimal_token5, + STATE(2892), 1, sym_comment, - ACTIONS(1774), 2, + ACTIONS(1874), 3, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - ACTIONS(1776), 14, + ACTIONS(1876), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219560,21 +218920,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, sym__unquoted_pattern, - [91015] = 5, + [90291] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5541), 1, - anon_sym_AT2, - STATE(2917), 1, - sym_comment, - STATE(3156), 1, - sym_param_completer, - ACTIONS(5806), 14, - anon_sym_EQ, + ACTIONS(5548), 1, + anon_sym_and2, + ACTIONS(5801), 1, sym__newline, + STATE(2893), 1, + sym_comment, + STATE(2910), 1, + aux_sym__repeat_newline, + ACTIONS(5788), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219586,18 +218944,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, - [91044] = 5, + anon_sym_xor2, + anon_sym_or2, + [90322] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5541), 1, - anon_sym_AT2, - STATE(2918), 1, - sym_comment, - STATE(3232), 1, - sym_param_completer, - ACTIONS(5539), 14, + ACTIONS(5554), 1, + anon_sym_COLON, + ACTIONS(5804), 1, anon_sym_EQ, + STATE(2894), 1, + sym_comment, + STATE(3354), 1, + sym_param_type, + STATE(4680), 1, + aux_sym__repeat_newline, + ACTIONS(5552), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219610,17 +218972,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, - [91073] = 5, + [90355] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5541), 1, - anon_sym_AT2, - STATE(2919), 1, + ACTIONS(5706), 1, + anon_sym_QMARK2, + STATE(2895), 1, sym_comment, - STATE(3061), 1, - sym_param_completer, - ACTIONS(5808), 14, + ACTIONS(1466), 15, + ts_builtin_sym_end, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -219633,20 +218993,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, - [91102] = 6, + anon_sym_COLON, + anon_sym_DOT2, + [90382] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5462), 1, - anon_sym_EQ2, - ACTIONS(5810), 1, + ACTIONS(2608), 1, sym__space, - STATE(2920), 1, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(2896), 1, sym_comment, - STATE(3037), 1, - aux_sym_attribute_repeat1, - ACTIONS(5458), 13, + ACTIONS(2610), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219660,15 +219020,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91133] = 4, + [90413] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2887), 1, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5560), 1, + anon_sym_xor2, + ACTIONS(5782), 1, + anon_sym_or2, + STATE(2873), 1, aux_sym__repeat_newline, - STATE(2921), 1, + STATE(2897), 1, sym_comment, - ACTIONS(5758), 15, - sym__newline, + ACTIONS(5806), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219680,21 +219047,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, - [91160] = 5, + [90448] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5812), 1, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(5548), 1, anon_sym_and2, - ACTIONS(5814), 1, + ACTIONS(5584), 1, anon_sym_xor2, - STATE(2922), 1, + ACTIONS(5778), 1, + anon_sym_or2, + STATE(2872), 1, + aux_sym__repeat_newline, + STATE(2898), 1, sym_comment, - ACTIONS(5652), 13, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5808), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219705,17 +219073,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or2, - [91188] = 4, - ACTIONS(105), 1, + anon_sym_RPAREN, + [90483] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5265), 1, - anon_sym_EQ2, - STATE(2923), 1, + STATE(2899), 1, sym_comment, - ACTIONS(5816), 14, + ACTIONS(1584), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1586), 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, + [90510] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5578), 1, + anon_sym_and2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2900), 1, + sym_comment, + ACTIONS(5790), 14, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219726,20 +219118,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, - [91214] = 5, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [90539] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5818), 1, - anon_sym_AT2, - STATE(2924), 1, + ACTIONS(5572), 1, + anon_sym_and2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2901), 1, sym_comment, - STATE(3394), 1, - sym_param_completer, - ACTIONS(5539), 13, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(5792), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219751,19 +219142,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, - [91242] = 6, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [90568] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5674), 1, - anon_sym_EQ2, - STATE(2925), 1, - sym_comment, - STATE(3395), 1, - sym__flag_equals_value, - ACTIONS(4462), 2, - ts_builtin_sym_end, + ACTIONS(2099), 1, sym__space, - ACTIONS(4460), 11, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, + sym__unquoted_pattern, + STATE(2902), 1, + sym_comment, + ACTIONS(2101), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219775,20 +219168,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, - [91272] = 6, - ACTIONS(105), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [90599] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(2108), 1, - anon_sym_LPAREN2, - STATE(2926), 1, - sym_comment, - ACTIONS(2104), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2106), 11, + ACTIONS(2966), 1, sym__newline, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5560), 1, + anon_sym_xor2, + STATE(2903), 1, + sym_comment, + STATE(2909), 1, + aux_sym__repeat_newline, + ACTIONS(5786), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219799,54 +219194,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, - [91302] = 17, + anon_sym_RPAREN, + anon_sym_or2, + [90632] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5820), 1, - sym_identifier, - ACTIONS(5822), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(5824), 1, - anon_sym_RPAREN, - ACTIONS(5826), 1, - anon_sym_DOLLAR, - ACTIONS(5828), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5830), 1, - anon_sym_DASH_DASH, - ACTIONS(5832), 1, - anon_sym_DASH2, - STATE(2564), 1, - sym_param_long_flag, - STATE(2724), 1, - sym__param_name, - STATE(2927), 1, + ACTIONS(5548), 1, + anon_sym_and2, + ACTIONS(5584), 1, + anon_sym_xor2, + STATE(2904), 1, sym_comment, - STATE(3361), 1, - aux_sym_parameter_parens_repeat1, - STATE(3448), 1, + STATE(2907), 1, aux_sym__repeat_newline, - STATE(3462), 1, - sym_param_short_flag, - STATE(3499), 1, - sym_param_rest, - STATE(3609), 1, - sym_param_opt, - STATE(3860), 1, - sym_parameter, - [91354] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5818), 1, - anon_sym_AT2, - STATE(2928), 1, - sym_comment, - STATE(3347), 1, - sym_param_completer, - ACTIONS(5539), 13, - ts_builtin_sym_end, - anon_sym_EQ, - sym__newline, + ACTIONS(5788), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219857,19 +219220,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, - [91382] = 6, + anon_sym_RPAREN, + anon_sym_or2, + [90665] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2630), 1, + ACTIONS(2103), 1, anon_sym_LPAREN2, - ACTIONS(2632), 1, + ACTIONS(2109), 1, sym__unquoted_pattern, - STATE(2929), 1, - sym_comment, - ACTIONS(1258), 2, - ts_builtin_sym_end, + ACTIONS(2640), 1, sym__space, - ACTIONS(1242), 11, + STATE(2905), 1, + sym_comment, + ACTIONS(2642), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219881,16 +219245,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, - [91412] = 4, - ACTIONS(105), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [90696] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5292), 1, - anon_sym_EQ2, - STATE(2930), 1, + ACTIONS(5578), 1, + anon_sym_and2, + ACTIONS(5580), 1, + anon_sym_xor2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2906), 1, sym_comment, - ACTIONS(5834), 14, + ACTIONS(5790), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219901,18 +219270,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, - anon_sym_COLON2, - [91438] = 4, - ACTIONS(105), 1, + anon_sym_RPAREN, + anon_sym_or2, + [90727] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2931), 1, + ACTIONS(5572), 1, + anon_sym_and2, + ACTIONS(5574), 1, + anon_sym_xor2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2907), 1, sym_comment, - ACTIONS(2576), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2578), 12, + ACTIONS(5810), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219924,90 +219295,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, - [91464] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5820), 1, - sym_identifier, - ACTIONS(5822), 1, - sym__newline, - ACTIONS(5826), 1, - anon_sym_DOLLAR, - ACTIONS(5828), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5830), 1, - anon_sym_DASH_DASH, - ACTIONS(5832), 1, - anon_sym_DASH2, - ACTIONS(5836), 1, - anon_sym_RBRACK, - STATE(2564), 1, - sym_param_long_flag, - STATE(2724), 1, - sym__param_name, - STATE(2932), 1, - sym_comment, - STATE(2954), 1, - aux_sym__repeat_newline, - STATE(3374), 1, - aux_sym_parameter_parens_repeat1, - STATE(3462), 1, - sym_param_short_flag, - STATE(3499), 1, - sym_param_rest, - STATE(3609), 1, - sym_param_opt, - STATE(3860), 1, - sym_parameter, - [91516] = 17, + anon_sym_RPAREN, + anon_sym_or2, + [90758] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5820), 1, - sym_identifier, - ACTIONS(5822), 1, - sym__newline, - ACTIONS(5826), 1, - anon_sym_DOLLAR, - ACTIONS(5828), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5830), 1, - anon_sym_DASH_DASH, - ACTIONS(5832), 1, - anon_sym_DASH2, - ACTIONS(5838), 1, - anon_sym_RPAREN, - STATE(2564), 1, - sym_param_long_flag, - STATE(2724), 1, - sym__param_name, - STATE(2933), 1, - sym_comment, - STATE(2955), 1, + ACTIONS(5572), 1, + anon_sym_and2, + ACTIONS(5574), 1, + anon_sym_xor2, + STATE(522), 1, aux_sym__repeat_newline, - STATE(3389), 1, - aux_sym_parameter_parens_repeat1, - STATE(3462), 1, - sym_param_short_flag, - STATE(3499), 1, - sym_param_rest, - STATE(3609), 1, - sym_param_opt, - STATE(3860), 1, - sym_parameter, - [91568] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2630), 1, - anon_sym_LPAREN2, - ACTIONS(2632), 1, - sym__unquoted_pattern, - STATE(2934), 1, + STATE(2908), 1, sym_comment, - ACTIONS(1250), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1234), 11, + ACTIONS(5792), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220019,17 +219320,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, - [91598] = 5, + anon_sym_RPAREN, + anon_sym_or2, + [90789] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5840), 1, + ACTIONS(5578), 1, anon_sym_and2, - ACTIONS(5842), 1, + ACTIONS(5580), 1, anon_sym_xor2, - STATE(2935), 1, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2909), 1, sym_comment, - ACTIONS(5654), 13, - ts_builtin_sym_end, + ACTIONS(5812), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220041,20 +219345,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_or2, - [91626] = 6, - ACTIONS(105), 1, + [90820] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - STATE(2936), 1, + ACTIONS(5572), 1, + anon_sym_and2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2910), 1, sym_comment, - STATE(5283), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2369), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2371), 11, + ACTIONS(5810), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220066,20 +219368,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, - [91656] = 7, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [90849] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5844), 1, - anon_sym_catch, - ACTIONS(5846), 1, - anon_sym_finally, - ACTIONS(5848), 1, - sym__newline, - STATE(2937), 1, - sym_comment, - STATE(3029), 1, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(5851), 11, + STATE(2911), 1, + sym_comment, + ACTIONS(5736), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220091,19 +219391,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [91688] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90876] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1890), 1, - sym__newline, - ACTIONS(5853), 1, - anon_sym_finally, - STATE(501), 1, + ACTIONS(5578), 1, + anon_sym_and2, + STATE(522), 1, aux_sym__repeat_newline, - STATE(2938), 1, + STATE(2912), 1, sym_comment, - ACTIONS(1888), 12, - anon_sym_catch, + ACTIONS(5812), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220115,22 +219416,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [91718] = 7, + anon_sym_xor2, + anon_sym_or2, + [90905] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5856), 1, - sym__newline, - STATE(615), 1, - aux_sym__pipe_separator, - STATE(2939), 1, - sym_comment, - STATE(3624), 1, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(5859), 3, + STATE(2913), 1, + sym_comment, + ACTIONS(5810), 15, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2075), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -220140,14 +219437,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, - [91750] = 3, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90932] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2940), 1, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2914), 1, sym_comment, - ACTIONS(1557), 15, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(5700), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220159,45 +219460,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_DOT2, - [91774] = 6, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90959] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5863), 1, - anon_sym_DASH2, - ACTIONS(5865), 1, - anon_sym_DOT_DOT2, - STATE(2941), 1, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2915), 1, sym_comment, - ACTIONS(5867), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5861), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5814), 15, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [91804] = 6, - ACTIONS(105), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90986] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - STATE(2942), 1, + ACTIONS(5578), 1, + anon_sym_and2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2916), 1, sym_comment, - STATE(5283), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2269), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2271), 11, + ACTIONS(5700), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220209,19 +219508,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, - [91834] = 6, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [91015] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - STATE(2943), 1, + ACTIONS(5712), 1, + anon_sym_DOT_DOT2, + STATE(2917), 1, sym_comment, - STATE(5283), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2281), 2, + ACTIONS(5521), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2283), 11, + ACTIONS(5714), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5519), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220233,20 +219536,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, - [91864] = 7, + [91046] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5869), 1, - anon_sym_catch, - ACTIONS(5871), 1, - anon_sym_finally, - ACTIONS(5873), 1, - sym__newline, - STATE(2944), 1, - sym_comment, - STATE(3035), 1, + ACTIONS(5572), 1, + anon_sym_and2, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(5876), 11, + STATE(2918), 1, + sym_comment, + ACTIONS(5814), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220258,16 +219558,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [91896] = 4, + anon_sym_xor2, + anon_sym_or2, + [91075] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5350), 1, - anon_sym_EQ2, - STATE(2945), 1, + STATE(2919), 1, sym_comment, - ACTIONS(5878), 14, - sym__newline, + ACTIONS(1856), 4, + ts_builtin_sym_end, sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1858), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220278,20 +219582,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, - [91922] = 5, + anon_sym_DOT_DOT2, + [91102] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5818), 1, - anon_sym_AT2, - STATE(2946), 1, + ACTIONS(5572), 1, + anon_sym_and2, + ACTIONS(5574), 1, + anon_sym_xor2, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2920), 1, sym_comment, - STATE(3363), 1, - sym_param_completer, - ACTIONS(5808), 13, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(5814), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220303,13 +219606,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, - [91950] = 3, + anon_sym_RPAREN, + anon_sym_or2, + [91133] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2947), 1, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2921), 1, sym_comment, - ACTIONS(5383), 15, - ts_builtin_sym_end, + ACTIONS(5812), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220321,18 +219627,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, - [91974] = 4, - ACTIONS(105), 1, + [91160] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5882), 1, - sym__space, - STATE(2948), 2, + STATE(2922), 1, sym_comment, - aux_sym_attribute_repeat1, - ACTIONS(5880), 13, + ACTIONS(5698), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220344,18 +219649,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, - [92000] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [91184] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2949), 1, + STATE(2923), 1, sym_comment, - ACTIONS(5666), 15, + ACTIONS(1538), 15, ts_builtin_sym_end, - anon_sym_else, - anon_sym_catch, - anon_sym_finally, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220367,13 +219671,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, - [92024] = 3, + anon_sym_COLON, + anon_sym_DOT2, + [91208] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2950), 1, + STATE(2924), 1, + sym_comment, + ACTIONS(1858), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1856), 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, + [91234] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(2925), 1, sym_comment, - ACTIONS(5267), 15, + ACTIONS(1802), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1804), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220385,23 +219716,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, - [92048] = 6, - ACTIONS(3), 1, + sym__unquoted_pattern, + [91260] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5840), 1, - anon_sym_and2, - ACTIONS(5842), 1, - anon_sym_xor2, - ACTIONS(5885), 1, - anon_sym_or2, - STATE(2951), 1, + ACTIONS(5293), 1, + anon_sym_EQ2, + STATE(2926), 1, sym_comment, - ACTIONS(5638), 12, - ts_builtin_sym_end, + ACTIONS(5816), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220412,13 +219737,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, - [92078] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_COLON2, + [91286] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2952), 1, + ACTIONS(1697), 1, + sym__unquoted_pattern, + ACTIONS(2710), 1, + anon_sym_LPAREN2, + STATE(2927), 1, sym_comment, - ACTIONS(4784), 15, + ACTIONS(2706), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2708), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220430,22 +219763,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, - [92102] = 6, + [91316] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(1830), 1, anon_sym_LPAREN2, - STATE(2953), 1, + STATE(2928), 1, sym_comment, - STATE(5283), 1, + STATE(5020), 1, sym__expr_parenthesized_immediate, - ACTIONS(2142), 2, + ACTIONS(5726), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2144), 11, + ACTIONS(5724), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220457,107 +219787,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, - [92132] = 17, + [91346] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5820), 1, + ACTIONS(5818), 1, sym_identifier, - ACTIONS(5822), 1, - sym__newline, - ACTIONS(5826), 1, - anon_sym_DOLLAR, - ACTIONS(5828), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5830), 1, - anon_sym_DASH_DASH, - ACTIONS(5832), 1, - anon_sym_DASH2, - ACTIONS(5887), 1, - anon_sym_RBRACK, - STATE(2564), 1, - sym_param_long_flag, - STATE(2724), 1, - sym__param_name, - STATE(2954), 1, - sym_comment, - STATE(3339), 1, - aux_sym_parameter_parens_repeat1, - STATE(3448), 1, - aux_sym__repeat_newline, - STATE(3462), 1, - sym_param_short_flag, - STATE(3499), 1, - sym_param_rest, - STATE(3609), 1, - sym_param_opt, - STATE(3860), 1, - sym_parameter, - [92184] = 17, - ACTIONS(3), 1, - anon_sym_POUND, ACTIONS(5820), 1, - sym_identifier, - ACTIONS(5822), 1, sym__newline, - ACTIONS(5826), 1, + ACTIONS(5822), 1, + anon_sym_PIPE, + ACTIONS(5824), 1, anon_sym_DOLLAR, - ACTIONS(5828), 1, + ACTIONS(5826), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5830), 1, + ACTIONS(5828), 1, anon_sym_DASH_DASH, - ACTIONS(5832), 1, + ACTIONS(5830), 1, anon_sym_DASH2, - ACTIONS(5889), 1, - anon_sym_RPAREN, - STATE(2564), 1, + STATE(2559), 1, sym_param_long_flag, - STATE(2724), 1, + STATE(2695), 1, sym__param_name, - STATE(2955), 1, + STATE(2929), 1, sym_comment, - STATE(3340), 1, + STATE(3364), 1, aux_sym_parameter_parens_repeat1, - STATE(3448), 1, + STATE(3514), 1, + sym_param_rest, + STATE(3542), 1, aux_sym__repeat_newline, - STATE(3462), 1, + STATE(3607), 1, sym_param_short_flag, - STATE(3499), 1, - sym_param_rest, - STATE(3609), 1, + STATE(3608), 1, sym_param_opt, - STATE(3860), 1, + STATE(3843), 1, sym_parameter, - [92236] = 6, + [91398] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2118), 1, + ACTIONS(2103), 1, anon_sym_LPAREN2, - ACTIONS(2124), 1, + ACTIONS(2109), 1, sym__unquoted_pattern, - STATE(2956), 1, + STATE(2930), 1, sym_comment, - ACTIONS(2696), 2, + ACTIONS(2099), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2698), 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, - [92266] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2957), 1, - sym_comment, - ACTIONS(5652), 15, - ts_builtin_sym_end, + ACTIONS(2101), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220569,22 +219846,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, - [92290] = 6, + [91428] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(2103), 1, anon_sym_LPAREN2, - STATE(2958), 1, + ACTIONS(2109), 1, + sym__unquoted_pattern, + STATE(2931), 1, sym_comment, - STATE(5080), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5545), 2, + ACTIONS(2640), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5543), 11, + ACTIONS(2642), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220596,19 +219870,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, - [92320] = 6, + [91458] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2118), 1, + ACTIONS(2636), 1, anon_sym_LPAREN2, - ACTIONS(2124), 1, + ACTIONS(2638), 1, sym__unquoted_pattern, - STATE(2959), 1, + STATE(2932), 1, sym_comment, - ACTIONS(2114), 2, + ACTIONS(1262), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2116), 11, + ACTIONS(1246), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220620,14 +219894,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, - [92350] = 4, + [91488] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5840), 1, - anon_sym_and2, - STATE(2960), 1, + ACTIONS(5832), 1, + anon_sym_COLON, + STATE(2933), 1, sym_comment, - ACTIONS(5658), 14, + STATE(3533), 1, + sym_param_type, + STATE(4811), 1, + aux_sym__repeat_newline, + ACTIONS(5552), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -220640,15 +219918,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor2, - anon_sym_or2, - [92376] = 3, + [91518] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2961), 1, + STATE(2934), 1, sym_comment, - ACTIONS(5656), 15, + ACTIONS(1534), 15, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220660,41 +219937,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [92400] = 4, - ACTIONS(105), 1, + anon_sym_COLON, + anon_sym_DOT2, + [91542] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5247), 1, - anon_sym_EQ2, - STATE(2962), 1, + ACTIONS(2680), 1, + anon_sym_DASH2, + STATE(2935), 1, sym_comment, - ACTIONS(5891), 14, + ACTIONS(2678), 14, + anon_sym_EQ, + sym_identifier, sym__newline, - sym__space, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - anon_sym_COLON2, - [92426] = 4, - ACTIONS(105), 1, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [91568] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5296), 1, - anon_sym_EQ2, - STATE(2963), 1, + ACTIONS(5834), 1, + anon_sym_LT, + STATE(2936), 1, sym_comment, - ACTIONS(5893), 14, + ACTIONS(5269), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220705,15 +219982,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - anon_sym_COLON2, - [92452] = 3, + anon_sym_AT2, + [91594] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2964), 1, + ACTIONS(5836), 1, + anon_sym_LT, + STATE(2937), 1, sym_comment, - ACTIONS(5658), 15, + ACTIONS(5269), 14, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220725,54 +220004,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_and2, - anon_sym_xor2, - anon_sym_or2, - [92476] = 13, - ACTIONS(3), 1, + anon_sym_AT2, + [91620] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(885), 1, - sym_raw_string_begin, - ACTIONS(3212), 1, - anon_sym_DQUOTE, - ACTIONS(3214), 1, - anon_sym_SQUOTE, - ACTIONS(3216), 1, - anon_sym_BQUOTE, - ACTIONS(3218), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3220), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5895), 1, - aux_sym_env_var_token1, - STATE(2965), 1, + STATE(2938), 1, sym_comment, - STATE(3179), 1, - sym__inter_single_quotes, - STATE(3180), 1, - sym__inter_double_quotes, - STATE(4946), 2, - sym_val_string, - sym_val_interpolated, - STATE(2503), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [92520] = 7, + ACTIONS(2247), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2249), 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, + [91646] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5897), 1, + ACTIONS(5838), 1, anon_sym_catch, - ACTIONS(5899), 1, + ACTIONS(5840), 1, anon_sym_finally, - ACTIONS(5901), 1, + ACTIONS(5842), 1, sym__newline, - STATE(2944), 1, - aux_sym__repeat_newline, - STATE(2966), 1, + STATE(2939), 1, sym_comment, - ACTIONS(5904), 11, + STATE(2950), 1, + aux_sym__repeat_newline, + ACTIONS(5845), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220784,14 +220052,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [92552] = 3, - ACTIONS(3), 1, + [91678] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(2967), 1, + ACTIONS(5305), 1, + anon_sym_EQ2, + STATE(2940), 1, sym_comment, - ACTIONS(5654), 15, - ts_builtin_sym_end, + ACTIONS(5847), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220802,22 +220072,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [92576] = 6, - ACTIONS(105), 1, + anon_sym_RBRACE, + anon_sym_COLON2, + [91704] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - sym__unquoted_pattern, - ACTIONS(2718), 1, - anon_sym_LPAREN2, - STATE(2968), 1, + ACTIONS(5851), 1, + anon_sym_DASH2, + ACTIONS(5853), 1, + anon_sym_DOT_DOT2, + STATE(2941), 1, + sym_comment, + ACTIONS(5855), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5849), 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, + [91734] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5857), 1, + anon_sym_AT2, + STATE(2942), 1, sym_comment, - ACTIONS(2660), 2, + STATE(3365), 1, + sym_param_completer, + ACTIONS(5625), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2662), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220829,14 +220121,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [92606] = 3, + [91762] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(2969), 1, + ACTIONS(5818), 1, + sym_identifier, + ACTIONS(5820), 1, + sym__newline, + ACTIONS(5824), 1, + anon_sym_DOLLAR, + ACTIONS(5826), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5828), 1, + anon_sym_DASH_DASH, + ACTIONS(5830), 1, + anon_sym_DASH2, + ACTIONS(5859), 1, + anon_sym_RBRACK, + STATE(2559), 1, + sym_param_long_flag, + STATE(2695), 1, + sym__param_name, + STATE(2943), 1, + sym_comment, + STATE(3366), 1, + aux_sym_parameter_parens_repeat1, + STATE(3514), 1, + sym_param_rest, + STATE(3542), 1, + aux_sym__repeat_newline, + STATE(3607), 1, + sym_param_short_flag, + STATE(3608), 1, + sym_param_opt, + STATE(3843), 1, + sym_parameter, + [91814] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5818), 1, + sym_identifier, + ACTIONS(5820), 1, + sym__newline, + ACTIONS(5824), 1, + anon_sym_DOLLAR, + ACTIONS(5826), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5828), 1, + anon_sym_DASH_DASH, + ACTIONS(5830), 1, + anon_sym_DASH2, + ACTIONS(5861), 1, + anon_sym_RPAREN, + STATE(2559), 1, + sym_param_long_flag, + STATE(2695), 1, + sym__param_name, + STATE(2944), 1, + sym_comment, + STATE(3367), 1, + aux_sym_parameter_parens_repeat1, + STATE(3514), 1, + sym_param_rest, + STATE(3542), 1, + aux_sym__repeat_newline, + STATE(3607), 1, + sym_param_short_flag, + STATE(3608), 1, + sym_param_opt, + STATE(3843), 1, + sym_parameter, + [91866] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5222), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5863), 1, + anon_sym_DOT, + STATE(2945), 1, sym_comment, - ACTIONS(1563), 15, + ACTIONS(1810), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(1812), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220848,21 +220215,15 @@ static const uint16_t 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, - [92630] = 6, + [91896] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5865), 1, - anon_sym_DOT_DOT2, - ACTIONS(5908), 1, - anon_sym_DASH2, - STATE(2970), 1, + STATE(2946), 1, sym_comment, - ACTIONS(5867), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5906), 11, + ACTIONS(1596), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1598), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -220874,20 +220235,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92660] = 6, - ACTIONS(105), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [91922] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2684), 1, - anon_sym_LPAREN2, - ACTIONS(2686), 1, - sym__unquoted_pattern, - STATE(2971), 1, + ACTIONS(887), 1, + sym_raw_string_begin, + ACTIONS(3282), 1, + anon_sym_DQUOTE, + ACTIONS(3284), 1, + anon_sym_SQUOTE, + ACTIONS(3286), 1, + anon_sym_BQUOTE, + ACTIONS(3288), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3290), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5865), 1, + aux_sym_env_var_token1, + STATE(2947), 1, sym_comment, - ACTIONS(2676), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2678), 11, + STATE(3090), 1, + sym__inter_single_quotes, + STATE(3091), 1, + sym__inter_double_quotes, + STATE(4998), 2, + sym_val_string, + sym_val_interpolated, + STATE(2515), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [91966] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5637), 1, + aux_sym__immediate_decimal_token5, + STATE(2948), 1, + sym_comment, + ACTIONS(1812), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1810), 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, + [91994] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5867), 1, + anon_sym_catch, + ACTIONS(5869), 1, + anon_sym_finally, + ACTIONS(5871), 1, + sym__newline, + STATE(2949), 1, + sym_comment, + STATE(3022), 1, + aux_sym__repeat_newline, + ACTIONS(5874), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220898,15 +220315,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, - [92690] = 3, + anon_sym_RPAREN, + [92026] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2972), 1, - sym_comment, - ACTIONS(1567), 15, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(5876), 1, + anon_sym_catch, + ACTIONS(5878), 1, + anon_sym_finally, + ACTIONS(5880), 1, sym__newline, + STATE(2950), 1, + sym_comment, + STATE(3024), 1, + aux_sym__repeat_newline, + ACTIONS(5883), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220917,22 +220340,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, + [92058] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1906), 1, + anon_sym_DASH2, + STATE(2951), 1, + sym_comment, + ACTIONS(1904), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, anon_sym_COLON, - anon_sym_DOT2, - [92714] = 7, - ACTIONS(105), 1, + 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, + [92084] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5462), 1, - anon_sym_EQ2, - ACTIONS(5910), 1, - ts_builtin_sym_end, - ACTIONS(5912), 1, - sym__space, - STATE(2973), 1, + STATE(2952), 1, sym_comment, - STATE(3117), 1, - aux_sym_attribute_repeat1, - ACTIONS(5458), 11, + ACTIONS(5716), 15, + ts_builtin_sym_end, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220944,14 +220384,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, - [92746] = 4, + [92108] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5308), 1, + ACTIONS(5313), 1, anon_sym_EQ2, - STATE(2974), 1, + STATE(2953), 1, sym_comment, - ACTIONS(5914), 14, + ACTIONS(5885), 14, sym__newline, sym__space, anon_sym_SEMI, @@ -220966,16 +220406,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, anon_sym_COLON2, - [92772] = 5, + [92134] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2375), 1, - sym__space, - ACTIONS(5916), 1, - anon_sym_LBRACK2, - STATE(2975), 1, + ACTIONS(2716), 1, + anon_sym_LPAREN2, + ACTIONS(2718), 1, + sym__unquoted_pattern, + STATE(2954), 1, sym_comment, - ACTIONS(2377), 13, + ACTIONS(2712), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2714), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220987,95 +220430,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [92800] = 6, + [92164] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1616), 1, - anon_sym_DASH2, - ACTIONS(5865), 1, - anon_sym_DOT_DOT2, - STATE(2976), 1, - sym_comment, - ACTIONS(5867), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 11, - anon_sym_EQ, + ACTIONS(5887), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5892), 1, anon_sym_DOLLAR, + ACTIONS(5895), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5898), 1, anon_sym_DASH_DASH, - [92830] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2156), 1, + ACTIONS(5901), 1, anon_sym_DASH2, - ACTIONS(5918), 1, - anon_sym_DOT_DOT2, - STATE(2977), 1, + STATE(2559), 1, + sym_param_long_flag, + STATE(2695), 1, + sym__param_name, + STATE(3514), 1, + sym_param_rest, + STATE(3607), 1, + sym_param_short_flag, + STATE(3608), 1, + sym_param_opt, + STATE(3843), 1, + sym_parameter, + STATE(2955), 2, sym_comment, - ACTIONS(5920), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + aux_sym_parameter_parens_repeat1, + ACTIONS(5890), 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, - [92860] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(2945), 1, - anon_sym_DOLLAR, - ACTIONS(5922), 1, - anon_sym_DOT, - STATE(2978), 1, - sym_comment, - STATE(3866), 1, - sym__immediate_decimal, - ACTIONS(5924), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5926), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3942), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1642), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [92900] = 5, + [92210] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5812), 1, - anon_sym_and2, - ACTIONS(5814), 1, - anon_sym_xor2, - STATE(2979), 1, + STATE(2956), 1, sym_comment, - ACTIONS(5656), 13, + ACTIONS(5344), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -221088,18 +220480,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_or2, - [92928] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5840), 1, anon_sym_and2, - ACTIONS(5842), 1, anon_sym_xor2, - STATE(2980), 1, + anon_sym_or2, + [92234] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5906), 1, + sym__space, + STATE(2957), 2, sym_comment, - ACTIONS(5658), 13, - ts_builtin_sym_end, + aux_sym_attribute_repeat1, + ACTIONS(5904), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221111,16 +220503,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_or2, - [92956] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [92260] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(2981), 1, - sym_comment, - ACTIONS(5265), 2, + ACTIONS(2241), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5816), 13, + ACTIONS(5909), 1, + anon_sym_LBRACK2, + STATE(2958), 1, + sym_comment, + ACTIONS(2243), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221134,20 +220528,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92982] = 7, - ACTIONS(105), 1, + [92288] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5462), 1, - anon_sym_EQ2, - ACTIONS(5928), 1, - sym__newline, - ACTIONS(5930), 1, - sym__space, - STATE(2982), 1, + STATE(2959), 1, sym_comment, - STATE(3129), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5932), 11, + ACTIONS(5728), 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, @@ -221158,95 +220549,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [93014] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2168), 1, - anon_sym_DASH2, - ACTIONS(5934), 1, - anon_sym_DOT_DOT2, - STATE(2983), 1, - sym_comment, - ACTIONS(5936), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2166), 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, - [93044] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2176), 1, - anon_sym_DASH2, - ACTIONS(5938), 1, - anon_sym_DOT_DOT2, - STATE(2984), 1, - sym_comment, - ACTIONS(5940), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2174), 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, - [93074] = 6, + [92312] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2188), 1, - anon_sym_DASH2, - ACTIONS(5942), 1, - anon_sym_DOT_DOT2, - STATE(2985), 1, + STATE(2960), 1, sym_comment, - ACTIONS(5944), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2186), 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, - [93104] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5946), 1, + ACTIONS(5391), 15, + ts_builtin_sym_end, sym__newline, - STATE(615), 1, - aux_sym__pipe_separator, - STATE(2986), 1, - sym_comment, - STATE(3624), 1, - aux_sym__repeat_newline, - ACTIONS(5949), 3, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(5951), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -221256,40 +220567,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, - [93136] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5865), 1, - anon_sym_DOT_DOT2, - ACTIONS(5956), 1, - anon_sym_DASH2, - STATE(2987), 1, - sym_comment, - ACTIONS(5867), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5954), 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, - [93166] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [92336] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5810), 1, - sym__space, - STATE(2988), 1, + STATE(2961), 1, sym_comment, - STATE(3038), 1, - aux_sym_attribute_repeat1, - ACTIONS(5958), 13, + ACTIONS(2158), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2160), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221303,15 +220592,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93194] = 4, - ACTIONS(105), 1, + [92362] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2989), 1, + STATE(2962), 1, sym_comment, - ACTIONS(5292), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5834), 13, + ACTIONS(5344), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221323,18 +220610,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, - [93220] = 5, - ACTIONS(105), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [92386] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5810), 1, - sym__space, - STATE(2990), 1, + ACTIONS(5554), 1, + anon_sym_COLON, + ACTIONS(5911), 1, + anon_sym_EQ, + STATE(2963), 1, sym_comment, - STATE(3037), 1, - aux_sym_attribute_repeat1, - ACTIONS(5458), 13, + STATE(3574), 1, + sym_param_type, + STATE(4680), 1, + aux_sym__repeat_newline, + ACTIONS(5552), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221346,91 +220638,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [93248] = 17, + [92418] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5820), 1, + ACTIONS(5818), 1, sym_identifier, - ACTIONS(5822), 1, + ACTIONS(5820), 1, sym__newline, - ACTIONS(5826), 1, + ACTIONS(5824), 1, anon_sym_DOLLAR, - ACTIONS(5828), 1, + ACTIONS(5826), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5830), 1, + ACTIONS(5828), 1, anon_sym_DASH_DASH, - ACTIONS(5832), 1, + ACTIONS(5830), 1, anon_sym_DASH2, - ACTIONS(5960), 1, - anon_sym_RBRACK, - STATE(2564), 1, + ACTIONS(5913), 1, + anon_sym_RPAREN, + STATE(2559), 1, sym_param_long_flag, - STATE(2724), 1, + STATE(2695), 1, sym__param_name, - STATE(2991), 1, - sym_comment, - STATE(2994), 1, + STATE(2944), 1, aux_sym__repeat_newline, - STATE(3272), 1, + STATE(2964), 1, + sym_comment, + STATE(3346), 1, aux_sym_parameter_parens_repeat1, - STATE(3462), 1, - sym_param_short_flag, - STATE(3499), 1, + STATE(3514), 1, sym_param_rest, - STATE(3609), 1, + STATE(3607), 1, + sym_param_short_flag, + STATE(3608), 1, sym_param_opt, - STATE(3860), 1, + STATE(3843), 1, sym_parameter, - [93300] = 17, + [92470] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5820), 1, + ACTIONS(5818), 1, sym_identifier, - ACTIONS(5822), 1, + ACTIONS(5820), 1, sym__newline, - ACTIONS(5826), 1, + ACTIONS(5824), 1, anon_sym_DOLLAR, - ACTIONS(5828), 1, + ACTIONS(5826), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5830), 1, + ACTIONS(5828), 1, anon_sym_DASH_DASH, - ACTIONS(5832), 1, + ACTIONS(5830), 1, anon_sym_DASH2, - ACTIONS(5962), 1, - anon_sym_PIPE, - STATE(2564), 1, + ACTIONS(5915), 1, + anon_sym_RBRACK, + STATE(2559), 1, sym_param_long_flag, - STATE(2724), 1, + STATE(2695), 1, sym__param_name, - STATE(2992), 1, + STATE(2943), 1, + aux_sym__repeat_newline, + STATE(2965), 1, sym_comment, - STATE(3400), 1, + STATE(3360), 1, aux_sym_parameter_parens_repeat1, - STATE(3448), 1, - aux_sym__repeat_newline, - STATE(3462), 1, - sym_param_short_flag, - STATE(3499), 1, + STATE(3514), 1, sym_param_rest, - STATE(3609), 1, + STATE(3607), 1, + sym_param_short_flag, + STATE(3608), 1, sym_param_opt, - STATE(3860), 1, + STATE(3843), 1, sym_parameter, - [93352] = 6, + [92522] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5812), 1, - anon_sym_and2, - ACTIONS(5814), 1, - anon_sym_xor2, - ACTIONS(5964), 1, - anon_sym_or2, - STATE(2993), 1, + STATE(2966), 1, sym_comment, - ACTIONS(5630), 12, + ACTIONS(1586), 15, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221442,57 +220727,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, - [93382] = 17, + anon_sym_COLON, + anon_sym_DOT2, + [92546] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5820), 1, - sym_identifier, - ACTIONS(5822), 1, - sym__newline, - ACTIONS(5826), 1, - anon_sym_DOLLAR, - ACTIONS(5828), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5830), 1, - anon_sym_DASH_DASH, - ACTIONS(5832), 1, - anon_sym_DASH2, - ACTIONS(5966), 1, - anon_sym_RBRACK, - STATE(2564), 1, - sym_param_long_flag, - STATE(2724), 1, - sym__param_name, - STATE(2994), 1, + ACTIONS(5917), 1, + anon_sym_catch, + ACTIONS(5919), 1, + anon_sym_finally, + STATE(2967), 1, sym_comment, - STATE(3348), 1, - aux_sym_parameter_parens_repeat1, - STATE(3448), 1, - aux_sym__repeat_newline, - STATE(3462), 1, - sym_param_short_flag, - STATE(3499), 1, - sym_param_rest, - STATE(3609), 1, - sym_param_opt, - STATE(3860), 1, - sym_parameter, - [93434] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5856), 1, + ACTIONS(5921), 13, sym__newline, - STATE(615), 1, - aux_sym__pipe_separator, - STATE(2995), 1, - sym_comment, - STATE(3624), 1, - aux_sym__repeat_newline, - ACTIONS(5859), 3, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(5968), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -221502,42 +220750,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, - [93466] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [92574] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5971), 1, - anon_sym_LBRACK2, - STATE(2996), 1, - sym_comment, - ACTIONS(2377), 2, - anon_sym_LBRACK, + ACTIONS(1610), 1, anon_sym_DASH2, - ACTIONS(2375), 12, + ACTIONS(5853), 1, + anon_sym_DOT_DOT2, + STATE(2968), 1, + sym_comment, + ACTIONS(5855), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1736), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93494] = 6, - ACTIONS(3), 1, + [92604] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1890), 1, - sym__newline, - ACTIONS(5973), 1, - anon_sym_finally, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2997), 1, + STATE(2969), 1, sym_comment, - ACTIONS(1888), 12, - anon_sym_catch, + ACTIONS(5327), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5923), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221549,39 +220797,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [93524] = 4, + anon_sym_RBRACE, + [92630] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2998), 1, + STATE(2970), 1, sym_comment, - ACTIONS(1600), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1602), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(5391), 15, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [93550] = 4, - ACTIONS(105), 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_and2, + anon_sym_xor2, + anon_sym_or2, + [92654] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2999), 1, - sym_comment, - ACTIONS(2348), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2350), 13, + ACTIONS(5925), 1, sym__newline, + STATE(529), 1, + aux_sym__pipe_separator, + STATE(2971), 1, + sym_comment, + STATE(3647), 1, + aux_sym__repeat_newline, + ACTIONS(5928), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(1999), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -221591,14 +220844,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, + [92686] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5930), 1, + sym__newline, + STATE(529), 1, + aux_sym__pipe_separator, + STATE(2972), 1, + sym_comment, + STATE(3647), 1, + aux_sym__repeat_newline, + ACTIONS(5933), 3, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [93576] = 3, + ACTIONS(5935), 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, + [92718] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3000), 1, + STATE(2973), 1, sym_comment, - ACTIONS(5383), 15, + ACTIONS(5344), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -221614,13 +220890,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [93600] = 3, - ACTIONS(3), 1, + [92742] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3001), 1, + ACTIONS(5784), 1, + sym__space, + STATE(2974), 1, sym_comment, - ACTIONS(5976), 15, - anon_sym_EQ, + STATE(2985), 1, + aux_sym_attribute_repeat1, + ACTIONS(5938), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221633,17 +220912,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, - [93624] = 4, + [92770] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(3002), 1, - sym_comment, - ACTIONS(2361), 2, + ACTIONS(5784), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(2363), 13, + STATE(2957), 1, + aux_sym_attribute_repeat1, + STATE(2975), 1, + sym_comment, + ACTIONS(5940), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221657,16 +220936,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93650] = 4, + [92798] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5978), 1, - anon_sym_LT, - STATE(3003), 1, + STATE(2976), 1, sym_comment, - ACTIONS(5249), 14, + ACTIONS(4788), 15, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221678,20 +220954,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_AT2, - [93676] = 6, - ACTIONS(105), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [92822] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5674), 1, - anon_sym_EQ2, - STATE(3004), 1, + ACTIONS(5930), 1, + sym__newline, + STATE(529), 1, + aux_sym__pipe_separator, + STATE(2977), 1, sym_comment, - STATE(3288), 1, - sym__flag_equals_value, - ACTIONS(5804), 2, + STATE(3647), 1, + aux_sym__repeat_newline, + ACTIONS(5933), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(1999), 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, + [92854] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5942), 1, + anon_sym_and2, + ACTIONS(5944), 1, + anon_sym_xor2, + ACTIONS(5946), 1, + anon_sym_or2, + STATE(2978), 1, + sym_comment, + ACTIONS(5732), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(5802), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221703,97 +221006,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [93706] = 4, + [92884] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1911), 1, - anon_sym_DASH2, - STATE(3005), 1, - sym_comment, - ACTIONS(1909), 14, - anon_sym_EQ, + ACTIONS(5818), 1, sym_identifier, + ACTIONS(5820), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5824), 1, anon_sym_DOLLAR, - anon_sym_GT2, + ACTIONS(5826), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5828), 1, anon_sym_DASH_DASH, - [93732] = 4, + ACTIONS(5830), 1, + anon_sym_DASH2, + ACTIONS(5948), 1, + anon_sym_RBRACK, + STATE(2559), 1, + sym_param_long_flag, + STATE(2695), 1, + sym__param_name, + STATE(2979), 1, + sym_comment, + STATE(3045), 1, + aux_sym__repeat_newline, + STATE(3277), 1, + aux_sym_parameter_parens_repeat1, + STATE(3514), 1, + sym_param_rest, + STATE(3607), 1, + sym_param_short_flag, + STATE(3608), 1, + sym_param_opt, + STATE(3843), 1, + sym_parameter, + [92936] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2658), 1, - anon_sym_DASH2, - STATE(3006), 1, + ACTIONS(5950), 1, + anon_sym_and2, + ACTIONS(5952), 1, + anon_sym_xor2, + ACTIONS(5954), 1, + anon_sym_or2, + STATE(2980), 1, sym_comment, - ACTIONS(2656), 14, - anon_sym_EQ, - sym_identifier, + ACTIONS(5738), 12, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [93758] = 17, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [92966] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5820), 1, + ACTIONS(5818), 1, sym_identifier, - ACTIONS(5822), 1, + ACTIONS(5820), 1, sym__newline, - ACTIONS(5826), 1, + ACTIONS(5824), 1, anon_sym_DOLLAR, - ACTIONS(5828), 1, + ACTIONS(5826), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5830), 1, + ACTIONS(5828), 1, anon_sym_DASH_DASH, - ACTIONS(5832), 1, + ACTIONS(5830), 1, anon_sym_DASH2, - ACTIONS(5980), 1, - anon_sym_PIPE, - STATE(2564), 1, + ACTIONS(5956), 1, + anon_sym_RPAREN, + STATE(2559), 1, sym_param_long_flag, - STATE(2724), 1, + STATE(2695), 1, sym__param_name, - STATE(2992), 1, - aux_sym__repeat_newline, - STATE(3007), 1, + STATE(2981), 1, sym_comment, - STATE(3276), 1, + STATE(3043), 1, + aux_sym__repeat_newline, + STATE(3279), 1, aux_sym_parameter_parens_repeat1, - STATE(3462), 1, - sym_param_short_flag, - STATE(3499), 1, + STATE(3514), 1, sym_param_rest, - STATE(3609), 1, + STATE(3607), 1, + sym_param_short_flag, + STATE(3608), 1, sym_param_opt, - STATE(3860), 1, + STATE(3843), 1, sym_parameter, - [93810] = 5, - ACTIONS(105), 1, + [93018] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(914), 1, - sym__space, - ACTIONS(5076), 1, - sym__unquoted_pattern, - STATE(3008), 1, + ACTIONS(2316), 1, + anon_sym_DASH2, + ACTIONS(5958), 1, + anon_sym_DOT_DOT2, + STATE(2982), 1, sym_comment, - ACTIONS(811), 13, + ACTIONS(5960), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2314), 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, + [93048] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5925), 1, sym__newline, + STATE(529), 1, + aux_sym__pipe_separator, + STATE(2983), 1, + sym_comment, + STATE(3647), 1, + aux_sym__repeat_newline, + ACTIONS(5928), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(5962), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -221803,17 +221149,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, - [93838] = 4, - ACTIONS(105), 1, + [93080] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3009), 1, + STATE(2984), 1, sym_comment, - ACTIONS(5247), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5891), 13, + ACTIONS(5391), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221825,15 +221167,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, - [93864] = 3, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [93104] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3010), 1, + ACTIONS(5784), 1, + sym__space, + STATE(2957), 1, + aux_sym_attribute_repeat1, + STATE(2985), 1, sym_comment, - ACTIONS(5982), 15, - anon_sym_EQ, + ACTIONS(5965), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221846,18 +221192,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, - [93888] = 4, + [93132] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3011), 1, - sym_comment, - ACTIONS(5296), 2, - sym__space, + ACTIONS(5287), 1, anon_sym_EQ2, - ACTIONS(5893), 13, + STATE(2986), 1, + sym_comment, + ACTIONS(5967), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221868,39 +221213,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, - [93914] = 4, - ACTIONS(3), 1, + anon_sym_COLON2, + [93158] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1903), 1, - anon_sym_DASH2, - STATE(3012), 1, + ACTIONS(2636), 1, + anon_sym_LPAREN2, + ACTIONS(2638), 1, + sym__unquoted_pattern, + STATE(2987), 1, sym_comment, - ACTIONS(1901), 14, - anon_sym_EQ, - sym_identifier, + ACTIONS(1254), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1238), 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_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [93940] = 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, + [93188] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3013), 1, + STATE(2988), 1, sym_comment, - ACTIONS(1671), 2, + ACTIONS(1669), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1669), 13, + ACTIONS(1667), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -221914,16 +221261,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [93966] = 4, + [93214] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5984), 1, - anon_sym_LT, - STATE(3014), 1, + ACTIONS(5969), 1, + anon_sym_AT2, + STATE(2989), 1, sym_comment, - ACTIONS(5249), 14, - ts_builtin_sym_end, - anon_sym_EQ, + STATE(3234), 1, + sym_param_completer, + ACTIONS(5625), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221935,17 +221282,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_AT2, - [93992] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93242] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5818), 1, + sym_identifier, + ACTIONS(5820), 1, + sym__newline, + ACTIONS(5824), 1, + anon_sym_DOLLAR, + ACTIONS(5826), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5828), 1, + anon_sym_DASH_DASH, + ACTIONS(5830), 1, + anon_sym_DASH2, + ACTIONS(5971), 1, + anon_sym_PIPE, + STATE(2559), 1, + sym_param_long_flag, + STATE(2695), 1, + sym__param_name, + STATE(2929), 1, + aux_sym__repeat_newline, + STATE(2990), 1, + sym_comment, + STATE(3305), 1, + aux_sym_parameter_parens_repeat1, + STATE(3514), 1, + sym_param_rest, + STATE(3607), 1, + sym_param_short_flag, + STATE(3608), 1, + sym_param_opt, + STATE(3843), 1, + sym_parameter, + [93294] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3015), 1, + STATE(2991), 1, sym_comment, - ACTIONS(1774), 3, + ACTIONS(2596), 3, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - ACTIONS(1776), 12, + ACTIONS(2598), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221958,20 +221341,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, sym__unquoted_pattern, - [94018] = 7, + [93320] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5716), 1, - anon_sym_COLON, - ACTIONS(5986), 1, - anon_sym_EQ, - STATE(3016), 1, + ACTIONS(5969), 1, + anon_sym_AT2, + STATE(2992), 1, sym_comment, - STATE(3555), 1, - sym_param_type, - STATE(4930), 1, - aux_sym__repeat_newline, - ACTIONS(5608), 11, + STATE(3241), 1, + sym_param_completer, + ACTIONS(5613), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221983,20 +221362,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, - [94050] = 6, - ACTIONS(105), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93348] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5207), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5988), 1, - anon_sym_DOT, - STATE(3017), 1, - sym_comment, - ACTIONS(1788), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1790), 11, + ACTIONS(1940), 1, sym__newline, + ACTIONS(5973), 1, + anon_sym_finally, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2993), 1, + sym_comment, + ACTIONS(1938), 12, + anon_sym_catch, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222007,19 +221387,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, - [94080] = 6, + anon_sym_RPAREN, + [93378] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5990), 1, - anon_sym_COLON, - STATE(3018), 1, + ACTIONS(5969), 1, + anon_sym_AT2, + STATE(2994), 1, sym_comment, - STATE(3440), 1, - sym_param_type, - STATE(4840), 1, - aux_sym__repeat_newline, - ACTIONS(5608), 12, - ts_builtin_sym_end, + STATE(3242), 1, + sym_param_completer, + ACTIONS(5613), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222031,83 +221409,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, - [94110] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2666), 1, - anon_sym_DASH2, - STATE(3019), 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, - [94136] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3020), 1, - sym_comment, - ACTIONS(1874), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1872), 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, - [94162] = 5, + anon_sym_RBRACE, + [93406] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5670), 1, - aux_sym__immediate_decimal_token5, - STATE(3021), 1, + ACTIONS(5969), 1, + anon_sym_AT2, + STATE(2995), 1, sym_comment, - ACTIONS(1790), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1788), 11, - anon_sym_EQ, + STATE(3246), 1, + sym_param_completer, + ACTIONS(5710), 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, - [94190] = 4, + anon_sym_RBRACE, + [93434] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(3022), 1, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(2129), 1, + anon_sym_LPAREN2, + STATE(2996), 1, sym_comment, - ACTIONS(1866), 3, + ACTIONS(2125), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1868), 12, + ACTIONS(2127), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222119,51 +221458,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [94216] = 17, + [93464] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5820), 1, - sym_identifier, - ACTIONS(5822), 1, - sym__newline, - ACTIONS(5826), 1, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(2935), 1, anon_sym_DOLLAR, - ACTIONS(5828), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5830), 1, - anon_sym_DASH_DASH, - ACTIONS(5832), 1, - anon_sym_DASH2, - ACTIONS(5992), 1, - anon_sym_RPAREN, - STATE(2564), 1, - sym_param_long_flag, - STATE(2724), 1, - sym__param_name, - STATE(2927), 1, - aux_sym__repeat_newline, - STATE(3023), 1, + ACTIONS(5976), 1, + anon_sym_DOT, + STATE(2997), 1, sym_comment, - STATE(3310), 1, - aux_sym_parameter_parens_repeat1, - STATE(3462), 1, - sym_param_short_flag, - STATE(3499), 1, - sym_param_rest, - STATE(3609), 1, - sym_param_opt, - STATE(3860), 1, - sym_parameter, - [94268] = 4, - ACTIONS(3), 1, + STATE(3856), 1, + sym__immediate_decimal, + ACTIONS(5978), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5980), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3914), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1622), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [93504] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5812), 1, - anon_sym_and2, - STATE(3024), 1, + STATE(2998), 1, sym_comment, - ACTIONS(5656), 14, + ACTIONS(1874), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1876), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222175,18 +221508,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, - [94294] = 4, + sym__unquoted_pattern, + [93530] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(3025), 1, + ACTIONS(5633), 1, + anon_sym_EQ2, + STATE(2999), 1, sym_comment, - ACTIONS(1921), 3, + STATE(3271), 1, + sym__flag_equals_value, + ACTIONS(4432), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1923), 12, + ACTIONS(4430), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222198,18 +221533,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, - [94320] = 3, - ACTIONS(3), 1, + [93560] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3026), 1, - sym_comment, - ACTIONS(5615), 15, - ts_builtin_sym_end, - anon_sym_else, - anon_sym_catch, - anon_sym_finally, + ACTIONS(5535), 1, + anon_sym_EQ2, + ACTIONS(5982), 1, sym__newline, + ACTIONS(5984), 1, + sym__space, + STATE(3000), 1, + sym_comment, + STATE(3077), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(5986), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222220,17 +221557,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, - [94344] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + [93592] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5994), 1, - anon_sym_AT2, - STATE(3027), 1, + ACTIONS(5325), 1, + anon_sym_EQ2, + STATE(3001), 1, sym_comment, - STATE(3156), 1, - sym_param_completer, - ACTIONS(5806), 13, + ACTIONS(5988), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222241,21 +221578,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, - [94372] = 6, + anon_sym_COLON2, + [93618] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2608), 1, - anon_sym_LPAREN2, - ACTIONS(2610), 1, - sym__unquoted_pattern, - STATE(3028), 1, + STATE(3002), 1, sym_comment, - ACTIONS(2604), 2, - ts_builtin_sym_end, + ACTIONS(5325), 2, sym__space, - ACTIONS(2606), 11, + anon_sym_EQ2, + ACTIONS(5988), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222267,20 +221600,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, - [94402] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93644] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5996), 1, - anon_sym_catch, - ACTIONS(5998), 1, - anon_sym_finally, - ACTIONS(6000), 1, - sym__newline, - STATE(3029), 1, + STATE(3003), 1, sym_comment, - STATE(3044), 1, - aux_sym__repeat_newline, - ACTIONS(6003), 11, + ACTIONS(5696), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222291,20 +221620,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, - [94434] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [93668] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2672), 1, - anon_sym_LPAREN2, - ACTIONS(2674), 1, - sym__unquoted_pattern, - STATE(3030), 1, + STATE(3004), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(1945), 3, ts_builtin_sym_end, sym__space, - ACTIONS(1616), 11, + anon_sym_LPAREN2, + ACTIONS(1947), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222316,16 +221644,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, - [94464] = 5, + sym__unquoted_pattern, + [93694] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5994), 1, - anon_sym_AT2, - STATE(3031), 1, + ACTIONS(5950), 1, + anon_sym_and2, + STATE(3005), 1, sym_comment, - STATE(3232), 1, - sym_param_completer, - ACTIONS(5539), 13, + ACTIONS(5698), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222337,18 +221665,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, - [94492] = 5, + anon_sym_xor2, + anon_sym_or2, + [93720] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5994), 1, - anon_sym_AT2, - STATE(3032), 1, + ACTIONS(5942), 1, + anon_sym_and2, + STATE(3006), 1, sym_comment, - STATE(3244), 1, - sym_param_completer, - ACTIONS(5539), 13, + ACTIONS(5696), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222360,18 +221687,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, - [94520] = 5, + anon_sym_xor2, + anon_sym_or2, + [93746] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5994), 1, - anon_sym_AT2, - STATE(3033), 1, + ACTIONS(5950), 1, + anon_sym_and2, + ACTIONS(5952), 1, + anon_sym_xor2, + STATE(3007), 1, sym_comment, - STATE(3061), 1, - sym_param_completer, - ACTIONS(5808), 13, + ACTIONS(5698), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222383,20 +221711,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, - [94548] = 5, + anon_sym_or2, + [93774] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5818), 1, - anon_sym_AT2, - STATE(3034), 1, + ACTIONS(5942), 1, + anon_sym_and2, + ACTIONS(5944), 1, + anon_sym_xor2, + STATE(3008), 1, sym_comment, - STATE(3280), 1, - sym_param_completer, - ACTIONS(5806), 13, + ACTIONS(5696), 13, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222408,20 +221734,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [94576] = 7, + anon_sym_or2, + [93802] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6005), 1, - anon_sym_catch, - ACTIONS(6008), 1, - anon_sym_finally, - ACTIONS(6011), 1, - sym__newline, - STATE(2938), 1, - aux_sym__repeat_newline, - STATE(3035), 1, + STATE(3009), 1, sym_comment, - ACTIONS(6015), 11, + ACTIONS(5669), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222432,15 +221753,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, - [94608] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [93826] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5812), 1, + ACTIONS(5950), 1, anon_sym_and2, - STATE(3036), 1, + STATE(3010), 1, sym_comment, - ACTIONS(5652), 14, + ACTIONS(5682), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -222455,16 +221778,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_xor2, anon_sym_or2, - [94634] = 5, - ACTIONS(105), 1, + [93852] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5810), 1, - sym__space, - STATE(2948), 1, - aux_sym_attribute_repeat1, - STATE(3037), 1, + ACTIONS(5942), 1, + anon_sym_and2, + STATE(3011), 1, sym_comment, - ACTIONS(6018), 13, + ACTIONS(5669), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222476,18 +221798,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, - [94662] = 5, - ACTIONS(105), 1, + anon_sym_xor2, + anon_sym_or2, + [93878] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5810), 1, - sym__space, - STATE(2948), 1, - aux_sym_attribute_repeat1, - STATE(3038), 1, + ACTIONS(5950), 1, + anon_sym_and2, + ACTIONS(5952), 1, + anon_sym_xor2, + STATE(3012), 1, sym_comment, - ACTIONS(6020), 13, + ACTIONS(5682), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222499,23 +221822,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, - [94690] = 7, - ACTIONS(3), 1, + anon_sym_or2, + [93906] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5716), 1, - anon_sym_COLON, - ACTIONS(6022), 1, - anon_sym_EQ, - STATE(3039), 1, + ACTIONS(5327), 1, + anon_sym_EQ2, + STATE(3013), 1, sym_comment, - STATE(3591), 1, - sym_param_type, - STATE(4930), 1, - aux_sym__repeat_newline, - ACTIONS(5608), 11, + ACTIONS(5923), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222526,15 +221843,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, - [94722] = 4, - ACTIONS(105), 1, + anon_sym_RBRACE, + anon_sym_COLON2, + [93932] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3040), 1, + ACTIONS(1896), 1, + anon_sym_DASH2, + STATE(3014), 1, sym_comment, - ACTIONS(5308), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5914), 13, + ACTIONS(1894), 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, + [93958] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5942), 1, + anon_sym_and2, + ACTIONS(5944), 1, + anon_sym_xor2, + STATE(3015), 1, + sym_comment, + ACTIONS(5669), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222546,15 +221889,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, - [94748] = 3, - ACTIONS(3), 1, + anon_sym_or2, + [93986] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3041), 1, + ACTIONS(5633), 1, + anon_sym_EQ2, + STATE(3016), 1, sym_comment, - ACTIONS(5267), 15, + STATE(3376), 1, + sym__flag_equals_value, + ACTIONS(5722), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5720), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222566,51 +221914,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, - [94772] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6024), 1, - sym_identifier, - ACTIONS(6029), 1, - anon_sym_DOLLAR, - ACTIONS(6032), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6035), 1, - anon_sym_DASH_DASH, - ACTIONS(6038), 1, - anon_sym_DASH2, - STATE(2564), 1, - sym_param_long_flag, - STATE(2724), 1, - sym__param_name, - STATE(3462), 1, - sym_param_short_flag, - STATE(3499), 1, - sym_param_rest, - STATE(3609), 1, - sym_param_opt, - STATE(3860), 1, - sym_parameter, - STATE(3042), 2, - sym_comment, - aux_sym_parameter_parens_repeat1, - ACTIONS(6027), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - [94818] = 5, + [94016] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_catch, - ACTIONS(6043), 1, - anon_sym_finally, - STATE(3043), 1, + ACTIONS(5857), 1, + anon_sym_AT2, + STATE(3017), 1, sym_comment, - ACTIONS(6045), 13, + STATE(3378), 1, + sym_param_completer, + ACTIONS(5613), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222622,22 +221937,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, - [94846] = 7, + [94044] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6047), 1, - anon_sym_catch, - ACTIONS(6050), 1, - anon_sym_finally, - ACTIONS(6053), 1, - sym__newline, - STATE(2997), 1, - aux_sym__repeat_newline, - STATE(3044), 1, + ACTIONS(5857), 1, + anon_sym_AT2, + STATE(3018), 1, sym_comment, - ACTIONS(6057), 11, + STATE(3381), 1, + sym_param_completer, + ACTIONS(5613), 13, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222648,39 +221960,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, - [94878] = 5, - ACTIONS(3), 1, + [94072] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6060), 1, - aux_sym__immediate_decimal_token5, - STATE(3045), 1, - sym_comment, - ACTIONS(1868), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1866), 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, + ACTIONS(1830), 1, anon_sym_LPAREN2, - [94906] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5840), 1, - anon_sym_and2, - STATE(3046), 1, + STATE(3019), 1, sym_comment, - ACTIONS(5654), 14, + STATE(5375), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2298), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2300), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222692,15 +221984,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, - [94932] = 3, - ACTIONS(3), 1, + [94102] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3047), 1, + ACTIONS(1830), 1, + anon_sym_LPAREN2, + STATE(3020), 1, sym_comment, - ACTIONS(5267), 15, + STATE(5375), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2283), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2285), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222712,15 +222008,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_and2, - anon_sym_xor2, - anon_sym_or2, - [94956] = 3, + [94132] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3048), 1, + STATE(3021), 1, sym_comment, - ACTIONS(5383), 15, + ACTIONS(5682), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -222736,22 +222029,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [94980] = 7, + [94156] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5946), 1, + ACTIONS(5990), 1, + anon_sym_catch, + ACTIONS(5992), 1, + anon_sym_finally, + ACTIONS(5994), 1, sym__newline, - STATE(615), 1, - aux_sym__pipe_separator, - STATE(3049), 1, + STATE(3022), 1, sym_comment, - STATE(3624), 1, + STATE(3042), 1, aux_sym__repeat_newline, - ACTIONS(5949), 3, + ACTIONS(5997), 11, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2075), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -222761,15 +222053,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, - [95012] = 4, + anon_sym_RPAREN, + [94188] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3050), 1, + STATE(3023), 1, sym_comment, - ACTIONS(5350), 2, + ACTIONS(5313), 2, sym__space, anon_sym_EQ2, - ACTIONS(5878), 13, + ACTIONS(5885), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222783,18 +222076,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95038] = 6, + [94214] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1890), 1, - sym__newline, - ACTIONS(6062), 1, + ACTIONS(5999), 1, + anon_sym_catch, + ACTIONS(6002), 1, anon_sym_finally, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3051), 1, + ACTIONS(6005), 1, + sym__newline, + STATE(3024), 1, sym_comment, - ACTIONS(1888), 11, + STATE(3048), 1, + aux_sym__repeat_newline, + ACTIONS(6009), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222806,18 +222101,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [95067] = 6, + [94246] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_LPAREN2, - ACTIONS(6067), 1, + ACTIONS(2253), 1, anon_sym_DASH2, - STATE(3052), 1, + ACTIONS(6012), 1, + anon_sym_DOT_DOT2, + STATE(3025), 1, sym_comment, - STATE(5413), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6065), 11, + ACTIONS(6014), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2251), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222829,41 +222125,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95096] = 6, + [94276] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1890), 1, - sym__newline, - ACTIONS(6069), 1, - anon_sym_finally, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3053), 1, + ACTIONS(2148), 1, + anon_sym_DASH2, + ACTIONS(6016), 1, + anon_sym_DOT_DOT2, + STATE(3026), 1, sym_comment, - ACTIONS(1888), 11, - anon_sym_SEMI, + ACTIONS(6018), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2146), 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, - [95125] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [94306] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6072), 1, - anon_sym_finally, - ACTIONS(6074), 1, - sym__newline, - STATE(3054), 1, + ACTIONS(5554), 1, + anon_sym_COLON, + ACTIONS(6020), 1, + anon_sym_EQ, + STATE(3027), 1, sym_comment, - STATE(3159), 1, + STATE(3489), 1, + sym_param_type, + STATE(4680), 1, aux_sym__repeat_newline, - ACTIONS(6077), 11, + ACTIONS(5552), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222874,19 +222174,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, - [95154] = 6, + [94338] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_LPAREN2, - ACTIONS(6081), 1, + ACTIONS(2273), 1, anon_sym_DASH2, - STATE(3055), 1, + ACTIONS(6022), 1, + anon_sym_DOT_DOT2, + STATE(3028), 1, sym_comment, - STATE(5413), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6079), 11, + ACTIONS(6024), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2271), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222898,16 +222198,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95183] = 5, + [94368] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6083), 1, - anon_sym_LT, - ACTIONS(6085), 1, + ACTIONS(5853), 1, + anon_sym_DOT_DOT2, + ACTIONS(6028), 1, anon_sym_DASH2, - STATE(3056), 1, + STATE(3029), 1, sym_comment, - ACTIONS(5249), 12, + ACTIONS(5855), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(6026), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222917,39 +222220,88 @@ 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, - [95210] = 5, + [94398] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3030), 1, + sym_comment, + ACTIONS(5305), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5847), 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, + [94424] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6085), 1, + ACTIONS(2688), 1, anon_sym_DASH2, - ACTIONS(6087), 1, - anon_sym_LT, - STATE(3057), 1, + STATE(3031), 1, sym_comment, - ACTIONS(5249), 12, + ACTIONS(2686), 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, + [94450] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6030), 1, + aux_sym__immediate_decimal_token5, + STATE(3032), 1, + sym_comment, + ACTIONS(1876), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1874), 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_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95237] = 4, + anon_sym_LPAREN2, + [94478] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4637), 1, - sym__space, - STATE(3058), 1, + ACTIONS(1830), 1, + anon_sym_LPAREN2, + STATE(3033), 1, sym_comment, - ACTIONS(4635), 13, + STATE(5375), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2287), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2289), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222961,16 +222313,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [95262] = 4, + [94508] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4641), 1, + ACTIONS(1830), 1, + anon_sym_LPAREN2, + STATE(3034), 1, + sym_comment, + STATE(5375), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2265), 2, + ts_builtin_sym_end, sym__space, - STATE(3059), 1, + ACTIONS(2267), 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, + [94538] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5857), 1, + anon_sym_AT2, + STATE(3035), 1, sym_comment, - ACTIONS(4639), 13, + STATE(3416), 1, + sym_param_completer, + ACTIONS(5710), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222982,16 +222360,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, - [95287] = 4, + [94566] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4645), 1, + ACTIONS(5535), 1, + anon_sym_EQ2, + ACTIONS(6032), 1, + ts_builtin_sym_end, + ACTIONS(6034), 1, sym__space, - STATE(3060), 1, + STATE(3036), 1, sym_comment, - ACTIONS(4643), 13, + STATE(3066), 1, + aux_sym_attribute_repeat1, + ACTIONS(5531), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223003,15 +222385,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, - [95312] = 3, - ACTIONS(3), 1, + [94598] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3061), 1, + ACTIONS(2720), 1, + anon_sym_LPAREN2, + ACTIONS(2722), 1, + sym__unquoted_pattern, + STATE(3037), 1, sym_comment, - ACTIONS(6089), 14, - anon_sym_EQ, + ACTIONS(1736), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1610), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223023,20 +222409,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, - [95335] = 6, + [94628] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_LPAREN2, - ACTIONS(6093), 1, + ACTIONS(5853), 1, + anon_sym_DOT_DOT2, + ACTIONS(6038), 1, anon_sym_DASH2, - STATE(3062), 1, + STATE(3038), 1, sym_comment, - STATE(5413), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6091), 11, + ACTIONS(5855), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(6036), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223048,36 +222433,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95364] = 6, - ACTIONS(3), 1, + [94658] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5231), 1, + ACTIONS(2612), 1, anon_sym_LPAREN2, - ACTIONS(6097), 1, - anon_sym_DASH2, - STATE(3063), 1, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(3039), 1, sym_comment, - STATE(5413), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6095), 11, + ACTIONS(2608), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2610), 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, + [94688] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3040), 1, + sym_comment, + ACTIONS(6040), 15, 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, - [95393] = 3, + anon_sym_GT2, + anon_sym_RBRACE, + [94712] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3064), 1, + STATE(3041), 1, sym_comment, - ACTIONS(5265), 14, - ts_builtin_sym_end, + ACTIONS(6042), 15, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -223090,22 +222496,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_LBRACE, - [95416] = 7, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_RBRACE, + [94736] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5946), 1, + ACTIONS(6044), 1, + anon_sym_catch, + ACTIONS(6047), 1, + anon_sym_finally, + ACTIONS(6050), 1, sym__newline, - STATE(615), 1, - aux_sym__pipe_separator, - STATE(3065), 1, - sym_comment, - STATE(3624), 1, + STATE(2993), 1, aux_sym__repeat_newline, - ACTIONS(5949), 2, - ts_builtin_sym_end, + STATE(3042), 1, + sym_comment, + ACTIONS(6054), 11, anon_sym_SEMI, - ACTIONS(5951), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223115,18 +222523,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, - [95447] = 6, + anon_sym_RPAREN, + [94768] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6099), 1, - anon_sym_else, - ACTIONS(6101), 1, + ACTIONS(5818), 1, + sym_identifier, + ACTIONS(5820), 1, sym__newline, - STATE(3066), 1, + ACTIONS(5824), 1, + anon_sym_DOLLAR, + ACTIONS(5826), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5828), 1, + anon_sym_DASH_DASH, + ACTIONS(5830), 1, + anon_sym_DASH2, + ACTIONS(6057), 1, + anon_sym_RPAREN, + STATE(2559), 1, + sym_param_long_flag, + STATE(2695), 1, + sym__param_name, + STATE(3043), 1, sym_comment, - STATE(3225), 1, + STATE(3304), 1, + aux_sym_parameter_parens_repeat1, + STATE(3514), 1, + sym_param_rest, + STATE(3542), 1, aux_sym__repeat_newline, - ACTIONS(6104), 11, + STATE(3607), 1, + sym_param_short_flag, + STATE(3608), 1, + sym_param_opt, + STATE(3843), 1, + sym_parameter, + [94820] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5784), 1, + sym__space, + STATE(2975), 1, + aux_sym_attribute_repeat1, + STATE(3044), 1, + sym_comment, + ACTIONS(5531), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223138,18 +222581,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [95476] = 6, + anon_sym_RBRACE, + [94848] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6106), 1, - anon_sym_else, - ACTIONS(6108), 1, + ACTIONS(5818), 1, + sym_identifier, + ACTIONS(5820), 1, sym__newline, - STATE(3067), 1, + ACTIONS(5824), 1, + anon_sym_DOLLAR, + ACTIONS(5826), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5828), 1, + anon_sym_DASH_DASH, + ACTIONS(5830), 1, + anon_sym_DASH2, + ACTIONS(6059), 1, + anon_sym_RBRACK, + STATE(2559), 1, + sym_param_long_flag, + STATE(2695), 1, + sym__param_name, + STATE(3045), 1, sym_comment, - STATE(3229), 1, + STATE(3303), 1, + aux_sym_parameter_parens_repeat1, + STATE(3514), 1, + sym_param_rest, + STATE(3542), 1, aux_sym__repeat_newline, - ACTIONS(6111), 11, + STATE(3607), 1, + sym_param_short_flag, + STATE(3608), 1, + sym_param_opt, + STATE(3843), 1, + sym_parameter, + [94900] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3046), 1, + sym_comment, + ACTIONS(5287), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5967), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223161,14 +222638,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [95505] = 4, + anon_sym_RBRACE, + [94926] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6115), 1, - sym__space, - STATE(3068), 1, + STATE(3047), 1, sym_comment, - ACTIONS(6113), 13, + ACTIONS(5293), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5816), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223182,15 +222661,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95530] = 3, + [94952] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3069), 1, - sym_comment, - ACTIONS(5780), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(1940), 1, sym__newline, + ACTIONS(6061), 1, + anon_sym_finally, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3048), 1, + sym_comment, + ACTIONS(1938), 12, + anon_sym_catch, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223201,19 +222684,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, - [95553] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + [94982] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6117), 1, - anon_sym_else, - ACTIONS(6119), 1, - sym__newline, - STATE(3070), 1, + ACTIONS(910), 1, + sym__space, + ACTIONS(5088), 1, + sym__unquoted_pattern, + STATE(3049), 1, sym_comment, - STATE(3238), 1, - aux_sym__repeat_newline, - ACTIONS(6122), 11, + ACTIONS(811), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223225,38 +222707,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [95582] = 6, + anon_sym_RBRACE, + [95010] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6124), 1, - anon_sym_AT2, - ACTIONS(6126), 1, - anon_sym_DASH2, - STATE(3071), 1, + ACTIONS(6064), 1, + anon_sym_LBRACK2, + STATE(3050), 1, sym_comment, - STATE(3548), 1, - sym_param_completer, - ACTIONS(5539), 11, + ACTIONS(2243), 2, + anon_sym_LBRACK, + anon_sym_DASH2, + ACTIONS(2241), 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, - [95611] = 3, + [95038] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3072), 1, - sym_comment, - ACTIONS(5292), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(6066), 1, + anon_sym_finally, + ACTIONS(6068), 1, sym__newline, + STATE(3051), 1, + sym_comment, + STATE(3200), 1, + aux_sym__repeat_newline, + ACTIONS(6071), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223267,19 +222753,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_LBRACE, - [95634] = 6, + anon_sym_RPAREN, + [95067] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6128), 1, - anon_sym_finally, - ACTIONS(6130), 1, + ACTIONS(2101), 1, + anon_sym_DASH2, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, + sym__unquoted_pattern_in_record, + STATE(3052), 1, + sym_comment, + ACTIONS(2099), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(3073), 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, + [95096] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2533), 1, + sym__space, + STATE(3053), 1, sym_comment, - STATE(3255), 1, - aux_sym__repeat_newline, - ACTIONS(6133), 11, + ACTIONS(2535), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223291,94 +222797,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [95663] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [95121] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5273), 1, - anon_sym_DOT, - ACTIONS(5275), 1, - aux_sym__immediate_decimal_token5, - STATE(3074), 1, + ACTIONS(2686), 1, + sym__space, + STATE(3054), 1, sym_comment, - ACTIONS(1790), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(1788), 10, - anon_sym_EQ, + ACTIONS(2688), 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, - [95692] = 6, + anon_sym_RBRACE, + [95146] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6124), 1, - anon_sym_AT2, - ACTIONS(6135), 1, - anon_sym_DASH2, - STATE(3075), 1, - sym_comment, - STATE(3557), 1, - sym_param_completer, - ACTIONS(5808), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5925), 1, sym__newline, + STATE(529), 1, + aux_sym__pipe_separator, + STATE(3055), 1, + sym_comment, + STATE(3647), 1, + aux_sym__repeat_newline, + ACTIONS(5928), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(1999), 9, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [95721] = 13, - ACTIONS(105), 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, + [95177] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1642), 1, - sym__entry_separator, - ACTIONS(1659), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1756), 1, - anon_sym_DOLLAR, - ACTIONS(6137), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(6139), 1, - anon_sym_DOT, - ACTIONS(6141), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6143), 1, - aux_sym__immediate_decimal_token2, - STATE(3076), 1, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + STATE(3056), 1, sym_comment, - STATE(3833), 1, + STATE(4324), 1, sym__immediate_decimal, - ACTIONS(1644), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6145), 2, + ACTIONS(6073), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6075), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4096), 2, + STATE(851), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [95764] = 6, - ACTIONS(3), 1, + ACTIONS(1622), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [95214] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6147), 1, - anon_sym_finally, - ACTIONS(6149), 1, + STATE(3057), 1, + sym_comment, + ACTIONS(5325), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5988), 11, sym__newline, - STATE(3077), 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, + [95239] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3058), 1, sym_comment, - STATE(3101), 1, - aux_sym__repeat_newline, - ACTIONS(6152), 11, + ACTIONS(5746), 14, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223389,14 +222910,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [95793] = 3, + anon_sym_COLON, + [95262] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3078), 1, + STATE(3059), 1, sym_comment, - ACTIONS(6154), 14, - anon_sym_finally, + ACTIONS(5742), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223408,16 +222930,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, - [95816] = 4, + anon_sym_COLON, + [95285] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6156), 1, + ACTIONS(6077), 1, + anon_sym_catch, + ACTIONS(6079), 1, anon_sym_finally, - STATE(3079), 1, + STATE(3060), 1, sym_comment, - ACTIONS(6158), 13, + ACTIONS(5921), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223429,18 +222953,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, - [95841] = 4, + [95312] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3080), 1, + STATE(3061), 1, sym_comment, - ACTIONS(5296), 3, + ACTIONS(5327), 3, ts_builtin_sym_end, sym__space, anon_sym_EQ2, - ACTIONS(5893), 11, + ACTIONS(5923), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223452,14 +222974,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, - [95866] = 3, - ACTIONS(3), 1, + [95337] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3081), 1, + ACTIONS(1894), 1, + sym__space, + STATE(3062), 1, sym_comment, - ACTIONS(5385), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(1896), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223471,15 +222993,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, - [95889] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95362] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6162), 1, + ACTIONS(2481), 1, sym__space, - STATE(3082), 1, + STATE(3063), 1, sym_comment, - ACTIONS(6160), 13, + ACTIONS(2483), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223493,21 +223016,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95914] = 7, + [95387] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6164), 1, + ACTIONS(6081), 1, sym__newline, - STATE(539), 1, + STATE(619), 1, aux_sym__pipe_separator, - STATE(3083), 1, + STATE(3064), 1, sym_comment, - STATE(3624), 1, + STATE(3647), 1, aux_sym__repeat_newline, - ACTIONS(6167), 2, + ACTIONS(6084), 2, anon_sym_SEMI, anon_sym_RPAREN, - ACTIONS(6169), 9, + ACTIONS(1999), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223517,14 +223040,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, - [95945] = 3, - ACTIONS(3), 1, + [95418] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3084), 1, - sym_comment, - ACTIONS(5387), 14, + ACTIONS(6034), 1, + sym__space, + ACTIONS(6086), 1, ts_builtin_sym_end, - anon_sym_EQ, + STATE(3065), 1, + sym_comment, + STATE(3115), 1, + aux_sym_attribute_repeat1, + ACTIONS(5938), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223536,15 +223063,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_AT2, - [95968] = 3, - ACTIONS(3), 1, + [95447] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3085), 1, - sym_comment, - ACTIONS(5350), 14, + ACTIONS(6034), 1, + sym__space, + ACTIONS(6088), 1, ts_builtin_sym_end, - anon_sym_EQ, + STATE(3066), 1, + sym_comment, + STATE(3083), 1, + aux_sym_attribute_repeat1, + ACTIONS(5940), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223556,15 +223086,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_LBRACE, - [95991] = 3, - ACTIONS(3), 1, + [95476] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3086), 1, + ACTIONS(2405), 1, + sym__space, + STATE(3067), 1, sym_comment, - ACTIONS(1602), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(2407), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223576,70 +223105,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_COLON, - [96014] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95501] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3087), 1, + ACTIONS(2419), 1, + sym__space, + STATE(3068), 1, sym_comment, - ACTIONS(1776), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1774), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2421), 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, - [96039] = 10, + anon_sym_RBRACE, + [95526] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1634), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(1636), 1, - anon_sym_DOT, - ACTIONS(2945), 1, + ACTIONS(1697), 1, + sym__unquoted_pattern, + ACTIONS(2935), 1, anon_sym_DOLLAR, - STATE(3088), 1, + STATE(3069), 1, sym_comment, - STATE(3941), 1, + STATE(4236), 1, sym__immediate_decimal, - ACTIONS(5924), 2, + ACTIONS(6073), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(5926), 2, + ACTIONS(6075), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3940), 2, + STATE(758), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1628), 4, + ACTIONS(1687), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [96076] = 7, - ACTIONS(3), 1, + [95563] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5856), 1, - sym__newline, - STATE(615), 1, - aux_sym__pipe_separator, - STATE(3089), 1, + ACTIONS(2477), 1, + sym__space, + STATE(3070), 1, sym_comment, - STATE(3624), 1, - aux_sym__repeat_newline, - ACTIONS(5859), 2, - ts_builtin_sym_end, + ACTIONS(2479), 13, + sym__newline, anon_sym_SEMI, - ACTIONS(5968), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223649,41 +223174,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, - [96107] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2698), 1, - anon_sym_DASH2, - STATE(3090), 1, - sym_comment, - ACTIONS(2696), 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, - [96136] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [95588] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6172), 1, - anon_sym_else, - ACTIONS(6174), 1, - sym__newline, - STATE(3070), 1, - aux_sym__repeat_newline, - STATE(3091), 1, + ACTIONS(2473), 1, + sym__space, + STATE(3071), 1, sym_comment, - ACTIONS(6177), 11, + ACTIONS(2475), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223695,35 +223196,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96165] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3092), 1, - sym_comment, - ACTIONS(2578), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(2576), 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, - [96190] = 4, + anon_sym_RBRACE, + [95613] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2154), 1, - sym__space, - STATE(3093), 1, + STATE(3072), 1, sym_comment, - ACTIONS(2156), 13, + ACTIONS(5313), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5885), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223735,23 +223218,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, - [96215] = 7, + [95638] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5856), 1, + ACTIONS(5930), 1, sym__newline, - STATE(615), 1, + STATE(529), 1, aux_sym__pipe_separator, - STATE(3094), 1, + STATE(3073), 1, sym_comment, - STATE(3624), 1, + STATE(3647), 1, aux_sym__repeat_newline, - ACTIONS(5859), 2, + ACTIONS(5933), 2, ts_builtin_sym_end, anon_sym_SEMI, - ACTIONS(2075), 9, + ACTIONS(1999), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223761,15 +223242,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, - [96246] = 4, + [95669] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3095), 1, - sym_comment, - ACTIONS(1868), 2, + ACTIONS(1238), 1, anon_sym_DASH2, + ACTIONS(2636), 1, + anon_sym_LPAREN2, + ACTIONS(2638), 1, sym__unquoted_pattern_in_record, - ACTIONS(1866), 12, + STATE(3074), 1, + sym_comment, + ACTIONS(1254), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223781,16 +223265,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [96271] = 4, + [95698] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3096), 1, - sym_comment, - ACTIONS(1923), 2, + ACTIONS(1246), 1, anon_sym_DASH2, + ACTIONS(2636), 1, + anon_sym_LPAREN2, + ACTIONS(2638), 1, sym__unquoted_pattern_in_record, - ACTIONS(1921), 12, + STATE(3075), 1, + sym_comment, + ACTIONS(1262), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223802,22 +223288,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [96296] = 7, - ACTIONS(3), 1, + [95727] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6179), 1, + ACTIONS(5982), 1, sym__newline, - STATE(539), 1, - aux_sym__pipe_separator, - STATE(3097), 1, + ACTIONS(5984), 1, + sym__space, + STATE(3076), 1, sym_comment, - STATE(3624), 1, - aux_sym__repeat_newline, - ACTIONS(6182), 2, + STATE(3123), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(6090), 11, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(6184), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223827,18 +223310,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, - [96327] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + [95756] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6187), 1, - anon_sym_finally, - ACTIONS(6189), 1, + ACTIONS(5982), 1, sym__newline, - STATE(3098), 1, + ACTIONS(5984), 1, + sym__space, + STATE(3077), 1, sym_comment, - STATE(3261), 1, - aux_sym__repeat_newline, - ACTIONS(6192), 11, + STATE(3126), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(6092), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223850,18 +223334,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96356] = 6, + [95785] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1616), 1, + ACTIONS(2610), 1, anon_sym_DASH2, - ACTIONS(2672), 1, + ACTIONS(2612), 1, anon_sym_LPAREN2, - ACTIONS(2674), 1, + ACTIONS(2614), 1, sym__unquoted_pattern_in_record, - STATE(3099), 1, + STATE(3078), 1, sym_comment, - ACTIONS(1738), 11, + ACTIONS(2608), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223873,18 +223357,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [96385] = 4, - ACTIONS(105), 1, + [95814] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3100), 1, - sym_comment, - ACTIONS(5308), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5914), 11, + ACTIONS(6094), 1, sym__newline, + STATE(619), 1, + aux_sym__pipe_separator, + STATE(3079), 1, + sym_comment, + STATE(3647), 1, + aux_sym__repeat_newline, + ACTIONS(6097), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(1999), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223894,18 +223381,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, - [96410] = 6, + [95845] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6194), 1, - anon_sym_finally, - ACTIONS(6196), 1, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + ACTIONS(6099), 1, + anon_sym_DOT, + STATE(3080), 1, + sym_comment, + STATE(3920), 1, + sym__immediate_decimal, + ACTIONS(6101), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6103), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3914), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1622), 3, sym__newline, - STATE(3053), 1, - aux_sym__repeat_newline, - STATE(3101), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [95884] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2553), 1, + sym__space, + STATE(3081), 1, sym_comment, - ACTIONS(6199), 11, + ACTIONS(2555), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223917,14 +223429,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96439] = 4, + anon_sym_RBRACE, + [95909] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5545), 1, + ACTIONS(2441), 1, sym__space, - STATE(3102), 1, + STATE(3082), 1, sym_comment, - ACTIONS(5543), 13, + ACTIONS(2443), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223938,63 +223451,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96464] = 6, + [95934] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6105), 1, + ts_builtin_sym_end, + ACTIONS(6107), 1, + sym__space, + STATE(3083), 2, + sym_comment, + aux_sym_attribute_repeat1, + ACTIONS(5904), 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, + [95961] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_LPAREN2, - ACTIONS(5863), 1, + ACTIONS(811), 1, anon_sym_DASH2, - STATE(3103), 1, + STATE(3084), 1, sym_comment, - STATE(5042), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5861), 11, + ACTIONS(910), 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, - [96493] = 6, + [95986] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3085), 1, + sym_comment, + ACTIONS(5293), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5816), 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, + [96011] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2116), 1, + ACTIONS(1610), 1, anon_sym_DASH2, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern_in_record, - STATE(3104), 1, + STATE(3086), 1, sym_comment, - ACTIONS(2114), 11, + ACTIONS(1736), 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, - [96522] = 5, + [96036] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6201), 1, - ts_builtin_sym_end, - ACTIONS(6203), 1, + ACTIONS(2541), 1, sym__space, - STATE(3105), 2, + STATE(3087), 1, sym_comment, - aux_sym_attribute_repeat1, - ACTIONS(5880), 11, + ACTIONS(2543), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224006,21 +223555,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, - [96549] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96061] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6179), 1, + ACTIONS(2231), 1, + anon_sym_DASH2, + STATE(3088), 1, + sym_comment, + ACTIONS(2229), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(539), 1, - aux_sym__pipe_separator, - STATE(3106), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [96086] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(910), 1, + sym__space, + STATE(3089), 1, sym_comment, - STATE(3624), 1, - aux_sym__repeat_newline, - ACTIONS(6182), 2, + ACTIONS(811), 13, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2075), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -224030,13 +223597,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, - [96580] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96111] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3107), 1, + ACTIONS(2413), 1, + sym__space, + STATE(3090), 1, sym_comment, - ACTIONS(1901), 14, - anon_sym_EQ, + ACTIONS(2415), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224050,18 +223620,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96603] = 6, + [96136] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5912), 1, + ACTIONS(2413), 1, sym__space, - ACTIONS(6206), 1, - ts_builtin_sym_end, - STATE(3108), 1, + STATE(3091), 1, sym_comment, - STATE(3216), 1, - aux_sym_attribute_repeat1, - ACTIONS(5958), 11, + ACTIONS(2415), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224073,14 +223639,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, - [96632] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96161] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2596), 1, + ACTIONS(2616), 1, sym__space, - STATE(3109), 1, + STATE(3092), 1, sym_comment, - ACTIONS(2598), 13, + ACTIONS(2618), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224094,14 +223662,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96657] = 4, + [96186] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2166), 1, + STATE(3093), 1, + sym_comment, + ACTIONS(5287), 3, + ts_builtin_sym_end, sym__space, - STATE(3110), 1, + anon_sym_EQ2, + ACTIONS(5967), 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, + [96211] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2600), 1, + sym__space, + STATE(3094), 1, sym_comment, - ACTIONS(2168), 13, + ACTIONS(2602), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224115,14 +223704,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96682] = 4, + [96236] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2174), 1, + ACTIONS(2229), 1, sym__space, - STATE(3111), 1, + STATE(3095), 1, sym_comment, - ACTIONS(2176), 13, + ACTIONS(2231), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224136,14 +223725,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96707] = 3, - ACTIONS(3), 1, + [96261] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3112), 1, + ACTIONS(1736), 1, + sym__space, + STATE(3096), 1, sym_comment, - ACTIONS(5646), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(1610), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224155,15 +223744,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, - [96730] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96286] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2186), 1, + ACTIONS(2521), 1, sym__space, - STATE(3113), 1, + STATE(3097), 1, sym_comment, - ACTIONS(2188), 13, + ACTIONS(2523), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224177,18 +223767,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96755] = 6, + [96311] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5910), 1, - ts_builtin_sym_end, - ACTIONS(5912), 1, + ACTIONS(2445), 1, sym__space, - STATE(3114), 1, + STATE(3098), 1, sym_comment, - STATE(3117), 1, - aux_sym_attribute_repeat1, - ACTIONS(5458), 11, + ACTIONS(2447), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224200,14 +223786,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, - [96784] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96336] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3115), 1, + ACTIONS(2449), 1, + sym__space, + STATE(3099), 1, sym_comment, - ACTIONS(5389), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(2451), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224219,15 +223807,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_AT2, - [96807] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96361] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2602), 1, + anon_sym_DASH2, + STATE(3100), 1, + sym_comment, + ACTIONS(2600), 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, + [96386] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6210), 1, + ACTIONS(2453), 1, sym__space, - STATE(3116), 1, + STATE(3101), 1, sym_comment, - ACTIONS(6208), 13, + ACTIONS(2455), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224241,18 +223851,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96832] = 6, + [96411] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2618), 1, + anon_sym_DASH2, + STATE(3102), 1, + sym_comment, + ACTIONS(2616), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [96436] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5912), 1, + ACTIONS(2457), 1, sym__space, - ACTIONS(6212), 1, - ts_builtin_sym_end, - STATE(3105), 1, - aux_sym_attribute_repeat1, - STATE(3117), 1, + STATE(3103), 1, sym_comment, - ACTIONS(6018), 11, + ACTIONS(2459), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224264,14 +223891,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, - [96861] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96461] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3118), 1, + ACTIONS(2461), 1, + sym__space, + STATE(3104), 1, sym_comment, - ACTIONS(5391), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(2463), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224283,15 +223912,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, - [96884] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96486] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3119), 1, + ACTIONS(2465), 1, + sym__space, + STATE(3105), 1, sym_comment, - ACTIONS(5393), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(2467), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224303,15 +223933,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_AT2, - [96907] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96511] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3120), 1, + ACTIONS(2714), 1, + anon_sym_DASH2, + ACTIONS(2716), 1, + anon_sym_LPAREN2, + ACTIONS(2718), 1, + sym__unquoted_pattern_in_record, + STATE(3106), 1, sym_comment, - ACTIONS(5395), 14, - ts_builtin_sym_end, + ACTIONS(2712), 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, + [96540] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2469), 1, + sym__space, + STATE(3107), 1, + sym_comment, + ACTIONS(2471), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224323,19 +223977,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_AT2, - [96930] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96565] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_LPAREN2, - ACTIONS(5908), 1, + ACTIONS(1697), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2708), 1, anon_sym_DASH2, - STATE(3121), 1, + ACTIONS(2710), 1, + anon_sym_LPAREN2, + STATE(3108), 1, sym_comment, - STATE(5042), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5906), 11, + ACTIONS(2706), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224347,14 +224002,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [96959] = 4, + [96594] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3109), 1, + sym_comment, + ACTIONS(5269), 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_AT2, + [96617] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2401), 1, + ACTIONS(2525), 1, sym__space, - STATE(3122), 1, + STATE(3110), 1, sym_comment, - ACTIONS(2403), 13, + ACTIONS(2527), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224368,14 +224043,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96984] = 4, + [96642] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2405), 1, + ACTIONS(2485), 1, sym__space, - STATE(3123), 1, + STATE(3111), 1, sym_comment, - ACTIONS(2407), 13, + ACTIONS(2487), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224389,14 +224064,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97009] = 4, + [96667] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2409), 1, + ACTIONS(2489), 1, sym__space, - STATE(3124), 1, + STATE(3112), 1, sym_comment, - ACTIONS(2411), 13, + ACTIONS(2491), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224410,18 +224085,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97034] = 6, + [96692] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5928), 1, - sym__newline, - ACTIONS(5930), 1, + ACTIONS(2529), 1, sym__space, - STATE(3125), 1, + STATE(3113), 1, sym_comment, - STATE(3175), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(6214), 11, + ACTIONS(2531), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224433,12 +224105,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97063] = 3, + anon_sym_RBRACE, + [96717] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3126), 1, + STATE(3114), 1, sym_comment, - ACTIONS(5397), 14, + ACTIONS(5537), 14, ts_builtin_sym_end, anon_sym_EQ, sym__newline, @@ -224453,14 +224126,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_AT2, - [97086] = 3, - ACTIONS(3), 1, + [96740] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3127), 1, - sym_comment, - ACTIONS(5247), 14, + ACTIONS(6034), 1, + sym__space, + ACTIONS(6110), 1, ts_builtin_sym_end, - anon_sym_EQ, + STATE(3083), 1, + aux_sym_attribute_repeat1, + STATE(3115), 1, + sym_comment, + ACTIONS(5965), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224472,15 +224149,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_LBRACE, - [97109] = 3, - ACTIONS(3), 1, + [96769] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3128), 1, + ACTIONS(2271), 1, + sym__space, + STATE(3116), 1, sym_comment, - ACTIONS(5296), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(2273), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224492,19 +224168,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_LBRACE, - [97132] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96794] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5928), 1, - sym__newline, - ACTIONS(5930), 1, + ACTIONS(2146), 1, sym__space, - STATE(3129), 1, + STATE(3117), 1, sym_comment, - STATE(3214), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(6216), 11, + ACTIONS(2148), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224516,14 +224190,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97161] = 4, + anon_sym_RBRACE, + [96819] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2431), 1, + ACTIONS(2251), 1, sym__space, - STATE(3130), 1, + STATE(3118), 1, sym_comment, - ACTIONS(2433), 13, + ACTIONS(2253), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224537,14 +224212,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97186] = 4, + [96844] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2435), 1, + ACTIONS(2582), 1, sym__space, - STATE(3131), 1, + STATE(3119), 1, sym_comment, - ACTIONS(2437), 13, + ACTIONS(2584), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224558,14 +224233,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97211] = 4, + [96869] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2439), 1, + ACTIONS(2537), 1, sym__space, - STATE(3132), 1, + STATE(3120), 1, sym_comment, - ACTIONS(2441), 13, + ACTIONS(2539), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224579,15 +224254,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97236] = 4, - ACTIONS(105), 1, + [96894] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2443), 1, - sym__space, - STATE(3133), 1, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2642), 1, + anon_sym_DASH2, + STATE(3121), 1, sym_comment, - ACTIONS(2445), 13, + ACTIONS(2640), 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, + [96923] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6112), 1, + anon_sym_else, + ACTIONS(6114), 1, sym__newline, + STATE(3122), 1, + sym_comment, + STATE(3134), 1, + aux_sym__repeat_newline, + ACTIONS(6117), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224599,16 +224300,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, - [97261] = 4, + [96952] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2447), 1, + ACTIONS(5982), 1, + sym__newline, + ACTIONS(5984), 1, sym__space, - STATE(3134), 1, + STATE(3123), 1, sym_comment, - ACTIONS(2449), 13, - sym__newline, + STATE(3126), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(6119), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224620,16 +224323,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [97286] = 4, + [96981] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2451), 1, + ACTIONS(1622), 1, sym__space, - STATE(3135), 1, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(3270), 1, + anon_sym_LPAREN2, + ACTIONS(3715), 1, + anon_sym_DOLLAR, + ACTIONS(6121), 1, + anon_sym_DOT, + ACTIONS(6123), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6125), 1, + aux_sym__immediate_decimal_token2, + STATE(3124), 1, + sym_comment, + STATE(3866), 1, + sym__immediate_decimal, + ACTIONS(1626), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6127), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3994), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [97024] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1636), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2127), 1, + anon_sym_DASH2, + ACTIONS(2129), 1, + anon_sym_LPAREN2, + STATE(3125), 1, sym_comment, - ACTIONS(2453), 13, + ACTIONS(2125), 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, + [97053] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6129), 1, sym__newline, + ACTIONS(6132), 1, + sym__space, + STATE(3126), 2, + sym_comment, + aux_sym__command_parenthesized_repeat1, + ACTIONS(6135), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224641,15 +224398,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, - [97311] = 4, + [97080] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1610), 1, + anon_sym_DASH2, + ACTIONS(2720), 1, + anon_sym_LPAREN2, + ACTIONS(2722), 1, + sym__unquoted_pattern_in_record, + STATE(3127), 1, + sym_comment, + ACTIONS(1736), 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, + [97109] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2381), 1, + ACTIONS(1904), 1, sym__space, - STATE(3136), 1, + STATE(3128), 1, sym_comment, - ACTIONS(2383), 13, + ACTIONS(1906), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224663,14 +224442,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97336] = 4, + [97134] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3129), 1, + sym_comment, + ACTIONS(2598), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(2596), 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, + [97159] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(914), 1, - sym__space, - STATE(3137), 1, + STATE(3130), 1, sym_comment, - ACTIONS(811), 13, + ACTIONS(5305), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5847), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224682,17 +224484,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [97361] = 4, + [97184] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1738), 1, + ACTIONS(6032), 1, + ts_builtin_sym_end, + ACTIONS(6034), 1, sym__space, - STATE(3138), 1, + STATE(3066), 1, + aux_sym_attribute_repeat1, + STATE(3131), 1, + sym_comment, + ACTIONS(5531), 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, + [97213] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6137), 1, + anon_sym_else, + ACTIONS(6139), 1, + sym__newline, + STATE(3132), 1, + sym_comment, + STATE(3143), 1, + aux_sym__repeat_newline, + ACTIONS(6142), 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, + [97242] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6144), 1, + anon_sym_else, + ACTIONS(6146), 1, + sym__newline, + STATE(3133), 1, sym_comment, - ACTIONS(1616), 13, + STATE(3144), 1, + aux_sym__repeat_newline, + ACTIONS(6149), 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, + [97271] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6151), 1, + anon_sym_else, + ACTIONS(6153), 1, sym__newline, + STATE(3134), 1, + sym_comment, + STATE(3145), 1, + aux_sym__repeat_newline, + ACTIONS(6156), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224704,15 +224576,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, - [97386] = 4, + [97300] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2277), 1, + ACTIONS(2314), 1, sym__space, - STATE(3139), 1, + STATE(3135), 1, sym_comment, - ACTIONS(2279), 13, + ACTIONS(2316), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224726,21 +224597,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97411] = 7, + [97325] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5946), 1, + ACTIONS(6158), 1, + anon_sym_finally, + ACTIONS(6160), 1, sym__newline, - STATE(615), 1, - aux_sym__pipe_separator, - STATE(3140), 1, + STATE(3136), 1, sym_comment, - STATE(3624), 1, + STATE(3149), 1, aux_sym__repeat_newline, - ACTIONS(5949), 2, - ts_builtin_sym_end, + ACTIONS(6163), 11, anon_sym_SEMI, - ACTIONS(2075), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -224750,17 +224619,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, - [97442] = 5, + anon_sym_RPAREN, + [97354] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6218), 1, - anon_sym_catch, - ACTIONS(6220), 1, - anon_sym_finally, - STATE(3141), 1, + ACTIONS(5228), 1, + anon_sym_LPAREN2, + ACTIONS(6038), 1, + anon_sym_DASH2, + STATE(3137), 1, + sym_comment, + STATE(5049), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6036), 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, + [97383] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3138), 1, sym_comment, - ACTIONS(6045), 12, + ACTIONS(5444), 14, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224772,41 +224662,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, - [97469] = 6, + anon_sym_AT2, + [97406] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6124), 1, + STATE(3139), 1, + sym_comment, + ACTIONS(5429), 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_AT2, - ACTIONS(6222), 1, + [97429] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2407), 1, anon_sym_DASH2, - STATE(3142), 1, + STATE(3140), 1, sym_comment, - STATE(3534), 1, - sym_param_completer, - ACTIONS(5806), 11, + ACTIONS(2405), 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, - [97498] = 6, + [97454] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1890), 1, + ACTIONS(2421), 1, + anon_sym_DASH2, + STATE(3141), 1, + sym_comment, + ACTIONS(2419), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(6224), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [97479] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6165), 1, anon_sym_else, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3143), 1, + ACTIONS(6167), 1, + sym__newline, + STATE(3142), 1, sym_comment, - ACTIONS(1888), 11, + STATE(3159), 1, + aux_sym__repeat_newline, + ACTIONS(6170), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224818,15 +224748,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97527] = 4, - ACTIONS(105), 1, + [97508] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2580), 1, - sym__space, - STATE(3144), 1, - sym_comment, - ACTIONS(2582), 13, + ACTIONS(6172), 1, + anon_sym_else, + ACTIONS(6174), 1, sym__newline, + STATE(3143), 1, + sym_comment, + STATE(3160), 1, + aux_sym__repeat_newline, + ACTIONS(6177), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224838,16 +224771,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, - [97552] = 4, - ACTIONS(105), 1, + [97537] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2710), 1, - sym__space, - STATE(3145), 1, - sym_comment, - ACTIONS(2712), 13, + ACTIONS(6179), 1, + anon_sym_else, + ACTIONS(6181), 1, sym__newline, + STATE(3144), 1, + sym_comment, + STATE(3161), 1, + aux_sym__repeat_newline, + ACTIONS(6184), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224859,42 +224794,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, - [97577] = 6, + [97566] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2662), 1, - anon_sym_DASH2, - ACTIONS(2718), 1, - anon_sym_LPAREN2, - STATE(3146), 1, - sym_comment, - ACTIONS(2660), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1940), 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, - [97606] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6227), 1, - anon_sym_AT2, - STATE(3147), 1, + ACTIONS(6186), 1, + anon_sym_else, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3145), 1, sym_comment, - STATE(3280), 1, - sym_param_completer, - ACTIONS(5806), 12, - ts_builtin_sym_end, - sym__newline, + ACTIONS(1938), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224905,18 +224816,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, - [97633] = 6, + anon_sym_RPAREN, + [97595] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6229), 1, + ACTIONS(6189), 1, anon_sym_finally, - ACTIONS(6231), 1, + ACTIONS(6191), 1, sym__newline, - STATE(3148), 1, + STATE(3146), 1, sym_comment, - STATE(3198), 1, + STATE(3165), 1, aux_sym__repeat_newline, - ACTIONS(6234), 11, + ACTIONS(6194), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224928,45 +224840,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97662] = 10, + [97624] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(2945), 1, - anon_sym_DOLLAR, - STATE(3149), 1, + ACTIONS(6196), 1, + anon_sym_AT2, + ACTIONS(6198), 1, + anon_sym_DASH2, + STATE(3147), 1, sym_comment, - STATE(4290), 1, - sym__immediate_decimal, - ACTIONS(6236), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6238), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(925), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1642), 4, - anon_sym_if, + STATE(3604), 1, + sym_param_completer, + ACTIONS(5710), 11, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_EQ_GT, - [97699] = 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, + [97653] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1890), 1, - sym__newline, - ACTIONS(6240), 1, + ACTIONS(6200), 1, anon_sym_finally, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3150), 1, + ACTIONS(6202), 1, + sym__newline, + STATE(3148), 1, sym_comment, - ACTIONS(1888), 11, + STATE(3167), 1, + aux_sym__repeat_newline, + ACTIONS(6205), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224978,18 +224886,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97728] = 6, + [97682] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6243), 1, + ACTIONS(6207), 1, anon_sym_finally, - ACTIONS(6245), 1, + ACTIONS(6209), 1, sym__newline, - STATE(3151), 1, + STATE(3149), 1, sym_comment, - STATE(3200), 1, + STATE(3171), 1, aux_sym__repeat_newline, - ACTIONS(6248), 11, + ACTIONS(6212), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225001,18 +224909,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97757] = 6, + [97711] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2443), 1, + anon_sym_DASH2, + STATE(3150), 1, + sym_comment, + ACTIONS(2441), 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, + [97736] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2678), 1, - anon_sym_DASH2, - ACTIONS(2684), 1, + ACTIONS(5228), 1, anon_sym_LPAREN2, - ACTIONS(2686), 1, - sym__unquoted_pattern_in_record, - STATE(3152), 1, + ACTIONS(6028), 1, + anon_sym_DASH2, + STATE(3151), 1, sym_comment, - ACTIONS(2676), 11, + STATE(5049), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6026), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -225024,14 +224953,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [97786] = 4, - ACTIONS(105), 1, + [97765] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3152), 1, + sym_comment, + ACTIONS(5413), 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_AT2, + [97788] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1909), 1, - sym__space, STATE(3153), 1, sym_comment, - ACTIONS(1911), 13, + ACTIONS(5411), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225043,16 +224992,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_AT2, [97811] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2584), 1, + ACTIONS(2592), 1, sym__space, STATE(3154), 1, sym_comment, - ACTIONS(2586), 13, + ACTIONS(2594), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225092,7 +225040,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3156), 1, sym_comment, - ACTIONS(6250), 14, + ACTIONS(5401), 14, + ts_builtin_sym_end, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -225105,20 +225054,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, - [97884] = 6, + anon_sym_AT2, + [97884] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1890), 1, - sym__newline, - ACTIONS(6252), 1, - anon_sym_finally, - STATE(501), 1, - aux_sym__repeat_newline, STATE(3157), 1, sym_comment, - ACTIONS(1888), 11, + ACTIONS(5377), 14, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225129,40 +225074,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [97913] = 4, + anon_sym_AT2, + [97907] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2592), 1, - sym__space, + ACTIONS(1622), 1, + sym__entry_separator, + ACTIONS(1636), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1778), 1, + anon_sym_DOLLAR, + ACTIONS(6214), 1, + anon_sym_LPAREN2, + ACTIONS(6216), 1, + anon_sym_DOT, + ACTIONS(6218), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6220), 1, + aux_sym__immediate_decimal_token2, STATE(3158), 1, sym_comment, - ACTIONS(2594), 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, - [97938] = 6, + STATE(3850), 1, + sym__immediate_decimal, + ACTIONS(1626), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6222), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4133), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [97950] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6255), 1, - anon_sym_finally, - ACTIONS(6257), 1, + ACTIONS(6224), 1, + anon_sym_else, + ACTIONS(6226), 1, sym__newline, STATE(3159), 1, sym_comment, - STATE(3212), 1, + STATE(3178), 1, aux_sym__repeat_newline, - ACTIONS(6260), 11, + ACTIONS(6229), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225174,18 +225128,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97967] = 6, + [97979] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6262), 1, - anon_sym_finally, - ACTIONS(6264), 1, + ACTIONS(1940), 1, sym__newline, + ACTIONS(6231), 1, + anon_sym_else, + STATE(522), 1, + aux_sym__repeat_newline, STATE(3160), 1, sym_comment, - STATE(3213), 1, - aux_sym__repeat_newline, - ACTIONS(6267), 11, + ACTIONS(1938), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225197,15 +225151,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97996] = 4, - ACTIONS(105), 1, + [98008] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2385), 1, - sym__space, + ACTIONS(1940), 1, + sym__newline, + ACTIONS(6234), 1, + anon_sym_else, + STATE(522), 1, + aux_sym__repeat_newline, STATE(3161), 1, sym_comment, - ACTIONS(2387), 13, - sym__newline, + ACTIONS(1938), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225217,15 +225174,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, - [98021] = 4, + [98037] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5421), 1, + ACTIONS(2678), 1, sym__space, STATE(3162), 1, sym_comment, - ACTIONS(5419), 13, + ACTIONS(2680), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225239,15 +225195,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98046] = 4, - ACTIONS(105), 1, + [98062] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2389), 1, - sym__space, + ACTIONS(6237), 1, + anon_sym_finally, + ACTIONS(6239), 1, + sym__newline, STATE(3163), 1, sym_comment, - ACTIONS(2391), 13, - sym__newline, + STATE(3179), 1, + aux_sym__repeat_newline, + ACTIONS(6242), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225259,37 +225218,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, - [98071] = 4, - ACTIONS(105), 1, + [98091] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2393), 1, - sym__space, + ACTIONS(2555), 1, + anon_sym_DASH2, STATE(3164), 1, sym_comment, - ACTIONS(2395), 13, + ACTIONS(2553), 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, - [98096] = 4, - ACTIONS(105), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [98116] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, - sym__space, + ACTIONS(6244), 1, + anon_sym_finally, + ACTIONS(6246), 1, + sym__newline, STATE(3165), 1, sym_comment, - ACTIONS(2399), 13, - sym__newline, + STATE(3180), 1, + aux_sym__repeat_newline, + ACTIONS(6249), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225301,37 +225262,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [98121] = 4, - ACTIONS(105), 1, + [98145] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2656), 1, - sym__space, + ACTIONS(6196), 1, + anon_sym_AT2, + ACTIONS(6251), 1, + anon_sym_DASH2, STATE(3166), 1, sym_comment, - ACTIONS(2658), 13, + STATE(3605), 1, + sym_param_completer, + ACTIONS(5613), 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, - [98146] = 4, - ACTIONS(105), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [98174] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6271), 1, - sym__space, + ACTIONS(6253), 1, + anon_sym_finally, + ACTIONS(6255), 1, + sym__newline, STATE(3167), 1, sym_comment, - ACTIONS(6269), 13, - sym__newline, + STATE(3182), 1, + aux_sym__repeat_newline, + ACTIONS(6258), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225343,57 +225308,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [98171] = 4, - ACTIONS(105), 1, + [98203] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5425), 1, - sym__space, + ACTIONS(2543), 1, + anon_sym_DASH2, STATE(3168), 1, sym_comment, - ACTIONS(5423), 13, + ACTIONS(2541), 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, - [98196] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [98228] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2539), 1, + anon_sym_DASH2, STATE(3169), 1, sym_comment, - ACTIONS(6273), 14, - anon_sym_finally, + ACTIONS(2537), 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, - [98219] = 4, - ACTIONS(105), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [98253] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2413), 1, - sym__space, + ACTIONS(2535), 1, + anon_sym_DASH2, STATE(3170), 1, sym_comment, - ACTIONS(2415), 13, + ACTIONS(2533), 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, + [98278] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1940), 1, sym__newline, + ACTIONS(6260), 1, + anon_sym_finally, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3171), 1, + sym_comment, + ACTIONS(1938), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225405,43 +225394,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, - [98244] = 10, + [98307] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - ACTIONS(1711), 1, - sym__unquoted_pattern, - ACTIONS(2945), 1, - anon_sym_DOLLAR, - STATE(3171), 1, - sym_comment, - STATE(4303), 1, - sym__immediate_decimal, - ACTIONS(6236), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6238), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(747), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1689), 4, - anon_sym_if, + ACTIONS(6263), 1, + anon_sym_finally, + ACTIONS(6265), 1, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [98281] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2423), 1, - sym__space, STATE(3172), 1, sym_comment, - ACTIONS(2425), 13, - sym__newline, + STATE(3183), 1, + aux_sym__repeat_newline, + ACTIONS(6268), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225453,15 +225417,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, - [98306] = 4, + [98336] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2427), 1, + ACTIONS(6272), 1, sym__space, STATE(3173), 1, sym_comment, - ACTIONS(2429), 13, + ACTIONS(6270), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225475,39 +225438,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98331] = 4, + [98361] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(811), 1, + ACTIONS(5228), 1, + anon_sym_LPAREN2, + ACTIONS(5851), 1, anon_sym_DASH2, STATE(3174), 1, sym_comment, - ACTIONS(914), 13, + STATE(5049), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5849), 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, - [98356] = 6, - ACTIONS(105), 1, + [98390] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5928), 1, - sym__newline, - ACTIONS(5930), 1, - sym__space, STATE(3175), 1, sym_comment, - STATE(3214), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(6276), 11, + ACTIONS(5364), 14, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225518,36 +225480,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, - [98385] = 4, + anon_sym_AT2, + [98413] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1616), 1, - anon_sym_DASH2, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + ACTIONS(1652), 1, + anon_sym_DOT, + ACTIONS(2935), 1, + anon_sym_DOLLAR, STATE(3176), 1, sym_comment, - ACTIONS(1738), 13, - anon_sym_EQ, - sym_identifier, + STATE(3918), 1, + sym__immediate_decimal, + ACTIONS(5978), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5980), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3921), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1648), 4, + anon_sym_if, 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, - [98410] = 4, + anon_sym_EQ_GT, + [98450] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2279), 1, + ACTIONS(2483), 1, anon_sym_DASH2, STATE(3177), 1, sym_comment, - ACTIONS(2277), 13, + ACTIONS(2481), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -225561,15 +225529,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [98435] = 3, + [98475] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1940), 1, + sym__newline, + ACTIONS(6274), 1, + anon_sym_else, + STATE(522), 1, + aux_sym__repeat_newline, STATE(3178), 1, sym_comment, - ACTIONS(5308), 14, - ts_builtin_sym_end, - anon_sym_EQ, - sym__newline, + ACTIONS(1938), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225580,16 +225551,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_LBRACE, - [98458] = 4, - ACTIONS(105), 1, + anon_sym_RPAREN, + [98504] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2455), 1, - sym__space, + ACTIONS(6277), 1, + anon_sym_finally, + ACTIONS(6279), 1, + sym__newline, STATE(3179), 1, sym_comment, - ACTIONS(2457), 13, - sym__newline, + STATE(3188), 1, + aux_sym__repeat_newline, + ACTIONS(6282), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225601,16 +225575,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, - [98483] = 4, - ACTIONS(105), 1, + [98533] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2455), 1, - sym__space, + ACTIONS(1940), 1, + sym__newline, + ACTIONS(6284), 1, + anon_sym_finally, + STATE(522), 1, + aux_sym__repeat_newline, STATE(3180), 1, sym_comment, - ACTIONS(2457), 13, - sym__newline, + ACTIONS(1938), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225622,39 +225598,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [98508] = 6, + [98562] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6124), 1, - anon_sym_AT2, - ACTIONS(6126), 1, - anon_sym_DASH2, + ACTIONS(6287), 1, + anon_sym_finally, + ACTIONS(6289), 1, + sym__newline, STATE(3181), 1, sym_comment, - STATE(3547), 1, - sym_param_completer, - ACTIONS(5539), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(3191), 1, + aux_sym__repeat_newline, + ACTIONS(6292), 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, - [98537] = 3, + [98591] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1940), 1, + sym__newline, + ACTIONS(6294), 1, + anon_sym_finally, + STATE(522), 1, + aux_sym__repeat_newline, STATE(3182), 1, sym_comment, - ACTIONS(5249), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(1938), 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, + [98620] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6297), 1, + anon_sym_finally, + ACTIONS(6299), 1, sym__newline, + STATE(3183), 1, + sym_comment, + STATE(3195), 1, + aux_sym__repeat_newline, + ACTIONS(6302), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225665,15 +225666,15 @@ static const uint16_t 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, - [98560] = 4, + anon_sym_RPAREN, + [98649] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2582), 1, + ACTIONS(2479), 1, anon_sym_DASH2, - STATE(3183), 1, + STATE(3184), 1, sym_comment, - ACTIONS(2580), 13, + ACTIONS(2477), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -225687,36 +225688,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [98585] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6227), 1, - anon_sym_AT2, - STATE(3184), 1, - sym_comment, - STATE(3347), 1, - sym_param_completer, - ACTIONS(5539), 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, - [98612] = 4, + [98674] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2712), 1, + ACTIONS(2475), 1, anon_sym_DASH2, STATE(3185), 1, sym_comment, - ACTIONS(2710), 13, + ACTIONS(2473), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -225730,36 +225709,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [98637] = 4, - ACTIONS(105), 1, + [98699] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3186), 1, - sym_comment, - ACTIONS(5350), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5878), 11, + ACTIONS(6304), 1, + anon_sym_finally, + ACTIONS(6306), 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, - [98662] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2459), 1, - sym__space, - STATE(3187), 1, + STATE(3186), 1, sym_comment, - ACTIONS(2461), 13, - sym__newline, + STATE(3196), 1, + aux_sym__repeat_newline, + ACTIONS(6309), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225771,15 +225732,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, - [98687] = 4, + [98728] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2463), 1, + ACTIONS(4646), 1, sym__space, - STATE(3188), 1, + STATE(3187), 1, sym_comment, - ACTIONS(2465), 13, + ACTIONS(4644), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225793,69 +225753,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98712] = 7, + [98753] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6164), 1, + ACTIONS(1940), 1, sym__newline, - STATE(539), 1, - aux_sym__pipe_separator, - STATE(3189), 1, - sym_comment, - STATE(3624), 1, + ACTIONS(6311), 1, + anon_sym_finally, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(6167), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2075), 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, - [98743] = 13, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1642), 1, - sym__space, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(3200), 1, - anon_sym_LPAREN2, - ACTIONS(3719), 1, - anon_sym_DOLLAR, - ACTIONS(6278), 1, - anon_sym_DOT, - ACTIONS(6280), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6282), 1, - aux_sym__immediate_decimal_token2, - STATE(3190), 1, - sym_comment, - STATE(3857), 1, - sym__immediate_decimal, - ACTIONS(1644), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6284), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3994), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [98786] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1901), 1, - sym__space, - STATE(3191), 1, + STATE(3188), 1, sym_comment, - ACTIONS(1903), 13, - sym__newline, + ACTIONS(1938), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225867,15 +225776,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, - [98811] = 4, + [98782] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6288), 1, + ACTIONS(4657), 1, sym__space, - STATE(3192), 1, + STATE(3189), 1, sym_comment, - ACTIONS(6286), 13, + ACTIONS(4655), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225889,14 +225797,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98836] = 4, + [98807] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6292), 1, + ACTIONS(4661), 1, sym__space, - STATE(3193), 1, + STATE(3190), 1, sym_comment, - ACTIONS(6290), 13, + ACTIONS(4659), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225910,18 +225818,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98861] = 5, + [98832] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6227), 1, - anon_sym_AT2, - STATE(3194), 1, - sym_comment, - STATE(3363), 1, - sym_param_completer, - ACTIONS(5808), 12, - ts_builtin_sym_end, + ACTIONS(6314), 1, + anon_sym_finally, + ACTIONS(6316), 1, sym__newline, + STATE(3191), 1, + sym_comment, + STATE(3198), 1, + aux_sym__repeat_newline, + ACTIONS(6319), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225932,88 +225840,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, - [98888] = 4, + anon_sym_RPAREN, + [98861] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2586), 1, + ACTIONS(6321), 1, + anon_sym_LT, + ACTIONS(6323), 1, anon_sym_DASH2, - STATE(3195), 1, + STATE(3192), 1, sym_comment, - ACTIONS(2584), 13, + ACTIONS(5269), 12, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [98913] = 4, + [98888] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2590), 1, + ACTIONS(6323), 1, anon_sym_DASH2, - STATE(3196), 1, + ACTIONS(6325), 1, + anon_sym_LT, + STATE(3193), 1, sym_comment, - ACTIONS(2588), 13, + ACTIONS(5269), 12, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [98938] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(2945), 1, - anon_sym_DOLLAR, - ACTIONS(6294), 1, - anon_sym_DOT, - STATE(3197), 1, - sym_comment, - STATE(3908), 1, - sym__immediate_decimal, - ACTIONS(6296), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6298), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3942), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1642), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [98977] = 6, + [98915] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1890), 1, - sym__newline, - ACTIONS(6300), 1, + ACTIONS(6327), 1, anon_sym_finally, - STATE(501), 1, + ACTIONS(6329), 1, + sym__newline, + STATE(3051), 1, aux_sym__repeat_newline, - STATE(3198), 1, + STATE(3194), 1, sym_comment, - ACTIONS(1888), 11, + ACTIONS(6332), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226025,39 +225908,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99006] = 4, + [98944] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2594), 1, - anon_sym_DASH2, - STATE(3199), 1, - sym_comment, - ACTIONS(2592), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(1940), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99031] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6303), 1, + ACTIONS(6334), 1, anon_sym_finally, - ACTIONS(6305), 1, - sym__newline, - STATE(3200), 1, - sym_comment, - STATE(3217), 1, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(6308), 11, + STATE(3195), 1, + sym_comment, + ACTIONS(1938), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226069,18 +225931,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99060] = 6, + [98973] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6310), 1, + ACTIONS(6337), 1, anon_sym_finally, - ACTIONS(6312), 1, + ACTIONS(6339), 1, sym__newline, - STATE(3201), 1, + STATE(3196), 1, sym_comment, - STATE(3219), 1, + STATE(3199), 1, aux_sym__repeat_newline, - ACTIONS(6315), 11, + ACTIONS(6342), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226092,14 +225954,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99089] = 4, - ACTIONS(105), 1, + [99002] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2467), 1, - sym__space, - STATE(3202), 1, + STATE(3197), 1, sym_comment, - ACTIONS(2469), 13, + ACTIONS(2678), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226113,15 +225974,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [99114] = 4, - ACTIONS(105), 1, + [99025] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2471), 1, - sym__space, - STATE(3203), 1, - sym_comment, - ACTIONS(2473), 13, + ACTIONS(1940), 1, sym__newline, + ACTIONS(6344), 1, + anon_sym_finally, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3198), 1, + sym_comment, + ACTIONS(1938), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226133,16 +225997,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, - [99139] = 4, - ACTIONS(105), 1, + [99054] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2664), 1, - sym__space, - STATE(3204), 1, - sym_comment, - ACTIONS(2666), 13, + ACTIONS(1940), 1, sym__newline, + ACTIONS(6347), 1, + anon_sym_finally, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3199), 1, + sym_comment, + ACTIONS(1938), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226154,167 +226020,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [99164] = 4, + [99083] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2387), 1, - anon_sym_DASH2, - STATE(3205), 1, - sym_comment, - ACTIONS(2385), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(1940), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99189] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2391), 1, - anon_sym_DASH2, - STATE(3206), 1, + ACTIONS(6350), 1, + anon_sym_finally, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3200), 1, sym_comment, - ACTIONS(2389), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(1938), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99214] = 4, + [99112] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2395), 1, - anon_sym_DASH2, - STATE(3207), 1, + STATE(3201), 1, sym_comment, - ACTIONS(2393), 13, + ACTIONS(1904), 14, 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_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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, - [99239] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [99135] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2399), 1, - anon_sym_DASH2, - STATE(3208), 1, + ACTIONS(5192), 1, + sym__unquoted_pattern, + STATE(3202), 1, sym_comment, - ACTIONS(2397), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(910), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(811), 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, - [99264] = 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, + [99162] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2415), 1, - anon_sym_DASH2, - STATE(3209), 1, - sym_comment, - ACTIONS(2413), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(6081), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99289] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2425), 1, - anon_sym_DASH2, - STATE(3210), 1, + STATE(619), 1, + aux_sym__pipe_separator, + STATE(3203), 1, sym_comment, - ACTIONS(2423), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + STATE(3647), 1, + aux_sym__repeat_newline, + ACTIONS(6084), 2, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99314] = 4, + ACTIONS(6353), 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, + [99193] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2429), 1, - anon_sym_DASH2, - STATE(3211), 1, + STATE(3204), 1, sym_comment, - ACTIONS(2427), 13, + ACTIONS(1804), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1802), 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, - [99339] = 6, + anon_sym_LPAREN2, + [99218] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1890), 1, + ACTIONS(6094), 1, sym__newline, - ACTIONS(6317), 1, - anon_sym_finally, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3212), 1, + STATE(619), 1, + aux_sym__pipe_separator, + STATE(3205), 1, sym_comment, - ACTIONS(1888), 11, + STATE(3647), 1, + aux_sym__repeat_newline, + ACTIONS(6097), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(6356), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -226324,19 +226154,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [99368] = 6, + [99249] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6320), 1, - anon_sym_finally, - ACTIONS(6322), 1, - sym__newline, - STATE(3051), 1, - aux_sym__repeat_newline, - STATE(3213), 1, + STATE(3206), 1, sym_comment, - ACTIONS(6325), 11, + ACTIONS(1598), 14, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226347,18 +226173,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, - [99397] = 5, + anon_sym_COLON, + [99272] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6327), 1, - sym__newline, - ACTIONS(6330), 1, + ACTIONS(6361), 1, sym__space, - STATE(3214), 2, + STATE(3207), 1, sym_comment, - aux_sym__command_parenthesized_repeat1, - ACTIONS(6333), 11, + ACTIONS(6359), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226370,16 +226194,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99424] = 4, + anon_sym_RBRACE, + [99297] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3215), 1, + STATE(3208), 1, sym_comment, - ACTIONS(5292), 3, + ACTIONS(2247), 3, ts_builtin_sym_end, sym__space, - anon_sym_EQ2, - ACTIONS(5834), 11, + anon_sym_LPAREN2, + ACTIONS(2249), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226391,18 +226216,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, - [99449] = 6, + [99322] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5912), 1, + ACTIONS(4630), 1, sym__space, - ACTIONS(6335), 1, - ts_builtin_sym_end, - STATE(3105), 1, - aux_sym_attribute_repeat1, - STATE(3216), 1, + STATE(3209), 1, sym_comment, - ACTIONS(6020), 11, + ACTIONS(4628), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226414,18 +226235,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, - [99478] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99347] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1890), 1, - sym__newline, - ACTIONS(6337), 1, - anon_sym_finally, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3217), 1, + ACTIONS(5521), 1, + sym__space, + STATE(3210), 1, sym_comment, - ACTIONS(1888), 11, + ACTIONS(5519), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226437,17 +226257,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99507] = 5, + anon_sym_RBRACE, + [99372] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6340), 1, - anon_sym_LBRACK2, - STATE(3218), 1, - sym_comment, - ACTIONS(2375), 2, - ts_builtin_sym_end, + ACTIONS(6365), 1, sym__space, - ACTIONS(2377), 11, + STATE(3211), 1, + sym_comment, + ACTIONS(6363), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226459,18 +226277,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, - [99534] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99397] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6342), 1, - anon_sym_finally, - ACTIONS(6344), 1, + ACTIONS(1943), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(6367), 1, sym__newline, - STATE(3219), 1, - sym_comment, - STATE(3241), 1, + STATE(3212), 2, aux_sym__repeat_newline, - ACTIONS(6347), 11, + sym_comment, + ACTIONS(1938), 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, + [99424] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3213), 1, + sym_comment, + ACTIONS(5305), 14, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226481,19 +226320,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, - [99563] = 6, - ACTIONS(3), 1, + anon_sym_LBRACE, + [99447] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6349), 1, - anon_sym_else, - ACTIONS(6351), 1, - sym__newline, - STATE(3220), 1, + ACTIONS(6372), 1, + sym__space, + STATE(3214), 1, sym_comment, - STATE(3224), 1, - aux_sym__repeat_newline, - ACTIONS(6354), 11, + ACTIONS(6370), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226505,17 +226341,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99592] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [99472] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6227), 1, - anon_sym_AT2, - STATE(3221), 1, + ACTIONS(6376), 1, + sym__space, + STATE(3215), 1, sym_comment, - STATE(3394), 1, - sym_param_completer, - ACTIONS(5539), 12, - ts_builtin_sym_end, + ACTIONS(6374), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226527,14 +226361,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, - [99619] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99497] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6358), 1, + ACTIONS(6380), 1, sym__space, - STATE(3222), 1, + STATE(3216), 1, sym_comment, - ACTIONS(6356), 13, + ACTIONS(6378), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226548,14 +226384,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [99644] = 4, + [99522] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6362), 1, + ACTIONS(6384), 1, sym__space, - STATE(3223), 1, + STATE(3217), 1, sym_comment, - ACTIONS(6360), 13, + ACTIONS(6382), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226569,18 +226405,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [99669] = 6, - ACTIONS(3), 1, + [99547] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6364), 1, - anon_sym_else, - ACTIONS(6366), 1, - sym__newline, - STATE(3143), 1, - aux_sym__repeat_newline, - STATE(3224), 1, + ACTIONS(5726), 1, + sym__space, + STATE(3218), 1, sym_comment, - ACTIONS(6369), 11, + ACTIONS(5724), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226592,18 +226425,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99698] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [99572] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6371), 1, - anon_sym_else, - ACTIONS(6373), 1, - sym__newline, - STATE(3225), 1, + STATE(3219), 1, sym_comment, - STATE(3228), 1, - aux_sym__repeat_newline, - ACTIONS(6376), 11, + ACTIONS(2158), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2160), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226614,17 +226447,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, - [99727] = 4, - ACTIONS(105), 1, + [99597] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3226), 1, + STATE(3220), 1, sym_comment, - ACTIONS(2348), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2350), 11, + ACTIONS(2686), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226636,41 +226465,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, - [99752] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99620] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_LPAREN2, - ACTIONS(5956), 1, - anon_sym_DASH2, - STATE(3227), 1, + STATE(3221), 1, sym_comment, - STATE(5042), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5954), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6386), 14, + anon_sym_finally, 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, - [99781] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [99643] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1890), 1, - sym__newline, - ACTIONS(6378), 1, - anon_sym_else, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3228), 1, + ACTIONS(6388), 1, + anon_sym_LBRACK2, + STATE(3222), 1, sym_comment, - ACTIONS(1888), 11, + ACTIONS(2241), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2243), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226681,19 +226509,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [99810] = 6, + [99670] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6381), 1, - anon_sym_else, - ACTIONS(6383), 1, - sym__newline, - STATE(3229), 1, + ACTIONS(6390), 1, + anon_sym_finally, + STATE(3223), 1, sym_comment, - STATE(3233), 1, - aux_sym__repeat_newline, - ACTIONS(6386), 11, + ACTIONS(6392), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226705,14 +226529,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99839] = 4, + anon_sym_RBRACE, + [99695] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2457), 1, + ACTIONS(2590), 1, anon_sym_DASH2, - STATE(3230), 1, + STATE(3224), 1, sym_comment, - ACTIONS(2455), 13, + ACTIONS(2588), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -226726,14 +226551,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99864] = 4, + [99720] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2457), 1, + ACTIONS(5249), 1, + anon_sym_DOT, + ACTIONS(5251), 1, + aux_sym__immediate_decimal_token5, + STATE(3225), 1, + sym_comment, + ACTIONS(1812), 2, + sym_identifier, anon_sym_DASH2, - STATE(3231), 1, + ACTIONS(1810), 10, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [99749] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2594), 1, + anon_sym_DASH2, + STATE(3226), 1, sym_comment, - ACTIONS(2455), 13, + ACTIONS(2592), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -226747,13 +226595,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99889] = 3, + [99774] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3232), 1, + ACTIONS(6394), 1, + anon_sym_AT2, + STATE(3227), 1, + sym_comment, + STATE(3416), 1, + sym_param_completer, + ACTIONS(5710), 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, + [99801] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6398), 1, + sym__space, + STATE(3228), 1, sym_comment, - ACTIONS(6388), 14, - anon_sym_EQ, + ACTIONS(6396), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226767,18 +226638,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [99912] = 6, + [99826] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1890), 1, - sym__newline, - ACTIONS(6390), 1, - anon_sym_else, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3233), 1, + STATE(3229), 1, sym_comment, - ACTIONS(1888), 11, + ACTIONS(1894), 14, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226790,58 +226657,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99941] = 6, + anon_sym_RBRACE, + [99849] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2606), 1, - anon_sym_DASH2, - ACTIONS(2608), 1, - anon_sym_LPAREN2, - ACTIONS(2610), 1, - sym__unquoted_pattern_in_record, - STATE(3234), 1, + ACTIONS(6394), 1, + anon_sym_AT2, + STATE(3230), 1, sym_comment, - ACTIONS(2604), 11, - anon_sym_EQ, - sym_identifier, + STATE(3378), 1, + sym_param_completer, + ACTIONS(5613), 12, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99970] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1893), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(6393), 1, - sym__newline, - STATE(3235), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1888), 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, - [99997] = 3, - 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, + [99876] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3236), 1, + ACTIONS(6402), 1, + sym__space, + STATE(3231), 1, sym_comment, - ACTIONS(2664), 14, - anon_sym_EQ, + ACTIONS(6400), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226855,14 +226701,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [100020] = 3, - ACTIONS(3), 1, + [99901] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3237), 1, + ACTIONS(6406), 1, + sym__space, + STATE(3232), 1, sym_comment, - ACTIONS(5476), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(6404), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226874,19 +226720,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_AT2, - [100043] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99926] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1890), 1, - sym__newline, - ACTIONS(6396), 1, - anon_sym_else, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3238), 1, + ACTIONS(6394), 1, + anon_sym_AT2, + STATE(3233), 1, sym_comment, - ACTIONS(1888), 11, + STATE(3381), 1, + sym_param_completer, + ACTIONS(5613), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226897,17 +226744,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, - [100072] = 4, - ACTIONS(105), 1, + [99953] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3239), 1, + STATE(3234), 1, sym_comment, - ACTIONS(5265), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5816), 11, + ACTIONS(6408), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226919,14 +226762,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [100097] = 4, - ACTIONS(105), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99976] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6401), 1, - sym__space, - STATE(3240), 1, + STATE(3235), 1, sym_comment, - ACTIONS(6399), 13, + ACTIONS(6410), 14, + anon_sym_finally, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226940,18 +226784,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [100122] = 6, + [99999] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1890), 1, + ACTIONS(6196), 1, + anon_sym_AT2, + ACTIONS(6251), 1, + anon_sym_DASH2, + STATE(3236), 1, + sym_comment, + STATE(3603), 1, + sym_param_completer, + ACTIONS(5613), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(6403), 1, - anon_sym_finally, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3241), 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, + [100028] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3237), 1, sym_comment, - ACTIONS(1888), 11, + ACTIONS(5287), 14, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226962,15 +226826,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [100151] = 4, + anon_sym_LBRACE, + [100051] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2461), 1, + ACTIONS(2491), 1, anon_sym_DASH2, - STATE(3242), 1, + STATE(3238), 1, sym_comment, - ACTIONS(2459), 13, + ACTIONS(2489), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -226984,14 +226848,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100176] = 4, + [100076] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2465), 1, + ACTIONS(2487), 1, anon_sym_DASH2, - STATE(3243), 1, + STATE(3239), 1, sym_comment, - ACTIONS(2463), 13, + ACTIONS(2485), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -227005,12 +226869,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100201] = 3, + [100101] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6415), 1, + sym__space, + STATE(3240), 1, + sym_comment, + ACTIONS(6413), 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, + [100126] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3244), 1, + STATE(3241), 1, sym_comment, - ACTIONS(6388), 14, + ACTIONS(6417), 14, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -227025,18 +226910,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [100224] = 6, + [100149] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6406), 1, - anon_sym_finally, - ACTIONS(6408), 1, - sym__newline, - STATE(3148), 1, - aux_sym__repeat_newline, - STATE(3245), 1, + STATE(3242), 1, sym_comment, - ACTIONS(6411), 11, + ACTIONS(6417), 14, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -227048,18 +226929,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100253] = 6, + anon_sym_RBRACE, + [100172] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1242), 1, + STATE(3243), 1, + sym_comment, + ACTIONS(1876), 2, anon_sym_DASH2, - ACTIONS(2630), 1, - anon_sym_LPAREN2, - ACTIONS(2632), 1, sym__unquoted_pattern_in_record, - STATE(3246), 1, + ACTIONS(1874), 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, + [100197] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5228), 1, + anon_sym_LPAREN2, + ACTIONS(6421), 1, + anon_sym_DASH2, + STATE(3244), 1, + sym_comment, + STATE(5332), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6419), 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, + [100226] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5228), 1, + anon_sym_LPAREN2, + ACTIONS(6425), 1, + anon_sym_DASH2, + STATE(3245), 1, sym_comment, - ACTIONS(1258), 11, + STATE(5332), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6423), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -227071,14 +226997,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100282] = 4, + [100255] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3246), 1, + sym_comment, + ACTIONS(6427), 14, + 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_RPAREN, + anon_sym_RBRACE, + [100278] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4633), 1, + ACTIONS(5409), 1, sym__space, STATE(3247), 1, sym_comment, - ACTIONS(4631), 13, + ACTIONS(5407), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227092,13 +227038,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [100307] = 3, - ACTIONS(3), 1, + [100303] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(6431), 1, + sym__space, STATE(3248), 1, sym_comment, - ACTIONS(1909), 14, - anon_sym_EQ, + ACTIONS(6429), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227112,37 +227059,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [100330] = 6, + [100328] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1234), 1, - anon_sym_DASH2, - ACTIONS(2630), 1, - anon_sym_LPAREN2, - ACTIONS(2632), 1, - sym__unquoted_pattern_in_record, + ACTIONS(6394), 1, + anon_sym_AT2, STATE(3249), 1, sym_comment, - ACTIONS(1250), 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, - [100359] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5501), 1, - sym__space, - STATE(3250), 1, - sym_comment, - ACTIONS(5499), 13, + STATE(3365), 1, + sym_param_completer, + ACTIONS(5625), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227154,18 +227081,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, + [100355] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5228), 1, + anon_sym_LPAREN2, + ACTIONS(6435), 1, + anon_sym_DASH2, + STATE(3250), 1, + sym_comment, + STATE(5332), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6433), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, [100384] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5405), 1, + sym__space, STATE(3251), 1, sym_comment, - ACTIONS(5247), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5891), 11, + ACTIONS(5403), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227177,35 +227123,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, - [100409] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [100409] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2469), 1, + ACTIONS(5228), 1, + anon_sym_LPAREN2, + ACTIONS(6439), 1, anon_sym_DASH2, STATE(3252), 1, sym_comment, - ACTIONS(2467), 13, + STATE(5332), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6437), 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, - [100434] = 4, + [100438] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2473), 1, + ACTIONS(2415), 1, anon_sym_DASH2, STATE(3253), 1, sym_comment, - ACTIONS(2471), 13, + ACTIONS(2413), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -227219,39 +227169,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100459] = 4, - ACTIONS(105), 1, + [100463] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2415), 1, + anon_sym_DASH2, STATE(3254), 1, sym_comment, - ACTIONS(2361), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2363), 11, + ACTIONS(2413), 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, - [100484] = 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, + [100488] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6413), 1, - anon_sym_finally, - ACTIONS(6415), 1, - sym__newline, - STATE(3150), 1, - aux_sym__repeat_newline, STATE(3255), 1, sym_comment, - ACTIONS(6418), 11, + ACTIONS(5327), 14, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -227262,35 +227209,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, - [100513] = 5, - ACTIONS(105), 1, + anon_sym_LBRACE, + [100511] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5171), 1, - sym__unquoted_pattern, STATE(3256), 1, sym_comment, - ACTIONS(914), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(811), 11, + ACTIONS(1947), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1945), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [100540] = 3, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [100536] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3257), 1, sym_comment, - ACTIONS(2656), 14, + ACTIONS(5325), 14, + ts_builtin_sym_end, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -227303,20 +227250,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, - [100563] = 6, + anon_sym_LBRACE, + [100559] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2106), 1, + ACTIONS(6196), 1, + anon_sym_AT2, + ACTIONS(6441), 1, anon_sym_DASH2, - ACTIONS(2108), 1, - anon_sym_LPAREN2, STATE(3258), 1, sym_comment, - ACTIONS(2104), 11, + STATE(3578), 1, + sym_param_completer, + ACTIONS(5625), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -227328,16 +227274,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100592] = 4, - ACTIONS(105), 1, + [100588] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6422), 1, - sym__space, + ACTIONS(5925), 1, + sym__newline, + STATE(529), 1, + aux_sym__pipe_separator, STATE(3259), 1, sym_comment, - ACTIONS(6420), 13, - sym__newline, + STATE(3647), 1, + aux_sym__repeat_newline, + ACTIONS(5928), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(5962), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -227347,16 +227298,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, - [100617] = 4, - ACTIONS(105), 1, + [100619] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6426), 1, - sym__space, STATE(3260), 1, sym_comment, - ACTIONS(6424), 13, + ACTIONS(5293), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227368,20 +227317,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, - [100642] = 6, + anon_sym_LBRACE, + [100642] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6428), 1, - anon_sym_finally, - ACTIONS(6430), 1, - sym__newline, - STATE(3157), 1, - aux_sym__repeat_newline, STATE(3261), 1, sym_comment, - ACTIONS(6433), 11, + ACTIONS(5313), 14, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -227392,17 +227337,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, - [100671] = 4, - ACTIONS(105), 1, + anon_sym_LBRACE, + [100665] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6437), 1, - sym__space, + ACTIONS(5930), 1, + sym__newline, + STATE(529), 1, + aux_sym__pipe_separator, STATE(3262), 1, sym_comment, - ACTIONS(6435), 13, - sym__newline, + STATE(3647), 1, + aux_sym__repeat_newline, + ACTIONS(5933), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(5935), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -227412,17 +227362,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, [100696] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(3263), 1, sym_comment, - ACTIONS(5421), 2, + ACTIONS(2445), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5419), 11, + ACTIONS(2447), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227434,36 +227382,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, - [100720] = 4, + [100720] = 12, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1648), 1, + sym__space, + ACTIONS(3270), 1, + anon_sym_LPAREN2, + ACTIONS(3715), 1, + anon_sym_DOLLAR, + ACTIONS(5008), 1, + anon_sym_DOT, + ACTIONS(6123), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6125), 1, + aux_sym__immediate_decimal_token2, STATE(3264), 1, sym_comment, - ACTIONS(6271), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(6269), 11, + STATE(3995), 1, + sym__immediate_decimal, + ACTIONS(1650), 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, - [100744] = 4, - ACTIONS(105), 1, + ACTIONS(6127), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3996), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [100760] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1940), 1, + sym__newline, + ACTIONS(6443), 1, + anon_sym_else, + STATE(522), 1, + aux_sym__repeat_newline, STATE(3265), 1, sym_comment, - ACTIONS(5425), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5423), 11, - sym__newline, + ACTIONS(1938), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -227474,15 +227432,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [100768] = 4, + [100788] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(3266), 1, sym_comment, - ACTIONS(2431), 2, + ACTIONS(4630), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2433), 11, + ACTIONS(4628), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227494,13 +227452,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, - [100792] = 3, + [100812] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1940), 1, + sym__newline, + ACTIONS(6446), 1, + anon_sym_else, + STATE(522), 1, + aux_sym__repeat_newline, STATE(3267), 1, sym_comment, - ACTIONS(6439), 13, - sym__newline, + ACTIONS(1938), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -227511,18 +227474,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, - [100814] = 4, - ACTIONS(105), 1, + [100840] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1940), 1, + sym__newline, + ACTIONS(6449), 1, + anon_sym_else, + STATE(522), 1, + aux_sym__repeat_newline, STATE(3268), 1, sym_comment, - ACTIONS(2435), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2437), 11, - sym__newline, + ACTIONS(1938), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -227533,12 +227496,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, - [100838] = 3, + [100868] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3269), 1, sym_comment, - ACTIONS(6441), 13, + ACTIONS(2686), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227550,17 +227515,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, - [100860] = 4, + [100890] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(501), 1, + ACTIONS(6226), 1, + sym__newline, + ACTIONS(6452), 1, + anon_sym_else, + STATE(3265), 1, aux_sym__repeat_newline, STATE(3270), 1, sym_comment, - ACTIONS(5718), 12, - sym__newline, + ACTIONS(6229), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -227571,16 +227537,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [100884] = 4, + [100918] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(3271), 1, sym_comment, - ACTIONS(2439), 2, + ACTIONS(4661), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2441), 11, + ACTIONS(4659), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227592,46 +227557,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, - [100908] = 15, - ACTIONS(3), 1, + [100942] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5820), 1, - sym_identifier, - ACTIONS(5826), 1, - anon_sym_DOLLAR, - ACTIONS(5828), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5830), 1, - anon_sym_DASH_DASH, - ACTIONS(5832), 1, - anon_sym_DASH2, - ACTIONS(5966), 1, - anon_sym_RBRACK, - STATE(2564), 1, - sym_param_long_flag, - STATE(2724), 1, - sym__param_name, - STATE(3042), 1, - aux_sym_parameter_parens_repeat1, STATE(3272), 1, sym_comment, - STATE(3462), 1, - sym_param_short_flag, - STATE(3499), 1, - sym_param_rest, - STATE(3609), 1, - sym_param_opt, - STATE(3860), 1, - sym_parameter, - [100954] = 4, + ACTIONS(4657), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4655), 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, + [100966] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(3273), 1, sym_comment, - ACTIONS(5545), 2, + ACTIONS(4646), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5543), 11, + ACTIONS(4644), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227643,16 +227597,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, - [100978] = 4, - ACTIONS(105), 1, + [100990] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1940), 1, + sym__newline, + ACTIONS(6454), 1, + anon_sym_else, + STATE(522), 1, + aux_sym__repeat_newline, STATE(3274), 1, sym_comment, - ACTIONS(6115), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(6113), 11, - sym__newline, + ACTIONS(1938), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -227663,16 +227619,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, - [101002] = 4, - ACTIONS(105), 1, + [101018] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6181), 1, + sym__newline, + ACTIONS(6457), 1, + anon_sym_else, + STATE(3267), 1, + aux_sym__repeat_newline, STATE(3275), 1, sym_comment, - ACTIONS(2443), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2445), 11, + ACTIONS(6184), 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, + [101046] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6174), 1, sym__newline, + ACTIONS(6459), 1, + anon_sym_else, + STATE(3268), 1, + aux_sym__repeat_newline, + STATE(3276), 1, + sym_comment, + ACTIONS(6177), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -227683,47 +227663,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, - [101026] = 15, + [101074] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5820), 1, + ACTIONS(5818), 1, sym_identifier, - ACTIONS(5826), 1, + ACTIONS(5824), 1, anon_sym_DOLLAR, - ACTIONS(5828), 1, + ACTIONS(5826), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5830), 1, + ACTIONS(5828), 1, anon_sym_DASH_DASH, - ACTIONS(5832), 1, + ACTIONS(5830), 1, anon_sym_DASH2, - ACTIONS(5962), 1, - anon_sym_PIPE, - STATE(2564), 1, + ACTIONS(6059), 1, + anon_sym_RBRACK, + STATE(2559), 1, sym_param_long_flag, - STATE(2724), 1, + STATE(2695), 1, sym__param_name, - STATE(3042), 1, + STATE(2955), 1, aux_sym_parameter_parens_repeat1, - STATE(3276), 1, + STATE(3277), 1, sym_comment, - STATE(3462), 1, - sym_param_short_flag, - STATE(3499), 1, + STATE(3514), 1, sym_param_rest, - STATE(3609), 1, + STATE(3607), 1, + sym_param_short_flag, + STATE(3608), 1, sym_param_opt, - STATE(3860), 1, + STATE(3843), 1, sym_parameter, - [101072] = 4, - ACTIONS(105), 1, + [101120] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3277), 1, - sym_comment, - ACTIONS(2447), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2449), 11, + ACTIONS(6167), 1, sym__newline, + ACTIONS(6461), 1, + anon_sym_else, + STATE(3270), 1, + aux_sym__repeat_newline, + STATE(3278), 1, + sym_comment, + ACTIONS(6170), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -227734,16 +227716,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, - [101096] = 4, - ACTIONS(105), 1, + [101148] = 15, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3278), 1, + ACTIONS(5818), 1, + sym_identifier, + ACTIONS(5824), 1, + anon_sym_DOLLAR, + ACTIONS(5826), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5828), 1, + anon_sym_DASH_DASH, + ACTIONS(5830), 1, + anon_sym_DASH2, + ACTIONS(6057), 1, + anon_sym_RPAREN, + STATE(2559), 1, + sym_param_long_flag, + STATE(2695), 1, + sym__param_name, + STATE(2955), 1, + aux_sym_parameter_parens_repeat1, + STATE(3279), 1, sym_comment, - ACTIONS(2451), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2453), 11, + STATE(3514), 1, + sym_param_rest, + STATE(3607), 1, + sym_param_short_flag, + STATE(3608), 1, + sym_param_opt, + STATE(3843), 1, + sym_parameter, + [101194] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6146), 1, sym__newline, + ACTIONS(6463), 1, + anon_sym_else, + STATE(3275), 1, + aux_sym__repeat_newline, + STATE(3280), 1, + sym_comment, + ACTIONS(6149), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -227754,16 +227769,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, - [101120] = 4, - ACTIONS(105), 1, + [101222] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3279), 1, - sym_comment, - ACTIONS(2381), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2383), 11, + ACTIONS(6139), 1, sym__newline, + ACTIONS(6465), 1, + anon_sym_else, + STATE(3276), 1, + aux_sym__repeat_newline, + STATE(3281), 1, + sym_comment, + ACTIONS(6142), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -227774,15 +227791,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, - [101144] = 3, + [101250] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3280), 1, - sym_comment, - ACTIONS(6250), 13, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(6114), 1, sym__newline, + ACTIONS(6467), 1, + anon_sym_else, + STATE(3282), 1, + sym_comment, + STATE(3285), 1, + aux_sym__repeat_newline, + ACTIONS(6117), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -227793,15 +227813,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, - [101166] = 4, + [101278] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6445), 1, - anon_sym_else, - STATE(3281), 1, + STATE(3283), 1, sym_comment, - ACTIONS(6443), 12, - ts_builtin_sym_end, + ACTIONS(6469), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227813,15 +227830,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, - [101190] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [101300] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3282), 1, + STATE(3284), 1, sym_comment, - ACTIONS(2467), 2, + ACTIONS(6272), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2469), 11, + ACTIONS(6270), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227833,16 +227852,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, - [101214] = 4, - ACTIONS(105), 1, + [101324] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3283), 1, - sym_comment, - ACTIONS(2471), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2473), 11, + ACTIONS(6153), 1, sym__newline, + ACTIONS(6471), 1, + anon_sym_else, + STATE(3274), 1, + aux_sym__repeat_newline, + STATE(3285), 1, + sym_comment, + ACTIONS(6156), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -227853,55 +227874,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, - [101238] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6447), 1, - anon_sym_DASH2, - STATE(3284), 1, - sym_comment, - 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, - [101262] = 4, + [101352] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6449), 1, - anon_sym_DASH2, - STATE(3285), 1, - sym_comment, - ACTIONS(5387), 12, + ACTIONS(6473), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [101286] = 4, - ACTIONS(105), 1, - anon_sym_POUND, STATE(3286), 1, sym_comment, - ACTIONS(2186), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2188), 11, + ACTIONS(6475), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227913,15 +227893,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, - [101310] = 4, - ACTIONS(105), 1, + anon_sym_RPAREN, + [101376] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6477), 1, + anon_sym_EQ, STATE(3287), 1, sym_comment, - ACTIONS(2385), 2, + ACTIONS(6475), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2387), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227933,15 +227914,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101334] = 4, - ACTIONS(105), 1, + [101400] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6481), 1, + anon_sym_else, STATE(3288), 1, sym_comment, - ACTIONS(6362), 2, + ACTIONS(6479), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(6360), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227953,40 +227934,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, - [101358] = 12, - ACTIONS(105), 1, + [101424] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1628), 1, - sym__entry_separator, - ACTIONS(1756), 1, - anon_sym_DOLLAR, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6141), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6143), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6451), 1, - anon_sym_DOT, + ACTIONS(6485), 1, + anon_sym_DASH2, STATE(3289), 1, sym_comment, - STATE(4095), 1, - sym__immediate_decimal, - ACTIONS(1632), 2, + ACTIONS(6483), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6145), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4094), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101398] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [101448] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3290), 1, sym_comment, - ACTIONS(6453), 13, + ACTIONS(6402), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6400), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227998,16 +227974,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [101420] = 3, - ACTIONS(3), 1, + [101472] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3291), 1, sym_comment, - ACTIONS(5976), 13, + ACTIONS(6406), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(6404), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228019,42 +227994,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, - [101442] = 12, - ACTIONS(105), 1, + [101496] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1642), 1, - sym__space, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(3200), 1, - anon_sym_LPAREN2, - ACTIONS(3719), 1, - anon_sym_DOLLAR, - ACTIONS(6455), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6457), 1, - aux_sym__immediate_decimal_token2, STATE(3292), 1, sym_comment, - STATE(4336), 1, - sym__immediate_decimal, - ACTIONS(1644), 2, + ACTIONS(6487), 13, sym__newline, anon_sym_SEMI, - ACTIONS(6459), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3113), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101482] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [101518] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6489), 1, + anon_sym_else, STATE(3293), 1, sym_comment, - STATE(3306), 1, - aux_sym__repeat_newline, - ACTIONS(5708), 12, + ACTIONS(6479), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228067,55 +228033,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101506] = 4, + [101542] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6461), 1, - anon_sym_DASH2, STATE(3294), 1, sym_comment, - ACTIONS(5389), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(6491), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [101530] = 4, + anon_sym_RBRACE, + [101564] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6463), 1, - anon_sym_DASH2, STATE(3295), 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, - [101554] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(3296), 1, - sym_comment, - ACTIONS(2664), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2666), 11, + STATE(3356), 1, + aux_sym__repeat_newline, + ACTIONS(5808), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228127,55 +228071,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, - [101578] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6465), 1, - anon_sym_DASH2, - STATE(3297), 1, - sym_comment, - ACTIONS(5393), 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, - [101602] = 4, + [101588] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6467), 1, - anon_sym_DASH2, - STATE(3298), 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, - [101626] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(3299), 1, + STATE(3296), 1, sym_comment, - ACTIONS(2389), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2391), 11, + ACTIONS(6493), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228187,38 +228089,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, - [101650] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(2945), 1, - anon_sym_DOLLAR, - STATE(3300), 1, - sym_comment, - STATE(4371), 1, - sym__immediate_decimal, - ACTIONS(6469), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6471), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(925), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1642), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [101686] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [101610] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3301), 1, + STATE(3297), 1, sym_comment, - ACTIONS(6115), 13, + ACTIONS(6495), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228232,14 +228110,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [101708] = 4, + [101632] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6473), 1, + ACTIONS(6499), 1, + anon_sym_QMARK, + ACTIONS(6501), 1, anon_sym_DASH2, - STATE(3302), 1, + STATE(3298), 1, sym_comment, - ACTIONS(5397), 12, + ACTIONS(6497), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -228249,15 +228129,14 @@ 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, - [101732] = 3, + [101658] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3303), 1, + STATE(3299), 1, sym_comment, - ACTIONS(6475), 13, + ACTIONS(6503), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228271,14 +228150,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [101754] = 3, + [101680] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3304), 1, + STATE(3300), 1, sym_comment, - ACTIONS(6273), 13, + ACTIONS(1904), 13, ts_builtin_sym_end, - anon_sym_finally, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228290,14 +228169,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, - [101776] = 4, + [101702] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3270), 1, - aux_sym__repeat_newline, - STATE(3305), 1, + STATE(3301), 1, sym_comment, - ACTIONS(5788), 12, + ACTIONS(1894), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228309,15 +228188,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [101724] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + ACTIONS(1697), 1, + sym__unquoted_pattern, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + STATE(3302), 1, + sym_comment, + STATE(4392), 1, + sym__immediate_decimal, + ACTIONS(6505), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6507), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(758), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1687), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [101760] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5818), 1, + sym_identifier, + ACTIONS(5824), 1, + anon_sym_DOLLAR, + ACTIONS(5826), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5828), 1, + anon_sym_DASH_DASH, + ACTIONS(5830), 1, + anon_sym_DASH2, + ACTIONS(6509), 1, + anon_sym_RBRACK, + STATE(2559), 1, + sym_param_long_flag, + STATE(2695), 1, + sym__param_name, + STATE(2955), 1, + aux_sym_parameter_parens_repeat1, + STATE(3303), 1, + sym_comment, + STATE(3514), 1, + sym_param_rest, + STATE(3607), 1, + sym_param_short_flag, + STATE(3608), 1, + sym_param_opt, + STATE(3843), 1, + sym_parameter, + [101806] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5818), 1, + sym_identifier, + ACTIONS(5824), 1, + anon_sym_DOLLAR, + ACTIONS(5826), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5828), 1, + anon_sym_DASH_DASH, + ACTIONS(5830), 1, + anon_sym_DASH2, + ACTIONS(6511), 1, anon_sym_RPAREN, - [101800] = 4, + STATE(2559), 1, + sym_param_long_flag, + STATE(2695), 1, + sym__param_name, + STATE(2955), 1, + aux_sym_parameter_parens_repeat1, + STATE(3304), 1, + sym_comment, + STATE(3514), 1, + sym_param_rest, + STATE(3607), 1, + sym_param_short_flag, + STATE(3608), 1, + sym_param_opt, + STATE(3843), 1, + sym_parameter, + [101852] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5818), 1, + sym_identifier, + ACTIONS(5822), 1, + anon_sym_PIPE, + ACTIONS(5824), 1, + anon_sym_DOLLAR, + ACTIONS(5826), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5828), 1, + anon_sym_DASH_DASH, + ACTIONS(5830), 1, + anon_sym_DASH2, + STATE(2559), 1, + sym_param_long_flag, + STATE(2695), 1, + sym__param_name, + STATE(2955), 1, + aux_sym_parameter_parens_repeat1, + STATE(3305), 1, + sym_comment, + STATE(3514), 1, + sym_param_rest, + STATE(3607), 1, + sym_param_short_flag, + STATE(3608), 1, + sym_param_opt, + STATE(3843), 1, + sym_parameter, + [101898] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(501), 1, - aux_sym__repeat_newline, STATE(3306), 1, sym_comment, - ACTIONS(5680), 12, + ACTIONS(6475), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228330,12 +228325,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101824] = 3, + anon_sym_RBRACE, + [101920] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3307), 1, sym_comment, - ACTIONS(6477), 13, + ACTIONS(6272), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228349,12 +228345,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [101846] = 3, - ACTIONS(3), 1, + [101942] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3308), 1, sym_comment, - ACTIONS(6479), 13, + ACTIONS(6361), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6359), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228366,68 +228365,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [101868] = 4, + [101966] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6483), 1, + ACTIONS(6515), 1, anon_sym_DASH2, STATE(3309), 1, sym_comment, - ACTIONS(6481), 12, + ACTIONS(6513), 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, - [101892] = 15, + anon_sym_LPAREN2, + [101990] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5820), 1, + ACTIONS(811), 1, + anon_sym_DASH2, + ACTIONS(5238), 1, + sym__unquoted_pattern_in_record, + STATE(3310), 1, + sym_comment, + ACTIONS(910), 11, + anon_sym_EQ, sym_identifier, - ACTIONS(5824), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - ACTIONS(5826), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5828), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5830), 1, anon_sym_DASH_DASH, - ACTIONS(5832), 1, - anon_sym_DASH2, - STATE(2564), 1, - sym_param_long_flag, - STATE(2724), 1, - sym__param_name, - STATE(3042), 1, - aux_sym_parameter_parens_repeat1, - STATE(3310), 1, - sym_comment, - STATE(3462), 1, - sym_param_short_flag, - STATE(3499), 1, - sym_param_rest, - STATE(3609), 1, - sym_param_opt, - STATE(3860), 1, - sym_parameter, - [101938] = 4, + [102016] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(3311), 1, sym_comment, - ACTIONS(2393), 2, + ACTIONS(5409), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2395), 11, + ACTIONS(5407), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228439,15 +228426,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101962] = 4, + [102040] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(3312), 1, sym_comment, - ACTIONS(2397), 2, + ACTIONS(6431), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2399), 11, + ACTIONS(6429), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228459,15 +228446,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101986] = 4, + [102064] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(3313), 1, sym_comment, - ACTIONS(6288), 2, + ACTIONS(5405), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6286), 11, + ACTIONS(5403), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228479,14 +228466,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, - [102010] = 4, - ACTIONS(105), 1, + [102088] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6487), 1, - sym__space, STATE(3314), 1, sym_comment, - ACTIONS(6485), 12, + ACTIONS(6517), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228499,71 +228484,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [102034] = 12, + anon_sym_RBRACE, + [102110] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1642), 1, - sym__entry_separator, - ACTIONS(1659), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6489), 1, - anon_sym_DOLLAR, - ACTIONS(6491), 1, - anon_sym_LPAREN2, - ACTIONS(6493), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6495), 1, - aux_sym__immediate_decimal_token2, STATE(3315), 1, sym_comment, - STATE(4220), 1, - sym__immediate_decimal, - ACTIONS(1644), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6497), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4414), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [102074] = 12, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1689), 1, + ACTIONS(5521), 2, + ts_builtin_sym_end, sym__space, - ACTIONS(1711), 1, - sym__unquoted_pattern, - ACTIONS(3200), 1, - anon_sym_LPAREN2, - ACTIONS(3719), 1, - anon_sym_DOLLAR, - ACTIONS(6455), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6457), 1, - aux_sym__immediate_decimal_token2, - STATE(3316), 1, - sym_comment, - STATE(4339), 1, - sym__immediate_decimal, - ACTIONS(1691), 2, + ACTIONS(5519), 11, sym__newline, anon_sym_SEMI, - ACTIONS(6459), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3136), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [102114] = 4, - ACTIONS(105), 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, + [102134] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3317), 1, + STATE(3316), 1, sym_comment, - ACTIONS(2455), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2457), 11, + ACTIONS(6519), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228575,15 +228522,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, - [102138] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [102156] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3318), 1, + STATE(3317), 1, sym_comment, - ACTIONS(2455), 2, + ACTIONS(6365), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2457), 11, + ACTIONS(6363), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228595,12 +228544,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, - [102162] = 3, + [102180] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + STATE(3318), 1, + sym_comment, + STATE(4410), 1, + sym__immediate_decimal, + ACTIONS(6505), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6507), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(851), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1622), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [102216] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3319), 1, sym_comment, - ACTIONS(6499), 13, + ACTIONS(6521), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228614,15 +228589,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [102184] = 4, + [102238] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(3320), 1, sym_comment, - ACTIONS(2656), 2, + ACTIONS(910), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2658), 11, + ACTIONS(811), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228634,14 +228609,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [102208] = 3, - ACTIONS(3), 1, + [102262] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(3321), 1, sym_comment, - ACTIONS(5982), 13, + ACTIONS(1736), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(1610), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228653,14 +228629,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, - [102230] = 4, + [102286] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6501), 1, + ACTIONS(6523), 1, anon_sym_else, STATE(3322), 1, sym_comment, - ACTIONS(6443), 12, + ACTIONS(6479), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228673,15 +228649,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, - [102254] = 4, - ACTIONS(105), 1, + [102310] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(3323), 1, sym_comment, - ACTIONS(6292), 2, + ACTIONS(2678), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(6290), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228693,84 +228668,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, - [102278] = 4, + [102332] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6085), 1, - anon_sym_DASH2, STATE(3324), 1, sym_comment, - ACTIONS(5249), 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, - [102302] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6505), 1, - anon_sym_DASH2, - STATE(3325), 1, - sym_comment, - ACTIONS(6503), 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, - [102326] = 13, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1642), 1, - sym__entry_separator, - ACTIONS(1644), 1, - anon_sym_RBRACK, - ACTIONS(1659), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1756), 1, - anon_sym_DOLLAR, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6507), 1, - anon_sym_DOT, - ACTIONS(6509), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6511), 1, - aux_sym__immediate_decimal_token2, - STATE(3326), 1, - sym_comment, - STATE(3918), 1, - sym__immediate_decimal, - ACTIONS(6513), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4049), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [102368] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(3327), 1, - sym_comment, - ACTIONS(2401), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2403), 11, + ACTIONS(6525), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228782,15 +228685,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, - [102392] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [102354] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3328), 1, + STATE(3325), 1, sym_comment, - ACTIONS(914), 2, + ACTIONS(2229), 2, ts_builtin_sym_end, sym__space, - ACTIONS(811), 11, + ACTIONS(2231), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228802,14 +228707,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [102416] = 4, - ACTIONS(3), 1, + [102378] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6515), 1, - anon_sym_EQ, - STATE(3329), 1, + STATE(3326), 1, sym_comment, - ACTIONS(6517), 12, + ACTIONS(6372), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6370), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228821,16 +228727,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [102440] = 4, + [102402] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3330), 1, + STATE(3327), 1, sym_comment, - ACTIONS(2405), 2, + ACTIONS(2600), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2407), 11, + ACTIONS(2602), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228842,14 +228747,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [102464] = 3, - ACTIONS(3), 1, + [102426] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3331), 1, + STATE(3328), 1, sym_comment, - ACTIONS(1909), 13, + ACTIONS(6376), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(6374), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228861,15 +228767,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [102486] = 4, + [102450] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3332), 1, + STATE(3329), 1, sym_comment, - ACTIONS(6210), 2, + ACTIONS(2616), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6208), 11, + ACTIONS(2618), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228881,15 +228787,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [102510] = 4, + [102474] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3333), 1, + STATE(3330), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(2314), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1616), 11, + ACTIONS(2316), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228901,34 +228807,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, - [102534] = 3, - ACTIONS(3), 1, + [102498] = 12, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3334), 1, + ACTIONS(1648), 1, + sym__entry_separator, + ACTIONS(1778), 1, + anon_sym_DOLLAR, + ACTIONS(6214), 1, + anon_sym_LPAREN2, + ACTIONS(6527), 1, + anon_sym_DOT, + ACTIONS(6529), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6531), 1, + aux_sym__immediate_decimal_token2, + STATE(3331), 1, sym_comment, - ACTIONS(6517), 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, + STATE(4118), 1, + sym__immediate_decimal, + ACTIONS(1650), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - [102556] = 4, + ACTIONS(6533), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4119), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [102538] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3335), 1, + STATE(3332), 1, sym_comment, - ACTIONS(2409), 2, + ACTIONS(6380), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2411), 11, + ACTIONS(6378), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228940,15 +228855,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [102580] = 4, + [102562] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3336), 1, + STATE(3333), 1, sym_comment, - ACTIONS(2596), 2, + ACTIONS(6384), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2598), 11, + ACTIONS(6382), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228960,40 +228875,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, - [102604] = 9, + [102586] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - ACTIONS(2945), 1, - anon_sym_DOLLAR, - STATE(923), 1, - sym__immediate_decimal, - STATE(3337), 1, - sym_comment, - ACTIONS(5926), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6519), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(922), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1628), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [102638] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(3338), 1, + STATE(3334), 1, sym_comment, - ACTIONS(2592), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2594), 11, + ACTIONS(6535), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229005,77 +228892,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, - [102662] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5820), 1, - sym_identifier, - ACTIONS(5826), 1, - anon_sym_DOLLAR, - ACTIONS(5828), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5830), 1, - anon_sym_DASH_DASH, - ACTIONS(5832), 1, - anon_sym_DASH2, - ACTIONS(6521), 1, - anon_sym_RBRACK, - STATE(2564), 1, - sym_param_long_flag, - STATE(2724), 1, - sym__param_name, - STATE(3042), 1, - aux_sym_parameter_parens_repeat1, - STATE(3339), 1, - sym_comment, - STATE(3462), 1, - sym_param_short_flag, - STATE(3499), 1, - sym_param_rest, - STATE(3609), 1, - sym_param_opt, - STATE(3860), 1, - sym_parameter, - [102708] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5820), 1, - sym_identifier, - ACTIONS(5826), 1, - anon_sym_DOLLAR, - ACTIONS(5828), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5830), 1, - anon_sym_DASH_DASH, - ACTIONS(5832), 1, - anon_sym_DASH2, - ACTIONS(6523), 1, anon_sym_RPAREN, - STATE(2564), 1, - sym_param_long_flag, - STATE(2724), 1, - sym__param_name, - STATE(3042), 1, - aux_sym_parameter_parens_repeat1, - STATE(3340), 1, - sym_comment, - STATE(3462), 1, - sym_param_short_flag, - STATE(3499), 1, - sym_param_rest, - STATE(3609), 1, - sym_param_opt, - STATE(3860), 1, - sym_parameter, - [102754] = 4, + anon_sym_RBRACE, + [102608] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3341), 1, + STATE(3335), 1, sym_comment, - ACTIONS(2277), 2, + ACTIONS(5726), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2279), 11, + ACTIONS(5724), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229087,14 +228914,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [102778] = 3, - ACTIONS(3), 1, + [102632] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3342), 1, + STATE(3336), 1, sym_comment, - ACTIONS(2656), 13, + ACTIONS(1894), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(1896), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229106,12 +228934,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [102800] = 3, - ACTIONS(3), 1, + [102656] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3343), 1, + STATE(3337), 1, sym_comment, - ACTIONS(6525), 13, + ACTIONS(2678), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2680), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229123,36 +228954,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [102822] = 4, - ACTIONS(3), 1, + [102680] = 13, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6529), 1, - anon_sym_DASH2, - STATE(3344), 1, - sym_comment, - ACTIONS(6527), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1622), 1, + sym__entry_separator, + ACTIONS(1626), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1636), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1778), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + ACTIONS(6214), 1, anon_sym_LPAREN2, - [102846] = 4, + ACTIONS(6529), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6531), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6537), 1, + anon_sym_DOT, + STATE(3338), 1, + sym_comment, + STATE(3886), 1, + sym__immediate_decimal, + ACTIONS(6533), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4114), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [102722] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6531), 1, - anon_sym_EQ, - STATE(3345), 1, + STATE(3339), 1, sym_comment, - ACTIONS(6517), 12, + ACTIONS(4897), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229164,16 +229000,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, - [102870] = 4, - ACTIONS(105), 1, + [102744] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3346), 1, + ACTIONS(6539), 1, + anon_sym_EQ, + STATE(3340), 1, sym_comment, - ACTIONS(1901), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1903), 11, + ACTIONS(6475), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229185,14 +229021,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, - [102894] = 3, + anon_sym_RBRACE, + [102768] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3347), 1, + STATE(3341), 1, sym_comment, - ACTIONS(6388), 13, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(4903), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229204,46 +229039,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, - [102916] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5820), 1, - sym_identifier, - ACTIONS(5826), 1, - anon_sym_DOLLAR, - ACTIONS(5828), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5830), 1, - anon_sym_DASH_DASH, - ACTIONS(5832), 1, - anon_sym_DASH2, - ACTIONS(6533), 1, - anon_sym_RBRACK, - STATE(2564), 1, - sym_param_long_flag, - STATE(2724), 1, - sym__param_name, - STATE(3042), 1, - aux_sym_parameter_parens_repeat1, - STATE(3348), 1, - sym_comment, - STATE(3462), 1, - sym_param_short_flag, - STATE(3499), 1, - sym_param_rest, - STATE(3609), 1, - sym_param_opt, - STATE(3860), 1, - sym_parameter, - [102962] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [102790] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3349), 1, + STATE(3342), 1, sym_comment, - ACTIONS(2413), 2, + ACTIONS(2405), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2415), 11, + ACTIONS(2407), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229255,14 +229061,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, - [102986] = 4, + [102814] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6535), 1, - anon_sym_EQ, - STATE(3350), 1, + STATE(3343), 1, sym_comment, - ACTIONS(6517), 12, + ACTIONS(5732), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229275,14 +229079,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [103010] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [102836] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6537), 1, - anon_sym_else, - STATE(3351), 1, + STATE(3344), 1, sym_comment, - ACTIONS(6443), 12, + ACTIONS(2419), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2421), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229294,83 +229100,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [103034] = 10, - ACTIONS(3), 1, + [102860] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - ACTIONS(1711), 1, - sym__unquoted_pattern, - ACTIONS(2945), 1, + ACTIONS(1648), 1, + sym__entry_separator, + ACTIONS(1778), 1, anon_sym_DOLLAR, - STATE(3352), 1, - sym_comment, - STATE(4377), 1, - sym__immediate_decimal, - ACTIONS(6469), 2, + ACTIONS(6214), 1, + anon_sym_LPAREN2, + ACTIONS(6218), 1, aux_sym__immediate_decimal_token1, + ACTIONS(6220), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6471), 2, + ACTIONS(6527), 1, + anon_sym_DOT, + STATE(3345), 1, + sym_comment, + STATE(4145), 1, + sym__immediate_decimal, + ACTIONS(1650), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6222), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(747), 2, + STATE(4156), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1689), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [103070] = 4, + [102900] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6539), 1, - anon_sym_DASH2, - STATE(3353), 1, - sym_comment, - ACTIONS(5476), 12, - anon_sym_EQ, + ACTIONS(5818), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5824), 1, anon_sym_DOLLAR, - anon_sym_AT2, + ACTIONS(5826), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5828), 1, anon_sym_DASH_DASH, - [103094] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6543), 1, - anon_sym_QMARK, - ACTIONS(6545), 1, + ACTIONS(5830), 1, anon_sym_DASH2, - STATE(3354), 1, - sym_comment, - ACTIONS(6541), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(5861), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [103120] = 4, + STATE(2559), 1, + sym_param_long_flag, + STATE(2695), 1, + sym__param_name, + STATE(2955), 1, + aux_sym_parameter_parens_repeat1, + STATE(3346), 1, + sym_comment, + STATE(3514), 1, + sym_param_rest, + STATE(3607), 1, + sym_param_short_flag, + STATE(3608), 1, + sym_param_opt, + STATE(3843), 1, + sym_parameter, + [102946] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3355), 1, + STATE(3347), 1, sym_comment, - ACTIONS(2580), 2, + ACTIONS(2588), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2582), 11, + ACTIONS(2590), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229382,43 +229179,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, - [103144] = 12, - ACTIONS(105), 1, + [102970] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1628), 1, - sym__space, - ACTIONS(3200), 1, - anon_sym_LPAREN2, - ACTIONS(3719), 1, - anon_sym_DOLLAR, - ACTIONS(4990), 1, - anon_sym_DOT, - ACTIONS(6280), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6282), 1, - aux_sym__immediate_decimal_token2, - STATE(3356), 1, + STATE(3348), 1, sym_comment, - STATE(3987), 1, - sym__immediate_decimal, - ACTIONS(1632), 2, + ACTIONS(6541), 13, sym__newline, anon_sym_SEMI, - ACTIONS(6284), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4106), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103184] = 4, - ACTIONS(105), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [102992] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3357), 1, + STATE(3349), 1, sym_comment, - ACTIONS(6401), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(6399), 11, + ACTIONS(6543), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229430,15 +229215,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, - [103208] = 4, - ACTIONS(105), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [103014] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3358), 1, + STATE(3350), 1, sym_comment, - ACTIONS(2710), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2712), 11, + ACTIONS(6545), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229450,15 +229234,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, - [103232] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [103036] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3359), 1, + STATE(3351), 1, sym_comment, - ACTIONS(2166), 2, + ACTIONS(2592), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2168), 11, + ACTIONS(2594), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229470,15 +229256,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, - [103256] = 4, - ACTIONS(105), 1, + [103060] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3360), 1, + STATE(3352), 1, sym_comment, - ACTIONS(5501), 2, + ACTIONS(6386), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(5499), 11, + anon_sym_finally, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229490,46 +229275,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [103280] = 15, + [103082] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5820), 1, - sym_identifier, - ACTIONS(5826), 1, - anon_sym_DOLLAR, - ACTIONS(5828), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5830), 1, - anon_sym_DASH_DASH, - ACTIONS(5832), 1, - anon_sym_DASH2, ACTIONS(6547), 1, - anon_sym_RPAREN, - STATE(2564), 1, - sym_param_long_flag, - STATE(2724), 1, - sym__param_name, - STATE(3042), 1, - aux_sym_parameter_parens_repeat1, - STATE(3361), 1, - sym_comment, - STATE(3462), 1, - sym_param_short_flag, - STATE(3499), 1, - sym_param_rest, - STATE(3609), 1, - sym_param_opt, - STATE(3860), 1, - sym_parameter, - [103326] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(3362), 1, + anon_sym_finally, + STATE(3353), 1, sym_comment, - ACTIONS(2154), 2, + ACTIONS(6392), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2156), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229541,14 +229295,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, - [103350] = 3, + [103106] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3363), 1, - sym_comment, - ACTIONS(6089), 13, - ts_builtin_sym_end, + ACTIONS(6549), 1, anon_sym_EQ, + STATE(3354), 1, + sym_comment, + ACTIONS(6475), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229560,15 +229314,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [103372] = 4, - ACTIONS(105), 1, + anon_sym_RPAREN, + [103130] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3364), 1, + STATE(3355), 1, sym_comment, - ACTIONS(2459), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2461), 11, + STATE(3373), 1, + aux_sym__repeat_newline, + ACTIONS(5776), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229580,35 +229334,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [103396] = 4, + anon_sym_RPAREN, + [103154] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2128), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(3365), 1, - sym_comment, - ACTIONS(2126), 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, - [103420] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(3366), 1, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3356), 1, sym_comment, - ACTIONS(2463), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2465), 11, + ACTIONS(5770), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229620,15 +229354,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [103444] = 4, + anon_sym_RPAREN, + [103178] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3367), 1, - sym_comment, - ACTIONS(2174), 2, - ts_builtin_sym_end, + ACTIONS(6553), 1, sym__space, - ACTIONS(2176), 11, + STATE(3357), 1, + sym_comment, + ACTIONS(6551), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229640,88 +229374,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, - [103468] = 12, + anon_sym_RPAREN, + [103202] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1628), 1, - sym__entry_separator, - ACTIONS(1756), 1, - anon_sym_DOLLAR, - ACTIONS(6137), 1, + ACTIONS(1622), 1, + sym__space, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(3270), 1, anon_sym_LPAREN2, - ACTIONS(6451), 1, - anon_sym_DOT, - ACTIONS(6509), 1, + ACTIONS(3715), 1, + anon_sym_DOLLAR, + ACTIONS(6555), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6511), 1, + ACTIONS(6557), 1, aux_sym__immediate_decimal_token2, - STATE(3368), 1, + STATE(3358), 1, sym_comment, - STATE(4042), 1, + STATE(4256), 1, sym__immediate_decimal, - ACTIONS(1632), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6513), 2, + ACTIONS(1626), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6559), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4028), 2, + STATE(3116), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103508] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3369), 1, - sym_comment, - ACTIONS(6154), 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, - [103530] = 13, + [103242] = 13, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1642), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(1644), 1, + ACTIONS(1626), 1, anon_sym_RBRACE, - ACTIONS(1659), 1, + ACTIONS(1636), 1, sym__unquoted_pattern_in_record, - ACTIONS(1756), 1, + ACTIONS(1778), 1, anon_sym_DOLLAR, - ACTIONS(6137), 1, + ACTIONS(6214), 1, anon_sym_LPAREN2, - ACTIONS(6549), 1, + ACTIONS(6561), 1, anon_sym_DOT, - ACTIONS(6551), 1, + ACTIONS(6563), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6553), 1, + ACTIONS(6565), 1, aux_sym__immediate_decimal_token2, - STATE(3370), 1, + STATE(3359), 1, sym_comment, - STATE(3913), 1, + STATE(3889), 1, sym__immediate_decimal, - ACTIONS(6555), 2, + ACTIONS(6567), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4049), 2, + STATE(4114), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103572] = 3, + [103284] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(3371), 1, + ACTIONS(5818), 1, + sym_identifier, + ACTIONS(5824), 1, + anon_sym_DOLLAR, + ACTIONS(5826), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5828), 1, + anon_sym_DASH_DASH, + ACTIONS(5830), 1, + anon_sym_DASH2, + ACTIONS(5859), 1, + anon_sym_RBRACK, + STATE(2559), 1, + sym_param_long_flag, + STATE(2695), 1, + sym__param_name, + STATE(2955), 1, + aux_sym_parameter_parens_repeat1, + STATE(3360), 1, + sym_comment, + STATE(3514), 1, + sym_param_rest, + STATE(3607), 1, + sym_param_short_flag, + STATE(3608), 1, + sym_param_opt, + STATE(3843), 1, + sym_parameter, + [103330] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3361), 1, sym_comment, - ACTIONS(5638), 13, + ACTIONS(1904), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1906), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229733,17 +229483,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, + [103354] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6571), 1, + anon_sym_DASH2, + STATE(3362), 1, + sym_comment, + ACTIONS(6569), 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_RBRACE, - [103594] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [103378] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3372), 1, + STATE(3363), 1, sym_comment, - ACTIONS(2423), 2, + ACTIONS(2441), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2425), 11, + ACTIONS(2443), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229755,15 +229523,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, - [103618] = 4, - ACTIONS(105), 1, + [103402] = 15, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3373), 1, + ACTIONS(5818), 1, + sym_identifier, + ACTIONS(5824), 1, + anon_sym_DOLLAR, + ACTIONS(5826), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5828), 1, + anon_sym_DASH_DASH, + ACTIONS(5830), 1, + anon_sym_DASH2, + ACTIONS(6573), 1, + anon_sym_PIPE, + STATE(2559), 1, + sym_param_long_flag, + STATE(2695), 1, + sym__param_name, + STATE(2955), 1, + aux_sym_parameter_parens_repeat1, + STATE(3364), 1, + sym_comment, + STATE(3514), 1, + sym_param_rest, + STATE(3607), 1, + sym_param_short_flag, + STATE(3608), 1, + sym_param_opt, + STATE(3843), 1, + sym_parameter, + [103448] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3365), 1, sym_comment, - ACTIONS(2427), 2, + ACTIONS(6408), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2429), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229775,74 +229573,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [103642] = 15, + [103470] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5820), 1, + ACTIONS(5818), 1, sym_identifier, - ACTIONS(5826), 1, + ACTIONS(5824), 1, anon_sym_DOLLAR, - ACTIONS(5828), 1, + ACTIONS(5826), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5830), 1, + ACTIONS(5828), 1, anon_sym_DASH_DASH, - ACTIONS(5832), 1, + ACTIONS(5830), 1, anon_sym_DASH2, - ACTIONS(5887), 1, + ACTIONS(6575), 1, anon_sym_RBRACK, - STATE(2564), 1, + STATE(2559), 1, sym_param_long_flag, - STATE(2724), 1, + STATE(2695), 1, sym__param_name, - STATE(3042), 1, + STATE(2955), 1, aux_sym_parameter_parens_repeat1, - STATE(3374), 1, + STATE(3366), 1, sym_comment, - STATE(3462), 1, - sym_param_short_flag, - STATE(3499), 1, + STATE(3514), 1, sym_param_rest, - STATE(3609), 1, + STATE(3607), 1, + sym_param_short_flag, + STATE(3608), 1, sym_param_opt, - STATE(3860), 1, + STATE(3843), 1, sym_parameter, - [103688] = 9, + [103516] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - ACTIONS(2945), 1, + ACTIONS(5818), 1, + sym_identifier, + ACTIONS(5824), 1, anon_sym_DOLLAR, - STATE(761), 1, - sym__immediate_decimal, - STATE(3375), 1, + ACTIONS(5826), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5828), 1, + anon_sym_DASH_DASH, + ACTIONS(5830), 1, + anon_sym_DASH2, + ACTIONS(6577), 1, + anon_sym_RPAREN, + STATE(2559), 1, + sym_param_long_flag, + STATE(2695), 1, + sym__param_name, + STATE(2955), 1, + aux_sym_parameter_parens_repeat1, + STATE(3367), 1, sym_comment, - ACTIONS(5926), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6519), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(760), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1707), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [103722] = 6, - ACTIONS(3), 1, + STATE(3514), 1, + sym_param_rest, + STATE(3607), 1, + sym_param_short_flag, + STATE(3608), 1, + sym_param_opt, + STATE(3843), 1, + sym_parameter, + [103562] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6174), 1, - sym__newline, - ACTIONS(6557), 1, - anon_sym_else, - STATE(3376), 1, + STATE(3368), 1, sym_comment, - STATE(3379), 1, - aux_sym__repeat_newline, - ACTIONS(6177), 10, + ACTIONS(2489), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2491), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229853,18 +229655,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [103750] = 6, + [103586] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6101), 1, - sym__newline, - ACTIONS(6559), 1, - anon_sym_else, - STATE(3377), 1, + STATE(3369), 1, sym_comment, - STATE(3381), 1, - aux_sym__repeat_newline, - ACTIONS(6104), 10, + ACTIONS(6410), 13, + ts_builtin_sym_end, + anon_sym_finally, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229875,18 +229674,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, - [103778] = 6, - ACTIONS(3), 1, + [103608] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6108), 1, - sym__newline, - ACTIONS(6561), 1, - anon_sym_else, - STATE(3378), 1, + STATE(3370), 1, sym_comment, - STATE(3382), 1, - aux_sym__repeat_newline, - ACTIONS(6111), 10, + ACTIONS(6398), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6396), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229897,18 +229694,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, - [103806] = 6, - ACTIONS(3), 1, + [103632] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6119), 1, - sym__newline, - ACTIONS(6563), 1, - anon_sym_else, - STATE(3379), 1, + STATE(3371), 1, sym_comment, - STATE(3383), 1, - aux_sym__repeat_newline, - ACTIONS(6122), 10, + ACTIONS(2485), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2487), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229919,18 +229714,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, - [103834] = 6, - ACTIONS(3), 1, + [103656] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6351), 1, - sym__newline, - ACTIONS(6565), 1, - anon_sym_else, - STATE(3380), 1, + STATE(3372), 1, sym_comment, - STATE(3384), 1, - aux_sym__repeat_newline, - ACTIONS(6354), 10, + ACTIONS(2413), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2415), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229941,18 +229734,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [103862] = 6, + [103680] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6373), 1, - sym__newline, - ACTIONS(6567), 1, - anon_sym_else, - STATE(3381), 1, - sym_comment, - STATE(3385), 1, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(6376), 10, + STATE(3373), 1, + sym_comment, + ACTIONS(5688), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229963,18 +229753,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, - [103890] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + [103704] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6383), 1, - sym__newline, - ACTIONS(6569), 1, - anon_sym_else, - STATE(3382), 1, + STATE(3374), 1, sym_comment, - STATE(3386), 1, - aux_sym__repeat_newline, - ACTIONS(6386), 10, + ACTIONS(2582), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2584), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229985,18 +229774,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, - [103918] = 6, - ACTIONS(3), 1, + [103728] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1890), 1, + STATE(3375), 1, + sym_comment, + ACTIONS(2413), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2415), 11, sym__newline, - ACTIONS(6571), 1, - anon_sym_else, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3383), 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, + [103752] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3376), 1, sym_comment, - ACTIONS(1888), 10, + ACTIONS(6415), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6413), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -230007,18 +229814,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, - [103946] = 6, + [103776] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6366), 1, + ACTIONS(2113), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(3377), 1, + sym_comment, + ACTIONS(2111), 12, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, sym__newline, - ACTIONS(6574), 1, - anon_sym_else, - STATE(3384), 1, + 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, + [103800] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3378), 1, sym_comment, - STATE(3387), 1, - aux_sym__repeat_newline, - ACTIONS(6369), 10, + ACTIONS(6417), 13, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -230029,18 +229853,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [103974] = 6, + [103822] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1890), 1, - sym__newline, - ACTIONS(6576), 1, - anon_sym_else, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3385), 1, + STATE(3379), 1, sym_comment, - ACTIONS(1888), 10, + ACTIONS(6042), 13, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -230051,18 +229872,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, - [104002] = 6, - ACTIONS(3), 1, + [103844] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1890), 1, - sym__newline, - ACTIONS(6579), 1, - anon_sym_else, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3386), 1, + STATE(3380), 1, sym_comment, - ACTIONS(1888), 10, + ACTIONS(2251), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2253), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -230073,18 +229892,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [104030] = 6, + [103868] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1890), 1, - sym__newline, - ACTIONS(6582), 1, - anon_sym_else, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3387), 1, + STATE(3381), 1, sym_comment, - ACTIONS(1888), 10, + ACTIONS(6417), 13, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -230095,15 +229911,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [104058] = 4, + [103890] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3388), 1, + STATE(3382), 1, sym_comment, - ACTIONS(6422), 2, + ACTIONS(2146), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6420), 11, + ACTIONS(2148), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230115,68 +229931,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, - [104082] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5820), 1, - sym_identifier, - ACTIONS(5826), 1, - anon_sym_DOLLAR, - ACTIONS(5828), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5830), 1, - anon_sym_DASH_DASH, - ACTIONS(5832), 1, - anon_sym_DASH2, - ACTIONS(5889), 1, - anon_sym_RPAREN, - STATE(2564), 1, - sym_param_long_flag, - STATE(2724), 1, - sym__param_name, - STATE(3042), 1, - aux_sym_parameter_parens_repeat1, - STATE(3389), 1, - sym_comment, - STATE(3462), 1, - sym_param_short_flag, - STATE(3499), 1, - sym_param_rest, - STATE(3609), 1, - sym_param_opt, - STATE(3860), 1, - sym_parameter, - [104128] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - ACTIONS(2945), 1, - anon_sym_DOLLAR, - STATE(763), 1, - sym__immediate_decimal, - STATE(3390), 1, - sym_comment, - ACTIONS(5926), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6519), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(762), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1677), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [104162] = 3, + [103914] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3391), 1, + STATE(3383), 1, sym_comment, - ACTIONS(1901), 13, + ACTIONS(6040), 13, ts_builtin_sym_end, anon_sym_EQ, sym__newline, @@ -230190,147 +229950,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [104184] = 9, + [103936] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - ACTIONS(2945), 1, + ACTIONS(6579), 1, + anon_sym_DASH2, + STATE(3384), 1, + sym_comment, + ACTIONS(5364), 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, - STATE(765), 1, - sym__immediate_decimal, - STATE(3392), 1, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [103960] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6581), 1, + anon_sym_DASH2, + STATE(3385), 1, sym_comment, - ACTIONS(5926), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6519), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(764), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1681), 4, - anon_sym_if, + ACTIONS(5377), 12, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_EQ_GT, - [104218] = 12, + 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, + [103984] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1689), 1, + ACTIONS(1687), 1, sym__entry_separator, - ACTIONS(1711), 1, + ACTIONS(1697), 1, sym__unquoted_pattern_in_list, - ACTIONS(6489), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6491), 1, + ACTIONS(6585), 1, anon_sym_LPAREN2, - ACTIONS(6493), 1, + ACTIONS(6587), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6495), 1, + ACTIONS(6589), 1, aux_sym__immediate_decimal_token2, - STATE(3393), 1, + STATE(3386), 1, sym_comment, - STATE(4224), 1, + STATE(4334), 1, sym__immediate_decimal, - ACTIONS(1691), 2, + ACTIONS(1689), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(6497), 2, + ACTIONS(6591), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4416), 2, + STATE(4532), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104258] = 3, + [104024] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3394), 1, + ACTIONS(6593), 1, + anon_sym_DASH2, + STATE(3387), 1, sym_comment, - ACTIONS(6388), 13, - ts_builtin_sym_end, + ACTIONS(5401), 12, anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [104280] = 4, - ACTIONS(105), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104048] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3395), 1, + ACTIONS(6595), 1, + anon_sym_DASH2, + STATE(3388), 1, sym_comment, - ACTIONS(4637), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4635), 11, + ACTIONS(5411), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [104304] = 4, - ACTIONS(105), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104072] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3396), 1, + ACTIONS(6597), 1, + anon_sym_DASH2, + STATE(3389), 1, sym_comment, - ACTIONS(4641), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4639), 11, + ACTIONS(5413), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [104328] = 4, - ACTIONS(105), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104096] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3397), 1, + ACTIONS(6599), 1, + anon_sym_DASH2, + STATE(3390), 1, sym_comment, - ACTIONS(4645), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4643), 11, + ACTIONS(5429), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [104352] = 4, + 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, + [104120] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6585), 1, - anon_sym_finally, - STATE(3398), 1, + ACTIONS(6601), 1, + anon_sym_DASH2, + STATE(3391), 1, + sym_comment, + ACTIONS(5444), 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, + [104144] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3392), 1, sym_comment, - ACTIONS(6158), 12, + ACTIONS(2271), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2273), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230342,16 +230138,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, - [104376] = 5, + [104168] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(811), 1, + ACTIONS(6323), 1, anon_sym_DASH2, - ACTIONS(5241), 1, - sym__unquoted_pattern_in_record, - STATE(3399), 1, + STATE(3393), 1, sym_comment, - ACTIONS(914), 11, + ACTIONS(5269), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -230361,45 +230155,38 @@ 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, - [104402] = 15, + [104192] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5820), 1, + ACTIONS(6603), 1, + anon_sym_DASH2, + STATE(3394), 1, + sym_comment, + ACTIONS(5537), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(5826), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5828), 1, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, - ACTIONS(5830), 1, anon_sym_DASH_DASH, - ACTIONS(5832), 1, - anon_sym_DASH2, - ACTIONS(6587), 1, - anon_sym_PIPE, - STATE(2564), 1, - sym_param_long_flag, - STATE(2724), 1, - sym__param_name, - STATE(3042), 1, - aux_sym_parameter_parens_repeat1, - STATE(3400), 1, - sym_comment, - STATE(3462), 1, - sym_param_short_flag, - STATE(3499), 1, - sym_param_rest, - STATE(3609), 1, - sym_param_opt, - STATE(3860), 1, - sym_parameter, - [104448] = 3, - ACTIONS(3), 1, + [104216] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3401), 1, + STATE(3395), 1, sym_comment, - ACTIONS(6589), 13, + ACTIONS(2553), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2555), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230411,17 +230198,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [104470] = 4, - ACTIONS(3), 1, + [104240] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6591), 1, - anon_sym_EQ, - STATE(3402), 1, + ACTIONS(1687), 1, + sym__space, + ACTIONS(1697), 1, + sym__unquoted_pattern, + ACTIONS(3270), 1, + anon_sym_LPAREN2, + ACTIONS(3715), 1, + anon_sym_DOLLAR, + ACTIONS(6555), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6557), 1, + aux_sym__immediate_decimal_token2, + STATE(3396), 1, sym_comment, - ACTIONS(6517), 12, + STATE(4247), 1, + sym__immediate_decimal, + ACTIONS(1689), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6559), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3098), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104280] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3397), 1, + sym_comment, + ACTIONS(2541), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2543), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230433,14 +230246,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [104494] = 3, - ACTIONS(3), 1, + [104304] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3403), 1, + STATE(3398), 1, sym_comment, - ACTIONS(2664), 13, + ACTIONS(2537), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(2539), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230452,12 +230266,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [104516] = 3, - ACTIONS(3), 1, + [104328] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3404), 1, + STATE(3399), 1, sym_comment, - ACTIONS(6593), 13, + ACTIONS(2533), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2535), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230469,14 +230286,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [104538] = 3, - ACTIONS(3), 1, + [104352] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3405), 1, + STATE(3400), 1, sym_comment, - ACTIONS(4899), 13, + ACTIONS(2686), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2688), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230488,14 +230306,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [104560] = 3, - ACTIONS(3), 1, + [104376] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3406), 1, + STATE(3401), 1, sym_comment, - ACTIONS(6595), 13, + ACTIONS(2529), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2531), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230507,17 +230326,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [104582] = 4, + [104400] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3407), 1, + STATE(3402), 1, sym_comment, - ACTIONS(6426), 2, + ACTIONS(2525), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6424), 11, + ACTIONS(2527), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230529,15 +230346,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [104606] = 4, + [104424] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3408), 1, + STATE(3403), 1, sym_comment, - ACTIONS(6358), 2, + ACTIONS(2521), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6356), 11, + ACTIONS(2523), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230549,15 +230366,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, - [104630] = 4, + [104448] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + STATE(896), 1, + sym__immediate_decimal, + STATE(3404), 1, + sym_comment, + ACTIONS(5980), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6605), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(897), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1648), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [104482] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3409), 1, + STATE(3405), 1, sym_comment, - ACTIONS(6437), 2, + ACTIONS(2481), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6435), 11, + ACTIONS(2483), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230569,15 +230411,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [104654] = 4, + [104506] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + STATE(763), 1, + sym__immediate_decimal, + STATE(3406), 1, + sym_comment, + ACTIONS(5980), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6605), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(764), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1679), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [104540] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + STATE(761), 1, + sym__immediate_decimal, + STATE(3407), 1, + sym_comment, + ACTIONS(5980), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6605), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(762), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1715), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [104574] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + STATE(759), 1, + sym__immediate_decimal, + STATE(3408), 1, + sym_comment, + ACTIONS(5980), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6605), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(760), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1673), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [104608] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3410), 1, + STATE(3409), 1, sym_comment, - ACTIONS(6162), 2, + ACTIONS(2477), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6160), 11, + ACTIONS(2479), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230589,12 +230506,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [104678] = 3, - ACTIONS(3), 1, + [104632] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3411), 1, + STATE(3410), 1, sym_comment, - ACTIONS(4893), 13, + ACTIONS(2473), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2475), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230606,14 +230526,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [104700] = 3, - ACTIONS(3), 1, + [104656] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3412), 1, + STATE(3411), 1, sym_comment, - ACTIONS(6597), 13, + ACTIONS(2469), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2471), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230625,17 +230546,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [104722] = 4, + [104680] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3413), 1, + STATE(3412), 1, sym_comment, - ACTIONS(1909), 2, + ACTIONS(2465), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1911), 11, + ACTIONS(2467), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230647,12 +230566,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [104746] = 3, - ACTIONS(3), 1, + [104704] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3414), 1, + STATE(3413), 1, sym_comment, - ACTIONS(6599), 13, + ACTIONS(2461), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2463), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230664,14 +230586,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [104768] = 3, - ACTIONS(3), 1, + [104728] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3415), 1, + STATE(3414), 1, sym_comment, - ACTIONS(6601), 13, + ACTIONS(2457), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2459), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230683,17 +230606,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [104790] = 4, + [104752] = 12, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1622), 1, + sym__entry_separator, + ACTIONS(1636), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6583), 1, + anon_sym_DOLLAR, + ACTIONS(6585), 1, + anon_sym_LPAREN2, + ACTIONS(6587), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6589), 1, + aux_sym__immediate_decimal_token2, + STATE(3415), 1, + sym_comment, + STATE(4351), 1, + sym__immediate_decimal, + ACTIONS(1626), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6591), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4578), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104792] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(3416), 1, sym_comment, - ACTIONS(2584), 2, + ACTIONS(6427), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2586), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230710,10 +230658,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3417), 1, sym_comment, - ACTIONS(2588), 2, + ACTIONS(2453), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2590), 11, + ACTIONS(2455), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230730,10 +230678,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3418), 1, sym_comment, - ACTIONS(4633), 2, + ACTIONS(2449), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4631), 11, + ACTIONS(2451), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230750,7 +230698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3419), 1, sym_comment, - ACTIONS(6603), 12, + ACTIONS(6607), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230768,7 +230716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(3420), 1, sym_comment, - ACTIONS(6605), 12, + ACTIONS(6609), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230781,39 +230729,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [104904] = 12, - ACTIONS(105), 1, + [104904] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1642), 1, - sym__entry_separator, - ACTIONS(1644), 1, - anon_sym_RBRACK, - ACTIONS(1659), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6607), 1, - anon_sym_DOLLAR, - ACTIONS(6609), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6611), 1, - aux_sym__immediate_decimal_token2, STATE(3421), 1, sym_comment, - STATE(4444), 1, - sym__immediate_decimal, - ACTIONS(6613), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4414), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [104943] = 3, + ACTIONS(6611), 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, + [104925] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3422), 1, sym_comment, - ACTIONS(6615), 12, + ACTIONS(6613), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230826,51 +230765,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [104964] = 4, + [104946] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6619), 1, - anon_sym_DASH2, STATE(3423), 1, sym_comment, - ACTIONS(6617), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(4897), 12, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [104987] = 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, + [104967] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6623), 1, - anon_sym_DASH2, STATE(3424), 1, sym_comment, - ACTIONS(6621), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6615), 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, - [105010] = 3, + [104988] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3425), 1, sym_comment, - ACTIONS(6595), 12, - ts_builtin_sym_end, + ACTIONS(6617), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230882,13 +230818,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, - [105031] = 3, + anon_sym_RPAREN, + [105009] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3426), 1, sym_comment, - ACTIONS(6589), 12, - ts_builtin_sym_end, + ACTIONS(6619), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230900,13 +230836,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, - [105052] = 3, + anon_sym_RPAREN, + [105030] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3427), 1, sym_comment, - ACTIONS(6593), 12, - ts_builtin_sym_end, + ACTIONS(6621), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230918,183 +230854,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, - [105073] = 12, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1756), 1, - anon_sym_DOLLAR, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6141), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6143), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6625), 1, - anon_sym_RBRACK, - ACTIONS(6627), 1, - anon_sym_DOLLAR2, - ACTIONS(6629), 1, - aux_sym__unquoted_in_list_token2, - STATE(3428), 1, - sym_comment, - STATE(3835), 1, - sym__immediate_decimal, - ACTIONS(6145), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4091), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105112] = 11, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1707), 1, - sym__entry_separator, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6607), 1, - anon_sym_DOLLAR, - ACTIONS(6631), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6633), 1, - aux_sym__immediate_decimal_token2, - STATE(3429), 1, - sym_comment, - STATE(4376), 1, - sym__immediate_decimal, - ACTIONS(1709), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6513), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4374), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105149] = 11, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1677), 1, - sym__entry_separator, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6607), 1, - anon_sym_DOLLAR, - ACTIONS(6631), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6633), 1, - aux_sym__immediate_decimal_token2, - STATE(3430), 1, - sym_comment, - STATE(4381), 1, - sym__immediate_decimal, - ACTIONS(1679), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6513), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4380), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105186] = 11, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1681), 1, - sym__entry_separator, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6607), 1, - anon_sym_DOLLAR, - ACTIONS(6631), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6633), 1, - aux_sym__immediate_decimal_token2, - STATE(3431), 1, - sym_comment, - STATE(4394), 1, - sym__immediate_decimal, - ACTIONS(1683), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6513), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4386), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105223] = 12, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1689), 1, - sym__entry_separator, - ACTIONS(1691), 1, - anon_sym_RBRACK, - ACTIONS(1711), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6607), 1, - anon_sym_DOLLAR, - ACTIONS(6609), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6611), 1, - aux_sym__immediate_decimal_token2, - STATE(3432), 1, - sym_comment, - STATE(4556), 1, - sym__immediate_decimal, - ACTIONS(6613), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4416), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105262] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6635), 1, - anon_sym_DASH2, - STATE(3433), 1, - sym_comment, - ACTIONS(5976), 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, - [105285] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6637), 1, - anon_sym_DASH2, - STATE(3434), 1, - sym_comment, - ACTIONS(5982), 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, - [105308] = 3, + [105051] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3435), 1, + STATE(3428), 1, sym_comment, - ACTIONS(6475), 12, - ts_builtin_sym_end, + ACTIONS(6623), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231106,18 +230872,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [105329] = 6, + anon_sym_RPAREN, + [105072] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - STATE(615), 1, - aux_sym__pipe_separator, - STATE(3436), 1, + STATE(3429), 1, sym_comment, - STATE(3624), 1, - aux_sym__repeat_newline, - ACTIONS(2075), 9, + ACTIONS(6625), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -231127,13 +230890,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, - [105356] = 3, + anon_sym_RPAREN, + [105093] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3437), 1, + STATE(3430), 1, sym_comment, - ACTIONS(6441), 12, - ts_builtin_sym_end, + ACTIONS(6627), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231145,13 +230908,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, - [105377] = 3, + anon_sym_RPAREN, + [105114] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3438), 1, + STATE(3431), 1, sym_comment, - ACTIONS(6479), 12, - ts_builtin_sym_end, + ACTIONS(6629), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231163,34 +230926,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, - [105398] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(6639), 1, - anon_sym_DOT, - ACTIONS(6641), 1, - aux_sym__immediate_decimal_token5, - STATE(3439), 1, - sym_comment, - ACTIONS(751), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(753), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [105425] = 3, + anon_sym_RPAREN, + [105135] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3440), 1, + STATE(3432), 1, sym_comment, - ACTIONS(6517), 12, - ts_builtin_sym_end, + ACTIONS(6631), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231202,13 +230944,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, - [105446] = 3, + anon_sym_RPAREN, + [105156] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3441), 1, + STATE(3433), 1, sym_comment, - ACTIONS(6453), 12, - ts_builtin_sym_end, + ACTIONS(6633), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231220,12 +230962,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, - [105467] = 3, + anon_sym_RPAREN, + [105177] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3442), 1, + STATE(3434), 1, sym_comment, - ACTIONS(6499), 12, + ACTIONS(6545), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -231238,13 +230981,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, - [105488] = 3, + [105198] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3443), 1, + STATE(3435), 1, sym_comment, - ACTIONS(6525), 12, - ts_builtin_sym_end, + ACTIONS(6635), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231256,61 +230998,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, - [105509] = 12, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1689), 1, - sym__entry_separator, - ACTIONS(1691), 1, - anon_sym_RBRACE, - ACTIONS(1711), 1, - sym__unquoted_pattern_in_record, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6607), 1, - anon_sym_DOLLAR, - ACTIONS(6643), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6645), 1, - aux_sym__immediate_decimal_token2, - STATE(3444), 1, - sym_comment, - STATE(4634), 1, - sym__immediate_decimal, - ACTIONS(6647), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4416), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105548] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6649), 1, - anon_sym_DOT, - ACTIONS(6651), 1, - aux_sym__immediate_decimal_token5, - STATE(3445), 1, - sym_comment, - ACTIONS(751), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(753), 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, - [105575] = 3, + anon_sym_RPAREN, + [105219] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3446), 1, + STATE(3436), 1, sym_comment, - ACTIONS(6439), 12, - ts_builtin_sym_end, + ACTIONS(6637), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231322,76 +231016,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, - [105596] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(6653), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6655), 1, - aux_sym__immediate_decimal_token5, - STATE(3447), 1, - sym_comment, - ACTIONS(759), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(761), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [105623] = 5, + anon_sym_RPAREN, + [105240] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1893), 1, + ACTIONS(5988), 1, anon_sym_DASH2, - ACTIONS(6657), 1, - sym__newline, - STATE(3448), 2, - aux_sym__repeat_newline, + STATE(3437), 1, sym_comment, - ACTIONS(1888), 9, + ACTIONS(5325), 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, - [105648] = 6, + [105263] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6660), 1, - sym__newline, - ACTIONS(6663), 1, - anon_sym_DASH2, - STATE(3449), 1, + STATE(3438), 1, sym_comment, - ACTIONS(2126), 2, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4529), 8, - sym_identifier, + ACTIONS(6639), 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, - [105675] = 4, + [105284] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5956), 1, + ACTIONS(5923), 1, anon_sym_DASH2, - STATE(3450), 1, + STATE(3439), 1, sym_comment, - ACTIONS(5954), 11, + ACTIONS(5327), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -231403,137 +231073,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [105698] = 11, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1628), 1, - sym__entry_separator, - ACTIONS(6489), 1, - anon_sym_DOLLAR, - ACTIONS(6491), 1, - anon_sym_LPAREN2, - ACTIONS(6493), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6495), 1, - aux_sym__immediate_decimal_token2, - STATE(3451), 1, - sym_comment, - STATE(4366), 1, - sym__immediate_decimal, - ACTIONS(1632), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6497), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4548), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105735] = 11, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1707), 1, - sym__entry_separator, - ACTIONS(6489), 1, - anon_sym_DOLLAR, - ACTIONS(6491), 1, - anon_sym_LPAREN2, - ACTIONS(6493), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6495), 1, - aux_sym__immediate_decimal_token2, - STATE(3452), 1, - sym_comment, - STATE(4376), 1, - sym__immediate_decimal, - ACTIONS(1709), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6497), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4374), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105772] = 11, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1677), 1, - sym__entry_separator, - ACTIONS(6489), 1, - anon_sym_DOLLAR, - ACTIONS(6491), 1, - anon_sym_LPAREN2, - ACTIONS(6493), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6495), 1, - aux_sym__immediate_decimal_token2, - STATE(3453), 1, - sym_comment, - STATE(4381), 1, - sym__immediate_decimal, - ACTIONS(1679), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6497), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4380), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105809] = 11, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1681), 1, - sym__entry_separator, - ACTIONS(6489), 1, - anon_sym_DOLLAR, - ACTIONS(6491), 1, - anon_sym_LPAREN2, - ACTIONS(6493), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6495), 1, - aux_sym__immediate_decimal_token2, - STATE(3454), 1, - sym_comment, - STATE(4394), 1, - sym__immediate_decimal, - ACTIONS(1683), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6497), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4386), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105846] = 6, + [105307] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6667), 1, - aux_sym__immediate_decimal_token5, - STATE(3455), 1, + STATE(3440), 1, sym_comment, - ACTIONS(759), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(761), 8, - anon_sym_if, + ACTIONS(6641), 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, - [105873] = 3, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [105328] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3456), 1, + STATE(3441), 1, sym_comment, - ACTIONS(6669), 12, + ACTIONS(6543), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231545,14 +231109,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, - [105894] = 3, + [105349] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3457), 1, + STATE(3442), 1, sym_comment, - ACTIONS(4893), 12, - ts_builtin_sym_end, + ACTIONS(6643), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231564,13 +231126,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [105915] = 3, + anon_sym_RPAREN, + [105370] = 11, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1679), 1, + sym__entry_separator, + ACTIONS(6214), 1, + anon_sym_LPAREN2, + ACTIONS(6645), 1, + anon_sym_DOLLAR, + ACTIONS(6647), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6649), 1, + aux_sym__immediate_decimal_token2, + STATE(3443), 1, + sym_comment, + STATE(4548), 1, + sym__immediate_decimal, + ACTIONS(1681), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6533), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4549), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105407] = 11, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1715), 1, + sym__entry_separator, + ACTIONS(6214), 1, + anon_sym_LPAREN2, + ACTIONS(6645), 1, + anon_sym_DOLLAR, + ACTIONS(6647), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6649), 1, + aux_sym__immediate_decimal_token2, + STATE(3444), 1, + sym_comment, + STATE(4543), 1, + sym__immediate_decimal, + ACTIONS(1717), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6533), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4545), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105444] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3458), 1, + STATE(3445), 1, sym_comment, - ACTIONS(6597), 12, - ts_builtin_sym_end, + ACTIONS(6651), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231582,12 +231196,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, - [105936] = 3, + anon_sym_RPAREN, + [105465] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3459), 1, + STATE(3446), 1, sym_comment, - ACTIONS(6671), 12, + ACTIONS(6653), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231600,12 +231215,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [105957] = 3, + [105486] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3460), 1, + STATE(3447), 1, sym_comment, - ACTIONS(6673), 12, + ACTIONS(6655), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231618,78 +231233,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [105978] = 12, + [105507] = 11, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1642), 1, + ACTIONS(1673), 1, sym__entry_separator, - ACTIONS(1644), 1, - anon_sym_RBRACE, - ACTIONS(1659), 1, - sym__unquoted_pattern_in_record, - ACTIONS(6137), 1, + ACTIONS(6214), 1, anon_sym_LPAREN2, - ACTIONS(6607), 1, + ACTIONS(6645), 1, anon_sym_DOLLAR, - ACTIONS(6643), 1, + ACTIONS(6647), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6645), 1, + ACTIONS(6649), 1, aux_sym__immediate_decimal_token2, - STATE(3461), 1, + STATE(3448), 1, sym_comment, - STATE(4610), 1, + STATE(4535), 1, sym__immediate_decimal, - ACTIONS(6647), 2, + ACTIONS(1675), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6533), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4414), 2, + STATE(4540), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106017] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6677), 1, - anon_sym_DASH2, - STATE(3462), 1, - sym_comment, - ACTIONS(6675), 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, - [106040] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5908), 1, - anon_sym_DASH2, - STATE(3463), 1, - sym_comment, - ACTIONS(5906), 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, - [106063] = 3, + [105544] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3464), 1, + STATE(3449), 1, sym_comment, - ACTIONS(4899), 12, - ts_builtin_sym_end, + ACTIONS(6657), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231701,13 +231276,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, - [106084] = 3, + anon_sym_RPAREN, + [105565] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3465), 1, + STATE(3450), 1, sym_comment, - ACTIONS(6599), 12, - ts_builtin_sym_end, + ACTIONS(6659), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231719,12 +231294,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, - [106105] = 3, + anon_sym_RPAREN, + [105586] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3466), 1, + STATE(3451), 1, sym_comment, - ACTIONS(4901), 12, + ACTIONS(6661), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231737,13 +231313,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106126] = 3, + [105607] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3467), 1, + STATE(3452), 1, sym_comment, - ACTIONS(6601), 12, - ts_builtin_sym_end, + ACTIONS(6663), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231755,31 +231330,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, - [106147] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6681), 1, - anon_sym_DASH2, - STATE(3468), 1, - sym_comment, - ACTIONS(6679), 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, - [106170] = 3, + [105628] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3469), 1, + STATE(3453), 1, sym_comment, - ACTIONS(6683), 12, + ACTIONS(6665), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231792,12 +231349,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106191] = 3, + [105649] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3470), 1, + STATE(3454), 1, sym_comment, - ACTIONS(6685), 12, + ACTIONS(6667), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231810,12 +231367,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106212] = 3, + [105670] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3471), 1, + STATE(3455), 1, sym_comment, - ACTIONS(6687), 12, + ACTIONS(6669), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231828,12 +231385,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106233] = 3, + [105691] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3472), 1, + STATE(3456), 1, sym_comment, - ACTIONS(6689), 12, + ACTIONS(6671), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231846,81 +231403,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] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(6691), 1, - anon_sym_DOT2, - STATE(366), 1, - sym_path, - STATE(383), 1, - sym_cell_path, - STATE(3473), 1, - sym_comment, - STATE(3634), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1468), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1466), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - [106285] = 12, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1642), 1, - sym__entry_separator, - ACTIONS(1644), 1, - anon_sym_RBRACE, - ACTIONS(1756), 1, - anon_sym_DOLLAR, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6509), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6511), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6693), 1, - anon_sym_DOT, - STATE(3474), 1, - sym_comment, - STATE(4207), 1, - sym__immediate_decimal, - ACTIONS(6513), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4049), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106324] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2156), 1, - anon_sym_DASH2, - STATE(3475), 1, - sym_comment, - ACTIONS(2154), 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, - [106347] = 3, + [105712] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3476), 1, + STATE(3457), 1, sym_comment, - ACTIONS(6695), 12, + ACTIONS(6673), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231933,12 +231421,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106368] = 3, + [105733] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3477), 1, + STATE(3458), 1, sym_comment, - ACTIONS(6697), 12, + ACTIONS(6675), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231951,12 +231439,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106389] = 3, + [105754] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3478), 1, + STATE(3459), 1, sym_comment, - ACTIONS(6699), 12, + ACTIONS(6677), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231969,12 +231457,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106410] = 3, + [105775] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3479), 1, + STATE(3460), 1, sym_comment, - ACTIONS(6701), 12, + ACTIONS(6679), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231987,38 +231475,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106431] = 11, + [105796] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5851), 1, + anon_sym_DASH2, + STATE(3461), 1, + sym_comment, + ACTIONS(5849), 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, + [105819] = 11, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1628), 1, - sym__space, - ACTIONS(3200), 1, + ACTIONS(1648), 1, + sym__entry_separator, + ACTIONS(6583), 1, + anon_sym_DOLLAR, + ACTIONS(6585), 1, anon_sym_LPAREN2, - ACTIONS(3719), 1, + ACTIONS(6587), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6589), 1, + aux_sym__immediate_decimal_token2, + STATE(3462), 1, + sym_comment, + STATE(4580), 1, + sym__immediate_decimal, + ACTIONS(1650), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6591), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4581), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105856] = 11, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1679), 1, + sym__entry_separator, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6703), 1, + ACTIONS(6585), 1, + anon_sym_LPAREN2, + ACTIONS(6587), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6705), 1, + ACTIONS(6589), 1, aux_sym__immediate_decimal_token2, - STATE(3111), 1, + STATE(3463), 1, + sym_comment, + STATE(4548), 1, sym__immediate_decimal, - STATE(3480), 1, + ACTIONS(1681), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6591), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4549), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105893] = 11, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1715), 1, + sym__entry_separator, + ACTIONS(6583), 1, + anon_sym_DOLLAR, + ACTIONS(6585), 1, + anon_sym_LPAREN2, + ACTIONS(6587), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6589), 1, + aux_sym__immediate_decimal_token2, + STATE(3464), 1, sym_comment, - ACTIONS(1632), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6284), 2, + STATE(4543), 1, + sym__immediate_decimal, + ACTIONS(1717), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6591), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3110), 2, + STATE(4545), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106468] = 3, + [105930] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3481), 1, + STATE(3465), 1, sym_comment, - ACTIONS(6707), 12, + ACTIONS(6681), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232031,12 +231590,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106489] = 3, + [105951] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3482), 1, + STATE(3466), 1, sym_comment, - ACTIONS(6709), 12, + ACTIONS(6683), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232049,12 +231608,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106510] = 3, + [105972] = 11, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1673), 1, + sym__entry_separator, + ACTIONS(6583), 1, + anon_sym_DOLLAR, + ACTIONS(6585), 1, + anon_sym_LPAREN2, + ACTIONS(6587), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6589), 1, + aux_sym__immediate_decimal_token2, + STATE(3467), 1, + sym_comment, + STATE(4535), 1, + sym__immediate_decimal, + ACTIONS(1675), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6591), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4540), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [106009] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3483), 1, + STATE(3468), 1, sym_comment, - ACTIONS(6711), 12, + ACTIONS(6541), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232066,13 +231652,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, - [106531] = 3, + [106030] = 12, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1622), 1, + sym__entry_separator, + ACTIONS(1626), 1, + anon_sym_RBRACE, + ACTIONS(1778), 1, + anon_sym_DOLLAR, + ACTIONS(6214), 1, + anon_sym_LPAREN2, + ACTIONS(6529), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6531), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6685), 1, + anon_sym_DOT, + STATE(3469), 1, + sym_comment, + STATE(4276), 1, + sym__immediate_decimal, + ACTIONS(6533), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4114), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [106069] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3484), 1, + ACTIONS(6687), 1, + anon_sym_else, + STATE(3470), 1, + sym_comment, + ACTIONS(6479), 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, + [106092] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3471), 1, sym_comment, - ACTIONS(6713), 12, + ACTIONS(6689), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232085,12 +231716,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106552] = 3, + [106113] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3485), 1, + STATE(3472), 1, sym_comment, - ACTIONS(6715), 12, + ACTIONS(6691), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232103,14 +231734,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [106573] = 4, + [106134] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2598), 1, + ACTIONS(2273), 1, anon_sym_DASH2, - STATE(3486), 1, + STATE(3473), 1, sym_comment, - ACTIONS(2596), 11, + ACTIONS(2271), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -232122,14 +231753,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106596] = 4, + [106157] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2168), 1, + ACTIONS(2531), 1, anon_sym_DASH2, - STATE(3487), 1, + STATE(3474), 1, sym_comment, - ACTIONS(2166), 11, + ACTIONS(2529), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -232141,14 +231772,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106619] = 4, + [106180] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3475), 1, + sym_comment, + ACTIONS(6693), 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, + [106201] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2176), 1, + ACTIONS(6028), 1, anon_sym_DASH2, - STATE(3488), 1, + STATE(3476), 1, sym_comment, - ACTIONS(2174), 11, + ACTIONS(6026), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -232160,14 +231809,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106642] = 4, + [106224] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2188), 1, + ACTIONS(2527), 1, anon_sym_DASH2, - STATE(3489), 1, + STATE(3477), 1, sym_comment, - ACTIONS(2186), 11, + ACTIONS(2525), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -232179,14 +231828,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106665] = 4, + [106247] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5863), 1, + ACTIONS(6697), 1, anon_sym_DASH2, - STATE(3490), 1, + STATE(3478), 1, sym_comment, - ACTIONS(5861), 11, + ACTIONS(6695), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -232198,13 +231847,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106688] = 3, + [106270] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3491), 1, + STATE(3479), 1, sym_comment, - ACTIONS(6115), 12, - ts_builtin_sym_end, + ACTIONS(6699), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232216,52 +231864,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, - [106709] = 4, + anon_sym_RPAREN, + [106291] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6719), 1, - anon_sym_DASH2, - STATE(3492), 1, + STATE(3480), 1, sym_comment, - ACTIONS(6717), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6469), 12, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [106732] = 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, + [106312] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2403), 1, - anon_sym_DASH2, - STATE(3493), 1, + STATE(3481), 1, sym_comment, - ACTIONS(2401), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6701), 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, - [106755] = 4, + [106333] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2407), 1, + ACTIONS(6703), 1, anon_sym_DASH2, - STATE(3494), 1, + STATE(3482), 1, sym_comment, - ACTIONS(2405), 11, + ACTIONS(6040), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -232273,14 +231920,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106778] = 4, + [106356] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2411), 1, + ACTIONS(6705), 1, anon_sym_DASH2, - STATE(3495), 1, + STATE(3483), 1, sym_comment, - ACTIONS(2409), 11, + ACTIONS(6042), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -232292,225 +231939,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106801] = 11, - ACTIONS(105), 1, + [106379] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1707), 1, - sym__space, - ACTIONS(3200), 1, - anon_sym_LPAREN2, - ACTIONS(3719), 1, - anon_sym_DOLLAR, - ACTIONS(6703), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6705), 1, - aux_sym__immediate_decimal_token2, - STATE(3131), 1, - sym__immediate_decimal, - STATE(3496), 1, + STATE(3484), 1, sym_comment, - ACTIONS(1709), 2, + ACTIONS(6707), 12, sym__newline, anon_sym_SEMI, - ACTIONS(6284), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3130), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106838] = 11, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [106400] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1677), 1, - sym__space, - ACTIONS(3200), 1, + ACTIONS(1687), 1, + sym__entry_separator, + ACTIONS(1689), 1, + anon_sym_RBRACE, + ACTIONS(1697), 1, + sym__unquoted_pattern_in_record, + ACTIONS(6214), 1, anon_sym_LPAREN2, - ACTIONS(3719), 1, + ACTIONS(6645), 1, anon_sym_DOLLAR, - ACTIONS(6703), 1, + ACTIONS(6709), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6705), 1, + ACTIONS(6711), 1, aux_sym__immediate_decimal_token2, - STATE(3133), 1, - sym__immediate_decimal, - STATE(3497), 1, + STATE(3485), 1, sym_comment, - ACTIONS(1679), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6284), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3132), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106875] = 11, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1681), 1, - sym__space, - ACTIONS(3200), 1, - anon_sym_LPAREN2, - ACTIONS(3719), 1, - anon_sym_DOLLAR, - ACTIONS(6703), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6705), 1, - aux_sym__immediate_decimal_token2, - STATE(3135), 1, + STATE(4460), 1, sym__immediate_decimal, - STATE(3498), 1, - sym_comment, - ACTIONS(1683), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6284), 2, + ACTIONS(6713), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3134), 2, + STATE(4532), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106912] = 4, + [106439] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6723), 1, - anon_sym_DASH2, - STATE(3499), 1, + STATE(3486), 1, sym_comment, - ACTIONS(6721), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6715), 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, - [106935] = 4, + [106460] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2433), 1, - anon_sym_DASH2, - STATE(3500), 1, + STATE(3487), 1, sym_comment, - ACTIONS(2431), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6717), 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, - [106958] = 4, + [106481] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2437), 1, - anon_sym_DASH2, - STATE(3501), 1, + STATE(3488), 1, sym_comment, - ACTIONS(2435), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6719), 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, - [106981] = 4, + [106502] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2441), 1, - anon_sym_DASH2, - STATE(3502), 1, - sym_comment, - ACTIONS(2439), 11, + ACTIONS(6721), 1, anon_sym_EQ, - sym_identifier, + STATE(3489), 1, + sym_comment, + ACTIONS(6475), 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, - [107004] = 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, + [106525] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2445), 1, - anon_sym_DASH2, - STATE(3503), 1, + STATE(3490), 1, sym_comment, - ACTIONS(2443), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6723), 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, - [107027] = 4, + [106546] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2449), 1, - anon_sym_DASH2, - STATE(3504), 1, + STATE(3491), 1, sym_comment, - ACTIONS(2447), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6725), 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, - [107050] = 4, + [106567] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2453), 1, - anon_sym_DASH2, - STATE(3505), 1, + STATE(3492), 1, sym_comment, - ACTIONS(2451), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6727), 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, - [107073] = 4, + [106588] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2383), 1, + ACTIONS(5847), 1, anon_sym_DASH2, - STATE(3506), 1, + STATE(3493), 1, sym_comment, - ACTIONS(2381), 11, + ACTIONS(5305), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -232522,31 +232130,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [107096] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(6725), 1, - anon_sym_DOT, - ACTIONS(6727), 1, - aux_sym__immediate_decimal_token5, - STATE(3507), 1, - sym_comment, - ACTIONS(751), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(753), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107123] = 3, + [106611] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3508), 1, + STATE(3494), 1, sym_comment, ACTIONS(6729), 12, sym__newline, @@ -232561,10 +232148,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107144] = 3, + [106632] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3509), 1, + STATE(3495), 1, sym_comment, ACTIONS(6731), 12, sym__newline, @@ -232579,30 +232166,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107165] = 3, + [106653] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3510), 1, + ACTIONS(6735), 1, + anon_sym_DASH2, + STATE(3496), 1, sym_comment, - ACTIONS(6733), 12, + ACTIONS(6733), 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, - [107186] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [106676] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3511), 1, + STATE(3497), 1, sym_comment, - ACTIONS(6735), 12, + ACTIONS(6737), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232615,12 +232203,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107207] = 3, + [106697] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3512), 1, + STATE(3498), 1, sym_comment, - ACTIONS(6737), 12, + ACTIONS(6739), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232633,12 +232221,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107228] = 3, + [106718] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3513), 1, + ACTIONS(5967), 1, + anon_sym_DASH2, + STATE(3499), 1, sym_comment, - ACTIONS(6739), 12, + ACTIONS(5287), 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, + [106741] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3500), 1, + sym_comment, + ACTIONS(6741), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232651,54 +232258,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107249] = 6, - ACTIONS(105), 1, + [106762] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6741), 1, - anon_sym_DOT, - ACTIONS(6743), 1, - aux_sym__immediate_decimal_token5, - STATE(3514), 1, + ACTIONS(2523), 1, + anon_sym_DASH2, + STATE(3501), 1, sym_comment, - ACTIONS(751), 4, + ACTIONS(2521), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(753), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [107276] = 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [106785] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5816), 1, + anon_sym_DASH2, + STATE(3502), 1, + sym_comment, + ACTIONS(5293), 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, + [106808] = 11, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6745), 1, + ACTIONS(1648), 1, + sym__space, + ACTIONS(3270), 1, + anon_sym_LPAREN2, + ACTIONS(3715), 1, + anon_sym_DOLLAR, + ACTIONS(6743), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6747), 1, - aux_sym__immediate_decimal_token5, - STATE(3515), 1, + ACTIONS(6745), 1, + aux_sym__immediate_decimal_token2, + STATE(3117), 1, + sym__immediate_decimal, + STATE(3503), 1, sym_comment, - ACTIONS(759), 4, + ACTIONS(1650), 2, sym__newline, anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(761), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107303] = 3, + ACTIONS(6127), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3118), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [106845] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3516), 1, + STATE(3504), 1, sym_comment, - ACTIONS(6749), 12, + ACTIONS(4911), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232711,12 +232340,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107324] = 3, + [106866] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3517), 1, + STATE(3505), 1, sym_comment, - ACTIONS(6751), 12, + ACTIONS(6747), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232729,33 +232358,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107345] = 6, - ACTIONS(105), 1, + [106887] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6753), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6755), 1, - aux_sym__immediate_decimal_token5, - STATE(3518), 1, + ACTIONS(6038), 1, + anon_sym_DASH2, + STATE(3506), 1, sym_comment, - ACTIONS(759), 4, + ACTIONS(6036), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(761), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [107372] = 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [106910] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3519), 1, + STATE(3507), 1, sym_comment, - ACTIONS(6757), 12, + ACTIONS(6749), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232768,12 +232395,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107393] = 3, + [106931] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3520), 1, + STATE(3508), 1, sym_comment, - ACTIONS(6759), 12, + ACTIONS(6751), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232786,12 +232413,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107414] = 3, + [106952] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3521), 1, + STATE(3509), 1, sym_comment, - ACTIONS(6761), 12, + ACTIONS(6753), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232804,12 +232431,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107435] = 3, + [106973] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3522), 1, + STATE(3510), 1, sym_comment, - ACTIONS(4917), 12, + ACTIONS(6755), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232822,12 +232449,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107456] = 3, + [106994] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3523), 1, + STATE(3511), 1, sym_comment, - ACTIONS(6763), 12, + ACTIONS(6757), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232840,12 +232467,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107477] = 3, + [107015] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3524), 1, + STATE(3512), 1, sym_comment, - ACTIONS(6765), 12, + ACTIONS(6759), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232858,14 +232485,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107498] = 4, + [107036] = 11, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1679), 1, + sym__space, + ACTIONS(3270), 1, + anon_sym_LPAREN2, + ACTIONS(3715), 1, + anon_sym_DOLLAR, + ACTIONS(6743), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6745), 1, + aux_sym__immediate_decimal_token2, + STATE(3105), 1, + sym__immediate_decimal, + STATE(3513), 1, + sym_comment, + ACTIONS(1681), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6127), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3107), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [107073] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6769), 1, + ACTIONS(6763), 1, anon_sym_DASH2, - STATE(3525), 1, + STATE(3514), 1, sym_comment, - ACTIONS(6767), 11, + ACTIONS(6761), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -232877,12 +232530,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [107521] = 3, + [107096] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6765), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6767), 1, + aux_sym__immediate_decimal_token5, + STATE(3515), 1, + sym_comment, + ACTIONS(755), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(757), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [107123] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6769), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6771), 1, + aux_sym__immediate_decimal_token5, + STATE(3516), 1, + sym_comment, + ACTIONS(755), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(757), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [107150] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3526), 1, + STATE(3517), 1, sym_comment, - ACTIONS(6771), 12, + ACTIONS(5732), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232894,11 +232590,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [107542] = 3, + [107171] = 11, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1715), 1, + sym__space, + ACTIONS(3270), 1, + anon_sym_LPAREN2, + ACTIONS(3715), 1, + anon_sym_DOLLAR, + ACTIONS(6743), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6745), 1, + aux_sym__immediate_decimal_token2, + STATE(3103), 1, + sym__immediate_decimal, + STATE(3518), 1, + sym_comment, + ACTIONS(1717), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6127), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3104), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [107208] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3527), 1, + STATE(3519), 1, sym_comment, ACTIONS(6773), 12, sym__newline, @@ -232913,14 +232634,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107563] = 3, + [107229] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3528), 1, - sym_comment, - ACTIONS(6775), 12, + ACTIONS(1940), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6775), 1, + anon_sym_else, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3520), 1, + sym_comment, + ACTIONS(1938), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -232930,32 +232655,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, - [107584] = 4, + [107256] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5816), 1, - anon_sym_DASH2, - STATE(3529), 1, + STATE(3521), 1, sym_comment, - ACTIONS(5265), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6487), 12, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [107607] = 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, + [107277] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3530), 1, + STATE(3522), 1, sym_comment, - ACTIONS(6777), 12, + ACTIONS(6778), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232968,12 +232691,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107628] = 3, + [107298] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3531), 1, + STATE(3523), 1, sym_comment, - ACTIONS(6779), 12, + ACTIONS(6491), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232985,32 +232709,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [107649] = 4, - ACTIONS(3), 1, + [107319] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5834), 1, - anon_sym_DASH2, - STATE(3532), 1, + ACTIONS(6780), 1, + anon_sym_DOT, + ACTIONS(6782), 1, + aux_sym__immediate_decimal_token5, + STATE(3524), 1, sym_comment, - ACTIONS(5292), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(763), 4, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(765), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [107346] = 12, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1778), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [107672] = 3, + ACTIONS(6214), 1, + anon_sym_LPAREN2, + ACTIONS(6218), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6220), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6784), 1, + anon_sym_RBRACK, + ACTIONS(6786), 1, + anon_sym_DOLLAR2, + ACTIONS(6788), 1, + aux_sym__unquoted_in_list_token2, + STATE(3525), 1, + sym_comment, + STATE(3855), 1, + sym__immediate_decimal, + ACTIONS(6222), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4110), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [107385] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3533), 1, + STATE(3526), 1, sym_comment, - ACTIONS(6781), 12, + ACTIONS(6790), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233023,31 +232775,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107693] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6783), 1, - anon_sym_DASH2, - STATE(3534), 1, - sym_comment, - ACTIONS(6250), 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, - [107716] = 3, + [107406] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3535), 1, + STATE(3527), 1, sym_comment, - ACTIONS(6785), 12, + ACTIONS(6493), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233059,13 +232793,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, - [107737] = 3, + [107427] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3536), 1, + STATE(3528), 1, sym_comment, - ACTIONS(6787), 12, + ACTIONS(6495), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233077,13 +232811,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, - [107758] = 3, + [107448] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3537), 1, + STATE(3529), 1, sym_comment, - ACTIONS(6789), 12, + ACTIONS(6792), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233096,12 +232829,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107779] = 3, + [107469] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3538), 1, + STATE(3530), 1, sym_comment, - ACTIONS(6791), 12, + ACTIONS(6794), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233114,12 +232847,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107800] = 3, + [107490] = 11, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1673), 1, + sym__space, + ACTIONS(3270), 1, + anon_sym_LPAREN2, + ACTIONS(3715), 1, + anon_sym_DOLLAR, + ACTIONS(6743), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6745), 1, + aux_sym__immediate_decimal_token2, + STATE(3099), 1, + sym__immediate_decimal, + STATE(3531), 1, + sym_comment, + ACTIONS(1675), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6127), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3101), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [107527] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3539), 1, + STATE(3532), 1, sym_comment, - ACTIONS(6793), 12, + ACTIONS(6796), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233132,12 +232891,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107821] = 3, + [107548] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3540), 1, + STATE(3533), 1, sym_comment, - ACTIONS(6795), 12, + ACTIONS(6475), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233149,34 +232909,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, - [107842] = 4, + [107569] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5878), 1, - anon_sym_DASH2, - STATE(3541), 1, - sym_comment, - ACTIONS(5350), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1940), 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, - [107865] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3542), 1, + ACTIONS(6798), 1, + anon_sym_else, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3534), 1, sym_comment, - ACTIONS(6797), 12, - sym__newline, - anon_sym_SEMI, + ACTIONS(1938), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -233186,13 +232930,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, - [107886] = 3, + [107596] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3543), 1, + STATE(3535), 1, sym_comment, - ACTIONS(5638), 12, + ACTIONS(6272), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -233205,12 +232948,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, - [107907] = 3, + [107617] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3544), 1, + STATE(3536), 1, sym_comment, - ACTIONS(6799), 12, + ACTIONS(6801), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233223,14 +232966,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107928] = 3, + [107638] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3545), 1, - sym_comment, - ACTIONS(6801), 12, + ACTIONS(1940), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6803), 1, + anon_sym_else, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3537), 1, + sym_comment, + ACTIONS(1938), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -233240,41 +232987,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, - [107949] = 11, + [107665] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - ACTIONS(1642), 1, - anon_sym_LBRACE, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(2945), 1, - anon_sym_DOLLAR, - ACTIONS(6803), 1, - anon_sym_DOT, - STATE(3546), 1, + ACTIONS(6226), 1, + sym__newline, + ACTIONS(6806), 1, + anon_sym_else, + STATE(3520), 1, + aux_sym__repeat_newline, + STATE(3538), 1, sym_comment, - STATE(4287), 1, - sym__immediate_decimal, - ACTIONS(6805), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6807), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4572), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107986] = 4, + ACTIONS(6229), 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, + [107692] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6809), 1, + ACTIONS(6810), 1, anon_sym_DASH2, - STATE(3547), 1, + STATE(3539), 1, sym_comment, - ACTIONS(6388), 11, + ACTIONS(6808), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -233286,67 +233027,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [108009] = 4, + [107715] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6809), 1, + ACTIONS(6812), 1, + sym__newline, + ACTIONS(6815), 1, anon_sym_DASH2, - STATE(3548), 1, + STATE(3540), 1, sym_comment, - ACTIONS(6388), 11, + ACTIONS(2111), 2, anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4523), 8, sym_identifier, - sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [108032] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3549), 1, - sym_comment, - ACTIONS(6811), 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, - [108053] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3550), 1, - sym_comment, - ACTIONS(6813), 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, - [108074] = 3, + [107742] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3551), 1, + STATE(3541), 1, sym_comment, - ACTIONS(6815), 12, + ACTIONS(6817), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233359,33 +233066,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108095] = 4, + [107763] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5891), 1, + ACTIONS(1943), 1, anon_sym_DASH2, - STATE(3552), 1, + ACTIONS(6819), 1, + sym__newline, + STATE(3542), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(5247), 11, + ACTIONS(1938), 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, - [108118] = 4, + [107788] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5893), 1, + ACTIONS(6824), 1, anon_sym_DASH2, - STATE(3553), 1, + STATE(3543), 1, sym_comment, - ACTIONS(5296), 11, + ACTIONS(6822), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -233397,12 +233105,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [108141] = 3, + [107811] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3554), 1, + STATE(3544), 1, sym_comment, - ACTIONS(6817), 12, + ACTIONS(6826), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233415,14 +233123,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108162] = 4, + [107832] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6819), 1, - anon_sym_EQ, - STATE(3555), 1, + STATE(3545), 1, sym_comment, - ACTIONS(6517), 11, + ACTIONS(6828), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233434,35 +233140,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, - [108185] = 6, + anon_sym_RPAREN, + [107853] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6174), 1, - sym__newline, - ACTIONS(6821), 1, - anon_sym_else, - STATE(3556), 1, + ACTIONS(6832), 1, + anon_sym_DASH2, + STATE(3546), 1, sym_comment, - STATE(3560), 1, - aux_sym__repeat_newline, - ACTIONS(6177), 9, + ACTIONS(6830), 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, - [108212] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [107876] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6823), 1, + ACTIONS(6836), 1, anon_sym_DASH2, - STATE(3557), 1, + STATE(3547), 1, sym_comment, - ACTIONS(6089), 11, + ACTIONS(6834), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -233474,39 +233179,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [108235] = 6, + [107899] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6101), 1, - sym__newline, - ACTIONS(6825), 1, - anon_sym_else, - STATE(3558), 1, + ACTIONS(6840), 1, + anon_sym_DASH2, + STATE(3548), 1, sym_comment, - STATE(3562), 1, - aux_sym__repeat_newline, - ACTIONS(6104), 9, + ACTIONS(6838), 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, - [108262] = 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, + [107922] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6108), 1, + ACTIONS(1940), 1, sym__newline, - ACTIONS(6827), 1, + ACTIONS(6842), 1, anon_sym_else, - STATE(3559), 1, - sym_comment, - STATE(3563), 1, + STATE(522), 1, aux_sym__repeat_newline, - ACTIONS(6111), 9, + STATE(3549), 1, + sym_comment, + ACTIONS(1938), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -233516,18 +233219,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, - [108289] = 6, + [107949] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6119), 1, + ACTIONS(6181), 1, sym__newline, - ACTIONS(6829), 1, + ACTIONS(6845), 1, anon_sym_else, - STATE(3560), 1, - sym_comment, - STATE(3564), 1, + STATE(3534), 1, aux_sym__repeat_newline, - ACTIONS(6122), 9, + STATE(3550), 1, + sym_comment, + ACTIONS(6184), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -233537,18 +233240,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, - [108316] = 6, + [107976] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6351), 1, + ACTIONS(6174), 1, sym__newline, - ACTIONS(6831), 1, + ACTIONS(6847), 1, anon_sym_else, - STATE(3561), 1, - sym_comment, - STATE(3565), 1, + STATE(3537), 1, aux_sym__repeat_newline, - ACTIONS(6354), 9, + STATE(3551), 1, + sym_comment, + ACTIONS(6177), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -233558,18 +233261,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, - [108343] = 6, + [108003] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6373), 1, - sym__newline, - ACTIONS(6833), 1, - anon_sym_else, - STATE(3562), 1, + STATE(3552), 1, sym_comment, - STATE(3566), 1, - aux_sym__repeat_newline, - ACTIONS(6376), 9, + ACTIONS(6849), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -233579,18 +233278,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, - [108370] = 6, + anon_sym_RPAREN, + [108024] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6383), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(6835), 1, - anon_sym_else, - STATE(3563), 1, + STATE(619), 1, + aux_sym__pipe_separator, + STATE(3553), 1, sym_comment, - STATE(3567), 1, + STATE(3647), 1, aux_sym__repeat_newline, - ACTIONS(6386), 9, + ACTIONS(1999), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -233600,18 +233300,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, - [108397] = 6, + [108051] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1890), 1, - sym__newline, - ACTIONS(6837), 1, - anon_sym_else, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3564), 1, + STATE(3554), 1, sym_comment, - ACTIONS(1888), 9, + ACTIONS(6851), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -233621,18 +233317,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, - [108424] = 6, + anon_sym_RPAREN, + [108072] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6366), 1, - sym__newline, - ACTIONS(6840), 1, - anon_sym_else, - STATE(3565), 1, + STATE(3555), 1, sym_comment, - STATE(3568), 1, - aux_sym__repeat_newline, - ACTIONS(6369), 9, + ACTIONS(4903), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -233642,39 +233336,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, - [108451] = 6, - ACTIONS(3), 1, + [108093] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1890), 1, - sym__newline, - ACTIONS(6842), 1, - anon_sym_else, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3566), 1, + ACTIONS(1622), 1, + sym__entry_separator, + ACTIONS(1626), 1, + anon_sym_RBRACE, + ACTIONS(1636), 1, + sym__unquoted_pattern_in_record, + ACTIONS(6214), 1, + anon_sym_LPAREN2, + ACTIONS(6645), 1, + anon_sym_DOLLAR, + ACTIONS(6709), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6711), 1, + aux_sym__immediate_decimal_token2, + STATE(3556), 1, sym_comment, - ACTIONS(1888), 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, - [108478] = 6, + STATE(4462), 1, + sym__immediate_decimal, + ACTIONS(6713), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4578), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [108132] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1890), 1, - sym__newline, - ACTIONS(6845), 1, - anon_sym_else, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3567), 1, + STATE(3557), 1, sym_comment, - ACTIONS(1888), 9, + ACTIONS(6853), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -233684,18 +233380,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, - [108505] = 6, + anon_sym_RPAREN, + [108153] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1890), 1, + ACTIONS(6167), 1, sym__newline, - ACTIONS(6848), 1, + ACTIONS(6855), 1, anon_sym_else, - STATE(501), 1, + STATE(3538), 1, aux_sym__repeat_newline, - STATE(3568), 1, + STATE(3558), 1, sym_comment, - ACTIONS(1888), 9, + ACTIONS(6170), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -233705,12 +233402,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, - [108532] = 3, + [108180] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3569), 1, + STATE(3559), 1, sym_comment, - ACTIONS(6851), 12, + ACTIONS(6857), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233723,12 +233420,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108553] = 3, + [108201] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3570), 1, + STATE(3560), 1, sym_comment, - ACTIONS(6853), 12, + ACTIONS(6859), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233741,14 +233438,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108574] = 4, + [108222] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5914), 1, + ACTIONS(2584), 1, anon_sym_DASH2, - STATE(3571), 1, + STATE(3561), 1, sym_comment, - ACTIONS(5308), 11, + ACTIONS(2582), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -233760,12 +233457,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [108597] = 3, + [108245] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3572), 1, + STATE(3562), 1, sym_comment, - ACTIONS(6855), 12, + ACTIONS(6861), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233778,32 +233475,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108618] = 3, + [108266] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3573), 1, - sym_comment, - ACTIONS(6857), 12, + ACTIONS(6153), 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, - [108639] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3574), 1, + ACTIONS(6863), 1, + anon_sym_else, + STATE(3549), 1, + aux_sym__repeat_newline, + STATE(3563), 1, sym_comment, - ACTIONS(6859), 12, - sym__newline, - anon_sym_SEMI, + ACTIONS(6156), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -233813,58 +233496,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, - [108660] = 3, + [108293] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3575), 1, + ACTIONS(2471), 1, + anon_sym_DASH2, + STATE(3564), 1, sym_comment, - ACTIONS(6861), 12, + ACTIONS(2469), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [108681] = 12, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1756), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6141), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6143), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6627), 1, - anon_sym_DOLLAR2, - ACTIONS(6629), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6863), 1, - anon_sym_RBRACK, - STATE(3576), 1, - sym_comment, - STATE(3835), 1, - sym__immediate_decimal, - ACTIONS(6145), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4091), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [108720] = 3, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [108316] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3577), 1, + STATE(3565), 1, sym_comment, - ACTIONS(6865), 12, + ACTIONS(6517), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233876,33 +233533,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, - [108741] = 3, + [108337] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3578), 1, - sym_comment, - ACTIONS(6867), 12, + ACTIONS(6146), 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, - [108762] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3579), 1, + ACTIONS(6865), 1, + anon_sym_else, + STATE(3550), 1, + aux_sym__repeat_newline, + STATE(3566), 1, sym_comment, - ACTIONS(6869), 12, - sym__newline, - anon_sym_SEMI, + ACTIONS(6149), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -233912,13 +233554,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, - [108783] = 3, + [108364] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3580), 1, + STATE(3567), 1, sym_comment, - ACTIONS(6871), 12, + ACTIONS(6519), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233930,13 +233572,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, - [108804] = 3, + [108385] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3581), 1, + STATE(3568), 1, sym_comment, - ACTIONS(6873), 12, + ACTIONS(6521), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233948,13 +233590,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, - [108825] = 3, + [108406] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3582), 1, + STATE(3569), 1, sym_comment, - ACTIONS(6875), 12, + ACTIONS(6867), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233967,12 +233608,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108846] = 3, + [108427] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3583), 1, + STATE(3570), 1, sym_comment, - ACTIONS(6877), 12, + ACTIONS(6869), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233985,32 +233626,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108867] = 3, + [108448] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3584), 1, - sym_comment, - ACTIONS(6879), 12, + ACTIONS(6139), 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, - [108888] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3585), 1, + ACTIONS(6871), 1, + anon_sym_else, + STATE(3551), 1, + aux_sym__repeat_newline, + STATE(3571), 1, sym_comment, - ACTIONS(6881), 12, - sym__newline, - anon_sym_SEMI, + ACTIONS(6142), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -234020,15 +233647,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, - [108909] = 3, + [108475] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3586), 1, - sym_comment, - ACTIONS(6883), 12, + ACTIONS(6114), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6873), 1, + anon_sym_else, + STATE(3563), 1, + aux_sym__repeat_newline, + STATE(3572), 1, + sym_comment, + ACTIONS(6117), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -234038,13 +233668,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, - [108930] = 3, + [108502] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3587), 1, + STATE(3573), 1, sym_comment, - ACTIONS(6885), 12, + ACTIONS(6875), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234057,12 +233686,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108951] = 3, + [108523] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3588), 1, + ACTIONS(6877), 1, + anon_sym_EQ, + STATE(3574), 1, sym_comment, - ACTIONS(6887), 12, + ACTIONS(6475), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234074,13 +233705,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, - [108972] = 3, + [108546] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3589), 1, + STATE(3575), 1, sym_comment, - ACTIONS(6889), 12, + ACTIONS(6879), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234093,148 +233723,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [108993] = 11, + [108567] = 12, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1628), 1, + ACTIONS(1687), 1, sym__entry_separator, - ACTIONS(6137), 1, + ACTIONS(1689), 1, + anon_sym_RBRACK, + ACTIONS(1697), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6214), 1, anon_sym_LPAREN2, - ACTIONS(6607), 1, + ACTIONS(6645), 1, anon_sym_DOLLAR, - ACTIONS(6631), 1, + ACTIONS(6881), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6633), 1, + ACTIONS(6883), 1, aux_sym__immediate_decimal_token2, - STATE(3590), 1, + STATE(3576), 1, sym_comment, - STATE(4366), 1, + STATE(4656), 1, sym__immediate_decimal, - ACTIONS(1632), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6513), 2, + ACTIONS(6885), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4548), 2, + STATE(4532), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109030] = 4, + [108606] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6891), 1, - anon_sym_EQ, - STATE(3591), 1, + ACTIONS(1622), 1, + anon_sym_LBRACE, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + ACTIONS(6887), 1, + anon_sym_DOT, + STATE(3577), 1, sym_comment, - ACTIONS(6517), 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, - [109053] = 3, + STATE(4234), 1, + sym__immediate_decimal, + ACTIONS(6889), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6891), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4506), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [108643] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3592), 1, + ACTIONS(6893), 1, + anon_sym_DASH2, + STATE(3578), 1, sym_comment, - ACTIONS(6893), 12, + ACTIONS(6408), 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, - [109074] = 3, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [108666] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3593), 1, + ACTIONS(6895), 1, + anon_sym_DOT, + ACTIONS(6897), 1, + aux_sym__immediate_decimal_token5, + STATE(3579), 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, - [109095] = 3, + ACTIONS(763), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(765), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [108693] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3594), 1, + ACTIONS(2467), 1, + anon_sym_DASH2, + STATE(3580), 1, sym_comment, - ACTIONS(6897), 12, + ACTIONS(2465), 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, - [109116] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [108716] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6899), 1, - anon_sym_else, - STATE(3595), 1, + ACTIONS(2463), 1, + anon_sym_DASH2, + STATE(3581), 1, sym_comment, - ACTIONS(6443), 11, + ACTIONS(2461), 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, - [109139] = 3, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [108739] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3596), 1, + ACTIONS(6899), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6901), 1, + aux_sym__immediate_decimal_token5, + STATE(3582), 1, sym_comment, - ACTIONS(6901), 12, + ACTIONS(755), 4, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [109160] = 3, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(757), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [108766] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3597), 1, + STATE(3583), 1, sym_comment, - ACTIONS(6903), 12, + ACTIONS(6503), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234246,67 +233893,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, - [109181] = 3, + [108787] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3598), 1, + ACTIONS(2459), 1, + anon_sym_DASH2, + STATE(3584), 1, sym_comment, - ACTIONS(6905), 12, + ACTIONS(2457), 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, - [109202] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [108810] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3599), 1, + ACTIONS(6903), 1, + anon_sym_DOT, + ACTIONS(6905), 1, + aux_sym__immediate_decimal_token5, + STATE(3585), 1, sym_comment, - ACTIONS(6907), 12, + ACTIONS(763), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(765), 8, + anon_sym_if, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [109223] = 3, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [108837] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3600), 1, + ACTIONS(2455), 1, + anon_sym_DASH2, + STATE(3586), 1, sym_comment, - ACTIONS(6909), 12, + ACTIONS(2453), 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, - [109244] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [108860] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3601), 1, + STATE(3587), 1, sym_comment, - ACTIONS(6911), 12, + ACTIONS(4905), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234319,18 +233970,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [109265] = 6, + [108881] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - STATE(539), 1, + STATE(529), 1, aux_sym__pipe_separator, - STATE(3602), 1, + STATE(3588), 1, sym_comment, - STATE(3624), 1, + STATE(3647), 1, aux_sym__repeat_newline, - ACTIONS(2075), 9, + ACTIONS(1999), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -234340,30 +233991,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, - [109292] = 3, + [108908] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6907), 1, + anon_sym_DOT2, + STATE(375), 1, + sym_path, + STATE(382), 1, + sym_cell_path, + STATE(3589), 1, + sym_comment, + STATE(3640), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1480), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1478), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + [108939] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3603), 1, + ACTIONS(2148), 1, + anon_sym_DASH2, + STATE(3590), 1, sym_comment, - ACTIONS(6913), 12, + ACTIONS(2146), 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, - [109313] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [108962] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3604), 1, + STATE(3591), 1, sym_comment, - ACTIONS(6477), 12, + ACTIONS(6525), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -234376,36 +234051,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [109334] = 7, + [108983] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2253), 1, + anon_sym_DASH2, + STATE(3592), 1, + sym_comment, + ACTIONS(2251), 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, + [109006] = 12, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1622), 1, + sym__entry_separator, + ACTIONS(1626), 1, + anon_sym_RBRACK, + ACTIONS(1636), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6214), 1, + anon_sym_LPAREN2, + ACTIONS(6645), 1, + anon_sym_DOLLAR, + ACTIONS(6881), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6883), 1, + aux_sym__immediate_decimal_token2, + STATE(3593), 1, + sym_comment, + STATE(4469), 1, + sym__immediate_decimal, + ACTIONS(6885), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4578), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109045] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1484), 1, + ACTIONS(1488), 1, anon_sym_BANG, - ACTIONS(6915), 1, + ACTIONS(6909), 1, anon_sym_QMARK2, - STATE(368), 1, + STATE(356), 1, sym__path_suffix, - STATE(3605), 1, + STATE(3594), 1, sym_comment, - ACTIONS(1474), 3, + ACTIONS(1472), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1472), 6, + ACTIONS(1470), 6, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_COLON2, anon_sym_DOT2, - [109363] = 4, + [109074] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6919), 1, + ACTIONS(2451), 1, anon_sym_DASH2, - STATE(3606), 1, + STATE(3595), 1, sym_comment, - ACTIONS(6917), 11, + ACTIONS(2449), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -234417,14 +234138,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [109386] = 4, + [109097] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6923), 1, + ACTIONS(6911), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6913), 1, + aux_sym__immediate_decimal_token5, + STATE(3596), 1, + sym_comment, + ACTIONS(755), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(757), 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, + [109124] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2447), 1, anon_sym_DASH2, - STATE(3607), 1, + STATE(3597), 1, sym_comment, - ACTIONS(6921), 11, + ACTIONS(2445), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -234436,12 +234178,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [109409] = 3, + [109147] = 11, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1648), 1, + sym__entry_separator, + ACTIONS(6214), 1, + anon_sym_LPAREN2, + ACTIONS(6645), 1, + anon_sym_DOLLAR, + ACTIONS(6647), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6649), 1, + aux_sym__immediate_decimal_token2, + STATE(3598), 1, + sym_comment, + STATE(4580), 1, + sym__immediate_decimal, + ACTIONS(1650), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6533), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4581), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109184] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3608), 1, + ACTIONS(5885), 1, + anon_sym_DASH2, + STATE(3599), 1, + sym_comment, + ACTIONS(5313), 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, + [109207] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3600), 1, sym_comment, - ACTIONS(6925), 12, + ACTIONS(6915), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234454,14 +234241,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [109430] = 4, + [109228] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6917), 1, + anon_sym_DOT, + ACTIONS(6919), 1, + aux_sym__immediate_decimal_token5, + STATE(3601), 1, + sym_comment, + ACTIONS(763), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(765), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [109255] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6929), 1, + ACTIONS(2316), 1, anon_sym_DASH2, - STATE(3609), 1, + STATE(3602), 1, sym_comment, - ACTIONS(6927), 11, + ACTIONS(2314), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -234473,182 +234281,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [109453] = 6, + [109278] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5487), 1, + ACTIONS(6921), 1, anon_sym_DASH2, - STATE(3610), 1, + STATE(3603), 1, sym_comment, - STATE(3618), 1, - aux_sym_parameter_repeat2, - ACTIONS(1509), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(5485), 7, + ACTIONS(6417), 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, - [109479] = 11, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(914), 1, - sym__space, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(5076), 1, - sym__unquoted_pattern, - ACTIONS(6931), 1, - anon_sym_DOT_DOT2, - ACTIONS(6935), 1, - sym_filesize_unit, - ACTIONS(6937), 1, - sym_duration_unit, - STATE(3611), 1, - sym_comment, - STATE(5081), 1, - sym__expr_parenthesized_immediate, - ACTIONS(811), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6933), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109515] = 5, - ACTIONS(105), 1, + [109301] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6727), 1, - aux_sym__immediate_decimal_token5, - STATE(3612), 1, + ACTIONS(6923), 1, + anon_sym_DASH2, + STATE(3604), 1, sym_comment, - ACTIONS(751), 4, + ACTIONS(6427), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(753), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [109539] = 6, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [109324] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, + ACTIONS(6921), 1, anon_sym_DASH2, - STATE(3613), 1, + STATE(3605), 1, sym_comment, - STATE(3618), 1, - aux_sym_parameter_repeat2, - ACTIONS(1509), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(5535), 7, + ACTIONS(6417), 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, - [109565] = 9, - ACTIONS(3), 1, + [109347] = 12, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1630), 1, + ACTIONS(1778), 1, anon_sym_DOLLAR, - ACTIONS(2560), 1, - aux_sym_expr_unary_token1, - ACTIONS(4905), 1, - anon_sym_LPAREN, - ACTIONS(4907), 1, - anon_sym_DASH2, - STATE(980), 1, - sym__expr_unary_minus, - STATE(3614), 1, + ACTIONS(6214), 1, + anon_sym_LPAREN2, + ACTIONS(6218), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6220), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6786), 1, + anon_sym_DOLLAR2, + ACTIONS(6788), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(6925), 1, + anon_sym_RBRACK, + STATE(3606), 1, sym_comment, - ACTIONS(2552), 2, - anon_sym_true, - anon_sym_false, - STATE(985), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, + STATE(3855), 1, + sym__immediate_decimal, + ACTIONS(6222), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4110), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - [109597] = 5, - ACTIONS(105), 1, + [109386] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6743), 1, - aux_sym__immediate_decimal_token5, - STATE(3615), 1, + ACTIONS(6929), 1, + anon_sym_DASH2, + STATE(3607), 1, sym_comment, - ACTIONS(751), 4, + ACTIONS(6927), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(753), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [109621] = 5, - ACTIONS(105), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [109409] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6939), 1, - aux_sym__immediate_decimal_token5, - STATE(3616), 1, + ACTIONS(6933), 1, + anon_sym_DASH2, + STATE(3608), 1, sym_comment, - ACTIONS(791), 4, + ACTIONS(6931), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(793), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [109645] = 5, - ACTIONS(105), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [109432] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6941), 1, - aux_sym__immediate_decimal_token5, - STATE(3617), 1, + STATE(3609), 1, sym_comment, - ACTIONS(791), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(793), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [109669] = 5, + ACTIONS(6535), 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, + [109453] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6948), 1, + ACTIONS(5541), 1, anon_sym_DASH2, - ACTIONS(6945), 2, - sym__newline, - anon_sym_COMMA, - STATE(3618), 2, + STATE(3610), 1, sym_comment, + STATE(3650), 1, aux_sym_parameter_repeat2, - ACTIONS(6943), 7, + ACTIONS(1506), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(5539), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -234656,109 +234441,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [109693] = 11, + [109479] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1689), 1, - sym__entry_separator, - ACTIONS(1691), 1, - anon_sym_RBRACE, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6607), 1, - anon_sym_DOLLAR, - ACTIONS(6631), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6633), 1, - aux_sym__immediate_decimal_token2, - STATE(3619), 1, + ACTIONS(6935), 1, + aux_sym__immediate_decimal_token5, + STATE(3611), 1, sym_comment, - STATE(5038), 1, - sym__immediate_decimal, - ACTIONS(6513), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4416), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [109729] = 9, + 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, + [109503] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(175), 1, + ACTIONS(73), 1, aux_sym_expr_unary_token1, - ACTIONS(1630), 1, + ACTIONS(1703), 1, anon_sym_DOLLAR, - ACTIONS(4905), 1, + ACTIONS(4935), 1, anon_sym_LPAREN, - ACTIONS(4907), 1, + ACTIONS(4939), 1, anon_sym_DASH2, - STATE(980), 1, + STATE(1344), 1, sym__expr_unary_minus, - STATE(3620), 1, + STATE(3612), 1, sym_comment, - ACTIONS(1949), 2, + ACTIONS(2423), 2, anon_sym_true, anon_sym_false, - STATE(985), 4, + STATE(1345), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [109761] = 5, - ACTIONS(105), 1, + [109535] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6641), 1, + ACTIONS(6937), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6939), 1, aux_sym__immediate_decimal_token5, - STATE(3621), 1, + STATE(3613), 1, sym_comment, - ACTIONS(751), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(755), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(753), 6, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(757), 7, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [109785] = 9, + [109561] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(73), 1, - aux_sym_expr_unary_token1, - ACTIONS(1693), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(4931), 1, + ACTIONS(2509), 1, + aux_sym_expr_unary_token1, + ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - STATE(1293), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(3622), 1, + STATE(3614), 1, sym_comment, - ACTIONS(2510), 2, + ACTIONS(2501), 2, anon_sym_true, anon_sym_false, - STATE(1358), 4, + STATE(930), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [109817] = 6, + [109593] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6941), 1, + aux_sym__immediate_decimal_token5, + STATE(3615), 1, + sym_comment, + ACTIONS(775), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + 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, + sym_filesize_unit, + sym_duration_unit, + [109617] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6943), 1, + anon_sym_DOT, + ACTIONS(6945), 1, + aux_sym__immediate_decimal_token5, + STATE(3616), 1, + sym_comment, + ACTIONS(763), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(765), 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, + [109643] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6952), 1, + ACTIONS(6949), 1, anon_sym_DASH2, - STATE(3618), 1, - aux_sym_parameter_repeat2, - STATE(3623), 1, + STATE(3617), 1, sym_comment, - ACTIONS(1509), 2, + STATE(3650), 1, + aux_sym_parameter_repeat2, + ACTIONS(1506), 2, sym__newline, anon_sym_COMMA, - ACTIONS(6950), 7, + ACTIONS(6947), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -234766,16 +234585,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [109843] = 5, + [109669] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3624), 1, + ACTIONS(6951), 1, + anon_sym_else, + STATE(3618), 1, sym_comment, - ACTIONS(2359), 9, + ACTIONS(6479), 10, + sym__newline, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -234785,176 +234603,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, - [109867] = 11, + [109691] = 11, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(914), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(6629), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6954), 1, - anon_sym_LPAREN2, - ACTIONS(6956), 1, - anon_sym_DOT_DOT2, - ACTIONS(6960), 1, - sym_filesize_unit, - ACTIONS(6962), 1, - sym_duration_unit, - STATE(3625), 1, - sym_comment, - STATE(5048), 1, - sym__expr_parenthesized_immediate, - ACTIONS(811), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6958), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109903] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2750), 1, - aux_sym_expr_unary_token1, - ACTIONS(3805), 1, - anon_sym_DOLLAR, - ACTIONS(4935), 1, - anon_sym_DASH2, - ACTIONS(5259), 1, - anon_sym_LPAREN, - STATE(1293), 1, - sym__expr_unary_minus, - STATE(3626), 1, - sym_comment, - ACTIONS(2510), 2, - anon_sym_true, - anon_sym_false, - STATE(1358), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [109935] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1634), 1, + ACTIONS(1626), 1, + anon_sym_RBRACE, + ACTIONS(6214), 1, anon_sym_LPAREN2, - ACTIONS(1689), 1, - anon_sym_LBRACE, - ACTIONS(1711), 1, - sym__unquoted_pattern, - ACTIONS(2945), 1, + ACTIONS(6645), 1, anon_sym_DOLLAR, - STATE(3627), 1, - sym_comment, - STATE(5034), 1, - sym__immediate_decimal, - ACTIONS(6964), 2, + ACTIONS(6647), 1, aux_sym__immediate_decimal_token1, + ACTIONS(6649), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6966), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(747), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [109969] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - ACTIONS(1642), 1, - anon_sym_LBRACE, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(2945), 1, - anon_sym_DOLLAR, - STATE(3628), 1, + STATE(3619), 1, sym_comment, - STATE(5096), 1, + STATE(5012), 1, sym__immediate_decimal, - ACTIONS(6964), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6966), 2, + ACTIONS(6533), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(925), 2, + STATE(4578), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110003] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6970), 1, - anon_sym_DASH2, - STATE(3618), 1, - aux_sym_parameter_repeat2, - STATE(3629), 1, - sym_comment, - ACTIONS(1509), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(6968), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [110029] = 6, + [109727] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6972), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6974), 1, + ACTIONS(6897), 1, aux_sym__immediate_decimal_token5, - STATE(3630), 1, + STATE(3620), 1, sym_comment, - ACTIONS(759), 3, + ACTIONS(763), 4, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(761), 6, + sym__unquoted_pattern_in_list, + ACTIONS(765), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [110055] = 10, + [109751] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1628), 1, - anon_sym_LBRACE, - ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(1636), 1, + ACTIONS(1648), 1, + anon_sym_LBRACE, + ACTIONS(1652), 1, anon_sym_DOT, - ACTIONS(2945), 1, + ACTIONS(2935), 1, anon_sym_DOLLAR, - STATE(3631), 1, + STATE(3621), 1, sym_comment, - STATE(4570), 1, + STATE(4505), 1, sym__immediate_decimal, - ACTIONS(6805), 2, + ACTIONS(6889), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6807), 2, + ACTIONS(6891), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4567), 2, + STATE(4504), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110089] = 4, + [109785] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6955), 1, + anon_sym_DASH2, + STATE(3622), 1, + sym_comment, + STATE(3650), 1, + aux_sym_parameter_repeat2, + ACTIONS(1506), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(6953), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [109811] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3632), 1, + STATE(3623), 1, sym_comment, - ACTIONS(1529), 3, + ACTIONS(1552), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1527), 8, + ACTIONS(1550), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, @@ -234963,205 +234709,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [110111] = 11, - ACTIONS(105), 1, + [109833] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1642), 1, - sym__entry_separator, - ACTIONS(1644), 1, - anon_sym_RBRACE, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6607), 1, - anon_sym_DOLLAR, - ACTIONS(6631), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6633), 1, - aux_sym__immediate_decimal_token2, - STATE(3633), 1, + ACTIONS(6959), 1, + anon_sym_DASH2, + STATE(3624), 1, sym_comment, - STATE(4956), 1, - sym__immediate_decimal, - ACTIONS(6513), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4414), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [110147] = 7, + STATE(3650), 1, + aux_sym_parameter_repeat2, + ACTIONS(1506), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(6957), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [109859] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6691), 1, - anon_sym_DOT2, - STATE(366), 1, - sym_path, - STATE(3634), 1, + STATE(3625), 1, sym_comment, - STATE(3636), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1579), 3, + ACTIONS(1492), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1577), 5, + ACTIONS(1490), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_COLON2, - [110175] = 6, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [109881] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6976), 1, - anon_sym_DOT, - ACTIONS(6978), 1, + ACTIONS(6961), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6963), 1, aux_sym__immediate_decimal_token5, - STATE(3635), 1, + STATE(3626), 1, sym_comment, - ACTIONS(751), 3, + ACTIONS(755), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(753), 6, + ACTIONS(757), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [110201] = 6, + [109907] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(175), 1, + aux_sym_expr_unary_token1, + ACTIONS(1624), 1, + anon_sym_DOLLAR, + ACTIONS(4915), 1, + anon_sym_LPAREN, + ACTIONS(4917), 1, + anon_sym_DASH2, + STATE(937), 1, + sym__expr_unary_minus, + STATE(3627), 1, + sym_comment, + ACTIONS(1975), 2, + anon_sym_true, + anon_sym_false, + STATE(930), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [109939] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6965), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6967), 1, + aux_sym__immediate_decimal_token5, + STATE(3628), 1, + sym_comment, + ACTIONS(755), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(757), 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, + [109965] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6980), 1, + ACTIONS(6907), 1, anon_sym_DOT2, - STATE(366), 1, + STATE(375), 1, sym_path, - STATE(3636), 2, + STATE(3629), 1, sym_comment, + STATE(3640), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1492), 3, + STATE(3982), 1, + sym_cell_path, + ACTIONS(1683), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1490), 5, + ACTIONS(1685), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_COLON2, - [110227] = 5, + [109995] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6983), 1, + ACTIONS(6919), 1, aux_sym__immediate_decimal_token5, - STATE(3637), 1, + STATE(3630), 1, sym_comment, - ACTIONS(791), 4, + ACTIONS(763), 4, sym__newline, anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(793), 6, + ACTIONS(765), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [110251] = 8, + [110019] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6691), 1, + STATE(3631), 1, + sym_comment, + ACTIONS(1542), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1540), 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, - STATE(366), 1, - sym_path, - STATE(3634), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3638), 1, + [110041] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3632), 1, sym_comment, - STATE(3974), 1, - sym_cell_path, - ACTIONS(1703), 3, + ACTIONS(1524), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1705), 4, + ACTIONS(1522), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - [110281] = 9, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [110063] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1754), 1, + ACTIONS(1752), 1, anon_sym_LPAREN, - ACTIONS(2818), 1, + ACTIONS(2750), 1, aux_sym_expr_unary_token1, - ACTIONS(2945), 1, + ACTIONS(2935), 1, anon_sym_DOLLAR, - ACTIONS(4907), 1, + ACTIONS(4917), 1, anon_sym_DASH2, - STATE(980), 1, + STATE(937), 1, sym__expr_unary_minus, - STATE(3639), 1, + STATE(3633), 1, sym_comment, - ACTIONS(1949), 2, + ACTIONS(1975), 2, anon_sym_true, anon_sym_false, - STATE(985), 4, + STATE(930), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [110313] = 6, - ACTIONS(3), 1, + [110095] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6985), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6987), 1, - aux_sym__immediate_decimal_token5, - STATE(3640), 1, + ACTIONS(6907), 1, + anon_sym_DOT2, + STATE(375), 1, + sym_path, + STATE(3634), 1, sym_comment, - ACTIONS(759), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(761), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + STATE(3640), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3984), 1, + sym_cell_path, + ACTIONS(1667), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [110339] = 4, + sym__entry_separator, + ACTIONS(1669), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [110125] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(3641), 1, + ACTIONS(6969), 1, + anon_sym_DOT2, + STATE(375), 1, + sym_path, + STATE(3635), 2, sym_comment, - ACTIONS(1533), 3, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1560), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1531), 8, + ACTIONS(1558), 5, 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, - [110361] = 5, + [110151] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6651), 1, + ACTIONS(6905), 1, aux_sym__immediate_decimal_token5, - STATE(3642), 1, + STATE(3636), 1, sym_comment, - ACTIONS(751), 2, + ACTIONS(763), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(753), 8, + ACTIONS(765), 8, anon_sym_if, sym__newline, anon_sym_PIPE, @@ -235170,131 +234971,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [110385] = 4, + [110175] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(3643), 1, + ACTIONS(6972), 1, + anon_sym_DOT, + ACTIONS(6974), 1, + aux_sym__immediate_decimal_token5, + STATE(3637), 1, sym_comment, - ACTIONS(1537), 3, + ACTIONS(763), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(765), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(1535), 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, - [110407] = 6, - ACTIONS(3), 1, + [110201] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6989), 1, - anon_sym_DOT, - ACTIONS(6991), 1, + ACTIONS(6976), 1, aux_sym__immediate_decimal_token5, - STATE(3644), 1, + STATE(3638), 1, sym_comment, - ACTIONS(751), 2, + ACTIONS(775), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(753), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + 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, - [110433] = 6, + sym__entry_separator, + [110225] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6993), 1, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + ACTIONS(1687), 1, + anon_sym_LBRACE, + ACTIONS(1697), 1, + sym__unquoted_pattern, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + STATE(3639), 1, + sym_comment, + STATE(5001), 1, + sym__immediate_decimal, + ACTIONS(6978), 2, aux_sym__immediate_decimal_token1, - ACTIONS(6995), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6980), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(758), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [110259] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6907), 1, + anon_sym_DOT2, + STATE(375), 1, + sym_path, + STATE(3635), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3640), 1, + sym_comment, + ACTIONS(1569), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1567), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + [110287] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6782), 1, aux_sym__immediate_decimal_token5, - STATE(3645), 1, + STATE(3641), 1, sym_comment, - ACTIONS(759), 2, + ACTIONS(763), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(761), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + sym__unquoted_pattern_in_list, + ACTIONS(765), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [110459] = 5, - ACTIONS(3), 1, + sym__entry_separator, + [110311] = 11, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6997), 1, - aux_sym__immediate_decimal_token5, - STATE(3646), 1, - sym_comment, - ACTIONS(791), 2, - anon_sym_DOT_DOT2, + ACTIONS(910), 1, + sym__space, + ACTIONS(1830), 1, + anon_sym_LPAREN2, + ACTIONS(5088), 1, sym__unquoted_pattern, - ACTIONS(793), 8, - anon_sym_if, + ACTIONS(6982), 1, + anon_sym_DOT_DOT2, + ACTIONS(6986), 1, + sym_filesize_unit, + ACTIONS(6988), 1, + sym_duration_unit, + STATE(3642), 1, + sym_comment, + STATE(4949), 1, + sym__expr_parenthesized_immediate, + ACTIONS(811), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + anon_sym_SEMI, + ACTIONS(6984), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [110483] = 6, + [110347] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5474), 1, + ACTIONS(2113), 1, anon_sym_DASH2, - STATE(3618), 1, - aux_sym_parameter_repeat2, - STATE(3647), 1, + STATE(3643), 1, sym_comment, - ACTIONS(1509), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(5472), 7, + ACTIONS(2111), 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, - [110509] = 4, + [110369] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6999), 1, - anon_sym_else, - STATE(3648), 1, + ACTIONS(5456), 1, + anon_sym_DASH2, + STATE(3644), 1, sym_comment, - ACTIONS(6443), 10, + STATE(3650), 1, + aux_sym_parameter_repeat2, + ACTIONS(1506), 2, sym__newline, + anon_sym_COMMA, + ACTIONS(5454), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [110531] = 4, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [110395] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3649), 1, + STATE(3645), 1, sym_comment, - ACTIONS(1488), 3, + ACTIONS(1546), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1486), 8, + ACTIONS(1544), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, @@ -235303,997 +235155,1519 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [110553] = 4, - ACTIONS(105), 1, + [110417] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5468), 1, + anon_sym_DASH2, + STATE(3646), 1, + sym_comment, STATE(3650), 1, + aux_sym_parameter_repeat2, + ACTIONS(1506), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(5466), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [110443] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2966), 1, + sym__newline, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3647), 1, + sym_comment, + ACTIONS(2263), 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, + [110467] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6990), 1, + anon_sym_DOT, + ACTIONS(6992), 1, + aux_sym__immediate_decimal_token5, + STATE(3648), 1, sym_comment, - ACTIONS(1543), 3, + ACTIONS(763), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(765), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1541), 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, - [110575] = 4, + sym_filesize_unit, + sym_duration_unit, + [110493] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(3651), 1, + ACTIONS(6994), 1, + aux_sym__immediate_decimal_token5, + STATE(3649), 1, sym_comment, - ACTIONS(1547), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1545), 8, + ACTIONS(775), 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, - [110597] = 4, + 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, + [110517] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2128), 1, + ACTIONS(7001), 1, anon_sym_DASH2, - STATE(3652), 1, + ACTIONS(6998), 2, + sym__newline, + anon_sym_COMMA, + STATE(3650), 2, sym_comment, - ACTIONS(2126), 10, - anon_sym_EQ, + aux_sym_parameter_repeat2, + ACTIONS(6996), 7, 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, - [110619] = 8, + [110541] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6691), 1, - anon_sym_DOT2, - STATE(366), 1, - sym_path, - STATE(3634), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3653), 1, + STATE(3651), 1, sym_comment, - STATE(3911), 1, - sym_cell_path, - ACTIONS(1669), 3, + ACTIONS(1576), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1671), 4, + ACTIONS(1574), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - [110649] = 6, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [110563] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7003), 1, + ACTIONS(2818), 1, + aux_sym_expr_unary_token1, + ACTIONS(3842), 1, + anon_sym_DOLLAR, + ACTIONS(4939), 1, anon_sym_DASH2, - STATE(3618), 1, - aux_sym_parameter_repeat2, - STATE(3654), 1, + ACTIONS(5319), 1, + anon_sym_LPAREN, + STATE(1344), 1, + sym__expr_unary_minus, + STATE(3652), 1, sym_comment, - ACTIONS(1509), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(7001), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(2423), 2, + anon_sym_true, + anon_sym_false, + STATE(1345), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [110595] = 11, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1687), 1, + sym__entry_separator, + ACTIONS(1689), 1, + anon_sym_RBRACE, + ACTIONS(6214), 1, + anon_sym_LPAREN2, + ACTIONS(6645), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [110675] = 6, + ACTIONS(6647), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6649), 1, + aux_sym__immediate_decimal_token2, + STATE(3653), 1, + sym_comment, + STATE(5096), 1, + sym__immediate_decimal, + ACTIONS(6533), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4532), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [110631] = 10, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1622), 1, + anon_sym_LBRACE, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + STATE(3654), 1, + sym_comment, + STATE(4977), 1, + sym__immediate_decimal, + ACTIONS(6978), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6980), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(851), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [110665] = 11, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(910), 1, + sym__entry_separator, + ACTIONS(6788), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7003), 1, + anon_sym_LPAREN2, ACTIONS(7005), 1, - anon_sym_DOT, - ACTIONS(7007), 1, - aux_sym__immediate_decimal_token5, + anon_sym_DOT_DOT2, + ACTIONS(7009), 1, + sym_filesize_unit, + ACTIONS(7011), 1, + sym_duration_unit, STATE(3655), 1, sym_comment, - ACTIONS(751), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(753), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + STATE(5069), 1, + sym__expr_parenthesized_immediate, + ACTIONS(811), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7007), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, [110701] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1634), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(1806), 1, + ACTIONS(1840), 1, aux_sym_unquoted_token2, - ACTIONS(4024), 1, + ACTIONS(4952), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7009), 1, + ACTIONS(5257), 1, anon_sym_DOLLAR, - ACTIONS(7011), 1, + ACTIONS(7013), 1, aux_sym__immediate_decimal_token2, - STATE(1927), 1, + STATE(2603), 1, sym__immediate_decimal, STATE(3656), 1, sym_comment, - ACTIONS(7013), 2, + ACTIONS(7015), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1993), 2, + STATE(923), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110734] = 4, + [110734] = 9, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(107), 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(498), 1, + sym_val_string, STATE(3657), 1, sym_comment, - ACTIONS(791), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(793), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [110755] = 4, + STATE(509), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [110765] = 10, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1705), 1, + anon_sym_LPAREN2, + ACTIONS(1872), 1, + aux_sym_unquoted_token2, + ACTIONS(3502), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7025), 1, + anon_sym_DOLLAR, + ACTIONS(7027), 1, + aux_sym__immediate_decimal_token2, + STATE(1462), 1, + sym__immediate_decimal, STATE(3658), 1, sym_comment, - ACTIONS(791), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7029), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(953), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [110798] = 10, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1705), 1, + anon_sym_LPAREN2, + ACTIONS(1872), 1, + aux_sym_unquoted_token2, + ACTIONS(3516), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7025), 1, + anon_sym_DOLLAR, + ACTIONS(7031), 1, + aux_sym__immediate_decimal_token2, + STATE(1527), 1, + sym__immediate_decimal, + STATE(3659), 1, + sym_comment, + ACTIONS(7033), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1293), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [110831] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(974), 1, + anon_sym_DQUOTE, + ACTIONS(976), 1, + anon_sym_SQUOTE, + ACTIONS(978), 1, + anon_sym_BQUOTE, + ACTIONS(990), 1, + sym_raw_string_begin, + ACTIONS(7035), 1, + aux_sym_path_token1, + STATE(2482), 1, + sym_val_string, + STATE(3660), 1, + sym_comment, + STATE(2553), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [110862] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3661), 1, + sym_comment, + ACTIONS(775), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(793), 6, + 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, - sym__entry_separator, - [110776] = 10, + [110883] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1634), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(1806), 1, + ACTIONS(1840), 1, aux_sym_unquoted_token2, - ACTIONS(3918), 1, + ACTIONS(4024), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7009), 1, + ACTIONS(7037), 1, anon_sym_DOLLAR, - ACTIONS(7015), 1, + ACTIONS(7039), 1, aux_sym__immediate_decimal_token2, - STATE(1876), 1, + STATE(1909), 1, sym__immediate_decimal, - STATE(3659), 1, + STATE(3662), 1, sym_comment, - ACTIONS(7017), 2, + ACTIONS(7041), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(708), 2, + STATE(2008), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110809] = 10, + [110916] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1634), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(1806), 1, + ACTIONS(1840), 1, aux_sym_unquoted_token2, - ACTIONS(4010), 1, + ACTIONS(4046), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7009), 1, + ACTIONS(7037), 1, anon_sym_DOLLAR, - ACTIONS(7019), 1, + ACTIONS(7043), 1, aux_sym__immediate_decimal_token2, - STATE(1986), 1, + STATE(2138), 1, sym__immediate_decimal, - STATE(3660), 1, + STATE(3663), 1, + sym_comment, + ACTIONS(7045), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(923), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [110949] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7047), 1, + anon_sym_DQUOTE, + ACTIONS(7049), 1, + anon_sym_SQUOTE, + ACTIONS(7051), 1, + anon_sym_BQUOTE, + ACTIONS(7053), 1, + aux_sym_path_token1, + ACTIONS(7055), 1, + sym_raw_string_begin, + STATE(1911), 1, + sym_val_string, + STATE(3664), 1, + sym_comment, + STATE(1955), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [110980] = 10, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + ACTIONS(1840), 1, + aux_sym_unquoted_token2, + ACTIONS(3478), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7037), 1, + anon_sym_DOLLAR, + ACTIONS(7057), 1, + aux_sym__immediate_decimal_token2, + STATE(1461), 1, + sym__immediate_decimal, + STATE(3665), 1, + sym_comment, + ACTIONS(7059), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(742), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [111013] = 10, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3270), 1, + anon_sym_LPAREN2, + ACTIONS(3715), 1, + anon_sym_DOLLAR, + ACTIONS(5088), 1, + aux_sym_unquoted_token2, + ACTIONS(6123), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6125), 1, + aux_sym__immediate_decimal_token2, + STATE(3666), 1, + sym_comment, + STATE(3858), 1, + sym__immediate_decimal, + ACTIONS(6127), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4003), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [111046] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(871), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_SQUOTE, + ACTIONS(875), 1, + anon_sym_BQUOTE, + ACTIONS(887), 1, + sym_raw_string_begin, + ACTIONS(7061), 1, + aux_sym_path_token1, + STATE(2448), 1, + sym_val_string, + STATE(3667), 1, + sym_comment, + STATE(2515), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [111077] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7063), 1, + anon_sym_DQUOTE, + ACTIONS(7065), 1, + anon_sym_SQUOTE, + ACTIONS(7067), 1, + anon_sym_BQUOTE, + ACTIONS(7069), 1, + aux_sym_path_token1, + ACTIONS(7071), 1, + sym_raw_string_begin, + STATE(3668), 1, + sym_comment, + STATE(4296), 1, + sym_val_string, + STATE(4388), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [111108] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + 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(2403), 1, + sym_val_string, + STATE(3669), 1, + sym_comment, + STATE(2633), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [111139] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7083), 1, + anon_sym_DQUOTE, + ACTIONS(7085), 1, + anon_sym_SQUOTE, + ACTIONS(7087), 1, + anon_sym_BQUOTE, + ACTIONS(7089), 1, + aux_sym_path_token1, + ACTIONS(7091), 1, + sym_raw_string_begin, + STATE(1737), 1, + sym_val_string, + STATE(3670), 1, + sym_comment, + STATE(1780), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [111170] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3822), 1, + sym_raw_string_begin, + ACTIONS(7093), 1, + anon_sym_DQUOTE, + ACTIONS(7095), 1, + anon_sym_SQUOTE, + ACTIONS(7097), 1, + anon_sym_BQUOTE, + ACTIONS(7099), 1, + aux_sym_path_token1, + STATE(2387), 1, + sym_val_string, + STATE(3671), 1, + sym_comment, + STATE(2404), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [111201] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3672), 1, + sym_comment, + ACTIONS(801), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(803), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [111222] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1770), 1, + sym_raw_string_begin, + ACTIONS(7079), 1, + aux_sym_path_token1, + ACTIONS(7101), 1, + anon_sym_DQUOTE, + ACTIONS(7103), 1, + anon_sym_SQUOTE, + ACTIONS(7105), 1, + anon_sym_BQUOTE, + STATE(2403), 1, + sym_val_string, + STATE(3673), 1, + sym_comment, + STATE(2288), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [111253] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3048), 1, + sym_raw_string_begin, + 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, + STATE(2547), 1, + sym_val_string, + STATE(3674), 1, sym_comment, - ACTIONS(7021), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(889), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [110842] = 9, + STATE(2583), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [111284] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1454), 1, + ACTIONS(1458), 1, sym_raw_string_begin, - ACTIONS(7023), 1, + ACTIONS(7115), 1, anon_sym_DQUOTE, - ACTIONS(7025), 1, + ACTIONS(7117), 1, anon_sym_SQUOTE, - ACTIONS(7027), 1, + ACTIONS(7119), 1, anon_sym_BQUOTE, - ACTIONS(7029), 1, + ACTIONS(7121), 1, aux_sym_path_token1, - STATE(3605), 1, - sym_val_string, - STATE(3661), 1, + STATE(3675), 1, sym_comment, - STATE(3776), 4, + STATE(3872), 1, + sym_val_string, + STATE(3806), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [110873] = 4, + [111315] = 9, ACTIONS(105), 1, anon_sym_POUND, - STATE(3662), 1, + ACTIONS(7123), 1, + anon_sym_DQUOTE, + ACTIONS(7125), 1, + anon_sym_SQUOTE, + ACTIONS(7127), 1, + anon_sym_BQUOTE, + ACTIONS(7129), 1, + aux_sym_path_token1, + ACTIONS(7131), 1, + sym_raw_string_begin, + STATE(347), 1, + sym_val_string, + STATE(3676), 1, sym_comment, - ACTIONS(803), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + STATE(371), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [111346] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1840), 1, + sym__unquoted_pattern, + ACTIONS(7133), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(805), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(7137), 1, sym_filesize_unit, + ACTIONS(7139), 1, sym_duration_unit, - sym__entry_separator, - [110894] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(3663), 1, + STATE(3677), 1, sym_comment, - ACTIONS(759), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(761), 6, - sym__space, - anon_sym_LPAREN2, + ACTIONS(7135), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [110915] = 6, + ACTIONS(910), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [111375] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7031), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7033), 1, - aux_sym__immediate_decimal_token5, - STATE(3664), 1, + ACTIONS(1468), 1, + anon_sym_BANG, + STATE(3678), 1, sym_comment, - ACTIONS(1774), 4, - sym__space, - anon_sym_LPAREN2, + ACTIONS(1466), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1776), 4, - sym__newline, - anon_sym_SEMI, + sym__entry_separator, + ACTIONS(1464), 6, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [110940] = 10, + anon_sym_COLON2, + anon_sym_DOT2, + [111398] = 9, + ACTIONS(105), 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(378), 1, + sym_val_string, + STATE(3679), 1, + sym_comment, + STATE(411), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [111429] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1634), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(1806), 1, + ACTIONS(1840), 1, aux_sym_unquoted_token2, - ACTIONS(5298), 1, + ACTIONS(5257), 1, anon_sym_DOLLAR, - ACTIONS(5924), 1, + ACTIONS(6073), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7035), 1, + ACTIONS(7151), 1, aux_sym__immediate_decimal_token2, - STATE(3665), 1, + STATE(3680), 1, sym_comment, - STATE(3873), 1, + STATE(4333), 1, sym__immediate_decimal, - ACTIONS(7037), 2, + ACTIONS(7153), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3937), 2, + STATE(923), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110973] = 10, + [111462] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1634), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(1806), 1, + ACTIONS(1840), 1, aux_sym_unquoted_token2, - ACTIONS(5298), 1, + ACTIONS(5257), 1, anon_sym_DOLLAR, - ACTIONS(6236), 1, + ACTIONS(5978), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7039), 1, + ACTIONS(7155), 1, aux_sym__immediate_decimal_token2, - STATE(3666), 1, + STATE(3681), 1, sym_comment, - STATE(4278), 1, + STATE(3854), 1, sym__immediate_decimal, - ACTIONS(7041), 2, + ACTIONS(7157), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(889), 2, + STATE(3923), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111006] = 9, + [111495] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7043), 1, + ACTIONS(1458), 1, + sym_raw_string_begin, + ACTIONS(7115), 1, anon_sym_DQUOTE, - ACTIONS(7045), 1, + ACTIONS(7117), 1, anon_sym_SQUOTE, - ACTIONS(7047), 1, + ACTIONS(7119), 1, anon_sym_BQUOTE, - ACTIONS(7049), 1, + ACTIONS(7159), 1, aux_sym_path_token1, - ACTIONS(7051), 1, - sym_raw_string_begin, - STATE(382), 1, + STATE(3594), 1, sym_val_string, - STATE(3667), 1, + STATE(3682), 1, sym_comment, - STATE(386), 4, + STATE(3806), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [111037] = 9, - ACTIONS(3), 1, + [111526] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1634), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(1707), 1, - anon_sym_LBRACE, - ACTIONS(2945), 1, + ACTIONS(1693), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1840), 1, + aux_sym_unquoted_token2, + ACTIONS(7037), 1, anon_sym_DOLLAR, - STATE(761), 1, + ACTIONS(7161), 1, + aux_sym__immediate_decimal_token2, + STATE(977), 1, sym__immediate_decimal, - STATE(3668), 1, + STATE(3683), 1, sym_comment, - ACTIONS(6807), 2, + ACTIONS(7163), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(7053), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(760), 2, + STATE(923), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111068] = 9, + [111559] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(2945), 1, - anon_sym_DOLLAR, - STATE(763), 1, - sym__immediate_decimal, - STATE(3669), 1, + ACTIONS(6992), 1, + aux_sym__immediate_decimal_token5, + STATE(3684), 1, sym_comment, - ACTIONS(6807), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(7053), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(762), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [111099] = 9, - ACTIONS(3), 1, + ACTIONS(763), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(765), 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, + [111582] = 10, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1634), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(1681), 1, - anon_sym_LBRACE, - ACTIONS(2945), 1, + ACTIONS(1840), 1, + aux_sym_unquoted_token2, + ACTIONS(4018), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7037), 1, anon_sym_DOLLAR, - STATE(765), 1, + ACTIONS(7165), 1, + aux_sym__immediate_decimal_token2, + STATE(2014), 1, sym__immediate_decimal, - STATE(3670), 1, + STATE(3685), 1, sym_comment, - ACTIONS(6807), 2, + ACTIONS(7167), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(7053), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(764), 2, + STATE(923), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111130] = 10, + [111615] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3200), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(3719), 1, - anon_sym_DOLLAR, - ACTIONS(5076), 1, + ACTIONS(1840), 1, aux_sym_unquoted_token2, - ACTIONS(6280), 1, + ACTIONS(3968), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6282), 1, + ACTIONS(7037), 1, + anon_sym_DOLLAR, + ACTIONS(7169), 1, aux_sym__immediate_decimal_token2, - STATE(3671), 1, - sym_comment, - STATE(3834), 1, + STATE(1889), 1, sym__immediate_decimal, - ACTIONS(6284), 2, + STATE(3686), 1, + sym_comment, + ACTIONS(7171), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3999), 2, + STATE(742), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111163] = 10, + [111648] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3200), 1, + STATE(3687), 1, + sym_comment, + ACTIONS(775), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(777), 6, anon_sym_LPAREN2, - ACTIONS(3719), 1, - anon_sym_DOLLAR, - ACTIONS(5076), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [111669] = 10, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + ACTIONS(1840), 1, aux_sym_unquoted_token2, - ACTIONS(6455), 1, + ACTIONS(5257), 1, + anon_sym_DOLLAR, + ACTIONS(6505), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6457), 1, + ACTIONS(7173), 1, aux_sym__immediate_decimal_token2, - STATE(3672), 1, + STATE(3688), 1, sym_comment, - STATE(4319), 1, + STATE(4412), 1, sym__immediate_decimal, - ACTIONS(6459), 2, + ACTIONS(7175), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3093), 2, + STATE(923), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111196] = 9, + [111702] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3840), 1, - sym_raw_string_begin, - 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, - STATE(2642), 1, - sym_val_string, - STATE(3673), 1, + STATE(3689), 1, sym_comment, - STATE(2411), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [111227] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1806), 1, - sym__unquoted_pattern, - ACTIONS(7063), 1, + ACTIONS(801), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(7067), 1, - sym_filesize_unit, - ACTIONS(7069), 1, - sym_duration_unit, - STATE(3674), 1, - sym_comment, - ACTIONS(7065), 2, + sym__unquoted_pattern_in_list, + ACTIONS(803), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(914), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [111256] = 4, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [111723] = 6, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3675), 1, + ACTIONS(7177), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7179), 1, + aux_sym__immediate_decimal_token5, + STATE(3690), 1, sym_comment, - ACTIONS(759), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(761), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1802), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [111277] = 10, + sym__entry_separator, + ACTIONS(1804), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [111748] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3200), 1, + ACTIONS(3270), 1, anon_sym_LPAREN2, - ACTIONS(3719), 1, + ACTIONS(3715), 1, anon_sym_DOLLAR, - ACTIONS(4966), 1, + ACTIONS(5088), 1, + aux_sym_unquoted_token2, + ACTIONS(6555), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4968), 1, + ACTIONS(6557), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5076), 1, - aux_sym_unquoted_token2, - STATE(2538), 1, - sym__immediate_decimal, - STATE(3676), 1, + STATE(3691), 1, sym_comment, - ACTIONS(4970), 2, + STATE(4292), 1, + sym__immediate_decimal, + ACTIONS(6559), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2713), 2, + STATE(3135), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111310] = 10, + [111781] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7181), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7183), 1, + aux_sym__immediate_decimal_token5, + STATE(3692), 1, + sym_comment, + ACTIONS(1804), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1802), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [111806] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3200), 1, + ACTIONS(6214), 1, anon_sym_LPAREN2, - ACTIONS(3719), 1, + ACTIONS(6645), 1, anon_sym_DOLLAR, - ACTIONS(4996), 1, + ACTIONS(6709), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4998), 1, + ACTIONS(6711), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5076), 1, - aux_sym_unquoted_token2, - STATE(2901), 1, - sym__immediate_decimal, - STATE(3677), 1, + ACTIONS(7185), 1, + aux_sym__unquoted_in_record_token2, + STATE(3693), 1, sym_comment, - ACTIONS(5000), 2, + STATE(4463), 1, + sym__immediate_decimal, + ACTIONS(6713), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3093), 2, + STATE(4596), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111343] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - sym_raw_string_begin, - ACTIONS(7071), 1, - anon_sym_DQUOTE, - ACTIONS(7073), 1, - anon_sym_SQUOTE, - ACTIONS(7075), 1, - anon_sym_BQUOTE, - ACTIONS(7077), 1, - aux_sym_path_token1, - STATE(2386), 1, - sym_val_string, - STATE(3678), 1, - sym_comment, - STATE(2599), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [111374] = 10, + [111839] = 11, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1634), 1, + ACTIONS(811), 1, + anon_sym_RBRACE, + ACTIONS(910), 1, + sym__entry_separator, + ACTIONS(5228), 1, anon_sym_LPAREN2, - ACTIONS(1638), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - ACTIONS(7009), 1, - anon_sym_DOLLAR, - ACTIONS(7079), 1, - aux_sym__immediate_decimal_token2, - STATE(633), 1, - sym__immediate_decimal, - STATE(3679), 1, + ACTIONS(7185), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7187), 1, + anon_sym_DOT_DOT2, + ACTIONS(7191), 1, + sym_filesize_unit, + ACTIONS(7193), 1, + sym_duration_unit, + STATE(3694), 1, sym_comment, - ACTIONS(7081), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(708), 2, + STATE(5074), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - [111407] = 10, + ACTIONS(7189), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [111874] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1634), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(1665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1806), 1, + ACTIONS(1840), 1, aux_sym_unquoted_token2, - ACTIONS(7009), 1, + ACTIONS(5257), 1, anon_sym_DOLLAR, - ACTIONS(7083), 1, + ACTIONS(6101), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7195), 1, aux_sym__immediate_decimal_token2, - STATE(952), 1, - sym__immediate_decimal, - STATE(3680), 1, + STATE(3695), 1, sym_comment, - ACTIONS(7085), 2, + STATE(3939), 1, + sym__immediate_decimal, + ACTIONS(7197), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(889), 2, + STATE(3923), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111440] = 9, + [111907] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7087), 1, + ACTIONS(7159), 1, + aux_sym_path_token1, + ACTIONS(7199), 1, anon_sym_DQUOTE, - ACTIONS(7089), 1, + ACTIONS(7201), 1, anon_sym_SQUOTE, - ACTIONS(7091), 1, + ACTIONS(7203), 1, anon_sym_BQUOTE, - ACTIONS(7093), 1, - aux_sym_path_token1, - ACTIONS(7095), 1, + ACTIONS(7205), 1, sym_raw_string_begin, - STATE(1786), 1, + STATE(3594), 1, sym_val_string, - STATE(3681), 1, + STATE(3696), 1, sym_comment, - STATE(1816), 4, + STATE(3651), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [111471] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(3682), 1, - sym_comment, - ACTIONS(803), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(805), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [111492] = 10, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1695), 1, - anon_sym_LPAREN2, - ACTIONS(1864), 1, - aux_sym_unquoted_token2, - ACTIONS(4944), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5261), 1, - anon_sym_DOLLAR, - ACTIONS(7097), 1, - aux_sym__immediate_decimal_token2, - STATE(2478), 1, - sym__immediate_decimal, - STATE(3683), 1, - sym_comment, - ACTIONS(7099), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2576), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [111525] = 10, + [111938] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1695), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(1864), 1, + ACTIONS(1840), 1, aux_sym_unquoted_token2, - ACTIONS(4952), 1, + ACTIONS(4929), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5261), 1, + ACTIONS(5257), 1, anon_sym_DOLLAR, - ACTIONS(7101), 1, + ACTIONS(7207), 1, aux_sym__immediate_decimal_token2, - STATE(2688), 1, + STATE(2449), 1, sym__immediate_decimal, - STATE(3684), 1, + STATE(3697), 1, sym_comment, - ACTIONS(7103), 2, + ACTIONS(7209), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1308), 2, + STATE(2527), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111558] = 9, + [111971] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7105), 1, + ACTIONS(7211), 1, anon_sym_DQUOTE, - ACTIONS(7107), 1, + ACTIONS(7213), 1, anon_sym_SQUOTE, - ACTIONS(7109), 1, + ACTIONS(7215), 1, anon_sym_BQUOTE, - ACTIONS(7111), 1, + ACTIONS(7217), 1, aux_sym_path_token1, - ACTIONS(7113), 1, + ACTIONS(7219), 1, sym_raw_string_begin, - STATE(3685), 1, + STATE(3698), 1, sym_comment, - STATE(3967), 1, + STATE(3898), 1, sym_val_string, - STATE(4149), 4, + STATE(4024), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [111589] = 10, + [112002] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3424), 1, + ACTIONS(1705), 1, anon_sym_LPAREN2, - ACTIONS(3723), 1, - anon_sym_DOLLAR, - ACTIONS(4974), 1, + ACTIONS(1872), 1, + aux_sym_unquoted_token2, + ACTIONS(4968), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4976), 1, + ACTIONS(5321), 1, + anon_sym_DOLLAR, + ACTIONS(7221), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5171), 1, - aux_sym_unquoted_token2, - STATE(2632), 1, + STATE(2712), 1, sym__immediate_decimal, - STATE(3686), 1, + STATE(3699), 1, sym_comment, - ACTIONS(4978), 2, + ACTIONS(7223), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2825), 2, + STATE(1293), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111622] = 10, - ACTIONS(105), 1, + [112035] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1634), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - ACTIONS(4927), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5298), 1, + ACTIONS(1673), 1, + anon_sym_LBRACE, + ACTIONS(2935), 1, anon_sym_DOLLAR, - ACTIONS(7115), 1, - aux_sym__immediate_decimal_token2, - STATE(2461), 1, + STATE(759), 1, sym__immediate_decimal, - STATE(3687), 1, + STATE(3700), 1, sym_comment, - ACTIONS(7117), 2, + ACTIONS(6891), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2558), 2, + ACTIONS(7225), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(760), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111655] = 10, - ACTIONS(105), 1, + [112066] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1634), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - ACTIONS(4948), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5298), 1, + ACTIONS(1715), 1, + anon_sym_LBRACE, + ACTIONS(2935), 1, anon_sym_DOLLAR, - ACTIONS(7119), 1, - aux_sym__immediate_decimal_token2, - STATE(2588), 1, + STATE(761), 1, sym__immediate_decimal, - STATE(3688), 1, + STATE(3701), 1, sym_comment, - ACTIONS(7121), 2, + ACTIONS(6891), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(889), 2, + ACTIONS(7225), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(762), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111688] = 9, + [112097] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7029), 1, - aux_sym_path_token1, - ACTIONS(7123), 1, + ACTIONS(7227), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7229), 1, + aux_sym__immediate_decimal_token5, + STATE(3702), 1, + sym_comment, + ACTIONS(1802), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1804), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [112122] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7231), 1, anon_sym_DQUOTE, - ACTIONS(7125), 1, + ACTIONS(7233), 1, anon_sym_SQUOTE, - ACTIONS(7127), 1, + ACTIONS(7235), 1, anon_sym_BQUOTE, - ACTIONS(7129), 1, + ACTIONS(7237), 1, + aux_sym_path_token1, + ACTIONS(7239), 1, sym_raw_string_begin, - STATE(3605), 1, + STATE(344), 1, sym_val_string, - STATE(3689), 1, + STATE(3703), 1, sym_comment, - STATE(3632), 4, + STATE(377), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [111719] = 10, + [112153] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1634), 1, + STATE(3704), 1, + sym_comment, + ACTIONS(755), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(757), 6, anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - ACTIONS(5298), 1, - anon_sym_DOLLAR, - ACTIONS(6296), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7131), 1, - aux_sym__immediate_decimal_token2, - STATE(3690), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [112174] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3705), 1, sym_comment, - STATE(3899), 1, - sym__immediate_decimal, - ACTIONS(7133), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3937), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [111752] = 10, + ACTIONS(755), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(757), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [112195] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1634), 1, + STATE(3706), 1, + sym_comment, + ACTIONS(755), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(757), 6, anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - ACTIONS(5298), 1, - anon_sym_DOLLAR, - ACTIONS(6469), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [112216] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7241), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7135), 1, - aux_sym__immediate_decimal_token2, - STATE(3691), 1, + ACTIONS(7243), 1, + aux_sym__immediate_decimal_token5, + STATE(3707), 1, sym_comment, - STATE(4364), 1, - sym__immediate_decimal, - ACTIONS(7137), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(889), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [111785] = 9, + ACTIONS(1802), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1804), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [112241] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7139), 1, - anon_sym_DQUOTE, - ACTIONS(7141), 1, - anon_sym_SQUOTE, - ACTIONS(7143), 1, - anon_sym_BQUOTE, - ACTIONS(7145), 1, - aux_sym_path_token1, - ACTIONS(7147), 1, - sym_raw_string_begin, - STATE(345), 1, - sym_val_string, - STATE(3692), 1, + ACTIONS(7245), 1, + anon_sym_DOT, + ACTIONS(7247), 1, + aux_sym__immediate_decimal_token5, + STATE(3708), 1, sym_comment, - STATE(352), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [111816] = 10, + ACTIONS(1810), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1812), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [112266] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1695), 1, + ACTIONS(1705), 1, anon_sym_LPAREN2, - ACTIONS(1864), 1, + ACTIONS(1872), 1, aux_sym_unquoted_token2, - ACTIONS(3488), 1, + ACTIONS(4948), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7149), 1, + ACTIONS(5321), 1, anon_sym_DOLLAR, - ACTIONS(7151), 1, + ACTIONS(7249), 1, aux_sym__immediate_decimal_token2, - STATE(1468), 1, + STATE(2495), 1, sym__immediate_decimal, - STATE(3693), 1, + STATE(3709), 1, sym_comment, - ACTIONS(7153), 2, + ACTIONS(7251), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(936), 2, + STATE(2650), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111849] = 10, + [112299] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7255), 1, + aux_sym__immediate_decimal_token5, + STATE(3710), 1, + sym_comment, + ACTIONS(1812), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1810), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [112324] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1695), 1, + ACTIONS(6974), 1, + aux_sym__immediate_decimal_token5, + STATE(3711), 1, + sym_comment, + ACTIONS(763), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(765), 6, anon_sym_LPAREN2, - ACTIONS(1864), 1, - aux_sym_unquoted_token2, - ACTIONS(3518), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [112347] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3712), 1, + sym_comment, + 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, + [112368] = 10, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3242), 1, + anon_sym_LPAREN2, + ACTIONS(5070), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5072), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7149), 1, + ACTIONS(5238), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7257), 1, anon_sym_DOLLAR, - ACTIONS(7155), 1, - aux_sym__immediate_decimal_token2, - STATE(1531), 1, + STATE(2678), 1, sym__immediate_decimal, - STATE(3694), 1, + STATE(3713), 1, sym_comment, - ACTIONS(7157), 2, + ACTIONS(7259), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1308), 2, + STATE(2982), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111882] = 9, + [112401] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(968), 1, + ACTIONS(3822), 1, + sym_raw_string_begin, + ACTIONS(7093), 1, anon_sym_DQUOTE, - ACTIONS(970), 1, + ACTIONS(7095), 1, anon_sym_SQUOTE, - ACTIONS(972), 1, + ACTIONS(7097), 1, anon_sym_BQUOTE, - ACTIONS(984), 1, - sym_raw_string_begin, - ACTIONS(7159), 1, + ACTIONS(7261), 1, aux_sym_path_token1, - STATE(2499), 1, + STATE(2590), 1, sym_val_string, - STATE(3695), 1, + STATE(3714), 1, sym_comment, - STATE(2543), 4, + STATE(2404), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [111913] = 4, + [112432] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7263), 1, + anon_sym_DOT, + ACTIONS(7265), 1, + aux_sym__immediate_decimal_token5, + STATE(3715), 1, + sym_comment, + ACTIONS(1810), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1812), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [112457] = 11, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(811), 1, + anon_sym_RBRACK, + ACTIONS(910), 1, + sym__entry_separator, + ACTIONS(6788), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7003), 1, + anon_sym_LPAREN2, + ACTIONS(7267), 1, + anon_sym_DOT_DOT2, + ACTIONS(7271), 1, + sym_filesize_unit, + ACTIONS(7273), 1, + sym_duration_unit, + STATE(3716), 1, + sym_comment, + STATE(5069), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7269), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [112492] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3696), 1, + STATE(3717), 1, sym_comment, - ACTIONS(803), 2, + ACTIONS(755), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(805), 8, + ACTIONS(757), 8, anon_sym_if, sym__newline, anon_sym_PIPE, @@ -236302,879 +236676,845 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [111934] = 10, + [112513] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1634), 1, + ACTIONS(6214), 1, anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - ACTIONS(4042), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7009), 1, + ACTIONS(6645), 1, anon_sym_DOLLAR, - ACTIONS(7161), 1, + ACTIONS(6788), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(6881), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6883), 1, aux_sym__immediate_decimal_token2, - STATE(2095), 1, - sym__immediate_decimal, - STATE(3697), 1, + STATE(3718), 1, sym_comment, - ACTIONS(7163), 2, + STATE(4422), 1, + sym__immediate_decimal, + ACTIONS(6885), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(889), 2, + STATE(4596), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111967] = 9, + [112546] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7165), 1, - anon_sym_DQUOTE, - ACTIONS(7167), 1, - anon_sym_SQUOTE, - ACTIONS(7169), 1, - anon_sym_BQUOTE, - ACTIONS(7171), 1, - aux_sym_path_token1, - ACTIONS(7173), 1, - sym_raw_string_begin, - STATE(1933), 1, - sym_val_string, - STATE(3698), 1, + ACTIONS(1778), 1, + anon_sym_DOLLAR, + ACTIONS(6214), 1, + anon_sym_LPAREN2, + ACTIONS(6529), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6531), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6788), 1, + aux_sym__unquoted_in_list_token2, + STATE(3719), 1, sym_comment, - STATE(1951), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [111998] = 10, - ACTIONS(105), 1, + STATE(3880), 1, + sym__immediate_decimal, + ACTIONS(6533), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4153), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [112579] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6815), 1, + anon_sym_DASH2, + STATE(3720), 1, + sym_comment, + ACTIONS(4523), 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, + [112600] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1634), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - ACTIONS(3474), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7009), 1, + ACTIONS(1679), 1, + anon_sym_LBRACE, + ACTIONS(2935), 1, anon_sym_DOLLAR, - ACTIONS(7175), 1, - aux_sym__immediate_decimal_token2, - STATE(1455), 1, + STATE(763), 1, sym__immediate_decimal, - STATE(3699), 1, + STATE(3721), 1, sym_comment, - ACTIONS(7177), 2, + ACTIONS(6891), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(708), 2, + ACTIONS(7225), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(764), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112031] = 10, + [112631] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1634), 1, + ACTIONS(3204), 1, anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - ACTIONS(3480), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7009), 1, + ACTIONS(3723), 1, anon_sym_DOLLAR, - ACTIONS(7179), 1, + ACTIONS(4992), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4994), 1, aux_sym__immediate_decimal_token2, - STATE(1507), 1, + ACTIONS(5192), 1, + aux_sym_unquoted_token2, + STATE(2591), 1, sym__immediate_decimal, - STATE(3700), 1, + STATE(3722), 1, sym_comment, - ACTIONS(7181), 2, + ACTIONS(4996), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(889), 2, + STATE(2811), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112064] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(869), 1, - anon_sym_DQUOTE, - ACTIONS(871), 1, - anon_sym_SQUOTE, - ACTIONS(873), 1, - anon_sym_BQUOTE, - ACTIONS(885), 1, - sym_raw_string_begin, - ACTIONS(7183), 1, - aux_sym_path_token1, - STATE(2455), 1, - sym_val_string, - STATE(3701), 1, - sym_comment, - STATE(2503), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [112095] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7185), 1, - anon_sym_DQUOTE, - ACTIONS(7187), 1, - anon_sym_SQUOTE, - ACTIONS(7189), 1, - anon_sym_BQUOTE, - ACTIONS(7191), 1, - aux_sym_path_token1, - ACTIONS(7193), 1, - sym_raw_string_begin, - STATE(3702), 1, - sym_comment, - STATE(4242), 1, - sym_val_string, - STATE(4395), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [112126] = 9, + [112664] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7077), 1, - aux_sym_path_token1, - ACTIONS(7195), 1, - anon_sym_DQUOTE, - ACTIONS(7197), 1, - anon_sym_SQUOTE, - ACTIONS(7199), 1, - anon_sym_BQUOTE, - ACTIONS(7201), 1, - sym_raw_string_begin, - STATE(2386), 1, - sym_val_string, - STATE(3703), 1, + ACTIONS(3204), 1, + anon_sym_LPAREN2, + ACTIONS(3723), 1, + anon_sym_DOLLAR, + ACTIONS(5032), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5034), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5192), 1, + aux_sym_unquoted_token2, + STATE(2996), 1, + sym__immediate_decimal, + STATE(3723), 1, sym_comment, - STATE(2606), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [112157] = 6, + ACTIONS(5036), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3330), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [112697] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7203), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7205), 1, - aux_sym__immediate_decimal_token5, - STATE(3704), 1, + STATE(3724), 1, sym_comment, - ACTIONS(1774), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1776), 4, + ACTIONS(801), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [112182] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3840), 1, - sym_raw_string_begin, - ACTIONS(7055), 1, - anon_sym_DQUOTE, - ACTIONS(7057), 1, - anon_sym_SQUOTE, - ACTIONS(7059), 1, - anon_sym_BQUOTE, - ACTIONS(7207), 1, - aux_sym_path_token1, - STATE(2405), 1, - sym_val_string, - STATE(3705), 1, - sym_comment, - STATE(2411), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [112213] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1772), 1, - sym_raw_string_begin, - ACTIONS(7077), 1, - aux_sym_path_token1, - ACTIONS(7209), 1, - anon_sym_DQUOTE, - ACTIONS(7211), 1, - anon_sym_SQUOTE, - ACTIONS(7213), 1, - anon_sym_BQUOTE, - STATE(2386), 1, - sym_val_string, - STATE(3706), 1, - sym_comment, - STATE(2276), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [112244] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - sym_raw_string_begin, - ACTIONS(7071), 1, - anon_sym_DQUOTE, - ACTIONS(7073), 1, - anon_sym_SQUOTE, - ACTIONS(7075), 1, - anon_sym_BQUOTE, - ACTIONS(7215), 1, - aux_sym_path_token1, - STATE(2541), 1, - sym_val_string, - STATE(3707), 1, - sym_comment, - STATE(2599), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [112275] = 9, + ACTIONS(803), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [112718] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1454), 1, - sym_raw_string_begin, - ACTIONS(7023), 1, - anon_sym_DQUOTE, - ACTIONS(7025), 1, - anon_sym_SQUOTE, - ACTIONS(7027), 1, - anon_sym_BQUOTE, - ACTIONS(7217), 1, - aux_sym_path_token1, - STATE(3708), 1, + ACTIONS(1778), 1, + anon_sym_DOLLAR, + ACTIONS(6214), 1, + anon_sym_LPAREN2, + ACTIONS(6218), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6220), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6788), 1, + aux_sym__unquoted_in_list_token2, + STATE(3725), 1, sym_comment, - STATE(3874), 1, - sym_val_string, - STATE(3776), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [112306] = 9, + STATE(3855), 1, + sym__immediate_decimal, + ACTIONS(6222), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4110), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [112751] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7219), 1, - anon_sym_DQUOTE, - ACTIONS(7221), 1, - anon_sym_SQUOTE, - ACTIONS(7223), 1, - anon_sym_BQUOTE, - ACTIONS(7225), 1, - aux_sym_path_token1, - ACTIONS(7227), 1, - sym_raw_string_begin, - STATE(347), 1, - sym_val_string, - STATE(3709), 1, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + ACTIONS(1840), 1, + aux_sym_unquoted_token2, + ACTIONS(5257), 1, + anon_sym_DOLLAR, + ACTIONS(6978), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7275), 1, + aux_sym__immediate_decimal_token2, + STATE(3726), 1, sym_comment, - STATE(358), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [112337] = 10, + STATE(5038), 1, + sym__immediate_decimal, + ACTIONS(7277), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(923), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [112784] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3424), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(3723), 1, + ACTIONS(1840), 1, + aux_sym_unquoted_token2, + ACTIONS(5257), 1, anon_sym_DOLLAR, - ACTIONS(5032), 1, + ACTIONS(6889), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5034), 1, + ACTIONS(7279), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5171), 1, - aux_sym_unquoted_token2, - STATE(2926), 1, - sym__immediate_decimal, - STATE(3710), 1, + STATE(3727), 1, sym_comment, - ACTIONS(5036), 2, + STATE(4345), 1, + sym__immediate_decimal, + ACTIONS(7281), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3362), 2, + STATE(4467), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112370] = 10, + [112817] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1756), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6137), 1, + ACTIONS(6585), 1, anon_sym_LPAREN2, - ACTIONS(6141), 1, + ACTIONS(6587), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6143), 1, + ACTIONS(6589), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6629), 1, + ACTIONS(6788), 1, aux_sym__unquoted_in_list_token2, - STATE(3711), 1, + STATE(3728), 1, sym_comment, - STATE(3835), 1, + STATE(4357), 1, sym__immediate_decimal, - ACTIONS(6145), 2, + ACTIONS(6591), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4091), 2, + STATE(4596), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112403] = 10, + [112850] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(1778), 1, anon_sym_DOLLAR, - ACTIONS(6491), 1, + ACTIONS(6214), 1, anon_sym_LPAREN2, - ACTIONS(6493), 1, + ACTIONS(6563), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6495), 1, + ACTIONS(6565), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6629), 1, - aux_sym__unquoted_in_list_token2, - STATE(3712), 1, + ACTIONS(7185), 1, + aux_sym__unquoted_in_record_token2, + STATE(3729), 1, sym_comment, - STATE(4217), 1, + STATE(3893), 1, sym__immediate_decimal, - ACTIONS(6497), 2, + ACTIONS(6567), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4637), 2, + STATE(4153), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112436] = 11, + [112883] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7283), 1, + aux_sym__immediate_decimal_token5, + STATE(3730), 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, + [112906] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(811), 1, - anon_sym_RBRACK, - ACTIONS(914), 1, - sym__entry_separator, - ACTIONS(6629), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6954), 1, - anon_sym_LPAREN2, - ACTIONS(7229), 1, + ACTIONS(7285), 1, + aux_sym__immediate_decimal_token5, + STATE(3731), 1, + sym_comment, + ACTIONS(775), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(7233), 1, + sym__unquoted_pattern_in_record, + ACTIONS(777), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - ACTIONS(7235), 1, sym_duration_unit, - STATE(3713), 1, + sym__entry_separator, + [112929] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3732), 1, sym_comment, - STATE(5048), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7231), 2, + ACTIONS(801), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(803), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [112471] = 9, + sym_filesize_unit, + sym_duration_unit, + [112950] = 9, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(215), 1, sym_raw_string_begin, - ACTIONS(7237), 1, + ACTIONS(7287), 1, anon_sym_DQUOTE, - ACTIONS(7239), 1, + ACTIONS(7289), 1, anon_sym_SQUOTE, - ACTIONS(7241), 1, + ACTIONS(7291), 1, anon_sym_BQUOTE, - ACTIONS(7243), 1, + ACTIONS(7293), 1, aux_sym_path_token1, - STATE(419), 1, + STATE(420), 1, sym_val_string, - STATE(3714), 1, + STATE(3733), 1, sym_comment, - STATE(436), 4, + STATE(432), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [112502] = 9, + [112981] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(107), 1, - sym_raw_string_begin, - ACTIONS(7245), 1, + ACTIONS(3242), 1, + anon_sym_LPAREN2, + ACTIONS(5128), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5130), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5238), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7257), 1, + anon_sym_DOLLAR, + STATE(3125), 1, + sym__immediate_decimal, + STATE(3734), 1, + sym_comment, + ACTIONS(7295), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3602), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113014] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7297), 1, anon_sym_DQUOTE, - ACTIONS(7247), 1, + ACTIONS(7299), 1, anon_sym_SQUOTE, - ACTIONS(7249), 1, + ACTIONS(7301), 1, anon_sym_BQUOTE, - ACTIONS(7251), 1, + ACTIONS(7303), 1, aux_sym_path_token1, - STATE(519), 1, + ACTIONS(7305), 1, + sym_raw_string_begin, + STATE(1781), 1, sym_val_string, - STATE(3715), 1, + STATE(3735), 1, sym_comment, - STATE(504), 4, + STATE(1806), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [112533] = 5, + [113045] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7007), 1, - aux_sym__immediate_decimal_token5, - STATE(3716), 1, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + ACTIONS(1648), 1, + anon_sym_LBRACE, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + STATE(896), 1, + sym__immediate_decimal, + STATE(3736), 1, sym_comment, - ACTIONS(751), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(753), 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, - [112556] = 9, - ACTIONS(3), 1, + ACTIONS(6891), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(7225), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(897), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113076] = 10, + ACTIONS(105), 1, anon_sym_POUND, ACTIONS(1628), 1, - anon_sym_LBRACE, - ACTIONS(1634), 1, anon_sym_LPAREN2, - ACTIONS(2945), 1, + ACTIONS(1840), 1, + aux_sym_unquoted_token2, + ACTIONS(3482), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7037), 1, anon_sym_DOLLAR, - STATE(923), 1, + ACTIONS(7307), 1, + aux_sym__immediate_decimal_token2, + STATE(1504), 1, sym__immediate_decimal, - STATE(3717), 1, + STATE(3737), 1, sym_comment, - ACTIONS(6807), 2, + ACTIONS(7309), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(7053), 2, + STATE(923), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113109] = 10, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + ACTIONS(1632), 1, aux_sym__immediate_decimal_token1, + ACTIONS(1840), 1, + aux_sym_unquoted_token2, + ACTIONS(7037), 1, + anon_sym_DOLLAR, + ACTIONS(7311), 1, aux_sym__immediate_decimal_token2, - STATE(922), 2, + STATE(572), 1, + sym__immediate_decimal, + STATE(3738), 1, + sym_comment, + ACTIONS(7313), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(742), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112587] = 6, + [113142] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7253), 1, + ACTIONS(7315), 1, anon_sym_DOT, - ACTIONS(7255), 1, + ACTIONS(7317), 1, aux_sym__immediate_decimal_token5, - STATE(3718), 1, + STATE(3739), 1, sym_comment, - ACTIONS(1788), 4, + ACTIONS(1810), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1790), 4, + ACTIONS(1812), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [112612] = 6, + [113167] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7257), 1, - anon_sym_DOT, - ACTIONS(7259), 1, - aux_sym__immediate_decimal_token5, - STATE(3719), 1, + ACTIONS(3048), 1, + sym_raw_string_begin, + ACTIONS(7079), 1, + aux_sym_path_token1, + ACTIONS(7107), 1, + anon_sym_DQUOTE, + ACTIONS(7109), 1, + anon_sym_SQUOTE, + ACTIONS(7111), 1, + anon_sym_BQUOTE, + STATE(2403), 1, + sym_val_string, + STATE(3740), 1, sym_comment, - ACTIONS(1788), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1790), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [112637] = 10, + STATE(2583), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [113198] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3348), 1, + ACTIONS(1705), 1, anon_sym_LPAREN2, - ACTIONS(5084), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5086), 1, + ACTIONS(1726), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5241), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7261), 1, + ACTIONS(1872), 1, + aux_sym_unquoted_token2, + ACTIONS(7025), 1, anon_sym_DOLLAR, - STATE(2722), 1, + ACTIONS(7319), 1, + aux_sym__immediate_decimal_token2, + STATE(1079), 1, sym__immediate_decimal, - STATE(3720), 1, + STATE(3741), 1, sym_comment, - ACTIONS(7263), 2, + ACTIONS(7321), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2977), 2, + STATE(1293), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112670] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7265), 1, - aux_sym__immediate_decimal_token5, - STATE(3721), 1, - sym_comment, - ACTIONS(791), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(793), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [112693] = 10, + [113231] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1634), 1, + ACTIONS(1705), 1, anon_sym_LPAREN2, - ACTIONS(1806), 1, + ACTIONS(1709), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1872), 1, aux_sym_unquoted_token2, - ACTIONS(5298), 1, + ACTIONS(7025), 1, anon_sym_DOLLAR, - ACTIONS(6805), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7267), 1, + ACTIONS(7323), 1, aux_sym__immediate_decimal_token2, - STATE(3722), 1, - sym_comment, - STATE(4230), 1, + STATE(738), 1, sym__immediate_decimal, - ACTIONS(7269), 2, + STATE(3742), 1, + sym_comment, + ACTIONS(7325), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4521), 2, + STATE(953), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112726] = 10, + [113264] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3348), 1, + ACTIONS(3270), 1, anon_sym_LPAREN2, - ACTIONS(5135), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5137), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5241), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7261), 1, + ACTIONS(3715), 1, anon_sym_DOLLAR, - STATE(3258), 1, + ACTIONS(4976), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4978), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5088), 1, + aux_sym_unquoted_token2, + STATE(2842), 1, sym__immediate_decimal, - STATE(3723), 1, + STATE(3743), 1, sym_comment, - ACTIONS(7271), 2, + ACTIONS(4980), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3475), 2, + STATE(3135), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112759] = 6, + [113297] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7273), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7275), 1, + ACTIONS(6945), 1, aux_sym__immediate_decimal_token5, - STATE(3724), 1, + STATE(3744), 1, sym_comment, - ACTIONS(1776), 2, + ACTIONS(763), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1774), 6, - anon_sym_if, + ACTIONS(765), 7, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [112784] = 6, + sym_filesize_unit, + sym_duration_unit, + [113320] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7277), 1, - anon_sym_DOT, - ACTIONS(7279), 1, - aux_sym__immediate_decimal_token5, - STATE(3725), 1, + STATE(3745), 1, sym_comment, - ACTIONS(1790), 2, + ACTIONS(775), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1788), 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, - [112809] = 10, + sym_filesize_unit, + sym_duration_unit, + [113341] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1770), 1, + sym_raw_string_begin, + ACTIONS(7101), 1, + anon_sym_DQUOTE, + ACTIONS(7103), 1, + anon_sym_SQUOTE, + ACTIONS(7105), 1, + anon_sym_BQUOTE, + ACTIONS(7327), 1, + aux_sym_path_token1, + STATE(2311), 1, + sym_val_string, + STATE(3746), 1, + sym_comment, + STATE(2288), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [113372] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7329), 1, + aux_sym__immediate_decimal_token5, + STATE(3747), 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, + [113395] = 10, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1634), 1, + ACTIONS(3270), 1, anon_sym_LPAREN2, - ACTIONS(1806), 1, - aux_sym_unquoted_token2, - ACTIONS(5298), 1, + ACTIONS(3715), 1, anon_sym_DOLLAR, - ACTIONS(6964), 1, + ACTIONS(4962), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7281), 1, + ACTIONS(4964), 1, aux_sym__immediate_decimal_token2, - STATE(3726), 1, - sym_comment, - STATE(4947), 1, + ACTIONS(5088), 1, + aux_sym_unquoted_token2, + STATE(2538), 1, sym__immediate_decimal, - ACTIONS(7283), 2, + STATE(3748), 1, + sym_comment, + ACTIONS(4966), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(889), 2, + STATE(2710), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112842] = 4, + [113428] = 9, ACTIONS(105), 1, anon_sym_POUND, - STATE(3727), 1, + ACTIONS(910), 1, + sym__space, + ACTIONS(4179), 1, + anon_sym_DOT_DOT2, + ACTIONS(5088), 1, + sym__unquoted_pattern, + ACTIONS(6986), 1, + sym_filesize_unit, + ACTIONS(6988), 1, + sym_duration_unit, + STATE(3749), 1, sym_comment, - ACTIONS(791), 4, + ACTIONS(811), 2, sym__newline, anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(793), 6, - sym__space, - anon_sym_LPAREN2, + ACTIONS(4181), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [112863] = 4, + [113458] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6663), 1, - anon_sym_DASH2, - STATE(3728), 1, - sym_comment, - ACTIONS(4529), 9, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1624), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [112884] = 10, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1695), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(1699), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1864), 1, - aux_sym_unquoted_token2, - ACTIONS(7149), 1, - anon_sym_DOLLAR, - ACTIONS(7285), 1, - aux_sym__immediate_decimal_token2, - STATE(721), 1, + STATE(980), 1, sym__immediate_decimal, - STATE(3729), 1, + STATE(3750), 1, sym_comment, - ACTIONS(7287), 2, + ACTIONS(1693), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(1695), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(936), 2, + STATE(793), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112917] = 10, - ACTIONS(105), 1, + [113486] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, - anon_sym_LPAREN2, - ACTIONS(1722), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1864), 1, - aux_sym_unquoted_token2, - ACTIONS(7149), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(7289), 1, - aux_sym__immediate_decimal_token2, - STATE(994), 1, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + STATE(794), 1, sym__immediate_decimal, - STATE(3730), 1, + STATE(3751), 1, sym_comment, - ACTIONS(7291), 2, + ACTIONS(1634), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1308), 2, + ACTIONS(1677), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(796), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112950] = 5, + [113514] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6991), 1, - aux_sym__immediate_decimal_token5, - STATE(3731), 1, - sym_comment, - ACTIONS(751), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(753), 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, - [112973] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1772), 1, - sym_raw_string_begin, - ACTIONS(7209), 1, - anon_sym_DQUOTE, - ACTIONS(7211), 1, - anon_sym_SQUOTE, - ACTIONS(7213), 1, - anon_sym_BQUOTE, - ACTIONS(7293), 1, - aux_sym_path_token1, - STATE(2311), 1, - sym_val_string, - STATE(3732), 1, + ACTIONS(1624), 1, + anon_sym_DOLLAR, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + STATE(976), 1, + sym__immediate_decimal, + STATE(3752), 1, sym_comment, - STATE(2276), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [113004] = 4, + ACTIONS(1634), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1677), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(793), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113542] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3733), 1, + STATE(3753), 1, sym_comment, - ACTIONS(759), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(801), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(761), 6, + sym__unquoted_pattern_in_record, + ACTIONS(803), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [113025] = 5, + [113562] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7295), 1, - aux_sym__immediate_decimal_token5, - STATE(3734), 1, - sym_comment, - ACTIONS(791), 2, + ACTIONS(4179), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(793), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(7331), 1, sym_filesize_unit, + ACTIONS(7333), 1, sym_duration_unit, - [113048] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7297), 1, - aux_sym__immediate_decimal_token5, - STATE(3735), 1, - sym_comment, - ACTIONS(791), 2, - anon_sym_DOT_DOT2, + ACTIONS(7335), 1, sym__unquoted_pattern, - ACTIONS(793), 7, + STATE(3754), 1, + sym_comment, + ACTIONS(4181), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(910), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, + [113590] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3755), 1, + sym_comment, + ACTIONS(775), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + 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, - [113071] = 10, - ACTIONS(105), 1, + sym__entry_separator, + [113610] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1756), 1, + ACTIONS(3852), 1, anon_sym_DOLLAR, - ACTIONS(6137), 1, + ACTIONS(6214), 1, anon_sym_LPAREN2, - ACTIONS(6509), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6511), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6629), 1, - aux_sym__unquoted_in_list_token2, - STATE(3736), 1, + STATE(3756), 1, sym_comment, - STATE(3981), 1, + STATE(4565), 1, sym__immediate_decimal, - ACTIONS(6513), 2, + ACTIONS(6647), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7337), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3991), 2, + STATE(4566), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113104] = 5, + [113638] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6978), 1, + ACTIONS(7339), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7341), 1, aux_sym__immediate_decimal_token5, - STATE(3737), 1, + STATE(3757), 1, sym_comment, - ACTIONS(751), 3, + ACTIONS(1804), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(753), 6, + ACTIONS(1802), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [113127] = 4, + [113662] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3738), 1, + STATE(3758), 1, sym_comment, - ACTIONS(791), 2, + ACTIONS(755), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(793), 8, - anon_sym_if, + ACTIONS(757), 7, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, @@ -237182,593 +237522,656 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [113148] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1464), 1, - anon_sym_BANG, - STATE(3739), 1, - sym_comment, - ACTIONS(1462), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1460), 6, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_DOT2, - [113171] = 4, - ACTIONS(105), 1, + [113682] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3740), 1, + STATE(3759), 1, sym_comment, - ACTIONS(759), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(775), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(761), 6, - anon_sym_LPAREN2, + 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, - sym__entry_separator, - [113192] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7299), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7301), 1, - aux_sym__immediate_decimal_token5, - STATE(3741), 1, - sym_comment, - ACTIONS(1774), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1776), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [113217] = 10, - ACTIONS(105), 1, + [113702] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6607), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(6609), 1, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + STATE(976), 1, + sym__immediate_decimal, + STATE(3760), 1, + sym_comment, + ACTIONS(4046), 2, aux_sym__immediate_decimal_token1, - ACTIONS(6611), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6629), 1, - aux_sym__unquoted_in_list_token2, - STATE(3742), 1, - sym_comment, - STATE(4365), 1, - sym__immediate_decimal, - ACTIONS(6613), 2, + ACTIONS(4048), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4637), 2, + STATE(793), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113250] = 4, - ACTIONS(105), 1, + [113730] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3743), 1, + STATE(3761), 1, sym_comment, - ACTIONS(803), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(801), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(805), 6, - sym__space, - anon_sym_LPAREN2, + ACTIONS(803), 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, - [113271] = 10, + [113750] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5115), 1, + anon_sym_DOT2, + STATE(2472), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2499), 1, + sym_path, + STATE(2935), 1, + sym_cell_path, + STATE(3762), 1, + sym_comment, + ACTIONS(1904), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [113776] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1756), 1, + STATE(3763), 1, + sym_comment, + ACTIONS(755), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(757), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [113796] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(6137), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(6551), 1, + STATE(1978), 1, + sym__immediate_decimal, + STATE(3764), 1, + sym_comment, + ACTIONS(4024), 2, aux_sym__immediate_decimal_token1, - ACTIONS(6553), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7303), 1, - aux_sym__unquoted_in_record_token2, - STATE(3744), 1, - sym_comment, - STATE(3904), 1, - sym__immediate_decimal, - ACTIONS(6555), 2, + ACTIONS(4026), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3991), 2, + STATE(2008), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113304] = 10, - ACTIONS(105), 1, + [113824] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6137), 1, - anon_sym_LPAREN2, - ACTIONS(6607), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(6643), 1, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + STATE(932), 1, + sym__immediate_decimal, + STATE(3765), 1, + sym_comment, + ACTIONS(4046), 2, aux_sym__immediate_decimal_token1, - ACTIONS(6645), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7303), 1, - aux_sym__unquoted_in_record_token2, - STATE(3745), 1, - sym_comment, - STATE(4518), 1, - sym__immediate_decimal, - ACTIONS(6647), 2, + ACTIONS(4048), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4637), 2, + STATE(923), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113337] = 11, - ACTIONS(105), 1, + [113852] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(811), 1, - anon_sym_RBRACE, - ACTIONS(914), 1, - sym__entry_separator, - ACTIONS(5231), 1, + ACTIONS(3204), 1, anon_sym_LPAREN2, - ACTIONS(7303), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7305), 1, - anon_sym_DOT_DOT2, - ACTIONS(7309), 1, - sym_filesize_unit, - ACTIONS(7311), 1, - sym_duration_unit, - STATE(3746), 1, + ACTIONS(7343), 1, + anon_sym_DOLLAR, + STATE(2927), 1, + sym__immediate_decimal, + STATE(3766), 1, sym_comment, - STATE(5039), 1, + ACTIONS(5032), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7345), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3403), 2, sym__expr_parenthesized_immediate, - ACTIONS(7307), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113372] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7313), 1, - anon_sym_DOT, - ACTIONS(7315), 1, - aux_sym__immediate_decimal_token5, - STATE(3747), 1, - sym_comment, - ACTIONS(1788), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1790), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [113397] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7317), 1, - anon_sym_DQUOTE, - ACTIONS(7319), 1, - anon_sym_SQUOTE, - ACTIONS(7321), 1, - anon_sym_BQUOTE, - ACTIONS(7323), 1, - aux_sym_path_token1, - ACTIONS(7325), 1, - sym_raw_string_begin, - STATE(1738), 1, - sym_val_string, - STATE(3748), 1, - sym_comment, - STATE(1765), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [113428] = 8, + sym_val_variable, + [113880] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4197), 1, - anon_sym_DOT_DOT2, - ACTIONS(7327), 1, - sym_filesize_unit, - ACTIONS(7329), 1, - sym_duration_unit, - ACTIONS(7331), 1, - sym__unquoted_pattern, - STATE(3749), 1, + ACTIONS(5115), 1, + anon_sym_DOT2, + STATE(2472), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2499), 1, + sym_path, + STATE(2951), 1, + sym_cell_path, + STATE(3767), 1, sym_comment, - ACTIONS(4199), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(914), 3, + ACTIONS(1934), 5, + anon_sym_EQ, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_GT2, anon_sym_DASH_DASH, - [113456] = 8, + [113906] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1634), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(2945), 1, + ACTIONS(2935), 1, anon_sym_DOLLAR, - STATE(753), 1, + STATE(794), 1, sym__immediate_decimal, - STATE(3750), 1, + STATE(3768), 1, sym_comment, - ACTIONS(6807), 2, + ACTIONS(1634), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(7053), 2, + ACTIONS(1677), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(752), 2, + STATE(796), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113484] = 8, + [113934] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, - anon_sym_LPAREN2, - ACTIONS(3805), 1, + ACTIONS(7347), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7349), 1, + aux_sym__immediate_decimal_token5, + STATE(3769), 1, + sym_comment, + ACTIONS(1804), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1802), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [113958] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3852), 1, anon_sym_DOLLAR, - STATE(2696), 1, - sym__immediate_decimal, - STATE(3751), 1, + ACTIONS(6214), 1, + anon_sym_LPAREN2, + STATE(3770), 1, sym_comment, - ACTIONS(4952), 2, + STATE(4552), 1, + sym__immediate_decimal, + ACTIONS(6881), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4954), 2, + ACTIONS(7351), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1337), 2, + STATE(4560), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113512] = 5, - ACTIONS(105), 1, + [113986] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7333), 1, + ACTIONS(7353), 1, aux_sym__immediate_decimal_token5, - STATE(3752), 1, + STATE(3771), 1, sym_comment, - ACTIONS(1866), 4, - anon_sym_LPAREN2, + ACTIONS(1876), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1874), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + [114008] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(910), 1, sym__entry_separator, - ACTIONS(1868), 4, + ACTIONS(6788), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7005), 1, + anon_sym_DOT_DOT2, + ACTIONS(7009), 1, + sym_filesize_unit, + ACTIONS(7011), 1, + sym_duration_unit, + STATE(3772), 1, + sym_comment, + ACTIONS(811), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [113534] = 8, + ACTIONS(7007), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [114038] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3200), 1, - anon_sym_LPAREN2, - ACTIONS(7335), 1, - anon_sym_DOLLAR, - STATE(3123), 1, - sym__immediate_decimal, - STATE(3753), 1, + ACTIONS(5115), 1, + anon_sym_DOT2, + STATE(2472), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2499), 1, + sym_path, + STATE(3031), 1, + sym_cell_path, + STATE(3773), 1, sym_comment, - ACTIONS(6703), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7337), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3122), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [113562] = 8, + ACTIONS(1894), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [114064] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3860), 1, + ACTIONS(1703), 1, anon_sym_DOLLAR, - ACTIONS(6491), 1, + ACTIONS(1705), 1, anon_sym_LPAREN2, - STATE(3754), 1, - sym_comment, - STATE(4222), 1, + STATE(952), 1, sym__immediate_decimal, - ACTIONS(6493), 2, + STATE(3774), 1, + sym_comment, + ACTIONS(1709), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7339), 2, + ACTIONS(1711), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4606), 2, + STATE(953), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113590] = 8, + [114092] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1693), 1, + ACTIONS(1703), 1, anon_sym_DOLLAR, - ACTIONS(1695), 1, + ACTIONS(1705), 1, anon_sym_LPAREN2, - STATE(1295), 1, + STATE(1346), 1, sym__immediate_decimal, - STATE(3755), 1, + STATE(3775), 1, sym_comment, - ACTIONS(1701), 2, + ACTIONS(1711), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1782), 2, + ACTIONS(1776), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1365), 2, + STATE(1293), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113618] = 8, + [114120] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1634), 1, + ACTIONS(3204), 1, anon_sym_LPAREN2, - ACTIONS(2945), 1, + ACTIONS(7343), 1, anon_sym_DOLLAR, - STATE(2591), 1, + STATE(3402), 1, sym__immediate_decimal, - STATE(3756), 1, + STATE(3776), 1, sym_comment, - ACTIONS(4948), 2, + ACTIONS(5076), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4950), 2, + ACTIONS(7355), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(754), 2, + STATE(3401), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113646] = 8, + [114148] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1630), 1, + ACTIONS(3852), 1, anon_sym_DOLLAR, - ACTIONS(1634), 1, + ACTIONS(6214), 1, anon_sym_LPAREN2, - STATE(717), 1, - sym__immediate_decimal, - STATE(3757), 1, + STATE(3777), 1, sym_comment, - ACTIONS(1638), 2, + STATE(5091), 1, + sym__immediate_decimal, + ACTIONS(6647), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1640), 2, + ACTIONS(7337), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(708), 2, + STATE(4560), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113674] = 8, + [114176] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3348), 1, + ACTIONS(1705), 1, anon_sym_LPAREN2, - ACTIONS(3850), 1, + ACTIONS(3842), 1, anon_sym_DOLLAR, - STATE(3146), 1, + STATE(1368), 1, sym__immediate_decimal, - STATE(3758), 1, + STATE(3778), 1, sym_comment, - ACTIONS(5137), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5139), 2, + ACTIONS(1711), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3495), 2, + ACTIONS(1776), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1370), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113702] = 8, + [114204] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2768), 1, + ACTIONS(2772), 1, anon_sym_DOLLAR, - ACTIONS(6137), 1, + ACTIONS(6214), 1, anon_sym_LPAREN2, - STATE(3759), 1, + STATE(3779), 1, sym_comment, - STATE(4354), 1, + STATE(4245), 1, sym__immediate_decimal, - ACTIONS(6509), 2, + ACTIONS(6529), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7341), 2, + ACTIONS(7337), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3991), 2, + STATE(4153), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113730] = 8, + [114232] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - ACTIONS(2945), 1, + STATE(3780), 1, + sym_comment, + ACTIONS(755), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(757), 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, + [114252] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3852), 1, anon_sym_DOLLAR, - STATE(3760), 1, + ACTIONS(6214), 1, + anon_sym_LPAREN2, + STATE(3781), 1, sym_comment, - STATE(4375), 1, + STATE(4935), 1, sym__immediate_decimal, - ACTIONS(6469), 2, + ACTIONS(6647), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6471), 2, + ACTIONS(7337), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(754), 2, + STATE(4596), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113758] = 8, + [114280] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1693), 1, + ACTIONS(7357), 1, + anon_sym_DOT, + ACTIONS(7359), 1, + aux_sym__immediate_decimal_token5, + STATE(3782), 1, + sym_comment, + ACTIONS(763), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(765), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [114304] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1552), 1, + sym__entry_separator, + STATE(3783), 1, + sym_comment, + ACTIONS(1550), 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, + [114324] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1840), 1, + sym__unquoted_pattern, + ACTIONS(7361), 1, + anon_sym_DOT_DOT2, + ACTIONS(7365), 1, + sym_filesize_unit, + ACTIONS(7367), 1, + sym_duration_unit, + STATE(3784), 1, + sym_comment, + ACTIONS(7363), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(910), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [114352] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1703), 1, anon_sym_DOLLAR, - ACTIONS(1695), 1, + ACTIONS(1705), 1, anon_sym_LPAREN2, - STATE(1538), 1, + STATE(1072), 1, sym__immediate_decimal, - STATE(3761), 1, + STATE(3785), 1, sym_comment, - ACTIONS(3518), 2, + ACTIONS(1726), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3520), 2, + ACTIONS(1728), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1337), 2, + STATE(1359), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113786] = 7, + [114380] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5112), 1, - anon_sym_DOT2, - STATE(2469), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2485), 1, - sym_path, - STATE(3012), 1, - sym_cell_path, - STATE(3762), 1, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + STATE(794), 1, + sym__immediate_decimal, + STATE(3786), 1, sym_comment, - ACTIONS(1917), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [113812] = 8, + ACTIONS(5980), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6605), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(796), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [114408] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1630), 1, - anon_sym_DOLLAR, - ACTIONS(1634), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - STATE(2104), 1, - sym__immediate_decimal, - STATE(3763), 1, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + STATE(3787), 1, sym_comment, - ACTIONS(4042), 2, + STATE(5046), 1, + sym__immediate_decimal, + ACTIONS(6978), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4044), 2, + ACTIONS(6980), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(754), 2, + STATE(793), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113840] = 6, + [114436] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7343), 1, - anon_sym_DOT, - ACTIONS(7345), 1, - aux_sym__immediate_decimal_token5, - STATE(3764), 1, + STATE(3788), 1, sym_comment, - ACTIONS(751), 2, + ACTIONS(775), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(753), 5, - anon_sym_LBRACE, + 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, - [113864] = 8, - ACTIONS(3), 1, + [114456] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1630), 1, - anon_sym_DOLLAR, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - STATE(1508), 1, - sym__immediate_decimal, - STATE(3765), 1, + ACTIONS(7369), 1, + aux_sym__immediate_decimal_token5, + STATE(3789), 1, sym_comment, - ACTIONS(3480), 2, + ACTIONS(1874), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1876), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [114478] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7371), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3482), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(754), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [113892] = 8, + ACTIONS(7373), 1, + aux_sym__immediate_decimal_token5, + STATE(3790), 1, + sym_comment, + ACTIONS(755), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(757), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [114502] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(1634), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - STATE(955), 1, + STATE(2000), 1, sym__immediate_decimal, - STATE(3766), 1, + STATE(3791), 1, sym_comment, - ACTIONS(1640), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1663), 2, + ACTIONS(4018), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(889), 2, + ACTIONS(4020), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(793), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113920] = 8, + [114530] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1634), 1, + ACTIONS(3270), 1, anon_sym_LPAREN2, - ACTIONS(2945), 1, + ACTIONS(7375), 1, anon_sym_DOLLAR, - STATE(3767), 1, - sym_comment, - STATE(4297), 1, + STATE(3110), 1, sym__immediate_decimal, - ACTIONS(6236), 2, + STATE(3792), 1, + sym_comment, + ACTIONS(6743), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6238), 2, + ACTIONS(7377), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(754), 2, + STATE(3113), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113948] = 4, + [114558] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1488), 1, + ACTIONS(1524), 1, sym__entry_separator, - STATE(3768), 1, + STATE(3793), 1, sym_comment, - ACTIONS(1486), 8, + ACTIONS(1522), 8, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT2, @@ -237777,149 +238180,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [113968] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1806), 1, - sym__unquoted_pattern, - ACTIONS(7347), 1, - anon_sym_DOT_DOT2, - ACTIONS(7351), 1, - sym_filesize_unit, - ACTIONS(7353), 1, - sym_duration_unit, - STATE(3769), 1, - sym_comment, - ACTIONS(7349), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(914), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [113996] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3200), 1, - anon_sym_LPAREN2, - ACTIONS(7335), 1, - anon_sym_DOLLAR, - STATE(3123), 1, - sym__immediate_decimal, - STATE(3770), 1, - sym_comment, - ACTIONS(5024), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7355), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3122), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [114024] = 6, + [114578] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7357), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7359), 1, - aux_sym__immediate_decimal_token5, - STATE(3771), 1, + STATE(3794), 1, sym_comment, - ACTIONS(1776), 2, + ACTIONS(801), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1774), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(803), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114048] = 8, + sym_filesize_unit, + sym_duration_unit, + [114598] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1693), 1, - anon_sym_DOLLAR, - ACTIONS(1695), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - STATE(1305), 1, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + STATE(794), 1, sym__immediate_decimal, - STATE(3772), 1, + STATE(3795), 1, sym_comment, - ACTIONS(1701), 2, + ACTIONS(6891), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1782), 2, + ACTIONS(7225), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1337), 2, + STATE(796), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114076] = 5, - ACTIONS(3), 1, + [114626] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7361), 1, - aux_sym__immediate_decimal_token5, - STATE(3773), 1, + ACTIONS(1542), 1, + sym__entry_separator, + STATE(3796), 1, sym_comment, - ACTIONS(1868), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1866), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114098] = 8, + ACTIONS(1540), 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, + [114646] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(3805), 1, + ACTIONS(2935), 1, anon_sym_DOLLAR, - STATE(1295), 1, - sym__immediate_decimal, - STATE(3774), 1, + STATE(3797), 1, sym_comment, - ACTIONS(1701), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1782), 2, + STATE(4309), 1, + sym__immediate_decimal, + ACTIONS(6073), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1365), 2, + ACTIONS(6075), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(793), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114126] = 8, + [114674] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1630), 1, - anon_sym_DOLLAR, - ACTIONS(1634), 1, + ACTIONS(3270), 1, anon_sym_LPAREN2, - STATE(942), 1, + ACTIONS(7375), 1, + anon_sym_DOLLAR, + STATE(3110), 1, sym__immediate_decimal, - STATE(3775), 1, + STATE(3798), 1, sym_comment, - ACTIONS(1640), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1663), 2, + ACTIONS(5026), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(754), 2, + ACTIONS(7379), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3113), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114154] = 4, + [114702] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1529), 1, + ACTIONS(1546), 1, sym__entry_separator, - STATE(3776), 1, + STATE(3799), 1, sym_comment, - ACTIONS(1527), 8, + ACTIONS(1544), 8, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT2, @@ -237928,92 +238288,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [114174] = 8, + [114722] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(1703), 1, anon_sym_DOLLAR, - ACTIONS(6137), 1, + ACTIONS(1705), 1, anon_sym_LPAREN2, - STATE(3777), 1, - sym_comment, - STATE(5020), 1, + STATE(1356), 1, sym__immediate_decimal, - ACTIONS(6631), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7341), 2, + STATE(3800), 1, + sym_comment, + ACTIONS(1711), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4637), 2, + ACTIONS(1776), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1359), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114202] = 8, + [114750] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3801), 1, + sym_comment, + ACTIONS(7381), 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, + [114768] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3802), 1, + sym_comment, + ACTIONS(7383), 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, + [114786] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1630), 1, + ACTIONS(1703), 1, anon_sym_DOLLAR, - ACTIONS(1634), 1, + ACTIONS(1705), 1, anon_sym_LPAREN2, - STATE(1984), 1, + STATE(1368), 1, sym__immediate_decimal, - STATE(3778), 1, + STATE(3803), 1, sym_comment, - ACTIONS(4024), 2, + ACTIONS(1711), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1776), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4026), 2, + STATE(1370), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [114814] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3270), 1, + anon_sym_LPAREN2, + ACTIONS(7375), 1, + anon_sym_DOLLAR, + STATE(3804), 1, + sym_comment, + STATE(4248), 1, + sym__immediate_decimal, + ACTIONS(6555), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7385), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1993), 2, + STATE(3097), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114230] = 8, + [114842] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1693), 1, + ACTIONS(3803), 1, anon_sym_DOLLAR, - ACTIONS(1695), 1, + ACTIONS(6585), 1, anon_sym_LPAREN2, - STATE(1020), 1, - sym__immediate_decimal, - STATE(3779), 1, + STATE(3805), 1, sym_comment, - ACTIONS(1722), 2, + STATE(4565), 1, + sym__immediate_decimal, + ACTIONS(6587), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1724), 2, + ACTIONS(7387), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1337), 2, + STATE(4566), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114258] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7363), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7365), 1, - aux_sym__immediate_decimal_token5, - STATE(3780), 1, - sym_comment, - ACTIONS(1776), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1774), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [114282] = 4, + [114870] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1543), 1, + ACTIONS(1576), 1, sym__entry_separator, - STATE(3781), 1, + STATE(3806), 1, sym_comment, - ACTIONS(1541), 8, + ACTIONS(1574), 8, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT2, @@ -238022,9154 +238414,8710 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [114302] = 5, + [114890] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7367), 1, - aux_sym__immediate_decimal_token5, - STATE(3782), 1, - sym_comment, - ACTIONS(1866), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1492), 1, sym__entry_separator, - ACTIONS(1868), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [114324] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3783), 1, + STATE(3807), 1, sym_comment, - ACTIONS(7369), 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, + ACTIONS(1490), 8, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, anon_sym_RBRACE, - [114342] = 8, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [114910] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3200), 1, + ACTIONS(3270), 1, anon_sym_LPAREN2, - ACTIONS(7335), 1, + ACTIONS(7375), 1, anon_sym_DOLLAR, - STATE(3784), 1, - sym_comment, - STATE(4338), 1, + STATE(2834), 1, sym__immediate_decimal, - ACTIONS(6455), 2, + STATE(3808), 1, + sym_comment, + ACTIONS(4976), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7371), 2, + ACTIONS(7389), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3124), 2, + STATE(3097), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114370] = 8, + [114938] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3860), 1, - anon_sym_DOLLAR, - ACTIONS(6491), 1, + ACTIONS(3242), 1, anon_sym_LPAREN2, - STATE(3785), 1, - sym_comment, - STATE(4599), 1, + ACTIONS(3870), 1, + anon_sym_DOLLAR, + STATE(3477), 1, sym__immediate_decimal, - ACTIONS(6493), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7339), 2, + STATE(3809), 1, + sym_comment, + ACTIONS(5074), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4587), 2, + ACTIONS(5210), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(3474), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114398] = 4, + [114966] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(3786), 1, + ACTIONS(7247), 1, + aux_sym__immediate_decimal_token5, + STATE(3810), 1, sym_comment, - ACTIONS(791), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(793), 6, + ACTIONS(1810), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [114418] = 5, + ACTIONS(1812), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [114988] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7279), 1, + ACTIONS(1624), 1, + anon_sym_DOLLAR, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + STATE(932), 1, + sym__immediate_decimal, + STATE(3811), 1, + sym_comment, + ACTIONS(1634), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1677), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(923), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [115016] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7255), 1, aux_sym__immediate_decimal_token5, - STATE(3787), 1, + STATE(3812), 1, sym_comment, - ACTIONS(1790), 2, + ACTIONS(1812), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1788), 6, + ACTIONS(1810), 6, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114440] = 8, + [115038] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - ACTIONS(2945), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - STATE(753), 1, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + STATE(1511), 1, sym__immediate_decimal, - STATE(3788), 1, + STATE(3813), 1, sym_comment, - ACTIONS(1640), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1663), 2, + ACTIONS(3482), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(752), 2, + ACTIONS(3484), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(793), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114468] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(914), 1, - sym__entry_separator, - ACTIONS(6629), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6956), 1, - anon_sym_DOT_DOT2, - ACTIONS(6960), 1, - sym_filesize_unit, - ACTIONS(6962), 1, - sym_duration_unit, - STATE(3789), 1, - sym_comment, - ACTIONS(811), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6958), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114498] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1537), 1, - sym__entry_separator, - STATE(3790), 1, - sym_comment, - ACTIONS(1535), 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, - [114518] = 8, + [115066] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1630), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(1634), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - STATE(955), 1, + STATE(2157), 1, sym__immediate_decimal, - STATE(3791), 1, + STATE(3814), 1, sym_comment, - ACTIONS(4042), 2, + ACTIONS(4046), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4044), 2, + ACTIONS(4048), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(889), 2, + STATE(793), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114546] = 6, + [115094] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7373), 1, - anon_sym_DOT, - ACTIONS(7375), 1, + ACTIONS(7391), 1, aux_sym__immediate_decimal_token5, - STATE(3792), 1, + STATE(3815), 1, sym_comment, - ACTIONS(1790), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1788), 4, + ACTIONS(1874), 4, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [114570] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1547), 1, - sym__entry_separator, - STATE(3793), 1, - sym_comment, - ACTIONS(1545), 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, - [114590] = 8, + ACTIONS(1876), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [115116] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - ACTIONS(6137), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - STATE(3794), 1, - sym_comment, - STATE(4599), 1, + STATE(740), 1, sym__immediate_decimal, - ACTIONS(6631), 2, + STATE(3816), 1, + sym_comment, + ACTIONS(1632), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7341), 2, + ACTIONS(1634), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4587), 2, + STATE(742), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114618] = 8, + [115144] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - ACTIONS(2945), 1, + ACTIONS(1624), 1, anon_sym_DOLLAR, - STATE(753), 1, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + STATE(794), 1, sym__immediate_decimal, - STATE(3795), 1, + STATE(3817), 1, sym_comment, - ACTIONS(5926), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6519), 2, + ACTIONS(4046), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(752), 2, + ACTIONS(4048), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(796), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114646] = 8, + [115172] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1630), 1, + ACTIONS(1703), 1, anon_sym_DOLLAR, - ACTIONS(1634), 1, + ACTIONS(1705), 1, anon_sym_LPAREN2, - STATE(942), 1, + STATE(1516), 1, sym__immediate_decimal, - STATE(3796), 1, + STATE(3818), 1, sym_comment, - ACTIONS(4042), 2, + ACTIONS(3516), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4044), 2, + ACTIONS(3518), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(754), 2, + STATE(1359), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114674] = 7, + [115200] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5112), 1, - anon_sym_DOT2, - STATE(2469), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2485), 1, - sym_path, - STATE(3019), 1, - sym_cell_path, - STATE(3797), 1, + ACTIONS(1628), 1, + anon_sym_LPAREN2, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + STATE(3819), 1, sym_comment, - ACTIONS(1901), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [114700] = 8, + STATE(4409), 1, + sym__immediate_decimal, + ACTIONS(6505), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6507), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(793), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [115228] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7317), 1, + aux_sym__immediate_decimal_token5, + STATE(3820), 1, + sym_comment, + ACTIONS(1810), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1812), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [115250] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1693), 1, + ACTIONS(7393), 1, + anon_sym_DOT, + ACTIONS(7395), 1, + aux_sym__immediate_decimal_token5, + STATE(3821), 1, + sym_comment, + ACTIONS(1812), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1810), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115274] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3852), 1, anon_sym_DOLLAR, - ACTIONS(1695), 1, + ACTIONS(6214), 1, anon_sym_LPAREN2, - STATE(938), 1, - sym__immediate_decimal, - STATE(3798), 1, + STATE(3822), 1, sym_comment, - ACTIONS(1699), 2, + STATE(4461), 1, + sym__immediate_decimal, + ACTIONS(6709), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1701), 2, + ACTIONS(7397), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(936), 2, + STATE(4560), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114728] = 8, + [115302] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3200), 1, + ACTIONS(3242), 1, anon_sym_LPAREN2, - ACTIONS(7335), 1, + ACTIONS(3870), 1, anon_sym_DOLLAR, - STATE(2906), 1, + STATE(3108), 1, sym__immediate_decimal, - STATE(3799), 1, + STATE(3823), 1, sym_comment, - ACTIONS(4996), 2, + ACTIONS(5130), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7377), 2, + ACTIONS(5132), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3124), 2, + STATE(3501), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114756] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3800), 1, - sym_comment, - ACTIONS(759), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(761), 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, - [114776] = 8, + [115330] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3424), 1, + ACTIONS(1628), 1, anon_sym_LPAREN2, - ACTIONS(7379), 1, + ACTIONS(2935), 1, anon_sym_DOLLAR, - STATE(3330), 1, + STATE(2577), 1, sym__immediate_decimal, - STATE(3801), 1, + STATE(3824), 1, sym_comment, - ACTIONS(5056), 2, + ACTIONS(4952), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7381), 2, + ACTIONS(4954), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3327), 2, + STATE(793), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114804] = 8, + [115358] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_DOLLAR, - ACTIONS(6137), 1, + ACTIONS(1705), 1, anon_sym_LPAREN2, - STATE(3802), 1, - sym_comment, - STATE(4992), 1, + ACTIONS(3842), 1, + anon_sym_DOLLAR, + STATE(2671), 1, sym__immediate_decimal, - ACTIONS(6631), 2, + STATE(3825), 1, + sym_comment, + ACTIONS(4968), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7341), 2, + ACTIONS(4970), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4606), 2, + STATE(1359), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114832] = 6, - ACTIONS(3), 1, + [115386] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7383), 1, + ACTIONS(7399), 1, anon_sym_DOT, - ACTIONS(7385), 1, + ACTIONS(7401), 1, aux_sym__immediate_decimal_token5, - STATE(3803), 1, + STATE(3826), 1, sym_comment, - ACTIONS(1790), 2, + ACTIONS(1812), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1788), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + sym__unquoted_pattern_in_record, + ACTIONS(1810), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114856] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3804), 1, - sym_comment, - ACTIONS(7387), 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, - [114874] = 5, + sym__entry_separator, + [115410] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7389), 1, + ACTIONS(7403), 1, aux_sym__immediate_decimal_token5, - STATE(3805), 1, + STATE(3827), 1, sym_comment, - ACTIONS(1866), 4, - sym__space, + ACTIONS(1874), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1868), 4, - sym__newline, - anon_sym_SEMI, + sym__entry_separator, + ACTIONS(1876), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [114896] = 5, + sym__unquoted_pattern_in_list, + [115432] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7259), 1, + ACTIONS(7265), 1, aux_sym__immediate_decimal_token5, - STATE(3806), 1, + STATE(3828), 1, sym_comment, - ACTIONS(1788), 4, + ACTIONS(1810), 4, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1790), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1812), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [114918] = 8, + sym__unquoted_pattern, + [115454] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3348), 1, - anon_sym_LPAREN2, - ACTIONS(3850), 1, + ACTIONS(3803), 1, anon_sym_DOLLAR, - STATE(3494), 1, - sym__immediate_decimal, - STATE(3807), 1, + ACTIONS(6585), 1, + anon_sym_LPAREN2, + STATE(3829), 1, sym_comment, - ACTIONS(5088), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(5221), 2, + STATE(4349), 1, + sym__immediate_decimal, + ACTIONS(6587), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(3493), 2, + ACTIONS(7387), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4560), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [114946] = 4, - ACTIONS(3), 1, + [115482] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3808), 1, + STATE(3830), 1, sym_comment, - ACTIONS(759), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(761), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1945), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [114966] = 5, + sym__entry_separator, + ACTIONS(1947), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [115501] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7255), 1, - aux_sym__immediate_decimal_token5, - STATE(3809), 1, + STATE(3831), 1, sym_comment, - ACTIONS(1788), 4, + ACTIONS(1874), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1790), 4, + ACTIONS(1876), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [114988] = 8, - ACTIONS(3), 1, + [115520] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1693), 1, - anon_sym_DOLLAR, - ACTIONS(1695), 1, - anon_sym_LPAREN2, - STATE(1319), 1, - sym__immediate_decimal, - STATE(3810), 1, + ACTIONS(1480), 1, + sym__entry_separator, + ACTIONS(7405), 1, + anon_sym_DOT2, + STATE(3832), 1, sym_comment, - ACTIONS(1701), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1782), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1308), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [115016] = 4, + STATE(3941), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4261), 1, + sym_path, + STATE(4419), 1, + sym_cell_path, + ACTIONS(1478), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + [115547] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3811), 1, + ACTIONS(1898), 1, + anon_sym_DOT2, + STATE(430), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(466), 1, + sym_path, + STATE(936), 1, + sym_cell_path, + STATE(3833), 1, sym_comment, - ACTIONS(791), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(793), 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, - [115036] = 4, - ACTIONS(3), 1, + ACTIONS(7407), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [115572] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3812), 1, + STATE(3834), 1, sym_comment, - ACTIONS(791), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(793), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1802), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [115056] = 4, + sym__entry_separator, + ACTIONS(1804), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [115591] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3813), 1, + ACTIONS(7411), 1, + anon_sym_DOT2, + STATE(2594), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2899), 1, + sym_path, + STATE(3102), 1, + sym_cell_path, + STATE(3835), 1, sym_comment, - ACTIONS(803), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(805), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(7409), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [115616] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3836), 1, + sym_comment, + ACTIONS(1802), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [115076] = 8, + ACTIONS(1804), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [115635] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - ACTIONS(2945), 1, - anon_sym_DOLLAR, - STATE(3814), 1, + ACTIONS(5115), 1, + anon_sym_DOT2, + STATE(2472), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2499), 1, + sym_path, + STATE(3102), 1, + sym_cell_path, + STATE(3837), 1, sym_comment, - STATE(5095), 1, - sym__immediate_decimal, - ACTIONS(6964), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6966), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(754), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [115104] = 6, + ACTIONS(7413), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [115660] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7391), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7393), 1, - aux_sym__immediate_decimal_token5, - STATE(3815), 1, + ACTIONS(1898), 1, + anon_sym_DOT2, + STATE(430), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(466), 1, + sym_path, + STATE(936), 1, + sym_cell_path, + STATE(3838), 1, sym_comment, - ACTIONS(759), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(761), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [115128] = 4, + ACTIONS(7415), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [115685] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3816), 1, + STATE(3839), 1, sym_comment, - ACTIONS(759), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(761), 6, + ACTIONS(1874), 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, - [115148] = 9, + ACTIONS(1876), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [115704] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(914), 1, + STATE(3840), 1, + sym_comment, + ACTIONS(1945), 4, sym__space, - ACTIONS(4197), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1947), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - ACTIONS(5076), 1, sym__unquoted_pattern, - ACTIONS(6935), 1, - sym_filesize_unit, - ACTIONS(6937), 1, - sym_duration_unit, - STATE(3817), 1, + [115723] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5291), 1, + anon_sym_DOT2, + STATE(712), 1, + sym_path, + STATE(1337), 1, + sym_cell_path, + STATE(2427), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3841), 1, sym_comment, - ACTIONS(811), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(4199), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115178] = 8, + ACTIONS(7417), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [115748] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1630), 1, - anon_sym_DOLLAR, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - STATE(987), 1, - sym__immediate_decimal, - STATE(3818), 1, + ACTIONS(7421), 1, + anon_sym_DOT2, + STATE(2505), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2639), 1, + sym_path, + STATE(3092), 1, + sym_cell_path, + STATE(3842), 1, sym_comment, - ACTIONS(1665), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(1667), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(754), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [115206] = 8, + ACTIONS(7419), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [115773] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1630), 1, + ACTIONS(7425), 1, + anon_sym_DASH2, + STATE(3843), 1, + sym_comment, + ACTIONS(7423), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(1634), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [115792] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7429), 1, + anon_sym_DOT2, + STATE(1953), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2112), 1, + sym_path, + STATE(2191), 1, + sym_cell_path, + STATE(3844), 1, + sym_comment, + ACTIONS(7427), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [115817] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3845), 1, + sym_comment, + ACTIONS(1802), 4, anon_sym_LPAREN2, - STATE(753), 1, - sym__immediate_decimal, - STATE(3819), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1804), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [115836] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7433), 1, + anon_sym_DOT2, + STATE(2551), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2687), 1, + sym_path, + STATE(3329), 1, + sym_cell_path, + STATE(3846), 1, sym_comment, - ACTIONS(4042), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4044), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(752), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [115234] = 4, + ACTIONS(7431), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [115861] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3820), 1, + ACTIONS(7435), 1, + aux_sym__immediate_decimal_token5, + STATE(3847), 1, sym_comment, - ACTIONS(803), 2, + ACTIONS(775), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(805), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + ACTIONS(777), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [115254] = 4, - ACTIONS(105), 1, + [115882] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1533), 1, - sym__entry_separator, - STATE(3821), 1, - sym_comment, - ACTIONS(1531), 8, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, + ACTIONS(2417), 1, anon_sym_DOT2, - [115274] = 7, + STATE(580), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(712), 1, + sym_path, + STATE(1337), 1, + sym_cell_path, + STATE(3848), 1, + sym_comment, + ACTIONS(7437), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [115907] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5112), 1, + ACTIONS(1898), 1, anon_sym_DOT2, - STATE(2469), 1, + STATE(430), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2485), 1, + STATE(466), 1, sym_path, - STATE(3006), 1, + STATE(936), 1, sym_cell_path, - STATE(3822), 1, + STATE(3849), 1, sym_comment, - ACTIONS(1909), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [115300] = 8, - ACTIONS(3), 1, + ACTIONS(7439), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [115932] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3424), 1, + ACTIONS(2099), 1, + sym__entry_separator, + ACTIONS(2103), 1, anon_sym_LPAREN2, - ACTIONS(7379), 1, - anon_sym_DOLLAR, - STATE(2968), 1, - sym__immediate_decimal, - STATE(3823), 1, + ACTIONS(2109), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7441), 1, + anon_sym_DOT_DOT2, + STATE(3850), 1, sym_comment, - ACTIONS(5032), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7395), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3335), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [115328] = 8, - ACTIONS(3), 1, + ACTIONS(2101), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7443), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115959] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1630), 1, - anon_sym_DOLLAR, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - STATE(753), 1, - sym__immediate_decimal, - STATE(3824), 1, + STATE(3851), 1, sym_comment, - ACTIONS(1640), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1663), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(752), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [115356] = 5, + ACTIONS(1874), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1876), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [115978] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7315), 1, - aux_sym__immediate_decimal_token5, - STATE(3825), 1, + STATE(3852), 1, sym_comment, - ACTIONS(1788), 4, - sym__space, + ACTIONS(1945), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1790), 4, - sym__newline, - anon_sym_SEMI, + sym__entry_separator, + ACTIONS(1947), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [115997] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7359), 1, + aux_sym__immediate_decimal_token5, + STATE(3853), 1, + sym_comment, + ACTIONS(763), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [115378] = 8, + ACTIONS(765), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [116018] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_DOLLAR, - ACTIONS(6137), 1, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(7445), 1, + anon_sym_DOT_DOT2, + STATE(3854), 1, + sym_comment, + ACTIONS(7447), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2125), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [116041] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1636), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2125), 1, + sym__entry_separator, + ACTIONS(2129), 1, anon_sym_LPAREN2, - STATE(3826), 1, + ACTIONS(7449), 1, + anon_sym_DOT_DOT2, + STATE(3855), 1, sym_comment, - STATE(4621), 1, - sym__immediate_decimal, - ACTIONS(6643), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7397), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4606), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [115406] = 8, + ACTIONS(2127), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7451), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116068] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2109), 1, + sym__unquoted_pattern, + ACTIONS(7453), 1, + anon_sym_DOT_DOT2, + STATE(3856), 1, + sym_comment, + ACTIONS(7455), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2099), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [116091] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_DOLLAR, - ACTIONS(6137), 1, + ACTIONS(7459), 1, + anon_sym_DOT2, + STATE(375), 1, + sym_path, + STATE(3857), 1, + sym_comment, + STATE(4157), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4910), 1, + sym_cell_path, + ACTIONS(7457), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [116116] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(2125), 1, + sym__space, + ACTIONS(2129), 1, anon_sym_LPAREN2, - STATE(3827), 1, + ACTIONS(7461), 1, + anon_sym_DOT_DOT2, + STATE(3858), 1, sym_comment, - STATE(4491), 1, - sym__immediate_decimal, - ACTIONS(6609), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7399), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4606), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [115434] = 4, - ACTIONS(105), 1, + ACTIONS(2127), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7463), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116143] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3828), 1, + ACTIONS(7465), 1, + anon_sym_DOT, + ACTIONS(7467), 1, + aux_sym__immediate_decimal_token5, + STATE(3859), 1, sym_comment, - ACTIONS(803), 3, - anon_sym_RBRACE, + ACTIONS(763), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(805), 6, - anon_sym_LPAREN2, + ACTIONS(765), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [115454] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1630), 1, - anon_sym_DOLLAR, - ACTIONS(1634), 1, - anon_sym_LPAREN2, - STATE(2010), 1, - sym__immediate_decimal, - STATE(3829), 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(754), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [115482] = 7, + [116166] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1886), 1, + ACTIONS(2417), 1, anon_sym_DOT2, - STATE(438), 1, + STATE(580), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(472), 1, + STATE(712), 1, sym_path, - STATE(984), 1, + STATE(1337), 1, sym_cell_path, - STATE(3830), 1, + STATE(3860), 1, sym_comment, - ACTIONS(7401), 4, + ACTIONS(7469), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [115507] = 4, + [116191] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3831), 1, + STATE(3861), 1, sym_comment, - ACTIONS(1868), 2, + ACTIONS(1947), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1866), 6, + ACTIONS(1945), 6, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115526] = 7, + [116210] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2417), 1, - anon_sym_DOT2, - STATE(586), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(737), 1, - sym_path, - STATE(1370), 1, - sym_cell_path, - STATE(3832), 1, + STATE(3862), 1, sym_comment, - ACTIONS(7403), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [115551] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2114), 1, - sym__entry_separator, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7405), 1, + ACTIONS(1876), 2, anon_sym_DOT_DOT2, - STATE(3833), 1, - sym_comment, - ACTIONS(2116), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7407), 2, + sym__unquoted_pattern, + ACTIONS(1874), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115578] = 8, - ACTIONS(105), 1, + [116229] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(2104), 1, - sym__space, - ACTIONS(2108), 1, - anon_sym_LPAREN2, - ACTIONS(7409), 1, - anon_sym_DOT_DOT2, - STATE(3834), 1, + ACTIONS(7471), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7473), 1, + aux_sym__immediate_decimal_token5, + STATE(3863), 1, sym_comment, - ACTIONS(2106), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7411), 2, + ACTIONS(755), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(757), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115605] = 8, - ACTIONS(105), 1, + sym_filesize_unit, + sym_duration_unit, + [116252] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2104), 1, - sym__entry_separator, - ACTIONS(2108), 1, - anon_sym_LPAREN2, - ACTIONS(7413), 1, - anon_sym_DOT_DOT2, - STATE(3835), 1, + ACTIONS(7475), 1, + aux_sym__immediate_decimal_token5, + STATE(3864), 1, sym_comment, - ACTIONS(2106), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7415), 2, + ACTIONS(1876), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1874), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115632] = 4, - ACTIONS(105), 1, + [116273] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3836), 1, + ACTIONS(5030), 1, + anon_sym_DOT2, + STATE(466), 1, + sym_path, + STATE(2337), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3865), 1, sym_comment, - ACTIONS(1866), 4, + STATE(4646), 1, + sym_cell_path, + ACTIONS(7477), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [116298] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2099), 1, + sym__space, + ACTIONS(2103), 1, anon_sym_LPAREN2, + ACTIONS(2109), 1, + sym__unquoted_pattern, + ACTIONS(7479), 1, + anon_sym_DOT_DOT2, + STATE(3866), 1, + sym_comment, + ACTIONS(2101), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7481), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1868), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [115651] = 9, + [116325] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1919), 1, + ACTIONS(1936), 1, sym__table_head_separator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(7485), 1, anon_sym_DOT2, - STATE(3837), 1, + STATE(3867), 1, sym_comment, - STATE(3993), 1, + STATE(4417), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4617), 1, + STATE(4990), 1, sym_path, - STATE(4909), 1, + STATE(5351), 1, sym_cell_path, - ACTIONS(7417), 2, + ACTIONS(7483), 3, anon_sym_RBRACK, + anon_sym_DOT_DOT, sym__entry_separator, - [115680] = 7, + [116352] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7426), 1, - anon_sym_DOT2, - STATE(2568), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2660), 1, - sym_path, - STATE(3358), 1, - sym_cell_path, - STATE(3838), 1, + ACTIONS(7395), 1, + aux_sym__immediate_decimal_token5, + STATE(3868), 1, sym_comment, - ACTIONS(7424), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [115705] = 7, + ACTIONS(1812), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1810), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116373] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5040), 1, + ACTIONS(5030), 1, anon_sym_DOT2, - STATE(472), 1, + STATE(466), 1, sym_path, - STATE(2335), 1, + STATE(2337), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3839), 1, + STATE(3869), 1, sym_comment, - STATE(4387), 1, + STATE(4534), 1, sym_cell_path, - ACTIONS(7428), 4, + ACTIONS(7487), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [115730] = 5, + [116398] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7345), 1, - aux_sym__immediate_decimal_token5, - STATE(3840), 1, + STATE(3870), 1, sym_comment, - ACTIONS(751), 2, + ACTIONS(1804), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(753), 5, - anon_sym_LBRACE, + ACTIONS(1802), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [115751] = 8, + [116417] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1468), 1, - sym__entry_separator, - ACTIONS(7430), 1, + ACTIONS(1936), 1, + sym__table_head_separator, + ACTIONS(7483), 1, + anon_sym_DOT_DOT, + ACTIONS(7492), 1, anon_sym_DOT2, - STATE(3841), 1, + STATE(3871), 1, sym_comment, - STATE(3951), 1, + STATE(4169), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4251), 1, + STATE(4465), 1, sym_path, - STATE(4525), 1, + STATE(4929), 1, sym_cell_path, - ACTIONS(1466), 3, + ACTIONS(7489), 2, anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [115778] = 4, - ACTIONS(3), 1, + sym__entry_separator, + [116446] = 7, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3842), 1, + ACTIONS(1472), 1, + sym__entry_separator, + ACTIONS(7494), 1, + anon_sym_QMARK2, + ACTIONS(7496), 1, + anon_sym_BANG, + STATE(3872), 1, sym_comment, - ACTIONS(1923), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1921), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115797] = 4, + STATE(4231), 1, + sym__path_suffix, + ACTIONS(1470), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [116471] = 10, ACTIONS(105), 1, anon_sym_POUND, - STATE(3843), 1, + ACTIONS(2800), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2838), 1, + anon_sym_COLON2, + ACTIONS(7498), 1, + anon_sym_alias, + ACTIONS(7500), 1, + anon_sym_const, + ACTIONS(7502), 1, + anon_sym_def, + ACTIONS(7504), 1, + anon_sym_use, + ACTIONS(7506), 1, + anon_sym_extern, + ACTIONS(7508), 1, + anon_sym_module, + STATE(3873), 1, sym_comment, - ACTIONS(1866), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1868), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [115816] = 7, + [116502] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7434), 1, + ACTIONS(5030), 1, anon_sym_DOT2, - STATE(1956), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2094), 1, + STATE(466), 1, sym_path, - STATE(2214), 1, + STATE(936), 1, sym_cell_path, - STATE(3844), 1, - sym_comment, - ACTIONS(7432), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [115841] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7438), 1, - anon_sym_DOT2, - STATE(2509), 1, + STATE(2337), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2581), 1, - sym_path, - STATE(3145), 1, - sym_cell_path, - STATE(3845), 1, + STATE(3874), 1, sym_comment, - ACTIONS(7436), 4, + ACTIONS(7510), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [115866] = 4, + [116527] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(3846), 1, + ACTIONS(7512), 1, + aux_sym__immediate_decimal_token5, + STATE(3875), 1, sym_comment, - ACTIONS(1774), 4, - sym__space, + ACTIONS(1876), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1874), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1776), 4, - sym__newline, - anon_sym_SEMI, + sym__entry_separator, + [116548] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7401), 1, + aux_sym__immediate_decimal_token5, + STATE(3876), 1, + sym_comment, + ACTIONS(1812), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [115885] = 7, + sym__unquoted_pattern_in_record, + ACTIONS(1810), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [116569] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1886), 1, - anon_sym_DOT2, - STATE(438), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(472), 1, - sym_path, - STATE(984), 1, - sym_cell_path, - STATE(3847), 1, + ACTIONS(7514), 1, + anon_sym_LBRACK, + ACTIONS(7516), 1, + anon_sym_LPAREN, + ACTIONS(7518), 1, + anon_sym_DASH_DASH, + STATE(1568), 1, + sym_parameter_parens, + STATE(1569), 1, + sym_parameter_bracks, + STATE(3877), 1, sym_comment, - ACTIONS(7440), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [115910] = 7, + STATE(3896), 1, + aux_sym_decl_def_repeat1, + STATE(4731), 1, + sym_long_flag, + [116597] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2417), 1, - anon_sym_DOT2, - STATE(586), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(737), 1, - sym_path, - STATE(1370), 1, - sym_cell_path, - STATE(3848), 1, + ACTIONS(1804), 1, + sym__unquoted_pattern, + ACTIONS(7520), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7522), 1, + aux_sym__immediate_decimal_token5, + STATE(3878), 1, sym_comment, - ACTIONS(7442), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [115935] = 7, + ACTIONS(1802), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [116619] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1886), 1, - anon_sym_DOT2, - STATE(438), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(472), 1, - sym_path, - STATE(984), 1, - sym_cell_path, - STATE(3849), 1, + ACTIONS(1636), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7524), 1, + anon_sym_DOT, + STATE(3879), 1, sym_comment, - ACTIONS(7444), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [115960] = 10, + STATE(4448), 1, + sym__immediate_decimal, + ACTIONS(7526), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7528), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [116643] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1636), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2125), 1, + sym__entry_separator, + ACTIONS(2127), 1, + anon_sym_RBRACK, + ACTIONS(2129), 1, + anon_sym_LPAREN2, + ACTIONS(7530), 1, + anon_sym_DOT_DOT2, + STATE(3880), 1, + sym_comment, + ACTIONS(7532), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116669] = 9, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2786), 1, + ACTIONS(2690), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2834), 1, - anon_sym_COLON2, - ACTIONS(7446), 1, - anon_sym_alias, - ACTIONS(7448), 1, - anon_sym_const, - ACTIONS(7450), 1, + ACTIONS(7502), 1, anon_sym_def, - ACTIONS(7452), 1, + ACTIONS(7504), 1, anon_sym_use, - ACTIONS(7454), 1, + ACTIONS(7506), 1, anon_sym_extern, - ACTIONS(7456), 1, + ACTIONS(7508), 1, anon_sym_module, - STATE(3850), 1, + ACTIONS(7534), 1, + anon_sym_alias, + ACTIONS(7536), 1, + anon_sym_const, + STATE(3881), 1, + sym_comment, + [116697] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7538), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7540), 1, + aux_sym__immediate_decimal_token5, + STATE(3882), 1, sym_comment, - [115991] = 4, + ACTIONS(1804), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1802), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116719] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(3851), 1, + STATE(3883), 1, sym_comment, - ACTIONS(1921), 4, + ACTIONS(1876), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1874), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1923), 4, + [116737] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1480), 1, + sym__entry_separator, + ACTIONS(7542), 1, + anon_sym_DOT2, + STATE(375), 1, + sym_path, + STATE(382), 1, + sym_cell_path, + STATE(3884), 1, + sym_comment, + STATE(4157), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1478), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [116010] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [116763] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7458), 1, - anon_sym_DOT, - ACTIONS(7460), 1, - aux_sym__immediate_decimal_token5, - STATE(3852), 1, + STATE(3885), 1, sym_comment, - ACTIONS(751), 2, + ACTIONS(1804), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(753), 4, + ACTIONS(1802), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [116033] = 4, + sym__entry_separator, + [116781] = 8, ACTIONS(105), 1, anon_sym_POUND, - STATE(3853), 1, - sym_comment, - ACTIONS(1921), 4, - sym__space, + ACTIONS(2099), 1, + sym__entry_separator, + ACTIONS(2101), 1, + anon_sym_RBRACK, + ACTIONS(2103), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1923), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(2109), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7544), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [116052] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7462), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7464), 1, - aux_sym__immediate_decimal_token5, - STATE(3854), 1, + STATE(3886), 1, sym_comment, - ACTIONS(759), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(761), 4, + ACTIONS(7546), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [116075] = 4, - ACTIONS(3), 1, + [116807] = 9, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3855), 1, + ACTIONS(2994), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7548), 1, + anon_sym_alias, + ACTIONS(7550), 1, + anon_sym_const, + ACTIONS(7552), 1, + anon_sym_def, + ACTIONS(7554), 1, + anon_sym_use, + ACTIONS(7556), 1, + anon_sym_extern, + ACTIONS(7558), 1, + anon_sym_module, + STATE(3887), 1, sym_comment, - ACTIONS(1776), 2, + [116835] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1930), 1, + sym__entry_separator, + ACTIONS(7405), 1, + anon_sym_DOT2, + STATE(3888), 1, + sym_comment, + STATE(3941), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4261), 1, + sym_path, + STATE(4574), 1, + sym_cell_path, + ACTIONS(1932), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [116861] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2099), 1, + sym__entry_separator, + ACTIONS(2101), 1, + anon_sym_RBRACE, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7560), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1774), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + STATE(3889), 1, + sym_comment, + ACTIONS(7562), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116094] = 8, + [116887] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1919), 1, - sym__table_head_separator, - ACTIONS(7466), 1, + ACTIONS(1926), 1, + sym__entry_separator, + ACTIONS(7405), 1, anon_sym_DOT2, - STATE(3856), 1, + STATE(3890), 1, sym_comment, - STATE(4574), 1, + STATE(3941), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4978), 1, + STATE(4261), 1, sym_path, - STATE(5375), 1, + STATE(4553), 1, sym_cell_path, - ACTIONS(7420), 3, + ACTIONS(1928), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [116913] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7405), 1, + anon_sym_DOT2, + ACTIONS(7564), 1, anon_sym_RBRACK, + ACTIONS(7568), 1, anon_sym_DOT_DOT, + ACTIONS(7570), 1, sym__entry_separator, - [116121] = 8, + STATE(3891), 1, + sym_comment, + STATE(3941), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4261), 1, + sym_path, + STATE(4896), 1, + sym_cell_path, + [116941] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2114), 1, - sym__space, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern, - ACTIONS(7468), 1, + ACTIONS(910), 1, + sym__entry_separator, + ACTIONS(6788), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7267), 1, anon_sym_DOT_DOT2, - STATE(3857), 1, + ACTIONS(7271), 1, + sym_filesize_unit, + ACTIONS(7273), 1, + sym_duration_unit, + STATE(3892), 1, sym_comment, - ACTIONS(2116), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7470), 2, + ACTIONS(7269), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116148] = 5, - ACTIONS(3), 1, + [116967] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7472), 1, - aux_sym__immediate_decimal_token5, - STATE(3858), 1, - sym_comment, - ACTIONS(1868), 2, + ACTIONS(1636), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2125), 1, + sym__entry_separator, + ACTIONS(2127), 1, + anon_sym_RBRACE, + ACTIONS(2129), 1, + anon_sym_LPAREN2, + ACTIONS(7574), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1866), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + STATE(3893), 1, + sym_comment, + ACTIONS(7576), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116169] = 7, - ACTIONS(3), 1, + [116993] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5112), 1, + ACTIONS(7405), 1, anon_sym_DOT2, - STATE(2469), 1, + ACTIONS(7477), 1, + sym__entry_separator, + STATE(3894), 1, + sym_comment, + STATE(3941), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2485), 1, + STATE(4261), 1, sym_path, - STATE(3185), 1, + STATE(4759), 1, sym_cell_path, - STATE(3859), 1, + ACTIONS(7568), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [117019] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(4028), 1, + sym__newline, + ACTIONS(7578), 1, + anon_sym_RBRACK, + STATE(3895), 1, sym_comment, - ACTIONS(7474), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [116194] = 4, + STATE(4322), 1, + aux_sym__types_body_repeat1, + STATE(4789), 1, + sym_val_list, + STATE(4828), 1, + aux_sym__table_body_repeat1, + STATE(5342), 1, + sym__table_body, + [117047] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7478), 1, - anon_sym_DASH2, - STATE(3860), 1, + ACTIONS(7514), 1, + anon_sym_LBRACK, + ACTIONS(7516), 1, + anon_sym_LPAREN, + ACTIONS(7518), 1, + anon_sym_DASH_DASH, + STATE(1641), 1, + sym_parameter_bracks, + STATE(1642), 1, + sym_parameter_parens, + STATE(3896), 1, sym_comment, - ACTIONS(7476), 7, - sym_identifier, - anon_sym_PIPE, + STATE(4354), 1, + aux_sym_decl_def_repeat1, + STATE(4731), 1, + sym_long_flag, + [117075] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7502), 1, + anon_sym_def, + ACTIONS(7504), 1, + anon_sym_use, + ACTIONS(7506), 1, + anon_sym_extern, + ACTIONS(7508), 1, + anon_sym_module, + ACTIONS(7580), 1, + anon_sym_alias, + ACTIONS(7582), 1, + anon_sym_const, + STATE(3897), 1, + sym_comment, + [117103] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7584), 1, + anon_sym_QMARK2, + ACTIONS(7586), 1, + anon_sym_BANG, + STATE(3898), 1, + sym_comment, + STATE(4470), 1, + sym__path_suffix, + ACTIONS(1470), 4, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [116213] = 7, - ACTIONS(3), 1, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [117125] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(7405), 1, anon_sym_DOT2, - STATE(737), 1, + ACTIONS(7487), 1, + sym__entry_separator, + STATE(3899), 1, + sym_comment, + STATE(3941), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4261), 1, sym_path, - STATE(1370), 1, + STATE(4755), 1, sym_cell_path, - STATE(2434), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3861), 1, + ACTIONS(7588), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [117151] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(4028), 1, + sym__newline, + ACTIONS(7590), 1, + anon_sym_RBRACK, + STATE(3900), 1, sym_comment, - ACTIONS(7480), 4, - anon_sym_in, + STATE(4322), 1, + aux_sym__types_body_repeat1, + STATE(4789), 1, + sym_val_list, + STATE(4828), 1, + aux_sym__table_body_repeat1, + STATE(5147), 1, + sym__table_body, + [117179] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2800), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2838), 1, + anon_sym_COLON2, + ACTIONS(7592), 1, sym_identifier, - anon_sym_nu, - anon_sym_env, - [116238] = 5, + ACTIONS(7594), 1, + anon_sym_DOLLAR, + STATE(2849), 1, + sym_val_variable, + STATE(2851), 1, + sym__variable_name, + STATE(3901), 1, + sym_comment, + STATE(4396), 1, + sym__assignment_pattern, + [117207] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7482), 1, + ACTIONS(7596), 1, + anon_sym_DOT, + ACTIONS(7598), 1, aux_sym__immediate_decimal_token5, - STATE(3862), 1, + STATE(3902), 1, + sym_comment, + ACTIONS(1810), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1812), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [117229] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(811), 1, + anon_sym_RBRACE, + ACTIONS(910), 1, + sym__entry_separator, + ACTIONS(7600), 1, + anon_sym_DOT_DOT2, + ACTIONS(7604), 1, + sym_filesize_unit, + ACTIONS(7606), 1, + sym_duration_unit, + STATE(3903), 1, + sym_comment, + ACTIONS(7602), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117255] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7514), 1, + anon_sym_LBRACK, + ACTIONS(7516), 1, + anon_sym_LPAREN, + ACTIONS(7518), 1, + anon_sym_DASH_DASH, + STATE(1566), 1, + sym_parameter_parens, + STATE(1567), 1, + sym_parameter_bracks, + STATE(3904), 1, + sym_comment, + STATE(4354), 1, + aux_sym_decl_def_repeat1, + STATE(4731), 1, + sym_long_flag, + [117283] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7502), 1, + anon_sym_def, + ACTIONS(7504), 1, + anon_sym_use, + ACTIONS(7506), 1, + anon_sym_extern, + ACTIONS(7508), 1, + anon_sym_module, + ACTIONS(7608), 1, + anon_sym_alias, + ACTIONS(7610), 1, + anon_sym_const, + STATE(3905), 1, + sym_comment, + [117311] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3906), 1, sym_comment, - ACTIONS(1868), 3, + ACTIONS(1947), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(1866), 4, + ACTIONS(1945), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [116259] = 5, + [117329] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7484), 1, + ACTIONS(1812), 1, + sym__unquoted_pattern, + ACTIONS(7612), 1, + anon_sym_DOT, + ACTIONS(7614), 1, aux_sym__immediate_decimal_token5, - STATE(3863), 1, + STATE(3907), 1, sym_comment, - ACTIONS(791), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(793), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [116280] = 7, + ACTIONS(1810), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117351] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2800), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2838), 1, + anon_sym_COLON2, + ACTIONS(7592), 1, + sym_identifier, + ACTIONS(7616), 1, + anon_sym_DOLLAR, + STATE(2849), 1, + sym_val_variable, + STATE(3908), 1, + sym_comment, + STATE(4304), 1, + sym__variable_name, + STATE(4395), 1, + sym__assignment_pattern, + [117379] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7488), 1, - anon_sym_DOT2, - STATE(366), 1, - sym_path, - STATE(3864), 1, + ACTIONS(7514), 1, + anon_sym_LBRACK, + ACTIONS(7516), 1, + anon_sym_LPAREN, + ACTIONS(7518), 1, + anon_sym_DASH_DASH, + STATE(1673), 1, + sym_parameter_bracks, + STATE(1681), 1, + sym_parameter_parens, + STATE(3909), 1, sym_comment, - STATE(4194), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4875), 1, - sym_cell_path, - ACTIONS(7486), 4, - anon_sym_in, + STATE(4354), 1, + aux_sym_decl_def_repeat1, + STATE(4731), 1, + sym_long_flag, + [117407] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2800), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2838), 1, + anon_sym_COLON2, + ACTIONS(7592), 1, sym_identifier, - anon_sym_nu, - anon_sym_env, - [116305] = 7, + ACTIONS(7616), 1, + anon_sym_DOLLAR, + STATE(2849), 1, + sym_val_variable, + STATE(3910), 1, + sym_comment, + STATE(4304), 1, + sym__variable_name, + STATE(4394), 1, + sym__assignment_pattern, + [117435] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5040), 1, + ACTIONS(7514), 1, + anon_sym_LBRACK, + ACTIONS(7516), 1, + anon_sym_LPAREN, + ACTIONS(7518), 1, + anon_sym_DASH_DASH, + STATE(1613), 1, + sym_parameter_parens, + STATE(1661), 1, + sym_parameter_bracks, + STATE(3904), 1, + aux_sym_decl_def_repeat1, + STATE(3911), 1, + sym_comment, + STATE(4731), 1, + sym_long_flag, + [117463] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5405), 1, + sym__entry_separator, + ACTIONS(7542), 1, anon_sym_DOT2, - STATE(472), 1, + STATE(375), 1, sym_path, - STATE(984), 1, - sym_cell_path, - STATE(2335), 1, + STATE(3912), 1, + sym_comment, + STATE(4157), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3865), 1, + STATE(4745), 1, + sym_cell_path, + ACTIONS(5403), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [117489] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(4028), 1, + sym__newline, + ACTIONS(7618), 1, + anon_sym_RBRACK, + STATE(3913), 1, sym_comment, - ACTIONS(7490), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [116330] = 6, + STATE(4322), 1, + aux_sym__types_body_repeat1, + STATE(4789), 1, + sym_val_list, + STATE(4828), 1, + aux_sym__table_body_repeat1, + STATE(5372), 1, + sym__table_body, + [117517] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2124), 1, - sym__unquoted_pattern, - ACTIONS(7492), 1, + ACTIONS(7620), 1, anon_sym_DOT_DOT2, - STATE(3866), 1, + STATE(3914), 1, sym_comment, - ACTIONS(7494), 2, + ACTIONS(7622), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2114), 4, + ACTIONS(2271), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [116353] = 7, + [117537] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5040), 1, - anon_sym_DOT2, - STATE(472), 1, - sym_path, - STATE(2335), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3867), 1, + ACTIONS(7626), 1, + anon_sym_DOT_DOT2, + STATE(3915), 1, sym_comment, - STATE(4624), 1, - sym_cell_path, - ACTIONS(7496), 4, + ACTIONS(7628), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7624), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [116378] = 4, - ACTIONS(105), 1, + [117557] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3868), 1, + ACTIONS(7626), 1, + anon_sym_DOT_DOT2, + STATE(3916), 1, sym_comment, - ACTIONS(1774), 4, - anon_sym_LPAREN2, + ACTIONS(7628), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1776), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [116397] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7385), 1, - aux_sym__immediate_decimal_token5, - STATE(3869), 1, - sym_comment, - ACTIONS(1790), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1788), 5, + ACTIONS(7630), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116418] = 4, + [117577] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(3870), 1, + ACTIONS(7632), 1, + anon_sym_DOT, + ACTIONS(7634), 1, + aux_sym__immediate_decimal_token5, + STATE(3917), 1, sym_comment, - ACTIONS(1774), 4, + ACTIONS(1810), 2, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1776), 4, + ACTIONS(1812), 3, anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [116437] = 4, - ACTIONS(105), 1, + [117599] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3871), 1, + ACTIONS(7636), 1, + anon_sym_DOT_DOT2, + STATE(3918), 1, sym_comment, - ACTIONS(1866), 4, - anon_sym_LPAREN2, + ACTIONS(7638), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1868), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [116456] = 7, - ACTIONS(3), 1, + ACTIONS(2146), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117619] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7500), 1, + ACTIONS(7492), 1, anon_sym_DOT2, - STATE(2596), 1, + STATE(3919), 1, + sym_comment, + STATE(4169), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2912), 1, + STATE(4465), 1, sym_path, - STATE(3185), 1, + STATE(4929), 1, sym_cell_path, - STATE(3872), 1, - sym_comment, - ACTIONS(7498), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [116481] = 6, + ACTIONS(1936), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [117643] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(2109), 1, sym__unquoted_pattern, - ACTIONS(7502), 1, + ACTIONS(7640), 1, anon_sym_DOT_DOT2, - STATE(3873), 1, + STATE(3920), 1, sym_comment, - ACTIONS(7504), 2, + ACTIONS(7642), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2104), 4, - anon_sym_if, + ACTIONS(2099), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [116504] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1474), 1, - sym__entry_separator, - ACTIONS(7506), 1, - anon_sym_QMARK2, - ACTIONS(7508), 1, - anon_sym_BANG, - STATE(3874), 1, - sym_comment, - STATE(4254), 1, - sym__path_suffix, - ACTIONS(1472), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [116529] = 5, - ACTIONS(105), 1, + [117665] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7375), 1, - aux_sym__immediate_decimal_token5, - STATE(3875), 1, - sym_comment, - ACTIONS(1790), 3, - anon_sym_RBRACE, + ACTIONS(7644), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1788), 4, - anon_sym_LPAREN2, + STATE(3921), 1, + sym_comment, + ACTIONS(7646), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [116550] = 4, - ACTIONS(105), 1, + ACTIONS(2251), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117685] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3876), 1, + ACTIONS(7648), 1, + anon_sym_DOT2, + STATE(2305), 1, + sym_cell_path, + STATE(2499), 1, + sym_path, + STATE(3922), 1, + sym_comment, + STATE(3988), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1480), 3, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, + [117709] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7650), 1, + anon_sym_DOT_DOT2, + STATE(3923), 1, sym_comment, - ACTIONS(1921), 4, - anon_sym_LPAREN2, + ACTIONS(7652), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(2314), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117729] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1912), 1, sym__entry_separator, - ACTIONS(1923), 4, + ACTIONS(7542), 1, + anon_sym_DOT2, + STATE(375), 1, + sym_path, + STATE(3924), 1, + sym_comment, + STATE(4157), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4589), 1, + sym_cell_path, + ACTIONS(1915), 2, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [116569] = 5, + [117755] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7510), 1, + ACTIONS(7654), 1, + anon_sym_DOT, + ACTIONS(7656), 1, aux_sym__immediate_decimal_token5, - STATE(3877), 1, + STATE(3925), 1, sym_comment, - ACTIONS(791), 2, + ACTIONS(1812), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(793), 4, + sym__unquoted_pattern, + ACTIONS(1810), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [116589] = 9, - ACTIONS(3), 1, + [117777] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3864), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - sym__newline, - ACTIONS(7512), 1, - anon_sym_RBRACK, - STATE(3878), 1, + ACTIONS(1560), 1, + sym__entry_separator, + ACTIONS(7658), 1, + anon_sym_DOT2, + STATE(4261), 1, + sym_path, + STATE(3926), 2, sym_comment, - STATE(4257), 1, - aux_sym__types_body_repeat1, - STATE(4844), 1, - sym_val_list, - STATE(4864), 1, - aux_sym__table_body_repeat1, - STATE(5288), 1, - sym__table_body, - [116617] = 4, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1558), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + [117799] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3879), 1, + STATE(3927), 1, sym_comment, - ACTIONS(803), 2, + ACTIONS(755), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(805), 5, + ACTIONS(757), 5, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [116635] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7514), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7516), 1, - aux_sym__immediate_decimal_token5, - STATE(3880), 1, - sym_comment, - ACTIONS(1774), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1776), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [116657] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2786), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2834), 1, - anon_sym_COLON2, - ACTIONS(7518), 1, - sym_identifier, - ACTIONS(7520), 1, - anon_sym_DOLLAR, - STATE(2868), 1, - sym_val_variable, - STATE(3881), 1, - sym_comment, - STATE(4347), 1, - sym__variable_name, - STATE(4454), 1, - sym__assignment_pattern, - [116685] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2786), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2834), 1, - anon_sym_COLON2, - ACTIONS(7518), 1, - sym_identifier, - ACTIONS(7520), 1, - anon_sym_DOLLAR, - STATE(2868), 1, - sym_val_variable, - STATE(3882), 1, - sym_comment, - STATE(4347), 1, - sym__variable_name, - STATE(4455), 1, - sym__assignment_pattern, - [116713] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7446), 1, - anon_sym_alias, - ACTIONS(7448), 1, - anon_sym_const, - ACTIONS(7450), 1, - anon_sym_def, - ACTIONS(7452), 1, - anon_sym_use, - ACTIONS(7454), 1, - anon_sym_extern, - ACTIONS(7456), 1, - anon_sym_module, - STATE(3883), 1, - sym_comment, - [116741] = 9, + [117817] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7522), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7524), 1, + ACTIONS(7516), 1, anon_sym_LPAREN, - ACTIONS(7526), 1, + ACTIONS(7518), 1, anon_sym_DASH_DASH, - STATE(1589), 1, - sym_parameter_parens, - STATE(1590), 1, + STATE(1625), 1, sym_parameter_bracks, - STATE(3884), 1, - sym_comment, - STATE(3984), 1, - aux_sym_decl_def_repeat1, - STATE(4887), 1, - sym_long_flag, - [116769] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7522), 1, - anon_sym_LBRACK, - ACTIONS(7524), 1, - anon_sym_LPAREN, - ACTIONS(7526), 1, - anon_sym_DASH_DASH, - STATE(1560), 1, + STATE(1628), 1, sym_parameter_parens, - STATE(1561), 1, - sym_parameter_bracks, - STATE(3885), 1, + STATE(3928), 1, sym_comment, - STATE(3946), 1, + STATE(4354), 1, aux_sym_decl_def_repeat1, - STATE(4887), 1, + STATE(4731), 1, sym_long_flag, - [116797] = 9, + [117845] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(4028), 1, sym__newline, - ACTIONS(7528), 1, + ACTIONS(7661), 1, anon_sym_RBRACK, - STATE(3886), 1, + STATE(3929), 1, sym_comment, - STATE(4257), 1, + STATE(4322), 1, aux_sym__types_body_repeat1, - STATE(4844), 1, + STATE(4789), 1, sym_val_list, - STATE(4864), 1, + STATE(4828), 1, aux_sym__table_body_repeat1, - STATE(5301), 1, + STATE(5313), 1, sym__table_body, - [116825] = 7, + [117873] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7514), 1, + anon_sym_LBRACK, + ACTIONS(7516), 1, + anon_sym_LPAREN, + ACTIONS(7518), 1, + anon_sym_DASH_DASH, + STATE(1663), 1, + sym_parameter_bracks, + STATE(1664), 1, + sym_parameter_parens, + STATE(3928), 1, + aux_sym_decl_def_repeat1, + STATE(3930), 1, + sym_comment, + STATE(4731), 1, + sym_long_flag, + [117901] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7422), 1, + ACTIONS(7492), 1, anon_sym_DOT2, - STATE(3887), 1, + STATE(3931), 1, sym_comment, - STATE(3993), 1, + STATE(4169), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4617), 1, + STATE(4465), 1, sym_path, - STATE(4909), 1, + STATE(4785), 1, sym_cell_path, - ACTIONS(1919), 3, + ACTIONS(1906), 3, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, - [116849] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2986), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7530), 1, - anon_sym_alias, - ACTIONS(7532), 1, - anon_sym_const, - ACTIONS(7534), 1, - anon_sym_def, - ACTIONS(7536), 1, - anon_sym_use, - ACTIONS(7538), 1, - anon_sym_extern, - ACTIONS(7540), 1, - anon_sym_module, - STATE(3888), 1, - sym_comment, - [116877] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(3889), 1, - sym_comment, - ACTIONS(1776), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1774), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [116895] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3864), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - sym__newline, - ACTIONS(7542), 1, - anon_sym_RBRACK, - STATE(3890), 1, - sym_comment, - STATE(4257), 1, - aux_sym__types_body_repeat1, - STATE(4844), 1, - sym_val_list, - STATE(4864), 1, - aux_sym__table_body_repeat1, - STATE(5378), 1, - sym__table_body, - [116923] = 9, + [117925] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(4028), 1, sym__newline, - ACTIONS(7544), 1, + ACTIONS(7663), 1, anon_sym_RBRACK, - STATE(3891), 1, + STATE(3932), 1, sym_comment, - STATE(4257), 1, + STATE(4322), 1, aux_sym__types_body_repeat1, - STATE(4844), 1, + STATE(4789), 1, sym_val_list, - STATE(4864), 1, + STATE(4828), 1, aux_sym__table_body_repeat1, - STATE(5238), 1, + STATE(5359), 1, sym__table_body, - [116951] = 9, + [117953] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7522), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7524), 1, + ACTIONS(7516), 1, anon_sym_LPAREN, - ACTIONS(7526), 1, + ACTIONS(7518), 1, anon_sym_DASH_DASH, - STATE(1558), 1, - sym_parameter_parens, - STATE(1559), 1, + STATE(1667), 1, sym_parameter_bracks, - STATE(3892), 1, + STATE(1670), 1, + sym_parameter_parens, + STATE(3933), 1, sym_comment, - STATE(3952), 1, + STATE(4354), 1, aux_sym_decl_def_repeat1, - STATE(4887), 1, + STATE(4731), 1, sym_long_flag, - [116979] = 9, + [117981] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - sym__newline, - ACTIONS(7546), 1, - anon_sym_RBRACK, - STATE(3893), 1, - sym_comment, - STATE(4257), 1, - aux_sym__types_body_repeat1, - STATE(4844), 1, - sym_val_list, - STATE(4864), 1, - aux_sym__table_body_repeat1, - STATE(5497), 1, - sym__table_body, - [117007] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7422), 1, + ACTIONS(5115), 1, anon_sym_DOT2, - STATE(3894), 1, - sym_comment, - STATE(3993), 1, + STATE(2472), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4617), 1, + STATE(2499), 1, sym_path, - STATE(4837), 1, + STATE(3184), 1, sym_cell_path, - ACTIONS(1903), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [117031] = 8, + STATE(3934), 1, + sym_comment, + ACTIONS(1926), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [118005] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7428), 1, + ACTIONS(1930), 1, sym__entry_separator, - ACTIONS(7430), 1, + ACTIONS(7542), 1, anon_sym_DOT2, - STATE(3895), 1, + STATE(375), 1, + sym_path, + STATE(3935), 1, sym_comment, - STATE(3951), 1, + STATE(4157), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4251), 1, - sym_path, - STATE(4831), 1, + STATE(4574), 1, sym_cell_path, - ACTIONS(7548), 2, + ACTIONS(1932), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [117057] = 9, + anon_sym_RBRACE, + [118031] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - sym__newline, - ACTIONS(7550), 1, - anon_sym_RBRACK, - STATE(3896), 1, + STATE(3936), 1, sym_comment, - STATE(4257), 1, - aux_sym__types_body_repeat1, - STATE(4844), 1, - sym_val_list, - STATE(4864), 1, - aux_sym__table_body_repeat1, - STATE(5102), 1, - sym__table_body, - [117085] = 9, + ACTIONS(1804), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1802), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118049] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7522), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7524), 1, + ACTIONS(7516), 1, anon_sym_LPAREN, - ACTIONS(7526), 1, + ACTIONS(7518), 1, anon_sym_DASH_DASH, - STATE(1678), 1, + STATE(1636), 1, sym_parameter_parens, - STATE(1679), 1, + STATE(1649), 1, sym_parameter_bracks, - STATE(3897), 1, + STATE(3937), 1, sym_comment, - STATE(4245), 1, + STATE(4354), 1, aux_sym_decl_def_repeat1, - STATE(4887), 1, + STATE(4731), 1, sym_long_flag, - [117113] = 8, - ACTIONS(105), 1, + [118077] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1905), 1, - sym__entry_separator, - ACTIONS(7552), 1, - anon_sym_DOT2, - STATE(366), 1, - sym_path, - STATE(3898), 1, + ACTIONS(7665), 1, + aux_sym__immediate_decimal_token5, + STATE(3938), 1, sym_comment, - STATE(4194), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4532), 1, - sym_cell_path, - ACTIONS(1907), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [117139] = 6, + 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, + [118097] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1636), 1, sym__unquoted_pattern, - ACTIONS(7554), 1, + ACTIONS(7667), 1, anon_sym_DOT_DOT2, - STATE(3899), 1, + STATE(3939), 1, sym_comment, - ACTIONS(7556), 2, + ACTIONS(7669), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2104), 3, + ACTIONS(2125), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [117161] = 7, + [118119] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7558), 1, - anon_sym_DOT2, - STATE(2309), 1, - sym_cell_path, - STATE(2485), 1, - sym_path, - STATE(3900), 1, + STATE(3940), 1, sym_comment, - STATE(4183), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1468), 3, - anon_sym_EQ, - sym__newline, - anon_sym_COLON, - [117185] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(914), 1, - sym__entry_separator, - ACTIONS(6629), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7229), 1, + ACTIONS(1876), 2, anon_sym_DOT_DOT2, - ACTIONS(7233), 1, - sym_filesize_unit, - ACTIONS(7235), 1, - sym_duration_unit, - STATE(3901), 1, - sym_comment, - ACTIONS(7231), 2, + sym__unquoted_pattern, + ACTIONS(1874), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [117211] = 8, + [118137] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1909), 1, + ACTIONS(1569), 1, sym__entry_separator, - ACTIONS(7552), 1, + ACTIONS(7405), 1, anon_sym_DOT2, - STATE(366), 1, - sym_path, - STATE(3902), 1, - sym_comment, - STATE(4194), 1, + STATE(3926), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4580), 1, - sym_cell_path, - ACTIONS(1911), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [117237] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(3903), 1, + STATE(3941), 1, sym_comment, - ACTIONS(1913), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1915), 4, + STATE(4261), 1, + sym_path, + ACTIONS(1567), 3, anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_GT2, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [117255] = 8, - ACTIONS(105), 1, + [118161] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2104), 1, - sym__entry_separator, - ACTIONS(2106), 1, - anon_sym_RBRACE, - ACTIONS(2108), 1, - anon_sym_LPAREN2, - ACTIONS(7560), 1, - anon_sym_DOT_DOT2, - STATE(3904), 1, + STATE(3942), 1, sym_comment, - ACTIONS(7562), 2, + ACTIONS(1947), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1945), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [117281] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7430), 1, - anon_sym_DOT2, - ACTIONS(7496), 1, - sym__entry_separator, - STATE(3905), 1, - sym_comment, - STATE(3951), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4251), 1, - sym_path, - STATE(4816), 1, - sym_cell_path, - ACTIONS(7564), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [117307] = 8, + [118179] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1880), 1, + ACTIONS(1894), 1, sym__entry_separator, - ACTIONS(7552), 1, + ACTIONS(7542), 1, anon_sym_DOT2, - STATE(366), 1, + STATE(375), 1, sym_path, - STATE(3906), 1, + STATE(3943), 1, sym_comment, - STATE(4194), 1, + STATE(4157), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4667), 1, + STATE(4571), 1, sym_cell_path, - ACTIONS(1883), 2, + ACTIONS(1896), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [117333] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3907), 1, - sym_comment, - ACTIONS(791), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(793), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [117351] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2124), 1, - sym__unquoted_pattern, - ACTIONS(7566), 1, - anon_sym_DOT_DOT2, - STATE(3908), 1, - sym_comment, - ACTIONS(7568), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2114), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117373] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7570), 1, - anon_sym_DOT, - ACTIONS(7572), 1, - aux_sym__immediate_decimal_token5, - STATE(3909), 1, - sym_comment, - ACTIONS(1790), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1788), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117395] = 9, + [118205] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7522), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7524), 1, + ACTIONS(7516), 1, anon_sym_LPAREN, - ACTIONS(7526), 1, + ACTIONS(7518), 1, anon_sym_DASH_DASH, - STATE(1545), 1, + STATE(1609), 1, sym_parameter_parens, - STATE(1546), 1, + STATE(1610), 1, sym_parameter_bracks, - STATE(3910), 1, + STATE(3944), 1, sym_comment, - STATE(3915), 1, + STATE(4354), 1, aux_sym_decl_def_repeat1, - STATE(4887), 1, + STATE(4731), 1, sym_long_flag, - [117423] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(3911), 1, - sym_comment, - ACTIONS(1872), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1874), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [117441] = 4, + [118233] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3912), 1, + STATE(3945), 1, sym_comment, - ACTIONS(759), 2, + ACTIONS(775), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(761), 5, + ACTIONS(777), 5, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [117459] = 8, + [118251] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2114), 1, - sym__entry_separator, - ACTIONS(2116), 1, - anon_sym_RBRACE, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7574), 1, - anon_sym_DOT_DOT2, - STATE(3913), 1, + STATE(3946), 1, sym_comment, - ACTIONS(7576), 2, + ACTIONS(1900), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [117485] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1776), 1, - sym__unquoted_pattern, - ACTIONS(7578), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7580), 1, - aux_sym__immediate_decimal_token5, - STATE(3914), 1, - sym_comment, - ACTIONS(1774), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117507] = 9, + sym__entry_separator, + ACTIONS(1902), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [118269] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7522), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7524), 1, + ACTIONS(7516), 1, anon_sym_LPAREN, - ACTIONS(7526), 1, + ACTIONS(7518), 1, anon_sym_DASH_DASH, - STATE(1572), 1, + STATE(1547), 1, sym_parameter_parens, - STATE(1577), 1, + STATE(1548), 1, sym_parameter_bracks, - STATE(3915), 1, + STATE(3947), 1, sym_comment, - STATE(4245), 1, + STATE(3949), 1, aux_sym_decl_def_repeat1, - STATE(4887), 1, + STATE(4731), 1, sym_long_flag, - [117535] = 7, + [118297] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(7582), 1, - anon_sym_DOT, - STATE(3916), 1, + ACTIONS(7514), 1, + anon_sym_LBRACK, + ACTIONS(7516), 1, + anon_sym_LPAREN, + ACTIONS(7518), 1, + anon_sym_DASH_DASH, + STATE(1550), 1, + sym_parameter_bracks, + STATE(1551), 1, + sym_parameter_parens, + STATE(3909), 1, + aux_sym_decl_def_repeat1, + STATE(3948), 1, sym_comment, - STATE(4546), 1, - sym__immediate_decimal, - ACTIONS(6805), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6807), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [117559] = 9, + STATE(4731), 1, + sym_long_flag, + [118325] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7522), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7524), 1, + ACTIONS(7516), 1, anon_sym_LPAREN, - ACTIONS(7526), 1, + ACTIONS(7518), 1, anon_sym_DASH_DASH, - STATE(1548), 1, - sym_parameter_parens, - STATE(1549), 1, + STATE(1552), 1, sym_parameter_bracks, - STATE(3917), 1, + STATE(1553), 1, + sym_parameter_parens, + STATE(3949), 1, sym_comment, - STATE(3921), 1, + STATE(4354), 1, aux_sym_decl_def_repeat1, - STATE(4887), 1, + STATE(4731), 1, sym_long_flag, - [117587] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2114), 1, - sym__entry_separator, - ACTIONS(2116), 1, - anon_sym_RBRACK, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7584), 1, - anon_sym_DOT_DOT2, - STATE(3918), 1, - sym_comment, - ACTIONS(7586), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117613] = 9, + [118353] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(4028), 1, sym__newline, - ACTIONS(7588), 1, + ACTIONS(7671), 1, anon_sym_RBRACK, - STATE(3919), 1, + STATE(3950), 1, sym_comment, - STATE(4257), 1, + STATE(4322), 1, aux_sym__types_body_repeat1, - STATE(4844), 1, + STATE(4789), 1, sym_val_list, - STATE(4864), 1, + STATE(4828), 1, aux_sym__table_body_repeat1, - STATE(5251), 1, + STATE(5265), 1, sym__table_body, - [117641] = 9, + [118381] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7522), 1, - anon_sym_LBRACK, - ACTIONS(7524), 1, - anon_sym_LPAREN, - ACTIONS(7526), 1, - anon_sym_DASH_DASH, - STATE(1552), 1, - sym_parameter_parens, - STATE(1553), 1, - sym_parameter_bracks, - STATE(3920), 1, + ACTIONS(5115), 1, + anon_sym_DOT2, + STATE(2472), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2499), 1, + sym_path, + STATE(3164), 1, + sym_cell_path, + STATE(3951), 1, sym_comment, - STATE(3924), 1, - aux_sym_decl_def_repeat1, - STATE(4887), 1, - sym_long_flag, - [117669] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7522), 1, + ACTIONS(1930), 3, anon_sym_LBRACK, - ACTIONS(7524), 1, anon_sym_LPAREN, - ACTIONS(7526), 1, anon_sym_DASH_DASH, - STATE(1554), 1, - sym_parameter_parens, - STATE(1555), 1, - sym_parameter_bracks, - STATE(3921), 1, - sym_comment, - STATE(4245), 1, - aux_sym_decl_def_repeat1, - STATE(4887), 1, - sym_long_flag, - [117697] = 9, - ACTIONS(3), 1, + [118405] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7522), 1, - anon_sym_LBRACK, - ACTIONS(7524), 1, - anon_sym_LPAREN, - ACTIONS(7526), 1, - anon_sym_DASH_DASH, - STATE(1556), 1, - sym_parameter_parens, - STATE(1557), 1, - sym_parameter_bracks, - STATE(3922), 1, + ACTIONS(7673), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7675), 1, + aux_sym__immediate_decimal_token5, + STATE(3952), 1, sym_comment, - STATE(3926), 1, - aux_sym_decl_def_repeat1, - STATE(4887), 1, - sym_long_flag, - [117725] = 9, + ACTIONS(1802), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1804), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [118427] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7417), 1, - anon_sym_RBRACK, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DOT2, - ACTIONS(7590), 1, + ACTIONS(1926), 1, sym__entry_separator, - STATE(366), 1, + ACTIONS(7542), 1, + anon_sym_DOT2, + STATE(375), 1, sym_path, - STATE(3923), 1, + STATE(3953), 1, sym_comment, - STATE(4194), 1, + STATE(4157), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4528), 1, + STATE(4553), 1, sym_cell_path, - [117753] = 9, + ACTIONS(1928), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [118453] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7522), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7524), 1, + ACTIONS(7516), 1, anon_sym_LPAREN, - ACTIONS(7526), 1, + ACTIONS(7518), 1, anon_sym_DASH_DASH, - STATE(1562), 1, + STATE(1607), 1, sym_parameter_parens, - STATE(1563), 1, + STATE(1608), 1, sym_parameter_bracks, - STATE(3924), 1, - sym_comment, - STATE(4245), 1, + STATE(3933), 1, aux_sym_decl_def_repeat1, - STATE(4887), 1, + STATE(3954), 1, + sym_comment, + STATE(4731), 1, sym_long_flag, - [117781] = 9, + [118481] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7522), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(7524), 1, - anon_sym_LPAREN, - ACTIONS(7526), 1, - anon_sym_DASH_DASH, - STATE(1564), 1, - sym_parameter_parens, - STATE(1565), 1, - sym_parameter_bracks, - STATE(3925), 1, + ACTIONS(4028), 1, + sym__newline, + ACTIONS(7677), 1, + anon_sym_RBRACK, + STATE(3955), 1, sym_comment, - STATE(3931), 1, - aux_sym_decl_def_repeat1, - STATE(4887), 1, - sym_long_flag, - [117809] = 9, + STATE(4322), 1, + aux_sym__types_body_repeat1, + STATE(4789), 1, + sym_val_list, + STATE(4828), 1, + aux_sym__table_body_repeat1, + STATE(5209), 1, + sym__table_body, + [118509] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7522), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7524), 1, + ACTIONS(7516), 1, anon_sym_LPAREN, - ACTIONS(7526), 1, + ACTIONS(7518), 1, anon_sym_DASH_DASH, - STATE(1566), 1, - sym_parameter_parens, - STATE(1567), 1, + STATE(1559), 1, sym_parameter_bracks, - STATE(3926), 1, + STATE(1650), 1, + sym_parameter_parens, + STATE(3956), 1, sym_comment, - STATE(4245), 1, + STATE(4354), 1, aux_sym_decl_def_repeat1, - STATE(4887), 1, + STATE(4731), 1, sym_long_flag, - [117837] = 8, + [118537] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(914), 1, - anon_sym_LBRACE, - ACTIONS(1806), 1, - sym__unquoted_pattern, - ACTIONS(7593), 1, - anon_sym_DOT_DOT2, - ACTIONS(7597), 1, - sym_filesize_unit, - ACTIONS(7599), 1, - sym_duration_unit, - STATE(3927), 1, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(4028), 1, + sym__newline, + ACTIONS(7679), 1, + anon_sym_RBRACK, + STATE(3957), 1, + sym_comment, + STATE(4322), 1, + aux_sym__types_body_repeat1, + STATE(4789), 1, + sym_val_list, + STATE(4828), 1, + aux_sym__table_body_repeat1, + STATE(5344), 1, + sym__table_body, + [118565] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7467), 1, + aux_sym__immediate_decimal_token5, + STATE(3958), 1, sym_comment, - ACTIONS(7595), 2, + ACTIONS(763), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(765), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [117863] = 9, + sym_filesize_unit, + sym_duration_unit, + [118585] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7522), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7524), 1, + ACTIONS(7516), 1, anon_sym_LPAREN, - ACTIONS(7526), 1, + ACTIONS(7518), 1, anon_sym_DASH_DASH, - STATE(1573), 1, + STATE(1597), 1, sym_parameter_parens, - STATE(1574), 1, + STATE(1598), 1, sym_parameter_bracks, - STATE(3928), 1, + STATE(3959), 1, sym_comment, - STATE(3985), 1, + STATE(4354), 1, aux_sym_decl_def_repeat1, - STATE(4887), 1, + STATE(4731), 1, sym_long_flag, - [117891] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7450), 1, - anon_sym_def, - ACTIONS(7452), 1, - anon_sym_use, - ACTIONS(7454), 1, - anon_sym_extern, - ACTIONS(7456), 1, - anon_sym_module, - ACTIONS(7601), 1, - anon_sym_alias, - ACTIONS(7603), 1, - anon_sym_const, - STATE(3929), 1, - sym_comment, - [117919] = 7, + [118613] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5112), 1, + ACTIONS(5115), 1, anon_sym_DOT2, - STATE(2469), 1, + STATE(2472), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2485), 1, + STATE(2499), 1, sym_path, - STATE(3005), 1, + STATE(3014), 1, sym_cell_path, - STATE(3930), 1, + STATE(3960), 1, sym_comment, - ACTIONS(1880), 3, + ACTIONS(1912), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [117943] = 9, + [118637] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(3961), 1, + sym_comment, + ACTIONS(1908), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1910), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [118655] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7522), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7524), 1, + ACTIONS(7516), 1, anon_sym_LPAREN, - ACTIONS(7526), 1, + ACTIONS(7518), 1, anon_sym_DASH_DASH, - STATE(1575), 1, - sym_parameter_parens, - STATE(1576), 1, + STATE(1589), 1, sym_parameter_bracks, - STATE(3931), 1, - sym_comment, - STATE(4245), 1, + STATE(1591), 1, + sym_parameter_parens, + STATE(3944), 1, aux_sym_decl_def_repeat1, - STATE(4887), 1, + STATE(3962), 1, + sym_comment, + STATE(4731), 1, sym_long_flag, - [117971] = 4, - ACTIONS(3), 1, + [118683] = 9, + ACTIONS(105), 1, anon_sym_POUND, - STATE(3932), 1, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7502), 1, + anon_sym_def, + ACTIONS(7504), 1, + anon_sym_use, + ACTIONS(7506), 1, + anon_sym_extern, + ACTIONS(7508), 1, + anon_sym_module, + ACTIONS(7681), 1, + anon_sym_alias, + ACTIONS(7683), 1, + anon_sym_const, + STATE(3963), 1, sym_comment, - ACTIONS(1776), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1774), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117989] = 9, + [118711] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(4028), 1, sym__newline, - ACTIONS(7605), 1, + ACTIONS(7685), 1, anon_sym_RBRACK, - STATE(3933), 1, + STATE(3964), 1, sym_comment, - STATE(4257), 1, + STATE(4322), 1, aux_sym__types_body_repeat1, - STATE(4844), 1, + STATE(4789), 1, sym_val_list, - STATE(4864), 1, + STATE(4828), 1, aux_sym__table_body_repeat1, - STATE(5218), 1, + STATE(5107), 1, sym__table_body, - [118017] = 9, + [118739] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7522), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7524), 1, + ACTIONS(7516), 1, anon_sym_LPAREN, - ACTIONS(7526), 1, + ACTIONS(7518), 1, anon_sym_DASH_DASH, - STATE(1580), 1, - sym_parameter_parens, - STATE(1581), 1, + STATE(1592), 1, sym_parameter_bracks, - STATE(3934), 1, + STATE(1593), 1, + sym_parameter_parens, + STATE(3965), 1, sym_comment, - STATE(3935), 1, + STATE(4354), 1, aux_sym_decl_def_repeat1, - STATE(4887), 1, + STATE(4731), 1, sym_long_flag, - [118045] = 9, + [118767] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7522), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7524), 1, + ACTIONS(7516), 1, anon_sym_LPAREN, - ACTIONS(7526), 1, - anon_sym_DASH_DASH, - STATE(1582), 1, - sym_parameter_parens, - STATE(1583), 1, - sym_parameter_bracks, - STATE(3935), 1, - sym_comment, - STATE(4245), 1, - aux_sym_decl_def_repeat1, - STATE(4887), 1, - sym_long_flag, - [118073] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(3936), 1, - sym_comment, - ACTIONS(1868), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1866), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [118091] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7607), 1, - anon_sym_DOT_DOT2, - STATE(3937), 1, - sym_comment, - ACTIONS(7609), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118111] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5405), 1, - sym__entry_separator, - ACTIONS(7552), 1, - anon_sym_DOT2, - STATE(366), 1, - sym_path, - STATE(3938), 1, - sym_comment, - STATE(4194), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4709), 1, - sym_cell_path, - ACTIONS(5403), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [118137] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5421), 1, - sym__entry_separator, - ACTIONS(7552), 1, - anon_sym_DOT2, - STATE(366), 1, - sym_path, - STATE(3939), 1, - sym_comment, - STATE(4194), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4766), 1, - sym_cell_path, - ACTIONS(5419), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [118163] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7611), 1, - anon_sym_DOT_DOT2, - STATE(3940), 1, - sym_comment, - ACTIONS(7613), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2166), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118183] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7615), 1, - anon_sym_DOT_DOT2, - STATE(3941), 1, - sym_comment, - ACTIONS(7617), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2174), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118203] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7619), 1, - anon_sym_DOT_DOT2, - STATE(3942), 1, + ACTIONS(7518), 1, + anon_sym_DASH_DASH, + STATE(1601), 1, + sym_parameter_parens, + STATE(1605), 1, + sym_parameter_bracks, + STATE(3937), 1, + aux_sym_decl_def_repeat1, + STATE(3966), 1, sym_comment, - ACTIONS(7621), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2186), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118223] = 5, + STATE(4731), 1, + sym_long_flag, + [118795] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7460), 1, - aux_sym__immediate_decimal_token5, - STATE(3943), 1, + STATE(3967), 1, sym_comment, - ACTIONS(751), 2, + ACTIONS(801), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(753), 4, + sym__unquoted_pattern, + ACTIONS(803), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [118243] = 7, + [118813] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7623), 1, - anon_sym_DOT, - STATE(3944), 1, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(4028), 1, + sym__newline, + ACTIONS(7687), 1, + anon_sym_RBRACK, + STATE(3968), 1, sym_comment, - STATE(4435), 1, - sym__immediate_decimal, - ACTIONS(7625), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7627), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [118267] = 9, + STATE(4322), 1, + aux_sym__types_body_repeat1, + STATE(4789), 1, + sym_val_list, + STATE(4828), 1, + aux_sym__table_body_repeat1, + STATE(5124), 1, + sym__table_body, + [118841] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7522), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7524), 1, + ACTIONS(7516), 1, anon_sym_LPAREN, - ACTIONS(7526), 1, + ACTIONS(7518), 1, anon_sym_DASH_DASH, - STATE(1591), 1, + STATE(1602), 1, sym_parameter_parens, - STATE(1593), 1, + STATE(1603), 1, sym_parameter_bracks, - STATE(3945), 1, - sym_comment, - STATE(4245), 1, + STATE(3959), 1, aux_sym_decl_def_repeat1, - STATE(4887), 1, + STATE(3969), 1, + sym_comment, + STATE(4731), 1, sym_long_flag, - [118295] = 9, + [118869] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7522), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7524), 1, + ACTIONS(7516), 1, anon_sym_LPAREN, - ACTIONS(7526), 1, + ACTIONS(7518), 1, anon_sym_DASH_DASH, - STATE(1585), 1, - sym_parameter_parens, - STATE(1586), 1, + STATE(1638), 1, sym_parameter_bracks, - STATE(3946), 1, - sym_comment, - STATE(4245), 1, + STATE(1639), 1, + sym_parameter_parens, + STATE(3956), 1, aux_sym_decl_def_repeat1, - STATE(4887), 1, - sym_long_flag, - [118323] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3947), 1, + STATE(3970), 1, sym_comment, - ACTIONS(1868), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1866), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [118341] = 7, + STATE(4731), 1, + sym_long_flag, + [118897] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5112), 1, - anon_sym_DOT2, - STATE(2469), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2485), 1, - sym_path, - STATE(3205), 1, - sym_cell_path, - STATE(3948), 1, - sym_comment, - ACTIONS(1905), 3, + ACTIONS(7514), 1, anon_sym_LBRACK, + ACTIONS(7516), 1, anon_sym_LPAREN, + ACTIONS(7518), 1, anon_sym_DASH_DASH, - [118365] = 4, + STATE(1640), 1, + sym_parameter_bracks, + STATE(1646), 1, + sym_parameter_parens, + STATE(3971), 1, + sym_comment, + STATE(4354), 1, + aux_sym_decl_def_repeat1, + STATE(4731), 1, + sym_long_flag, + [118925] = 9, ACTIONS(105), 1, anon_sym_POUND, - STATE(3949), 1, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7498), 1, + anon_sym_alias, + ACTIONS(7500), 1, + anon_sym_const, + ACTIONS(7502), 1, + anon_sym_def, + ACTIONS(7504), 1, + anon_sym_use, + ACTIONS(7506), 1, + anon_sym_extern, + ACTIONS(7508), 1, + anon_sym_module, + STATE(3972), 1, sym_comment, - ACTIONS(1923), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1921), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + [118953] = 9, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7483), 1, + anon_sym_DOT_DOT, + ACTIONS(7489), 1, + anon_sym_RBRACK, + ACTIONS(7542), 1, + anon_sym_DOT2, + ACTIONS(7689), 1, sym__entry_separator, - [118383] = 4, + STATE(375), 1, + sym_path, + STATE(3973), 1, + sym_comment, + STATE(4157), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4502), 1, + sym_cell_path, + [118981] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3950), 1, - sym_comment, - ACTIONS(1923), 2, - anon_sym_DOT_DOT2, + ACTIONS(910), 1, + anon_sym_LBRACE, + ACTIONS(1840), 1, sym__unquoted_pattern, - ACTIONS(1921), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(7692), 1, + anon_sym_DOT_DOT2, + ACTIONS(7696), 1, + sym_filesize_unit, + ACTIONS(7698), 1, + sym_duration_unit, + STATE(3974), 1, + sym_comment, + ACTIONS(7694), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [118401] = 7, + [119007] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1579), 1, - sym__entry_separator, - ACTIONS(7430), 1, - anon_sym_DOT2, - STATE(3951), 1, + ACTIONS(7700), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7702), 1, + aux_sym__immediate_decimal_token5, + STATE(3975), 1, sym_comment, - STATE(3957), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4251), 1, - sym_path, - ACTIONS(1577), 3, + ACTIONS(1802), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1804), 3, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_DOT_DOT, - [118425] = 9, + sym__unquoted_pattern_in_list, + [119029] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7522), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7524), 1, + ACTIONS(7516), 1, anon_sym_LPAREN, - ACTIONS(7526), 1, + ACTIONS(7518), 1, anon_sym_DASH_DASH, - STATE(1568), 1, + STATE(1645), 1, sym_parameter_parens, - STATE(1569), 1, + STATE(1658), 1, sym_parameter_bracks, - STATE(3952), 1, - sym_comment, - STATE(4245), 1, + STATE(3965), 1, aux_sym_decl_def_repeat1, - STATE(4887), 1, + STATE(3976), 1, + sym_comment, + STATE(4731), 1, sym_long_flag, - [118453] = 8, + [119057] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(7704), 1, + anon_sym_DOT, + STATE(3977), 1, + sym_comment, + STATE(4594), 1, + sym__immediate_decimal, + ACTIONS(6889), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6891), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [119081] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1917), 1, + ACTIONS(5433), 1, sym__entry_separator, - ACTIONS(7552), 1, + ACTIONS(7542), 1, anon_sym_DOT2, - STATE(366), 1, + STATE(375), 1, sym_path, - STATE(3953), 1, + STATE(3978), 1, sym_comment, - STATE(4194), 1, + STATE(4157), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4528), 1, + STATE(4857), 1, sym_cell_path, - ACTIONS(1919), 2, + ACTIONS(5431), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [118479] = 8, + [119107] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1468), 1, + ACTIONS(1934), 1, sym__entry_separator, - ACTIONS(7552), 1, + ACTIONS(7542), 1, anon_sym_DOT2, - STATE(366), 1, + STATE(375), 1, sym_path, - STATE(383), 1, - sym_cell_path, - STATE(3954), 1, + STATE(3979), 1, sym_comment, - STATE(4194), 1, + STATE(4157), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1466), 2, + STATE(4502), 1, + sym_cell_path, + ACTIONS(1936), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [118505] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3864), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - sym__newline, - ACTIONS(7629), 1, - anon_sym_RBRACK, - STATE(3955), 1, - sym_comment, - STATE(4257), 1, - aux_sym__types_body_repeat1, - STATE(4844), 1, - sym_val_list, - STATE(4864), 1, - aux_sym__table_body_repeat1, - STATE(5393), 1, - sym__table_body, - [118533] = 8, + [119133] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1905), 1, + ACTIONS(5417), 1, sym__entry_separator, - ACTIONS(7430), 1, + ACTIONS(7542), 1, anon_sym_DOT2, - STATE(3951), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3956), 1, - sym_comment, - STATE(4251), 1, + STATE(375), 1, sym_path, - STATE(4532), 1, + STATE(3980), 1, + sym_comment, + STATE(4157), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4861), 1, sym_cell_path, - ACTIONS(1907), 2, + ACTIONS(5415), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [118559] = 6, + anon_sym_RBRACE, + [119159] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1492), 1, + ACTIONS(1904), 1, sym__entry_separator, - ACTIONS(7631), 1, + ACTIONS(7542), 1, anon_sym_DOT2, - STATE(4251), 1, + STATE(375), 1, sym_path, - STATE(3957), 2, + STATE(3981), 1, sym_comment, + STATE(4157), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1490), 3, + STATE(4498), 1, + sym_cell_path, + ACTIONS(1906), 2, anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [118581] = 9, - ACTIONS(3), 1, + anon_sym_RBRACE, + [119185] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7522), 1, - anon_sym_LBRACK, - ACTIONS(7524), 1, - anon_sym_LPAREN, - ACTIONS(7526), 1, - anon_sym_DASH_DASH, - STATE(1570), 1, - sym_parameter_parens, - STATE(1571), 1, - sym_parameter_bracks, - STATE(3945), 1, - aux_sym_decl_def_repeat1, - STATE(3958), 1, + STATE(3982), 1, sym_comment, - STATE(4887), 1, - sym_long_flag, - [118609] = 9, + ACTIONS(1667), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1669), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [119203] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(4028), 1, sym__newline, - ACTIONS(7634), 1, + ACTIONS(7706), 1, anon_sym_RBRACK, - STATE(3959), 1, + STATE(3983), 1, sym_comment, - STATE(4257), 1, + STATE(4322), 1, aux_sym__types_body_repeat1, - STATE(4844), 1, + STATE(4789), 1, sym_val_list, - STATE(4864), 1, + STATE(4828), 1, aux_sym__table_body_repeat1, - STATE(5356), 1, + STATE(5254), 1, sym__table_body, - [118637] = 8, + [119231] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1925), 1, - sym__entry_separator, - ACTIONS(7430), 1, - anon_sym_DOT2, - STATE(3951), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3960), 1, + STATE(3984), 1, sym_comment, - STATE(4251), 1, - sym_path, - STATE(4372), 1, - sym_cell_path, - ACTIONS(1927), 2, + ACTIONS(1856), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1858), 4, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT, - [118663] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7638), 1, anon_sym_DOT_DOT2, - STATE(3961), 1, - sym_comment, - ACTIONS(7640), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7636), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118683] = 9, + [119249] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, - sym__newline, - ACTIONS(7642), 1, - anon_sym_RBRACK, - STATE(3962), 1, + ACTIONS(7516), 1, + anon_sym_LPAREN, + ACTIONS(7518), 1, + anon_sym_DASH_DASH, + STATE(1588), 1, + sym_parameter_bracks, + STATE(1604), 1, + sym_parameter_parens, + STATE(3971), 1, + aux_sym_decl_def_repeat1, + STATE(3985), 1, sym_comment, - STATE(4257), 1, - aux_sym__types_body_repeat1, - STATE(4844), 1, - sym_val_list, - STATE(4864), 1, - aux_sym__table_body_repeat1, - STATE(5351), 1, - sym__table_body, - [118711] = 6, - ACTIONS(3), 1, + STATE(4731), 1, + sym_long_flag, + [119277] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1790), 1, - sym__unquoted_pattern, - ACTIONS(7644), 1, - anon_sym_DOT, - ACTIONS(7646), 1, - aux_sym__immediate_decimal_token5, - STATE(3963), 1, + ACTIONS(7708), 1, + anon_sym_LPAREN, + ACTIONS(7712), 1, + anon_sym_DQUOTE2, + STATE(3986), 1, sym_comment, - ACTIONS(1788), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118733] = 6, - ACTIONS(105), 1, + STATE(4107), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4482), 1, + sym_expr_interpolated, + ACTIONS(7710), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [119300] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7648), 1, - anon_sym_DOT, - ACTIONS(7650), 1, - aux_sym__immediate_decimal_token5, - STATE(3964), 1, + ACTIONS(471), 1, + anon_sym_RPAREN, + ACTIONS(7714), 1, + sym__newline, + ACTIONS(7716), 1, + anon_sym_SEMI, + STATE(1376), 1, + aux_sym__parenthesized_body_repeat1, + STATE(3987), 1, sym_comment, - ACTIONS(1788), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1790), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [118755] = 8, - ACTIONS(105), 1, + STATE(4564), 1, + aux_sym__block_body_repeat1, + STATE(4701), 1, + aux_sym__repeat_newline, + [119325] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5409), 1, - sym__entry_separator, - ACTIONS(7552), 1, + ACTIONS(7648), 1, anon_sym_DOT2, - STATE(366), 1, + STATE(2499), 1, sym_path, - STATE(3965), 1, + STATE(3988), 1, sym_comment, - STATE(4194), 1, + STATE(4021), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4734), 1, - sym_cell_path, - ACTIONS(5407), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [118781] = 5, + ACTIONS(1569), 3, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, + [119346] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7638), 1, - anon_sym_DOT_DOT2, - STATE(3966), 1, + ACTIONS(7656), 1, + aux_sym__immediate_decimal_token5, + STATE(3989), 1, sym_comment, - ACTIONS(7640), 2, + ACTIONS(1812), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1810), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7652), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118801] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7654), 1, - anon_sym_QMARK2, - ACTIONS(7656), 1, - anon_sym_BANG, - STATE(3967), 1, - sym_comment, - STATE(4650), 1, - sym__path_suffix, - ACTIONS(1472), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [118823] = 7, + [119365] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5112), 1, - anon_sym_DOT2, - STATE(2469), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2485), 1, - sym_path, - STATE(3210), 1, - sym_cell_path, - STATE(3968), 1, + ACTIONS(7718), 1, + sym_long_flag_identifier, + ACTIONS(7720), 1, + anon_sym_EQ2, + STATE(3990), 1, sym_comment, - ACTIONS(1925), 3, + STATE(4720), 1, + sym__flag_equals_value, + ACTIONS(4321), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [118847] = 6, - ACTIONS(105), 1, + [119386] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7658), 1, - anon_sym_DOT, - ACTIONS(7660), 1, - aux_sym__immediate_decimal_token5, - STATE(3969), 1, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(3991), 1, sym_comment, - ACTIONS(1788), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1790), 3, + STATE(4415), 1, + sym_block, + ACTIONS(7722), 4, sym__newline, anon_sym_SEMI, - sym__unquoted_pattern, - [118869] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1925), 1, - sym__entry_separator, - ACTIONS(7552), 1, - anon_sym_DOT2, - STATE(366), 1, - sym_path, - STATE(3970), 1, - sym_comment, - STATE(4194), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4372), 1, - sym_cell_path, - ACTIONS(1927), 2, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_RBRACE, - [118895] = 8, + [119405] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1901), 1, + ACTIONS(1736), 1, sym__entry_separator, - ACTIONS(7552), 1, - anon_sym_DOT2, - STATE(366), 1, - sym_path, - STATE(3971), 1, + ACTIONS(7724), 1, + anon_sym_DOT_DOT2, + STATE(3992), 1, sym_comment, - STATE(4194), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4631), 1, - sym_cell_path, - ACTIONS(1903), 2, + ACTIONS(1610), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [118921] = 9, - ACTIONS(3), 1, + ACTIONS(7726), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119426] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7522), 1, - anon_sym_LBRACK, - ACTIONS(7524), 1, - anon_sym_LPAREN, - ACTIONS(7526), 1, - anon_sym_DASH_DASH, - STATE(1587), 1, - sym_parameter_parens, - STATE(1588), 1, - sym_parameter_bracks, - STATE(3897), 1, - aux_sym_decl_def_repeat1, - STATE(3972), 1, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7592), 1, + sym_identifier, + ACTIONS(7594), 1, + anon_sym_DOLLAR, + STATE(2731), 1, + sym__variable_name, + STATE(2849), 1, + sym_val_variable, + STATE(3993), 1, sym_comment, - STATE(4887), 1, - sym_long_flag, - [118949] = 6, - ACTIONS(3), 1, + STATE(4396), 1, + sym__assignment_pattern, + [119451] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7662), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7664), 1, - aux_sym__immediate_decimal_token5, - STATE(3973), 1, - sym_comment, - ACTIONS(1776), 2, + ACTIONS(2271), 1, + sym__space, + ACTIONS(7728), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1774), 3, - anon_sym_LBRACE, + STATE(3994), 1, + sym_comment, + ACTIONS(2273), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7730), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [118971] = 4, + [119472] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(3974), 1, + ACTIONS(2146), 1, + sym__space, + ACTIONS(7732), 1, + anon_sym_DOT_DOT2, + STATE(3995), 1, sym_comment, - ACTIONS(1669), 3, + ACTIONS(2148), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7734), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1671), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [118989] = 4, + [119493] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(3975), 1, + ACTIONS(2251), 1, + sym__space, + ACTIONS(7736), 1, + anon_sym_DOT_DOT2, + STATE(3996), 1, sym_comment, - ACTIONS(1933), 3, + ACTIONS(2253), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7738), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1935), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [119007] = 9, - ACTIONS(105), 1, + [119514] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7450), 1, - anon_sym_def, - ACTIONS(7452), 1, - anon_sym_use, - ACTIONS(7454), 1, - anon_sym_extern, - ACTIONS(7456), 1, - anon_sym_module, - ACTIONS(7666), 1, - anon_sym_alias, - ACTIONS(7668), 1, - anon_sym_const, - STATE(3976), 1, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(7740), 1, + anon_sym_LBRACE, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3573), 1, + sym__blosure, + STATE(3997), 1, sym_comment, - [119035] = 6, - ACTIONS(105), 1, + STATE(3221), 2, + sym_block, + sym_val_closure, + [119537] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7670), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7672), 1, + ACTIONS(1876), 1, + sym__unquoted_pattern, + ACTIONS(7742), 1, aux_sym__immediate_decimal_token5, - STATE(3977), 1, + STATE(3998), 1, sym_comment, - ACTIONS(1774), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1776), 3, + ACTIONS(1874), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [119057] = 9, + anon_sym_PIPE, + anon_sym_EQ_GT, + [119556] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7430), 1, - anon_sym_DOT2, - ACTIONS(7564), 1, - anon_sym_DOT_DOT, - ACTIONS(7674), 1, - anon_sym_RBRACK, - ACTIONS(7678), 1, + ACTIONS(7744), 1, + anon_sym_DOT, + ACTIONS(7746), 1, + aux_sym__immediate_decimal_token5, + STATE(3999), 1, + sym_comment, + ACTIONS(1810), 2, + anon_sym_LPAREN2, sym__entry_separator, - STATE(3951), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3978), 1, + ACTIONS(1812), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [119577] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(7740), 1, + anon_sym_LBRACE, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3570), 1, + sym__blosure, + STATE(4000), 1, sym_comment, - STATE(4251), 1, - sym_path, - STATE(4747), 1, - sym_cell_path, - [119085] = 9, - ACTIONS(105), 1, + STATE(3221), 2, + sym_block, + sym_val_closure, + [119600] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7450), 1, - anon_sym_def, - ACTIONS(7452), 1, - anon_sym_use, - ACTIONS(7454), 1, - anon_sym_extern, - ACTIONS(7456), 1, - anon_sym_module, - ACTIONS(7682), 1, - anon_sym_alias, - ACTIONS(7684), 1, - anon_sym_const, - STATE(3979), 1, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(7740), 1, + anon_sym_LBRACE, + STATE(3569), 1, + sym__blosure, + STATE(3997), 1, + aux_sym__repeat_newline, + STATE(4001), 1, sym_comment, - [119113] = 9, - ACTIONS(105), 1, + STATE(3221), 2, + sym_block, + sym_val_closure, + [119623] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7450), 1, - anon_sym_def, - ACTIONS(7452), 1, - anon_sym_use, - ACTIONS(7454), 1, - anon_sym_extern, - ACTIONS(7456), 1, - anon_sym_module, - ACTIONS(7686), 1, - anon_sym_alias, - ACTIONS(7688), 1, - anon_sym_const, - STATE(3980), 1, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(7740), 1, + anon_sym_LBRACE, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3569), 1, + sym__blosure, + STATE(4002), 1, sym_comment, - [119141] = 8, + STATE(3221), 2, + sym_block, + sym_val_closure, + [119646] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2104), 1, - sym__entry_separator, - ACTIONS(2106), 1, - anon_sym_RBRACK, - ACTIONS(2108), 1, - anon_sym_LPAREN2, - ACTIONS(7690), 1, + ACTIONS(2314), 1, + sym__space, + ACTIONS(7748), 1, anon_sym_DOT_DOT2, - STATE(3981), 1, + STATE(4003), 1, sym_comment, - ACTIONS(7692), 2, + ACTIONS(2316), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7750), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [119167] = 8, + [119667] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1636), 1, + sym__unquoted_pattern_in_record, + STATE(4004), 1, + sym_comment, + STATE(5364), 1, + sym__immediate_decimal, + ACTIONS(7752), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7754), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [119688] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(811), 1, - anon_sym_RBRACE, - ACTIONS(914), 1, - sym__entry_separator, - ACTIONS(7694), 1, + ACTIONS(1736), 1, + sym__space, + ACTIONS(7756), 1, anon_sym_DOT_DOT2, - ACTIONS(7698), 1, - sym_filesize_unit, - ACTIONS(7700), 1, - sym_duration_unit, - STATE(3982), 1, + STATE(4005), 1, sym_comment, - ACTIONS(7696), 2, + ACTIONS(1610), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7758), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [119193] = 9, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2786), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2834), 1, - anon_sym_COLON2, - ACTIONS(7518), 1, - sym_identifier, - ACTIONS(7702), 1, - anon_sym_DOLLAR, - STATE(2820), 1, - sym__variable_name, - STATE(2868), 1, - sym_val_variable, - STATE(3983), 1, - sym_comment, - STATE(4438), 1, - sym__assignment_pattern, - [119221] = 9, + [119709] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7522), 1, - anon_sym_LBRACK, - ACTIONS(7524), 1, - anon_sym_LPAREN, - ACTIONS(7526), 1, - anon_sym_DASH_DASH, - STATE(1543), 1, - sym_parameter_parens, - STATE(1544), 1, - sym_parameter_bracks, - STATE(3984), 1, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(7740), 1, + anon_sym_LBRACE, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3562), 1, + sym__blosure, + STATE(4006), 1, sym_comment, - STATE(4245), 1, - aux_sym_decl_def_repeat1, - STATE(4887), 1, - sym_long_flag, - [119249] = 9, + STATE(3221), 2, + sym_block, + sym_val_closure, + [119732] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7522), 1, - anon_sym_LBRACK, - ACTIONS(7524), 1, - anon_sym_LPAREN, - ACTIONS(7526), 1, - anon_sym_DASH_DASH, - STATE(1578), 1, - sym_parameter_parens, - STATE(1579), 1, - sym_parameter_bracks, - STATE(3985), 1, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(4007), 1, sym_comment, - STATE(4245), 1, - aux_sym_decl_def_repeat1, - STATE(4887), 1, - sym_long_flag, - [119277] = 8, + STATE(4449), 1, + sym_block, + ACTIONS(7760), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [119751] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7704), 1, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(4008), 1, + sym_comment, + STATE(4450), 1, + sym_block, + ACTIONS(7760), 4, sym__newline, - ACTIONS(7706), 1, anon_sym_SEMI, - ACTIONS(7708), 1, anon_sym_RPAREN, - STATE(1375), 1, - aux_sym__parenthesized_body_repeat1, - STATE(3986), 1, + anon_sym_RBRACE, + [119770] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(7740), 1, + anon_sym_LBRACE, + STATE(3560), 1, + sym__blosure, + STATE(4000), 1, + aux_sym__repeat_newline, + STATE(4009), 1, sym_comment, - STATE(4389), 1, - aux_sym__block_body_repeat1, - STATE(4679), 1, + STATE(3221), 2, + sym_block, + sym_val_closure, + [119793] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(7740), 1, + anon_sym_LBRACE, + STATE(522), 1, aux_sym__repeat_newline, - [119302] = 6, - ACTIONS(105), 1, + STATE(3560), 1, + sym__blosure, + STATE(4010), 1, + sym_comment, + STATE(3221), 2, + sym_block, + sym_val_closure, + [119816] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2174), 1, - sym__space, - ACTIONS(7710), 1, - anon_sym_DOT_DOT2, - STATE(3987), 1, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(7740), 1, + anon_sym_LBRACE, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3559), 1, + sym__blosure, + STATE(4011), 1, sym_comment, - ACTIONS(2176), 2, + STATE(3221), 2, + sym_block, + sym_val_closure, + [119839] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2966), 1, sym__newline, - anon_sym_SEMI, - ACTIONS(7712), 2, + ACTIONS(7740), 1, + anon_sym_LBRACE, + STATE(3557), 1, + sym__blosure, + STATE(4002), 1, + aux_sym__repeat_newline, + STATE(4012), 1, + sym_comment, + STATE(3221), 2, + sym_block, + sym_val_closure, + [119862] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7762), 1, + anon_sym_DOT, + ACTIONS(7764), 1, + aux_sym__immediate_decimal_token5, + STATE(4013), 1, + sym_comment, + ACTIONS(1810), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [119323] = 7, - ACTIONS(105), 1, + ACTIONS(1812), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [119883] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7714), 1, - anon_sym_LPAREN, - ACTIONS(7718), 1, - anon_sym_DQUOTE2, - STATE(3988), 1, + STATE(4014), 1, sym_comment, - STATE(4064), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4402), 1, - sym_expr_interpolated, - ACTIONS(7716), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [119346] = 8, + ACTIONS(755), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(757), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [119900] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(7740), 1, + anon_sym_LBRACE, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3557), 1, + sym__blosure, + STATE(4015), 1, + sym_comment, + STATE(3221), 2, + sym_block, + sym_val_closure, + [119923] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(7740), 1, + anon_sym_LBRACE, + STATE(3554), 1, + sym__blosure, + STATE(4006), 1, + aux_sym__repeat_newline, + STATE(4016), 1, + sym_comment, + STATE(3221), 2, + sym_block, + sym_val_closure, + [119946] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7518), 1, - sym_identifier, - ACTIONS(7702), 1, - anon_sym_DOLLAR, - STATE(2820), 1, - sym__variable_name, - STATE(2868), 1, - sym_val_variable, - STATE(3989), 1, + ACTIONS(7766), 1, + aux_sym__immediate_decimal_token5, + STATE(4017), 1, sym_comment, - STATE(4438), 1, - sym__assignment_pattern, - [119371] = 7, + ACTIONS(1874), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1876), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [119965] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3460), 1, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3554), 1, sym__blosure, - STATE(3990), 1, + STATE(4018), 1, sym_comment, - STATE(4191), 1, + STATE(3221), 2, + sym_block, + sym_val_closure, + [119988] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(7740), 1, + anon_sym_LBRACE, + STATE(522), 1, aux_sym__repeat_newline, - STATE(3078), 2, + STATE(3545), 1, + sym__blosure, + STATE(4019), 1, + sym_comment, + STATE(3221), 2, sym_block, sym_val_closure, - [119394] = 6, + [120011] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2154), 1, - sym__entry_separator, - ACTIONS(7722), 1, - anon_sym_DOT_DOT2, - STATE(3991), 1, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7592), 1, + sym_identifier, + ACTIONS(7594), 1, + anon_sym_DOLLAR, + STATE(2849), 1, + sym_val_variable, + STATE(2894), 1, + sym__variable_name, + STATE(4020), 1, sym_comment, - ACTIONS(2156), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7724), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119415] = 7, + STATE(4690), 1, + sym__assignment_pattern_parenthesized, + [120036] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5112), 1, + ACTIONS(7768), 1, anon_sym_DOT2, - STATE(2469), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2485), 1, + STATE(2499), 1, sym_path, - STATE(3005), 1, - sym_cell_path, - STATE(3992), 1, + STATE(4021), 2, sym_comment, - ACTIONS(5427), 2, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1560), 3, anon_sym_EQ, - anon_sym_GT2, - [119438] = 6, + sym__newline, + anon_sym_COLON, + [120055] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7422), 1, - anon_sym_DOT2, - STATE(3993), 1, + ACTIONS(4321), 1, + sym__space, + ACTIONS(7771), 1, + sym_long_flag_identifier, + ACTIONS(7773), 1, + anon_sym_EQ2, + STATE(3209), 1, + sym__flag_equals_value, + STATE(4022), 1, sym_comment, - STATE(4182), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4617), 1, - sym_path, - ACTIONS(1577), 3, + ACTIONS(4319), 2, + sym__newline, + anon_sym_SEMI, + [120078] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7592), 1, + sym_identifier, + ACTIONS(7616), 1, + anon_sym_DOLLAR, + STATE(2849), 1, + sym_val_variable, + STATE(4023), 1, + sym_comment, + STATE(4246), 1, + sym__variable_name, + STATE(4394), 1, + sym__assignment_pattern, + [120103] = 3, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4024), 1, + sym_comment, + ACTIONS(1574), 6, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, - [119459] = 6, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120118] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(7740), 1, + anon_sym_LBRACE, + STATE(3544), 1, + sym__blosure, + STATE(4010), 1, + aux_sym__repeat_newline, + STATE(4025), 1, + sym_comment, + STATE(3221), 2, + sym_block, + sym_val_closure, + [120141] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5362), 1, + sym__entry_separator, + ACTIONS(5708), 1, + anon_sym_GT2, + ACTIONS(7405), 1, + anon_sym_DOT2, + STATE(3941), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4026), 1, + sym_comment, + STATE(4261), 1, + sym_path, + STATE(4589), 1, + sym_cell_path, + [120166] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2186), 1, + ACTIONS(5515), 1, sym__space, - ACTIONS(7726), 1, - anon_sym_DOT_DOT2, - STATE(3994), 1, + ACTIONS(7773), 1, + anon_sym_EQ2, + ACTIONS(7775), 1, + sym_short_flag_identifier, + STATE(3228), 1, + sym__flag_equals_value, + STATE(4027), 1, sym_comment, - ACTIONS(2188), 2, + ACTIONS(5513), 2, sym__newline, anon_sym_SEMI, - ACTIONS(7728), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119480] = 6, + [120189] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7730), 1, - anon_sym_DOT, - ACTIONS(7732), 1, + ACTIONS(7777), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7779), 1, aux_sym__immediate_decimal_token5, - STATE(3995), 1, + STATE(4028), 1, sym_comment, - ACTIONS(1788), 2, + ACTIONS(1802), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1790), 2, + ACTIONS(1804), 2, anon_sym_RBRACK, sym__unquoted_pattern_in_list, - [119501] = 5, + [120210] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7279), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7734), 1, - anon_sym_DOT, - STATE(3996), 1, + ACTIONS(1636), 1, + sym__unquoted_pattern, + STATE(4029), 1, sym_comment, - ACTIONS(1788), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119520] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4205), 1, - aux_sym_unquoted_token2, - ACTIONS(6805), 1, + STATE(5340), 1, + sym__immediate_decimal, + ACTIONS(6978), 2, aux_sym__immediate_decimal_token1, - ACTIONS(7267), 1, aux_sym__immediate_decimal_token2, - STATE(3997), 1, - sym_comment, - STATE(4494), 1, - sym__immediate_decimal, - ACTIONS(7269), 2, + ACTIONS(6980), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [119543] = 5, - ACTIONS(105), 1, + [120231] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7736), 1, + ACTIONS(1812), 1, + sym__unquoted_pattern, + ACTIONS(7781), 1, + anon_sym_DOT, + ACTIONS(7783), 1, aux_sym__immediate_decimal_token5, - STATE(3998), 1, + STATE(4030), 1, sym_comment, - ACTIONS(1866), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1868), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [119562] = 6, + ACTIONS(1810), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [120252] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2154), 1, + ACTIONS(5521), 1, sym__space, - ACTIONS(7738), 1, + ACTIONS(7756), 1, anon_sym_DOT_DOT2, - STATE(3999), 1, + STATE(4031), 1, sym_comment, - ACTIONS(2156), 2, + ACTIONS(5519), 2, sym__newline, anon_sym_SEMI, - ACTIONS(7740), 2, + ACTIONS(7758), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [119583] = 6, - ACTIONS(105), 1, + [120273] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7636), 1, - sym__entry_separator, - ACTIONS(7744), 1, + ACTIONS(4179), 1, anon_sym_DOT_DOT2, - STATE(4000), 1, + ACTIONS(7787), 1, + sym__unquoted_pattern, + STATE(4032), 1, sym_comment, - ACTIONS(7742), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7746), 2, + ACTIONS(4181), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [119604] = 6, + ACTIONS(7785), 2, + sym_filesize_unit, + sym_duration_unit, + [120294] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(7740), 1, + anon_sym_LBRACE, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3544), 1, + sym__blosure, + STATE(4033), 1, + sym_comment, + STATE(3221), 2, + sym_block, + sym_val_closure, + [120317] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7652), 1, + ACTIONS(5446), 1, + anon_sym_RBRACK, + ACTIONS(5448), 1, sym__entry_separator, - ACTIONS(7744), 1, - anon_sym_DOT_DOT2, - STATE(4001), 1, + ACTIONS(7542), 1, + anon_sym_DOT2, + STATE(375), 1, + sym_path, + STATE(4034), 1, sym_comment, - ACTIONS(7746), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7748), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [119625] = 7, + STATE(4157), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4982), 1, + sym_cell_path, + [120342] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(4035), 1, + sym_comment, + STATE(4429), 1, + sym_block, + ACTIONS(7789), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [120361] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(7740), 1, + anon_sym_LBRACE, + STATE(3575), 1, + sym__blosure, + STATE(4011), 1, + aux_sym__repeat_newline, + STATE(4036), 1, + sym_comment, + STATE(3221), 2, + sym_block, + sym_val_closure, + [120384] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4205), 1, - aux_sym_unquoted_token2, - ACTIONS(6964), 1, + ACTIONS(6978), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7281), 1, + ACTIONS(7275), 1, aux_sym__immediate_decimal_token2, - STATE(4002), 1, + ACTIONS(7787), 1, + aux_sym_unquoted_token2, + STATE(4037), 1, sym_comment, - STATE(5504), 1, + STATE(5256), 1, sym__immediate_decimal, - ACTIONS(7283), 2, + ACTIONS(7277), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [119648] = 7, + [120407] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6954), 1, - anon_sym_LPAREN2, - ACTIONS(7752), 1, - sym__entry_separator, - STATE(2286), 1, - aux_sym__types_body_repeat2, - STATE(4003), 1, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7592), 1, + sym_identifier, + ACTIONS(7594), 1, + anon_sym_DOLLAR, + STATE(2849), 1, + sym_val_variable, + STATE(2851), 1, + sym__variable_name, + STATE(4038), 1, sym_comment, - STATE(4998), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7750), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [119671] = 3, + STATE(4396), 1, + sym__assignment_pattern, + [120432] = 8, ACTIONS(105), 1, anon_sym_POUND, - STATE(4004), 1, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7592), 1, + sym_identifier, + ACTIONS(7616), 1, + anon_sym_DOLLAR, + STATE(2849), 1, + sym_val_variable, + STATE(4039), 1, sym_comment, - ACTIONS(1531), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [119686] = 3, + STATE(4304), 1, + sym__variable_name, + STATE(4395), 1, + sym__assignment_pattern, + [120457] = 8, ACTIONS(105), 1, anon_sym_POUND, - STATE(4005), 1, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7592), 1, + sym_identifier, + ACTIONS(7616), 1, + anon_sym_DOLLAR, + STATE(2849), 1, + sym_val_variable, + STATE(4040), 1, sym_comment, - ACTIONS(1535), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [119701] = 7, + STATE(4304), 1, + sym__variable_name, + STATE(4394), 1, + sym__assignment_pattern, + [120482] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(7720), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3201), 1, - sym__blosure, - STATE(4006), 1, + STATE(4041), 1, sym_comment, - STATE(3078), 2, + STATE(4509), 1, sym_block, - sym_val_closure, - [119724] = 5, + ACTIONS(7791), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [120501] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7634), 1, + aux_sym__immediate_decimal_token5, + STATE(4042), 1, + sym_comment, + ACTIONS(1810), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1812), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [120520] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(4007), 1, + STATE(4043), 1, sym_comment, - STATE(4672), 1, + STATE(4513), 1, sym_block, - ACTIONS(7755), 4, + ACTIONS(7791), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119743] = 7, + [120539] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(3524), 1, + STATE(3575), 1, sym__blosure, - STATE(4008), 1, + STATE(4044), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [119766] = 6, - ACTIONS(3), 1, + [120562] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern, - STATE(4009), 1, + STATE(4045), 1, sym_comment, - STATE(5271), 1, - sym__immediate_decimal, - ACTIONS(6964), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6966), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [119787] = 7, + ACTIONS(1490), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120577] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(3580), 1, + STATE(3532), 1, sym__blosure, - STATE(4010), 1, + STATE(4046), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [119810] = 7, - ACTIONS(3), 1, + [120600] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(7720), 1, - anon_sym_LBRACE, - STATE(3550), 1, - sym__blosure, - STATE(4011), 1, + STATE(4047), 1, sym_comment, - STATE(4014), 1, - aux_sym__repeat_newline, - STATE(3078), 2, - sym_block, - sym_val_closure, - [119833] = 7, + ACTIONS(1550), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120615] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3524), 1, + STATE(3530), 1, sym__blosure, - STATE(4012), 1, - sym_comment, - STATE(4159), 1, + STATE(4015), 1, aux_sym__repeat_newline, - STATE(3078), 2, + STATE(4048), 1, + sym_comment, + STATE(3221), 2, sym_block, sym_val_closure, - [119856] = 7, + [120638] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3098), 1, + STATE(3529), 1, sym__blosure, - STATE(4013), 1, - sym_comment, - STATE(4053), 1, + STATE(4018), 1, aux_sym__repeat_newline, - STATE(3078), 2, + STATE(4049), 1, + sym_comment, + STATE(3221), 2, sym_block, sym_val_closure, - [119879] = 7, - ACTIONS(3), 1, + [120661] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(7720), 1, - anon_sym_LBRACE, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3581), 1, - sym__blosure, - STATE(4014), 1, + ACTIONS(6889), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7279), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7787), 1, + aux_sym_unquoted_token2, + STATE(4050), 1, sym_comment, - STATE(3078), 2, - sym_block, - sym_val_closure, - [119902] = 7, + STATE(4493), 1, + sym__immediate_decimal, + ACTIONS(7281), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [120684] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3581), 1, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3529), 1, sym__blosure, - STATE(4015), 1, + STATE(4051), 1, sym_comment, - STATE(4114), 1, - aux_sym__repeat_newline, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [119925] = 7, + [120707] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(3582), 1, + STATE(3526), 1, sym__blosure, - STATE(4016), 1, + STATE(4052), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [119948] = 7, + [120730] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6954), 1, - anon_sym_LPAREN2, - ACTIONS(7752), 1, - sym__entry_separator, - STATE(2277), 1, - aux_sym__types_body_repeat2, - STATE(4017), 1, - sym_comment, - STATE(4998), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7757), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [119971] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(7720), 1, - anon_sym_LBRACE, - STATE(3582), 1, - sym__blosure, - STATE(4018), 1, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7592), 1, + sym_identifier, + ACTIONS(7616), 1, + anon_sym_DOLLAR, + STATE(2849), 1, + sym_val_variable, + STATE(4053), 1, sym_comment, - STATE(4119), 1, - aux_sym__repeat_newline, - STATE(3078), 2, - sym_block, - sym_val_closure, - [119994] = 7, + STATE(4316), 1, + sym__variable_name, + STATE(4703), 1, + sym__assignment_pattern_parenthesized, + [120755] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3596), 1, + STATE(3522), 1, sym__blosure, STATE(4019), 1, - sym_comment, - STATE(4169), 1, - aux_sym__repeat_newline, - STATE(3078), 2, - sym_block, - sym_val_closure, - [120017] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(7720), 1, - anon_sym_LBRACE, - STATE(501), 1, aux_sym__repeat_newline, - STATE(3526), 1, - sym__blosure, - STATE(4020), 1, + STATE(4054), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [120040] = 7, + [120778] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6964), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7281), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7759), 1, - aux_sym_unquoted_token2, - STATE(4021), 1, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7592), 1, + sym_identifier, + ACTIONS(7594), 1, + anon_sym_DOLLAR, + STATE(2849), 1, + sym_val_variable, + STATE(3027), 1, + sym__variable_name, + STATE(4055), 1, sym_comment, - STATE(5504), 1, - sym__immediate_decimal, - ACTIONS(7283), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [120063] = 7, + STATE(4396), 1, + sym__assignment_pattern, + [120803] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7714), 1, - anon_sym_LPAREN, - ACTIONS(7761), 1, - anon_sym_DQUOTE2, - STATE(4022), 1, + STATE(4056), 1, sym_comment, - STATE(4038), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4402), 1, - sym_expr_interpolated, - ACTIONS(7716), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [120086] = 8, + ACTIONS(1544), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120818] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3713), 1, + STATE(4057), 1, + sym_comment, + ACTIONS(1540), 6, + anon_sym_RBRACK, sym__entry_separator, - ACTIONS(7552), 1, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, anon_sym_DOT2, - ACTIONS(7763), 1, - anon_sym_RBRACE, - STATE(366), 1, - sym_path, - STATE(4023), 1, + [120833] = 3, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4058), 1, sym_comment, - STATE(4194), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4667), 1, - sym_cell_path, - [120111] = 7, + ACTIONS(1522), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120848] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7714), 1, + ACTIONS(7708), 1, anon_sym_LPAREN, - ACTIONS(7767), 1, + ACTIONS(7793), 1, anon_sym_DQUOTE2, - STATE(4024), 1, + STATE(4059), 1, sym_comment, - STATE(4155), 1, + STATE(4107), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4402), 1, + STATE(4482), 1, sym_expr_interpolated, - ACTIONS(7716), 2, + ACTIONS(7710), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [120134] = 7, + [120871] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3526), 1, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3522), 1, sym__blosure, - STATE(4025), 1, + STATE(4060), 1, sym_comment, - STATE(4181), 1, - aux_sym__repeat_newline, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [120157] = 3, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4026), 1, - sym_comment, - ACTIONS(1486), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [120172] = 7, + [120894] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3422), 1, + STATE(3510), 1, sym__blosure, - STATE(4027), 1, - sym_comment, - STATE(4055), 1, + STATE(4033), 1, aux_sym__repeat_newline, - STATE(3078), 2, + STATE(4061), 1, + sym_comment, + STATE(3221), 2, sym_block, sym_val_closure, - [120195] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2166), 1, - sym__entry_separator, - ACTIONS(7769), 1, - anon_sym_DOT_DOT2, - STATE(4028), 1, - sym_comment, - ACTIONS(2168), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7771), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120216] = 8, - ACTIONS(105), 1, + [120917] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5411), 1, - anon_sym_RBRACK, - ACTIONS(5413), 1, - sym__entry_separator, - ACTIONS(7552), 1, - anon_sym_DOT2, - STATE(366), 1, - sym_path, - STATE(4029), 1, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(7740), 1, + anon_sym_LBRACE, + STATE(3505), 1, + sym__blosure, + STATE(4044), 1, + aux_sym__repeat_newline, + STATE(4062), 1, sym_comment, - STATE(4194), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4966), 1, - sym_cell_path, - [120241] = 7, + STATE(3221), 2, + sym_block, + sym_val_closure, + [120940] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7714), 1, + ACTIONS(7708), 1, anon_sym_LPAREN, - ACTIONS(7773), 1, + ACTIONS(7795), 1, anon_sym_DQUOTE2, - STATE(4030), 1, + STATE(4063), 1, sym_comment, - STATE(4064), 1, + STATE(4113), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4402), 1, + STATE(4482), 1, sym_expr_interpolated, - ACTIONS(7716), 2, + ACTIONS(7710), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [120264] = 3, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4031), 1, - sym_comment, - ACTIONS(1541), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [120279] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7775), 1, - anon_sym_DOT2, - STATE(2485), 1, - sym_path, - STATE(4032), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1492), 3, - anon_sym_EQ, - sym__newline, - anon_sym_COLON, - [120298] = 7, + [120963] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(3572), 1, + STATE(3505), 1, sym__blosure, - STATE(4033), 1, + STATE(4064), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [120321] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2986), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7518), 1, - sym_identifier, - ACTIONS(7520), 1, - anon_sym_DOLLAR, - STATE(2868), 1, - sym_val_variable, - STATE(4034), 1, - sym_comment, - STATE(4231), 1, - sym__variable_name, - STATE(4767), 1, - sym__assignment_pattern, - [120346] = 7, + [120986] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3572), 1, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3500), 1, sym__blosure, - STATE(4035), 1, + STATE(4065), 1, sym_comment, - STATE(4067), 1, - aux_sym__repeat_newline, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [120369] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7552), 1, - anon_sym_DOT2, - ACTIONS(7778), 1, - anon_sym_RBRACE, - ACTIONS(7780), 1, - sym__entry_separator, - STATE(366), 1, - sym_path, - STATE(4036), 1, - sym_comment, - STATE(4194), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(5065), 1, - sym_cell_path, - [120394] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5427), 1, - sym__entry_separator, - ACTIONS(5760), 1, - anon_sym_GT2, - ACTIONS(7430), 1, - anon_sym_DOT2, - STATE(3951), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4037), 1, - sym_comment, - STATE(4251), 1, - sym_path, - STATE(4667), 1, - sym_cell_path, - [120419] = 7, + [121009] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7714), 1, + ACTIONS(7708), 1, anon_sym_LPAREN, - ACTIONS(7782), 1, + ACTIONS(7797), 1, anon_sym_DQUOTE2, - STATE(4038), 1, - sym_comment, - STATE(4064), 1, + STATE(4059), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4402), 1, - sym_expr_interpolated, - ACTIONS(7716), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [120442] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7714), 1, - anon_sym_LPAREN, - ACTIONS(7784), 1, - anon_sym_DQUOTE2, - STATE(4039), 1, + STATE(4066), 1, sym_comment, - STATE(4124), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4402), 1, + STATE(4482), 1, sym_expr_interpolated, - ACTIONS(7716), 2, + ACTIONS(7710), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [120465] = 3, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4040), 1, - sym_comment, - ACTIONS(1545), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [120480] = 6, + [121032] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7786), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7788), 1, - aux_sym__immediate_decimal_token5, - STATE(4041), 1, - sym_comment, - ACTIONS(1774), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1776), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [120501] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2174), 1, - sym__entry_separator, - ACTIONS(7790), 1, - anon_sym_DOT_DOT2, - STATE(4042), 1, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(7740), 1, + anon_sym_LBRACE, + STATE(3498), 1, + sym__blosure, + STATE(4046), 1, + aux_sym__repeat_newline, + STATE(4067), 1, sym_comment, - ACTIONS(2176), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7792), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120522] = 7, + STATE(3221), 2, + sym_block, + sym_val_closure, + [121055] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(3573), 1, + STATE(3498), 1, sym__blosure, - STATE(4043), 1, + STATE(4068), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [120545] = 7, + [121078] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(3574), 1, + STATE(3497), 1, sym__blosure, - STATE(4044), 1, + STATE(4069), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [120568] = 6, - ACTIONS(105), 1, + [121101] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__space, - ACTIONS(7794), 1, - anon_sym_DOT_DOT2, - STATE(4045), 1, - sym_comment, - ACTIONS(1616), 2, + ACTIONS(2966), 1, sym__newline, - anon_sym_SEMI, - ACTIONS(7796), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120589] = 8, + ACTIONS(7740), 1, + anon_sym_LBRACE, + STATE(3495), 1, + sym__blosure, + STATE(4051), 1, + aux_sym__repeat_newline, + STATE(4070), 1, + sym_comment, + STATE(3221), 2, + sym_block, + sym_val_closure, + [121124] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2786), 1, + ACTIONS(2690), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2834), 1, - anon_sym_COLON2, - ACTIONS(5298), 1, - anon_sym_DOLLAR, - ACTIONS(7518), 1, + ACTIONS(7592), 1, sym_identifier, - STATE(2868), 1, + ACTIONS(7616), 1, + anon_sym_DOLLAR, + STATE(2849), 1, sym_val_variable, - STATE(4046), 1, + STATE(4071), 1, sym_comment, - STATE(5476), 1, + STATE(4229), 1, sym__variable_name, - [120614] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7303), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7798), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7800), 1, - aux_sym__immediate_decimal_token2, - STATE(4047), 1, - sym_comment, - STATE(5517), 1, - sym__immediate_decimal, - ACTIONS(7802), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [120637] = 8, + STATE(4395), 1, + sym__assignment_pattern, + [121149] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2986), 1, + ACTIONS(2690), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7518), 1, + ACTIONS(7592), 1, sym_identifier, - ACTIONS(7520), 1, + ACTIONS(7616), 1, anon_sym_DOLLAR, - STATE(2868), 1, + STATE(2849), 1, sym_val_variable, - STATE(4048), 1, + STATE(4072), 1, sym_comment, - STATE(4231), 1, + STATE(4229), 1, sym__variable_name, - STATE(4773), 1, + STATE(4394), 1, sym__assignment_pattern, - [120662] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2186), 1, - sym__entry_separator, - ACTIONS(7804), 1, - anon_sym_DOT_DOT2, - STATE(4049), 1, - sym_comment, - ACTIONS(2188), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7806), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120683] = 7, + [121174] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3551), 1, + STATE(3494), 1, sym__blosure, - STATE(4016), 1, + STATE(4052), 1, aux_sym__repeat_newline, - STATE(4050), 1, + STATE(4073), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [120706] = 7, + [121197] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(7714), 1, sym__newline, - ACTIONS(7720), 1, - anon_sym_LBRACE, - STATE(3574), 1, - sym__blosure, - STATE(4051), 1, + ACTIONS(7716), 1, + anon_sym_SEMI, + ACTIONS(7799), 1, + anon_sym_RPAREN, + STATE(1376), 1, + aux_sym__parenthesized_body_repeat1, + STATE(4074), 1, sym_comment, - STATE(4070), 1, + STATE(4641), 1, + aux_sym__block_body_repeat1, + STATE(4701), 1, aux_sym__repeat_newline, - STATE(3078), 2, - sym_block, - sym_val_closure, - [120729] = 6, + [121222] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7808), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7810), 1, + ACTIONS(7598), 1, aux_sym__immediate_decimal_token5, - STATE(4052), 1, + STATE(4075), 1, sym_comment, - ACTIONS(1774), 2, + ACTIONS(1810), 2, + sym__space, anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1776), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [120750] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(7720), 1, - anon_sym_LBRACE, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3054), 1, - sym__blosure, - STATE(4053), 1, - sym_comment, - STATE(3078), 2, - sym_block, - sym_val_closure, - [120773] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7303), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7812), 1, - anon_sym_DOT_DOT2, - STATE(4054), 1, - sym_comment, - ACTIONS(7814), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7816), 2, - sym_filesize_unit, - sym_duration_unit, - [120794] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(1812), 3, sym__newline, - ACTIONS(7720), 1, - anon_sym_LBRACE, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3420), 1, - sym__blosure, - STATE(4055), 1, - sym_comment, - STATE(3078), 2, - sym_block, - sym_val_closure, - [120817] = 7, + anon_sym_SEMI, + sym__unquoted_pattern, + [121241] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6805), 1, + ACTIONS(6889), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7267), 1, + ACTIONS(7279), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7818), 1, + ACTIONS(7801), 1, aux_sym_unquoted_token2, - STATE(4056), 1, + STATE(4076), 1, sym_comment, - STATE(4494), 1, + STATE(4493), 1, sym__immediate_decimal, - ACTIONS(7269), 2, + ACTIONS(7281), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [120840] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(7720), 1, - anon_sym_LBRACE, - STATE(3245), 1, - sym__blosure, - STATE(4057), 1, - sym_comment, - STATE(4168), 1, - aux_sym__repeat_newline, - STATE(3078), 2, - sym_block, - sym_val_closure, - [120863] = 7, + [121264] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6964), 1, + ACTIONS(6978), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7281), 1, + ACTIONS(7275), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7818), 1, + ACTIONS(7801), 1, aux_sym_unquoted_token2, - STATE(4058), 1, + STATE(4077), 1, sym_comment, - STATE(5504), 1, + STATE(5256), 1, sym__immediate_decimal, - ACTIONS(7283), 2, + ACTIONS(7277), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [120886] = 6, + [121287] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4197), 1, + ACTIONS(4179), 1, anon_sym_DOT_DOT2, - ACTIONS(7818), 1, + ACTIONS(7801), 1, sym__unquoted_pattern, - STATE(4059), 1, + STATE(4078), 1, sym_comment, - ACTIONS(4199), 2, + ACTIONS(4181), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7820), 2, + ACTIONS(7785), 2, sym_filesize_unit, sym_duration_unit, - [120907] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(4060), 1, - sym_comment, - STATE(4423), 1, - sym_block, - ACTIONS(7822), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120926] = 8, + [121308] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7518), 1, - sym_identifier, - ACTIONS(7520), 1, - anon_sym_DOLLAR, - STATE(2868), 1, - sym_val_variable, - STATE(4061), 1, + ACTIONS(7708), 1, + anon_sym_LPAREN, + ACTIONS(7803), 1, + anon_sym_DQUOTE2, + STATE(4079), 1, sym_comment, - STATE(4347), 1, - sym__variable_name, - STATE(4454), 1, - sym__assignment_pattern, - [120951] = 7, + STATE(4107), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4482), 1, + sym_expr_interpolated, + ACTIONS(7710), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [121331] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3054), 1, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3494), 1, sym__blosure, - STATE(4062), 1, + STATE(4080), 1, sym_comment, - STATE(4199), 1, - aux_sym__repeat_newline, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [120974] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5501), 1, - sym__space, - ACTIONS(7794), 1, - anon_sym_DOT_DOT2, - STATE(4063), 1, - sym_comment, - ACTIONS(5499), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7796), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120995] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7824), 1, - anon_sym_LPAREN, - ACTIONS(7830), 1, - anon_sym_DQUOTE2, - STATE(4402), 1, - sym_expr_interpolated, - ACTIONS(7827), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - STATE(4064), 2, - sym_comment, - aux_sym__inter_double_quotes_repeat1, - [121016] = 5, + [121354] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7572), 1, - aux_sym__immediate_decimal_token5, - STATE(4065), 1, - sym_comment, - ACTIONS(1790), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1788), 3, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(7740), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121035] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7518), 1, - sym_identifier, - ACTIONS(7702), 1, - anon_sym_DOLLAR, - STATE(2868), 1, - sym_val_variable, - STATE(2880), 1, - sym__variable_name, - STATE(4066), 1, + STATE(3419), 1, + sym__blosure, + STATE(4060), 1, + aux_sym__repeat_newline, + STATE(4081), 1, sym_comment, - STATE(4881), 1, - sym__assignment_pattern_parenthesized, - [121060] = 7, + STATE(3221), 2, + sym_block, + sym_val_closure, + [121377] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(3584), 1, + STATE(3419), 1, sym__blosure, - STATE(4067), 1, + STATE(4082), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [121083] = 6, + [121400] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7832), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7834), 1, - aux_sym__immediate_decimal_token5, - STATE(4068), 1, + ACTIONS(7708), 1, + anon_sym_LPAREN, + ACTIONS(7805), 1, + anon_sym_DQUOTE2, + STATE(4079), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4083), 1, sym_comment, - ACTIONS(1774), 2, - anon_sym_LPAREN2, + STATE(4482), 1, + sym_expr_interpolated, + ACTIONS(7710), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [121423] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7630), 1, sym__entry_separator, - ACTIONS(1776), 2, + ACTIONS(7809), 1, + anon_sym_DOT_DOT2, + STATE(4084), 1, + sym_comment, + ACTIONS(7807), 2, anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [121104] = 6, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + ACTIONS(7811), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121444] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7836), 1, - anon_sym_DOT, - ACTIONS(7838), 1, - aux_sym__immediate_decimal_token5, - STATE(4069), 1, + ACTIONS(7624), 1, + sym__entry_separator, + ACTIONS(7809), 1, + anon_sym_DOT_DOT2, + STATE(4085), 1, sym_comment, - ACTIONS(1788), 2, + ACTIONS(7811), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1790), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [121125] = 7, + ACTIONS(7813), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [121465] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(3585), 1, + STATE(3427), 1, sym__blosure, - STATE(4070), 1, + STATE(4086), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [121148] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5423), 1, - anon_sym_RBRACK, - ACTIONS(5425), 1, - sym__entry_separator, - ACTIONS(7552), 1, - anon_sym_DOT2, - STATE(366), 1, - sym_path, - STATE(4071), 1, - sym_comment, - STATE(4194), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4984), 1, - sym_cell_path, - [121173] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7840), 1, - aux_sym__immediate_decimal_token5, - STATE(4072), 1, - sym_comment, - ACTIONS(1868), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1866), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121192] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7518), 1, - sym_identifier, - ACTIONS(7520), 1, - anon_sym_DOLLAR, - STATE(2868), 1, - sym_val_variable, - STATE(4073), 1, - sym_comment, - STATE(4260), 1, - sym__variable_name, - STATE(4886), 1, - sym__assignment_pattern_parenthesized, - [121217] = 8, + [121488] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2634), 1, + ACTIONS(2690), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7518), 1, + ACTIONS(7592), 1, sym_identifier, - ACTIONS(7520), 1, + ACTIONS(7616), 1, anon_sym_DOLLAR, - STATE(2868), 1, + STATE(2849), 1, sym_val_variable, - STATE(4074), 1, - sym_comment, - STATE(4347), 1, - sym__variable_name, - STATE(4455), 1, - sym__assignment_pattern, - [121242] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7714), 1, - anon_sym_LPAREN, - ACTIONS(7842), 1, - anon_sym_DQUOTE2, - STATE(4075), 1, - sym_comment, STATE(4087), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4402), 1, - sym_expr_interpolated, - ACTIONS(7716), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [121265] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7844), 1, - aux_sym__immediate_decimal_token5, - STATE(4076), 1, - sym_comment, - ACTIONS(1866), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1868), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [121284] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7518), 1, - sym_identifier, - ACTIONS(7520), 1, - anon_sym_DOLLAR, - STATE(2868), 1, - sym_val_variable, - STATE(4077), 1, - sym_comment, - STATE(4260), 1, - sym__variable_name, - STATE(4893), 1, - sym__assignment_pattern_parenthesized, - [121309] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(4078), 1, - sym_comment, - STATE(4563), 1, - sym_block, - ACTIONS(7846), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + sym_comment, + STATE(4316), 1, + sym__variable_name, + STATE(4683), 1, + sym__assignment_pattern_parenthesized, + [121513] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7542), 1, + anon_sym_DOT2, + ACTIONS(7815), 1, anon_sym_RBRACE, - [121328] = 7, + ACTIONS(7817), 1, + sym__entry_separator, + STATE(375), 1, + sym_path, + STATE(4088), 1, + sym_comment, + STATE(4157), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(5011), 1, + sym_cell_path, + [121538] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3485), 1, + STATE(3466), 1, sym__blosure, - STATE(4079), 1, + STATE(4064), 1, + aux_sym__repeat_newline, + STATE(4089), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [121351] = 7, + [121561] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3550), 1, + STATE(3471), 1, sym__blosure, - STATE(4080), 1, + STATE(4065), 1, + aux_sym__repeat_newline, + STATE(4090), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [121374] = 7, + [121584] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7708), 1, + anon_sym_LPAREN, + ACTIONS(7819), 1, + anon_sym_DQUOTE2, + STATE(4091), 1, + sym_comment, + STATE(4107), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4482), 1, + sym_expr_interpolated, + ACTIONS(7710), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [121607] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(3527), 1, + STATE(3471), 1, sym__blosure, - STATE(4081), 1, + STATE(4092), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [121397] = 5, + [121630] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(4082), 1, + STATE(3424), 1, + sym__blosure, + STATE(4068), 1, + aux_sym__repeat_newline, + STATE(4093), 1, sym_comment, - STATE(4564), 1, + STATE(3221), 2, sym_block, - ACTIONS(7846), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121416] = 7, + sym_val_closure, + [121653] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3585), 1, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3424), 1, sym__blosure, - STATE(4083), 1, + STATE(4094), 1, sym_comment, - STATE(4123), 1, - aux_sym__repeat_newline, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [121439] = 4, + [121676] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4084), 1, + ACTIONS(7821), 1, + aux_sym__immediate_decimal_token5, + STATE(4095), 1, sym_comment, - ACTIONS(759), 2, + ACTIONS(1876), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(761), 4, + sym__unquoted_pattern, + ACTIONS(1874), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [121456] = 7, + [121695] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3577), 1, + STATE(3425), 1, sym__blosure, - STATE(4085), 1, - sym_comment, - STATE(4088), 1, + STATE(4069), 1, aux_sym__repeat_newline, - STATE(3078), 2, + STATE(4096), 1, + sym_comment, + STATE(3221), 2, sym_block, sym_val_closure, - [121479] = 7, - ACTIONS(105), 1, + [121718] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4355), 1, - sym__space, - ACTIONS(7848), 1, - sym_long_flag_identifier, - ACTIONS(7850), 1, - anon_sym_EQ2, - STATE(3247), 1, - sym__flag_equals_value, - STATE(4086), 1, - sym_comment, - ACTIONS(4353), 2, + ACTIONS(2966), 1, sym__newline, - anon_sym_SEMI, - [121502] = 7, + ACTIONS(7740), 1, + anon_sym_LBRACE, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3425), 1, + sym__blosure, + STATE(4097), 1, + sym_comment, + STATE(3221), 2, + sym_block, + sym_val_closure, + [121741] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7714), 1, + ACTIONS(7708), 1, anon_sym_LPAREN, - ACTIONS(7852), 1, + ACTIONS(7823), 1, anon_sym_DQUOTE2, - STATE(4064), 1, + STATE(4091), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4087), 1, + STATE(4098), 1, sym_comment, - STATE(4402), 1, + STATE(4482), 1, sym_expr_interpolated, - ACTIONS(7716), 2, + ACTIONS(7710), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [121525] = 7, + [121764] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(3587), 1, - sym__blosure, - STATE(4088), 1, - sym_comment, - STATE(3078), 2, - sym_block, - sym_val_closure, - [121548] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(7720), 1, - anon_sym_LBRACE, - STATE(3608), 1, + STATE(3194), 1, sym__blosure, - STATE(4089), 1, + STATE(4099), 1, sym_comment, - STATE(4187), 1, - aux_sym__repeat_newline, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [121571] = 7, + [121787] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3420), 1, + STATE(3438), 1, sym__blosure, - STATE(4079), 1, + STATE(4080), 1, aux_sym__repeat_newline, - STATE(4090), 1, + STATE(4100), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [121594] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2154), 1, - sym__entry_separator, - ACTIONS(7854), 1, - anon_sym_DOT_DOT2, - STATE(4091), 1, - sym_comment, - ACTIONS(2156), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7856), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121615] = 7, + [121810] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3527), 1, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3438), 1, sym__blosure, - STATE(4092), 1, + STATE(4101), 1, sym_comment, - STATE(4190), 1, - aux_sym__repeat_newline, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [121638] = 7, + [121833] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3528), 1, + STATE(3440), 1, sym__blosure, - STATE(4080), 1, + STATE(4082), 1, aux_sym__repeat_newline, - STATE(4093), 1, + STATE(4102), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [121661] = 6, + [121856] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2166), 1, - sym__entry_separator, - ACTIONS(7858), 1, - anon_sym_DOT_DOT2, - STATE(4094), 1, + ACTIONS(7825), 1, + aux_sym__immediate_decimal_token5, + STATE(4103), 1, sym_comment, - ACTIONS(2168), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7860), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121682] = 6, + ACTIONS(1874), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1876), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [121875] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2174), 1, - sym__entry_separator, - ACTIONS(7862), 1, - anon_sym_DOT_DOT2, - STATE(4095), 1, + ACTIONS(7827), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7829), 1, + aux_sym__immediate_decimal_token5, + STATE(4104), 1, sym_comment, - ACTIONS(2176), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7864), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121703] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2186), 1, + ACTIONS(1802), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(7866), 1, - anon_sym_DOT_DOT2, - STATE(4096), 1, - sym_comment, - ACTIONS(2188), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7868), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121724] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1711), 1, + ACTIONS(1804), 2, + anon_sym_RBRACE, sym__unquoted_pattern_in_record, - STATE(4097), 1, - sym_comment, - STATE(5110), 1, - sym__immediate_decimal, - ACTIONS(7798), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7870), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [121745] = 7, + [121896] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(3539), 1, + STATE(3186), 1, sym__blosure, - STATE(4098), 1, + STATE(4105), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [121768] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7872), 1, - anon_sym_if, - ACTIONS(7874), 1, - sym__newline, - ACTIONS(7876), 1, - anon_sym_PIPE, - ACTIONS(7878), 1, - anon_sym_EQ_GT, - STATE(4099), 1, - sym_comment, - STATE(4496), 1, - aux_sym_match_pattern_repeat1, - STATE(5192), 1, - sym_match_guard, - [121793] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4100), 1, - sym_comment, - ACTIONS(791), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(793), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [121810] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1776), 1, - sym__unquoted_pattern, - ACTIONS(7880), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7882), 1, - aux_sym__immediate_decimal_token5, - STATE(4101), 1, - sym_comment, - ACTIONS(1774), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [121831] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7884), 1, - anon_sym_DOT, - ACTIONS(7886), 1, - aux_sym__immediate_decimal_token5, - STATE(4102), 1, - sym_comment, - ACTIONS(1788), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1790), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [121852] = 7, + [121919] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3521), 1, + STATE(3465), 1, sym__blosure, - STATE(4098), 1, + STATE(4086), 1, aux_sym__repeat_newline, - STATE(4103), 1, + STATE(4106), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [121875] = 7, + [121942] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7714), 1, + ACTIONS(7831), 1, anon_sym_LPAREN, - ACTIONS(7888), 1, + ACTIONS(7837), 1, anon_sym_DQUOTE2, - STATE(4104), 1, - sym_comment, - STATE(4133), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4402), 1, + STATE(4482), 1, sym_expr_interpolated, - ACTIONS(7716), 2, + ACTIONS(7834), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [121898] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern_in_record, - STATE(4105), 1, - sym_comment, - STATE(5391), 1, - sym__immediate_decimal, - ACTIONS(7798), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7870), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [121919] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2166), 1, - sym__space, - ACTIONS(7890), 1, - anon_sym_DOT_DOT2, - STATE(4106), 1, + STATE(4107), 2, sym_comment, - ACTIONS(2168), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7892), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121940] = 8, + aux_sym__inter_double_quotes_repeat1, + [121963] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7518), 1, - sym_identifier, - ACTIONS(7702), 1, - anon_sym_DOLLAR, - STATE(2868), 1, - sym_val_variable, - STATE(2905), 1, - sym__variable_name, + ACTIONS(7708), 1, + anon_sym_LPAREN, + ACTIONS(7839), 1, + anon_sym_DQUOTE2, STATE(4107), 1, - sym_comment, - STATE(4438), 1, - sym__assignment_pattern, - [121965] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7518), 1, - sym_identifier, - ACTIONS(7520), 1, - anon_sym_DOLLAR, - STATE(2868), 1, - sym_val_variable, + aux_sym__inter_double_quotes_repeat1, STATE(4108), 1, sym_comment, - STATE(4250), 1, - sym__variable_name, - STATE(4454), 1, - sym__assignment_pattern, - [121990] = 8, - ACTIONS(105), 1, + STATE(4482), 1, + sym_expr_interpolated, + ACTIONS(7710), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [121986] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7518), 1, - sym_identifier, - ACTIONS(7520), 1, - anon_sym_DOLLAR, - STATE(2868), 1, - sym_val_variable, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(7740), 1, + anon_sym_LBRACE, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3465), 1, + sym__blosure, STATE(4109), 1, sym_comment, - STATE(4250), 1, - sym__variable_name, - STATE(4455), 1, - sym__assignment_pattern, - [122015] = 4, - ACTIONS(3), 1, + STATE(3221), 2, + sym_block, + sym_val_closure, + [122009] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2314), 1, + sym__entry_separator, + ACTIONS(7841), 1, + anon_sym_DOT_DOT2, STATE(4110), 1, sym_comment, - ACTIONS(803), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(805), 4, + ACTIONS(2316), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7843), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [122032] = 7, + [122030] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3530), 1, + STATE(3472), 1, sym__blosure, + STATE(4092), 1, + aux_sym__repeat_newline, STATE(4111), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [122055] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7714), 1, - anon_sym_LPAREN, - ACTIONS(7894), 1, - anon_sym_DQUOTE2, - STATE(4064), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4112), 1, - sym_comment, - STATE(4402), 1, - sym_expr_interpolated, - ACTIONS(7716), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [122078] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1462), 1, - sym__entry_separator, - ACTIONS(7896), 1, - anon_sym_QMARK2, - STATE(4113), 1, - sym_comment, - ACTIONS(1460), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [122097] = 7, + [122053] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(3592), 1, + STATE(3472), 1, sym__blosure, - STATE(4114), 1, + STATE(4112), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [122120] = 7, + [122076] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7714), 1, + ACTIONS(7708), 1, anon_sym_LPAREN, - ACTIONS(7898), 1, + ACTIONS(7845), 1, anon_sym_DQUOTE2, - STATE(3988), 1, + STATE(4107), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4115), 1, + STATE(4113), 1, sym_comment, - STATE(4402), 1, + STATE(4482), 1, sym_expr_interpolated, - ACTIONS(7716), 2, + ACTIONS(7710), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [122143] = 7, + [122099] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2271), 1, + sym__entry_separator, + ACTIONS(7847), 1, + anon_sym_DOT_DOT2, + STATE(4114), 1, + sym_comment, + ACTIONS(2273), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(7849), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [122120] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3539), 1, + STATE(3421), 1, sym__blosure, - STATE(4033), 1, + STATE(4094), 1, aux_sym__repeat_newline, - STATE(4116), 1, + STATE(4115), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [122166] = 7, + [122143] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(1804), 1, + sym__unquoted_pattern, + ACTIONS(7851), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7853), 1, + aux_sym__immediate_decimal_token5, + STATE(4116), 1, + sym_comment, + ACTIONS(1802), 3, sym__newline, - ACTIONS(7720), 1, - anon_sym_LBRACE, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3245), 1, - sym__blosure, + anon_sym_PIPE, + anon_sym_EQ_GT, + [122164] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5088), 1, + aux_sym_unquoted_token2, + ACTIONS(6978), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7275), 1, + aux_sym__immediate_decimal_token2, STATE(4117), 1, sym_comment, - STATE(3078), 2, - sym_block, - sym_val_closure, - [122189] = 8, + STATE(5256), 1, + sym__immediate_decimal, + ACTIONS(7277), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [122187] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1909), 1, + ACTIONS(2146), 1, sym__entry_separator, - ACTIONS(1911), 1, - anon_sym_GT2, - ACTIONS(7430), 1, - anon_sym_DOT2, - STATE(3951), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(7855), 1, + anon_sym_DOT_DOT2, STATE(4118), 1, sym_comment, - STATE(4251), 1, - sym_path, - STATE(4580), 1, - sym_cell_path, - [122214] = 7, + ACTIONS(2148), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(7857), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [122208] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2251), 1, + sym__entry_separator, + ACTIONS(7859), 1, + anon_sym_DOT_DOT2, + STATE(4119), 1, + sym_comment, + ACTIONS(2253), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(7861), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [122229] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3593), 1, + STATE(3422), 1, sym__blosure, - STATE(4119), 1, + STATE(4097), 1, + aux_sym__repeat_newline, + STATE(4120), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [122237] = 7, + [122252] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5088), 1, + aux_sym_unquoted_token2, + ACTIONS(6889), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7279), 1, + aux_sym__immediate_decimal_token2, + STATE(4121), 1, + sym_comment, + STATE(4493), 1, + sym__immediate_decimal, + ACTIONS(7281), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [122275] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3593), 1, + STATE(3181), 1, sym__blosure, - STATE(4120), 1, - sym_comment, - STATE(4156), 1, + STATE(4099), 1, aux_sym__repeat_newline, - STATE(3078), 2, + STATE(4122), 1, + sym_comment, + STATE(3221), 2, sym_block, sym_val_closure, - [122260] = 5, + [122298] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(4121), 1, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3422), 1, + sym__blosure, + STATE(4123), 1, sym_comment, - STATE(4470), 1, + STATE(3221), 2, sym_block, - ACTIONS(7900), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122279] = 6, + sym_val_closure, + [122321] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4197), 1, - anon_sym_DOT_DOT2, - ACTIONS(7759), 1, + ACTIONS(1812), 1, sym__unquoted_pattern, - STATE(4122), 1, + ACTIONS(7614), 1, + aux_sym__immediate_decimal_token5, + STATE(4124), 1, sym_comment, - ACTIONS(4199), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7820), 2, - sym_filesize_unit, - sym_duration_unit, - [122300] = 7, + ACTIONS(1810), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [122340] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(3594), 1, + STATE(3181), 1, sym__blosure, - STATE(4123), 1, + STATE(4125), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [122323] = 7, + [122363] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7714), 1, + ACTIONS(7708), 1, anon_sym_LPAREN, - ACTIONS(7902), 1, + ACTIONS(7863), 1, anon_sym_DQUOTE2, - STATE(4064), 1, + STATE(4108), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4124), 1, + STATE(4126), 1, sym_comment, - STATE(4402), 1, + STATE(4482), 1, sym_expr_interpolated, - ACTIONS(7716), 2, + ACTIONS(7710), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [122346] = 8, + [122386] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1917), 1, + ACTIONS(1894), 1, sym__entry_separator, - ACTIONS(1919), 1, + ACTIONS(1896), 1, anon_sym_GT2, - ACTIONS(7430), 1, + ACTIONS(7405), 1, anon_sym_DOT2, - STATE(3951), 1, + STATE(3941), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4125), 1, + STATE(4127), 1, sym_comment, - STATE(4251), 1, + STATE(4261), 1, sym_path, - STATE(4528), 1, + STATE(4571), 1, sym_cell_path, - [122371] = 7, + [122411] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7714), 1, - anon_sym_LPAREN, - ACTIONS(7904), 1, - anon_sym_DQUOTE2, - STATE(4126), 1, - sym_comment, - STATE(4142), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4402), 1, - sym_expr_interpolated, - ACTIONS(7716), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [122394] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(4127), 1, - sym_comment, - STATE(4471), 1, - sym_block, - ACTIONS(7900), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122413] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(7720), 1, - anon_sym_LBRACE, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3540), 1, - sym__blosure, + ACTIONS(1934), 1, + sym__entry_separator, + ACTIONS(1936), 1, + anon_sym_GT2, + ACTIONS(7405), 1, + anon_sym_DOT2, + STATE(3941), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(4128), 1, sym_comment, - STATE(3078), 2, - sym_block, - sym_val_closure, + STATE(4261), 1, + sym_path, + STATE(4502), 1, + sym_cell_path, [122436] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3540), 1, + STATE(3426), 1, sym__blosure, - STATE(4043), 1, + STATE(4101), 1, aux_sym__repeat_newline, STATE(4129), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [122459] = 7, + [122459] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6805), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7267), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7331), 1, - aux_sym_unquoted_token2, + ACTIONS(1904), 1, + sym__entry_separator, + ACTIONS(1906), 1, + anon_sym_GT2, + ACTIONS(7405), 1, + anon_sym_DOT2, + STATE(3941), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(4130), 1, sym_comment, - STATE(4494), 1, - sym__immediate_decimal, - ACTIONS(7269), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [122482] = 7, + STATE(4261), 1, + sym_path, + STATE(4498), 1, + sym_cell_path, + [122484] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6964), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7281), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7331), 1, - aux_sym_unquoted_token2, + ACTIONS(7003), 1, + anon_sym_LPAREN2, + ACTIONS(7867), 1, + sym__entry_separator, + STATE(2283), 1, + aux_sym__types_body_repeat2, STATE(4131), 1, sym_comment, - STATE(5504), 1, - sym__immediate_decimal, - ACTIONS(7283), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [122505] = 8, + STATE(5078), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7865), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [122507] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(467), 1, - anon_sym_RPAREN, - ACTIONS(7704), 1, - sym__newline, - ACTIONS(7706), 1, - anon_sym_SEMI, - STATE(1375), 1, - aux_sym__parenthesized_body_repeat1, - STATE(4132), 1, + ACTIONS(7872), 1, + anon_sym_AT, + STATE(5039), 1, + sym_attribute, + STATE(4132), 2, sym_comment, - STATE(4406), 1, - aux_sym__block_body_repeat1, - STATE(4679), 1, - aux_sym__repeat_newline, - [122530] = 7, + aux_sym_attribute_list_repeat1, + ACTIONS(7870), 3, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + [122526] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7714), 1, + ACTIONS(2271), 1, + sym__entry_separator, + ACTIONS(7875), 1, + anon_sym_DOT_DOT2, + STATE(4133), 1, + sym_comment, + ACTIONS(2273), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7877), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [122547] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7708), 1, anon_sym_LPAREN, - ACTIONS(7906), 1, + ACTIONS(7879), 1, anon_sym_DQUOTE2, - STATE(4064), 1, + STATE(4107), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4133), 1, + STATE(4134), 1, sym_comment, - STATE(4402), 1, + STATE(4482), 1, sym_expr_interpolated, - ACTIONS(7716), 2, + ACTIONS(7710), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [122553] = 7, + [122570] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7742), 1, - anon_sym_DOT_DOT, - ACTIONS(7744), 1, - anon_sym_DOT_DOT2, - ACTIONS(7908), 1, - anon_sym_RBRACK, - ACTIONS(7910), 1, - sym__entry_separator, - STATE(4134), 1, + ACTIONS(2994), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7881), 1, + sym_identifier, + ACTIONS(7883), 1, + anon_sym_DOLLAR, + STATE(2794), 1, + sym__variable_name, + STATE(3059), 1, + sym_val_variable, + STATE(4135), 1, sym_comment, - ACTIONS(7746), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [122576] = 6, - ACTIONS(3), 1, + STATE(4843), 1, + sym__assignment_pattern, + [122595] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(57), 1, - anon_sym_AT, - STATE(4135), 1, + ACTIONS(2994), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7592), 1, + sym_identifier, + ACTIONS(7616), 1, + anon_sym_DOLLAR, + STATE(2849), 1, + sym_val_variable, + STATE(4136), 1, sym_comment, - STATE(4176), 1, - aux_sym_attribute_list_repeat1, - STATE(5029), 1, - sym_attribute, - ACTIONS(7912), 3, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - [122597] = 8, + STATE(4314), 1, + sym__variable_name, + STATE(4845), 1, + sym__assignment_pattern, + [122620] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1901), 1, + ACTIONS(1560), 1, sym__entry_separator, - ACTIONS(1903), 1, - anon_sym_GT2, - ACTIONS(7430), 1, + ACTIONS(7885), 1, anon_sym_DOT2, - STATE(3951), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4136), 1, - sym_comment, - STATE(4251), 1, + STATE(375), 1, sym_path, - STATE(4631), 1, - sym_cell_path, - [122622] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(7720), 1, - anon_sym_LBRACE, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3597), 1, - sym__blosure, - STATE(4137), 1, + ACTIONS(1558), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(4137), 2, sym_comment, - STATE(3078), 2, - sym_block, - sym_val_closure, - [122645] = 7, + aux_sym__where_predicate_lhs_repeat1, + [122641] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(7720), 1, - anon_sym_LBRACE, - STATE(3542), 1, - sym__blosure, - STATE(4044), 1, - aux_sym__repeat_newline, + ACTIONS(1697), 1, + sym__unquoted_pattern_in_record, STATE(4138), 1, sym_comment, - STATE(3078), 2, - sym_block, - sym_val_closure, - [122668] = 7, + STATE(5418), 1, + sym__immediate_decimal, + ACTIONS(7752), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7754), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [122662] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(7720), 1, - anon_sym_LBRACE, - STATE(3597), 1, - sym__blosure, STATE(4139), 1, sym_comment, - STATE(4161), 1, - aux_sym__repeat_newline, - STATE(3078), 2, - sym_block, - sym_val_closure, - [122691] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(7720), 1, - anon_sym_LBRACE, - STATE(3485), 1, - sym__blosure, - STATE(4111), 1, - aux_sym__repeat_newline, - STATE(4140), 1, - sym_comment, - STATE(3078), 2, - sym_block, - sym_val_closure, - [122714] = 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, + [122679] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2986), 1, + ACTIONS(2994), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7914), 1, + ACTIONS(7592), 1, sym_identifier, - ACTIONS(7916), 1, + ACTIONS(7616), 1, anon_sym_DOLLAR, - STATE(2798), 1, - sym__variable_name, - STATE(3069), 1, + STATE(2849), 1, sym_val_variable, - STATE(4141), 1, + STATE(4140), 1, sym_comment, - STATE(4761), 1, + STATE(4314), 1, + sym__variable_name, + STATE(4848), 1, sym__assignment_pattern, - [122739] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7714), 1, - anon_sym_LPAREN, - ACTIONS(7918), 1, - anon_sym_DQUOTE2, - STATE(4064), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4142), 1, - sym_comment, - STATE(4402), 1, - sym_expr_interpolated, - ACTIONS(7716), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [122762] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(7720), 1, - anon_sym_LBRACE, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3523), 1, - sym__blosure, - STATE(4143), 1, - sym_comment, - STATE(3078), 2, - sym_block, - sym_val_closure, - [122785] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(7720), 1, - anon_sym_LBRACE, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3098), 1, - sym__blosure, - STATE(4144), 1, - sym_comment, - STATE(3078), 2, - sym_block, - sym_val_closure, - [122808] = 5, + [122704] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(4145), 1, - sym_comment, - STATE(4436), 1, - sym_block, - ACTIONS(7920), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122827] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1790), 1, - sym__unquoted_pattern, - ACTIONS(7646), 1, + ACTIONS(7255), 1, aux_sym__immediate_decimal_token5, - STATE(4146), 1, + ACTIONS(7888), 1, + anon_sym_DOT, + STATE(4141), 1, sym_comment, - ACTIONS(1788), 4, + ACTIONS(1810), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [122846] = 7, + [122723] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5076), 1, + ACTIONS(5192), 1, aux_sym_unquoted_token2, - ACTIONS(6805), 1, + ACTIONS(6978), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7267), 1, + ACTIONS(7275), 1, aux_sym__immediate_decimal_token2, - STATE(4147), 1, + STATE(4142), 1, sym_comment, - STATE(4494), 1, + STATE(5256), 1, sym__immediate_decimal, - ACTIONS(7269), 2, + ACTIONS(7277), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [122869] = 7, + [122746] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7744), 1, - anon_sym_DOT_DOT2, - ACTIONS(7748), 1, - anon_sym_DOT_DOT, - ACTIONS(7922), 1, - anon_sym_RBRACK, - ACTIONS(7925), 1, - sym__entry_separator, - STATE(4148), 1, + ACTIONS(5192), 1, + aux_sym_unquoted_token2, + ACTIONS(6889), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7279), 1, + aux_sym__immediate_decimal_token2, + STATE(4143), 1, sym_comment, - ACTIONS(7746), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [122892] = 3, + STATE(4493), 1, + sym__immediate_decimal, + ACTIONS(7281), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [122769] = 7, ACTIONS(105), 1, anon_sym_POUND, - STATE(4149), 1, + ACTIONS(7708), 1, + anon_sym_LPAREN, + ACTIONS(7890), 1, + anon_sym_DQUOTE2, + STATE(4134), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4144), 1, sym_comment, - ACTIONS(1527), 6, - anon_sym_RBRACK, + STATE(4482), 1, + sym_expr_interpolated, + ACTIONS(7710), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [122792] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2146), 1, sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [122907] = 5, + ACTIONS(7892), 1, + anon_sym_DOT_DOT2, + STATE(4145), 1, + sym_comment, + ACTIONS(2148), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7894), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [122813] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(4150), 1, + STATE(4146), 1, sym_comment, - STATE(4437), 1, + STATE(4664), 1, sym_block, - ACTIONS(7920), 4, + ACTIONS(7896), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122926] = 7, + [122832] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(7720), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(3481), 1, - sym__blosure, - STATE(4143), 1, - aux_sym__repeat_newline, - STATE(4151), 1, + STATE(4147), 1, sym_comment, - STATE(3078), 2, + STATE(4674), 1, sym_block, - sym_val_closure, - [122949] = 8, + ACTIONS(7896), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122851] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(57), 1, + anon_sym_AT, + STATE(4132), 1, + aux_sym_attribute_list_repeat1, + STATE(4148), 1, + sym_comment, + STATE(5039), 1, + sym_attribute, + ACTIONS(7898), 3, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + [122872] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7708), 1, + anon_sym_LPAREN, + ACTIONS(7900), 1, + anon_sym_DQUOTE2, + STATE(3986), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4149), 1, + sym_comment, + STATE(4482), 1, + sym_expr_interpolated, + ACTIONS(7710), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [122895] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1466), 1, + sym__entry_separator, + ACTIONS(7902), 1, + anon_sym_QMARK2, + STATE(4150), 1, + sym_comment, + ACTIONS(1464), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [122914] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2634), 1, + ACTIONS(2690), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7518), 1, + ACTIONS(7592), 1, sym_identifier, - ACTIONS(7702), 1, + ACTIONS(7594), 1, anon_sym_DOLLAR, - STATE(2868), 1, + STATE(2849), 1, sym_val_variable, - STATE(3039), 1, + STATE(2963), 1, sym__variable_name, + STATE(4151), 1, + sym_comment, + STATE(4690), 1, + sym__assignment_pattern_parenthesized, + [122939] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4187), 1, + aux_sym_unquoted_token2, + ACTIONS(6889), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7279), 1, + aux_sym__immediate_decimal_token2, STATE(4152), 1, sym_comment, - STATE(4438), 1, - sym__assignment_pattern, - [122974] = 8, + STATE(4493), 1, + sym__immediate_decimal, + ACTIONS(7281), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [122962] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7518), 1, - sym_identifier, - ACTIONS(7520), 1, - anon_sym_DOLLAR, - STATE(2868), 1, - sym_val_variable, + ACTIONS(2314), 1, + sym__entry_separator, + ACTIONS(7904), 1, + anon_sym_DOT_DOT2, STATE(4153), 1, sym_comment, - STATE(4282), 1, - sym__variable_name, - STATE(4454), 1, - sym__assignment_pattern, - [122999] = 8, + ACTIONS(2316), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(7906), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [122983] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7518), 1, - sym_identifier, - ACTIONS(7520), 1, - anon_sym_DOLLAR, - STATE(2868), 1, - sym_val_variable, + ACTIONS(4187), 1, + aux_sym_unquoted_token2, + ACTIONS(6978), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7275), 1, + aux_sym__immediate_decimal_token2, STATE(4154), 1, - sym_comment, - STATE(4282), 1, - sym__variable_name, - STATE(4455), 1, - sym__assignment_pattern, - [123024] = 7, + sym_comment, + STATE(5256), 1, + sym__immediate_decimal, + ACTIONS(7277), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [123006] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7714), 1, + ACTIONS(7708), 1, anon_sym_LPAREN, - ACTIONS(7928), 1, + ACTIONS(7908), 1, anon_sym_DQUOTE2, - STATE(4064), 1, + STATE(4107), 1, aux_sym__inter_double_quotes_repeat1, STATE(4155), 1, sym_comment, - STATE(4402), 1, + STATE(4482), 1, sym_expr_interpolated, - ACTIONS(7716), 2, + ACTIONS(7710), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [123047] = 7, - ACTIONS(3), 1, + [123029] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(7720), 1, - anon_sym_LBRACE, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3598), 1, - sym__blosure, + ACTIONS(2251), 1, + sym__entry_separator, + ACTIONS(7910), 1, + anon_sym_DOT_DOT2, STATE(4156), 1, sym_comment, - STATE(3078), 2, - sym_block, - sym_val_closure, - [123070] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1711), 1, - sym__unquoted_pattern, - STATE(4157), 1, - sym_comment, - STATE(5508), 1, - sym__immediate_decimal, - ACTIONS(6964), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6966), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [123091] = 5, + ACTIONS(2253), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7912), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [123050] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1462), 1, + ACTIONS(1569), 1, sym__entry_separator, - ACTIONS(7896), 1, - anon_sym_BANG, - STATE(4158), 1, + ACTIONS(7542), 1, + anon_sym_DOT2, + STATE(375), 1, + sym_path, + STATE(4137), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4157), 1, sym_comment, - ACTIONS(1460), 4, + ACTIONS(1567), 2, anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [123110] = 7, + anon_sym_RBRACE, + [123073] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(7914), 1, + anon_sym_if, + ACTIONS(7916), 1, sym__newline, - ACTIONS(7720), 1, - anon_sym_LBRACE, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3544), 1, - sym__blosure, + ACTIONS(7918), 1, + anon_sym_PIPE, + ACTIONS(7920), 1, + anon_sym_EQ_GT, + STATE(4158), 1, + sym_comment, + STATE(4672), 1, + aux_sym_match_pattern_repeat1, + STATE(5508), 1, + sym_match_guard, + [123098] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7592), 1, + sym_identifier, + ACTIONS(7616), 1, + anon_sym_DOLLAR, + STATE(2849), 1, + sym_val_variable, STATE(4159), 1, sym_comment, - STATE(3078), 2, - sym_block, - sym_val_closure, - [123133] = 7, + STATE(4246), 1, + sym__variable_name, + STATE(4395), 1, + sym__assignment_pattern, + [123123] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(7720), 1, - anon_sym_LBRACE, - STATE(3073), 1, - sym__blosure, - STATE(4117), 1, - aux_sym__repeat_newline, STATE(4160), 1, sym_comment, - STATE(3078), 2, - sym_block, - sym_val_closure, - [123156] = 7, + ACTIONS(801), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(803), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [123140] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3599), 1, + STATE(3442), 1, sym__blosure, + STATE(4109), 1, + aux_sym__repeat_newline, STATE(4161), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [123179] = 6, - ACTIONS(3), 1, + [123163] = 8, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7930), 1, - sym_long_flag_identifier, - ACTIONS(7932), 1, - anon_sym_EQ2, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7592), 1, + sym_identifier, + ACTIONS(7616), 1, + anon_sym_DOLLAR, + STATE(2849), 1, + sym_val_variable, STATE(4162), 1, sym_comment, - STATE(4803), 1, - sym__flag_equals_value, - ACTIONS(4355), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [123200] = 7, + STATE(4283), 1, + sym__variable_name, + STATE(4703), 1, + sym__assignment_pattern_parenthesized, + [123188] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3578), 1, + STATE(3172), 1, sym__blosure, + STATE(4105), 1, + aux_sym__repeat_newline, STATE(4163), 1, sym_comment, - STATE(4198), 1, - aux_sym__repeat_newline, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [123223] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7552), 1, - anon_sym_DOT2, - ACTIONS(7934), 1, - anon_sym_RBRACE, - ACTIONS(7936), 1, - sym__entry_separator, - STATE(366), 1, - sym_path, - STATE(4164), 1, - sym_comment, - STATE(4194), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4971), 1, - sym_cell_path, - [123248] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7518), 1, - sym_identifier, - ACTIONS(7702), 1, - anon_sym_DOLLAR, - STATE(2868), 1, - sym_val_variable, - STATE(3016), 1, - sym__variable_name, - STATE(4165), 1, - sym_comment, - STATE(4881), 1, - sym__assignment_pattern_parenthesized, - [123273] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7518), 1, - sym_identifier, - ACTIONS(7520), 1, - anon_sym_DOLLAR, - STATE(2868), 1, - sym_val_variable, - STATE(4166), 1, - sym_comment, - STATE(4337), 1, - sym__variable_name, - STATE(4886), 1, - sym__assignment_pattern_parenthesized, - [123298] = 8, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7518), 1, - sym_identifier, - ACTIONS(7520), 1, - anon_sym_DOLLAR, - STATE(2868), 1, - sym_val_variable, - STATE(4167), 1, - sym_comment, - STATE(4337), 1, - sym__variable_name, - STATE(4893), 1, - sym__assignment_pattern_parenthesized, - [123323] = 7, + [123211] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(3151), 1, + STATE(3442), 1, sym__blosure, - STATE(4168), 1, + STATE(4164), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [123346] = 7, + [123234] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(3482), 1, + STATE(3172), 1, sym__blosure, - STATE(4169), 1, + STATE(4165), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [123369] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7650), 1, - aux_sym__immediate_decimal_token5, - STATE(4170), 1, - sym_comment, - ACTIONS(1788), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1790), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [123388] = 7, + [123257] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5076), 1, - aux_sym_unquoted_token2, - ACTIONS(6964), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7281), 1, - aux_sym__immediate_decimal_token2, - STATE(4171), 1, + ACTIONS(7708), 1, + anon_sym_LPAREN, + ACTIONS(7922), 1, + anon_sym_DQUOTE2, + STATE(4107), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4166), 1, sym_comment, - STATE(5504), 1, - sym__immediate_decimal, - ACTIONS(7283), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [123411] = 7, + STATE(4482), 1, + sym_expr_interpolated, + ACTIONS(7710), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [123280] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3151), 1, + STATE(3446), 1, sym__blosure, - STATE(4006), 1, + STATE(4112), 1, aux_sym__repeat_newline, - STATE(4172), 1, + STATE(4167), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [123434] = 7, + [123303] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3077), 1, + STATE(3450), 1, sym__blosure, - STATE(4144), 1, + STATE(4123), 1, aux_sym__repeat_newline, - STATE(4173), 1, + STATE(4168), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [123457] = 7, + [123326] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7492), 1, + anon_sym_DOT2, + STATE(4169), 1, + sym_comment, + STATE(4190), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4465), 1, + sym_path, + ACTIONS(1567), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [123347] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7924), 1, + anon_sym_DOT, + ACTIONS(7926), 1, + aux_sym__immediate_decimal_token5, + STATE(4170), 1, + sym_comment, + ACTIONS(1810), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1812), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [123368] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3482), 1, + STATE(3163), 1, sym__blosure, - STATE(4008), 1, + STATE(4125), 1, aux_sym__repeat_newline, - STATE(4174), 1, + STATE(4171), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [123480] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7704), 1, - sym__newline, - ACTIONS(7706), 1, - anon_sym_SEMI, - ACTIONS(7938), 1, - anon_sym_RPAREN, - STATE(1375), 1, - aux_sym__parenthesized_body_repeat1, - STATE(4175), 1, - sym_comment, - STATE(4417), 1, - aux_sym__block_body_repeat1, - STATE(4679), 1, - aux_sym__repeat_newline, - [123505] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7942), 1, - anon_sym_AT, - STATE(5029), 1, - sym_attribute, - STATE(4176), 2, - sym_comment, - aux_sym_attribute_list_repeat1, - ACTIONS(7940), 3, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - [123524] = 6, + [123391] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1492), 1, - sym__entry_separator, - ACTIONS(7945), 1, - anon_sym_DOT2, - STATE(366), 1, - sym_path, - ACTIONS(1490), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(4177), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - [123545] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1790), 1, - sym__unquoted_pattern, - ACTIONS(7948), 1, - anon_sym_DOT, - ACTIONS(7950), 1, - aux_sym__immediate_decimal_token5, - STATE(4178), 1, + ACTIONS(6978), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7275), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7335), 1, + aux_sym_unquoted_token2, + STATE(4172), 1, sym_comment, - ACTIONS(1788), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123566] = 7, + STATE(5256), 1, + sym__immediate_decimal, + ACTIONS(7277), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [123414] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7303), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7625), 1, + ACTIONS(6889), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7952), 1, + ACTIONS(7279), 1, aux_sym__immediate_decimal_token2, - STATE(4179), 1, + ACTIONS(7335), 1, + aux_sym_unquoted_token2, + STATE(4173), 1, sym_comment, - STATE(4619), 1, + STATE(4493), 1, sym__immediate_decimal, - ACTIONS(7954), 2, + ACTIONS(7281), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [123589] = 7, + [123437] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3483), 1, - sym__blosure, - STATE(4020), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(4180), 1, + STATE(3450), 1, + sym__blosure, + STATE(4174), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [123612] = 7, + [123460] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(3545), 1, + STATE(3163), 1, sym__blosure, - STATE(4181), 1, + STATE(4175), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [123635] = 5, + [123483] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7956), 1, + ACTIONS(3725), 1, + sym__entry_separator, + ACTIONS(7542), 1, anon_sym_DOT2, - STATE(4617), 1, + ACTIONS(7928), 1, + anon_sym_RBRACE, + STATE(375), 1, sym_path, - STATE(4182), 2, - sym_comment, + STATE(4157), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1490), 3, + STATE(4176), 1, + sym_comment, + STATE(4589), 1, + sym_cell_path, + [123508] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5407), 1, anon_sym_RBRACK, + ACTIONS(5409), 1, sym__entry_separator, - sym__table_head_separator, - [123654] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7558), 1, + ACTIONS(7542), 1, anon_sym_DOT2, - STATE(2485), 1, + STATE(375), 1, sym_path, - STATE(4032), 1, + STATE(4157), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4183), 1, + STATE(4177), 1, sym_comment, - ACTIONS(1579), 3, - anon_sym_EQ, - sym__newline, - anon_sym_COLON, - [123675] = 7, + STATE(5050), 1, + sym_cell_path, + [123533] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7714), 1, + ACTIONS(7708), 1, anon_sym_LPAREN, - ACTIONS(7959), 1, + ACTIONS(7932), 1, anon_sym_DQUOTE2, - STATE(4112), 1, + STATE(4166), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4184), 1, + STATE(4178), 1, sym_comment, - STATE(4402), 1, + STATE(4482), 1, sym_expr_interpolated, - ACTIONS(7716), 2, + ACTIONS(7710), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [123698] = 7, + [123556] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7714), 1, + ACTIONS(7003), 1, + anon_sym_LPAREN2, + ACTIONS(7867), 1, + sym__entry_separator, + STATE(2287), 1, + aux_sym__types_body_repeat2, + STATE(4179), 1, + sym_comment, + STATE(5078), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7934), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [123579] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7809), 1, + anon_sym_DOT_DOT2, + ACTIONS(7813), 1, + anon_sym_DOT_DOT, + ACTIONS(7936), 1, + anon_sym_RBRACK, + ACTIONS(7939), 1, + sym__entry_separator, + STATE(4180), 1, + sym_comment, + ACTIONS(7811), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [123602] = 8, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7592), 1, + sym_identifier, + ACTIONS(7616), 1, + anon_sym_DOLLAR, + STATE(2849), 1, + sym_val_variable, + STATE(4181), 1, + sym_comment, + STATE(4283), 1, + sym__variable_name, + STATE(4683), 1, + sym__assignment_pattern_parenthesized, + [123627] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7807), 1, + anon_sym_DOT_DOT, + ACTIONS(7809), 1, + anon_sym_DOT_DOT2, + ACTIONS(7942), 1, + anon_sym_RBRACK, + ACTIONS(7944), 1, + sym__entry_separator, + STATE(4182), 1, + sym_comment, + ACTIONS(7811), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [123650] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7708), 1, anon_sym_LPAREN, - ACTIONS(7961), 1, + ACTIONS(7946), 1, anon_sym_DQUOTE2, - STATE(4030), 1, + STATE(4155), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4185), 1, + STATE(4183), 1, sym_comment, - STATE(4402), 1, + STATE(4482), 1, sym_expr_interpolated, - ACTIONS(7716), 2, + ACTIONS(7710), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [123721] = 7, + [123673] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3545), 1, + STATE(3136), 1, sym__blosure, - STATE(4010), 1, - aux_sym__repeat_newline, - STATE(4186), 1, + STATE(4184), 1, sym_comment, - STATE(3078), 2, + STATE(4202), 1, + aux_sym__repeat_newline, + STATE(3221), 2, sym_block, sym_val_closure, - [123744] = 7, + [123696] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3484), 1, + STATE(3511), 1, sym__blosure, - STATE(4187), 1, + STATE(4185), 1, sym_comment, - STATE(3078), 2, + STATE(4199), 1, + aux_sym__repeat_newline, + STATE(3221), 2, sym_block, sym_val_closure, - [123767] = 5, + [123719] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1868), 1, - sym__unquoted_pattern, - ACTIONS(7963), 1, - aux_sym__immediate_decimal_token5, - STATE(4188), 1, - sym_comment, - ACTIONS(1866), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123786] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7660), 1, - aux_sym__immediate_decimal_token5, - STATE(4189), 1, - sym_comment, - ACTIONS(1788), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1790), 3, + ACTIONS(7714), 1, sym__newline, + ACTIONS(7716), 1, anon_sym_SEMI, - sym__unquoted_pattern, - [123805] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(7720), 1, - anon_sym_LBRACE, - STATE(501), 1, + ACTIONS(7948), 1, + anon_sym_RPAREN, + STATE(1376), 1, + aux_sym__parenthesized_body_repeat1, + STATE(4186), 1, + sym_comment, + STATE(4668), 1, + aux_sym__block_body_repeat1, + STATE(4701), 1, aux_sym__repeat_newline, - STATE(3549), 1, - sym__blosure, - STATE(4190), 1, + [123744] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1466), 1, + sym__entry_separator, + ACTIONS(7902), 1, + anon_sym_BANG, + STATE(4187), 1, sym_comment, - STATE(3078), 2, - sym_block, - sym_val_closure, - [123828] = 7, + ACTIONS(1464), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [123763] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(7720), 1, - anon_sym_LBRACE, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3422), 1, - sym__blosure, - STATE(4191), 1, + ACTIONS(7185), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7950), 1, + anon_sym_DOT_DOT2, + STATE(4188), 1, sym_comment, - STATE(3078), 2, - sym_block, - sym_val_closure, - [123851] = 7, + ACTIONS(7952), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7954), 2, + sym_filesize_unit, + sym_duration_unit, + [123784] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5171), 1, - aux_sym_unquoted_token2, - ACTIONS(6805), 1, + ACTIONS(7185), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7752), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7267), 1, + ACTIONS(7956), 1, aux_sym__immediate_decimal_token2, - STATE(4192), 1, + STATE(4189), 1, sym_comment, - STATE(4494), 1, + STATE(5512), 1, sym__immediate_decimal, - ACTIONS(7269), 2, + ACTIONS(7958), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [123874] = 7, + [123807] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5171), 1, - aux_sym_unquoted_token2, - ACTIONS(6964), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7281), 1, - aux_sym__immediate_decimal_token2, - STATE(4193), 1, + ACTIONS(7960), 1, + anon_sym_DOT2, + STATE(4465), 1, + sym_path, + STATE(4190), 2, sym_comment, - STATE(5504), 1, - sym__immediate_decimal, - ACTIONS(7283), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [123897] = 7, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1558), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [123826] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1579), 1, - sym__entry_separator, - ACTIONS(7552), 1, + ACTIONS(7542), 1, anon_sym_DOT2, - STATE(366), 1, + ACTIONS(7963), 1, + anon_sym_RBRACE, + ACTIONS(7965), 1, + sym__entry_separator, + STATE(375), 1, sym_path, - STATE(4177), 1, + STATE(4157), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4194), 1, + STATE(4191), 1, sym_comment, - ACTIONS(1577), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [123920] = 7, + STATE(5079), 1, + sym_cell_path, + [123851] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6805), 1, + ACTIONS(7185), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7526), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7267), 1, + ACTIONS(7967), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7759), 1, - aux_sym_unquoted_token2, - STATE(4195), 1, + STATE(4192), 1, sym_comment, - STATE(4494), 1, + STATE(4380), 1, sym__immediate_decimal, - ACTIONS(7269), 2, + ACTIONS(7969), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [123943] = 6, + [123874] = 8, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__entry_separator, - ACTIONS(7965), 1, - anon_sym_DOT_DOT2, - STATE(4196), 1, + ACTIONS(2800), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2838), 1, + anon_sym_COLON2, + ACTIONS(5257), 1, + anon_sym_DOLLAR, + ACTIONS(7592), 1, + sym_identifier, + STATE(2849), 1, + sym_val_variable, + STATE(4193), 1, sym_comment, - ACTIONS(1616), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7967), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [123964] = 7, - ACTIONS(105), 1, + STATE(5479), 1, + sym__variable_name, + [123899] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5495), 1, - sym__space, - ACTIONS(7850), 1, - anon_sym_EQ2, - ACTIONS(7969), 1, - sym_short_flag_identifier, - STATE(3116), 1, - sym__flag_equals_value, - STATE(4197), 1, - sym_comment, - ACTIONS(5493), 2, + ACTIONS(2966), 1, sym__newline, - anon_sym_SEMI, - [123987] = 7, + ACTIONS(7740), 1, + anon_sym_LBRACE, + STATE(3481), 1, + sym__blosure, + STATE(4164), 1, + aux_sym__repeat_newline, + STATE(4194), 1, + sym_comment, + STATE(3221), 2, + sym_block, + sym_val_closure, + [123922] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1697), 1, + sym__unquoted_pattern, + STATE(4195), 1, + sym_comment, + STATE(5530), 1, + sym__immediate_decimal, + ACTIONS(6978), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6980), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [123943] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3596), 1, + STATE(3148), 1, sym__blosure, - STATE(4198), 1, + STATE(4165), 1, + aux_sym__repeat_newline, + STATE(4196), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, + [123966] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7971), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7973), 1, + aux_sym__immediate_decimal_token5, + STATE(4197), 1, + sym_comment, + ACTIONS(1802), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1804), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [123987] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5115), 1, + anon_sym_DOT2, + STATE(2472), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2499), 1, + sym_path, + STATE(3014), 1, + sym_cell_path, + STATE(4198), 1, + sym_comment, + ACTIONS(5362), 2, + anon_sym_EQ, + anon_sym_GT2, [124010] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(501), 1, + STATE(522), 1, aux_sym__repeat_newline, - STATE(3160), 1, + STATE(3481), 1, sym__blosure, STATE(4199), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, [124033] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3484), 1, + STATE(3146), 1, sym__blosure, - STATE(4081), 1, + STATE(4175), 1, aux_sym__repeat_newline, STATE(4200), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, [124056] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3523), 1, + STATE(3484), 1, sym__blosure, - STATE(4128), 1, + STATE(4174), 1, aux_sym__repeat_newline, STATE(4201), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, [124079] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(7720), 1, + ACTIONS(7740), 1, anon_sym_LBRACE, - STATE(3587), 1, - sym__blosure, - STATE(4137), 1, + STATE(522), 1, aux_sym__repeat_newline, + STATE(3148), 1, + sym__blosure, STATE(4202), 1, sym_comment, - STATE(3078), 2, + STATE(3221), 2, sym_block, sym_val_closure, - [124102] = 6, + [124102] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7971), 1, - anon_sym_DQUOTE, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(2939), 1, + sym_block, STATE(4203), 1, sym_comment, - STATE(4379), 1, + STATE(4556), 1, + aux_sym__repeat_newline, + [124124] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7975), 1, + anon_sym_DQUOTE, + STATE(4204), 1, + sym_comment, + STATE(4480), 1, aux_sym_string_content_repeat1, - STATE(5323), 1, + STATE(5385), 1, sym_string_content, - ACTIONS(7973), 2, + ACTIONS(7977), 2, sym__escaped_str_content, sym_escape_sequence, - [124122] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4204), 1, - sym_comment, - STATE(5147), 1, - sym__immediate_decimal, - ACTIONS(7798), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7870), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [124140] = 4, + [124144] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7975), 1, - anon_sym_BANG, + ACTIONS(1262), 1, + sym__space, + ACTIONS(2636), 1, + anon_sym_LPAREN2, + ACTIONS(2638), 1, + sym__unquoted_pattern, STATE(4205), 1, sym_comment, - ACTIONS(1460), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [124156] = 5, + ACTIONS(1246), 2, + sym__newline, + anon_sym_SEMI, + [124164] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7979), 1, + aux_sym__immediate_decimal_token5, STATE(4206), 1, sym_comment, - STATE(4255), 1, - aux_sym_parameter_repeat2, - ACTIONS(1416), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(7977), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124174] = 6, + ACTIONS(1874), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1876), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [124182] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2114), 1, - sym__entry_separator, - ACTIONS(2116), 1, - anon_sym_RBRACE, - ACTIONS(7979), 1, - anon_sym_DOT_DOT2, STATE(4207), 1, sym_comment, - ACTIONS(7981), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [124194] = 5, + ACTIONS(6483), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6485), 3, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_RBRACE, + [124198] = 6, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(7724), 1, + anon_sym_DOT_DOT2, + ACTIONS(7981), 1, + anon_sym_RBRACE, ACTIONS(7983), 1, - anon_sym_LT, + sym__entry_separator, STATE(4208), 1, sym_comment, - ACTIONS(5249), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6085), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [124212] = 5, - ACTIONS(105), 1, + ACTIONS(7726), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [124218] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1904), 1, + sym__table_head_separator, ACTIONS(7985), 1, - anon_sym_LT, + anon_sym_DOT2, STATE(4209), 1, sym_comment, - ACTIONS(5249), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6085), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [124230] = 6, - ACTIONS(105), 1, + STATE(4417), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4990), 1, + sym_path, + STATE(5370), 1, + sym_cell_path, + [124240] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1788), 1, - sym__entry_separator, - ACTIONS(7259), 1, + ACTIONS(7764), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7987), 1, - anon_sym_DOT, STATE(4210), 1, sym_comment, - ACTIONS(1790), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124250] = 5, + ACTIONS(1810), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1812), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [124258] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1366), 1, - aux_sym__block_body_repeat1, STATE(4211), 1, sym_comment, - ACTIONS(155), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(465), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [124268] = 7, + STATE(5127), 1, + sym__immediate_decimal, + ACTIONS(7752), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7754), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [124276] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1917), 1, - sym__table_head_separator, - ACTIONS(7989), 1, - anon_sym_DOT2, + ACTIONS(3930), 1, + anon_sym_LBRACE, STATE(4212), 1, sym_comment, - STATE(4574), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4978), 1, - sym_path, - STATE(5375), 1, - sym_cell_path, - [124290] = 5, + STATE(4933), 1, + sym_block, + ACTIONS(7896), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [124294] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, STATE(4213), 1, sym_comment, - STATE(4692), 1, + STATE(4899), 1, sym_block, - ACTIONS(7822), 3, + ACTIONS(7896), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124308] = 7, - ACTIONS(3), 1, + [124312] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1901), 1, - sym__table_head_separator, + ACTIONS(7724), 1, + anon_sym_DOT_DOT2, + ACTIONS(7987), 1, + anon_sym_RBRACE, ACTIONS(7989), 1, - anon_sym_DOT2, + sym__entry_separator, STATE(4214), 1, sym_comment, - STATE(4574), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4978), 1, - sym_path, - STATE(5259), 1, - sym_cell_path, - [124330] = 4, + ACTIONS(7726), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [124332] = 6, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(7724), 1, + anon_sym_DOT_DOT2, + ACTIONS(7991), 1, + anon_sym_RBRACE, + ACTIONS(7993), 1, + sym__entry_separator, STATE(4215), 1, sym_comment, - ACTIONS(2576), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2578), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [124346] = 6, + ACTIONS(7726), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [124352] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7908), 1, - anon_sym_RBRACK, - ACTIONS(7910), 1, - sym__entry_separator, - ACTIONS(7965), 1, - anon_sym_DOT_DOT2, STATE(4216), 1, sym_comment, - ACTIONS(7967), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [124366] = 6, + ACTIONS(6513), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6515), 3, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_RBRACE, + [124368] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2104), 1, - sym__entry_separator, - ACTIONS(2108), 1, - anon_sym_LPAREN2, + ACTIONS(7995), 1, + anon_sym_DQUOTE, STATE(4217), 1, sym_comment, - ACTIONS(2106), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124386] = 4, - ACTIONS(3), 1, + STATE(4480), 1, + aux_sym_string_content_repeat1, + STATE(5302), 1, + sym_string_content, + ACTIONS(7977), 2, + sym__escaped_str_content, + sym_escape_sequence, + [124388] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1776), 1, - sym__unquoted_pattern, + ACTIONS(7997), 1, + anon_sym_LPAREN, + ACTIONS(7999), 1, + anon_sym_SQUOTE2, + ACTIONS(8001), 1, + sym_unescaped_interpolated_content, STATE(4218), 1, sym_comment, - ACTIONS(1774), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [124402] = 6, + STATE(4243), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4874), 1, + sym_expr_interpolated, + [124410] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2118), 1, + ACTIONS(2720), 1, anon_sym_LPAREN2, - ACTIONS(2124), 1, + ACTIONS(2722), 1, sym__unquoted_pattern_in_list, - ACTIONS(2696), 1, + ACTIONS(7813), 1, + anon_sym_DOT_DOT, + ACTIONS(7936), 1, + anon_sym_RBRACK, + ACTIONS(7939), 1, sym__entry_separator, STATE(4219), 1, sym_comment, - ACTIONS(2698), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124422] = 6, - ACTIONS(105), 1, + [124432] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2114), 1, - sym__entry_separator, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern_in_list, + ACTIONS(8003), 1, + sym_identifier, + ACTIONS(8005), 1, + anon_sym_DOLLAR, + STATE(2849), 1, + sym_val_variable, STATE(4220), 1, sym_comment, - ACTIONS(2116), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124442] = 4, - ACTIONS(3), 1, + STATE(4283), 1, + sym__variable_name, + STATE(4829), 1, + sym__assignment_pattern_parenthesized, + [124454] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1868), 1, - sym__unquoted_pattern, STATE(4221), 1, sym_comment, - ACTIONS(1866), 4, - anon_sym_if, + ACTIONS(1874), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1876), 3, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [124458] = 6, + anon_sym_SEMI, + sym__unquoted_pattern, + [124470] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1711), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2660), 1, - sym__entry_separator, - ACTIONS(2718), 1, - anon_sym_LPAREN2, + ACTIONS(7997), 1, + anon_sym_LPAREN, + ACTIONS(8001), 1, + sym_unescaped_interpolated_content, + ACTIONS(8007), 1, + anon_sym_SQUOTE2, STATE(4222), 1, sym_comment, - ACTIONS(2662), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124478] = 4, + STATE(4281), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4874), 1, + sym_expr_interpolated, + [124492] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1923), 1, - sym__unquoted_pattern, + ACTIONS(8009), 1, + anon_sym_RBRACK, + ACTIONS(8012), 1, + anon_sym_DOT_DOT, STATE(4223), 1, sym_comment, - ACTIONS(1921), 4, - anon_sym_if, + STATE(4335), 1, + aux_sym_parameter_repeat2, + ACTIONS(1420), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [124494] = 6, + anon_sym_COMMA, + [124512] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2676), 1, - sym__entry_separator, - ACTIONS(2684), 1, - anon_sym_LPAREN2, - ACTIONS(2686), 1, - sym__unquoted_pattern_in_list, + ACTIONS(8014), 1, + anon_sym_QMARK2, STATE(4224), 1, sym_comment, - ACTIONS(2678), 2, + ACTIONS(1464), 4, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124514] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(7991), 1, - anon_sym_LPAREN, - ACTIONS(7994), 1, - anon_sym_SQUOTE2, - ACTIONS(7996), 1, - sym_unescaped_interpolated_content, - STATE(4921), 1, - sym_expr_interpolated, - STATE(4225), 2, - sym_comment, - aux_sym__inter_single_quotes_repeat1, - [124534] = 6, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [124528] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4462), 1, - sym__space, - ACTIONS(7850), 1, - anon_sym_EQ2, - STATE(3058), 1, - sym__flag_equals_value, - STATE(4226), 1, - sym_comment, - ACTIONS(4460), 2, - sym__newline, - anon_sym_SEMI, - [124554] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(4227), 1, - sym_comment, - STATE(4811), 1, - sym_block, - ACTIONS(7920), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124572] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(4228), 1, + ACTIONS(2994), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(5257), 1, + anon_sym_DOLLAR, + ACTIONS(7592), 1, + sym_identifier, + STATE(2849), 1, + sym_val_variable, + STATE(4225), 1, sym_comment, - STATE(4931), 1, - sym_block, - ACTIONS(7920), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124590] = 6, + STATE(5387), 1, + sym__variable_name, + [124550] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7999), 1, - anon_sym_DQUOTE, - STATE(4229), 1, - sym_comment, - STATE(4379), 1, - aux_sym_string_content_repeat1, - STATE(5309), 1, - sym_string_content, - ACTIONS(7973), 2, - sym__escaped_str_content, - sym_escape_sequence, - [124610] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(2104), 1, - anon_sym_LBRACE, - ACTIONS(8001), 1, + ACTIONS(7724), 1, anon_sym_DOT_DOT2, - STATE(4230), 1, + ACTIONS(8016), 1, + anon_sym_RBRACE, + ACTIONS(8018), 1, + sym__entry_separator, + STATE(4226), 1, + sym_comment, + ACTIONS(7726), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [124570] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7724), 1, + anon_sym_DOT_DOT2, + ACTIONS(8020), 1, + anon_sym_RBRACE, + ACTIONS(8022), 1, + sym__entry_separator, + STATE(4227), 1, sym_comment, - ACTIONS(8003), 2, + ACTIONS(7726), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [124630] = 7, + [124590] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8024), 1, + aux_sym__immediate_decimal_token5, + STATE(4228), 1, + sym_comment, + ACTIONS(1874), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1876), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [124608] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(5660), 1, + ACTIONS(6020), 1, anon_sym_EQ, - ACTIONS(8005), 1, + ACTIONS(8026), 1, anon_sym_COLON, - STATE(4231), 1, + STATE(4229), 1, sym_comment, - STATE(4888), 1, + STATE(4876), 1, aux_sym__repeat_newline, - STATE(5506), 1, + STATE(5376), 1, sym_param_type, - [124652] = 6, + [124630] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2604), 1, + ACTIONS(1534), 1, sym__entry_separator, - ACTIONS(2608), 1, - anon_sym_LPAREN2, - ACTIONS(2610), 1, - sym__unquoted_pattern_in_list, - STATE(4232), 1, + STATE(4230), 1, sym_comment, - ACTIONS(2606), 2, + ACTIONS(1532), 4, anon_sym_RBRACK, + anon_sym_GT2, anon_sym_DOT_DOT, - [124672] = 7, + anon_sym_DOT2, + [124646] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(2966), 1, - sym_block, - STATE(4233), 1, + ACTIONS(1538), 1, + sym__entry_separator, + STATE(4231), 1, sym_comment, - STATE(4392), 1, - aux_sym__repeat_newline, - [124694] = 7, + ACTIONS(1536), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [124662] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7518), 1, - sym_identifier, - ACTIONS(7702), 1, - anon_sym_DOLLAR, - STATE(2769), 1, - sym__variable_name, - STATE(2868), 1, - sym_val_variable, - STATE(4234), 1, + ACTIONS(2241), 1, + sym__entry_separator, + ACTIONS(8028), 1, + anon_sym_LBRACK2, + STATE(4232), 1, sym_comment, - [124716] = 5, + ACTIONS(2243), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [124680] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1363), 1, - aux_sym__block_body_repeat1, + ACTIONS(1934), 1, + sym__table_head_separator, + ACTIONS(7985), 1, + anon_sym_DOT2, + STATE(4233), 1, + sym_comment, + STATE(4417), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4990), 1, + sym_path, + STATE(5351), 1, + sym_cell_path, + [124702] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2099), 1, + anon_sym_LBRACE, + ACTIONS(2109), 1, + sym__unquoted_pattern, + ACTIONS(8030), 1, + anon_sym_DOT_DOT2, + STATE(4234), 1, + sym_comment, + ACTIONS(8032), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [124722] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1254), 1, + sym__space, + ACTIONS(2636), 1, + anon_sym_LPAREN2, + ACTIONS(2638), 1, + sym__unquoted_pattern, STATE(4235), 1, sym_comment, - ACTIONS(155), 2, + ACTIONS(1238), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3092), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [124734] = 7, - ACTIONS(105), 1, + [124742] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8007), 1, - anon_sym_LPAREN, - ACTIONS(8009), 1, - anon_sym_SQUOTE2, - ACTIONS(8011), 1, - sym_unescaped_interpolated_content, + ACTIONS(2718), 1, + sym__unquoted_pattern, STATE(4236), 1, sym_comment, - STATE(4261), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4921), 1, - sym_expr_interpolated, - [124756] = 7, - ACTIONS(105), 1, + ACTIONS(2712), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [124758] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7496), 1, - sym__entry_separator, - ACTIONS(7552), 1, - anon_sym_DOT2, - STATE(366), 1, - sym_path, - STATE(4194), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(8003), 1, + sym_identifier, + ACTIONS(8005), 1, + anon_sym_DOLLAR, + STATE(2849), 1, + sym_val_variable, STATE(4237), 1, sym_comment, - STATE(4816), 1, - sym_cell_path, - [124778] = 7, + STATE(4246), 1, + sym__variable_name, + STATE(4383), 1, + sym__assignment_pattern, + [124780] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7428), 1, - sym__entry_separator, - ACTIONS(7552), 1, - anon_sym_DOT2, - STATE(366), 1, - sym_path, - STATE(4194), 1, - aux_sym__where_predicate_lhs_repeat1, STATE(4238), 1, sym_comment, - STATE(4831), 1, - sym_cell_path, - [124800] = 6, + ACTIONS(2596), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2598), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + sym__unquoted_pattern_in_list, + [124796] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1258), 1, - sym__entry_separator, - ACTIONS(2630), 1, + ACTIONS(2608), 1, + sym__space, + ACTIONS(2612), 1, anon_sym_LPAREN2, - ACTIONS(2632), 1, - sym__unquoted_pattern_in_list, + ACTIONS(2614), 1, + sym__unquoted_pattern, STATE(4239), 1, sym_comment, - ACTIONS(1242), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124820] = 6, + ACTIONS(2610), 2, + sym__newline, + anon_sym_SEMI, + [124816] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1250), 1, - sym__entry_separator, - ACTIONS(2630), 1, - anon_sym_LPAREN2, - ACTIONS(2632), 1, - sym__unquoted_pattern_in_list, + ACTIONS(8014), 1, + anon_sym_BANG, STATE(4240), 1, sym_comment, - ACTIONS(1234), 2, + ACTIONS(1464), 4, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124840] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5427), 1, sym__entry_separator, - ACTIONS(7552), 1, - anon_sym_DOT2, - STATE(366), 1, - sym_path, - STATE(4194), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4241), 1, - sym_comment, - STATE(4667), 1, - sym_cell_path, - [124862] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8013), 1, - anon_sym_QMARK2, - ACTIONS(8015), 1, - anon_sym_BANG, - STATE(4242), 1, - sym_comment, - STATE(5070), 1, - sym__path_suffix, - ACTIONS(1474), 2, sym__table_head_separator, anon_sym_DOT2, - [124882] = 4, + [124832] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4243), 1, + STATE(4241), 1, sym_comment, - ACTIONS(1774), 2, + ACTIONS(2596), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1776), 3, + ACTIONS(2598), 3, sym__newline, anon_sym_SEMI, sym__unquoted_pattern, - [124898] = 5, - ACTIONS(3), 1, + [124848] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7932), 1, - anon_sym_EQ2, - STATE(4244), 1, + ACTIONS(7997), 1, + anon_sym_LPAREN, + ACTIONS(8001), 1, + sym_unescaped_interpolated_content, + ACTIONS(8034), 1, + anon_sym_SQUOTE2, + STATE(4242), 1, sym_comment, - STATE(4701), 1, - sym__flag_equals_value, - ACTIONS(4462), 3, - anon_sym_LBRACK, + STATE(4279), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4874), 1, + sym_expr_interpolated, + [124870] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7997), 1, anon_sym_LPAREN, - anon_sym_DASH_DASH, - [124916] = 5, + ACTIONS(8001), 1, + sym_unescaped_interpolated_content, + ACTIONS(8036), 1, + anon_sym_SQUOTE2, + STATE(4243), 1, + sym_comment, + STATE(4279), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4874), 1, + sym_expr_interpolated, + [124892] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8017), 1, - anon_sym_DASH_DASH, - STATE(4887), 1, - sym_long_flag, - ACTIONS(4400), 2, - anon_sym_LBRACK, - anon_sym_LPAREN, - STATE(4245), 2, + ACTIONS(2722), 1, + sym__unquoted_pattern, + STATE(4244), 1, sym_comment, - aux_sym_decl_def_repeat1, - [124934] = 4, + ACTIONS(7624), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [124908] = 6, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2125), 1, + sym__entry_separator, + ACTIONS(2127), 1, + anon_sym_RBRACE, + ACTIONS(8038), 1, + anon_sym_DOT_DOT2, + STATE(4245), 1, + sym_comment, + ACTIONS(8040), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [124928] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(5550), 1, + anon_sym_EQ, + ACTIONS(8026), 1, + anon_sym_COLON, STATE(4246), 1, sym_comment, - ACTIONS(1866), 2, + STATE(4876), 1, + aux_sym__repeat_newline, + STATE(5330), 1, + sym_param_type, + [124950] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2712), 1, sym__space, + ACTIONS(2716), 1, anon_sym_LPAREN2, - ACTIONS(1868), 3, + ACTIONS(2718), 1, + sym__unquoted_pattern, + STATE(4247), 1, + sym_comment, + ACTIONS(2714), 2, sym__newline, anon_sym_SEMI, - sym__unquoted_pattern, - [124950] = 4, + [124970] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(4247), 1, - sym_comment, - ACTIONS(1921), 2, + ACTIONS(1697), 1, + sym__unquoted_pattern, + ACTIONS(2706), 1, sym__space, + ACTIONS(2710), 1, anon_sym_LPAREN2, - ACTIONS(1923), 3, + STATE(4248), 1, + sym_comment, + ACTIONS(2708), 2, sym__newline, anon_sym_SEMI, - sym__unquoted_pattern, - [124966] = 6, + [124990] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8020), 1, + ACTIONS(8042), 1, anon_sym_DQUOTE, - STATE(4248), 1, + STATE(4249), 1, sym_comment, - STATE(4379), 1, + STATE(4480), 1, aux_sym_string_content_repeat1, - STATE(5197), 1, + STATE(5323), 1, sym_string_content, - ACTIONS(7973), 2, + ACTIONS(7977), 2, sym__escaped_str_content, sym_escape_sequence, - [124986] = 7, + [125010] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4250), 1, + sym_comment, + ACTIONS(1947), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1945), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [125026] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8007), 1, + ACTIONS(7997), 1, anon_sym_LPAREN, - ACTIONS(8011), 1, + ACTIONS(8001), 1, sym_unescaped_interpolated_content, - ACTIONS(8022), 1, + ACTIONS(8044), 1, anon_sym_SQUOTE2, - STATE(4249), 1, + STATE(4251), 1, sym_comment, - STATE(4252), 1, + STATE(4258), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4921), 1, + STATE(4874), 1, sym_expr_interpolated, - [125008] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(5800), 1, - anon_sym_EQ, - ACTIONS(8005), 1, - anon_sym_COLON, - STATE(4250), 1, - sym_comment, - STATE(4888), 1, - aux_sym__repeat_newline, - STATE(5229), 1, - sym_param_type, - [125030] = 4, + [125048] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1557), 1, + ACTIONS(1810), 1, sym__entry_separator, - STATE(4251), 1, + ACTIONS(7247), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8046), 1, + anon_sym_DOT, + STATE(4252), 1, sym_comment, - ACTIONS(1555), 4, + ACTIONS(1812), 2, anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [125046] = 7, + anon_sym_RBRACE, + [125068] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8007), 1, + ACTIONS(7997), 1, anon_sym_LPAREN, - ACTIONS(8011), 1, + ACTIONS(8001), 1, sym_unescaped_interpolated_content, - ACTIONS(8024), 1, + ACTIONS(8048), 1, anon_sym_SQUOTE2, - STATE(4225), 1, + STATE(4242), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4252), 1, - sym_comment, - STATE(4921), 1, - sym_expr_interpolated, - [125068] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2986), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(5298), 1, - anon_sym_DOLLAR, - ACTIONS(7518), 1, - sym_identifier, - STATE(2868), 1, - sym_val_variable, STATE(4253), 1, sym_comment, - STATE(5104), 1, - sym__variable_name, - [125090] = 4, + STATE(4874), 1, + sym_expr_interpolated, + [125090] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1563), 1, - sym__entry_separator, + ACTIONS(8050), 1, + anon_sym_DQUOTE, STATE(4254), 1, sym_comment, - ACTIONS(1561), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [125106] = 4, + STATE(4480), 1, + aux_sym_string_content_repeat1, + STATE(5286), 1, + sym_string_content, + ACTIONS(7977), 2, + sym__escaped_str_content, + sym_escape_sequence, + [125110] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6943), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(8026), 2, - sym__newline, - anon_sym_COMMA, - STATE(4255), 2, + STATE(4255), 1, sym_comment, - aux_sym_parameter_repeat2, - [125122] = 4, + STATE(5485), 1, + sym__immediate_decimal, + ACTIONS(6978), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6980), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [125128] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1567), 1, - sym__entry_separator, + ACTIONS(2099), 1, + sym__space, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, + sym__unquoted_pattern, STATE(4256), 1, sym_comment, - ACTIONS(1565), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [125138] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3864), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(2101), 2, sym__newline, - STATE(1999), 1, - aux_sym__types_body_repeat1, + anon_sym_SEMI, + [125148] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7724), 1, + anon_sym_DOT_DOT2, + ACTIONS(7942), 1, + anon_sym_RBRACK, + ACTIONS(7944), 1, + sym__entry_separator, STATE(4257), 1, sym_comment, - STATE(4759), 1, - sym_val_list, - STATE(4762), 1, - aux_sym__table_body_repeat1, - [125160] = 4, - ACTIONS(3), 1, + ACTIONS(7726), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [125168] = 7, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(7997), 1, + anon_sym_LPAREN, + ACTIONS(8001), 1, + sym_unescaped_interpolated_content, + ACTIONS(8052), 1, + anon_sym_SQUOTE2, STATE(4258), 1, sym_comment, - ACTIONS(1776), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1774), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [125176] = 7, - ACTIONS(3), 1, + STATE(4279), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4874), 1, + sym_expr_interpolated, + [125190] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8029), 1, - sym_identifier, - ACTIONS(8031), 1, - anon_sym_DOLLAR, - STATE(2868), 1, - sym_val_variable, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, + sym__unquoted_pattern, + ACTIONS(2640), 1, + sym__space, STATE(4259), 1, sym_comment, - STATE(4260), 1, - sym__variable_name, - STATE(4764), 1, - sym__assignment_pattern_parenthesized, - [125198] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2642), 2, sym__newline, - ACTIONS(5784), 1, - anon_sym_EQ, - ACTIONS(8005), 1, - anon_sym_COLON, + anon_sym_SEMI, + [125210] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1810), 1, + sym__space, + ACTIONS(7265), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8054), 1, + anon_sym_DOT, STATE(4260), 1, sym_comment, - STATE(4888), 1, - aux_sym__repeat_newline, - STATE(5106), 1, - sym_param_type, - [125220] = 7, + ACTIONS(1812), 2, + sym__newline, + anon_sym_SEMI, + [125230] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8007), 1, - anon_sym_LPAREN, - ACTIONS(8011), 1, - sym_unescaped_interpolated_content, - ACTIONS(8033), 1, - anon_sym_SQUOTE2, - STATE(4225), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(1586), 1, + sym__entry_separator, STATE(4261), 1, sym_comment, - STATE(4921), 1, - sym_expr_interpolated, - [125242] = 4, - ACTIONS(105), 1, + ACTIONS(1584), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [125246] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3930), 1, + anon_sym_LBRACE, STATE(4262), 1, sym_comment, - ACTIONS(6527), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(6529), 3, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_RBRACE, - [125258] = 6, + STATE(4787), 1, + sym_block, + ACTIONS(7791), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125264] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7965), 1, - anon_sym_DOT_DOT2, - ACTIONS(8035), 1, - anon_sym_RBRACE, - ACTIONS(8037), 1, - sym__entry_separator, + ACTIONS(8056), 1, + anon_sym_DQUOTE, STATE(4263), 1, sym_comment, - ACTIONS(7967), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [125278] = 6, + STATE(4480), 1, + aux_sym_string_content_repeat1, + STATE(5275), 1, + sym_string_content, + ACTIONS(7977), 2, + sym__escaped_str_content, + sym_escape_sequence, + [125284] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7965), 1, - anon_sym_DOT_DOT2, - ACTIONS(8039), 1, - anon_sym_RBRACE, - ACTIONS(8041), 1, + ACTIONS(5362), 1, sym__entry_separator, + ACTIONS(7542), 1, + anon_sym_DOT2, + STATE(375), 1, + sym_path, + STATE(4157), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(4264), 1, sym_comment, - ACTIONS(7967), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [125298] = 5, + STATE(4589), 1, + sym_cell_path, + [125306] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACE, + ACTIONS(1480), 1, + anon_sym_COLON2, + ACTIONS(5030), 1, + anon_sym_DOT2, + STATE(466), 1, + sym_path, + STATE(520), 1, + sym_cell_path, + STATE(2337), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(4265), 1, sym_comment, - STATE(4821), 1, - sym_block, - ACTIONS(7900), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125316] = 4, + [125328] = 7, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(7997), 1, + anon_sym_LPAREN, + ACTIONS(8001), 1, + sym_unescaped_interpolated_content, + ACTIONS(8058), 1, + anon_sym_SQUOTE2, STATE(4266), 1, sym_comment, - ACTIONS(6503), 2, + STATE(4277), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4874), 1, + sym_expr_interpolated, + [125350] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7926), 1, + aux_sym__immediate_decimal_token5, + STATE(4267), 1, + sym_comment, + ACTIONS(1810), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(6505), 3, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_RBRACE, - [125332] = 5, + ACTIONS(1812), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [125368] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, - STATE(4267), 1, + STATE(4268), 1, sym_comment, - STATE(4825), 1, + STATE(4788), 1, sym_block, - ACTIONS(7900), 3, + ACTIONS(7791), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125350] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1350), 1, - aux_sym__block_body_repeat1, - STATE(4268), 1, - sym_comment, - ACTIONS(155), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3090), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [125368] = 5, - ACTIONS(3), 1, + [125386] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACE, STATE(4269), 1, sym_comment, - STATE(4738), 1, - sym_block, - ACTIONS(7755), 3, - ts_builtin_sym_end, + ACTIONS(1945), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1947), 3, sym__newline, anon_sym_SEMI, - [125386] = 5, - ACTIONS(105), 1, + sym__unquoted_pattern, + [125402] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7886), 1, + ACTIONS(1812), 1, + sym__unquoted_pattern, + ACTIONS(7783), 1, aux_sym__immediate_decimal_token5, STATE(4270), 1, sym_comment, - ACTIONS(1788), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1790), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [125404] = 6, + ACTIONS(1810), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [125420] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7965), 1, - anon_sym_DOT_DOT2, - ACTIONS(8043), 1, - anon_sym_RBRACE, - ACTIONS(8045), 1, + ACTIONS(1262), 1, sym__entry_separator, + ACTIONS(2636), 1, + anon_sym_LPAREN2, + ACTIONS(2638), 1, + sym__unquoted_pattern_in_list, STATE(4271), 1, sym_comment, - ACTIONS(7967), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [125424] = 5, + ACTIONS(1246), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [125440] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8047), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(7487), 1, + sym__entry_separator, + ACTIONS(7542), 1, + anon_sym_DOT2, + STATE(375), 1, + sym_path, + STATE(4157), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(4272), 1, sym_comment, - ACTIONS(1866), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1868), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [125442] = 5, - ACTIONS(3), 1, + STATE(4755), 1, + sym_cell_path, + [125462] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACE, + ACTIONS(7477), 1, + sym__entry_separator, + ACTIONS(7542), 1, + anon_sym_DOT2, + STATE(375), 1, + sym_path, + STATE(4157), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(4273), 1, sym_comment, - STATE(4813), 1, - sym_block, - ACTIONS(7846), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125460] = 5, + STATE(4759), 1, + sym_cell_path, + [125484] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, STATE(4274), 1, sym_comment, - STATE(4817), 1, + STATE(4879), 1, sym_block, - ACTIONS(7846), 3, + ACTIONS(7789), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125478] = 4, - ACTIONS(3), 1, + [125502] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1806), 1, - sym__unquoted_pattern, + ACTIONS(7997), 1, + anon_sym_LPAREN, + ACTIONS(8001), 1, + sym_unescaped_interpolated_content, + ACTIONS(8060), 1, + anon_sym_SQUOTE2, STATE(4275), 1, sym_comment, - ACTIONS(914), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [125494] = 4, - ACTIONS(3), 1, + STATE(4279), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4874), 1, + sym_expr_interpolated, + [125524] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2099), 1, + sym__entry_separator, + ACTIONS(2101), 1, + anon_sym_RBRACE, + ACTIONS(8062), 1, + anon_sym_DOT_DOT2, STATE(4276), 1, sym_comment, - ACTIONS(1868), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1866), 3, - anon_sym_LBRACE, + ACTIONS(8064), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [125510] = 5, + [125544] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7732), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(7997), 1, + anon_sym_LPAREN, + ACTIONS(8001), 1, + sym_unescaped_interpolated_content, + ACTIONS(8066), 1, + anon_sym_SQUOTE2, STATE(4277), 1, sym_comment, - ACTIONS(1788), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1790), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [125528] = 4, + STATE(4279), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4874), 1, + sym_expr_interpolated, + [125566] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern, + ACTIONS(8003), 1, + sym_identifier, + ACTIONS(8005), 1, + anon_sym_DOLLAR, + STATE(2849), 1, + sym_val_variable, STATE(4278), 1, sym_comment, - ACTIONS(2104), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [125544] = 4, + STATE(4314), 1, + sym__variable_name, + STATE(4834), 1, + sym__assignment_pattern, + [125588] = 6, ACTIONS(105), 1, anon_sym_POUND, - STATE(4279), 1, + ACTIONS(8068), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, + anon_sym_SQUOTE2, + ACTIONS(8073), 1, + sym_unescaped_interpolated_content, + STATE(4874), 1, + sym_expr_interpolated, + STATE(4279), 2, sym_comment, - ACTIONS(1774), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1776), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [125560] = 7, + aux_sym__inter_single_quotes_repeat1, + [125608] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1358), 1, + aux_sym__block_body_repeat1, + STATE(4280), 1, + sym_comment, + ACTIONS(155), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3000), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125626] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8007), 1, + ACTIONS(7997), 1, anon_sym_LPAREN, - ACTIONS(8011), 1, + ACTIONS(8001), 1, sym_unescaped_interpolated_content, - ACTIONS(8049), 1, + ACTIONS(8076), 1, anon_sym_SQUOTE2, - STATE(4280), 1, - sym_comment, - STATE(4285), 1, + STATE(4279), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4921), 1, + STATE(4281), 1, + sym_comment, + STATE(4874), 1, sym_expr_interpolated, - [125582] = 4, - ACTIONS(105), 1, + [125648] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4281), 1, + STATE(4282), 1, sym_comment, - ACTIONS(1866), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1868), 3, + STATE(4335), 1, + aux_sym_parameter_repeat2, + ACTIONS(1420), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(8012), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [125598] = 7, + [125666] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(6022), 1, + ACTIONS(5911), 1, anon_sym_EQ, - ACTIONS(8005), 1, + ACTIONS(8026), 1, anon_sym_COLON, - STATE(4282), 1, + STATE(4283), 1, sym_comment, - STATE(4888), 1, + STATE(4876), 1, aux_sym__repeat_newline, - STATE(5346), 1, + STATE(5268), 1, sym_param_type, - [125620] = 4, + [125688] = 5, ACTIONS(105), 1, anon_sym_POUND, - STATE(4283), 1, + ACTIONS(8078), 1, + anon_sym_LT, + STATE(4284), 1, sym_comment, - ACTIONS(1921), 2, - anon_sym_LPAREN2, + ACTIONS(5269), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(1923), 3, + ACTIONS(6323), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [125636] = 6, + anon_sym_GT2, + [125706] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5804), 1, + ACTIONS(8080), 1, + anon_sym_DQUOTE, + STATE(4285), 1, + sym_comment, + STATE(4480), 1, + aux_sym_string_content_repeat1, + STATE(5223), 1, + sym_string_content, + ACTIONS(7977), 2, + sym__escaped_str_content, + sym_escape_sequence, + [125726] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5722), 1, sym__space, - ACTIONS(7850), 1, + ACTIONS(7773), 1, anon_sym_EQ2, - STATE(3223), 1, + STATE(3240), 1, sym__flag_equals_value, - STATE(4284), 1, + STATE(4286), 1, sym_comment, - ACTIONS(5802), 2, + ACTIONS(5720), 2, sym__newline, anon_sym_SEMI, - [125656] = 7, + [125746] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8007), 1, + ACTIONS(7997), 1, anon_sym_LPAREN, - ACTIONS(8011), 1, + ACTIONS(8001), 1, sym_unescaped_interpolated_content, - ACTIONS(8051), 1, + ACTIONS(8082), 1, anon_sym_SQUOTE2, - STATE(4225), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4285), 1, + STATE(4287), 1, sym_comment, - STATE(4921), 1, + STATE(4293), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4874), 1, sym_expr_interpolated, - [125678] = 7, + [125768] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8029), 1, - sym_identifier, - ACTIONS(8031), 1, - anon_sym_DOLLAR, - STATE(2868), 1, - sym_val_variable, - STATE(4231), 1, - sym__variable_name, - STATE(4286), 1, + STATE(4288), 1, sym_comment, - STATE(4910), 1, - sym__assignment_pattern, - [125700] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2114), 1, - anon_sym_LBRACE, - ACTIONS(2124), 1, - sym__unquoted_pattern, - ACTIONS(8053), 1, + ACTIONS(1876), 2, anon_sym_DOT_DOT2, - STATE(4287), 1, - sym_comment, - ACTIONS(8055), 2, + sym__unquoted_pattern, + ACTIONS(1874), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [125720] = 7, + [125784] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8007), 1, - anon_sym_LPAREN, - ACTIONS(8011), 1, - sym_unescaped_interpolated_content, - ACTIONS(8057), 1, - anon_sym_SQUOTE2, - STATE(4288), 1, + STATE(4289), 1, sym_comment, - STATE(4291), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4921), 1, - sym_expr_interpolated, - [125742] = 4, + ACTIONS(1802), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1804), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [125800] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2124), 1, + ACTIONS(1876), 1, sym__unquoted_pattern, - STATE(4289), 1, + ACTIONS(8084), 1, + aux_sym__immediate_decimal_token5, + STATE(4290), 1, sym_comment, - ACTIONS(2696), 4, - anon_sym_if, + ACTIONS(1874), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [125758] = 4, + [125818] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2124), 1, + ACTIONS(2638), 1, sym__unquoted_pattern, - STATE(4290), 1, + STATE(4291), 1, sym_comment, - ACTIONS(2114), 4, + ACTIONS(1262), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [125774] = 7, + [125834] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8007), 1, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(2125), 1, + sym__space, + ACTIONS(2129), 1, + anon_sym_LPAREN2, + STATE(4292), 1, + sym_comment, + ACTIONS(2127), 2, + sym__newline, + anon_sym_SEMI, + [125854] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7997), 1, anon_sym_LPAREN, - ACTIONS(8011), 1, + ACTIONS(8001), 1, sym_unescaped_interpolated_content, - ACTIONS(8059), 1, + ACTIONS(8086), 1, anon_sym_SQUOTE2, - STATE(4225), 1, + STATE(4279), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4291), 1, + STATE(4293), 1, sym_comment, - STATE(4921), 1, + STATE(4874), 1, sym_expr_interpolated, - [125796] = 5, + [125876] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8061), 1, - aux_sym__immediate_decimal_token5, - STATE(4292), 1, - sym_comment, - ACTIONS(1866), 2, + ACTIONS(1736), 1, + sym__space, + ACTIONS(2720), 1, anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1868), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [125814] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4293), 1, - sym_comment, - STATE(5488), 1, - sym__immediate_decimal, - ACTIONS(6964), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6966), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [125832] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8063), 1, - anon_sym_DQUOTE, + ACTIONS(2722), 1, + sym__unquoted_pattern, STATE(4294), 1, sym_comment, - STATE(4379), 1, - aux_sym_string_content_repeat1, - STATE(5287), 1, - sym_string_content, - ACTIONS(7973), 2, - sym__escaped_str_content, - sym_escape_sequence, - [125852] = 7, - ACTIONS(105), 1, + ACTIONS(1610), 2, + sym__newline, + anon_sym_SEMI, + [125896] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8007), 1, - anon_sym_LPAREN, - ACTIONS(8011), 1, - sym_unescaped_interpolated_content, - ACTIONS(8065), 1, - anon_sym_SQUOTE2, + ACTIONS(8003), 1, + sym_identifier, + ACTIONS(8005), 1, + anon_sym_DOLLAR, + STATE(2849), 1, + sym_val_variable, + STATE(4229), 1, + sym__variable_name, STATE(4295), 1, sym_comment, - STATE(4300), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4921), 1, - sym_expr_interpolated, - [125874] = 5, + STATE(4383), 1, + sym__assignment_pattern, + [125918] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7838), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(8088), 1, + anon_sym_QMARK2, + ACTIONS(8090), 1, + anon_sym_BANG, STATE(4296), 1, sym_comment, - ACTIONS(1788), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1790), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [125892] = 4, + STATE(5014), 1, + sym__path_suffix, + ACTIONS(1472), 2, + sym__table_head_separator, + anon_sym_DOT2, + [125938] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1254), 1, + sym__entry_separator, + ACTIONS(2636), 1, + anon_sym_LPAREN2, + ACTIONS(2638), 1, + sym__unquoted_pattern_in_list, + STATE(4297), 1, + sym_comment, + ACTIONS(1238), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [125958] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, + ACTIONS(2614), 1, sym__unquoted_pattern, - STATE(4297), 1, + STATE(4298), 1, sym_comment, - ACTIONS(2660), 4, + ACTIONS(2608), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [125908] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4298), 1, - sym_comment, - ACTIONS(1923), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1921), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [125924] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8067), 1, - aux_sym__immediate_decimal_token5, - STATE(4299), 1, - sym_comment, - ACTIONS(1866), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1868), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [125942] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8007), 1, - anon_sym_LPAREN, - ACTIONS(8011), 1, - sym_unescaped_interpolated_content, - ACTIONS(8069), 1, - anon_sym_SQUOTE2, - STATE(4225), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4300), 1, - sym_comment, - STATE(4921), 1, - sym_expr_interpolated, - [125964] = 6, + [125974] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8071), 1, + ACTIONS(8092), 1, anon_sym_DQUOTE, - STATE(4301), 1, + STATE(4299), 1, sym_comment, - STATE(4379), 1, + STATE(4480), 1, aux_sym_string_content_repeat1, - STATE(5360), 1, + STATE(5155), 1, sym_string_content, - ACTIONS(7973), 2, + ACTIONS(7977), 2, sym__escaped_str_content, sym_escape_sequence, - [125984] = 7, + [125994] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8007), 1, + ACTIONS(7997), 1, anon_sym_LPAREN, - ACTIONS(8011), 1, + ACTIONS(8001), 1, sym_unescaped_interpolated_content, - ACTIONS(8073), 1, + ACTIONS(8094), 1, anon_sym_SQUOTE2, - STATE(4302), 1, + STATE(4300), 1, sym_comment, - STATE(4304), 1, + STATE(4303), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4921), 1, + STATE(4874), 1, sym_expr_interpolated, - [126006] = 4, + [126016] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2686), 1, + ACTIONS(2598), 1, sym__unquoted_pattern, - STATE(4303), 1, + STATE(4301), 1, sym_comment, - ACTIONS(2676), 4, + ACTIONS(2596), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [126022] = 7, + [126032] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8007), 1, + STATE(4302), 1, + sym_comment, + ACTIONS(2596), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2598), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [126048] = 7, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7997), 1, anon_sym_LPAREN, - ACTIONS(8011), 1, + ACTIONS(8001), 1, sym_unescaped_interpolated_content, - ACTIONS(8075), 1, + ACTIONS(8096), 1, anon_sym_SQUOTE2, - STATE(4225), 1, + STATE(4279), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4304), 1, + STATE(4303), 1, sym_comment, - STATE(4921), 1, + STATE(4874), 1, sym_expr_interpolated, - [126044] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2578), 1, - sym__unquoted_pattern, - STATE(4305), 1, - sym_comment, - ACTIONS(2576), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126060] = 4, + [126070] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2610), 1, - sym__unquoted_pattern, - STATE(4306), 1, - sym_comment, - ACTIONS(2604), 4, - anon_sym_if, + ACTIONS(2966), 1, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126076] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1788), 1, - sym__space, - ACTIONS(7315), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8077), 1, - anon_sym_DOT, - STATE(4307), 1, + ACTIONS(5744), 1, + anon_sym_EQ, + ACTIONS(8026), 1, + anon_sym_COLON, + STATE(4304), 1, sym_comment, - ACTIONS(1790), 2, - sym__newline, - anon_sym_SEMI, - [126096] = 6, + STATE(4876), 1, + aux_sym__repeat_newline, + STATE(5303), 1, + sym_param_type, + [126092] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8079), 1, + ACTIONS(8098), 1, anon_sym_DQUOTE, - STATE(4308), 1, + STATE(4305), 1, sym_comment, - STATE(4379), 1, + STATE(4480), 1, aux_sym_string_content_repeat1, - STATE(5485), 1, + STATE(5120), 1, sym_string_content, - ACTIONS(7973), 2, + ACTIONS(7977), 2, sym__escaped_str_content, sym_escape_sequence, - [126116] = 7, + [126112] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8007), 1, + ACTIONS(7997), 1, anon_sym_LPAREN, - ACTIONS(8011), 1, + ACTIONS(8001), 1, sym_unescaped_interpolated_content, - ACTIONS(8081), 1, + ACTIONS(8100), 1, anon_sym_SQUOTE2, - STATE(4309), 1, + STATE(4306), 1, sym_comment, - STATE(4312), 1, + STATE(4310), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4921), 1, + STATE(4874), 1, sym_expr_interpolated, - [126138] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1790), 1, - sym__unquoted_pattern, - ACTIONS(7950), 1, - aux_sym__immediate_decimal_token5, - STATE(4310), 1, - sym_comment, - ACTIONS(1788), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126156] = 6, + [126134] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__space, - ACTIONS(2672), 1, - anon_sym_LPAREN2, - ACTIONS(2674), 1, - sym__unquoted_pattern, - STATE(4311), 1, + ACTIONS(8102), 1, + anon_sym_LT, + STATE(4307), 1, sym_comment, - ACTIONS(1616), 2, - sym__newline, - anon_sym_SEMI, - [126176] = 7, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8007), 1, - anon_sym_LPAREN, - ACTIONS(8011), 1, - sym_unescaped_interpolated_content, - ACTIONS(8083), 1, - anon_sym_SQUOTE2, - STATE(4225), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4312), 1, + ACTIONS(5269), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6323), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [126152] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8003), 1, + sym_identifier, + ACTIONS(8005), 1, + anon_sym_DOLLAR, + STATE(2849), 1, + sym_val_variable, + STATE(4304), 1, + sym__variable_name, + STATE(4308), 1, sym_comment, - STATE(4921), 1, - sym_expr_interpolated, - [126198] = 5, + STATE(4383), 1, + sym__assignment_pattern, + [126174] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1868), 1, + ACTIONS(1697), 1, sym__unquoted_pattern, - ACTIONS(8085), 1, - aux_sym__immediate_decimal_token5, - STATE(4313), 1, + STATE(4309), 1, sym_comment, - ACTIONS(1866), 3, + ACTIONS(2706), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [126216] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8087), 1, - anon_sym_DQUOTE, - STATE(4314), 1, - sym_comment, - STATE(4379), 1, - aux_sym_string_content_repeat1, - STATE(5527), 1, - sym_string_content, - ACTIONS(7973), 2, - sym__escaped_str_content, - sym_escape_sequence, - [126236] = 7, + [126190] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8007), 1, + ACTIONS(7997), 1, anon_sym_LPAREN, - ACTIONS(8011), 1, + ACTIONS(8001), 1, sym_unescaped_interpolated_content, - ACTIONS(8089), 1, + ACTIONS(8104), 1, anon_sym_SQUOTE2, - STATE(4315), 1, - sym_comment, - STATE(4316), 1, + STATE(4279), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4921), 1, + STATE(4310), 1, + sym_comment, + STATE(4874), 1, sym_expr_interpolated, - [126258] = 7, + [126212] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8007), 1, + ACTIONS(7997), 1, anon_sym_LPAREN, - ACTIONS(8011), 1, + ACTIONS(8001), 1, sym_unescaped_interpolated_content, - ACTIONS(8091), 1, + ACTIONS(8106), 1, anon_sym_SQUOTE2, - STATE(4225), 1, + STATE(4275), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4316), 1, + STATE(4311), 1, sym_comment, - STATE(4921), 1, + STATE(4874), 1, sym_expr_interpolated, - [126280] = 6, + [126234] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8093), 1, + ACTIONS(8108), 1, anon_sym_DQUOTE, - STATE(4317), 1, + STATE(4312), 1, sym_comment, - STATE(4379), 1, + STATE(4480), 1, aux_sym_string_content_repeat1, - STATE(5116), 1, + STATE(5262), 1, sym_string_content, - ACTIONS(7973), 2, + ACTIONS(7977), 2, sym__escaped_str_content, sym_escape_sequence, - [126300] = 6, + [126254] = 6, + ACTIONS(105), 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(4313), 1, + sym_comment, + ACTIONS(2610), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [126274] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(5678), 1, + anon_sym_EQ, + ACTIONS(8026), 1, + anon_sym_COLON, + STATE(4314), 1, + sym_comment, + STATE(4876), 1, + aux_sym__repeat_newline, + STATE(5267), 1, + sym_param_type, + [126296] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8095), 1, + ACTIONS(8110), 1, anon_sym_DQUOTE, - STATE(4318), 1, + STATE(4315), 1, sym_comment, - STATE(4379), 1, + STATE(4480), 1, aux_sym_string_content_repeat1, STATE(5131), 1, sym_string_content, - ACTIONS(7973), 2, + ACTIONS(7977), 2, sym__escaped_str_content, sym_escape_sequence, - [126320] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(2104), 1, - sym__space, - ACTIONS(2108), 1, - anon_sym_LPAREN2, - STATE(4319), 1, - sym_comment, - ACTIONS(2106), 2, - sym__newline, - anon_sym_SEMI, - [126340] = 4, + [126316] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2632), 1, - sym__unquoted_pattern, - STATE(4320), 1, - sym_comment, - ACTIONS(1258), 4, - anon_sym_if, + ACTIONS(2966), 1, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126356] = 4, - ACTIONS(3), 1, + ACTIONS(5804), 1, + anon_sym_EQ, + ACTIONS(8026), 1, + anon_sym_COLON, + STATE(4316), 1, + sym_comment, + STATE(4876), 1, + aux_sym__repeat_newline, + STATE(5408), 1, + sym_param_type, + [126338] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2632), 1, - sym__unquoted_pattern, - STATE(4321), 1, + ACTIONS(8112), 1, + aux_sym__immediate_decimal_token5, + STATE(4317), 1, sym_comment, - ACTIONS(1250), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126372] = 6, + ACTIONS(1874), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1876), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [126356] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8097), 1, + ACTIONS(8114), 1, anon_sym_DQUOTE, - STATE(4322), 1, + STATE(4318), 1, sym_comment, - STATE(4379), 1, + STATE(4480), 1, aux_sym_string_content_repeat1, - STATE(5144), 1, + STATE(5140), 1, sym_string_content, - ACTIONS(7973), 2, + ACTIONS(7977), 2, sym__escaped_str_content, sym_escape_sequence, - [126392] = 7, + [126376] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8003), 1, + sym_identifier, + ACTIONS(8005), 1, + anon_sym_DOLLAR, + STATE(2849), 1, + sym_val_variable, + STATE(4316), 1, + sym__variable_name, + STATE(4319), 1, + sym_comment, + STATE(4829), 1, + sym__assignment_pattern_parenthesized, + [126398] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2672), 1, - anon_sym_LPAREN2, - ACTIONS(2674), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7748), 1, - anon_sym_DOT_DOT, - ACTIONS(7922), 1, - anon_sym_RBRACK, - ACTIONS(7925), 1, - sym__entry_separator, - STATE(4323), 1, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(5257), 1, + anon_sym_DOLLAR, + ACTIONS(7592), 1, + sym_identifier, + STATE(2849), 1, + sym_val_variable, + STATE(4320), 1, sym_comment, - [126414] = 6, + STATE(5479), 1, + sym__variable_name, + [126420] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8099), 1, + ACTIONS(8116), 1, anon_sym_DQUOTE, - STATE(4324), 1, + STATE(4321), 1, sym_comment, - STATE(4379), 1, + STATE(4480), 1, aux_sym_string_content_repeat1, - STATE(5155), 1, + STATE(5148), 1, sym_string_content, - ACTIONS(7973), 2, + ACTIONS(7977), 2, sym__escaped_str_content, sym_escape_sequence, - [126434] = 6, + [126440] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3850), 1, + anon_sym_LBRACK, + ACTIONS(4028), 1, + sym__newline, + STATE(2010), 1, + aux_sym__types_body_repeat1, + STATE(4322), 1, + sym_comment, + STATE(4837), 1, + aux_sym__table_body_repeat1, + STATE(4838), 1, + sym_val_list, + [126462] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8101), 1, + ACTIONS(8118), 1, anon_sym_DQUOTE, - STATE(4325), 1, + STATE(4323), 1, sym_comment, - STATE(4379), 1, + STATE(4480), 1, aux_sym_string_content_repeat1, - STATE(5165), 1, + STATE(5159), 1, sym_string_content, - ACTIONS(7973), 2, + ACTIONS(7977), 2, sym__escaped_str_content, sym_escape_sequence, - [126454] = 6, + [126482] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2109), 1, + sym__unquoted_pattern, + STATE(4324), 1, + sym_comment, + ACTIONS(2099), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [126498] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8103), 1, + ACTIONS(8120), 1, anon_sym_DQUOTE, - STATE(4326), 1, + STATE(4325), 1, sym_comment, - STATE(4379), 1, + STATE(4480), 1, aux_sym_string_content_repeat1, - STATE(5172), 1, + STATE(5169), 1, sym_string_content, - ACTIONS(7973), 2, + ACTIONS(7977), 2, sym__escaped_str_content, sym_escape_sequence, - [126474] = 6, + [126518] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2109), 1, + sym__unquoted_pattern, + STATE(4326), 1, + sym_comment, + ACTIONS(2640), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [126534] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8105), 1, + ACTIONS(8122), 1, anon_sym_DQUOTE, STATE(4327), 1, sym_comment, - STATE(4379), 1, + STATE(4480), 1, aux_sym_string_content_repeat1, - STATE(5179), 1, + STATE(5176), 1, sym_string_content, - ACTIONS(7973), 2, + ACTIONS(7977), 2, sym__escaped_str_content, sym_escape_sequence, - [126494] = 6, + [126554] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8107), 1, - anon_sym_DQUOTE, STATE(4328), 1, sym_comment, - STATE(4379), 1, + ACTIONS(1802), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1804), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [126570] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8124), 1, + anon_sym_DQUOTE, + STATE(4329), 1, + sym_comment, + STATE(4480), 1, aux_sym_string_content_repeat1, - STATE(5186), 1, + STATE(5183), 1, sym_string_content, - ACTIONS(7973), 2, + ACTIONS(7977), 2, sym__escaped_str_content, sym_escape_sequence, - [126514] = 6, + [126590] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8109), 1, + ACTIONS(8126), 1, anon_sym_DQUOTE, - STATE(4329), 1, + STATE(4330), 1, sym_comment, - STATE(4379), 1, + STATE(4480), 1, aux_sym_string_content_repeat1, - STATE(5193), 1, + STATE(5190), 1, sym_string_content, - ACTIONS(7973), 2, + ACTIONS(7977), 2, sym__escaped_str_content, sym_escape_sequence, - [126534] = 7, + [126610] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2986), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(5261), 1, - anon_sym_DOLLAR, - ACTIONS(7914), 1, - sym_identifier, - STATE(3018), 1, - sym__variable_name, - STATE(3069), 1, - sym_val_variable, - STATE(4330), 1, + ACTIONS(7746), 1, + aux_sym__immediate_decimal_token5, + STATE(4331), 1, sym_comment, - [126556] = 6, + ACTIONS(1810), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1812), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [126628] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7977), 1, - anon_sym_DOT_DOT, - ACTIONS(8111), 1, - anon_sym_RBRACK, - STATE(4255), 1, - aux_sym_parameter_repeat2, - STATE(4331), 1, + STATE(4332), 1, + sym_comment, + ACTIONS(1804), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1802), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [126644] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1636), 1, + sym__unquoted_pattern, + STATE(4333), 1, sym_comment, - ACTIONS(1416), 2, + ACTIONS(2125), 4, + anon_sym_if, sym__newline, - anon_sym_COMMA, - [126576] = 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + [126660] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8114), 1, - anon_sym_DQUOTE, - STATE(4332), 1, + ACTIONS(2712), 1, + sym__entry_separator, + ACTIONS(2716), 1, + anon_sym_LPAREN2, + ACTIONS(2718), 1, + sym__unquoted_pattern_in_list, + STATE(4334), 1, sym_comment, - STATE(4379), 1, - aux_sym_string_content_repeat1, - STATE(5200), 1, - sym_string_content, - ACTIONS(7973), 2, - sym__escaped_str_content, - sym_escape_sequence, - [126596] = 6, - ACTIONS(105), 1, + ACTIONS(2714), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [126680] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8116), 1, - anon_sym_DQUOTE, - STATE(4333), 1, + ACTIONS(6996), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(8128), 2, + sym__newline, + anon_sym_COMMA, + STATE(4335), 2, sym_comment, - STATE(4379), 1, - aux_sym_string_content_repeat1, - STATE(5206), 1, - sym_string_content, - ACTIONS(7973), 2, - sym__escaped_str_content, - sym_escape_sequence, - [126616] = 6, + aux_sym_parameter_repeat2, + [126696] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8118), 1, + ACTIONS(8131), 1, anon_sym_DQUOTE, - STATE(4334), 1, + STATE(4336), 1, sym_comment, - STATE(4379), 1, + STATE(4480), 1, aux_sym_string_content_repeat1, - STATE(5212), 1, + STATE(5197), 1, sym_string_content, - ACTIONS(7973), 2, + ACTIONS(7977), 2, sym__escaped_str_content, sym_escape_sequence, - [126636] = 6, + [126716] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern, - ACTIONS(2696), 1, + ACTIONS(4432), 1, sym__space, - STATE(4335), 1, + ACTIONS(7773), 1, + anon_sym_EQ2, + STATE(3190), 1, + sym__flag_equals_value, + STATE(4337), 1, sym_comment, - ACTIONS(2698), 2, + ACTIONS(4430), 2, sym__newline, anon_sym_SEMI, - [126656] = 6, + [126736] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2114), 1, - sym__space, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern, - STATE(4336), 1, + ACTIONS(8133), 1, + anon_sym_DQUOTE, + STATE(4338), 1, sym_comment, - ACTIONS(2116), 2, - sym__newline, - anon_sym_SEMI, - [126676] = 7, + STATE(4480), 1, + aux_sym_string_content_repeat1, + STATE(5204), 1, + sym_string_content, + ACTIONS(7977), 2, + sym__escaped_str_content, + sym_escape_sequence, + [126756] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(5986), 1, - anon_sym_EQ, - ACTIONS(8005), 1, - anon_sym_COLON, - STATE(4337), 1, - sym_comment, - STATE(4888), 1, - aux_sym__repeat_newline, - STATE(5265), 1, - sym_param_type, - [126698] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1711), 1, - sym__unquoted_pattern, - ACTIONS(2660), 1, - sym__space, - ACTIONS(2718), 1, - anon_sym_LPAREN2, - STATE(4338), 1, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(4339), 1, sym_comment, - ACTIONS(2662), 2, + STATE(4778), 1, + sym_block, + ACTIONS(7722), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126718] = 6, - ACTIONS(105), 1, + [126774] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2676), 1, - sym__space, - ACTIONS(2684), 1, - anon_sym_LPAREN2, - ACTIONS(2686), 1, + ACTIONS(2638), 1, sym__unquoted_pattern, - STATE(4339), 1, + STATE(4340), 1, sym_comment, - ACTIONS(2678), 2, + ACTIONS(1254), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - [126738] = 7, + anon_sym_PIPE, + anon_sym_EQ_GT, + [126790] = 7, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2634), 1, + ACTIONS(2994), 1, aux_sym_cmd_identifier_token2, - ACTIONS(5298), 1, + ACTIONS(5321), 1, anon_sym_DOLLAR, - ACTIONS(7518), 1, + ACTIONS(7881), 1, sym_identifier, - STATE(2868), 1, - sym_val_variable, - STATE(4340), 1, - sym_comment, - STATE(5476), 1, + STATE(2933), 1, sym__variable_name, - [126760] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2375), 1, - sym__entry_separator, - ACTIONS(8120), 1, - anon_sym_LBRACK2, + STATE(3059), 1, + sym_val_variable, STATE(4341), 1, sym_comment, - ACTIONS(2377), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [126778] = 4, + [126812] = 6, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8135), 1, + anon_sym_DQUOTE, STATE(4342), 1, sym_comment, - ACTIONS(2576), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2578), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [126794] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2604), 1, - sym__space, - ACTIONS(2608), 1, - anon_sym_LPAREN2, - ACTIONS(2610), 1, - sym__unquoted_pattern, - STATE(4343), 1, - sym_comment, - ACTIONS(2606), 2, - sym__newline, - anon_sym_SEMI, - [126814] = 6, + STATE(4480), 1, + aux_sym_string_content_repeat1, + STATE(5210), 1, + sym_string_content, + ACTIONS(7977), 2, + sym__escaped_str_content, + sym_escape_sequence, + [126832] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8122), 1, + ACTIONS(8137), 1, anon_sym_DQUOTE, - STATE(4344), 1, + STATE(4343), 1, sym_comment, - STATE(4379), 1, + STATE(4480), 1, aux_sym_string_content_repeat1, - STATE(5338), 1, + STATE(5216), 1, sym_string_content, - ACTIONS(7973), 2, + ACTIONS(7977), 2, sym__escaped_str_content, sym_escape_sequence, - [126834] = 7, + [126852] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8007), 1, - anon_sym_LPAREN, - ACTIONS(8011), 1, - sym_unescaped_interpolated_content, - ACTIONS(8124), 1, - anon_sym_SQUOTE2, + STATE(4344), 1, + sym_comment, + ACTIONS(1874), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1876), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [126868] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(2125), 1, + anon_sym_LBRACE, + ACTIONS(8139), 1, + anon_sym_DOT_DOT2, STATE(4345), 1, sym_comment, - STATE(4353), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4921), 1, - sym_expr_interpolated, - [126856] = 7, + ACTIONS(8141), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [126888] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8029), 1, - sym_identifier, - ACTIONS(8031), 1, - anon_sym_DOLLAR, - STATE(2868), 1, - sym_val_variable, + ACTIONS(3930), 1, + anon_sym_LBRACE, STATE(4346), 1, sym_comment, - STATE(4347), 1, - sym__variable_name, - STATE(4605), 1, - sym__assignment_pattern, - [126878] = 7, + STATE(4916), 1, + sym_block, + ACTIONS(7760), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126906] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(5714), 1, - anon_sym_EQ, - ACTIONS(8005), 1, - anon_sym_COLON, + ACTIONS(1947), 1, + sym__unquoted_pattern, STATE(4347), 1, sym_comment, - STATE(4888), 1, - aux_sym__repeat_newline, - STATE(5376), 1, - sym_param_type, - [126900] = 4, + ACTIONS(1945), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [126922] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(4348), 1, sym_comment, - ACTIONS(2576), 2, + ACTIONS(1945), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2578), 3, + ACTIONS(1947), 3, anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT_DOT, sym__unquoted_pattern_in_list, - [126916] = 6, + [126938] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1258), 1, - sym__space, - ACTIONS(2630), 1, + ACTIONS(1697), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2706), 1, + sym__entry_separator, + ACTIONS(2710), 1, anon_sym_LPAREN2, - ACTIONS(2632), 1, - sym__unquoted_pattern, STATE(4349), 1, sym_comment, - ACTIONS(1242), 2, - sym__newline, - anon_sym_SEMI, - [126936] = 6, - ACTIONS(105), 1, + ACTIONS(2708), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [126958] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1250), 1, - sym__space, - ACTIONS(2630), 1, - anon_sym_LPAREN2, - ACTIONS(2632), 1, + ACTIONS(1876), 1, sym__unquoted_pattern, STATE(4350), 1, sym_comment, - ACTIONS(1234), 2, + ACTIONS(1874), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - [126956] = 7, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [126974] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1468), 1, - anon_sym_COLON2, - ACTIONS(5040), 1, - anon_sym_DOT2, - STATE(472), 1, - sym_path, - STATE(497), 1, - sym_cell_path, - STATE(2335), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(2099), 1, + sym__entry_separator, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, + sym__unquoted_pattern_in_list, STATE(4351), 1, sym_comment, - [126978] = 6, + ACTIONS(2101), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [126994] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7965), 1, - anon_sym_DOT_DOT2, - ACTIONS(8126), 1, - anon_sym_RBRACE, - ACTIONS(8128), 1, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2640), 1, sym__entry_separator, STATE(4352), 1, sym_comment, - ACTIONS(7967), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [126998] = 7, - ACTIONS(105), 1, + ACTIONS(2642), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [127014] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8007), 1, - anon_sym_LPAREN, - ACTIONS(8011), 1, - sym_unescaped_interpolated_content, - ACTIONS(8130), 1, - anon_sym_SQUOTE2, - STATE(4225), 1, - aux_sym__inter_single_quotes_repeat1, + STATE(1363), 1, + aux_sym__block_body_repeat1, STATE(4353), 1, sym_comment, - STATE(4921), 1, - sym_expr_interpolated, - [127020] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2104), 1, - sym__entry_separator, - ACTIONS(2106), 1, + ACTIONS(155), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(469), 2, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(8132), 1, - anon_sym_DOT_DOT2, - STATE(4354), 1, + [127032] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8143), 1, + anon_sym_DASH_DASH, + STATE(4731), 1, + sym_long_flag, + ACTIONS(4465), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + STATE(4354), 2, sym_comment, - ACTIONS(8134), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [127040] = 6, - ACTIONS(105), 1, + aux_sym_decl_def_repeat1, + [127050] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7965), 1, - anon_sym_DOT_DOT2, - ACTIONS(8136), 1, - anon_sym_RBRACE, - ACTIONS(8138), 1, - sym__entry_separator, + ACTIONS(1804), 1, + sym__unquoted_pattern, STATE(4355), 1, sym_comment, - ACTIONS(7967), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [127060] = 7, + ACTIONS(1802), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127066] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8029), 1, - sym_identifier, - ACTIONS(8031), 1, - anon_sym_DOLLAR, - STATE(2868), 1, - sym_val_variable, - STATE(4250), 1, - sym__variable_name, + ACTIONS(7720), 1, + anon_sym_EQ2, STATE(4356), 1, sym_comment, - STATE(4605), 1, - sym__assignment_pattern, - [127082] = 4, + STATE(4860), 1, + sym__flag_equals_value, + ACTIONS(4432), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [127084] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7975), 1, - anon_sym_QMARK2, + ACTIONS(1636), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2125), 1, + sym__entry_separator, + ACTIONS(2129), 1, + anon_sym_LPAREN2, STATE(4357), 1, sym_comment, - ACTIONS(1460), 4, + ACTIONS(2127), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [127098] = 4, + anon_sym_DOT_DOT, + [127104] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2674), 1, - sym__unquoted_pattern, + ACTIONS(3930), 1, + anon_sym_LBRACE, STATE(4358), 1, sym_comment, - ACTIONS(7652), 4, - anon_sym_if, + STATE(4918), 1, + sym_block, + ACTIONS(7760), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [127114] = 7, + anon_sym_SEMI, + [127122] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8029), 1, - sym_identifier, - ACTIONS(8031), 1, - anon_sym_DOLLAR, - STATE(2868), 1, - sym_val_variable, - STATE(4282), 1, - sym__variable_name, + STATE(1290), 1, + aux_sym__block_body_repeat1, STATE(4359), 1, sym_comment, - STATE(4605), 1, - sym__assignment_pattern, - [127136] = 7, - ACTIONS(3), 1, + ACTIONS(155), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3096), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127140] = 7, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8029), 1, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7592), 1, sym_identifier, - ACTIONS(8031), 1, + ACTIONS(7594), 1, anon_sym_DOLLAR, - STATE(2868), 1, - sym_val_variable, - STATE(4337), 1, + STATE(2837), 1, sym__variable_name, + STATE(2849), 1, + sym_val_variable, STATE(4360), 1, sym_comment, - STATE(4764), 1, - sym__assignment_pattern_parenthesized, - [127158] = 6, - ACTIONS(105), 1, + [127162] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8140), 1, - anon_sym_DQUOTE, + ACTIONS(1840), 1, + sym__unquoted_pattern, STATE(4361), 1, sym_comment, - STATE(4379), 1, - aux_sym_string_content_repeat1, - STATE(5164), 1, - sym_string_content, - ACTIONS(7973), 2, - sym__escaped_str_content, - sym_escape_sequence, + ACTIONS(910), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, [127178] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4362), 1, sym_comment, - ACTIONS(8142), 4, + ACTIONS(8146), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -247179,19328 +247127,19355 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(4363), 1, sym_comment, - ACTIONS(8144), 4, + ACTIONS(8148), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [127204] = 4, + [127204] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern, STATE(4364), 1, sym_comment, - ACTIONS(2104), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [127219] = 6, - ACTIONS(105), 1, + ACTIONS(1524), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [127217] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2104), 1, - sym__entry_separator, - ACTIONS(2106), 1, - anon_sym_RBRACK, - ACTIONS(2108), 1, - anon_sym_LPAREN2, STATE(4365), 1, sym_comment, - [127238] = 4, - ACTIONS(105), 1, + ACTIONS(1542), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [127230] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2174), 1, - sym__entry_separator, STATE(4366), 1, sym_comment, - ACTIONS(2176), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [127253] = 6, - ACTIONS(105), 1, + ACTIONS(1546), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [127243] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1242), 1, - anon_sym_RBRACK, - ACTIONS(1258), 1, - sym__entry_separator, - ACTIONS(2630), 1, - anon_sym_LPAREN2, - ACTIONS(2632), 1, - sym__unquoted_pattern_in_list, STATE(4367), 1, sym_comment, - [127272] = 6, - ACTIONS(105), 1, + ACTIONS(8150), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127256] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1234), 1, - anon_sym_RBRACK, - ACTIONS(1250), 1, - sym__entry_separator, - ACTIONS(2630), 1, - anon_sym_LPAREN2, - ACTIONS(2632), 1, - sym__unquoted_pattern_in_list, STATE(4368), 1, sym_comment, - [127291] = 6, - ACTIONS(3), 1, + ACTIONS(8152), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127269] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8146), 1, - anon_sym_LBRACK, - ACTIONS(8148), 1, - anon_sym_LPAREN, - STATE(4265), 1, - sym_parameter_parens, - STATE(4267), 1, - sym_parameter_bracks, STATE(4369), 1, sym_comment, - [127310] = 4, - ACTIONS(3), 1, + ACTIONS(1874), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1876), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [127284] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2124), 1, - sym__unquoted_pattern, STATE(4370), 1, sym_comment, - ACTIONS(2696), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [127325] = 4, + ACTIONS(1945), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1947), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [127299] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2124), 1, + ACTIONS(2638), 1, sym__unquoted_pattern, STATE(4371), 1, sym_comment, - ACTIONS(2114), 3, + ACTIONS(1254), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [127340] = 4, - ACTIONS(105), 1, + [127314] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2423), 1, - sym__entry_separator, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3278), 1, + sym_block, STATE(4372), 1, sym_comment, - ACTIONS(2425), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [127355] = 6, - ACTIONS(105), 1, + [127333] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1618), 1, - anon_sym_RBRACE, - ACTIONS(1624), 1, - sym__entry_separator, - ACTIONS(1626), 1, - anon_sym_COLON2, - STATE(1491), 1, - aux_sym__types_body_repeat2, STATE(4373), 1, sym_comment, - [127374] = 4, - ACTIONS(105), 1, + ACTIONS(8154), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127346] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2431), 1, - sym__entry_separator, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3280), 1, + sym_block, STATE(4374), 1, sym_comment, - ACTIONS(2433), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [127389] = 4, + [127365] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - sym__unquoted_pattern, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(3281), 1, + sym_block, + STATE(4372), 1, + aux_sym__repeat_newline, STATE(4375), 1, sym_comment, - ACTIONS(2660), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [127404] = 4, - ACTIONS(105), 1, + [127384] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2435), 1, - sym__entry_separator, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(3282), 1, + sym_block, + STATE(4374), 1, + aux_sym__repeat_newline, STATE(4376), 1, sym_comment, - ACTIONS(2437), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [127419] = 4, + [127403] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2686), 1, + ACTIONS(2638), 1, sym__unquoted_pattern, STATE(4377), 1, sym_comment, - ACTIONS(2676), 3, + ACTIONS(1262), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [127434] = 4, + [127418] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2578), 1, - sym__unquoted_pattern, STATE(4378), 1, sym_comment, - ACTIONS(2576), 3, + ACTIONS(8156), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [127449] = 5, - ACTIONS(105), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127431] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8150), 1, - anon_sym_DQUOTE, STATE(4379), 1, sym_comment, - STATE(4507), 1, - aux_sym_string_content_repeat1, - ACTIONS(7973), 2, - sym__escaped_str_content, - sym_escape_sequence, - [127466] = 4, - ACTIONS(105), 1, + ACTIONS(1552), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [127444] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2439), 1, - sym__entry_separator, + ACTIONS(1636), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8158), 1, + anon_sym_DOT_DOT2, STATE(4380), 1, sym_comment, - ACTIONS(2441), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [127481] = 4, - ACTIONS(105), 1, + ACTIONS(8160), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127461] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2443), 1, - sym__entry_separator, STATE(4381), 1, sym_comment, - ACTIONS(2445), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [127496] = 3, - ACTIONS(3), 1, + ACTIONS(1492), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [127474] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2608), 1, + sym__entry_separator, + ACTIONS(2610), 1, + anon_sym_RBRACK, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern_in_list, STATE(4382), 1, sym_comment, - ACTIONS(8152), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [127509] = 3, + [127493] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4383), 1, sym_comment, - ACTIONS(8152), 4, - anon_sym_if, + ACTIONS(8162), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [127522] = 5, - ACTIONS(105), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127506] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4832), 1, - sym__entry_separator, - STATE(2289), 1, - aux_sym__types_body_repeat2, STATE(4384), 1, sym_comment, - ACTIONS(8154), 2, + ACTIONS(4523), 4, + sym__newline, anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT, - [127539] = 5, + [127519] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4832), 1, + ACTIONS(910), 1, sym__entry_separator, - STATE(2290), 1, - aux_sym__types_body_repeat2, + ACTIONS(6788), 1, + sym__unquoted_pattern_in_list, STATE(4385), 1, sym_comment, - ACTIONS(8154), 2, + ACTIONS(811), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [127556] = 4, + [127536] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2447), 1, + ACTIONS(1610), 1, + anon_sym_RBRACK, + ACTIONS(1736), 1, sym__entry_separator, + ACTIONS(2720), 1, + anon_sym_LPAREN2, + ACTIONS(2722), 1, + sym__unquoted_pattern_in_list, STATE(4386), 1, sym_comment, - ACTIONS(2449), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [127571] = 3, + [127555] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2614), 1, + sym__unquoted_pattern, STATE(4387), 1, sym_comment, - ACTIONS(8156), 4, - anon_sym_if, + ACTIONS(2608), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [127584] = 6, - ACTIONS(105), 1, + [127570] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1624), 1, - sym__entry_separator, - ACTIONS(1626), 1, - anon_sym_COLON2, - ACTIONS(8158), 1, - anon_sym_RBRACE, - STATE(1492), 1, - aux_sym__types_body_repeat2, STATE(4388), 1, sym_comment, - [127603] = 5, + ACTIONS(1576), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [127583] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7938), 1, - anon_sym_RPAREN, STATE(4389), 1, sym_comment, - STATE(4652), 1, - aux_sym__block_body_repeat1, - ACTIONS(8160), 2, + ACTIONS(8164), 4, sym__newline, anon_sym_SEMI, - [127620] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127596] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(3091), 1, - sym_block, STATE(4390), 1, sym_comment, - STATE(4426), 1, - aux_sym__repeat_newline, - [127639] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8162), 1, - sym__space, - ACTIONS(5880), 2, + ACTIONS(8166), 4, sym__newline, anon_sym_SEMI, - STATE(4391), 2, - sym_comment, - aux_sym_attribute_repeat1, - [127654] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127609] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2598), 1, + sym__unquoted_pattern, + STATE(4391), 1, + sym_comment, + ACTIONS(2596), 3, sym__newline, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(2937), 1, - sym_block, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127624] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2718), 1, + sym__unquoted_pattern, STATE(4392), 1, sym_comment, - [127673] = 6, + ACTIONS(2712), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127639] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(3102), 1, - anon_sym_SEMI, - STATE(1375), 1, - aux_sym__parenthesized_body_repeat1, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3558), 1, + sym_block, STATE(4393), 1, sym_comment, - STATE(4679), 1, - aux_sym__repeat_newline, - [127692] = 4, - ACTIONS(105), 1, + [127658] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2451), 1, - sym__entry_separator, STATE(4394), 1, sym_comment, - ACTIONS(2453), 3, - anon_sym_RBRACK, + ACTIONS(8168), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [127707] = 3, + [127671] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4395), 1, sym_comment, - ACTIONS(1529), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [127720] = 4, - ACTIONS(105), 1, + ACTIONS(8170), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127684] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8165), 1, - anon_sym_LPAREN, STATE(4396), 1, sym_comment, - ACTIONS(8167), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [127735] = 4, + ACTIONS(8172), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127697] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2610), 1, - sym__unquoted_pattern, STATE(4397), 1, sym_comment, - ACTIONS(2604), 3, + ACTIONS(7383), 4, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [127750] = 6, - ACTIONS(105), 1, + anon_sym_SEMI, + anon_sym_LBRACE, + [127710] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1242), 1, - anon_sym_RBRACE, - ACTIONS(1258), 1, - sym__entry_separator, - ACTIONS(2630), 1, - anon_sym_LPAREN2, - ACTIONS(2632), 1, - sym__unquoted_pattern_in_record, STATE(4398), 1, sym_comment, - [127769] = 6, - ACTIONS(105), 1, + ACTIONS(7381), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [127723] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1234), 1, - anon_sym_RBRACE, - ACTIONS(1250), 1, - sym__entry_separator, - ACTIONS(2630), 1, - anon_sym_LPAREN2, - ACTIONS(2632), 1, - sym__unquoted_pattern_in_record, STATE(4399), 1, sym_comment, - [127788] = 3, + ACTIONS(8174), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127736] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4400), 1, sym_comment, - ACTIONS(1533), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [127801] = 3, + ACTIONS(8176), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127749] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4401), 1, sym_comment, - ACTIONS(1537), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [127814] = 4, - ACTIONS(105), 1, + ACTIONS(8178), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127762] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8169), 1, - anon_sym_LPAREN, STATE(4402), 1, sym_comment, - ACTIONS(8171), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [127829] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_LPAREN2, - ACTIONS(8035), 1, + ACTIONS(8180), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(8037), 1, - sym__entry_separator, + [127775] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4403), 1, sym_comment, - STATE(5046), 1, - sym__expr_parenthesized_immediate, - [127848] = 4, + ACTIONS(8182), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127788] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2632), 1, - sym__unquoted_pattern, + ACTIONS(469), 1, + ts_builtin_sym_end, + STATE(1378), 1, + aux_sym__block_body_repeat1, STATE(4404), 1, sym_comment, - ACTIONS(1258), 3, + ACTIONS(55), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [127863] = 4, + anon_sym_SEMI, + [127805] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2632), 1, - sym__unquoted_pattern, STATE(4405), 1, sym_comment, - ACTIONS(1250), 3, + ACTIONS(8184), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [127878] = 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127818] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7708), 1, - anon_sym_RPAREN, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3566), 1, + sym_block, STATE(4406), 1, sym_comment, - STATE(4652), 1, - aux_sym__block_body_repeat1, - ACTIONS(8160), 2, - sym__newline, - anon_sym_SEMI, - [127895] = 3, + [127837] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(3571), 1, + sym_block, + STATE(4393), 1, + aux_sym__repeat_newline, STATE(4407), 1, sym_comment, - ACTIONS(1488), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [127908] = 3, + [127856] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(3572), 1, + sym_block, + STATE(4406), 1, + aux_sym__repeat_newline, STATE(4408), 1, sym_comment, - ACTIONS(1543), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [127921] = 3, + [127875] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1697), 1, + sym__unquoted_pattern, STATE(4409), 1, sym_comment, - ACTIONS(1547), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [127934] = 5, + ACTIONS(2706), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127890] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(465), 1, - ts_builtin_sym_end, - STATE(1372), 1, - aux_sym__block_body_repeat1, + ACTIONS(2109), 1, + sym__unquoted_pattern, STATE(4410), 1, sym_comment, - ACTIONS(55), 2, + ACTIONS(2099), 3, sym__newline, - anon_sym_SEMI, - [127951] = 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127905] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5822), 1, - sym__newline, - ACTIONS(8173), 1, - anon_sym_EQ, - ACTIONS(8175), 1, - anon_sym_COLON, - STATE(3448), 1, - aux_sym__repeat_newline, + ACTIONS(2109), 1, + sym__unquoted_pattern, STATE(4411), 1, sym_comment, - [127970] = 3, + ACTIONS(2640), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127920] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1636), 1, + sym__unquoted_pattern, STATE(4412), 1, sym_comment, - ACTIONS(7940), 4, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - anon_sym_AT, - [127983] = 5, + ACTIONS(2125), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127935] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3090), 1, - ts_builtin_sym_end, - STATE(1371), 1, - aux_sym__block_body_repeat1, - STATE(4413), 1, + ACTIONS(1560), 1, + sym__table_head_separator, + ACTIONS(8186), 1, + anon_sym_DOT2, + STATE(4990), 1, + sym_path, + STATE(4413), 2, sym_comment, - ACTIONS(55), 2, - sym__newline, - anon_sym_SEMI, - [128000] = 4, - ACTIONS(105), 1, + aux_sym__where_predicate_lhs_repeat1, + [127952] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2186), 1, - sym__entry_separator, STATE(4414), 1, sym_comment, - ACTIONS(2188), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [128015] = 6, - ACTIONS(105), 1, + ACTIONS(7413), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [127965] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_LPAREN2, - ACTIONS(8039), 1, - anon_sym_RBRACE, - ACTIONS(8041), 1, - sym__entry_separator, STATE(4415), 1, sym_comment, - STATE(5046), 1, - sym__expr_parenthesized_immediate, - [128034] = 4, - ACTIONS(105), 1, + ACTIONS(8189), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127978] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2381), 1, - sym__entry_separator, STATE(4416), 1, sym_comment, - ACTIONS(2383), 3, - anon_sym_RBRACK, + ACTIONS(8191), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [128049] = 5, + [127991] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8177), 1, - anon_sym_RPAREN, + ACTIONS(1569), 1, + sym__table_head_separator, + ACTIONS(7985), 1, + anon_sym_DOT2, + STATE(4413), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(4417), 1, sym_comment, - STATE(4652), 1, - aux_sym__block_body_repeat1, - ACTIONS(8160), 2, - sym__newline, - anon_sym_SEMI, - [128066] = 4, + STATE(4990), 1, + sym_path, + [128010] = 4, ACTIONS(105), 1, anon_sym_POUND, STATE(4418), 1, sym_comment, - ACTIONS(5385), 2, - anon_sym_AT2, + ACTIONS(1802), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(6447), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [128081] = 4, + ACTIONS(1804), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [128025] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1598), 1, + sym__entry_separator, STATE(4419), 1, sym_comment, - ACTIONS(5387), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6449), 2, + ACTIONS(1596), 3, anon_sym_RBRACK, anon_sym_GT2, - [128096] = 6, + anon_sym_DOT_DOT, + [128040] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(3066), 1, - sym_block, + ACTIONS(2638), 1, + sym__unquoted_pattern, STATE(4420), 1, sym_comment, - STATE(4638), 1, - aux_sym__repeat_newline, - [128115] = 3, + ACTIONS(1254), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [128055] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2638), 1, + sym__unquoted_pattern, STATE(4421), 1, sym_comment, - ACTIONS(8179), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128128] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8146), 1, + ACTIONS(1262), 3, anon_sym_LBRACK, - ACTIONS(8148), 1, anon_sym_LPAREN, - STATE(4227), 1, - sym_parameter_parens, - STATE(4228), 1, - sym_parameter_bracks, + anon_sym_DASH_DASH, + [128070] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1636), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2125), 1, + sym__entry_separator, + ACTIONS(2127), 1, + anon_sym_RBRACK, + ACTIONS(2129), 1, + anon_sym_LPAREN2, STATE(4422), 1, sym_comment, - [128147] = 3, - ACTIONS(3), 1, + [128089] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1246), 1, + anon_sym_RBRACK, + ACTIONS(1262), 1, + sym__entry_separator, + ACTIONS(2636), 1, + anon_sym_LPAREN2, + ACTIONS(2638), 1, + sym__unquoted_pattern_in_list, STATE(4423), 1, sym_comment, - ACTIONS(8181), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128160] = 3, - ACTIONS(3), 1, + [128108] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1238), 1, + anon_sym_RBRACK, + ACTIONS(1254), 1, + sym__entry_separator, + ACTIONS(2636), 1, + anon_sym_LPAREN2, + ACTIONS(2638), 1, + sym__unquoted_pattern_in_list, STATE(4424), 1, sym_comment, - ACTIONS(8183), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128173] = 3, + [128127] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1840), 1, + sym__unquoted_pattern, STATE(4425), 1, sym_comment, - ACTIONS(8185), 4, + ACTIONS(910), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128186] = 6, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [128142] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3067), 1, - sym_block, + ACTIONS(8193), 1, + anon_sym_LPAREN, STATE(4426), 1, sym_comment, - [128205] = 3, - ACTIONS(3), 1, + ACTIONS(8195), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [128157] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4427), 1, - sym_comment, - ACTIONS(7369), 4, - ts_builtin_sym_end, + ACTIONS(8197), 1, + sym__space, + ACTIONS(5904), 2, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [128218] = 3, + STATE(4427), 2, + sym_comment, + aux_sym_attribute_repeat1, + [128172] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4428), 1, sym_comment, - ACTIONS(7387), 4, - ts_builtin_sym_end, + ACTIONS(8200), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [128231] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128185] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4429), 1, sym_comment, - ACTIONS(4211), 4, - ts_builtin_sym_end, + ACTIONS(8202), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [128244] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128198] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4430), 1, sym_comment, - ACTIONS(4213), 4, - ts_builtin_sym_end, + ACTIONS(8204), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [128257] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128211] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4431), 1, sym_comment, - ACTIONS(8187), 4, + ACTIONS(8206), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [128270] = 3, + [128224] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2614), 1, + sym__unquoted_pattern, STATE(4432), 1, sym_comment, - ACTIONS(8187), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128283] = 4, - ACTIONS(105), 1, + ACTIONS(2608), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [128239] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8208), 1, + anon_sym_LBRACK, + ACTIONS(8210), 1, + anon_sym_LPAREN, + STATE(4346), 1, + sym_parameter_bracks, + STATE(4358), 1, + sym_parameter_parens, STATE(4433), 1, sym_comment, - ACTIONS(1774), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1776), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [128298] = 3, + [128258] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2722), 1, + sym__unquoted_pattern, STATE(4434), 1, sym_comment, - ACTIONS(8189), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128311] = 5, + ACTIONS(1736), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [128273] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2124), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8191), 1, - anon_sym_DOT_DOT2, STATE(4435), 1, sym_comment, - ACTIONS(8193), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [128328] = 3, + ACTIONS(8212), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [128286] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8214), 1, + anon_sym_LBRACE, + ACTIONS(8216), 1, + anon_sym_DOT_DOT2, STATE(4436), 1, sym_comment, - ACTIONS(8195), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128341] = 3, - ACTIONS(3), 1, + ACTIONS(8218), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [128303] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8222), 1, + sym__space, STATE(4437), 1, sym_comment, - ACTIONS(8195), 4, + STATE(4527), 1, + aux_sym_attribute_repeat1, + ACTIONS(8220), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128354] = 3, + [128320] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4438), 1, sym_comment, - ACTIONS(8197), 4, + ACTIONS(4175), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128367] = 4, - ACTIONS(105), 1, + anon_sym_LBRACE, + [128333] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4439), 1, sym_comment, - ACTIONS(1866), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1868), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [128382] = 6, + ACTIONS(4177), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [128346] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_LPAREN2, - ACTIONS(8043), 1, - anon_sym_RBRACE, - ACTIONS(8045), 1, - sym__entry_separator, STATE(4440), 1, sym_comment, - STATE(5046), 1, - sym__expr_parenthesized_immediate, - [128401] = 4, - ACTIONS(105), 1, + ACTIONS(8224), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(8226), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [128361] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(8228), 1, + anon_sym_LBRACK, + STATE(522), 1, + aux_sym__repeat_newline, STATE(4441), 1, sym_comment, - ACTIONS(1921), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1923), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [128416] = 5, - ACTIONS(105), 1, + STATE(5166), 1, + sym_val_list, + [128380] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2674), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7652), 1, - sym__entry_separator, STATE(4442), 1, sym_comment, - ACTIONS(7748), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [128433] = 6, - ACTIONS(105), 1, + ACTIONS(8230), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [128393] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2696), 1, - sym__entry_separator, - ACTIONS(2698), 1, - anon_sym_RBRACK, STATE(4443), 1, sym_comment, - [128452] = 6, - ACTIONS(105), 1, + ACTIONS(8232), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [128406] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2114), 1, - sym__entry_separator, - ACTIONS(2116), 1, - anon_sym_RBRACK, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern_in_list, STATE(4444), 1, sym_comment, - [128471] = 4, - ACTIONS(105), 1, + ACTIONS(8234), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128419] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4445), 1, sym_comment, - ACTIONS(5389), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6461), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [128486] = 4, - ACTIONS(105), 1, + ACTIONS(8234), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128432] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4446), 1, sym_comment, - ACTIONS(5391), 2, - anon_sym_AT2, + ACTIONS(8236), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128445] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + STATE(4447), 1, + sym_comment, + ACTIONS(2596), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(6463), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [128501] = 5, + ACTIONS(2598), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [128460] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8199), 1, - anon_sym_LBRACE, - ACTIONS(8201), 1, + ACTIONS(2109), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8238), 1, anon_sym_DOT_DOT2, - STATE(4447), 1, + STATE(4448), 1, sym_comment, - ACTIONS(8203), 2, + ACTIONS(8240), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [128518] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(3458), 1, - anon_sym_COLON2, - ACTIONS(8205), 2, - sym__newline, - sym__space, - STATE(4448), 2, - sym_comment, - aux_sym_pipe_element_parenthesized_repeat1, - [128533] = 4, - ACTIONS(105), 1, + [128477] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4449), 1, sym_comment, - ACTIONS(5393), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6465), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [128548] = 4, - ACTIONS(105), 1, + ACTIONS(8242), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128490] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4450), 1, sym_comment, - ACTIONS(5395), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6467), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [128563] = 6, + ACTIONS(8242), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128503] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_LPAREN2, - ACTIONS(6091), 1, + ACTIONS(2722), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7624), 1, sym__entry_separator, - ACTIONS(6093), 1, - anon_sym_RBRACE, STATE(4451), 1, sym_comment, - STATE(5413), 1, - sym__expr_parenthesized_immediate, - [128582] = 4, - ACTIONS(105), 1, + ACTIONS(7813), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [128520] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4452), 1, sym_comment, - ACTIONS(5397), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6473), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [128597] = 6, + ACTIONS(8244), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [128533] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_LPAREN2, - ACTIONS(6095), 1, - sym__entry_separator, - ACTIONS(6097), 1, + ACTIONS(1238), 1, anon_sym_RBRACE, + ACTIONS(1254), 1, + sym__entry_separator, + ACTIONS(2636), 1, + anon_sym_LPAREN2, + ACTIONS(2638), 1, + sym__unquoted_pattern_in_record, STATE(4453), 1, sym_comment, - STATE(5413), 1, - sym__expr_parenthesized_immediate, - [128616] = 3, - ACTIONS(3), 1, + [128552] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(7003), 1, + anon_sym_LPAREN2, + ACTIONS(7942), 1, + anon_sym_RBRACK, + ACTIONS(7944), 1, + sym__entry_separator, STATE(4454), 1, sym_comment, - ACTIONS(8208), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128629] = 3, - ACTIONS(3), 1, + STATE(5078), 1, + sym__expr_parenthesized_immediate, + [128571] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1246), 1, + anon_sym_RBRACE, + ACTIONS(1262), 1, + sym__entry_separator, + ACTIONS(2636), 1, + anon_sym_LPAREN2, + ACTIONS(2638), 1, + sym__unquoted_pattern_in_record, STATE(4455), 1, sym_comment, - ACTIONS(8210), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128642] = 6, - ACTIONS(105), 1, + [128590] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8212), 1, - anon_sym_GT2, - ACTIONS(8214), 1, - anon_sym_AT2, - ACTIONS(8216), 1, - sym__entry_separator, + ACTIONS(7335), 1, + sym__unquoted_pattern, STATE(4456), 1, sym_comment, - STATE(4989), 1, - sym_param_completer, - [128661] = 4, + ACTIONS(910), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [128605] = 6, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2608), 1, + sym__entry_separator, + ACTIONS(2610), 1, + anon_sym_RBRACE, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern_in_record, STATE(4457), 1, sym_comment, - ACTIONS(5249), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6085), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [128676] = 4, + [128624] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2674), 1, - sym__unquoted_pattern, + ACTIONS(8246), 1, + anon_sym_RBRACK, + STATE(3650), 1, + aux_sym_parameter_repeat2, STATE(4458), 1, sym_comment, - ACTIONS(1738), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [128691] = 3, + ACTIONS(1506), 2, + sym__newline, + anon_sym_COMMA, + [128641] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2598), 1, + sym__unquoted_pattern, STATE(4459), 1, sym_comment, - ACTIONS(7490), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [128704] = 4, + ACTIONS(2596), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [128656] = 6, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2712), 1, + sym__entry_separator, + ACTIONS(2714), 1, + anon_sym_RBRACE, + ACTIONS(2716), 1, + anon_sym_LPAREN2, + ACTIONS(2718), 1, + sym__unquoted_pattern_in_record, STATE(4460), 1, sym_comment, - ACTIONS(8218), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(8220), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [128719] = 3, - ACTIONS(3), 1, + [128675] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1697), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2706), 1, + sym__entry_separator, + ACTIONS(2708), 1, + anon_sym_RBRACE, + ACTIONS(2710), 1, + anon_sym_LPAREN2, STATE(4461), 1, sym_comment, - ACTIONS(8222), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128732] = 4, + [128694] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8224), 1, - anon_sym_LPAREN, + ACTIONS(2099), 1, + sym__entry_separator, + ACTIONS(2101), 1, + anon_sym_RBRACE, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, + sym__unquoted_pattern_in_record, STATE(4462), 1, sym_comment, - ACTIONS(8226), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [128747] = 3, - ACTIONS(3), 1, + [128713] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1636), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2125), 1, + sym__entry_separator, + ACTIONS(2127), 1, + anon_sym_RBRACE, + ACTIONS(2129), 1, + anon_sym_LPAREN2, STATE(4463), 1, sym_comment, - ACTIONS(8228), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128760] = 6, - ACTIONS(3), 1, + [128732] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(8230), 1, - anon_sym_LBRACK, - STATE(501), 1, - aux_sym__repeat_newline, + ACTIONS(1610), 1, + anon_sym_RBRACE, + ACTIONS(1736), 1, + sym__entry_separator, + ACTIONS(2720), 1, + anon_sym_LPAREN2, + ACTIONS(2722), 1, + sym__unquoted_pattern_in_record, STATE(4464), 1, sym_comment, - STATE(5481), 1, - sym_val_list, - [128779] = 6, + [128751] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8232), 1, - anon_sym_COLON, - ACTIONS(8234), 1, - anon_sym_GT2, - ACTIONS(8236), 1, - sym__entry_separator, STATE(4465), 1, sym_comment, - STATE(4961), 1, - sym__collection_annotation, - [128798] = 4, + ACTIONS(1584), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [128764] = 3, ACTIONS(105), 1, anon_sym_POUND, STATE(4466), 1, sym_comment, - ACTIONS(1774), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1776), 2, + ACTIONS(1532), 4, anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [128813] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2592), 1, sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [128777] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2314), 1, + anon_sym_LBRACE, + ACTIONS(8248), 1, + anon_sym_DOT_DOT2, STATE(4467), 1, sym_comment, - ACTIONS(2594), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [128828] = 3, - ACTIONS(3), 1, + ACTIONS(8250), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [128794] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2640), 1, + sym__entry_separator, + ACTIONS(2642), 1, + anon_sym_RBRACK, STATE(4468), 1, sym_comment, - ACTIONS(8238), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128841] = 3, - ACTIONS(3), 1, + [128813] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2099), 1, + sym__entry_separator, + ACTIONS(2101), 1, + anon_sym_RBRACK, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, + sym__unquoted_pattern_in_list, STATE(4469), 1, sym_comment, - ACTIONS(8238), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128854] = 3, - ACTIONS(3), 1, + [128832] = 3, + ACTIONS(105), 1, anon_sym_POUND, STATE(4470), 1, sym_comment, - ACTIONS(8240), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128867] = 3, + ACTIONS(1536), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [128845] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4471), 1, sym_comment, - ACTIONS(8240), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128880] = 5, - ACTIONS(105), 1, + ACTIONS(1802), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1804), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [128860] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8242), 1, - anon_sym_COLON2, - STATE(4448), 1, - aux_sym_pipe_element_parenthesized_repeat1, STATE(4472), 1, sym_comment, - ACTIONS(5454), 2, + ACTIONS(1874), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1876), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [128875] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(3462), 1, + anon_sym_COLON2, + ACTIONS(8252), 2, sym__newline, sym__space, - [128897] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4473), 1, + STATE(4473), 2, sym_comment, - ACTIONS(8244), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128910] = 3, + aux_sym_pipe_element_parenthesized_repeat1, + [128890] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7740), 1, + anon_sym_LBRACE, + STATE(3283), 1, + sym__blosure, STATE(4474), 1, sym_comment, - ACTIONS(4173), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [128923] = 3, - ACTIONS(3), 1, + STATE(3221), 2, + sym_block, + sym_val_closure, + [128907] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2800), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2838), 1, + anon_sym_COLON2, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(4390), 1, + sym_block, STATE(4475), 1, sym_comment, - ACTIONS(4175), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [128936] = 6, + [128926] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6954), 1, - anon_sym_LPAREN2, - ACTIONS(8246), 1, - anon_sym_RBRACK, - ACTIONS(8248), 1, - sym__entry_separator, + ACTIONS(8255), 1, + anon_sym_LPAREN, STATE(4476), 1, sym_comment, - STATE(5400), 1, - sym__expr_parenthesized_immediate, - [128955] = 6, - ACTIONS(105), 1, + ACTIONS(8257), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [128941] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2604), 1, - sym__entry_separator, - ACTIONS(2606), 1, - anon_sym_RBRACK, - ACTIONS(2608), 1, - anon_sym_LPAREN2, - ACTIONS(2610), 1, - sym__unquoted_pattern_in_list, STATE(4477), 1, sym_comment, - [128974] = 3, - ACTIONS(3), 1, + ACTIONS(1945), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1947), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [128956] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2800), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2838), 1, + anon_sym_COLON2, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(4389), 1, + sym_block, STATE(4478), 1, sym_comment, - ACTIONS(8250), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128987] = 3, - ACTIONS(3), 1, + [128975] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2800), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2838), 1, + anon_sym_COLON2, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(2967), 1, + sym_block, STATE(4479), 1, sym_comment, - ACTIONS(8250), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129000] = 3, - ACTIONS(3), 1, + [128994] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8259), 1, + anon_sym_DQUOTE, STATE(4480), 1, sym_comment, - ACTIONS(7403), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [129013] = 3, - ACTIONS(3), 1, + STATE(4577), 1, + aux_sym_string_content_repeat1, + ACTIONS(7977), 2, + sym__escaped_str_content, + sym_escape_sequence, + [129011] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8261), 1, + anon_sym_LPAREN, STATE(4481), 1, sym_comment, - ACTIONS(8252), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129026] = 6, + ACTIONS(8263), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [129026] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1616), 1, - anon_sym_RBRACK, - ACTIONS(1738), 1, - sym__entry_separator, - ACTIONS(2672), 1, - anon_sym_LPAREN2, - ACTIONS(2674), 1, - sym__unquoted_pattern_in_list, + ACTIONS(8265), 1, + anon_sym_LPAREN, STATE(4482), 1, sym_comment, - [129045] = 3, + ACTIONS(8267), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [129041] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4483), 1, sym_comment, - ACTIONS(8252), 4, + ACTIONS(7870), 4, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + anon_sym_AT, + [129054] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3096), 1, + ts_builtin_sym_end, + STATE(1377), 1, + aux_sym__block_body_repeat1, + STATE(4484), 1, + sym_comment, + ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129058] = 5, + [129071] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(914), 1, + ACTIONS(8269), 1, + anon_sym_GT2, + ACTIONS(8271), 1, + anon_sym_AT2, + ACTIONS(8273), 1, sym__entry_separator, - ACTIONS(6629), 1, - sym__unquoted_pattern_in_list, - STATE(4484), 1, - sym_comment, - ACTIONS(811), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [129075] = 3, - ACTIONS(3), 1, - anon_sym_POUND, STATE(4485), 1, sym_comment, - ACTIONS(8238), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129088] = 3, - ACTIONS(3), 1, + STATE(4938), 1, + sym_param_completer, + [129090] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2103), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2640), 1, + sym__entry_separator, + ACTIONS(2642), 1, + anon_sym_RBRACE, STATE(4486), 1, sym_comment, - ACTIONS(8238), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129101] = 3, + [129109] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1804), 1, + sym__unquoted_pattern, STATE(4487), 1, sym_comment, - ACTIONS(8254), 4, + ACTIONS(1802), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129114] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [129124] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8208), 1, + anon_sym_LBRACK, + ACTIONS(8210), 1, + anon_sym_LPAREN, + STATE(4262), 1, + sym_parameter_bracks, + STATE(4268), 1, + sym_parameter_parens, STATE(4488), 1, sym_comment, - ACTIONS(8256), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129127] = 3, + [129143] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1876), 1, + sym__unquoted_pattern, STATE(4489), 1, sym_comment, - ACTIONS(4529), 4, + ACTIONS(1874), 3, sym__newline, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT, - [129140] = 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + [129158] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8146), 1, - anon_sym_LBRACK, - ACTIONS(8148), 1, - anon_sym_LPAREN, - STATE(4273), 1, - sym_parameter_parens, - STATE(4274), 1, - sym_parameter_bracks, + ACTIONS(1947), 1, + sym__unquoted_pattern, STATE(4490), 1, sym_comment, - [129159] = 6, + ACTIONS(1945), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [129173] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(910), 1, + sym__space, + ACTIONS(5088), 1, + sym__unquoted_pattern, + STATE(4491), 1, + sym_comment, + ACTIONS(811), 2, + sym__newline, + anon_sym_SEMI, + [129190] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1711), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2660), 1, + STATE(4492), 1, + sym_comment, + ACTIONS(1945), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2662), 1, + ACTIONS(1947), 2, anon_sym_RBRACK, - ACTIONS(2718), 1, - anon_sym_LPAREN2, - STATE(4491), 1, + sym__unquoted_pattern_in_list, + [129205] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(8275), 1, + anon_sym_DOT_DOT2, + STATE(4493), 1, sym_comment, - [129178] = 4, + ACTIONS(8277), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [129222] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4492), 1, + STATE(4494), 1, sym_comment, - ACTIONS(2576), 2, + ACTIONS(1874), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2578), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [129193] = 4, + ACTIONS(1876), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [129237] = 4, ACTIONS(105), 1, anon_sym_POUND, - STATE(4493), 1, + STATE(4495), 1, sym_comment, - ACTIONS(1866), 2, + ACTIONS(1802), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1868), 2, + ACTIONS(1804), 2, anon_sym_RBRACK, sym__unquoted_pattern_in_list, - [129208] = 5, + [129252] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(8258), 1, + ACTIONS(8216), 1, anon_sym_DOT_DOT2, - STATE(4494), 1, + ACTIONS(8279), 1, + anon_sym_LBRACE, + STATE(4496), 1, sym_comment, - ACTIONS(8260), 2, + ACTIONS(8218), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [129225] = 6, + [129269] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1788), 1, + ACTIONS(1810), 1, anon_sym_LBRACE, - ACTIONS(1790), 1, + ACTIONS(1812), 1, sym__unquoted_pattern, - ACTIONS(8262), 1, + ACTIONS(8281), 1, anon_sym_DOT, - ACTIONS(8264), 1, + ACTIONS(8283), 1, aux_sym__immediate_decimal_token5, - STATE(4495), 1, - sym_comment, - [129244] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7874), 1, - sym__newline, - ACTIONS(7876), 1, - anon_sym_PIPE, - ACTIONS(8266), 1, - anon_sym_EQ_GT, - STATE(4496), 1, - sym_comment, - STATE(4641), 1, - aux_sym_match_pattern_repeat1, - [129263] = 3, - ACTIONS(3), 1, - anon_sym_POUND, STATE(4497), 1, sym_comment, - ACTIONS(8268), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [129276] = 6, + [129288] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1616), 1, - anon_sym_RBRACE, - ACTIONS(1738), 1, + ACTIONS(2678), 1, sym__entry_separator, - ACTIONS(2672), 1, - anon_sym_LPAREN2, - ACTIONS(2674), 1, - sym__unquoted_pattern_in_record, STATE(4498), 1, sym_comment, - [129295] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4370), 1, - sym__entry_separator, - ACTIONS(8270), 1, - anon_sym_LBRACK, - ACTIONS(8272), 1, + ACTIONS(2680), 3, anon_sym_RBRACK, - STATE(1934), 1, - aux_sym__types_body_repeat2, + anon_sym_GT2, + anon_sym_RBRACE, + [129303] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3353), 1, + sym__blosure, STATE(4499), 1, sym_comment, - [129314] = 4, + STATE(3352), 2, + sym_block, + sym_val_closure, + [129320] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(3568), 1, + sym__blosure, STATE(4500), 1, sym_comment, - ACTIONS(1774), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1776), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [129329] = 4, + STATE(3352), 2, + sym_block, + sym_val_closure, + [129337] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2596), 1, + ACTIONS(5228), 1, + anon_sym_LPAREN2, + ACTIONS(6437), 1, sym__entry_separator, + ACTIONS(6439), 1, + anon_sym_RBRACE, STATE(4501), 1, sym_comment, - ACTIONS(2598), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [129344] = 4, - ACTIONS(3), 1, + STATE(5332), 1, + sym__expr_parenthesized_immediate, + [129356] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2674), 1, - sym__unquoted_pattern, + ACTIONS(1904), 1, + sym__entry_separator, STATE(4502), 1, sym_comment, - ACTIONS(7652), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [129359] = 4, - ACTIONS(3), 1, + ACTIONS(1906), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + [129371] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5228), 1, + anon_sym_LPAREN2, + ACTIONS(6433), 1, + sym__entry_separator, + ACTIONS(6435), 1, + anon_sym_RBRACE, STATE(4503), 1, sym_comment, - ACTIONS(1866), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1868), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [129374] = 4, - ACTIONS(105), 1, + STATE(5332), 1, + sym__expr_parenthesized_immediate, + [129390] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2251), 1, + anon_sym_LBRACE, + ACTIONS(8287), 1, + anon_sym_DOT_DOT2, STATE(4504), 1, sym_comment, - ACTIONS(1921), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1923), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [129389] = 6, + ACTIONS(8289), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [129407] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7522), 1, - anon_sym_LBRACK, - ACTIONS(7524), 1, - anon_sym_LPAREN, - STATE(4078), 1, - sym_parameter_parens, - STATE(4082), 1, - sym_parameter_bracks, + ACTIONS(2146), 1, + anon_sym_LBRACE, + ACTIONS(8291), 1, + anon_sym_DOT_DOT2, STATE(4505), 1, sym_comment, - [129408] = 4, + ACTIONS(8293), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [129424] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2271), 1, + anon_sym_LBRACE, + ACTIONS(8295), 1, + anon_sym_DOT_DOT2, STATE(4506), 1, sym_comment, - ACTIONS(1921), 2, + ACTIONS(8297), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1923), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [129423] = 4, - ACTIONS(105), 1, + [129441] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8274), 1, - anon_sym_DQUOTE, - ACTIONS(8276), 2, - sym__escaped_str_content, - sym_escape_sequence, - STATE(4507), 2, + STATE(4507), 1, sym_comment, - aux_sym_string_content_repeat1, - [129438] = 4, + ACTIONS(8299), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [129454] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2610), 1, - sym__unquoted_pattern, STATE(4508), 1, sym_comment, - ACTIONS(2604), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [129453] = 4, + ACTIONS(4205), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [129467] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1806), 1, - sym__unquoted_pattern, STATE(4509), 1, sym_comment, - ACTIONS(914), 3, + ACTIONS(8301), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [129468] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [129480] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(7630), 1, + sym__entry_separator, + ACTIONS(7724), 1, + anon_sym_DOT_DOT2, STATE(4510), 1, sym_comment, - ACTIONS(7424), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [129481] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(6954), 1, - anon_sym_LPAREN2, - ACTIONS(8279), 1, - anon_sym_RBRACK, - ACTIONS(8281), 1, + ACTIONS(7726), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [129497] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7624), 1, sym__entry_separator, + ACTIONS(7724), 1, + anon_sym_DOT_DOT2, STATE(4511), 1, sym_comment, - STATE(5400), 1, - sym__expr_parenthesized_immediate, - [129500] = 3, - ACTIONS(3), 1, + ACTIONS(7726), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [129514] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(4512), 1, sym_comment, - ACTIONS(8283), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129513] = 3, + ACTIONS(8303), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(8305), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [129529] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4513), 1, sym_comment, - ACTIONS(8283), 4, + ACTIONS(8301), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [129526] = 3, - ACTIONS(3), 1, + [129542] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2582), 1, + sym__entry_separator, STATE(4514), 1, sym_comment, - ACTIONS(8285), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2584), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [129539] = 3, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + [129557] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(4515), 1, sym_comment, - ACTIONS(8285), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [129552] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4370), 1, + ACTIONS(5364), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(8270), 1, - anon_sym_LBRACK, - ACTIONS(8287), 1, + ACTIONS(6579), 2, anon_sym_RBRACK, - STATE(1934), 1, - aux_sym__types_body_repeat2, - STATE(4516), 1, - sym_comment, - [129571] = 3, + anon_sym_GT2, + [129572] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4517), 1, + STATE(4516), 1, sym_comment, - ACTIONS(8289), 4, + ACTIONS(8307), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [129584] = 6, + [129585] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2104), 1, + STATE(4517), 1, + sym_comment, + ACTIONS(5377), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(2106), 1, - anon_sym_RBRACE, - ACTIONS(2108), 1, - anon_sym_LPAREN2, + ACTIONS(6581), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [129600] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4518), 1, sym_comment, - [129603] = 5, - ACTIONS(105), 1, + ACTIONS(4201), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [129613] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(914), 1, - sym__space, - ACTIONS(5076), 1, - sym__unquoted_pattern, STATE(4519), 1, sym_comment, - ACTIONS(811), 2, + ACTIONS(8309), 4, sym__newline, anon_sym_SEMI, - [129620] = 6, - ACTIONS(105), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [129626] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4370), 1, - sym__entry_separator, - ACTIONS(8270), 1, - anon_sym_LBRACK, - ACTIONS(8291), 1, - anon_sym_RBRACK, - STATE(1934), 1, - aux_sym__types_body_repeat2, STATE(4520), 1, sym_comment, - [129639] = 5, - ACTIONS(3), 1, + ACTIONS(8309), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [129639] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2154), 1, - anon_sym_LBRACE, - ACTIONS(8293), 1, - anon_sym_DOT_DOT2, STATE(4521), 1, sym_comment, - ACTIONS(8295), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [129656] = 4, - ACTIONS(3), 1, + ACTIONS(5401), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6593), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [129654] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2632), 1, - sym__unquoted_pattern, STATE(4522), 1, sym_comment, - ACTIONS(1258), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [129671] = 4, + ACTIONS(5411), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6595), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [129669] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2632), 1, - sym__unquoted_pattern, - STATE(4523), 1, - sym_comment, - ACTIONS(1250), 3, + ACTIONS(7514), 1, anon_sym_LBRACK, + ACTIONS(7516), 1, anon_sym_LPAREN, - anon_sym_DASH_DASH, - [129686] = 3, - ACTIONS(3), 1, + STATE(4146), 1, + sym_parameter_parens, + STATE(4147), 1, + sym_parameter_bracks, + STATE(4523), 1, + sym_comment, + [129688] = 4, + ACTIONS(105), 1, anon_sym_POUND, STATE(4524), 1, sym_comment, - ACTIONS(7444), 4, + ACTIONS(5413), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6597), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [129703] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4525), 1, + sym_comment, + ACTIONS(7409), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [129699] = 4, + [129716] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1602), 1, - sym__entry_separator, - STATE(4525), 1, + STATE(4526), 1, sym_comment, - ACTIONS(1600), 3, + ACTIONS(5429), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6599), 2, anon_sym_RBRACK, anon_sym_GT2, - anon_sym_DOT_DOT, - [129714] = 3, + [129731] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8222), 1, + sym__space, + STATE(4427), 1, + aux_sym_attribute_repeat1, + STATE(4527), 1, + sym_comment, + ACTIONS(8311), 2, + sym__newline, + anon_sym_SEMI, + [129748] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4526), 1, + STATE(4528), 1, sym_comment, - ACTIONS(8289), 4, + ACTIONS(8313), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [129727] = 4, + [129761] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1776), 1, - sym__unquoted_pattern, - STATE(4527), 1, + STATE(4529), 1, sym_comment, - ACTIONS(1774), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [129742] = 4, + ACTIONS(8315), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [129774] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1901), 1, - sym__entry_separator, - STATE(4528), 1, + STATE(4530), 1, sym_comment, - ACTIONS(1903), 3, + ACTIONS(5444), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6601), 2, anon_sym_RBRACK, anon_sym_GT2, - anon_sym_RBRACE, - [129757] = 6, + [129789] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4531), 1, + sym_comment, + ACTIONS(7417), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [129802] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6954), 1, - anon_sym_LPAREN2, - ACTIONS(7908), 1, - anon_sym_RBRACK, - ACTIONS(7910), 1, + ACTIONS(2445), 1, sym__entry_separator, - STATE(4529), 1, + STATE(4532), 1, sym_comment, - STATE(4998), 1, - sym__expr_parenthesized_immediate, - [129776] = 4, - ACTIONS(3), 1, + ACTIONS(2447), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [129817] = 6, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1868), 1, - sym__unquoted_pattern, - STATE(4530), 1, + ACTIONS(1618), 1, + sym__entry_separator, + ACTIONS(1620), 1, + anon_sym_COLON2, + ACTIONS(8317), 1, + anon_sym_RBRACE, + STATE(1485), 1, + aux_sym__types_body_repeat2, + STATE(4533), 1, sym_comment, - ACTIONS(1866), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [129791] = 4, + [129836] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1923), 1, - sym__unquoted_pattern, - STATE(4531), 1, + STATE(4534), 1, sym_comment, - ACTIONS(1921), 3, + ACTIONS(8319), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [129806] = 4, + [129849] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2385), 1, + ACTIONS(2449), 1, sym__entry_separator, - STATE(4532), 1, + STATE(4535), 1, sym_comment, - ACTIONS(2387), 3, + ACTIONS(2451), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [129821] = 5, - ACTIONS(3), 1, + [129864] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8297), 1, - anon_sym_RBRACK, - STATE(3618), 1, - aux_sym_parameter_repeat2, - STATE(4533), 1, + ACTIONS(4836), 1, + sym__entry_separator, + STATE(2279), 1, + aux_sym__types_body_repeat2, + STATE(4536), 1, sym_comment, - ACTIONS(1509), 2, - sym__newline, - anon_sym_COMMA, - [129838] = 5, + ACTIONS(8321), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [129881] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4832), 1, + ACTIONS(4836), 1, sym__entry_separator, - STATE(2277), 1, + STATE(2278), 1, aux_sym__types_body_repeat2, - STATE(4534), 1, + STATE(4537), 1, sym_comment, - ACTIONS(7757), 2, + ACTIONS(8321), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [129855] = 3, + [129898] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4535), 1, + STATE(4538), 1, sym_comment, - ACTIONS(4177), 4, - ts_builtin_sym_end, + ACTIONS(8323), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [129868] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [129911] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4536), 1, + STATE(4539), 1, sym_comment, - ACTIONS(4179), 4, - ts_builtin_sym_end, + ACTIONS(8323), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [129881] = 3, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [129924] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4537), 1, + ACTIONS(2453), 1, + sym__entry_separator, + STATE(4540), 1, sym_comment, - ACTIONS(8299), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2455), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [129894] = 3, + anon_sym_DOT_DOT, + [129939] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4538), 1, + STATE(4541), 1, sym_comment, - ACTIONS(8299), 4, + ACTIONS(8313), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [129907] = 5, + [129952] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8301), 1, - anon_sym_LBRACE, - STATE(3398), 1, - sym__blosure, - STATE(4539), 1, + STATE(4542), 1, sym_comment, - STATE(3369), 2, - sym_block, - sym_val_closure, - [129924] = 3, - ACTIONS(3), 1, + ACTIONS(7419), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [129965] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4540), 1, + ACTIONS(2457), 1, + sym__entry_separator, + STATE(4543), 1, sym_comment, - ACTIONS(8283), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2459), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [129937] = 3, + anon_sym_DOT_DOT, + [129980] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4541), 1, + STATE(4544), 1, sym_comment, - ACTIONS(8283), 4, + ACTIONS(8182), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [129950] = 3, - ACTIONS(3), 1, + [129993] = 4, + ACTIONS(105), 1, anon_sym_POUND, - STATE(4542), 1, + ACTIONS(2461), 1, + sym__entry_separator, + STATE(4545), 1, sym_comment, - ACTIONS(8285), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2463), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [129963] = 3, + anon_sym_DOT_DOT, + [130008] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4543), 1, + STATE(4546), 1, sym_comment, - ACTIONS(8285), 4, + ACTIONS(8182), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [129976] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8301), 1, - anon_sym_LBRACE, - STATE(3435), 1, - sym__blosure, - STATE(4544), 1, - sym_comment, - STATE(3369), 2, - sym_block, - sym_val_closure, - [129993] = 3, + [130021] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4545), 1, + STATE(4547), 1, sym_comment, - ACTIONS(8303), 4, + ACTIONS(8325), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [130006] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2124), 1, - sym__unquoted_pattern, - ACTIONS(8305), 1, - anon_sym_DOT_DOT2, - STATE(4546), 1, - sym_comment, - ACTIONS(8307), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [130023] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2786), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2834), 1, - anon_sym_COLON2, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(4461), 1, - sym_block, - STATE(4547), 1, - sym_comment, - [130042] = 4, + [130034] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2166), 1, + ACTIONS(2465), 1, sym__entry_separator, STATE(4548), 1, sym_comment, - ACTIONS(2168), 3, + ACTIONS(2467), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [130057] = 3, - ACTIONS(3), 1, + [130049] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2469), 1, + sym__entry_separator, STATE(4549), 1, sym_comment, - ACTIONS(7436), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [130070] = 3, + ACTIONS(2471), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [130064] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4550), 1, sym_comment, - ACTIONS(8309), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [130083] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_LPAREN2, - ACTIONS(6065), 1, - sym__entry_separator, - ACTIONS(6067), 1, + ACTIONS(8327), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, + [130077] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4551), 1, sym_comment, - STATE(5413), 1, - sym__expr_parenthesized_immediate, - [130102] = 6, + ACTIONS(8182), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130090] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_LPAREN2, - ACTIONS(6079), 1, + ACTIONS(1697), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2706), 1, sym__entry_separator, - ACTIONS(6081), 1, - anon_sym_RBRACE, + ACTIONS(2708), 1, + anon_sym_RBRACK, + ACTIONS(2710), 1, + anon_sym_LPAREN2, STATE(4552), 1, sym_comment, - STATE(5413), 1, - sym__expr_parenthesized_immediate, - [130121] = 5, + [130109] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8313), 1, - sym__space, - STATE(4391), 1, - aux_sym_attribute_repeat1, + ACTIONS(2477), 1, + sym__entry_separator, STATE(4553), 1, sym_comment, - ACTIONS(8311), 2, - sym__newline, - anon_sym_SEMI, - [130138] = 3, - ACTIONS(3), 1, + ACTIONS(2479), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [130124] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2481), 1, + sym__entry_separator, STATE(4554), 1, sym_comment, - ACTIONS(7480), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [130151] = 4, - ACTIONS(105), 1, + ACTIONS(2483), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [130139] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(3122), 1, + sym_block, STATE(4555), 1, sym_comment, - ACTIONS(8315), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(8317), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [130166] = 6, - ACTIONS(105), 1, + STATE(4619), 1, + aux_sym__repeat_newline, + [130158] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2676), 1, - sym__entry_separator, - ACTIONS(2678), 1, - anon_sym_RBRACK, - ACTIONS(2684), 1, - anon_sym_LPAREN2, - ACTIONS(2686), 1, - sym__unquoted_pattern_in_list, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(2949), 1, + sym_block, STATE(4556), 1, sym_comment, - [130185] = 3, + [130177] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4557), 1, sym_comment, - ACTIONS(8319), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130198] = 3, + ACTIONS(7457), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [130190] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4558), 1, sym_comment, - ACTIONS(8321), 4, + ACTIONS(8329), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [130211] = 3, + [130203] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4559), 1, sym_comment, - ACTIONS(8289), 4, + ACTIONS(8331), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130224] = 3, - ACTIONS(3), 1, + [130216] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2521), 1, + sym__entry_separator, STATE(4560), 1, sym_comment, - ACTIONS(8289), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2523), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [130237] = 3, + anon_sym_DOT_DOT, + [130231] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4561), 1, sym_comment, - ACTIONS(8323), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130250] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4562), 1, - sym_comment, - ACTIONS(7498), 4, + ACTIONS(8333), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [130263] = 3, + [130244] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4563), 1, + STATE(4562), 1, sym_comment, - ACTIONS(8325), 4, + ACTIONS(8331), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130276] = 3, + [130257] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4564), 1, + STATE(4563), 1, sym_comment, - ACTIONS(8325), 4, + ACTIONS(8335), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130289] = 3, + [130270] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4565), 1, + ACTIONS(7799), 1, + anon_sym_RPAREN, + STATE(4564), 1, sym_comment, - ACTIONS(8327), 4, + STATE(4592), 1, + aux_sym__block_body_repeat1, + ACTIONS(8337), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, + [130287] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2525), 1, + sym__entry_separator, + STATE(4565), 1, + sym_comment, + ACTIONS(2527), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [130302] = 3, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + [130302] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2529), 1, + sym__entry_separator, STATE(4566), 1, sym_comment, - ACTIONS(8327), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2531), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [130315] = 5, + anon_sym_DOT_DOT, + [130317] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7514), 1, + anon_sym_LBRACK, + ACTIONS(7516), 1, + anon_sym_LPAREN, + STATE(4007), 1, + sym_parameter_parens, + STATE(4008), 1, + sym_parameter_bracks, + STATE(4567), 1, + sym_comment, + [130336] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2166), 1, + ACTIONS(1736), 1, anon_sym_LBRACE, - ACTIONS(8329), 1, + ACTIONS(8216), 1, anon_sym_DOT_DOT2, - STATE(4567), 1, + STATE(4568), 1, sym_comment, - ACTIONS(8331), 2, + ACTIONS(8218), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [130332] = 3, + [130353] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4568), 1, + STATE(4569), 1, sym_comment, - ACTIONS(8333), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130345] = 3, + ACTIONS(7415), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [130366] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4569), 1, + STATE(4570), 1, sym_comment, - ACTIONS(8333), 4, + ACTIONS(8335), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130358] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2174), 1, - anon_sym_LBRACE, - ACTIONS(8335), 1, - anon_sym_DOT_DOT2, - STATE(4570), 1, - sym_comment, - ACTIONS(8337), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [130375] = 3, - ACTIONS(3), 1, + [130379] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2686), 1, + sym__entry_separator, STATE(4571), 1, sym_comment, - ACTIONS(8339), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2688), 3, + anon_sym_RBRACK, + anon_sym_GT2, anon_sym_RBRACE, - [130388] = 5, - ACTIONS(3), 1, + [130394] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2186), 1, - anon_sym_LBRACE, - ACTIONS(8341), 1, - anon_sym_DOT_DOT2, + ACTIONS(5533), 1, + anon_sym_COLON2, STATE(4572), 1, sym_comment, - ACTIONS(8343), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [130405] = 3, - ACTIONS(3), 1, + STATE(4573), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(5527), 2, + sym__newline, + sym__space, + [130411] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8339), 1, + anon_sym_COLON2, + STATE(4473), 1, + aux_sym_pipe_element_parenthesized_repeat1, STATE(4573), 1, sym_comment, - ACTIONS(8339), 4, + ACTIONS(5527), 2, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130418] = 6, - ACTIONS(3), 1, + sym__space, + [130428] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1579), 1, - sym__table_head_separator, - ACTIONS(7989), 1, - anon_sym_DOT2, + ACTIONS(2553), 1, + sym__entry_separator, STATE(4574), 1, sym_comment, - STATE(4611), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4978), 1, - sym_path, - [130437] = 3, + ACTIONS(2555), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [130443] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4575), 1, sym_comment, - ACTIONS(8345), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [130450] = 5, + ACTIONS(7431), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [130456] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7636), 1, - sym__entry_separator, - ACTIONS(7965), 1, - anon_sym_DOT_DOT2, STATE(4576), 1, sym_comment, - ACTIONS(7967), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [130467] = 5, + ACTIONS(5269), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6323), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [130471] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7652), 1, - sym__entry_separator, - ACTIONS(7965), 1, - anon_sym_DOT_DOT2, - STATE(4577), 1, + ACTIONS(8341), 1, + anon_sym_DQUOTE, + ACTIONS(8343), 2, + sym__escaped_str_content, + sym_escape_sequence, + STATE(4577), 2, sym_comment, - ACTIONS(7967), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [130484] = 3, - ACTIONS(3), 1, + aux_sym_string_content_repeat1, + [130486] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2271), 1, + sym__entry_separator, STATE(4578), 1, sym_comment, - ACTIONS(8347), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [130497] = 5, + ACTIONS(2273), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [130501] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7720), 1, - anon_sym_LBRACE, - STATE(3406), 1, - sym__blosure, + ACTIONS(3000), 1, + ts_builtin_sym_end, + STATE(1374), 1, + aux_sym__block_body_repeat1, STATE(4579), 1, sym_comment, - STATE(3078), 2, - sym_block, - sym_val_closure, - [130514] = 4, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + [130518] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2656), 1, + ACTIONS(2146), 1, sym__entry_separator, STATE(4580), 1, sym_comment, - ACTIONS(2658), 3, + ACTIONS(2148), 3, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_RBRACE, - [130529] = 5, + anon_sym_DOT_DOT, + [130533] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8313), 1, - sym__space, - STATE(4553), 1, - aux_sym_attribute_repeat1, + ACTIONS(2251), 1, + sym__entry_separator, STATE(4581), 1, sym_comment, - ACTIONS(8349), 2, - sym__newline, - anon_sym_SEMI, - [130546] = 3, - ACTIONS(3), 1, + ACTIONS(2253), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [130548] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2441), 1, + sym__entry_separator, STATE(4582), 1, sym_comment, - ACTIONS(8327), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2443), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [130559] = 3, + anon_sym_DOT_DOT, + [130563] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4583), 1, sym_comment, - ACTIONS(8327), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130572] = 3, + ACTIONS(8346), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [130576] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1802), 1, + anon_sym_LBRACE, + ACTIONS(1804), 1, + sym__unquoted_pattern, + ACTIONS(8348), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8350), 1, + aux_sym__immediate_decimal_token5, STATE(4584), 1, sym_comment, - ACTIONS(8351), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [130585] = 3, + [130595] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4585), 1, sym_comment, - ACTIONS(8353), 4, + ACTIONS(8352), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130598] = 5, + [130608] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8201), 1, - anon_sym_DOT_DOT2, - ACTIONS(8355), 1, - anon_sym_LBRACE, STATE(4586), 1, sym_comment, - ACTIONS(8203), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [130615] = 4, - ACTIONS(105), 1, + ACTIONS(8352), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130621] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2401), 1, - sym__entry_separator, + ACTIONS(7514), 1, + anon_sym_LBRACK, + ACTIONS(7516), 1, + anon_sym_LPAREN, + STATE(4041), 1, + sym_parameter_parens, + STATE(4043), 1, + sym_parameter_bracks, STATE(4587), 1, sym_comment, - ACTIONS(2403), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [130630] = 3, + [130640] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4588), 1, sym_comment, - ACTIONS(8333), 4, + ACTIONS(8354), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130643] = 3, - ACTIONS(3), 1, + [130653] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1894), 1, + sym__entry_separator, STATE(4589), 1, sym_comment, - ACTIONS(8333), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1896), 3, + anon_sym_RBRACK, + anon_sym_GT2, anon_sym_RBRACE, - [130656] = 3, + [130668] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7740), 1, + anon_sym_LBRACE, + STATE(3223), 1, + sym__blosure, STATE(4590), 1, sym_comment, - ACTIONS(8339), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130669] = 3, + STATE(3221), 2, + sym_block, + sym_val_closure, + [130685] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7740), 1, + anon_sym_LBRACE, + STATE(3319), 1, + sym__blosure, STATE(4591), 1, sym_comment, - ACTIONS(8339), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130682] = 3, + STATE(3221), 2, + sym_block, + sym_val_closure, + [130702] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4592), 1, - sym_comment, - ACTIONS(8357), 4, + ACTIONS(3079), 1, + anon_sym_RPAREN, + ACTIONS(8356), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130695] = 3, + STATE(4592), 2, + sym_comment, + aux_sym__block_body_repeat1, + [130717] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4593), 1, sym_comment, - ACTIONS(8357), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130708] = 3, + ACTIONS(7437), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [130730] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2109), 1, + sym__unquoted_pattern, + ACTIONS(8359), 1, + anon_sym_DOT_DOT2, STATE(4594), 1, sym_comment, - ACTIONS(8359), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130721] = 3, + ACTIONS(8361), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [130747] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2722), 1, + sym__unquoted_pattern, STATE(4595), 1, sym_comment, - ACTIONS(8359), 4, + ACTIONS(7624), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130734] = 3, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130762] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2314), 1, + sym__entry_separator, STATE(4596), 1, sym_comment, - ACTIONS(8359), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2316), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [130747] = 3, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + [130777] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2600), 1, + sym__entry_separator, STATE(4597), 1, sym_comment, - ACTIONS(8359), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2602), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [130760] = 3, + anon_sym_DOT_DOT, + [130792] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4598), 1, sym_comment, - ACTIONS(8361), 4, + ACTIONS(7630), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130805] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4599), 1, + sym_comment, + ACTIONS(8363), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130818] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4600), 1, + sym_comment, + ACTIONS(7624), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130831] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5228), 1, + anon_sym_LPAREN2, + ACTIONS(6419), 1, + sym__entry_separator, + ACTIONS(6421), 1, anon_sym_RBRACE, - [130773] = 4, + STATE(4601), 1, + sym_comment, + STATE(5332), 1, + sym__expr_parenthesized_immediate, + [130850] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2405), 1, + ACTIONS(2229), 1, sym__entry_separator, - STATE(4599), 1, + STATE(4602), 1, sym_comment, - ACTIONS(2407), 3, + ACTIONS(2231), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [130788] = 3, + [130865] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4600), 1, + STATE(4603), 1, sym_comment, - ACTIONS(8361), 4, + ACTIONS(8365), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130878] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5228), 1, + anon_sym_LPAREN2, + ACTIONS(6423), 1, + sym__entry_separator, + ACTIONS(6425), 1, anon_sym_RBRACE, - [130801] = 3, + STATE(4604), 1, + sym_comment, + STATE(5332), 1, + sym__expr_parenthesized_immediate, + [130897] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(910), 1, + sym__entry_separator, + STATE(4605), 1, + sym_comment, + ACTIONS(811), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [130912] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4601), 1, + STATE(4606), 1, sym_comment, - ACTIONS(8363), 4, + ACTIONS(7510), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [130925] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4607), 1, + sym_comment, + ACTIONS(8367), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130814] = 3, + [130938] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4602), 1, + STATE(4608), 1, sym_comment, - ACTIONS(8363), 4, + ACTIONS(4199), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130827] = 3, + anon_sym_LBRACE, + [130951] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4603), 1, + STATE(4609), 1, sym_comment, - ACTIONS(8365), 4, + ACTIONS(4197), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [130840] = 3, + anon_sym_LBRACE, + [130964] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4604), 1, + STATE(4610), 1, sym_comment, - ACTIONS(8365), 4, + ACTIONS(8354), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130853] = 3, + [130977] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4605), 1, + STATE(4611), 1, sym_comment, - ACTIONS(8367), 4, + ACTIONS(8369), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [130866] = 4, - ACTIONS(105), 1, + [130990] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2409), 1, - sym__entry_separator, - STATE(4606), 1, + STATE(4612), 1, sym_comment, - ACTIONS(2411), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [130881] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2696), 1, - sym__entry_separator, - ACTIONS(2698), 1, + ACTIONS(8371), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - STATE(4607), 1, - sym_comment, - [130900] = 4, - ACTIONS(105), 1, + [131003] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(914), 1, - sym__entry_separator, - STATE(4608), 1, + STATE(4613), 1, sym_comment, - ACTIONS(811), 3, - anon_sym_RBRACK, + ACTIONS(8369), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [130915] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(6954), 1, - anon_sym_LPAREN2, - ACTIONS(8369), 1, - anon_sym_RBRACK, - ACTIONS(8371), 1, - sym__entry_separator, - STATE(4609), 1, - sym_comment, - STATE(5400), 1, - sym__expr_parenthesized_immediate, - [130934] = 6, + [131016] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2114), 1, - sym__entry_separator, - ACTIONS(2116), 1, - anon_sym_RBRACE, - ACTIONS(2118), 1, + ACTIONS(7003), 1, anon_sym_LPAREN2, - ACTIONS(2124), 1, - sym__unquoted_pattern_in_record, - STATE(4610), 1, - sym_comment, - [130953] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1492), 1, - sym__table_head_separator, ACTIONS(8373), 1, - anon_sym_DOT2, - STATE(4978), 1, - sym_path, - STATE(4611), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - [130970] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2277), 1, - sym__entry_separator, - STATE(4612), 1, - sym_comment, - ACTIONS(2279), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [130985] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2413), 1, + ACTIONS(8375), 1, sym__entry_separator, - STATE(4613), 1, - sym_comment, - ACTIONS(2415), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [131000] = 3, - ACTIONS(3), 1, - anon_sym_POUND, STATE(4614), 1, sym_comment, - ACTIONS(8376), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [131013] = 5, + STATE(5498), 1, + sym__expr_parenthesized_immediate, + [131035] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4832), 1, + ACTIONS(4387), 1, sym__entry_separator, - STATE(2286), 1, + ACTIONS(8377), 1, + anon_sym_LBRACK, + ACTIONS(8379), 1, + anon_sym_RBRACK, + STATE(1928), 1, aux_sym__types_body_repeat2, STATE(4615), 1, sym_comment, - ACTIONS(7750), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [131030] = 6, + [131054] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6954), 1, + ACTIONS(7003), 1, anon_sym_LPAREN2, - ACTIONS(8378), 1, + ACTIONS(8381), 1, anon_sym_RBRACK, - ACTIONS(8380), 1, + ACTIONS(8383), 1, sym__entry_separator, STATE(4616), 1, sym_comment, - STATE(5400), 1, + STATE(5498), 1, sym__expr_parenthesized_immediate, - [131049] = 3, - ACTIONS(105), 1, + [131073] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4617), 1, sym_comment, - ACTIONS(1555), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [131062] = 3, + ACTIONS(8371), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131086] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(3132), 1, + sym_block, STATE(4618), 1, sym_comment, - ACTIONS(8382), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [131075] = 5, + STATE(4660), 1, + aux_sym__repeat_newline, + [131105] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8384), 1, - anon_sym_DOT_DOT2, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3133), 1, + sym_block, STATE(4619), 1, sym_comment, - ACTIONS(8386), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [131092] = 5, - ACTIONS(105), 1, + [131124] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4832), 1, - sym__entry_separator, - STATE(2287), 1, - aux_sym__types_body_repeat2, STATE(4620), 1, sym_comment, - ACTIONS(8388), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [131109] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1711), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2660), 1, - sym__entry_separator, - ACTIONS(2662), 1, + ACTIONS(8331), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2718), 1, - anon_sym_LPAREN2, - STATE(4621), 1, - sym_comment, - [131128] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4832), 1, - sym__entry_separator, - STATE(2293), 1, - aux_sym__types_body_repeat2, - STATE(4622), 1, - sym_comment, - ACTIONS(8388), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [131145] = 5, + [131137] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3092), 1, - ts_builtin_sym_end, - STATE(1381), 1, - aux_sym__block_body_repeat1, - STATE(4623), 1, + STATE(4621), 1, sym_comment, - ACTIONS(55), 2, + ACTIONS(8331), 4, sym__newline, anon_sym_SEMI, - [131162] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131150] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4624), 1, + STATE(4622), 1, sym_comment, - ACTIONS(8390), 4, - anon_sym_if, + ACTIONS(8335), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [131175] = 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131163] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7522), 1, - anon_sym_LBRACK, - ACTIONS(7524), 1, - anon_sym_LPAREN, - STATE(4145), 1, - sym_parameter_parens, - STATE(4150), 1, - sym_parameter_bracks, - STATE(4625), 1, + STATE(4623), 1, sym_comment, - [131194] = 5, + ACTIONS(8335), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131176] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - anon_sym_LBRACE, - ACTIONS(8201), 1, - anon_sym_DOT_DOT2, - STATE(4626), 1, - sym_comment, - ACTIONS(8203), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [131211] = 6, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2786), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2834), 1, - anon_sym_COLON2, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(4463), 1, - sym_block, - STATE(4627), 1, + STATE(4624), 1, sym_comment, - [131230] = 6, - ACTIONS(105), 1, + ACTIONS(8385), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131189] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1624), 1, - sym__entry_separator, - ACTIONS(1626), 1, - anon_sym_COLON2, - ACTIONS(8392), 1, + STATE(4625), 1, + sym_comment, + ACTIONS(8385), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - STATE(1475), 1, - aux_sym__types_body_repeat2, - STATE(4628), 1, + [131202] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4626), 1, sym_comment, - [131249] = 6, + ACTIONS(8387), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [131215] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(4387), 1, sym__entry_separator, - ACTIONS(1626), 1, - anon_sym_COLON2, - ACTIONS(8394), 1, - anon_sym_RBRACE, - STATE(1478), 1, + ACTIONS(8377), 1, + anon_sym_LBRACK, + ACTIONS(8389), 1, + anon_sym_RBRACK, + STATE(1928), 1, aux_sym__types_body_repeat2, - STATE(4629), 1, + STATE(4627), 1, sym_comment, - [131268] = 4, - ACTIONS(105), 1, + [131234] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2580), 1, - sym__entry_separator, - STATE(4630), 1, + STATE(4628), 1, sym_comment, - ACTIONS(2582), 3, - anon_sym_RBRACK, + ACTIONS(8391), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [131283] = 4, - ACTIONS(105), 1, + [131247] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2664), 1, - sym__entry_separator, - STATE(4631), 1, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(3115), 1, + anon_sym_SEMI, + STATE(1376), 1, + aux_sym__parenthesized_body_repeat1, + STATE(4629), 1, sym_comment, - ACTIONS(2666), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - [131298] = 3, + STATE(4701), 1, + aux_sym__repeat_newline, + [131266] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4632), 1, + STATE(4630), 1, sym_comment, - ACTIONS(8396), 4, + ACTIONS(8391), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [131311] = 3, + [131279] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4633), 1, + STATE(4631), 1, sym_comment, - ACTIONS(8398), 4, + ACTIONS(8391), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [131324] = 6, - ACTIONS(105), 1, + [131292] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2676), 1, - sym__entry_separator, - ACTIONS(2678), 1, - anon_sym_RBRACE, - ACTIONS(2684), 1, - anon_sym_LPAREN2, - ACTIONS(2686), 1, - sym__unquoted_pattern_in_record, - STATE(4634), 1, + ACTIONS(8393), 1, + sym__newline, + ACTIONS(8396), 1, + anon_sym_PIPE, + ACTIONS(8399), 1, + anon_sym_EQ_GT, + STATE(4632), 2, sym_comment, - [131343] = 3, + aux_sym_match_pattern_repeat1, + [131309] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4635), 1, + STATE(4633), 1, sym_comment, - ACTIONS(8400), 4, + ACTIONS(8391), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [131356] = 3, + [131322] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4636), 1, + STATE(4634), 1, sym_comment, - ACTIONS(8402), 4, + ACTIONS(8401), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [131369] = 4, + [131335] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2154), 1, + ACTIONS(5228), 1, + anon_sym_LPAREN2, + ACTIONS(7991), 1, + anon_sym_RBRACE, + ACTIONS(7993), 1, sym__entry_separator, - STATE(4637), 1, + STATE(4635), 1, sym_comment, - ACTIONS(2156), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [131384] = 6, + STATE(5075), 1, + sym__expr_parenthesized_immediate, + [131354] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(5820), 1, sym__newline, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(501), 1, + ACTIONS(8403), 1, + anon_sym_EQ, + ACTIONS(8405), 1, + anon_sym_COLON, + STATE(3542), 1, aux_sym__repeat_newline, - STATE(3220), 1, - sym_block, + STATE(4636), 1, + sym_comment, + [131373] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4637), 1, + sym_comment, + ACTIONS(8401), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131386] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4638), 1, sym_comment, - [131403] = 4, + ACTIONS(8146), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131399] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2578), 1, - sym__unquoted_pattern, STATE(4639), 1, sym_comment, - ACTIONS(2576), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [131418] = 3, - ACTIONS(3), 1, + ACTIONS(8407), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131412] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5228), 1, + anon_sym_LPAREN2, + ACTIONS(7987), 1, + anon_sym_RBRACE, + ACTIONS(7989), 1, + sym__entry_separator, STATE(4640), 1, sym_comment, - ACTIONS(8404), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, + STATE(5075), 1, + sym__expr_parenthesized_immediate, [131431] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8406), 1, + ACTIONS(7948), 1, + anon_sym_RPAREN, + STATE(4592), 1, + aux_sym__block_body_repeat1, + STATE(4641), 1, + sym_comment, + ACTIONS(8337), 2, sym__newline, + anon_sym_SEMI, + [131448] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1618), 1, + sym__entry_separator, + ACTIONS(1620), 1, + anon_sym_COLON2, ACTIONS(8409), 1, - anon_sym_PIPE, - ACTIONS(8412), 1, - anon_sym_EQ_GT, - STATE(4641), 2, + anon_sym_RBRACE, + STATE(1489), 1, + aux_sym__types_body_repeat2, + STATE(4642), 1, sym_comment, - aux_sym_match_pattern_repeat1, - [131448] = 3, + [131467] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4642), 1, + STATE(4643), 1, sym_comment, - ACTIONS(8414), 4, + ACTIONS(8407), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [131461] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4643), 1, - sym_comment, - ACTIONS(8416), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [131474] = 3, - ACTIONS(3), 1, + [131480] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1618), 1, + sym__entry_separator, + ACTIONS(1620), 1, + anon_sym_COLON2, + ACTIONS(8411), 1, + anon_sym_RBRACE, + STATE(1481), 1, + aux_sym__types_body_repeat2, STATE(4644), 1, sym_comment, - ACTIONS(8418), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [131487] = 6, + [131499] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7522), 1, + ACTIONS(8208), 1, anon_sym_LBRACK, - ACTIONS(7524), 1, + ACTIONS(8210), 1, anon_sym_LPAREN, - STATE(4121), 1, + STATE(4212), 1, sym_parameter_parens, - STATE(4127), 1, + STATE(4213), 1, sym_parameter_bracks, STATE(4645), 1, sym_comment, - [131506] = 6, - ACTIONS(105), 1, + [131518] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4370), 1, - sym__entry_separator, - ACTIONS(8270), 1, - anon_sym_LBRACK, - ACTIONS(8420), 1, - anon_sym_RBRACK, - STATE(1934), 1, - aux_sym__types_body_repeat2, STATE(4646), 1, sym_comment, - [131525] = 3, - ACTIONS(3), 1, + ACTIONS(8413), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [131531] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4836), 1, + sym__entry_separator, + STATE(2286), 1, + aux_sym__types_body_repeat2, STATE(4647), 1, sym_comment, - ACTIONS(8422), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [131538] = 5, - ACTIONS(3), 1, + ACTIONS(8415), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [131548] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7720), 1, - anon_sym_LBRACE, - STATE(3079), 1, - sym__blosure, + ACTIONS(4836), 1, + sym__entry_separator, + STATE(2285), 1, + aux_sym__types_body_repeat2, STATE(4648), 1, sym_comment, - STATE(3078), 2, - sym_block, - sym_val_closure, - [131555] = 5, + ACTIONS(8415), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [131565] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4836), 1, + sym__entry_separator, + STATE(2283), 1, + aux_sym__types_body_repeat2, + STATE(4649), 1, + sym_comment, + ACTIONS(7865), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [131582] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7720), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(3303), 1, + STATE(3480), 1, sym__blosure, - STATE(4649), 1, + STATE(4650), 1, sym_comment, - STATE(3078), 2, + STATE(3352), 2, sym_block, sym_val_closure, - [131572] = 3, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4650), 1, - sym_comment, - ACTIONS(1561), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [131585] = 3, - ACTIONS(105), 1, + [131599] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4651), 1, sym_comment, - ACTIONS(1565), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [131598] = 4, + ACTIONS(8417), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [131612] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3072), 1, - anon_sym_RPAREN, - ACTIONS(8424), 2, - sym__newline, - anon_sym_SEMI, - STATE(4652), 2, + STATE(4652), 1, sym_comment, - aux_sym__block_body_repeat1, - [131613] = 6, + ACTIONS(8419), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [131625] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2604), 1, + ACTIONS(4836), 1, sym__entry_separator, - ACTIONS(2606), 1, - anon_sym_RBRACE, - ACTIONS(2608), 1, - anon_sym_LPAREN2, - ACTIONS(2610), 1, - sym__unquoted_pattern_in_record, + STATE(2287), 1, + aux_sym__types_body_repeat2, STATE(4653), 1, sym_comment, - [131632] = 3, + ACTIONS(7934), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [131642] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4654), 1, sym_comment, - ACTIONS(7474), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [131645] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4655), 1, - sym_comment, - ACTIONS(8427), 4, + ACTIONS(8421), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [131658] = 3, - ACTIONS(3), 1, + [131655] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(1612), 1, + anon_sym_RBRACE, + ACTIONS(1618), 1, + sym__entry_separator, + ACTIONS(1620), 1, + anon_sym_COLON2, + STATE(1491), 1, + aux_sym__types_body_repeat2, + STATE(4655), 1, + sym_comment, + [131674] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2712), 1, + sym__entry_separator, + ACTIONS(2714), 1, + anon_sym_RBRACK, + ACTIONS(2716), 1, + anon_sym_LPAREN2, + ACTIONS(2718), 1, + sym__unquoted_pattern_in_list, STATE(4656), 1, sym_comment, - ACTIONS(7636), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [131671] = 4, + [131693] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7331), 1, - sym__unquoted_pattern, STATE(4657), 1, sym_comment, - ACTIONS(914), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [131686] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(8352), 4, sym__newline, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(3556), 1, - sym_block, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131706] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4387), 1, + sym__entry_separator, + ACTIONS(8377), 1, + anon_sym_LBRACK, + ACTIONS(8423), 1, + anon_sym_RBRACK, + STATE(1928), 1, + aux_sym__types_body_repeat2, STATE(4658), 1, sym_comment, - STATE(4661), 1, - aux_sym__repeat_newline, - [131705] = 3, - ACTIONS(3), 1, + [131725] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5228), 1, + anon_sym_LPAREN2, + ACTIONS(7981), 1, + anon_sym_RBRACE, + ACTIONS(7983), 1, + sym__entry_separator, STATE(4659), 1, sym_comment, - ACTIONS(8429), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [131718] = 6, + STATE(5075), 1, + sym__expr_parenthesized_immediate, + [131744] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2966), 1, sym__newline, - ACTIONS(3896), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(3558), 1, + STATE(522), 1, + aux_sym__repeat_newline, + STATE(3142), 1, sym_block, STATE(4660), 1, sym_comment, - STATE(4662), 1, - aux_sym__repeat_newline, - [131737] = 6, + [131763] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3559), 1, - sym_block, STATE(4661), 1, sym_comment, - [131756] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(8146), 4, sym__newline, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3561), 1, - sym_block, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131776] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(7003), 1, + anon_sym_LPAREN2, + ACTIONS(8425), 1, + anon_sym_RBRACK, + ACTIONS(8427), 1, + sym__entry_separator, STATE(4662), 1, sym_comment, - [131775] = 3, + STATE(5498), 1, + sym__expr_parenthesized_immediate, + [131795] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4663), 1, sym_comment, - ACTIONS(7652), 4, - anon_sym_if, + ACTIONS(8352), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [131788] = 5, - ACTIONS(105), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131808] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5460), 1, - anon_sym_COLON2, - STATE(4472), 1, - aux_sym_pipe_element_parenthesized_repeat1, STATE(4664), 1, sym_comment, - ACTIONS(5454), 2, + ACTIONS(8429), 4, sym__newline, - sym__space, - [131805] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131821] = 6, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4387), 1, + sym__entry_separator, + ACTIONS(8377), 1, + anon_sym_LBRACK, + ACTIONS(8431), 1, + anon_sym_RBRACK, + STATE(1928), 1, + aux_sym__types_body_repeat2, STATE(4665), 1, sym_comment, - ACTIONS(8431), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [131818] = 6, - ACTIONS(105), 1, + [131840] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2786), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2834), 1, - anon_sym_COLON2, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(3043), 1, - sym_block, STATE(4666), 1, sym_comment, - [131837] = 4, + ACTIONS(8407), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131853] = 6, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1909), 1, + ACTIONS(7003), 1, + anon_sym_LPAREN2, + ACTIONS(8433), 1, + anon_sym_RBRACK, + ACTIONS(8435), 1, sym__entry_separator, STATE(4667), 1, sym_comment, - ACTIONS(1911), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - [131852] = 6, + STATE(5498), 1, + sym__expr_parenthesized_immediate, + [131872] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(3376), 1, - sym_block, + ACTIONS(8437), 1, + anon_sym_RPAREN, + STATE(4592), 1, + aux_sym__block_body_repeat1, STATE(4668), 1, sym_comment, - STATE(4670), 1, - aux_sym__repeat_newline, - [131871] = 6, + ACTIONS(8337), 2, + sym__newline, + anon_sym_SEMI, + [131889] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(3377), 1, - sym_block, STATE(4669), 1, sym_comment, - STATE(4671), 1, - aux_sym__repeat_newline, - [131890] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(8407), 4, sym__newline, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3378), 1, - sym_block, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131902] = 6, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8439), 1, + anon_sym_COLON, + ACTIONS(8441), 1, + anon_sym_GT2, + ACTIONS(8443), 1, + sym__entry_separator, STATE(4670), 1, sym_comment, - [131909] = 6, + STATE(5077), 1, + sym__collection_annotation, + [131921] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(501), 1, - aux_sym__repeat_newline, - STATE(3380), 1, - sym_block, STATE(4671), 1, sym_comment, - [131928] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4672), 1, - sym_comment, - ACTIONS(8433), 4, + ACTIONS(8148), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [131941] = 6, + [131934] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7916), 1, + sym__newline, + ACTIONS(7918), 1, + anon_sym_PIPE, + ACTIONS(8445), 1, + anon_sym_EQ_GT, + STATE(4632), 1, + aux_sym_match_pattern_repeat1, + STATE(4672), 1, + sym_comment, + [131953] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1774), 1, - anon_sym_LBRACE, - ACTIONS(1776), 1, - sym__unquoted_pattern, - ACTIONS(8435), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8437), 1, - aux_sym__immediate_decimal_token5, STATE(4673), 1, sym_comment, - [131960] = 5, + ACTIONS(8148), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131966] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8301), 1, - anon_sym_LBRACE, - STATE(3425), 1, - sym__blosure, STATE(4674), 1, sym_comment, - STATE(3369), 2, - sym_block, - sym_val_closure, - [131977] = 3, + ACTIONS(8429), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131979] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4675), 1, sym_comment, - ACTIONS(7486), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [131990] = 4, - ACTIONS(105), 1, + ACTIONS(8148), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [131992] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2389), 1, - sym__entry_separator, STATE(4676), 1, sym_comment, - ACTIONS(2391), 2, - anon_sym_RBRACK, + ACTIONS(8146), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - [132004] = 5, + [132005] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8439), 1, - anon_sym_RBRACK, - ACTIONS(8441), 1, - anon_sym_DOT_DOT, STATE(4677), 1, sym_comment, - STATE(5169), 1, - sym__match_pattern_rest, - [132020] = 3, - ACTIONS(3), 1, + ACTIONS(8184), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132017] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5313), 1, + sym__entry_separator, STATE(4678), 1, sym_comment, - ACTIONS(8443), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [132032] = 5, - ACTIONS(3), 1, + ACTIONS(5885), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [132031] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(3176), 1, - anon_sym_SEMI, - STATE(501), 1, - aux_sym__repeat_newline, + ACTIONS(7807), 1, + anon_sym_DOT_DOT, + ACTIONS(7942), 1, + anon_sym_RBRACK, + ACTIONS(7944), 1, + sym__entry_separator, STATE(4679), 1, sym_comment, - [132048] = 4, - ACTIONS(105), 1, + [132047] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1888), 1, - anon_sym_POUND_BANG, - ACTIONS(8445), 1, + ACTIONS(2966), 1, sym__newline, - STATE(4680), 2, + ACTIONS(8447), 1, + anon_sym_COLON, + STATE(522), 1, aux_sym__repeat_newline, + STATE(4680), 1, sym_comment, - [132062] = 4, - ACTIONS(3), 1, + [132063] = 5, + ACTIONS(105), 1, anon_sym_POUND, - STATE(1388), 1, - aux_sym__block_body_repeat1, + ACTIONS(4486), 1, + sym__entry_separator, + ACTIONS(8449), 1, + anon_sym_RBRACK, + STATE(2020), 1, + aux_sym__types_body_repeat2, STATE(4681), 1, sym_comment, - ACTIONS(155), 2, - sym__newline, - anon_sym_SEMI, - [132076] = 3, - ACTIONS(3), 1, + [132079] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1618), 1, + sym__entry_separator, + ACTIONS(8317), 1, + anon_sym_RBRACE, + STATE(1484), 1, + aux_sym__types_body_repeat2, STATE(4682), 1, sym_comment, - ACTIONS(8319), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132088] = 3, + [132095] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4683), 1, sym_comment, - ACTIONS(8323), 3, - ts_builtin_sym_end, + ACTIONS(8451), 3, sym__newline, anon_sym_SEMI, - [132100] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + [132107] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4118), 1, - anon_sym_AT2, - ACTIONS(8448), 1, - anon_sym_GT2, + ACTIONS(4486), 1, + sym__entry_separator, + ACTIONS(8453), 1, + anon_sym_RBRACK, + STATE(2101), 1, + aux_sym__types_body_repeat2, STATE(4684), 1, sym_comment, - STATE(5350), 1, - sym_param_completer, - [132116] = 5, - ACTIONS(3), 1, + [132123] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6629), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6954), 1, - anon_sym_LPAREN2, + ACTIONS(8443), 1, + sym__entry_separator, + ACTIONS(8455), 1, + anon_sym_COLON, STATE(4685), 1, sym_comment, - STATE(5048), 1, - sym__expr_parenthesized_immediate, - [132132] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4686), 1, - sym_comment, - ACTIONS(8353), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132144] = 5, + STATE(5077), 1, + sym__collection_annotation, + [132139] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1618), 1, sym__entry_separator, - ACTIONS(8450), 1, + ACTIONS(8457), 1, anon_sym_RBRACE, STATE(1486), 1, aux_sym__types_body_repeat2, + STATE(4686), 1, + sym_comment, + [132155] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2994), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3930), 1, + anon_sym_LBRACE, STATE(4687), 1, sym_comment, - [132160] = 3, - ACTIONS(3), 1, + STATE(4863), 1, + sym_block, + [132171] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4369), 1, + sym__entry_separator, + ACTIONS(8460), 1, + anon_sym_RBRACK, + STATE(1992), 1, + aux_sym__types_body_repeat2, STATE(4688), 1, sym_comment, - ACTIONS(8222), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132172] = 3, + [132187] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4689), 1, sym_comment, - ACTIONS(8179), 3, + ACTIONS(8335), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132184] = 5, + [132199] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1866), 1, - anon_sym_LBRACE, - ACTIONS(1868), 1, - sym__unquoted_pattern, - ACTIONS(8452), 1, - aux_sym__immediate_decimal_token5, STATE(4690), 1, sym_comment, - [132200] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1624), 1, - sym__entry_separator, - ACTIONS(8454), 1, - anon_sym_RBRACE, - STATE(1477), 1, - aux_sym__types_body_repeat2, - STATE(4691), 1, - sym_comment, - [132216] = 3, + ACTIONS(8462), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [132211] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4692), 1, + STATE(4691), 1, sym_comment, - ACTIONS(8181), 3, + ACTIONS(8335), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132228] = 3, + [132223] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4387), 1, + sym__entry_separator, + ACTIONS(8464), 1, + anon_sym_GT2, + STATE(1975), 1, + aux_sym__types_body_repeat2, + STATE(4692), 1, + sym_comment, + [132239] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4693), 1, sym_comment, - ACTIONS(8183), 3, + ACTIONS(8331), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132240] = 3, + [132251] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4694), 1, sym_comment, - ACTIONS(8185), 3, + ACTIONS(8331), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132252] = 5, - ACTIONS(105), 1, + [132263] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3468), 1, - sym__newline, - ACTIONS(3470), 1, - sym__space, - STATE(1410), 1, - aux_sym_pipe_element_parenthesized_repeat1, STATE(4695), 1, sym_comment, - [132268] = 3, + ACTIONS(8371), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132275] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4696), 1, sym_comment, - ACTIONS(8376), 3, + ACTIONS(8371), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132280] = 5, + [132287] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4118), 1, + ACTIONS(4131), 1, anon_sym_AT2, - ACTIONS(5806), 1, - anon_sym_EQ, - STATE(3156), 1, - sym_param_completer, + ACTIONS(8466), 1, + anon_sym_GT2, STATE(4697), 1, sym_comment, - [132296] = 3, - ACTIONS(3), 1, + STATE(5404), 1, + sym_param_completer, + [132303] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4387), 1, + sym__entry_separator, + ACTIONS(8468), 1, + anon_sym_RBRACK, + STATE(1991), 1, + aux_sym__types_body_repeat2, STATE(4698), 1, sym_comment, - ACTIONS(8228), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132308] = 5, + [132319] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2986), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(4688), 1, - sym_block, + ACTIONS(4387), 1, + sym__entry_separator, + ACTIONS(8470), 1, + anon_sym_RBRACK, + STATE(1988), 1, + aux_sym__types_body_repeat2, STATE(4699), 1, sym_comment, - [132324] = 5, + [132335] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2986), 1, + ACTIONS(2994), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3894), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, - STATE(3141), 1, - sym_block, STATE(4700), 1, sym_comment, - [132340] = 3, + STATE(4867), 1, + sym_block, + [132351] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(3148), 1, + anon_sym_SEMI, + STATE(522), 1, + aux_sym__repeat_newline, STATE(4701), 1, sym_comment, - ACTIONS(4637), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [132352] = 3, - ACTIONS(3), 1, + [132367] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4387), 1, + sym__entry_separator, + ACTIONS(8472), 1, + anon_sym_GT2, + STATE(1985), 1, + aux_sym__types_body_repeat2, STATE(4702), 1, sym_comment, - ACTIONS(4641), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [132364] = 3, + [132383] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4703), 1, sym_comment, - ACTIONS(8396), 3, - ts_builtin_sym_end, + ACTIONS(8474), 3, sym__newline, anon_sym_SEMI, - [132376] = 3, + anon_sym_RPAREN, + [132395] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4131), 1, + anon_sym_AT2, + ACTIONS(8476), 1, + anon_sym_GT2, STATE(4704), 1, sym_comment, - ACTIONS(4645), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [132388] = 3, + STATE(5112), 1, + sym_param_completer, + [132411] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4705), 1, sym_comment, - ACTIONS(8398), 3, + ACTIONS(8148), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132400] = 4, + [132423] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8458), 1, - anon_sym_COMMA, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(8478), 1, + anon_sym_COLON, + STATE(522), 1, + aux_sym__repeat_newline, STATE(4706), 1, sym_comment, - ACTIONS(8456), 2, - anon_sym_RBRACK, - sym_hex_digit, - [132414] = 5, - ACTIONS(3), 1, + [132439] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8460), 1, - anon_sym_RBRACK, - ACTIONS(8462), 1, - sym_hex_digit, + ACTIONS(5094), 1, + sym__entry_separator, + ACTIONS(8480), 1, + anon_sym_GT2, + STATE(2424), 1, + aux_sym__types_body_repeat2, STATE(4707), 1, sym_comment, - STATE(4739), 1, - aux_sym_val_binary_repeat1, - [132430] = 4, + [132455] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2459), 1, - sym__entry_separator, + ACTIONS(2994), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(3060), 1, + sym_block, STATE(4708), 1, sym_comment, - ACTIONS(2461), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [132444] = 4, - ACTIONS(105), 1, + [132471] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5421), 1, - sym__entry_separator, STATE(4709), 1, sym_comment, - ACTIONS(5419), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [132458] = 4, + ACTIONS(8352), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132483] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2463), 1, + ACTIONS(4387), 1, sym__entry_separator, + ACTIONS(8482), 1, + anon_sym_GT2, + STATE(1977), 1, + aux_sym__types_body_repeat2, STATE(4710), 1, sym_comment, - ACTIONS(2465), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [132472] = 3, + [132499] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4711), 1, sym_comment, - ACTIONS(8400), 3, + ACTIONS(8352), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132484] = 4, + [132511] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7636), 1, - sym__entry_separator, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(4389), 1, + sym_block, STATE(4712), 1, sym_comment, - ACTIONS(7742), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [132498] = 4, - ACTIONS(105), 1, + [132527] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8429), 1, - sym__entry_separator, STATE(4713), 1, sym_comment, - ACTIONS(8464), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [132512] = 4, + ACTIONS(8335), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132539] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7652), 1, + ACTIONS(5094), 1, sym__entry_separator, + ACTIONS(8484), 1, + anon_sym_GT2, + STATE(2426), 1, + aux_sym__types_body_repeat2, STATE(4714), 1, sym_comment, - ACTIONS(7748), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [132526] = 3, + [132555] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4715), 1, sym_comment, - ACTIONS(8402), 3, + ACTIONS(8335), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132538] = 4, - ACTIONS(3), 1, + [132567] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8466), 1, - anon_sym_LBRACK, - STATE(5010), 1, - sym_val_list, - STATE(4716), 2, + ACTIONS(5094), 1, + sym__entry_separator, + ACTIONS(8486), 1, + anon_sym_GT2, + STATE(2421), 1, + aux_sym__types_body_repeat2, + STATE(4716), 1, sym_comment, - aux_sym__table_body_repeat1, - [132552] = 3, + [132583] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4717), 1, sym_comment, - ACTIONS(8414), 3, + ACTIONS(8331), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132564] = 3, + [132595] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4718), 1, sym_comment, - ACTIONS(8187), 3, + ACTIONS(8331), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132576] = 3, - ACTIONS(3), 1, + [132607] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8417), 1, + sym__entry_separator, STATE(4719), 1, sym_comment, - ACTIONS(8283), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132588] = 3, + ACTIONS(7483), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [132621] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4720), 1, sym_comment, - ACTIONS(8283), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132600] = 3, - ACTIONS(3), 1, + ACTIONS(4630), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [132633] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2473), 1, + sym__entry_separator, STATE(4721), 1, sym_comment, - ACTIONS(8285), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132612] = 3, - ACTIONS(3), 1, + ACTIONS(2475), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [132647] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(2967), 1, + sym_block, STATE(4722), 1, sym_comment, - ACTIONS(8285), 3, + [132663] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4723), 1, + sym_comment, + ACTIONS(8148), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132624] = 4, + [132675] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8469), 1, - sym__table_head_separator, - STATE(4723), 1, - sym_comment, - ACTIONS(1616), 2, - anon_sym_RBRACK, + ACTIONS(4387), 1, sym__entry_separator, - [132638] = 3, - ACTIONS(3), 1, - anon_sym_POUND, + ACTIONS(8488), 1, + anon_sym_RBRACK, + STATE(1974), 1, + aux_sym__types_body_repeat2, STATE(4724), 1, sym_comment, - ACTIONS(8289), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132650] = 3, + [132691] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3119), 1, + anon_sym_RPAREN, STATE(4725), 1, sym_comment, - ACTIONS(8289), 3, - ts_builtin_sym_end, + ACTIONS(2652), 2, sym__newline, anon_sym_SEMI, - [132662] = 3, - ACTIONS(3), 1, + [132705] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2489), 1, + sym__entry_separator, STATE(4726), 1, sym_comment, - ACTIONS(8333), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132674] = 3, + ACTIONS(2491), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [132719] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4727), 1, sym_comment, - ACTIONS(8333), 3, + ACTIONS(8401), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132686] = 3, + [132731] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4728), 1, sym_comment, - ACTIONS(8339), 3, - ts_builtin_sym_end, + ACTIONS(8490), 3, sym__newline, - anon_sym_SEMI, - [132698] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [132743] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4729), 1, sym_comment, - ACTIONS(8339), 3, - ts_builtin_sym_end, + ACTIONS(8492), 3, sym__newline, - anon_sym_SEMI, - [132710] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + [132755] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5228), 1, + anon_sym_LPAREN2, + ACTIONS(5238), 1, + sym__unquoted_pattern_in_record, STATE(4730), 1, sym_comment, - ACTIONS(8357), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132722] = 3, + STATE(5026), 1, + sym__expr_parenthesized_immediate, + [132771] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4731), 1, sym_comment, - ACTIONS(8357), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132734] = 3, + ACTIONS(4634), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [132783] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4131), 1, + anon_sym_AT2, + ACTIONS(8494), 1, + anon_sym_GT2, STATE(4732), 1, sym_comment, - ACTIONS(8359), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132746] = 3, + STATE(5486), 1, + sym_param_completer, + [132799] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1874), 1, + anon_sym_LBRACE, + ACTIONS(1876), 1, + sym__unquoted_pattern, + ACTIONS(8496), 1, + aux_sym__immediate_decimal_token5, STATE(4733), 1, sym_comment, - ACTIONS(8359), 3, + [132815] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4734), 1, + sym_comment, + ACTIONS(8407), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132758] = 4, + [132827] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6271), 1, + ACTIONS(2533), 1, sym__entry_separator, - STATE(4734), 1, + STATE(4735), 1, sym_comment, - ACTIONS(6269), 2, + ACTIONS(2535), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [132772] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4542), 1, - sym__entry_separator, - ACTIONS(8471), 1, - anon_sym_RBRACK, - STATE(2078), 1, - aux_sym__types_body_repeat2, - STATE(4735), 1, - sym_comment, - [132788] = 5, + [132841] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5094), 1, + ACTIONS(2537), 1, sym__entry_separator, - ACTIONS(8473), 1, - anon_sym_GT2, - STATE(2435), 1, - aux_sym__types_body_repeat2, STATE(4736), 1, sym_comment, - [132804] = 5, + ACTIONS(2539), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [132855] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4809), 1, + ACTIONS(8323), 1, sym__entry_separator, - ACTIONS(4826), 1, - anon_sym_RBRACE, - STATE(2274), 1, - aux_sym__types_body_repeat2, STATE(4737), 1, sym_comment, - [132820] = 3, + ACTIONS(8498), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [132869] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4738), 1, sym_comment, - ACTIONS(8433), 3, - ts_builtin_sym_end, + ACTIONS(8500), 3, sym__newline, anon_sym_SEMI, - [132832] = 4, + anon_sym_RPAREN, + [132881] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8475), 1, - anon_sym_RBRACK, - ACTIONS(8477), 1, - sym_hex_digit, - STATE(4739), 2, + STATE(4739), 1, sym_comment, - aux_sym_val_binary_repeat1, - [132846] = 5, - ACTIONS(3), 1, + ACTIONS(8502), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [132893] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(5171), 1, - sym__unquoted_pattern, + ACTIONS(8421), 1, + sym__entry_separator, STATE(4740), 1, sym_comment, - STATE(5079), 1, - sym__expr_parenthesized_immediate, - [132862] = 4, + ACTIONS(8504), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [132907] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8224), 1, - anon_sym_LPAREN, + ACTIONS(4387), 1, + sym__entry_separator, + ACTIONS(8506), 1, + anon_sym_RBRACK, + STATE(4627), 1, + aux_sym__types_body_repeat2, STATE(4741), 1, sym_comment, - ACTIONS(8226), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [132876] = 3, - ACTIONS(3), 1, + [132923] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2413), 1, + sym__entry_separator, STATE(4742), 1, sym_comment, - ACTIONS(8187), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [132888] = 5, + ACTIONS(2415), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [132937] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4370), 1, + ACTIONS(2413), 1, sym__entry_separator, - ACTIONS(8480), 1, - anon_sym_GT2, - STATE(2002), 1, - aux_sym__types_body_repeat2, STATE(4743), 1, sym_comment, - [132904] = 3, + ACTIONS(2415), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [132951] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1812), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8508), 1, + anon_sym_DOT, + ACTIONS(8510), 1, + aux_sym__immediate_decimal_token5, STATE(4744), 1, sym_comment, - ACTIONS(8482), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [132916] = 5, + [132967] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5094), 1, + ACTIONS(6406), 1, sym__entry_separator, - ACTIONS(8484), 1, - anon_sym_GT2, - STATE(2421), 1, - aux_sym__types_body_repeat2, STATE(4745), 1, sym_comment, - [132932] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8462), 1, - sym_hex_digit, - ACTIONS(8486), 1, + ACTIONS(6404), 2, anon_sym_RBRACK, + anon_sym_RBRACE, + [132981] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4810), 1, + sym__entry_separator, + ACTIONS(4822), 1, + anon_sym_RBRACE, + STATE(2266), 1, + aux_sym__types_body_repeat2, STATE(4746), 1, sym_comment, - STATE(4750), 1, - aux_sym_val_binary_repeat1, - [132948] = 5, - ACTIONS(105), 1, + [132997] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8488), 1, + ACTIONS(8512), 1, anon_sym_RBRACK, - ACTIONS(8491), 1, - anon_sym_DOT_DOT, - ACTIONS(8493), 1, - sym__entry_separator, + ACTIONS(8514), 1, + sym_hex_digit, STATE(4747), 1, sym_comment, - [132964] = 3, - ACTIONS(3), 1, + STATE(4800), 1, + aux_sym_val_binary_repeat1, + [133013] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4369), 1, + sym__entry_separator, + ACTIONS(8516), 1, + anon_sym_RBRACK, + STATE(1970), 1, + aux_sym__types_body_repeat2, STATE(4748), 1, sym_comment, - ACTIONS(8496), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [132976] = 5, + [133029] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1624), 1, - sym__entry_separator, - ACTIONS(8498), 1, + ACTIONS(1612), 1, anon_sym_RBRACE, - STATE(1485), 1, + ACTIONS(1618), 1, + sym__entry_separator, + STATE(1491), 1, aux_sym__types_body_repeat2, STATE(4749), 1, sym_comment, - [132992] = 5, + [133045] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8462), 1, - sym_hex_digit, - ACTIONS(8501), 1, - anon_sym_RBRACK, - STATE(4739), 1, - aux_sym_val_binary_repeat1, STATE(4750), 1, sym_comment, - [133008] = 5, + ACTIONS(8180), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133057] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(5076), 1, - sym__unquoted_pattern, STATE(4751), 1, sym_comment, - STATE(5081), 1, - sym__expr_parenthesized_immediate, - [133024] = 3, + ACTIONS(8178), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133069] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4752), 1, sym_comment, - ACTIONS(8144), 3, + ACTIONS(8176), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133036] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4118), 1, - anon_sym_AT2, - ACTIONS(8503), 1, - anon_sym_GT2, - STATE(4753), 1, - sym_comment, - STATE(5500), 1, - sym_param_completer, - [133052] = 5, + [133081] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4542), 1, + ACTIONS(8323), 1, sym__entry_separator, - ACTIONS(8505), 1, + STATE(4753), 1, + sym_comment, + ACTIONS(8498), 2, anon_sym_RBRACK, - STATE(2088), 1, - aux_sym__types_body_repeat2, + anon_sym_DOT_DOT, + [133095] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4131), 1, + anon_sym_AT2, + ACTIONS(5613), 1, + anon_sym_EQ, + STATE(3242), 1, + sym_param_completer, STATE(4754), 1, sym_comment, - [133068] = 4, - ACTIONS(3), 1, + [133111] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8507), 1, - anon_sym_BANG, + ACTIONS(8319), 1, + sym__entry_separator, STATE(4755), 1, sym_comment, - ACTIONS(1462), 2, - sym__table_head_separator, - anon_sym_DOT2, - [133082] = 5, + ACTIONS(8518), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [133125] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4118), 1, + ACTIONS(4131), 1, anon_sym_AT2, - ACTIONS(5539), 1, + ACTIONS(5613), 1, anon_sym_EQ, - STATE(3232), 1, + STATE(3241), 1, sym_param_completer, STATE(4756), 1, sym_comment, - [133098] = 5, - ACTIONS(3), 1, + [133141] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4118), 1, - anon_sym_AT2, - ACTIONS(8509), 1, - anon_sym_GT2, + ACTIONS(8520), 1, + anon_sym_POUND_BANG, + ACTIONS(8522), 1, + sym__newline, STATE(4757), 1, sym_comment, - STATE(5264), 1, - sym_param_completer, - [133114] = 5, + STATE(4869), 1, + aux_sym__repeat_newline, + [133157] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4118), 1, - anon_sym_AT2, - ACTIONS(5539), 1, - anon_sym_EQ, - STATE(3244), 1, - sym_param_completer, + ACTIONS(8524), 1, + anon_sym_RBRACK, + ACTIONS(8526), 1, + anon_sym_DOT_DOT, STATE(4758), 1, sym_comment, - [133130] = 5, + STATE(5496), 1, + sym__match_pattern_rest, + [133173] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4370), 1, + ACTIONS(8413), 1, sym__entry_separator, - ACTIONS(8511), 1, - anon_sym_RBRACK, - STATE(4516), 1, - aux_sym__types_body_repeat2, STATE(4759), 1, sym_comment, - [133146] = 5, - ACTIONS(105), 1, + ACTIONS(8528), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [133187] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1618), 1, - anon_sym_RBRACE, - ACTIONS(1624), 1, - sym__entry_separator, - STATE(1491), 1, - aux_sym__types_body_repeat2, + ACTIONS(8530), 1, + anon_sym_export, + ACTIONS(8532), 1, + anon_sym_def, + ACTIONS(8534), 1, + anon_sym_extern, STATE(4760), 1, sym_comment, - [133162] = 3, - ACTIONS(3), 1, + [133203] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2485), 1, + sym__entry_separator, STATE(4761), 1, sym_comment, - ACTIONS(8197), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133174] = 5, - ACTIONS(3), 1, + ACTIONS(2487), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [133217] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3864), 1, - anon_sym_LBRACK, - STATE(4716), 1, - aux_sym__table_body_repeat1, + ACTIONS(5293), 1, + sym__entry_separator, STATE(4762), 1, sym_comment, - STATE(4834), 1, - sym_val_list, - [133190] = 5, + ACTIONS(5816), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [133231] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8462), 1, - sym_hex_digit, - ACTIONS(8513), 1, - anon_sym_RBRACK, STATE(4763), 1, sym_comment, - STATE(4768), 1, - aux_sym_val_binary_repeat1, - [133206] = 3, + ACTIONS(8407), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133243] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4764), 1, sym_comment, - ACTIONS(8515), 3, + ACTIONS(8367), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [133218] = 5, + [133255] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4370), 1, + ACTIONS(2592), 1, sym__entry_separator, - ACTIONS(8517), 1, - anon_sym_GT2, - STATE(2006), 1, - aux_sym__types_body_repeat2, STATE(4765), 1, sym_comment, - [133234] = 4, + ACTIONS(2594), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [133269] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6288), 1, + ACTIONS(4369), 1, sym__entry_separator, + ACTIONS(8536), 1, + anon_sym_RBRACK, + STATE(1972), 1, + aux_sym__types_body_repeat2, STATE(4766), 1, sym_comment, - ACTIONS(6286), 2, + [133285] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2541), 1, + sym__entry_separator, + STATE(4767), 1, + sym_comment, + ACTIONS(2543), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [133299] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2588), 1, + sym__entry_separator, + STATE(4768), 1, + sym_comment, + ACTIONS(2590), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [133248] = 3, + [133313] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4767), 1, + STATE(4769), 1, sym_comment, - ACTIONS(8208), 3, + ACTIONS(8327), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133260] = 5, + [133325] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8462), 1, + ACTIONS(8514), 1, sym_hex_digit, - ACTIONS(8519), 1, + ACTIONS(8538), 1, anon_sym_RBRACK, - STATE(4739), 1, + STATE(4747), 1, aux_sym_val_binary_repeat1, - STATE(4768), 1, - sym_comment, - [133276] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(8345), 1, - sym__entry_separator, - STATE(4769), 1, - sym_comment, - ACTIONS(7420), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [133290] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2427), 1, - sym__entry_separator, STATE(4770), 1, sym_comment, - ACTIONS(2429), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [133304] = 3, + [133341] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4771), 1, sym_comment, - ACTIONS(8189), 3, + ACTIONS(8182), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133316] = 5, + [133353] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4388), 1, + ACTIONS(1618), 1, sym__entry_separator, - ACTIONS(8521), 1, - anon_sym_RBRACK, - STATE(1991), 1, + ACTIONS(8540), 1, + anon_sym_RBRACE, + STATE(1487), 1, aux_sym__types_body_repeat2, STATE(4772), 1, sym_comment, - [133332] = 3, + [133369] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4773), 1, sym_comment, - ACTIONS(8210), 3, + ACTIONS(8182), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133344] = 4, + [133381] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2467), 1, + ACTIONS(1618), 1, sym__entry_separator, + ACTIONS(8542), 1, + anon_sym_RBRACE, + STATE(1483), 1, + aux_sym__types_body_repeat2, STATE(4774), 1, sym_comment, - ACTIONS(2469), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [133358] = 4, - ACTIONS(105), 1, + [133397] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2471), 1, - sym__entry_separator, STATE(4775), 1, sym_comment, - ACTIONS(2473), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [133372] = 5, - ACTIONS(105), 1, + ACTIONS(8313), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133409] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1624), 1, - sym__entry_separator, - ACTIONS(8523), 1, - anon_sym_RBRACE, - STATE(1480), 1, - aux_sym__types_body_repeat2, STATE(4776), 1, sym_comment, - [133388] = 4, + ACTIONS(8191), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133421] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3096), 1, - anon_sym_RPAREN, STATE(4777), 1, sym_comment, - ACTIONS(2620), 2, + ACTIONS(8313), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133402] = 5, + [133433] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_LPAREN2, - ACTIONS(5241), 1, - sym__unquoted_pattern_in_record, STATE(4778), 1, sym_comment, - STATE(5041), 1, - sym__expr_parenthesized_immediate, - [133418] = 5, + ACTIONS(8189), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133445] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8462), 1, - sym_hex_digit, - ACTIONS(8525), 1, - anon_sym_RBRACK, STATE(4779), 1, sym_comment, - STATE(4783), 1, - aux_sym_val_binary_repeat1, - [133434] = 5, - ACTIONS(105), 1, + ACTIONS(8309), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133457] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4370), 1, - sym__entry_separator, - ACTIONS(8527), 1, - anon_sym_RBRACK, - STATE(1970), 1, - aux_sym__types_body_repeat2, STATE(4780), 1, sym_comment, - [133450] = 3, + ACTIONS(8309), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133469] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4781), 1, sym_comment, - ACTIONS(8142), 3, + ACTIONS(8146), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133462] = 5, + [133481] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4370), 1, + ACTIONS(4387), 1, sym__entry_separator, - ACTIONS(8529), 1, + ACTIONS(8544), 1, anon_sym_RBRACK, - STATE(1988), 1, + STATE(2004), 1, aux_sym__types_body_repeat2, STATE(4782), 1, sym_comment, - [133478] = 5, + [133497] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8462), 1, - sym_hex_digit, - ACTIONS(8531), 1, - anon_sym_RBRACK, - STATE(4739), 1, - aux_sym_val_binary_repeat1, STATE(4783), 1, sym_comment, - [133494] = 5, + ACTIONS(8146), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133509] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1776), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8533), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8535), 1, - aux_sym__immediate_decimal_token5, STATE(4784), 1, sym_comment, - [133510] = 3, - ACTIONS(3), 1, + ACTIONS(8174), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133521] = 3, + ACTIONS(105), 1, anon_sym_POUND, STATE(4785), 1, sym_comment, - ACTIONS(8299), 3, + ACTIONS(2680), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [133533] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4786), 1, + sym_comment, + ACTIONS(8307), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133522] = 3, + [133545] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4786), 1, + STATE(4787), 1, sym_comment, - ACTIONS(8299), 3, + ACTIONS(8301), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133534] = 5, + [133557] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8537), 1, - anon_sym_RBRACK, - ACTIONS(8539), 1, - anon_sym_DOT_DOT, - STATE(4787), 1, + STATE(4788), 1, sym_comment, - STATE(5246), 1, - sym__match_pattern_rest, - [133550] = 4, + ACTIONS(8301), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133569] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5265), 1, + ACTIONS(4387), 1, sym__entry_separator, - STATE(4788), 1, - sym_comment, - ACTIONS(5816), 2, + ACTIONS(8546), 1, anon_sym_RBRACK, - anon_sym_GT2, - [133564] = 3, - ACTIONS(3), 1, - anon_sym_POUND, + STATE(4615), 1, + aux_sym__types_body_repeat2, STATE(4789), 1, sym_comment, - ACTIONS(8283), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133576] = 3, + [133585] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4790), 1, sym_comment, - ACTIONS(8283), 3, + ACTIONS(8182), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133588] = 3, - ACTIONS(3), 1, + [133597] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1618), 1, + sym__entry_separator, + ACTIONS(1620), 1, + anon_sym_COLON2, + STATE(1508), 1, + aux_sym__types_body_repeat2, STATE(4791), 1, sym_comment, - ACTIONS(8285), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133600] = 5, + [133613] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8462), 1, - sym_hex_digit, - ACTIONS(8541), 1, - anon_sym_RBRACK, STATE(4792), 1, sym_comment, - STATE(4795), 1, - aux_sym_val_binary_repeat1, - [133616] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4793), 1, - sym_comment, - ACTIONS(8285), 3, + ACTIONS(8182), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133628] = 3, + [133625] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(4390), 1, + sym_block, + STATE(4793), 1, + sym_comment, + [133641] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4794), 1, sym_comment, - ACTIONS(8289), 3, + ACTIONS(8299), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133640] = 5, + [133653] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8462), 1, - sym_hex_digit, - ACTIONS(8543), 1, - anon_sym_RBRACK, - STATE(4739), 1, - aux_sym_val_binary_repeat1, STATE(4795), 1, sym_comment, - [133656] = 4, + ACTIONS(8548), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [133665] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5292), 1, + ACTIONS(8419), 1, sym__entry_separator, STATE(4796), 1, sym_comment, - ACTIONS(5834), 2, + ACTIONS(8550), 2, anon_sym_RBRACK, - anon_sym_GT2, - [133670] = 3, + anon_sym_DOT_DOT, + [133679] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4797), 1, sym_comment, - ACTIONS(8545), 3, + ACTIONS(8407), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_LBRACK, - anon_sym_RBRACK, - [133682] = 3, + anon_sym_SEMI, + [133691] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4798), 1, sym_comment, - ACTIONS(8289), 3, + ACTIONS(8150), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133694] = 4, - ACTIONS(3), 1, + [133703] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8507), 1, - anon_sym_QMARK2, + ACTIONS(8255), 1, + anon_sym_LPAREN, STATE(4799), 1, sym_comment, - ACTIONS(1462), 2, - sym__table_head_separator, - anon_sym_DOT2, - [133708] = 3, + ACTIONS(8257), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [133717] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4800), 1, + ACTIONS(8552), 1, + anon_sym_RBRACK, + ACTIONS(8554), 1, + sym_hex_digit, + STATE(4800), 2, sym_comment, - ACTIONS(8238), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133720] = 5, + aux_sym_val_binary_repeat1, + [133731] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4388), 1, + ACTIONS(1618), 1, sym__entry_separator, - ACTIONS(8547), 1, - anon_sym_RBRACK, - STATE(1990), 1, + ACTIONS(8411), 1, + anon_sym_RBRACE, + STATE(1481), 1, aux_sym__types_body_repeat2, STATE(4801), 1, sym_comment, - [133736] = 4, - ACTIONS(105), 1, + [133747] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8549), 1, - anon_sym_GT2, + ACTIONS(8514), 1, + sym_hex_digit, + ACTIONS(8557), 1, + anon_sym_RBRACK, + STATE(4800), 1, + aux_sym_val_binary_repeat1, STATE(4802), 1, sym_comment, - ACTIONS(8551), 2, - anon_sym_AT2, - sym__entry_separator, - [133750] = 3, - ACTIONS(3), 1, + [133763] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1618), 1, + sym__entry_separator, + ACTIONS(8559), 1, + anon_sym_RBRACE, + STATE(1492), 1, + aux_sym__types_body_repeat2, STATE(4803), 1, sym_comment, - ACTIONS(4633), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [133762] = 4, + [133779] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1913), 1, + ACTIONS(1618), 1, sym__entry_separator, + ACTIONS(8409), 1, + anon_sym_RBRACE, + STATE(1476), 1, + aux_sym__types_body_repeat2, STATE(4804), 1, sym_comment, - ACTIONS(1915), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [133776] = 5, + [133795] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4118), 1, - anon_sym_AT2, - ACTIONS(5808), 1, - anon_sym_EQ, - STATE(3061), 1, - sym_param_completer, STATE(4805), 1, sym_comment, - [133792] = 3, + ACTIONS(8146), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133807] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8561), 1, + anon_sym_export, + ACTIONS(8563), 1, + anon_sym_def, + ACTIONS(8565), 1, + anon_sym_extern, STATE(4806), 1, sym_comment, - ACTIONS(8553), 3, - sym__newline, - anon_sym_LBRACK, - anon_sym_RBRACK, - [133804] = 3, + [133823] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4807), 1, sym_comment, - ACTIONS(8238), 3, + ACTIONS(8146), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133816] = 5, - ACTIONS(105), 1, + [133835] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4370), 1, - sym__entry_separator, - ACTIONS(8555), 1, - anon_sym_RBRACK, - STATE(4520), 1, - aux_sym__types_body_repeat2, STATE(4808), 1, sym_comment, - [133832] = 4, + ACTIONS(8152), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133847] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5350), 1, - sym__entry_separator, + ACTIONS(8193), 1, + anon_sym_LPAREN, STATE(4809), 1, sym_comment, - ACTIONS(5878), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [133846] = 5, + ACTIONS(8195), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [133861] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4118), 1, - anon_sym_AT2, - ACTIONS(8557), 1, - anon_sym_GT2, STATE(4810), 1, sym_comment, - STATE(5344), 1, - sym_param_completer, - [133862] = 3, + ACTIONS(8154), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133873] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(8567), 1, + anon_sym_COLON, + STATE(522), 1, + aux_sym__repeat_newline, STATE(4811), 1, sym_comment, - ACTIONS(8195), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [133874] = 5, + [133889] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_LPAREN2, - ACTIONS(7303), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8514), 1, + sym_hex_digit, + ACTIONS(8569), 1, + anon_sym_RBRACK, STATE(4812), 1, sym_comment, - STATE(5039), 1, - sym__expr_parenthesized_immediate, - [133890] = 3, + STATE(4849), 1, + aux_sym_val_binary_repeat1, + [133905] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4813), 1, sym_comment, - ACTIONS(8325), 3, + ACTIONS(8156), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133902] = 4, - ACTIONS(105), 1, + [133917] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8347), 1, - sym__entry_separator, + ACTIONS(5228), 1, + anon_sym_LPAREN2, + ACTIONS(7185), 1, + sym__unquoted_pattern_in_record, STATE(4814), 1, sym_comment, - ACTIONS(8559), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [133916] = 4, - ACTIONS(105), 1, + STATE(5074), 1, + sym__expr_parenthesized_immediate, + [133933] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8351), 1, - sym__entry_separator, + ACTIONS(8514), 1, + sym_hex_digit, + ACTIONS(8571), 1, + anon_sym_RBRACK, + STATE(4800), 1, + aux_sym_val_binary_repeat1, STATE(4815), 1, sym_comment, - ACTIONS(8561), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [133930] = 4, - ACTIONS(105), 1, + [133949] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8390), 1, - sym__entry_separator, + ACTIONS(8573), 1, + anon_sym_QMARK2, STATE(4816), 1, sym_comment, - ACTIONS(8491), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [133944] = 3, + ACTIONS(1466), 2, + sym__table_head_separator, + anon_sym_DOT2, + [133963] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4817), 1, sym_comment, - ACTIONS(8325), 3, + ACTIONS(8407), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [133956] = 5, + [133975] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7742), 1, - anon_sym_DOT_DOT, - ACTIONS(7908), 1, - anon_sym_RBRACK, - ACTIONS(7910), 1, + ACTIONS(811), 1, + anon_sym_RBRACE, + ACTIONS(910), 1, sym__entry_separator, + ACTIONS(7185), 1, + sym__unquoted_pattern_in_record, STATE(4818), 1, sym_comment, - [133972] = 3, + [133991] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4819), 1, sym_comment, - ACTIONS(8327), 3, - ts_builtin_sym_end, + ACTIONS(8399), 3, sym__newline, - anon_sym_SEMI, - [133984] = 5, + anon_sym_PIPE, + anon_sym_EQ_GT, + [134003] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7748), 1, - anon_sym_DOT_DOT, - ACTIONS(7922), 1, - anon_sym_RBRACK, - ACTIONS(7925), 1, + ACTIONS(4808), 1, + anon_sym_RBRACE, + ACTIONS(4810), 1, sym__entry_separator, + STATE(2271), 1, + aux_sym__types_body_repeat2, STATE(4820), 1, sym_comment, - [134000] = 3, - ACTIONS(3), 1, + [134019] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5327), 1, + sym__entry_separator, STATE(4821), 1, sym_comment, - ACTIONS(8240), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [134012] = 3, - ACTIONS(3), 1, + ACTIONS(5923), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [134033] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5325), 1, + sym__entry_separator, STATE(4822), 1, sym_comment, - ACTIONS(8327), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [134024] = 3, + ACTIONS(5988), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [134047] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4823), 1, sym_comment, - ACTIONS(8333), 3, + ACTIONS(8391), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [134036] = 3, - ACTIONS(3), 1, + [134059] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4387), 1, + sym__entry_separator, + ACTIONS(8377), 1, + anon_sym_LBRACK, + STATE(1928), 1, + aux_sym__types_body_repeat2, STATE(4824), 1, sym_comment, - ACTIONS(8333), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [134048] = 3, + [134075] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4825), 1, sym_comment, - ACTIONS(8240), 3, - ts_builtin_sym_end, + ACTIONS(8575), 3, sym__newline, anon_sym_SEMI, - [134060] = 5, + anon_sym_RPAREN, + [134087] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8462), 1, - sym_hex_digit, - ACTIONS(8563), 1, - anon_sym_RBRACK, STATE(4826), 1, sym_comment, - STATE(4856), 1, - aux_sym_val_binary_repeat1, - [134076] = 5, - ACTIONS(105), 1, + ACTIONS(8352), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134099] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1624), 1, - sym__entry_separator, - ACTIONS(8565), 1, - anon_sym_RBRACE, - STATE(1481), 1, - aux_sym__types_body_repeat2, + ACTIONS(1830), 1, + anon_sym_LPAREN2, + ACTIONS(5192), 1, + sym__unquoted_pattern, STATE(4827), 1, sym_comment, - [134092] = 3, + STATE(5017), 1, + sym__expr_parenthesized_immediate, + [134115] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3850), 1, + anon_sym_LBRACK, STATE(4828), 1, sym_comment, - ACTIONS(8339), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [134104] = 4, - ACTIONS(105), 1, + STATE(4835), 1, + aux_sym__table_body_repeat1, + STATE(4836), 1, + sym_val_list, + [134131] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8152), 1, - sym__entry_separator, STATE(4829), 1, sym_comment, - ACTIONS(8567), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [134118] = 4, - ACTIONS(105), 1, + ACTIONS(8577), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [134143] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8152), 1, - sym__entry_separator, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(8579), 1, + anon_sym_COLON, + STATE(522), 1, + aux_sym__repeat_newline, STATE(4830), 1, sym_comment, - ACTIONS(8567), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [134132] = 4, - ACTIONS(105), 1, + [134159] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8156), 1, - sym__entry_separator, STATE(4831), 1, sym_comment, - ACTIONS(8569), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [134146] = 4, + ACTIONS(8401), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134171] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5247), 1, + ACTIONS(4486), 1, sym__entry_separator, - STATE(4832), 1, - sym_comment, - ACTIONS(5891), 2, + ACTIONS(8581), 1, anon_sym_RBRACK, - anon_sym_GT2, - [134160] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(5296), 1, - sym__entry_separator, - STATE(4833), 1, + STATE(2058), 1, + aux_sym__types_body_repeat2, + STATE(4832), 1, sym_comment, - ACTIONS(5893), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [134174] = 5, - ACTIONS(105), 1, + [134187] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4370), 1, - sym__entry_separator, - ACTIONS(8571), 1, + ACTIONS(8514), 1, + sym_hex_digit, + ACTIONS(8583), 1, anon_sym_RBRACK, - STATE(4646), 1, - aux_sym__types_body_repeat2, - STATE(4834), 1, + STATE(4815), 1, + aux_sym_val_binary_repeat1, + STATE(4833), 1, sym_comment, - [134190] = 3, + [134203] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4835), 1, + STATE(4834), 1, sym_comment, - ACTIONS(8339), 3, + ACTIONS(8162), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [134202] = 5, + [134215] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1790), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8573), 1, - anon_sym_DOT, - ACTIONS(8575), 1, - aux_sym__immediate_decimal_token5, - STATE(4836), 1, + ACTIONS(8585), 1, + anon_sym_LBRACK, + STATE(5053), 1, + sym_val_list, + STATE(4835), 2, sym_comment, - [134218] = 3, + aux_sym__table_body_repeat1, + [134229] = 5, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4387), 1, + sym__entry_separator, + ACTIONS(8588), 1, + anon_sym_RBRACK, + STATE(4658), 1, + aux_sym__types_body_repeat2, + STATE(4836), 1, + sym_comment, + [134245] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3850), 1, + anon_sym_LBRACK, + STATE(4741), 1, + sym_val_list, + STATE(4835), 1, + aux_sym__table_body_repeat1, STATE(4837), 1, sym_comment, - ACTIONS(2666), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [134230] = 5, + [134261] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2986), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(4698), 1, - sym_block, + ACTIONS(4387), 1, + sym__entry_separator, + ACTIONS(8590), 1, + anon_sym_RBRACK, + STATE(4665), 1, + aux_sym__types_body_repeat2, STATE(4838), 1, sym_comment, - [134246] = 5, + [134277] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8462), 1, - sym_hex_digit, - ACTIONS(8577), 1, - anon_sym_RBRACK, - STATE(4707), 1, - aux_sym_val_binary_repeat1, + ACTIONS(1830), 1, + anon_sym_LPAREN2, + ACTIONS(1840), 1, + sym__unquoted_pattern, STATE(4839), 1, sym_comment, - [134262] = 5, + STATE(5102), 1, + sym__expr_parenthesized_immediate, + [134293] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(8579), 1, - anon_sym_COLON, - STATE(501), 1, - aux_sym__repeat_newline, STATE(4840), 1, sym_comment, - [134278] = 5, - ACTIONS(105), 1, + ACTIONS(8148), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134305] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5094), 1, - sym__entry_separator, - ACTIONS(8581), 1, - anon_sym_GT2, - STATE(2432), 1, - aux_sym__types_body_repeat2, + STATE(1390), 1, + aux_sym__block_body_repeat1, STATE(4841), 1, sym_comment, - [134294] = 5, - ACTIONS(105), 1, + ACTIONS(155), 2, + sym__newline, + anon_sym_SEMI, + [134319] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5094), 1, - sym__entry_separator, - ACTIONS(8583), 1, - anon_sym_GT2, - STATE(2433), 1, - aux_sym__types_body_repeat2, + ACTIONS(8514), 1, + sym_hex_digit, + ACTIONS(8592), 1, + anon_sym_RBRACK, + STATE(4800), 1, + aux_sym_val_binary_repeat1, STATE(4842), 1, sym_comment, - [134310] = 4, - ACTIONS(105), 1, + [134335] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8585), 1, - anon_sym_DQUOTE, STATE(4843), 1, sym_comment, - ACTIONS(8587), 2, - sym__escaped_str_content, - sym_escape_sequence, - [134324] = 5, - ACTIONS(105), 1, + ACTIONS(8172), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134347] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4370), 1, - sym__entry_separator, - ACTIONS(8589), 1, - anon_sym_RBRACK, - STATE(4499), 1, - aux_sym__types_body_repeat2, STATE(4844), 1, sym_comment, - [134340] = 4, - ACTIONS(105), 1, + ACTIONS(8594), 3, + sym__newline, + anon_sym_LBRACK, + anon_sym_RBRACK, + [134359] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5308), 1, - sym__entry_separator, STATE(4845), 1, sym_comment, - ACTIONS(5914), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [134354] = 3, + ACTIONS(8170), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134371] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4846), 1, sym_comment, - ACTIONS(8359), 3, + ACTIONS(8391), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [134366] = 3, + [134383] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1830), 1, + anon_sym_LPAREN2, + ACTIONS(1872), 1, + sym__unquoted_pattern, STATE(4847), 1, sym_comment, - ACTIONS(8359), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [134378] = 3, + STATE(5063), 1, + sym__expr_parenthesized_immediate, + [134399] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4848), 1, sym_comment, - ACTIONS(8361), 3, + ACTIONS(8168), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [134390] = 5, - ACTIONS(105), 1, + [134411] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(4461), 1, - sym_block, + ACTIONS(8514), 1, + sym_hex_digit, + ACTIONS(8596), 1, + anon_sym_RBRACK, + STATE(4800), 1, + aux_sym_val_binary_repeat1, STATE(4849), 1, sym_comment, - [134406] = 3, - ACTIONS(3), 1, + [134427] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(5287), 1, + sym__entry_separator, STATE(4850), 1, sym_comment, - ACTIONS(3096), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [134418] = 3, - ACTIONS(3), 1, + ACTIONS(5967), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [134441] = 3, + ACTIONS(105), 1, anon_sym_POUND, STATE(4851), 1, sym_comment, - ACTIONS(8361), 3, - ts_builtin_sym_end, + ACTIONS(898), 3, sym__newline, - anon_sym_SEMI, - [134430] = 5, - ACTIONS(105), 1, + sym__space, + anon_sym_COLON2, + [134453] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(4463), 1, - sym_block, + ACTIONS(8514), 1, + sym_hex_digit, + ACTIONS(8598), 1, + anon_sym_RBRACK, + STATE(4802), 1, + aux_sym_val_binary_repeat1, STATE(4852), 1, sym_comment, - [134446] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(3043), 1, - sym_block, - STATE(4853), 1, - sym_comment, - [134462] = 4, + [134469] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1738), 1, + ACTIONS(5094), 1, sym__entry_separator, - STATE(4854), 1, + ACTIONS(8600), 1, + anon_sym_GT2, + STATE(2430), 1, + aux_sym__types_body_repeat2, + STATE(4853), 1, sym_comment, - ACTIONS(1616), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [134476] = 3, + [134485] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4855), 1, + ACTIONS(4131), 1, + anon_sym_AT2, + ACTIONS(5710), 1, + anon_sym_EQ, + STATE(3246), 1, + sym_param_completer, + STATE(4854), 1, sym_comment, - ACTIONS(8363), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [134488] = 5, + [134501] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8462), 1, + ACTIONS(8514), 1, sym_hex_digit, - ACTIONS(8591), 1, + ACTIONS(8602), 1, anon_sym_RBRACK, - STATE(4739), 1, + STATE(4842), 1, aux_sym_val_binary_repeat1, - STATE(4856), 1, + STATE(4855), 1, sym_comment, - [134504] = 3, + [134517] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4857), 1, + ACTIONS(4131), 1, + anon_sym_AT2, + ACTIONS(5625), 1, + anon_sym_EQ, + STATE(3234), 1, + sym_param_completer, + STATE(4856), 1, sym_comment, - ACTIONS(2348), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [134516] = 5, + [134533] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8216), 1, + ACTIONS(6431), 1, sym__entry_separator, - ACTIONS(8593), 1, - anon_sym_AT2, - STATE(4858), 1, + STATE(4857), 1, sym_comment, - STATE(4989), 1, - sym_param_completer, - [134532] = 5, + ACTIONS(6429), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [134547] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(1806), 1, - sym__unquoted_pattern, + STATE(4858), 1, + sym_comment, + ACTIONS(3119), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [134559] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(5305), 1, + sym__entry_separator, STATE(4859), 1, sym_comment, - STATE(5068), 1, - sym__expr_parenthesized_immediate, - [134548] = 3, + ACTIONS(5847), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [134573] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4860), 1, sym_comment, - ACTIONS(8363), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [134560] = 4, + ACTIONS(4661), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [134585] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1933), 1, + ACTIONS(5405), 1, sym__entry_separator, STATE(4861), 1, sym_comment, - ACTIONS(1935), 2, + ACTIONS(5403), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [134574] = 5, + anon_sym_RBRACE, + [134599] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(811), 1, - anon_sym_RBRACK, - ACTIONS(914), 1, + ACTIONS(1900), 1, sym__entry_separator, - ACTIONS(6629), 1, - sym__unquoted_pattern_in_list, STATE(4862), 1, sym_comment, - [134590] = 3, - ACTIONS(105), 1, + ACTIONS(1902), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [134613] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4863), 1, sym_comment, - ACTIONS(890), 3, + ACTIONS(8166), 3, + ts_builtin_sym_end, sym__newline, - sym__space, - anon_sym_COLON2, - [134602] = 5, + anon_sym_SEMI, + [134625] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, - anon_sym_LBRACK, - STATE(4716), 1, - aux_sym__table_body_repeat1, - STATE(4808), 1, - sym_val_list, STATE(4864), 1, sym_comment, - [134618] = 5, - ACTIONS(105), 1, + ACTIONS(4657), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [134637] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4370), 1, - sym__entry_separator, - ACTIONS(8595), 1, - anon_sym_GT2, - STATE(1987), 1, - aux_sym__types_body_repeat2, STATE(4865), 1, sym_comment, - [134634] = 5, - ACTIONS(105), 1, + ACTIONS(4646), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [134649] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4370), 1, - sym__entry_separator, - ACTIONS(8597), 1, - anon_sym_GT2, - STATE(2004), 1, - aux_sym__types_body_repeat2, STATE(4866), 1, sym_comment, - [134650] = 5, + ACTIONS(8200), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134661] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4867), 1, + sym_comment, + ACTIONS(8164), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134673] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4542), 1, + ACTIONS(1736), 1, sym__entry_separator, - ACTIONS(8599), 1, - anon_sym_RBRACK, - STATE(2087), 1, - aux_sym__types_body_repeat2, - STATE(4867), 1, + STATE(4868), 1, sym_comment, - [134666] = 5, + ACTIONS(1610), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [134687] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8601), 1, + ACTIONS(1938), 1, anon_sym_POUND_BANG, - ACTIONS(8603), 1, + ACTIONS(8604), 1, sym__newline, - STATE(4680), 1, + STATE(4869), 2, aux_sym__repeat_newline, - STATE(4868), 1, sym_comment, - [134682] = 5, + [134701] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4370), 1, + ACTIONS(8273), 1, sym__entry_separator, - ACTIONS(8605), 1, - anon_sym_RBRACK, - STATE(1981), 1, - aux_sym__types_body_repeat2, - STATE(4869), 1, + ACTIONS(8607), 1, + anon_sym_AT2, + STATE(4870), 1, sym_comment, - [134698] = 5, + STATE(4938), 1, + sym_param_completer, + [134717] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(4387), 1, sym__entry_separator, - ACTIONS(8392), 1, - anon_sym_RBRACE, - STATE(1475), 1, + ACTIONS(8609), 1, + anon_sym_GT2, + STATE(2012), 1, aux_sym__types_body_repeat2, - STATE(4870), 1, + STATE(4871), 1, sym_comment, - [134714] = 5, + [134733] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8607), 1, - anon_sym_export, - ACTIONS(8609), 1, - anon_sym_def, + ACTIONS(8514), 1, + sym_hex_digit, ACTIONS(8611), 1, - anon_sym_extern, - STATE(4871), 1, - sym_comment, - [134730] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4542), 1, - sym__entry_separator, - ACTIONS(8613), 1, anon_sym_RBRACK, - STATE(2091), 1, - aux_sym__types_body_repeat2, STATE(4872), 1, sym_comment, - [134746] = 5, - ACTIONS(105), 1, + STATE(4889), 1, + aux_sym_val_binary_repeat1, + [134749] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1624), 1, - sym__entry_separator, - ACTIONS(8394), 1, - anon_sym_RBRACE, - STATE(1479), 1, - aux_sym__types_body_repeat2, STATE(4873), 1, sym_comment, - [134762] = 3, - ACTIONS(3), 1, + ACTIONS(8354), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134761] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8613), 1, + anon_sym_LPAREN, STATE(4874), 1, sym_comment, - ACTIONS(2361), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [134774] = 4, - ACTIONS(105), 1, + ACTIONS(8615), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [134775] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2710), 1, - sym__entry_separator, STATE(4875), 1, sym_comment, - ACTIONS(2712), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [134788] = 3, + ACTIONS(8148), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134787] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2966), 1, + sym__newline, + ACTIONS(8617), 1, + anon_sym_COLON, + STATE(522), 1, + aux_sym__repeat_newline, STATE(4876), 1, sym_comment, - ACTIONS(8327), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [134800] = 3, + [134803] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4877), 1, sym_comment, - ACTIONS(8327), 3, + ACTIONS(8354), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [134812] = 5, - ACTIONS(3), 1, + [134815] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1788), 1, - anon_sym_LBRACE, - ACTIONS(1790), 1, - sym__unquoted_pattern, - ACTIONS(8264), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(1908), 1, + sym__entry_separator, STATE(4878), 1, sym_comment, - [134828] = 5, + ACTIONS(1910), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [134829] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8462), 1, - sym_hex_digit, - ACTIONS(8615), 1, - anon_sym_RBRACK, STATE(4879), 1, sym_comment, - STATE(4913), 1, - aux_sym_val_binary_repeat1, - [134844] = 5, - ACTIONS(105), 1, + ACTIONS(8202), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134841] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1624), 1, - sym__entry_separator, - ACTIONS(8617), 1, - anon_sym_RBRACE, - STATE(1482), 1, - aux_sym__types_body_repeat2, STATE(4880), 1, sym_comment, - [134860] = 3, - ACTIONS(3), 1, + ACTIONS(8204), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134853] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(811), 1, + anon_sym_RBRACK, + ACTIONS(910), 1, + sym__entry_separator, + ACTIONS(6788), 1, + sym__unquoted_pattern_in_list, STATE(4881), 1, sym_comment, - ACTIONS(8620), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [134872] = 3, - ACTIONS(3), 1, + [134869] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8619), 1, + anon_sym_LPAREN, STATE(4882), 1, sym_comment, - ACTIONS(8622), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [134884] = 3, + ACTIONS(8621), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [134883] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4883), 1, sym_comment, - ACTIONS(8244), 3, + ACTIONS(8206), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [134896] = 3, + [134895] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8625), 1, + anon_sym_COMMA, STATE(4884), 1, sym_comment, - ACTIONS(8412), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [134908] = 5, + ACTIONS(8623), 2, + anon_sym_RBRACK, + sym_hex_digit, + [134909] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4809), 1, - sym__entry_separator, - ACTIONS(4824), 1, - anon_sym_RBRACE, - STATE(2269), 1, - aux_sym__types_body_repeat2, + ACTIONS(8627), 1, + anon_sym_DQUOTE, STATE(4885), 1, sym_comment, - [134924] = 3, - ACTIONS(3), 1, + ACTIONS(8629), 2, + sym__escaped_str_content, + sym_escape_sequence, + [134923] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(2419), 1, + sym__entry_separator, STATE(4886), 1, sym_comment, - ACTIONS(8624), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [134936] = 3, - ACTIONS(3), 1, + ACTIONS(2421), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [134937] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1618), 1, + sym__entry_separator, + ACTIONS(8631), 1, + anon_sym_RBRACE, + STATE(1490), 1, + aux_sym__types_body_repeat2, STATE(4887), 1, sym_comment, - ACTIONS(4626), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [134948] = 5, + [134953] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(8626), 1, - anon_sym_COLON, - STATE(501), 1, - aux_sym__repeat_newline, + ACTIONS(8514), 1, + sym_hex_digit, + ACTIONS(8633), 1, + anon_sym_RBRACK, + STATE(4800), 1, + aux_sym_val_binary_repeat1, STATE(4888), 1, sym_comment, - [134964] = 5, - ACTIONS(105), 1, + [134969] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4370), 1, - sym__entry_separator, - ACTIONS(8270), 1, - anon_sym_LBRACK, - STATE(1934), 1, - aux_sym__types_body_repeat2, + ACTIONS(8514), 1, + sym_hex_digit, + ACTIONS(8635), 1, + anon_sym_RBRACK, + STATE(4800), 1, + aux_sym_val_binary_repeat1, STATE(4889), 1, sym_comment, - [134980] = 3, + [134985] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1830), 1, + anon_sym_LPAREN2, + ACTIONS(5088), 1, + sym__unquoted_pattern, STATE(4890), 1, sym_comment, - ACTIONS(8628), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [134992] = 3, + STATE(4949), 1, + sym__expr_parenthesized_immediate, + [135001] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6788), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7003), 1, + anon_sym_LPAREN2, STATE(4891), 1, sym_comment, - ACTIONS(8630), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [135004] = 5, - ACTIONS(3), 1, + STATE(5069), 1, + sym__expr_parenthesized_immediate, + [135017] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7872), 1, - anon_sym_if, - ACTIONS(8632), 1, - anon_sym_EQ_GT, + ACTIONS(7813), 1, + anon_sym_DOT_DOT, + ACTIONS(7936), 1, + anon_sym_RBRACK, + ACTIONS(7939), 1, + sym__entry_separator, STATE(4892), 1, sym_comment, - STATE(5192), 1, - sym_match_guard, - [135020] = 3, + [135033] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4893), 1, sym_comment, - ACTIONS(8634), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [135032] = 5, + ACTIONS(2158), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [135045] = 4, ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(4370), 1, - sym__entry_separator, - ACTIONS(8636), 1, - anon_sym_RBRACK, - STATE(1992), 1, - aux_sym__types_body_repeat2, + anon_sym_POUND, + ACTIONS(7630), 1, + sym__entry_separator, STATE(4894), 1, sym_comment, - [135048] = 3, + ACTIONS(7807), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [135059] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1804), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8637), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8639), 1, + aux_sym__immediate_decimal_token5, STATE(4895), 1, sym_comment, - ACTIONS(8365), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [135060] = 3, - ACTIONS(3), 1, + [135075] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8528), 1, + anon_sym_DOT_DOT, + ACTIONS(8641), 1, + anon_sym_RBRACK, + ACTIONS(8644), 1, + sym__entry_separator, STATE(4896), 1, sym_comment, - ACTIONS(8365), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [135072] = 5, + [135091] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4809), 1, + ACTIONS(2405), 1, sym__entry_separator, - ACTIONS(8638), 1, - anon_sym_RBRACE, - STATE(2275), 1, - aux_sym__types_body_repeat2, STATE(4897), 1, sym_comment, - [135088] = 4, + ACTIONS(2407), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [135105] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8640), 1, - anon_sym_LPAREN, + ACTIONS(8647), 1, + sym__table_head_separator, STATE(4898), 1, sym_comment, - ACTIONS(8642), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [135102] = 3, + ACTIONS(1610), 2, + anon_sym_RBRACK, + sym__entry_separator, + [135119] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4899), 1, sym_comment, - ACTIONS(8250), 3, + ACTIONS(8429), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [135114] = 5, + [135131] = 5, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1618), 1, sym__entry_separator, - ACTIONS(8158), 1, + ACTIONS(8649), 1, anon_sym_RBRACE, - STATE(1484), 1, + STATE(1480), 1, aux_sym__types_body_repeat2, STATE(4900), 1, sym_comment, - [135130] = 5, + [135147] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(8644), 1, - anon_sym_COLON, - STATE(501), 1, - aux_sym__repeat_newline, + ACTIONS(8514), 1, + sym_hex_digit, + ACTIONS(8652), 1, + anon_sym_RBRACK, + STATE(4888), 1, + aux_sym_val_binary_repeat1, STATE(4901), 1, sym_comment, - [135146] = 3, + [135163] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4902), 1, sym_comment, - ACTIONS(8250), 3, + ACTIONS(8234), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [135158] = 3, - ACTIONS(3), 1, + [135175] = 5, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(4486), 1, + sym__entry_separator, + ACTIONS(8654), 1, + anon_sym_RBRACK, + STATE(2090), 1, + aux_sym__types_body_repeat2, STATE(4903), 1, sym_comment, - ACTIONS(8252), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [135170] = 3, + [135191] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4131), 1, + anon_sym_AT2, + ACTIONS(8656), 1, + anon_sym_GT2, STATE(4904), 1, sym_comment, - ACTIONS(8252), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [135182] = 5, + STATE(5347), 1, + sym_param_completer, + [135207] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8646), 1, - anon_sym_export, - ACTIONS(8648), 1, - anon_sym_def, - ACTIONS(8650), 1, - anon_sym_extern, STATE(4905), 1, sym_comment, - [135198] = 3, - ACTIONS(3), 1, + ACTIONS(2247), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [135219] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8363), 1, + sym__entry_separator, STATE(4906), 1, sym_comment, - ACTIONS(8238), 3, + ACTIONS(8658), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [135233] = 5, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(4810), 1, + sym__entry_separator, + ACTIONS(8660), 1, + anon_sym_RBRACE, + STATE(2273), 1, + aux_sym__types_body_repeat2, + STATE(4907), 1, + sym_comment, + [135249] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4908), 1, + sym_comment, + ACTIONS(8234), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [135210] = 3, + [135261] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4907), 1, + STATE(4909), 1, sym_comment, - ACTIONS(8238), 3, + ACTIONS(8369), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [135222] = 4, + [135273] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2616), 1, sym__entry_separator, - STATE(4908), 1, + STATE(4910), 1, sym_comment, - ACTIONS(2399), 2, + ACTIONS(2618), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [135236] = 3, - ACTIONS(105), 1, - anon_sym_POUND, - STATE(4909), 1, - sym_comment, - ACTIONS(1903), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [135248] = 3, + [135287] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4910), 1, - sym_comment, - ACTIONS(8367), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [135260] = 5, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1624), 1, - sym__entry_separator, - ACTIONS(1626), 1, - anon_sym_COLON2, - STATE(1494), 1, - aux_sym__types_body_repeat2, + ACTIONS(7914), 1, + anon_sym_if, + ACTIONS(8662), 1, + anon_sym_EQ_GT, STATE(4911), 1, sym_comment, - [135276] = 3, + STATE(5508), 1, + sym_match_guard, + [135303] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1810), 1, + anon_sym_LBRACE, + ACTIONS(1812), 1, + sym__unquoted_pattern, + ACTIONS(8283), 1, + aux_sym__immediate_decimal_token5, STATE(4912), 1, sym_comment, - ACTIONS(8254), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [135288] = 5, + [135319] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8462), 1, - sym_hex_digit, - ACTIONS(8652), 1, - anon_sym_RBRACK, - STATE(4739), 1, - aux_sym_val_binary_repeat1, STATE(4913), 1, sym_comment, - [135304] = 3, + ACTIONS(8352), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [135331] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8664), 1, + anon_sym_RBRACK, + ACTIONS(8666), 1, + anon_sym_DOT_DOT, STATE(4914), 1, sym_comment, - ACTIONS(8654), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [135316] = 5, - ACTIONS(3), 1, + STATE(5516), 1, + sym__match_pattern_rest, + [135347] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, - ACTIONS(1864), 1, - sym__unquoted_pattern, + ACTIONS(3472), 1, + sym__newline, + ACTIONS(3474), 1, + sym__space, + STATE(1410), 1, + aux_sym_pipe_element_parenthesized_repeat1, STATE(4915), 1, sym_comment, - STATE(4987), 1, - sym__expr_parenthesized_immediate, - [135332] = 5, - ACTIONS(105), 1, + [135363] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4388), 1, - sym__entry_separator, - ACTIONS(8656), 1, - anon_sym_RBRACK, - STATE(1974), 1, - aux_sym__types_body_repeat2, STATE(4916), 1, sym_comment, - [135348] = 5, + ACTIONS(8242), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [135375] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1788), 1, - anon_sym_LBRACE, - ACTIONS(7572), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8658), 1, - anon_sym_DOT, STATE(4917), 1, sym_comment, - [135364] = 4, - ACTIONS(105), 1, + ACTIONS(8369), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [135387] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2393), 1, - sym__entry_separator, STATE(4918), 1, sym_comment, - ACTIONS(2395), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [135378] = 5, - ACTIONS(105), 1, + ACTIONS(8242), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [135399] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4388), 1, - sym__entry_separator, - ACTIONS(8660), 1, - anon_sym_RBRACK, - STATE(1977), 1, - aux_sym__types_body_repeat2, STATE(4919), 1, sym_comment, - [135394] = 3, + ACTIONS(8668), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [135411] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1810), 1, + anon_sym_LBRACE, + ACTIONS(7656), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8670), 1, + anon_sym_DOT, STATE(4920), 1, sym_comment, - ACTIONS(8256), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [135406] = 4, - ACTIONS(105), 1, + [135427] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8662), 1, - anon_sym_LPAREN, STATE(4921), 1, sym_comment, - ACTIONS(8664), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [135420] = 4, + ACTIONS(8385), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [135439] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2584), 1, - sym__entry_separator, + ACTIONS(8672), 1, + anon_sym_GT2, STATE(4922), 1, sym_comment, - ACTIONS(2586), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [135434] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2588), 1, + ACTIONS(8674), 2, + anon_sym_AT2, sym__entry_separator, + [135453] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4923), 1, sym_comment, - ACTIONS(2590), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [135448] = 5, + ACTIONS(8385), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [135465] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(8666), 1, - anon_sym_COLON, - STATE(501), 1, - aux_sym__repeat_newline, STATE(4924), 1, sym_comment, - [135464] = 5, - ACTIONS(105), 1, + ACTIONS(8391), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [135477] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(811), 1, - anon_sym_RBRACE, - ACTIONS(914), 1, - sym__entry_separator, - ACTIONS(7303), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8573), 1, + anon_sym_BANG, STATE(4925), 1, sym_comment, - [135480] = 4, - ACTIONS(105), 1, + ACTIONS(1466), 2, + sym__table_head_separator, + anon_sym_DOT2, + [135491] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2455), 1, - sym__entry_separator, STATE(4926), 1, sym_comment, - ACTIONS(2457), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [135494] = 4, - ACTIONS(105), 1, + ACTIONS(8391), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [135503] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2455), 1, - sym__entry_separator, STATE(4927), 1, sym_comment, - ACTIONS(2457), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [135508] = 3, + ACTIONS(8676), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [135515] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4928), 1, sym_comment, - ACTIONS(8668), 3, + ACTIONS(8678), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [135520] = 5, + [135527] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8236), 1, - sym__entry_separator, - ACTIONS(8670), 1, - anon_sym_COLON, STATE(4929), 1, sym_comment, - STATE(4961), 1, - sym__collection_annotation, - [135536] = 5, - ACTIONS(3), 1, + ACTIONS(1906), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [135539] = 5, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2903), 1, - sym__newline, - ACTIONS(8672), 1, - anon_sym_COLON, - STATE(501), 1, - aux_sym__repeat_newline, + ACTIONS(4369), 1, + sym__entry_separator, + ACTIONS(8680), 1, + anon_sym_RBRACK, + STATE(1969), 1, + aux_sym__types_body_repeat2, STATE(4930), 1, sym_comment, - [135552] = 3, + [135555] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4931), 1, sym_comment, - ACTIONS(8195), 3, + ACTIONS(8236), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [135564] = 4, - ACTIONS(3), 1, + [135567] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(4920), 1, - sym_block, + ACTIONS(7624), 1, + sym__entry_separator, STATE(4932), 1, sym_comment, - [135577] = 4, + ACTIONS(7813), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [135581] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - anon_sym_LBRACE, - ACTIONS(2674), 1, - sym__unquoted_pattern, STATE(4933), 1, sym_comment, - [135590] = 4, + ACTIONS(8429), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [135593] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, - ACTIONS(1868), 1, - sym__unquoted_pattern, + STATE(4877), 1, + sym_block, STATE(4934), 1, sym_comment, - [135603] = 4, - ACTIONS(3), 1, + [135606] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(4583), 1, - sym_block, + ACTIONS(2125), 1, + sym__entry_separator, + ACTIONS(2127), 1, + anon_sym_RBRACE, STATE(4935), 1, sym_comment, - [135616] = 4, - ACTIONS(105), 1, + [135619] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8674), 1, - anon_sym_LPAREN2, - ACTIONS(8676), 1, - aux_sym__record_key_token1, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(4764), 1, + sym_block, STATE(4936), 1, sym_comment, - [135629] = 4, + [135632] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, - STATE(4603), 1, + STATE(4873), 1, sym_block, STATE(4937), 1, sym_comment, - [135642] = 4, - ACTIONS(3), 1, + [135645] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6627), 1, - anon_sym_DOLLAR2, - ACTIONS(8678), 1, - anon_sym_RBRACK, + ACTIONS(8682), 1, + anon_sym_GT2, + ACTIONS(8684), 1, + sym__entry_separator, STATE(4938), 1, sym_comment, - [135655] = 4, - ACTIONS(105), 1, + [135658] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1242), 1, - anon_sym_RBRACE, - ACTIONS(1258), 1, - sym__entry_separator, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(4779), 1, + sym_block, STATE(4939), 1, sym_comment, - [135668] = 4, - ACTIONS(105), 1, + [135671] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1234), 1, - anon_sym_RBRACE, - ACTIONS(1250), 1, - sym__entry_separator, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(4588), 1, + sym_block, STATE(4940), 1, sym_comment, - [135681] = 3, - ACTIONS(3), 1, + [135684] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8686), 1, + aux_sym__unquoted_with_expr_token1, STATE(4941), 1, sym_comment, - ACTIONS(8551), 2, - anon_sym_GT2, - anon_sym_AT2, - [135692] = 4, - ACTIONS(3), 1, + STATE(5044), 1, + aux_sym__unquoted_with_expr_repeat1, + [135697] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(4732), 1, - sym_block, + ACTIONS(8688), 1, + aux_sym__unquoted_with_expr_token1, STATE(4942), 1, sym_comment, - [135705] = 4, + STATE(5044), 1, + aux_sym__unquoted_with_expr_repeat1, + [135710] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(4899), 1, + STATE(4621), 1, sym_block, STATE(4943), 1, sym_comment, - [135718] = 4, - ACTIONS(105), 1, + [135723] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4542), 1, - sym__entry_separator, - STATE(2190), 1, - aux_sym__types_body_repeat2, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(4620), 1, + sym_block, STATE(4944), 1, sym_comment, - [135731] = 4, - ACTIONS(105), 1, + [135736] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8680), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(4610), 1, + sym_block, STATE(4945), 1, sym_comment, - STATE(4967), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [135744] = 4, - ACTIONS(105), 1, + [135749] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8682), 1, - sym__newline, - ACTIONS(8684), 1, - sym__space, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(4783), 1, + sym_block, STATE(4946), 1, sym_comment, - [135757] = 4, - ACTIONS(3), 1, + [135762] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern, - ACTIONS(2104), 1, - anon_sym_LBRACE, + ACTIONS(8690), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4941), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(4947), 1, sym_comment, - [135770] = 4, - ACTIONS(3), 1, + [135775] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(4604), 1, - sym_block, + ACTIONS(2800), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2838), 1, + anon_sym_COLON2, STATE(4948), 1, sym_comment, - [135783] = 4, + [135788] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3484), 1, - sym__space, - STATE(1414), 1, - aux_sym_pipe_element_repeat1, + ACTIONS(8692), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4942), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(4949), 1, sym_comment, - [135796] = 4, - ACTIONS(3), 1, + [135801] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(4733), 1, - sym_block, + ACTIONS(8694), 1, + anon_sym_LPAREN2, + ACTIONS(8696), 1, + aux_sym__record_key_token1, STATE(4950), 1, sym_comment, - [135809] = 4, - ACTIONS(3), 1, + [135814] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1258), 1, - anon_sym_LBRACE, - ACTIONS(2632), 1, - sym__unquoted_pattern, + ACTIONS(8698), 1, + anon_sym_RBRACE, + ACTIONS(8700), 1, + sym__entry_separator, STATE(4951), 1, sym_comment, - [135822] = 4, + [135827] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1250), 1, - anon_sym_LBRACE, - ACTIONS(2632), 1, - sym__unquoted_pattern, + ACTIONS(1812), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8510), 1, + aux_sym__immediate_decimal_token5, STATE(4952), 1, sym_comment, - [135835] = 4, - ACTIONS(105), 1, + [135840] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3809), 1, - sym__entry_separator, - ACTIONS(8686), 1, - anon_sym_RBRACE, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(3293), 1, + sym_block, STATE(4953), 1, sym_comment, - [135848] = 4, + [135853] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6627), 1, - anon_sym_DOLLAR2, - ACTIONS(8689), 1, - anon_sym_RBRACK, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(4780), 1, + sym_block, STATE(4954), 1, sym_comment, - [135861] = 4, + [135866] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8691), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(8702), 1, + anon_sym_RBRACE, + ACTIONS(8704), 1, + sym__entry_separator, STATE(4955), 1, sym_comment, - STATE(4967), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [135874] = 4, + [135879] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2114), 1, + ACTIONS(8706), 1, + anon_sym_RBRACK, + ACTIONS(8708), 1, sym__entry_separator, - ACTIONS(2116), 1, - anon_sym_RBRACE, STATE(4956), 1, sym_comment, - [135887] = 4, + [135892] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8693), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(7942), 1, + anon_sym_RBRACK, + ACTIONS(7944), 1, + sym__entry_separator, STATE(4957), 1, sym_comment, - STATE(4967), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [135900] = 4, - ACTIONS(3), 1, + [135905] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(4819), 1, - sym_block, + ACTIONS(8710), 1, + anon_sym_RBRACK, + ACTIONS(8712), 1, + sym__entry_separator, STATE(4958), 1, sym_comment, - [135913] = 4, - ACTIONS(105), 1, + [135918] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8695), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(4781), 1, + sym_block, STATE(4959), 1, sym_comment, - STATE(4967), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [135926] = 4, + [135931] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, - STATE(4822), 1, + STATE(3288), 1, sym_block, STATE(4960), 1, sym_comment, - [135939] = 4, - ACTIONS(105), 1, + [135944] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8697), 1, - anon_sym_GT2, - ACTIONS(8699), 1, - sym__entry_separator, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(4624), 1, + sym_block, STATE(4961), 1, sym_comment, - [135952] = 4, - ACTIONS(105), 1, + [135957] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8701), 1, - anon_sym_RBRACE, - ACTIONS(8703), 1, - sym__entry_separator, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(4625), 1, + sym_block, STATE(4962), 1, sym_comment, - [135965] = 4, + [135970] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(4823), 1, + STATE(4628), 1, sym_block, STATE(4963), 1, sym_comment, - [135978] = 4, - ACTIONS(3), 1, + [135983] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2576), 1, - anon_sym_LBRACE, - ACTIONS(2578), 1, - sym__unquoted_pattern, + ACTIONS(4387), 1, + sym__entry_separator, + STATE(2062), 1, + aux_sym__types_body_repeat2, STATE(4964), 1, sym_comment, - [135991] = 4, + [135996] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8039), 1, - anon_sym_RBRACE, - ACTIONS(8041), 1, + ACTIONS(7381), 1, sym__entry_separator, + ACTIONS(8714), 1, + anon_sym_RBRACK, STATE(4965), 1, sym_comment, - [136004] = 4, + [136009] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5423), 1, - anon_sym_RBRACK, - ACTIONS(5425), 1, - sym__entry_separator, + ACTIONS(8716), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4966), 1, sym_comment, - [136017] = 3, - ACTIONS(105), 1, + STATE(5034), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [136022] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8705), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4967), 2, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(4630), 1, + sym_block, + STATE(4967), 1, sym_comment, - aux_sym__unquoted_in_record_with_expr_repeat1, - [136028] = 4, - ACTIONS(105), 1, + [136035] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8708), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(1736), 1, + anon_sym_LBRACE, + ACTIONS(2722), 1, + sym__unquoted_pattern, STATE(4968), 1, sym_comment, - STATE(5040), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [136041] = 4, + [136048] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_LPAREN2, + ACTIONS(910), 1, + anon_sym_LBRACE, + ACTIONS(1840), 1, + sym__unquoted_pattern, STATE(4969), 1, sym_comment, - STATE(5413), 1, - sym__expr_parenthesized_immediate, - [136054] = 4, + [136061] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8710), 1, - sym_identifier, - ACTIONS(8712), 1, - anon_sym_DOLLAR, + ACTIONS(1876), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8718), 1, + aux_sym__immediate_decimal_token5, STATE(4970), 1, sym_comment, - [136067] = 4, - ACTIONS(105), 1, + [136074] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8714), 1, - anon_sym_RBRACE, - ACTIONS(8716), 1, - sym__entry_separator, + ACTIONS(2608), 1, + anon_sym_LBRACE, + ACTIONS(2614), 1, + sym__unquoted_pattern, STATE(4971), 1, sym_comment, - [136080] = 4, - ACTIONS(3), 1, + [136087] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(4824), 1, - sym_block, + ACTIONS(8720), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4972), 1, sym_comment, - [136093] = 4, + STATE(5034), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [136100] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(914), 1, - anon_sym_COLON2, - ACTIONS(2786), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(5094), 1, + sym__entry_separator, + STATE(2442), 1, + aux_sym__types_body_repeat2, STATE(4973), 1, sym_comment, - [136106] = 4, - ACTIONS(105), 1, + [136113] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8718), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(4776), 1, + sym_block, STATE(4974), 1, sym_comment, - STATE(5006), 1, - aux_sym__unquoted_with_expr_repeat1, - [136119] = 4, - ACTIONS(3), 1, + [136126] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LPAREN2, STATE(4975), 1, sym_comment, - STATE(5283), 1, - sym__expr_parenthesized_immediate, - [136132] = 4, - ACTIONS(105), 1, + ACTIONS(2111), 2, + anon_sym_POUND_BANG, + sym__newline, + [136137] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8720), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(2109), 1, + sym__unquoted_pattern, + ACTIONS(2640), 1, + anon_sym_LBRACE, STATE(4976), 1, sym_comment, - STATE(5006), 1, - aux_sym__unquoted_with_expr_repeat1, - [136145] = 4, + [136150] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(2099), 1, anon_sym_LBRACE, - STATE(4588), 1, - sym_block, + ACTIONS(2109), 1, + sym__unquoted_pattern, STATE(4977), 1, sym_comment, - [136158] = 3, + [136163] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1802), 1, + anon_sym_LBRACE, + ACTIONS(1804), 1, + sym__unquoted_pattern, STATE(4978), 1, sym_comment, - ACTIONS(1557), 2, - sym__table_head_separator, - anon_sym_DOT2, - [136169] = 4, + [136176] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(4895), 1, - sym_block, + ACTIONS(8722), 1, + anon_sym_def, + ACTIONS(8724), 1, + anon_sym_extern, STATE(4979), 1, sym_comment, - [136182] = 4, - ACTIONS(3), 1, + [136189] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1921), 1, - anon_sym_LBRACE, - ACTIONS(1923), 1, - sym__unquoted_pattern, + ACTIONS(8726), 1, + anon_sym_RBRACE, + ACTIONS(8728), 1, + sym__entry_separator, STATE(4980), 1, sym_comment, - [136195] = 4, - ACTIONS(3), 1, + [136202] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(4846), 1, - sym_block, + ACTIONS(910), 1, + anon_sym_COLON2, + ACTIONS(2800), 1, + aux_sym_cmd_identifier_token2, STATE(4981), 1, sym_comment, - [136208] = 4, - ACTIONS(3), 1, + [136215] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(4589), 1, - sym_block, + ACTIONS(5407), 1, + anon_sym_RBRACK, + ACTIONS(5409), 1, + sym__entry_separator, STATE(4982), 1, sym_comment, - [136221] = 4, + [136228] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(2640), 1, + sym__entry_separator, + ACTIONS(2642), 1, + anon_sym_RBRACE, + STATE(4983), 1, + sym_comment, + [136241] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - STATE(4896), 1, - sym_block, - STATE(4983), 1, + ACTIONS(2598), 1, + sym__unquoted_pattern, + STATE(4984), 1, sym_comment, - [136234] = 4, + [136254] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(6290), 1, + ACTIONS(8730), 1, anon_sym_RBRACK, - ACTIONS(6292), 1, + ACTIONS(8732), 1, sym__entry_separator, - STATE(4984), 1, - sym_comment, - [136247] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(4847), 1, - sym_block, STATE(4985), 1, sym_comment, - [136260] = 4, + [136267] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8722), 1, + ACTIONS(1238), 1, anon_sym_RBRACE, - ACTIONS(8724), 1, + ACTIONS(1254), 1, sym__entry_separator, STATE(4986), 1, sym_comment, - [136273] = 4, + [136280] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8726), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(8734), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(4987), 1, sym_comment, - STATE(5044), 1, - aux_sym__unquoted_with_expr_repeat1, - [136286] = 4, + STATE(5052), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [136293] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(4848), 1, + STATE(4671), 1, sym_block, STATE(4988), 1, sym_comment, - [136299] = 4, + [136306] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8728), 1, - anon_sym_GT2, - ACTIONS(8730), 1, + ACTIONS(1246), 1, + anon_sym_RBRACE, + ACTIONS(1262), 1, sym__entry_separator, STATE(4989), 1, sym_comment, - [136312] = 4, - ACTIONS(105), 1, + [136319] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7908), 1, - anon_sym_RBRACK, - ACTIONS(7910), 1, - sym__entry_separator, STATE(4990), 1, sym_comment, - [136325] = 4, - ACTIONS(3), 1, + ACTIONS(1586), 2, + sym__table_head_separator, + anon_sym_DOT2, + [136330] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(4851), 1, - sym_block, + ACTIONS(8736), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(4991), 1, sym_comment, - [136338] = 4, + STATE(5052), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [136343] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2660), 1, + ACTIONS(4486), 1, sym__entry_separator, - ACTIONS(2662), 1, - anon_sym_RBRACE, + STATE(2204), 1, + aux_sym__types_body_repeat2, STATE(4992), 1, sym_comment, - [136351] = 4, - ACTIONS(105), 1, + [136356] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7369), 1, - sym__entry_separator, - ACTIONS(8732), 1, - anon_sym_RBRACK, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(4617), 1, + sym_block, STATE(4993), 1, sym_comment, - [136364] = 4, - ACTIONS(105), 1, + [136369] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7387), 1, - sym__entry_separator, - ACTIONS(8734), 1, - anon_sym_RBRACK, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(4612), 1, + sym_block, STATE(4994), 1, sym_comment, - [136377] = 4, + [136382] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, - STATE(4537), 1, + STATE(4921), 1, sym_block, STATE(4995), 1, sym_comment, - [136390] = 4, + [136395] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1790), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8575), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(4631), 1, + sym_block, STATE(4996), 1, sym_comment, - [136403] = 4, + [136408] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(4719), 1, + STATE(4633), 1, sym_block, STATE(4997), 1, sym_comment, - [136416] = 4, + [136421] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8736), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(8738), 1, + sym__newline, + ACTIONS(8740), 1, + sym__space, STATE(4998), 1, sym_comment, - STATE(5022), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [136429] = 3, + [136434] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(3618), 1, + sym_block, STATE(4999), 1, sym_comment, - ACTIONS(8738), 2, - anon_sym_RBRACK, - sym_hex_digit, - [136440] = 4, + [136447] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(4902), 1, - sym_block, + ACTIONS(7003), 1, + anon_sym_LPAREN2, STATE(5000), 1, sym_comment, - [136453] = 4, + STATE(5498), 1, + sym__expr_parenthesized_immediate, + [136460] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(2712), 1, anon_sym_LBRACE, - STATE(4363), 1, - sym_block, + ACTIONS(2718), 1, + sym__unquoted_pattern, STATE(5001), 1, sym_comment, - [136466] = 4, - ACTIONS(3), 1, + [136473] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(3322), 1, - sym_block, + ACTIONS(4810), 1, + sym__entry_separator, + STATE(2292), 1, + aux_sym__types_body_repeat2, STATE(5002), 1, sym_comment, - [136479] = 3, - ACTIONS(105), 1, + [136486] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(4923), 1, + sym_block, STATE(5003), 1, sym_comment, - ACTIONS(2126), 2, - anon_sym_POUND_BANG, - sym__newline, - [136490] = 4, - ACTIONS(3), 1, + [136499] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1868), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8740), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(8020), 1, + anon_sym_RBRACE, + ACTIONS(8022), 1, + sym__entry_separator, STATE(5004), 1, sym_comment, - [136503] = 4, + [136512] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8742), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(7991), 1, + anon_sym_RBRACE, + ACTIONS(7993), 1, + sym__entry_separator, STATE(5005), 1, sym_comment, - STATE(5051), 1, - aux_sym__unquoted_with_expr_repeat1, - [136516] = 3, + [136525] = 4, ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8742), 1, + anon_sym_RBRACE, ACTIONS(8744), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5006), 2, + sym__entry_separator, + STATE(5006), 1, sym_comment, - aux_sym__unquoted_with_expr_repeat1, - [136527] = 4, + [136538] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(4538), 1, + STATE(3470), 1, sym_block, STATE(5007), 1, sym_comment, - [136540] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(1624), 1, - sym__entry_separator, - STATE(1497), 1, - aux_sym__types_body_repeat2, - STATE(5008), 1, - sym_comment, - [136553] = 4, + [136551] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, - STATE(4512), 1, + STATE(4924), 1, sym_block, - STATE(5009), 1, + STATE(5008), 1, sym_comment, - [136566] = 4, + [136564] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4370), 1, + ACTIONS(8016), 1, + anon_sym_RBRACE, + ACTIONS(8018), 1, sym__entry_separator, - STATE(4889), 1, - aux_sym__types_body_repeat2, - STATE(5010), 1, + STATE(5009), 1, sym_comment, - [136579] = 4, + [136577] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8747), 1, + ACTIONS(8746), 1, anon_sym_DASH2, - STATE(5011), 1, + STATE(5010), 1, sym_comment, - STATE(5337), 1, + STATE(5510), 1, sym_param_short_flag, - [136592] = 4, + [136590] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8749), 1, + ACTIONS(7963), 1, anon_sym_RBRACE, - ACTIONS(8751), 1, + ACTIONS(7965), 1, sym__entry_separator, - STATE(5012), 1, + STATE(5011), 1, sym_comment, - [136605] = 4, + [136603] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4370), 1, + ACTIONS(2099), 1, sym__entry_separator, - STATE(2071), 1, - aux_sym__types_body_repeat2, + ACTIONS(2101), 1, + anon_sym_RBRACE, + STATE(5012), 1, + sym_comment, + [136616] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(5013), 1, sym_comment, - [136618] = 4, + ACTIONS(8674), 2, + anon_sym_GT2, + anon_sym_AT2, + [136627] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(4596), 1, - sym_block, STATE(5014), 1, sym_comment, - [136631] = 4, - ACTIONS(3), 1, + ACTIONS(1538), 2, + sym__table_head_separator, + anon_sym_DOT2, + [136638] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(4876), 1, - sym_block, + ACTIONS(7987), 1, + anon_sym_RBRACE, + ACTIONS(7989), 1, + sym__entry_separator, STATE(5015), 1, sym_comment, - [136644] = 4, + [136651] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8043), 1, - anon_sym_RBRACE, - ACTIONS(8045), 1, + ACTIONS(1618), 1, sym__entry_separator, + STATE(1497), 1, + aux_sym__types_body_repeat2, STATE(5016), 1, sym_comment, - [136657] = 4, + [136664] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8126), 1, - anon_sym_RBRACE, - ACTIONS(8128), 1, - sym__entry_separator, + ACTIONS(8748), 1, + aux_sym__unquoted_with_expr_token1, STATE(5017), 1, sym_comment, - [136670] = 4, + STATE(5081), 1, + aux_sym__unquoted_with_expr_repeat1, + [136677] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(4877), 1, + STATE(4675), 1, sym_block, STATE(5018), 1, sym_comment, - [136683] = 4, - ACTIONS(3), 1, + [136690] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(4540), 1, - sym_block, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(6603), 1, + anon_sym_RBRACK, STATE(5019), 1, sym_comment, - [136696] = 4, + [136703] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2104), 1, - sym__entry_separator, - ACTIONS(2106), 1, - anon_sym_RBRACE, + ACTIONS(8750), 1, + aux_sym__unquoted_with_expr_token1, STATE(5020), 1, sym_comment, - [136709] = 4, - ACTIONS(105), 1, + STATE(5082), 1, + aux_sym__unquoted_with_expr_repeat1, + [136716] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8753), 1, - anon_sym_RBRACE, - ACTIONS(8755), 1, - sym__entry_separator, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(4718), 1, + sym_block, STATE(5021), 1, sym_comment, - [136722] = 4, - ACTIONS(105), 1, + [136729] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8757), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(4717), 1, + sym_block, STATE(5022), 1, sym_comment, - STATE(5040), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [136735] = 4, - ACTIONS(105), 1, + [136742] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8136), 1, - anon_sym_RBRACE, - ACTIONS(8138), 1, - sym__entry_separator, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(4926), 1, + sym_block, STATE(5023), 1, sym_comment, - [136748] = 4, - ACTIONS(105), 1, + [136755] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8759), 1, - anon_sym_RBRACK, - ACTIONS(8761), 1, - sym__entry_separator, STATE(5024), 1, sym_comment, - [136761] = 4, - ACTIONS(3), 1, + ACTIONS(1534), 2, + sym__table_head_separator, + anon_sym_DOT2, + [136766] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(4597), 1, - sym_block, + ACTIONS(3486), 1, + sym__space, + STATE(1413), 1, + aux_sym_pipe_element_repeat1, STATE(5025), 1, sym_comment, - [136774] = 4, - ACTIONS(3), 1, + [136779] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(4726), 1, - sym_block, + ACTIONS(8752), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(5026), 1, sym_comment, - [136787] = 4, + STATE(5048), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [136792] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, - STATE(3351), 1, + STATE(4823), 1, sym_block, STATE(5027), 1, sym_comment, - [136800] = 4, + [136805] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(4598), 1, + STATE(4638), 1, sym_block, STATE(5028), 1, sym_comment, - [136813] = 3, + [136818] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(4696), 1, + sym_block, STATE(5029), 1, sym_comment, - ACTIONS(8763), 2, - sym__newline, - anon_sym_SEMI, - [136824] = 4, + [136831] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, - STATE(4541), 1, + STATE(4695), 1, sym_block, STATE(5030), 1, sym_comment, - [136837] = 4, + [136844] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, - STATE(4600), 1, + STATE(4694), 1, sym_block, STATE(5031), 1, sym_comment, - [136850] = 4, + [136857] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, - STATE(4727), 1, + STATE(4693), 1, sym_block, STATE(5032), 1, sym_comment, - [136863] = 4, - ACTIONS(105), 1, + [136870] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4809), 1, - sym__entry_separator, - STATE(2279), 1, - aux_sym__types_body_repeat2, + ACTIONS(1830), 1, + anon_sym_LPAREN2, STATE(5033), 1, sym_comment, - [136876] = 4, + STATE(5375), 1, + sym__expr_parenthesized_immediate, + [136883] = 3, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(8754), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5034), 2, + sym_comment, + aux_sym__unquoted_in_record_with_expr_repeat1, + [136894] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2676), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - ACTIONS(2686), 1, - sym__unquoted_pattern, - STATE(5034), 1, + STATE(4362), 1, + sym_block, + STATE(5035), 1, sym_comment, - [136889] = 4, + [136907] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5094), 1, + ACTIONS(2722), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7624), 1, sym__entry_separator, - STATE(2443), 1, - aux_sym__types_body_repeat2, - STATE(5035), 1, - sym_comment, - [136902] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6954), 1, - anon_sym_LPAREN2, STATE(5036), 1, sym_comment, - STATE(5400), 1, - sym__expr_parenthesized_immediate, - [136915] = 4, - ACTIONS(105), 1, + [136920] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8765), 1, - anon_sym_RBRACK, - ACTIONS(8767), 1, - sym__entry_separator, STATE(5037), 1, sym_comment, - [136928] = 4, - ACTIONS(105), 1, + ACTIONS(8757), 2, + anon_sym_RBRACK, + sym_hex_digit, + [136931] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2676), 1, - sym__entry_separator, - ACTIONS(2678), 1, - anon_sym_RBRACE, + ACTIONS(1636), 1, + sym__unquoted_pattern, + ACTIONS(2125), 1, + anon_sym_LBRACE, STATE(5038), 1, sym_comment, - [136941] = 4, - ACTIONS(105), 1, + [136944] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8769), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4955), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, STATE(5039), 1, sym_comment, - [136954] = 3, - ACTIONS(105), 1, + ACTIONS(8759), 2, + sym__newline, + anon_sym_SEMI, + [136955] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8771), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(5040), 2, + ACTIONS(1262), 1, + anon_sym_LBRACE, + ACTIONS(2638), 1, + sym__unquoted_pattern, + STATE(5040), 1, sym_comment, - aux_sym__unquoted_in_list_with_expr_repeat1, - [136965] = 4, + [136968] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8774), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4945), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(7383), 1, + sym__entry_separator, + ACTIONS(8761), 1, + anon_sym_RBRACK, STATE(5041), 1, sym_comment, - [136978] = 4, - ACTIONS(105), 1, + [136981] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8776), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4959), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(1254), 1, + anon_sym_LBRACE, + ACTIONS(2638), 1, + sym__unquoted_pattern, STATE(5042), 1, sym_comment, - [136991] = 4, - ACTIONS(105), 1, + [136994] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4832), 1, - sym__entry_separator, - STATE(2298), 1, - aux_sym__types_body_repeat2, + ACTIONS(8763), 1, + anon_sym_def, + ACTIONS(8765), 1, + anon_sym_extern, STATE(5043), 1, sym_comment, - [137004] = 4, + [137007] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8778), 1, + ACTIONS(8767), 1, aux_sym__unquoted_with_expr_token1, - STATE(5006), 1, + STATE(5044), 2, + sym_comment, aux_sym__unquoted_with_expr_repeat1, - STATE(5044), 1, + [137018] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6786), 1, + anon_sym_DOLLAR2, + ACTIONS(8770), 1, + anon_sym_RBRACK, + STATE(5045), 1, sym_comment, - [137017] = 4, + [137031] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(1697), 1, + sym__unquoted_pattern, + ACTIONS(2706), 1, anon_sym_LBRACE, - STATE(4752), 1, - sym_block, - STATE(5045), 1, + STATE(5046), 1, sym_comment, - [137030] = 4, + [137044] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8780), 1, + ACTIONS(8772), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(4957), 1, + STATE(5034), 1, aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(5046), 1, - sym_comment, - [137043] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8782), 1, - anon_sym_def, - ACTIONS(8784), 1, - anon_sym_extern, STATE(5047), 1, sym_comment, - [137056] = 4, + [137057] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8786), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4968), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(8774), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5034), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(5048), 1, sym_comment, - [137069] = 4, + [137070] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4370), 1, - sym__entry_separator, - STATE(2074), 1, - aux_sym__types_body_repeat2, + ACTIONS(8776), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5047), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(5049), 1, sym_comment, - [137082] = 4, + [137083] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2786), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2834), 1, - anon_sym_COLON2, + ACTIONS(6400), 1, + anon_sym_RBRACK, + ACTIONS(6402), 1, + sym__entry_separator, STATE(5050), 1, sym_comment, - [137095] = 4, + [137096] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8788), 1, + ACTIONS(8778), 1, aux_sym__unquoted_with_expr_token1, - STATE(5006), 1, + STATE(5044), 1, aux_sym__unquoted_with_expr_repeat1, STATE(5051), 1, sym_comment, - [137108] = 4, - ACTIONS(3), 1, + [137109] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(4594), 1, - sym_block, - STATE(5052), 1, + ACTIONS(8780), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(5052), 2, sym_comment, - [137121] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [137120] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(3648), 1, - sym_block, + ACTIONS(4387), 1, + sym__entry_separator, + STATE(4824), 1, + aux_sym__types_body_repeat2, STATE(5053), 1, sym_comment, - [137134] = 4, + [137133] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, - STATE(4720), 1, + STATE(4846), 1, sym_block, STATE(5054), 1, sym_comment, - [137147] = 4, + [137146] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(4785), 1, + STATE(4519), 1, sym_block, STATE(5055), 1, sym_comment, - [137160] = 4, + [137159] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(4595), 1, + STATE(4562), 1, sym_block, STATE(5056), 1, sym_comment, - [137173] = 4, + [137172] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(4786), 1, + STATE(4559), 1, sym_block, STATE(5057), 1, sym_comment, - [137186] = 4, + [137185] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(3595), 1, + STATE(4520), 1, sym_block, STATE(5058), 1, sym_comment, - [137199] = 4, + [137198] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(4388), 1, - sym__entry_separator, - STATE(2109), 1, - aux_sym__types_body_repeat2, + ACTIONS(8783), 1, + aux_sym__unquoted_with_expr_token1, STATE(5059), 1, sym_comment, - [137212] = 4, - ACTIONS(3), 1, + STATE(5060), 1, + aux_sym__unquoted_with_expr_repeat1, + [137211] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(4789), 1, - sym_block, + ACTIONS(8785), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5044), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(5060), 1, sym_comment, - [137225] = 4, + [137224] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACE, - STATE(3281), 1, - sym_block, + ACTIONS(5228), 1, + anon_sym_LPAREN2, STATE(5061), 1, sym_comment, - [137238] = 4, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(2674), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7652), 1, - sym__entry_separator, - STATE(5062), 1, - sym_comment, - [137251] = 4, + STATE(5332), 1, + sym__expr_parenthesized_immediate, + [137237] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(1874), 1, anon_sym_LBRACE, - STATE(4790), 1, - sym_block, - STATE(5063), 1, + ACTIONS(1876), 1, + sym__unquoted_pattern, + STATE(5062), 1, sym_comment, - [137264] = 4, + [137250] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8790), 1, + ACTIONS(8787), 1, aux_sym__unquoted_with_expr_token1, - STATE(5006), 1, + STATE(5051), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(5064), 1, + STATE(5063), 1, sym_comment, - [137277] = 4, + [137263] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(7934), 1, - anon_sym_RBRACE, - ACTIONS(7936), 1, + ACTIONS(3807), 1, sym__entry_separator, - STATE(5065), 1, + ACTIONS(8789), 1, + anon_sym_RBRACE, + STATE(5064), 1, sym_comment, - [137290] = 4, + [137276] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8792), 1, - anon_sym_def, - ACTIONS(8794), 1, - anon_sym_extern, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(3322), 1, + sym_block, + STATE(5065), 1, + sym_comment, + [137289] = 4, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(6042), 1, + sym__entry_separator, + ACTIONS(6705), 1, + anon_sym_GT2, STATE(5066), 1, sym_comment, - [137303] = 4, - ACTIONS(3), 1, + [137302] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2604), 1, - anon_sym_LBRACE, - ACTIONS(2610), 1, - sym__unquoted_pattern, + ACTIONS(6040), 1, + sym__entry_separator, + ACTIONS(6703), 1, + anon_sym_GT2, STATE(5067), 1, sym_comment, - [137316] = 4, + [137315] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8796), 1, + ACTIONS(8792), 1, aux_sym__unquoted_with_expr_token1, - STATE(4974), 1, + STATE(5044), 1, aux_sym__unquoted_with_expr_repeat1, STATE(5068), 1, sym_comment, - [137329] = 4, + [137328] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8798), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4976), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(8794), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4987), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, STATE(5069), 1, sym_comment, - [137342] = 3, - ACTIONS(3), 1, + [137341] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(8796), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5044), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(5070), 1, sym_comment, - ACTIONS(1563), 2, - sym__table_head_separator, - anon_sym_DOT2, - [137353] = 4, + [137354] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8800), 1, - anon_sym_RBRACK, - ACTIONS(8802), 1, + ACTIONS(2608), 1, sym__entry_separator, + ACTIONS(2610), 1, + anon_sym_RBRACE, STATE(5071), 1, sym_comment, - [137366] = 4, + [137367] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(4565), 1, - sym_block, + ACTIONS(8798), 1, + sym_identifier, + ACTIONS(8800), 1, + anon_sym_DOLLAR, STATE(5072), 1, sym_comment, - [137379] = 3, - ACTIONS(3), 1, + [137380] = 4, + ACTIONS(105), 1, anon_sym_POUND, + ACTIONS(1618), 1, + sym__entry_separator, + STATE(1508), 1, + aux_sym__types_body_repeat2, STATE(5073), 1, sym_comment, - ACTIONS(1567), 2, - sym__table_head_separator, - anon_sym_DOT2, - [137390] = 4, + [137393] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1624), 1, - sym__entry_separator, - STATE(1494), 1, - aux_sym__types_body_repeat2, + ACTIONS(8802), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4972), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(5074), 1, sym_comment, - [137403] = 4, - ACTIONS(3), 1, + [137406] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(4566), 1, - sym_block, + ACTIONS(8804), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4966), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(5075), 1, sym_comment, - [137416] = 4, + [137419] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(4568), 1, + STATE(4416), 1, sym_block, STATE(5076), 1, sym_comment, - [137429] = 4, - ACTIONS(3), 1, + [137432] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(4569), 1, - sym_block, + ACTIONS(8806), 1, + anon_sym_GT2, + ACTIONS(8808), 1, + sym__entry_separator, STATE(5077), 1, sym_comment, - [137442] = 4, + [137445] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(5976), 1, - sym__entry_separator, - ACTIONS(6635), 1, - anon_sym_GT2, + ACTIONS(8810), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4991), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, STATE(5078), 1, sym_comment, - [137455] = 4, + [137458] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8804), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5064), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(8812), 1, + anon_sym_RBRACE, + ACTIONS(8814), 1, + sym__entry_separator, STATE(5079), 1, sym_comment, - [137468] = 4, + [137471] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8806), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(7981), 1, + anon_sym_RBRACE, + ACTIONS(7983), 1, + sym__entry_separator, STATE(5080), 1, sym_comment, - STATE(5083), 1, - aux_sym__unquoted_with_expr_repeat1, - [137481] = 4, + [137484] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8808), 1, + ACTIONS(8816), 1, aux_sym__unquoted_with_expr_token1, + STATE(5044), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(5081), 1, sym_comment, - STATE(5087), 1, - aux_sym__unquoted_with_expr_repeat1, - [137494] = 4, + [137497] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8810), 1, + ACTIONS(8818), 1, aux_sym__unquoted_with_expr_token1, + STATE(5044), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(5082), 1, sym_comment, - STATE(5092), 1, - aux_sym__unquoted_with_expr_repeat1, - [137507] = 4, - ACTIONS(105), 1, + [137510] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8812), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5006), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(1945), 1, + anon_sym_LBRACE, + ACTIONS(1947), 1, + sym__unquoted_pattern, STATE(5083), 1, sym_comment, - [137520] = 4, - ACTIONS(105), 1, + [137523] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5476), 1, - sym__entry_separator, - ACTIONS(6539), 1, - anon_sym_RBRACK, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(4607), 1, + sym_block, STATE(5084), 1, sym_comment, - [137533] = 4, + [137536] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, - STATE(4488), 1, + STATE(4875), 1, sym_block, STATE(5085), 1, sym_comment, - [137546] = 4, + [137549] = 4, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2696), 1, + ACTIONS(4387), 1, sym__entry_separator, - ACTIONS(2698), 1, - anon_sym_RBRACE, + STATE(2140), 1, + aux_sym__types_body_repeat2, STATE(5086), 1, sym_comment, - [137559] = 4, - ACTIONS(105), 1, + [137562] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8814), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5006), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(4840), 1, + sym_block, STATE(5087), 1, sym_comment, - [137572] = 4, - ACTIONS(105), 1, + [137575] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2604), 1, - sym__entry_separator, - ACTIONS(2606), 1, - anon_sym_RBRACE, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(4807), 1, + sym_block, STATE(5088), 1, sym_comment, - [137585] = 4, - ACTIONS(105), 1, + [137588] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5982), 1, - sym__entry_separator, - ACTIONS(6637), 1, - anon_sym_GT2, + ACTIONS(3930), 1, + anon_sym_LBRACE, + STATE(4805), 1, + sym_block, STATE(5089), 1, sym_comment, - [137598] = 4, - ACTIONS(3), 1, + [137601] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2124), 1, - sym__unquoted_pattern, - ACTIONS(2696), 1, - anon_sym_LBRACE, + ACTIONS(4836), 1, + sym__entry_separator, + STATE(2297), 1, + aux_sym__types_body_repeat2, STATE(5090), 1, sym_comment, - [137611] = 4, - ACTIONS(3), 1, + [137614] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(4582), 1, - sym_block, + ACTIONS(2706), 1, + sym__entry_separator, + ACTIONS(2708), 1, + anon_sym_RBRACE, STATE(5091), 1, sym_comment, - [137624] = 4, - ACTIONS(105), 1, + [137627] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8816), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5006), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(6786), 1, + anon_sym_DOLLAR2, + ACTIONS(8820), 1, + anon_sym_RBRACK, STATE(5092), 1, sym_comment, - [137637] = 4, + [137640] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1774), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - ACTIONS(1776), 1, - sym__unquoted_pattern, + STATE(4363), 1, + sym_block, STATE(5093), 1, sym_comment, - [137650] = 4, - ACTIONS(105), 1, + [137653] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8035), 1, - anon_sym_RBRACE, - ACTIONS(8037), 1, - sym__entry_separator, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(4673), 1, + sym_block, STATE(5094), 1, sym_comment, - [137663] = 4, + [137666] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - sym__unquoted_pattern, - ACTIONS(2660), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, + STATE(4705), 1, + sym_block, STATE(5095), 1, sym_comment, - [137676] = 4, - ACTIONS(3), 1, + [137679] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2114), 1, - anon_sym_LBRACE, - ACTIONS(2124), 1, - sym__unquoted_pattern, + ACTIONS(2712), 1, + sym__entry_separator, + ACTIONS(2714), 1, + anon_sym_RBRACE, STATE(5096), 1, sym_comment, - [137689] = 4, + [137692] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(914), 1, + ACTIONS(3930), 1, anon_sym_LBRACE, - ACTIONS(1806), 1, - sym__unquoted_pattern, + STATE(4723), 1, + sym_block, STATE(5097), 1, sym_comment, - [137702] = 4, - ACTIONS(3), 1, + [137705] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(4478), 1, - sym_block, + ACTIONS(4369), 1, + sym__entry_separator, + STATE(2124), 1, + aux_sym__types_body_repeat2, STATE(5098), 1, sym_comment, - [137715] = 4, + [137718] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(4479), 1, + STATE(4661), 1, sym_block, STATE(5099), 1, sym_comment, - [137728] = 4, + [137731] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(4513), 1, + STATE(4676), 1, sym_block, STATE(5100), 1, sym_comment, - [137741] = 3, - ACTIONS(3), 1, + [137744] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8818), 1, - anon_sym_RPAREN, + ACTIONS(8822), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5068), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(5101), 1, sym_comment, - [137751] = 3, - ACTIONS(3), 1, + [137757] = 4, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8820), 1, - anon_sym_RBRACK, + ACTIONS(8824), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5070), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(5102), 1, sym_comment, - [137761] = 3, - ACTIONS(3), 1, + [137770] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8822), 1, - anon_sym_RPAREN, + ACTIONS(8826), 1, + aux_sym_cmd_identifier_token6, STATE(5103), 1, sym_comment, - [137771] = 3, + [137780] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8824), 1, - anon_sym_in, + ACTIONS(8828), 1, + anon_sym_DASH_GT, STATE(5104), 1, sym_comment, - [137781] = 3, + [137790] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5247), 1, - anon_sym_EQ2, + ACTIONS(8830), 1, + sym_identifier, STATE(5105), 1, sym_comment, - [137791] = 3, + [137800] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6515), 1, - anon_sym_EQ, + ACTIONS(8832), 1, + anon_sym_RPAREN, STATE(5106), 1, sym_comment, - [137801] = 3, + [137810] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8826), 1, - sym_raw_string_end, + ACTIONS(8834), 1, + anon_sym_RBRACK, STATE(5107), 1, sym_comment, - [137811] = 3, + [137820] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8828), 1, - sym_raw_string_end, + ACTIONS(8836), 1, + anon_sym_RPAREN, STATE(5108), 1, sym_comment, - [137821] = 3, - ACTIONS(3), 1, + [137830] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8830), 1, - anon_sym_GT2, + ACTIONS(8838), 1, + aux_sym_cmd_identifier_token6, STATE(5109), 1, sym_comment, - [137831] = 3, + [137840] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2686), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8840), 1, + sym_identifier, STATE(5110), 1, sym_comment, - [137841] = 3, - ACTIONS(105), 1, + [137850] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8832), 1, - sym__space, + ACTIONS(1840), 1, + sym__unquoted_pattern, STATE(5111), 1, sym_comment, - [137851] = 3, + [137860] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8834), 1, - anon_sym_RBRACK, + ACTIONS(8842), 1, + anon_sym_GT2, STATE(5112), 1, sym_comment, - [137861] = 3, - ACTIONS(105), 1, + [137870] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8836), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(8844), 1, + anon_sym_EQ, STATE(5113), 1, sym_comment, - [137871] = 3, + [137880] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8838), 1, - anon_sym_RBRACE, + ACTIONS(8846), 1, + sym_raw_string_end, STATE(5114), 1, sym_comment, - [137881] = 3, + [137890] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8840), 1, - anon_sym_GT2, + ACTIONS(7801), 1, + sym__unquoted_pattern, STATE(5115), 1, sym_comment, - [137891] = 3, + [137900] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8842), 1, - anon_sym_DQUOTE, + ACTIONS(8848), 1, + anon_sym_RBRACK, STATE(5116), 1, sym_comment, - [137901] = 3, + [137910] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8844), 1, - anon_sym_SQUOTE2, + ACTIONS(8850), 1, + sym_raw_string_end, STATE(5117), 1, sym_comment, - [137911] = 3, + [137920] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8846), 1, - anon_sym_BQUOTE2, + ACTIONS(8852), 1, + anon_sym_EQ, STATE(5118), 1, sym_comment, - [137921] = 3, + [137930] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8848), 1, - anon_sym_RPAREN, + ACTIONS(8854), 1, + anon_sym_RBRACE, STATE(5119), 1, sym_comment, - [137931] = 3, + [137940] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7331), 1, - sym__unquoted_pattern, + ACTIONS(8856), 1, + anon_sym_DQUOTE, STATE(5120), 1, sym_comment, - [137941] = 3, + [137950] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8850), 1, - sym_raw_string_end, + ACTIONS(8858), 1, + anon_sym_SQUOTE2, STATE(5121), 1, sym_comment, - [137951] = 3, + [137960] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8852), 1, - anon_sym_GT2, + ACTIONS(8860), 1, + anon_sym_BQUOTE2, STATE(5122), 1, sym_comment, - [137961] = 3, + [137970] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8854), 1, + ACTIONS(8862), 1, sym_raw_string_end, STATE(5123), 1, sym_comment, - [137971] = 3, + [137980] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5296), 1, - anon_sym_EQ2, + ACTIONS(8864), 1, + anon_sym_RBRACK, STATE(5124), 1, sym_comment, - [137981] = 3, + [137990] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8856), 1, - anon_sym_RBRACK, + ACTIONS(8866), 1, + anon_sym_RPAREN, STATE(5125), 1, sym_comment, - [137991] = 3, + [138000] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8858), 1, + ACTIONS(8868), 1, sym_raw_string_end, STATE(5126), 1, sym_comment, - [138001] = 3, + [138010] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8860), 1, - anon_sym_RBRACK, + ACTIONS(1697), 1, + sym__unquoted_pattern_in_record, STATE(5127), 1, sym_comment, - [138011] = 3, - ACTIONS(105), 1, + [138020] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8862), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(8870), 1, + anon_sym_RBRACK, STATE(5128), 1, sym_comment, - [138021] = 3, + [138030] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8864), 1, + ACTIONS(8872), 1, anon_sym_RBRACE, STATE(5129), 1, sym_comment, - [138031] = 3, - ACTIONS(105), 1, + [138040] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1915), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(8874), 1, + anon_sym_EQ, STATE(5130), 1, sym_comment, - [138041] = 3, + [138050] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8866), 1, + ACTIONS(8876), 1, anon_sym_DQUOTE, STATE(5131), 1, sym_comment, - [138051] = 3, + [138060] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8868), 1, + ACTIONS(8878), 1, anon_sym_SQUOTE2, STATE(5132), 1, sym_comment, - [138061] = 3, + [138070] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8870), 1, + ACTIONS(8880), 1, anon_sym_BQUOTE2, STATE(5133), 1, sym_comment, - [138071] = 3, + [138080] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8872), 1, + ACTIONS(8882), 1, anon_sym_RPAREN, STATE(5134), 1, sym_comment, - [138081] = 3, - ACTIONS(3), 1, + [138090] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8874), 1, - anon_sym_EQ, + ACTIONS(8884), 1, + aux_sym_cmd_identifier_token2, STATE(5135), 1, sym_comment, - [138091] = 3, + [138100] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2578), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8886), 1, + sym_raw_string_end, STATE(5136), 1, sym_comment, - [138101] = 3, - ACTIONS(3), 1, + [138110] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8876), 1, - anon_sym_RBRACK, + ACTIONS(8888), 1, + aux_sym_cmd_identifier_token2, STATE(5137), 1, sym_comment, - [138111] = 3, + [138120] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8878), 1, - sym_raw_string_end, + ACTIONS(8890), 1, + anon_sym_RBRACK, STATE(5138), 1, sym_comment, - [138121] = 3, + [138130] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8880), 1, - anon_sym_EQ, + ACTIONS(8892), 1, + anon_sym_RBRACE, STATE(5139), 1, sym_comment, - [138131] = 3, + [138140] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7818), 1, - sym__unquoted_pattern, + ACTIONS(8894), 1, + anon_sym_DQUOTE, STATE(5140), 1, sym_comment, - [138141] = 3, + [138150] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8882), 1, - anon_sym_RPAREN, + ACTIONS(8896), 1, + anon_sym_SQUOTE2, STATE(5141), 1, sym_comment, - [138151] = 3, + [138160] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8884), 1, - anon_sym_RBRACK, + ACTIONS(8898), 1, + anon_sym_BQUOTE2, STATE(5142), 1, sym_comment, - [138161] = 3, - ACTIONS(105), 1, + [138170] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2634), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(8900), 1, + anon_sym_RPAREN, STATE(5143), 1, sym_comment, - [138171] = 3, + [138180] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8886), 1, - anon_sym_DQUOTE, + ACTIONS(8902), 1, + anon_sym_RBRACK, STATE(5144), 1, sym_comment, - [138181] = 3, + [138190] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8888), 1, - anon_sym_SQUOTE2, + ACTIONS(8904), 1, + sym_raw_string_end, STATE(5145), 1, sym_comment, - [138191] = 3, + [138200] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8890), 1, - anon_sym_BQUOTE2, + ACTIONS(8906), 1, + anon_sym_RBRACK, STATE(5146), 1, sym_comment, - [138201] = 3, + [138210] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8908), 1, + anon_sym_RBRACK, STATE(5147), 1, sym_comment, - [138211] = 3, + [138220] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2632), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8910), 1, + anon_sym_DQUOTE, STATE(5148), 1, sym_comment, - [138221] = 3, + [138230] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8892), 1, - sym_raw_string_end, + ACTIONS(8912), 1, + anon_sym_SQUOTE2, STATE(5149), 1, sym_comment, - [138231] = 3, + [138240] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(317), 1, - anon_sym_RBRACE, + ACTIONS(8914), 1, + anon_sym_BQUOTE2, STATE(5150), 1, sym_comment, - [138241] = 3, + [138250] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2632), 1, - sym__unquoted_pattern, + ACTIONS(8916), 1, + anon_sym_RPAREN, STATE(5151), 1, sym_comment, - [138251] = 3, + [138260] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8894), 1, - anon_sym_GT2, + ACTIONS(8918), 1, + anon_sym_BQUOTE2, STATE(5152), 1, sym_comment, - [138261] = 3, + [138270] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8896), 1, - anon_sym_RBRACK, + ACTIONS(8920), 1, + sym_raw_string_end, STATE(5153), 1, sym_comment, - [138271] = 3, + [138280] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8898), 1, - anon_sym_RBRACE, + ACTIONS(8922), 1, + anon_sym_SQUOTE2, STATE(5154), 1, sym_comment, - [138281] = 3, + [138290] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(8924), 1, anon_sym_DQUOTE, STATE(5155), 1, sym_comment, - [138291] = 3, + [138300] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8902), 1, - anon_sym_SQUOTE2, + ACTIONS(8926), 1, + anon_sym_RBRACE, STATE(5156), 1, sym_comment, - [138301] = 3, + [138310] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8904), 1, - anon_sym_BQUOTE2, + ACTIONS(8928), 1, + anon_sym_RBRACK, STATE(5157), 1, sym_comment, - [138311] = 3, - ACTIONS(105), 1, + [138320] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1935), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(8930), 1, + sym_long_flag_identifier, STATE(5158), 1, sym_comment, - [138321] = 3, + [138330] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8906), 1, - sym_identifier, + ACTIONS(8932), 1, + anon_sym_DQUOTE, STATE(5159), 1, sym_comment, - [138331] = 3, + [138340] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8908), 1, - sym_raw_string_end, + ACTIONS(8934), 1, + anon_sym_SQUOTE2, STATE(5160), 1, sym_comment, - [138341] = 3, + [138350] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8910), 1, - sym_identifier, + ACTIONS(8936), 1, + anon_sym_BQUOTE2, STATE(5161), 1, sym_comment, - [138351] = 3, + [138360] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8912), 1, - anon_sym_PIPE, + ACTIONS(8938), 1, + anon_sym_RPAREN, STATE(5162), 1, sym_comment, - [138361] = 3, + [138370] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8914), 1, + ACTIONS(8940), 1, anon_sym_RBRACK, STATE(5163), 1, sym_comment, - [138371] = 3, + [138380] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8916), 1, - anon_sym_DQUOTE, + ACTIONS(8942), 1, + sym_raw_string_end, STATE(5164), 1, sym_comment, - [138381] = 3, + [138390] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8918), 1, - anon_sym_DQUOTE, + ACTIONS(8944), 1, + anon_sym_RBRACE, STATE(5165), 1, sym_comment, - [138391] = 3, + [138400] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8920), 1, - anon_sym_SQUOTE2, + ACTIONS(8946), 1, + sym__table_head_separator, STATE(5166), 1, sym_comment, - [138401] = 3, + [138410] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8922), 1, - anon_sym_BQUOTE2, + ACTIONS(8948), 1, + anon_sym_RBRACK, STATE(5167), 1, sym_comment, - [138411] = 3, + [138420] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8924), 1, - anon_sym_RPAREN, + ACTIONS(8950), 1, + anon_sym_RBRACK, STATE(5168), 1, sym_comment, - [138421] = 3, + [138430] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8926), 1, - anon_sym_RBRACK, + ACTIONS(8952), 1, + anon_sym_DQUOTE, STATE(5169), 1, sym_comment, - [138431] = 3, + [138440] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8928), 1, - sym_raw_string_end, + ACTIONS(8954), 1, + anon_sym_SQUOTE2, STATE(5170), 1, sym_comment, - [138441] = 3, + [138450] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8930), 1, - anon_sym_SQUOTE2, + ACTIONS(8956), 1, + anon_sym_BQUOTE2, STATE(5171), 1, sym_comment, - [138451] = 3, + [138460] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8932), 1, - anon_sym_DQUOTE, + ACTIONS(8958), 1, + sym_param_short_flag_identifier, STATE(5172), 1, sym_comment, - [138461] = 3, - ACTIONS(3), 1, + [138470] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8934), 1, - anon_sym_SQUOTE2, + ACTIONS(8960), 1, + aux_sym_cmd_identifier_token6, STATE(5173), 1, sym_comment, - [138471] = 3, + [138480] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8936), 1, - anon_sym_BQUOTE2, + ACTIONS(8962), 1, + sym_raw_string_end, STATE(5174), 1, sym_comment, - [138481] = 3, + [138490] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8938), 1, - anon_sym_BQUOTE2, + ACTIONS(8964), 1, + sym_raw_string_end, STATE(5175), 1, sym_comment, - [138491] = 3, + [138500] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2674), 1, - sym__unquoted_pattern, + ACTIONS(8966), 1, + anon_sym_DQUOTE, STATE(5176), 1, sym_comment, - [138501] = 3, + [138510] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8940), 1, - sym_raw_string_end, + ACTIONS(8968), 1, + anon_sym_SQUOTE2, STATE(5177), 1, sym_comment, - [138511] = 3, + [138520] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(309), 1, - anon_sym_RBRACE, + ACTIONS(8970), 1, + anon_sym_BQUOTE2, STATE(5178), 1, sym_comment, - [138521] = 3, + [138530] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8942), 1, - anon_sym_DQUOTE, + ACTIONS(8972), 1, + anon_sym_COLON2, STATE(5179), 1, sym_comment, - [138531] = 3, + [138540] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8944), 1, - anon_sym_SQUOTE2, + ACTIONS(8974), 1, + sym_identifier, STATE(5180), 1, sym_comment, - [138541] = 3, + [138550] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8946), 1, - anon_sym_BQUOTE2, + ACTIONS(8976), 1, + sym_raw_string_end, STATE(5181), 1, sym_comment, - [138551] = 3, - ACTIONS(105), 1, + [138560] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1915), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(8978), 1, + anon_sym_RPAREN, STATE(5182), 1, sym_comment, - [138561] = 3, + [138570] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8948), 1, - anon_sym_RBRACK, + ACTIONS(8980), 1, + anon_sym_DQUOTE, STATE(5183), 1, sym_comment, - [138571] = 3, + [138580] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8950), 1, - sym_raw_string_end, + ACTIONS(8982), 1, + anon_sym_SQUOTE2, STATE(5184), 1, sym_comment, - [138581] = 3, + [138590] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8952), 1, - anon_sym_RBRACK, + ACTIONS(8984), 1, + anon_sym_BQUOTE2, STATE(5185), 1, sym_comment, - [138591] = 3, - ACTIONS(3), 1, + [138600] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8954), 1, - anon_sym_DQUOTE, + ACTIONS(8986), 1, + aux_sym_cmd_identifier_token2, STATE(5186), 1, sym_comment, - [138601] = 3, + [138610] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_SQUOTE2, + ACTIONS(1738), 1, + anon_sym_COLON2, STATE(5187), 1, sym_comment, - [138611] = 3, + [138620] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8958), 1, - anon_sym_BQUOTE2, + ACTIONS(8988), 1, + sym_raw_string_end, STATE(5188), 1, sym_comment, - [138621] = 3, - ACTIONS(105), 1, + [138630] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8990), 1, + anon_sym_RBRACE, STATE(5189), 1, sym_comment, - [138631] = 3, + [138640] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8962), 1, - anon_sym_RBRACE, + ACTIONS(8992), 1, + anon_sym_DQUOTE, STATE(5190), 1, sym_comment, - [138641] = 3, + [138650] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8964), 1, - sym_raw_string_end, + ACTIONS(8994), 1, + anon_sym_SQUOTE2, STATE(5191), 1, sym_comment, - [138651] = 3, + [138660] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8266), 1, - anon_sym_EQ_GT, + ACTIONS(8996), 1, + anon_sym_BQUOTE2, STATE(5192), 1, sym_comment, - [138661] = 3, + [138670] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8966), 1, - anon_sym_DQUOTE, + ACTIONS(8998), 1, + anon_sym_RBRACK, STATE(5193), 1, sym_comment, - [138671] = 3, - ACTIONS(3), 1, + [138680] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8968), 1, - anon_sym_SQUOTE2, + ACTIONS(9000), 1, + aux_sym_cmd_identifier_token6, STATE(5194), 1, sym_comment, - [138681] = 3, + [138690] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8970), 1, - anon_sym_BQUOTE2, + ACTIONS(9002), 1, + sym_raw_string_end, STATE(5195), 1, sym_comment, - [138691] = 3, + [138700] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8972), 1, - anon_sym_GT2, + ACTIONS(9004), 1, + anon_sym_RPAREN, STATE(5196), 1, sym_comment, - [138701] = 3, + [138710] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8974), 1, + ACTIONS(9006), 1, anon_sym_DQUOTE, STATE(5197), 1, sym_comment, - [138711] = 3, + [138720] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8976), 1, - sym_raw_string_end, + ACTIONS(9008), 1, + anon_sym_SQUOTE2, STATE(5198), 1, sym_comment, - [138721] = 3, + [138730] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8978), 1, - anon_sym_SQUOTE2, + ACTIONS(9010), 1, + anon_sym_BQUOTE2, STATE(5199), 1, sym_comment, - [138731] = 3, + [138740] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8980), 1, - anon_sym_DQUOTE, + ACTIONS(9012), 1, + anon_sym_RBRACE, STATE(5200), 1, sym_comment, - [138741] = 3, + [138750] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8982), 1, - anon_sym_SQUOTE2, + ACTIONS(9014), 1, + anon_sym_RBRACE, STATE(5201), 1, sym_comment, - [138751] = 3, + [138760] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8984), 1, - anon_sym_BQUOTE2, + ACTIONS(9016), 1, + sym_raw_string_end, STATE(5202), 1, sym_comment, - [138761] = 3, + [138770] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8986), 1, - anon_sym_BQUOTE2, + ACTIONS(9018), 1, + anon_sym_RBRACE, STATE(5203), 1, sym_comment, - [138771] = 3, + [138780] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8988), 1, - sym_raw_string_end, + ACTIONS(9020), 1, + anon_sym_DQUOTE, STATE(5204), 1, sym_comment, - [138781] = 3, + [138790] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8990), 1, - sym_identifier, + ACTIONS(9022), 1, + anon_sym_SQUOTE2, STATE(5205), 1, sym_comment, - [138791] = 3, + [138800] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8992), 1, - anon_sym_DQUOTE, + ACTIONS(9024), 1, + anon_sym_BQUOTE2, STATE(5206), 1, sym_comment, - [138801] = 3, - ACTIONS(3), 1, + [138810] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8994), 1, - anon_sym_SQUOTE2, + ACTIONS(1902), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(5207), 1, sym_comment, - [138811] = 3, + [138820] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8996), 1, - anon_sym_BQUOTE2, + ACTIONS(9026), 1, + sym_raw_string_end, STATE(5208), 1, sym_comment, - [138821] = 3, + [138830] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8998), 1, - anon_sym_LBRACE, + ACTIONS(9028), 1, + anon_sym_RBRACK, STATE(5209), 1, sym_comment, - [138831] = 3, + [138840] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9000), 1, - sym_raw_string_end, + ACTIONS(9030), 1, + anon_sym_DQUOTE, STATE(5210), 1, sym_comment, - [138841] = 3, + [138850] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5462), 1, - anon_sym_EQ2, + ACTIONS(9032), 1, + anon_sym_SQUOTE2, STATE(5211), 1, sym_comment, - [138851] = 3, + [138860] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9002), 1, - anon_sym_DQUOTE, + ACTIONS(9034), 1, + anon_sym_BQUOTE2, STATE(5212), 1, sym_comment, - [138861] = 3, + [138870] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9004), 1, - anon_sym_SQUOTE2, + ACTIONS(9036), 1, + anon_sym_RBRACE, STATE(5213), 1, sym_comment, - [138871] = 3, + [138880] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9006), 1, - anon_sym_BQUOTE2, + ACTIONS(9038), 1, + sym_raw_string_end, STATE(5214), 1, sym_comment, - [138881] = 3, + [138890] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9008), 1, + ACTIONS(9040), 1, aux_sym_cmd_identifier_token6, STATE(5215), 1, sym_comment, - [138891] = 3, + [138900] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9010), 1, - sym_raw_string_content, + ACTIONS(9042), 1, + anon_sym_DQUOTE, STATE(5216), 1, sym_comment, - [138901] = 3, + [138910] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9012), 1, - anon_sym_EQ, + ACTIONS(9044), 1, + anon_sym_SQUOTE2, STATE(5217), 1, sym_comment, - [138911] = 3, + [138920] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9014), 1, - anon_sym_RBRACK, + ACTIONS(9046), 1, + anon_sym_BQUOTE2, STATE(5218), 1, sym_comment, - [138921] = 3, + [138930] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9016), 1, - anon_sym_RBRACE, + ACTIONS(9048), 1, + anon_sym_RPAREN, STATE(5219), 1, sym_comment, - [138931] = 3, + [138940] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2379), 1, - anon_sym_LBRACK2, + ACTIONS(9050), 1, + sym_raw_string_content, STATE(5220), 1, sym_comment, - [138941] = 3, - ACTIONS(105), 1, + [138950] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9018), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(9052), 1, + anon_sym_BQUOTE2, STATE(5221), 1, sym_comment, - [138951] = 3, - ACTIONS(105), 1, + [138960] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9020), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(9054), 1, + anon_sym_SQUOTE2, STATE(5222), 1, sym_comment, - [138961] = 3, + [138970] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5265), 1, - anon_sym_EQ2, + ACTIONS(9056), 1, + anon_sym_DQUOTE, STATE(5223), 1, sym_comment, - [138971] = 3, + [138980] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9022), 1, - anon_sym_RBRACE, + ACTIONS(2245), 1, + anon_sym_LBRACK2, STATE(5224), 1, sym_comment, - [138981] = 3, - ACTIONS(3), 1, + [138990] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9024), 1, - anon_sym_RPAREN, + ACTIONS(9058), 1, + aux_sym__str_single_quotes_token1, STATE(5225), 1, sym_comment, - [138991] = 3, - ACTIONS(3), 1, + [139000] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9026), 1, - anon_sym_RBRACE, + ACTIONS(9060), 1, + aux_sym__str_back_ticks_token1, STATE(5226), 1, sym_comment, - [139001] = 3, - ACTIONS(105), 1, + [139010] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9028), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9062), 1, + anon_sym_RBRACE, STATE(5227), 1, sym_comment, - [139011] = 3, + [139020] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7303), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9064), 1, + anon_sym_RBRACE, STATE(5228), 1, sym_comment, - [139021] = 3, + [139030] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6535), 1, - anon_sym_EQ, + ACTIONS(319), 1, + anon_sym_RBRACE, STATE(5229), 1, sym_comment, - [139031] = 3, + [139040] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8355), 1, - anon_sym_LBRACE, + ACTIONS(9066), 1, + anon_sym_RPAREN, STATE(5230), 1, sym_comment, - [139041] = 3, - ACTIONS(3), 1, + [139050] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9030), 1, - anon_sym_LBRACE, + ACTIONS(1910), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(5231), 1, sym_comment, - [139051] = 3, + [139060] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9032), 1, - anon_sym_RBRACE, + ACTIONS(9068), 1, + anon_sym_RPAREN, STATE(5232), 1, sym_comment, - [139061] = 3, + [139070] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9034), 1, + ACTIONS(9070), 1, anon_sym_RBRACK, STATE(5233), 1, sym_comment, - [139071] = 3, + [139080] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9036), 1, - anon_sym_RPAREN, + ACTIONS(8279), 1, + anon_sym_LBRACE, STATE(5234), 1, sym_comment, - [139081] = 3, + [139090] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9038), 1, - anon_sym_RBRACK, + ACTIONS(9072), 1, + anon_sym_LBRACE, STATE(5235), 1, sym_comment, - [139091] = 3, + [139100] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9040), 1, - anon_sym_RPAREN, + ACTIONS(9074), 1, + anon_sym_RBRACE, STATE(5236), 1, sym_comment, - [139101] = 3, + [139110] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9042), 1, - anon_sym_RPAREN, + ACTIONS(9076), 1, + anon_sym_RBRACK, STATE(5237), 1, sym_comment, - [139111] = 3, + [139120] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9044), 1, - anon_sym_RBRACK, + ACTIONS(5325), 1, + anon_sym_EQ2, STATE(5238), 1, sym_comment, - [139121] = 3, + [139130] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(409), 1, - ts_builtin_sym_end, + ACTIONS(2638), 1, + sym__unquoted_pattern, STATE(5239), 1, sym_comment, - [139131] = 3, + [139140] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9046), 1, - anon_sym_RBRACE, + ACTIONS(5313), 1, + anon_sym_EQ2, STATE(5240), 1, sym_comment, - [139141] = 3, + [139150] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9048), 1, - sym_identifier, + ACTIONS(9078), 1, + anon_sym_RPAREN, STATE(5241), 1, sym_comment, - [139151] = 3, - ACTIONS(105), 1, + [139160] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9050), 1, - sym__space, + ACTIONS(5088), 1, + sym__unquoted_pattern, STATE(5242), 1, sym_comment, - [139161] = 3, + [139170] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9052), 1, + ACTIONS(9080), 1, sym_raw_string_end, STATE(5243), 1, sym_comment, - [139171] = 3, - ACTIONS(105), 1, + [139180] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9054), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(9082), 1, + anon_sym_RBRACE, STATE(5244), 1, sym_comment, - [139181] = 3, - ACTIONS(3), 1, + [139190] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9056), 1, - anon_sym_EQ, + ACTIONS(9084), 1, + sym__space, STATE(5245), 1, sym_comment, - [139191] = 3, + [139200] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9058), 1, - anon_sym_RBRACK, + ACTIONS(303), 1, + anon_sym_RBRACE, STATE(5246), 1, sym_comment, - [139201] = 3, - ACTIONS(105), 1, + [139210] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9060), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9086), 1, + anon_sym_RBRACE, STATE(5247), 1, sym_comment, - [139211] = 3, - ACTIONS(105), 1, + [139220] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2986), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(5293), 1, + anon_sym_EQ2, STATE(5248), 1, sym_comment, - [139221] = 3, + [139230] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1935), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(9088), 1, + aux_sym_cmd_identifier_token2, STATE(5249), 1, sym_comment, - [139231] = 3, + [139240] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9062), 1, - anon_sym_RBRACK, + ACTIONS(9090), 1, + anon_sym_RPAREN, STATE(5250), 1, sym_comment, - [139241] = 3, + [139250] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9064), 1, - anon_sym_RBRACK, + ACTIONS(5287), 1, + anon_sym_EQ2, STATE(5251), 1, sym_comment, - [139251] = 3, + [139260] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9066), 1, - anon_sym_EQ, + ACTIONS(9092), 1, + anon_sym_RBRACE, STATE(5252), 1, sym_comment, - [139261] = 3, + [139270] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9068), 1, - anon_sym_EQ, + ACTIONS(9094), 1, + anon_sym_RBRACE, STATE(5253), 1, sym_comment, - [139271] = 3, + [139280] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4205), 1, - sym__unquoted_pattern, + ACTIONS(9096), 1, + anon_sym_RBRACK, STATE(5254), 1, sym_comment, - [139281] = 3, + [139290] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9070), 1, - sym_identifier, + ACTIONS(9098), 1, + anon_sym_EQ, STATE(5255), 1, sym_comment, - [139291] = 3, + [139300] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9072), 1, - sym_long_flag_identifier, + ACTIONS(1636), 1, + sym__unquoted_pattern, STATE(5256), 1, sym_comment, - [139301] = 3, + [139310] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6629), 1, - sym__unquoted_pattern_in_list, + ACTIONS(5305), 1, + anon_sym_EQ2, STATE(5257), 1, sym_comment, - [139311] = 3, - ACTIONS(3), 1, + [139320] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9074), 1, - sym_raw_string_end, + ACTIONS(9100), 1, + aux_sym_cmd_identifier_token6, STATE(5258), 1, sym_comment, - [139321] = 3, + [139330] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2664), 1, - sym__table_head_separator, + ACTIONS(9102), 1, + anon_sym_RPAREN, STATE(5259), 1, sym_comment, - [139331] = 3, + [139340] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9076), 1, - sym_param_short_flag_identifier, + ACTIONS(5327), 1, + anon_sym_EQ2, STATE(5260), 1, sym_comment, - [139341] = 3, + [139350] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9078), 1, - anon_sym_DASH_GT, + ACTIONS(9104), 1, + anon_sym_RBRACE, STATE(5261), 1, sym_comment, - [139351] = 3, + [139360] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9080), 1, - anon_sym_RBRACE, + ACTIONS(9106), 1, + anon_sym_DQUOTE, STATE(5262), 1, sym_comment, - [139361] = 3, + [139370] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9082), 1, - anon_sym_EQ, + ACTIONS(9108), 1, + anon_sym_RBRACE, STATE(5263), 1, sym_comment, - [139371] = 3, + [139380] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9084), 1, - anon_sym_GT2, + ACTIONS(9110), 1, + anon_sym_DASH_GT, STATE(5264), 1, sym_comment, - [139381] = 3, + [139390] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6819), 1, - anon_sym_EQ, + ACTIONS(9112), 1, + anon_sym_RBRACK, STATE(5265), 1, sym_comment, - [139391] = 3, + [139400] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5171), 1, - sym__unquoted_pattern, + ACTIONS(9114), 1, + anon_sym_EQ, STATE(5266), 1, sym_comment, - [139401] = 3, - ACTIONS(105), 1, + [139410] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9086), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(6477), 1, + anon_sym_EQ, STATE(5267), 1, sym_comment, - [139411] = 3, + [139420] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5308), 1, - anon_sym_EQ2, + ACTIONS(6877), 1, + anon_sym_EQ, STATE(5268), 1, sym_comment, - [139421] = 3, - ACTIONS(3), 1, + [139430] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9088), 1, - anon_sym_RBRACE, + ACTIONS(9116), 1, + aux_sym_cmd_identifier_token6, STATE(5269), 1, sym_comment, - [139431] = 3, + [139440] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9090), 1, - anon_sym_RBRACE, + ACTIONS(9118), 1, + anon_sym_SQUOTE2, STATE(5270), 1, sym_comment, - [139441] = 3, + [139450] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2124), 1, - sym__unquoted_pattern, + ACTIONS(9120), 1, + anon_sym_BQUOTE2, STATE(5271), 1, sym_comment, - [139451] = 3, + [139460] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9092), 1, - anon_sym_RPAREN, + ACTIONS(9122), 1, + anon_sym_BQUOTE2, STATE(5272), 1, sym_comment, - [139461] = 3, + [139470] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9094), 1, - anon_sym_RBRACK, + ACTIONS(9124), 1, + anon_sym_SQUOTE2, STATE(5273), 1, sym_comment, - [139471] = 3, - ACTIONS(3), 1, + [139480] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9096), 1, - anon_sym_RBRACE, + ACTIONS(1902), 1, + aux_sym__unquoted_with_expr_token1, STATE(5274), 1, sym_comment, - [139481] = 3, + [139490] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9098), 1, - anon_sym_LBRACE, + ACTIONS(9126), 1, + anon_sym_DQUOTE, STATE(5275), 1, sym_comment, - [139491] = 3, + [139500] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9100), 1, - anon_sym_RPAREN, + ACTIONS(9128), 1, + anon_sym_EQ, STATE(5276), 1, sym_comment, - [139501] = 3, + [139510] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9102), 1, + ACTIONS(9130), 1, anon_sym_RBRACE, STATE(5277), 1, sym_comment, - [139511] = 3, - ACTIONS(105), 1, + [139520] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9104), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(9132), 1, + anon_sym_RBRACE, STATE(5278), 1, sym_comment, - [139521] = 3, + [139530] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9106), 1, + ACTIONS(311), 1, anon_sym_RBRACE, STATE(5279), 1, sym_comment, - [139531] = 3, - ACTIONS(3), 1, + [139540] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9108), 1, - anon_sym_RPAREN, + ACTIONS(1910), 1, + aux_sym__unquoted_with_expr_token1, STATE(5280), 1, sym_comment, - [139541] = 3, + [139550] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(311), 1, - anon_sym_RBRACE, + ACTIONS(5535), 1, + anon_sym_EQ2, STATE(5281), 1, sym_comment, - [139551] = 3, - ACTIONS(3), 1, + [139560] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9110), 1, - anon_sym_RBRACK, + ACTIONS(9134), 1, + aux_sym_cmd_identifier_token6, STATE(5282), 1, sym_comment, - [139561] = 3, + [139570] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9112), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(9136), 1, + sym__space, STATE(5283), 1, sym_comment, - [139571] = 3, + [139580] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9114), 1, - anon_sym_RBRACE, + ACTIONS(9138), 1, + anon_sym_RPAREN, STATE(5284), 1, sym_comment, - [139581] = 3, - ACTIONS(105), 1, + [139590] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9116), 1, - aux_sym_shebang_token1, + ACTIONS(9140), 1, + anon_sym_RBRACK, STATE(5285), 1, sym_comment, - [139591] = 3, + [139600] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9118), 1, - anon_sym_RPAREN, + ACTIONS(9142), 1, + anon_sym_DQUOTE, STATE(5286), 1, sym_comment, - [139601] = 3, + [139610] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9120), 1, - anon_sym_DQUOTE, + ACTIONS(9144), 1, + anon_sym_SQUOTE2, STATE(5287), 1, sym_comment, - [139611] = 3, + [139620] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9122), 1, - anon_sym_RBRACK, + ACTIONS(5192), 1, + sym__unquoted_pattern, STATE(5288), 1, sym_comment, - [139621] = 3, + [139630] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9124), 1, - anon_sym_SQUOTE2, + ACTIONS(9146), 1, + anon_sym_BQUOTE2, STATE(5289), 1, sym_comment, - [139631] = 3, + [139640] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9126), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9148), 1, + aux_sym_shebang_token1, STATE(5290), 1, sym_comment, - [139641] = 3, + [139650] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(361), 1, - anon_sym_RPAREN2, + ACTIONS(9150), 1, + ts_builtin_sym_end, STATE(5291), 1, sym_comment, - [139651] = 3, + [139660] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9128), 1, - anon_sym_BQUOTE2, + ACTIONS(1947), 1, + sym__unquoted_pattern_in_record, STATE(5292), 1, sym_comment, - [139661] = 3, - ACTIONS(3), 1, + [139670] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9130), 1, - anon_sym_RBRACE, + ACTIONS(9152), 1, + aux_sym_cmd_identifier_token6, STATE(5293), 1, sym_comment, - [139671] = 3, + [139680] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5292), 1, - anon_sym_EQ2, + ACTIONS(9154), 1, + sym_raw_string_end, STATE(5294), 1, sym_comment, - [139681] = 3, + [139690] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9132), 1, - sym_raw_string_end, + ACTIONS(1876), 1, + sym__unquoted_pattern_in_record, STATE(5295), 1, sym_comment, - [139691] = 3, + [139700] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9134), 1, + ACTIONS(9156), 1, aux_sym_cmd_identifier_token6, STATE(5296), 1, sym_comment, - [139701] = 3, + [139710] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9136), 1, - anon_sym_RBRACE, + ACTIONS(9158), 1, + anon_sym_EQ, STATE(5297), 1, sym_comment, - [139711] = 3, + [139720] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9138), 1, - anon_sym_LPAREN2, + ACTIONS(9160), 1, + anon_sym_EQ, STATE(5298), 1, sym_comment, - [139721] = 3, + [139730] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9140), 1, - anon_sym_EQ, + ACTIONS(9162), 1, + anon_sym_BQUOTE2, STATE(5299), 1, sym_comment, - [139731] = 3, + [139740] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(315), 1, - anon_sym_RBRACE, + ACTIONS(9164), 1, + anon_sym_SQUOTE2, STATE(5300), 1, sym_comment, - [139741] = 3, - ACTIONS(3), 1, + [139750] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9142), 1, - anon_sym_RBRACK, + ACTIONS(9166), 1, + aux_sym_cmd_identifier_token2, STATE(5301), 1, sym_comment, - [139751] = 3, + [139760] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9144), 1, - anon_sym_RBRACE, + ACTIONS(9168), 1, + anon_sym_DQUOTE, STATE(5302), 1, sym_comment, - [139761] = 3, + [139770] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1806), 1, - sym__unquoted_pattern, + ACTIONS(6539), 1, + anon_sym_EQ, STATE(5303), 1, sym_comment, - [139771] = 3, + [139780] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9146), 1, - anon_sym_LBRACE, + ACTIONS(9170), 1, + anon_sym_RPAREN2, STATE(5304), 1, sym_comment, - [139781] = 3, + [139790] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9148), 1, - anon_sym_RBRACE, + ACTIONS(2838), 1, + anon_sym_COLON2, STATE(5305), 1, sym_comment, - [139791] = 3, - ACTIONS(105), 1, + [139800] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8676), 1, - aux_sym__record_key_token1, + ACTIONS(9172), 1, + anon_sym_RBRACE, STATE(5306), 1, sym_comment, - [139801] = 3, - ACTIONS(3), 1, + [139810] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9150), 1, - anon_sym_RPAREN, + ACTIONS(9174), 1, + aux_sym_cmd_identifier_token6, STATE(5307), 1, sym_comment, - [139811] = 3, + [139820] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9146), 1, - anon_sym_LBRACE, + ACTIONS(9176), 1, + anon_sym_RBRACE, STATE(5308), 1, sym_comment, - [139821] = 3, + [139830] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9152), 1, - anon_sym_DQUOTE, + ACTIONS(9178), 1, + anon_sym_RPAREN, STATE(5309), 1, sym_comment, - [139831] = 3, - ACTIONS(105), 1, + [139840] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9154), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(1804), 1, + sym__unquoted_pattern_in_record, STATE(5310), 1, sym_comment, - [139841] = 3, + [139850] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, - anon_sym_RPAREN, + ACTIONS(9180), 1, + anon_sym_RBRACE, STATE(5311), 1, sym_comment, - [139851] = 3, + [139860] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9158), 1, + ACTIONS(9182), 1, anon_sym_RBRACE, STATE(5312), 1, sym_comment, - [139861] = 3, + [139870] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9160), 1, - anon_sym_RBRACE, + ACTIONS(9184), 1, + anon_sym_RBRACK, STATE(5313), 1, sym_comment, - [139871] = 3, + [139880] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9162), 1, - anon_sym_SQUOTE2, + ACTIONS(305), 1, + anon_sym_RBRACE, STATE(5314), 1, sym_comment, - [139881] = 3, - ACTIONS(3), 1, + [139890] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9164), 1, - anon_sym_GT2, + ACTIONS(8696), 1, + aux_sym__record_key_token1, STATE(5315), 1, sym_comment, - [139891] = 3, + [139900] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8802), 1, + ACTIONS(9186), 1, anon_sym_LBRACE, STATE(5316), 1, sym_comment, - [139901] = 3, + [139910] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9166), 1, - anon_sym_DASH_GT, + ACTIONS(9186), 1, + anon_sym_LBRACE, STATE(5317), 1, sym_comment, - [139911] = 3, - ACTIONS(3), 1, + [139920] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9168), 1, - sym_identifier, + ACTIONS(9188), 1, + aux_sym_cmd_identifier_token6, STATE(5318), 1, sym_comment, - [139921] = 3, - ACTIONS(3), 1, + [139930] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1776), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9190), 1, + aux_sym_cmd_identifier_token6, STATE(5319), 1, sym_comment, - [139931] = 3, + [139940] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9170), 1, - anon_sym_RBRACK, + ACTIONS(9192), 1, + anon_sym_BQUOTE2, STATE(5320), 1, sym_comment, - [139941] = 3, - ACTIONS(105), 1, + [139950] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9172), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(9194), 1, + anon_sym_SQUOTE2, STATE(5321), 1, sym_comment, - [139951] = 3, + [139960] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9174), 1, - anon_sym_RPAREN, + ACTIONS(9196), 1, + anon_sym_RBRACE, STATE(5322), 1, sym_comment, - [139961] = 3, + [139970] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9176), 1, + ACTIONS(9198), 1, anon_sym_DQUOTE, STATE(5323), 1, sym_comment, - [139971] = 3, + [139980] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9178), 1, - anon_sym_SQUOTE2, + ACTIONS(9200), 1, + anon_sym_RBRACE, STATE(5324), 1, sym_comment, - [139981] = 3, + [139990] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9180), 1, - anon_sym_BQUOTE2, + ACTIONS(9202), 1, + anon_sym_RBRACK, STATE(5325), 1, sym_comment, - [139991] = 3, + [140000] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9182), 1, - anon_sym_COLON2, + ACTIONS(301), 1, + anon_sym_RBRACE, STATE(5326), 1, sym_comment, - [140001] = 3, + [140010] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9184), 1, - anon_sym_EQ_GT, + ACTIONS(9204), 1, + anon_sym_RBRACE, STATE(5327), 1, sym_comment, - [140011] = 3, + [140020] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9186), 1, - anon_sym_RBRACE, + ACTIONS(9206), 1, + anon_sym_RPAREN, STATE(5328), 1, sym_comment, - [140021] = 3, - ACTIONS(3), 1, + [140030] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(303), 1, - anon_sym_RBRACE, + ACTIONS(2690), 1, + aux_sym_cmd_identifier_token2, STATE(5329), 1, sym_comment, - [140031] = 3, + [140040] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8199), 1, - anon_sym_LBRACE, + ACTIONS(6473), 1, + anon_sym_EQ, STATE(5330), 1, sym_comment, - [140041] = 3, + [140050] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1868), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9208), 1, + anon_sym_RPAREN, STATE(5331), 1, sym_comment, - [140051] = 3, - ACTIONS(3), 1, + [140060] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9188), 1, - sym_raw_string_end, + ACTIONS(9210), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(5332), 1, sym_comment, - [140061] = 3, + [140070] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9190), 1, - anon_sym_RBRACE, + ACTIONS(9212), 1, + anon_sym_RBRACK, STATE(5333), 1, sym_comment, - [140071] = 3, + [140080] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9192), 1, - anon_sym_BQUOTE2, + ACTIONS(9214), 1, + anon_sym_RPAREN, STATE(5334), 1, sym_comment, - [140081] = 3, - ACTIONS(105), 1, + [140090] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9194), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9216), 1, + anon_sym_RBRACK, STATE(5335), 1, sym_comment, - [140091] = 3, - ACTIONS(3), 1, + [140100] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9196), 1, - anon_sym_EQ, + ACTIONS(1902), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(5336), 1, sym_comment, - [140101] = 3, + [140110] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9198), 1, - anon_sym_RPAREN, + ACTIONS(7335), 1, + sym__unquoted_pattern, STATE(5337), 1, sym_comment, - [140111] = 3, + [140120] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9200), 1, - anon_sym_DQUOTE, + ACTIONS(9218), 1, + anon_sym_RBRACK, STATE(5338), 1, sym_comment, - [140121] = 3, - ACTIONS(3), 1, + [140130] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9202), 1, - anon_sym_SQUOTE2, + ACTIONS(1910), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(5339), 1, sym_comment, - [140131] = 3, + [140140] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9204), 1, - anon_sym_BQUOTE2, + ACTIONS(2109), 1, + sym__unquoted_pattern, STATE(5340), 1, sym_comment, - [140141] = 3, + [140150] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2610), 1, - sym__unquoted_pattern, + ACTIONS(9220), 1, + sym_raw_string_end, STATE(5341), 1, sym_comment, - [140151] = 3, + [140160] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1923), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9222), 1, + anon_sym_RBRACK, STATE(5342), 1, sym_comment, - [140161] = 3, + [140170] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9206), 1, - anon_sym_EQ, + ACTIONS(9224), 1, + anon_sym_RBRACK, STATE(5343), 1, sym_comment, - [140171] = 3, + [140180] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9208), 1, - anon_sym_GT2, + ACTIONS(9226), 1, + anon_sym_RBRACK, STATE(5344), 1, sym_comment, - [140181] = 3, - ACTIONS(3), 1, + [140190] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9210), 1, - anon_sym_RBRACK, + ACTIONS(2800), 1, + aux_sym_cmd_identifier_token2, STATE(5345), 1, sym_comment, - [140191] = 3, + [140200] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6891), 1, - anon_sym_EQ, + ACTIONS(9228), 1, + anon_sym_RBRACE, STATE(5346), 1, sym_comment, - [140201] = 3, + [140210] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9212), 1, - anon_sym_RPAREN, + ACTIONS(9230), 1, + anon_sym_GT2, STATE(5347), 1, sym_comment, - [140211] = 3, + [140220] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7759), 1, - sym__unquoted_pattern, + ACTIONS(9232), 1, + anon_sym_GT2, STATE(5348), 1, sym_comment, - [140221] = 3, + [140230] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(319), 1, - anon_sym_RBRACE, + ACTIONS(9234), 1, + anon_sym_GT2, STATE(5349), 1, sym_comment, - [140231] = 3, + [140240] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9214), 1, - anon_sym_GT2, + ACTIONS(9236), 1, + anon_sym_RBRACK, STATE(5350), 1, sym_comment, - [140241] = 3, + [140250] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9216), 1, - anon_sym_RBRACK, + ACTIONS(1904), 1, + sym__table_head_separator, STATE(5351), 1, sym_comment, - [140251] = 3, + [140260] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9218), 1, - anon_sym_RBRACK, + ACTIONS(9238), 1, + anon_sym_GT2, STATE(5352), 1, sym_comment, - [140261] = 3, + [140270] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9220), 1, - anon_sym_RBRACE, + ACTIONS(9240), 1, + anon_sym_EQ_GT, STATE(5353), 1, sym_comment, - [140271] = 3, + [140280] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9222), 1, - anon_sym_RBRACE, + ACTIONS(9242), 1, + anon_sym_LT, STATE(5354), 1, sym_comment, - [140281] = 3, + [140290] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9224), 1, + ACTIONS(9244), 1, anon_sym_RBRACK, STATE(5355), 1, sym_comment, - [140291] = 3, + [140300] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9226), 1, - anon_sym_RBRACK, + ACTIONS(9246), 1, + anon_sym_RBRACE, STATE(5356), 1, sym_comment, - [140301] = 3, + [140310] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9228), 1, + ACTIONS(9248), 1, anon_sym_RBRACE, STATE(5357), 1, sym_comment, - [140311] = 3, - ACTIONS(105), 1, + [140320] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9230), 1, - aux_sym_shebang_token1, + ACTIONS(9250), 1, + anon_sym_RPAREN, STATE(5358), 1, sym_comment, - [140321] = 3, + [140330] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9232), 1, - anon_sym_RPAREN, + ACTIONS(9252), 1, + anon_sym_RBRACK, STATE(5359), 1, sym_comment, - [140331] = 3, + [140340] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9234), 1, - anon_sym_DQUOTE, + ACTIONS(365), 1, + anon_sym_RPAREN2, STATE(5360), 1, sym_comment, - [140341] = 3, + [140350] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9236), 1, - anon_sym_EQ, + ACTIONS(307), 1, + anon_sym_RBRACE, STATE(5361), 1, sym_comment, - [140351] = 3, + [140360] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9238), 1, - anon_sym_SQUOTE2, + ACTIONS(9254), 1, + anon_sym_RPAREN, STATE(5362), 1, sym_comment, - [140361] = 3, + [140370] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9240), 1, - sym_raw_string_content, + ACTIONS(9256), 1, + anon_sym_RPAREN, STATE(5363), 1, sym_comment, - [140371] = 3, + [140380] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8120), 1, - anon_sym_LBRACK2, + ACTIONS(2109), 1, + sym__unquoted_pattern_in_record, STATE(5364), 1, sym_comment, - [140381] = 3, - ACTIONS(105), 1, + [140390] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9242), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(9258), 1, + anon_sym_RBRACE, STATE(5365), 1, sym_comment, - [140391] = 3, - ACTIONS(105), 1, + [140400] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9244), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(9260), 1, + sym_raw_string_content, STATE(5366), 1, sym_comment, - [140401] = 3, + [140410] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9246), 1, - anon_sym_BQUOTE2, + ACTIONS(8028), 1, + anon_sym_LBRACK2, STATE(5367), 1, sym_comment, - [140411] = 3, - ACTIONS(3), 1, + [140420] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9248), 1, - anon_sym_RBRACE, + ACTIONS(9262), 1, + aux_sym__str_single_quotes_token1, STATE(5368), 1, sym_comment, - [140421] = 3, + [140430] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9250), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9264), 1, + aux_sym__str_back_ticks_token1, STATE(5369), 1, sym_comment, - [140431] = 3, - ACTIONS(105), 1, + [140440] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9252), 1, - sym__space, + ACTIONS(2678), 1, + sym__table_head_separator, STATE(5370), 1, sym_comment, - [140441] = 3, + [140450] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9254), 1, - anon_sym_EQ, + ACTIONS(9266), 1, + anon_sym_RBRACE, STATE(5371), 1, sym_comment, - [140451] = 3, + [140460] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9256), 1, - anon_sym_RPAREN, + ACTIONS(9268), 1, + anon_sym_RBRACK, STATE(5372), 1, sym_comment, - [140461] = 3, + [140470] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9258), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9270), 1, + sym__space, STATE(5373), 1, sym_comment, - [140471] = 3, + [140480] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(301), 1, - anon_sym_RBRACE, + ACTIONS(9272), 1, + sym_identifier, STATE(5374), 1, sym_comment, - [140481] = 3, - ACTIONS(3), 1, + [140490] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1901), 1, - sym__table_head_separator, + ACTIONS(9274), 1, + aux_sym__unquoted_with_expr_token1, STATE(5375), 1, sym_comment, - [140491] = 3, + [140500] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6531), 1, + ACTIONS(6721), 1, anon_sym_EQ, STATE(5376), 1, sym_comment, - [140501] = 3, + [140510] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9260), 1, - ts_builtin_sym_end, + ACTIONS(9276), 1, + anon_sym_LBRACE, STATE(5377), 1, sym_comment, - [140511] = 3, + [140520] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9262), 1, - anon_sym_RBRACK, + ACTIONS(9278), 1, + anon_sym_EQ, STATE(5378), 1, sym_comment, - [140521] = 3, + [140530] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9264), 1, - anon_sym_RBRACE, + ACTIONS(8214), 1, + anon_sym_LBRACE, STATE(5379), 1, sym_comment, - [140531] = 3, - ACTIONS(3), 1, + [140540] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(2834), 1, - anon_sym_COLON2, + ACTIONS(9280), 1, + aux_sym_cmd_identifier_token6, STATE(5380), 1, sym_comment, - [140541] = 3, + [140550] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2610), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9282), 1, + anon_sym_RPAREN, STATE(5381), 1, sym_comment, - [140551] = 3, + [140560] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9266), 1, + ACTIONS(9284), 1, anon_sym_RBRACE, STATE(5382), 1, sym_comment, - [140561] = 3, + [140570] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9268), 1, - anon_sym_RBRACE, + ACTIONS(9286), 1, + anon_sym_BQUOTE2, STATE(5383), 1, sym_comment, - [140571] = 3, + [140580] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9270), 1, - anon_sym_RBRACE, + ACTIONS(9288), 1, + anon_sym_SQUOTE2, STATE(5384), 1, sym_comment, - [140581] = 3, + [140590] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9272), 1, - anon_sym_RPAREN, + ACTIONS(9290), 1, + anon_sym_DQUOTE, STATE(5385), 1, sym_comment, - [140591] = 3, + [140600] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9274), 1, - anon_sym_LBRACE, + ACTIONS(9292), 1, + anon_sym_RBRACE, STATE(5386), 1, sym_comment, - [140601] = 3, + [140610] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9274), 1, - anon_sym_LBRACE, + ACTIONS(9294), 1, + anon_sym_in, STATE(5387), 1, sym_comment, - [140611] = 3, + [140620] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9276), 1, - anon_sym_RPAREN, + ACTIONS(293), 1, + anon_sym_RBRACE, STATE(5388), 1, sym_comment, - [140621] = 3, + [140630] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9278), 1, - anon_sym_RBRACK, + ACTIONS(9296), 1, + anon_sym_RBRACE, STATE(5389), 1, sym_comment, - [140631] = 3, + [140640] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9280), 1, - anon_sym_LBRACE, + ACTIONS(9298), 1, + anon_sym_RPAREN, STATE(5390), 1, sym_comment, - [140641] = 3, + [140650] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2124), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9300), 1, + anon_sym_RBRACE, STATE(5391), 1, sym_comment, - [140651] = 3, + [140660] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9282), 1, - anon_sym_RBRACE, + ACTIONS(2722), 1, + sym__unquoted_pattern, STATE(5392), 1, sym_comment, - [140661] = 3, + [140670] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9284), 1, + ACTIONS(9302), 1, anon_sym_RBRACK, STATE(5393), 1, sym_comment, - [140671] = 3, + [140680] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9286), 1, - anon_sym_RBRACK, + ACTIONS(9304), 1, + anon_sym_RPAREN, STATE(5394), 1, sym_comment, - [140681] = 3, - ACTIONS(105), 1, + [140690] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9288), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(7787), 1, + sym__unquoted_pattern, STATE(5395), 1, sym_comment, - [140691] = 3, - ACTIONS(105), 1, + [140700] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9290), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(2614), 1, + sym__unquoted_pattern, STATE(5396), 1, sym_comment, - [140701] = 3, + [140710] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9292), 1, - anon_sym_RBRACE, + ACTIONS(4187), 1, + sym__unquoted_pattern, STATE(5397), 1, sym_comment, - [140711] = 3, + [140720] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(365), 1, - anon_sym_RPAREN2, + ACTIONS(9306), 1, + anon_sym_EQ, STATE(5398), 1, sym_comment, - [140721] = 3, + [140730] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9294), 1, - anon_sym_EQ_GT, + ACTIONS(9308), 1, + sym_raw_string_end, STATE(5399), 1, sym_comment, - [140731] = 3, - ACTIONS(105), 1, + [140740] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9296), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(9310), 1, + anon_sym_RPAREN, STATE(5400), 1, sym_comment, - [140741] = 3, + [140750] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym_raw_string_content, + ACTIONS(9312), 1, + anon_sym_RBRACE, STATE(5401), 1, sym_comment, - [140751] = 3, + [140760] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2674), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9314), 1, + anon_sym_RBRACE, STATE(5402), 1, sym_comment, - [140761] = 3, - ACTIONS(105), 1, + [140770] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9300), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(9316), 1, + anon_sym_RPAREN, STATE(5403), 1, sym_comment, - [140771] = 3, + [140780] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9302), 1, - anon_sym_RBRACE, + ACTIONS(9318), 1, + anon_sym_GT2, STATE(5404), 1, sym_comment, - [140781] = 3, + [140790] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9304), 1, - anon_sym_RPAREN, + ACTIONS(9320), 1, + sym_identifier, STATE(5405), 1, sym_comment, - [140791] = 3, - ACTIONS(3), 1, + [140800] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9306), 1, - sym_raw_string_content, + ACTIONS(9322), 1, + aux_sym_cmd_identifier_token6, STATE(5406), 1, sym_comment, - [140801] = 3, + [140810] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6340), 1, - anon_sym_LBRACK2, + ACTIONS(9324), 1, + anon_sym_EQ, STATE(5407), 1, sym_comment, - [140811] = 3, - ACTIONS(105), 1, + [140820] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9308), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(6549), 1, + anon_sym_EQ, STATE(5408), 1, sym_comment, - [140821] = 3, - ACTIONS(105), 1, + [140830] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9310), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(9326), 1, + sym_raw_string_content, STATE(5409), 1, sym_comment, - [140831] = 3, + [140840] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9312), 1, - anon_sym_RPAREN, + ACTIONS(6388), 1, + anon_sym_LBRACK2, STATE(5410), 1, sym_comment, - [140841] = 3, + [140850] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9314), 1, - sym__space, + ACTIONS(9328), 1, + aux_sym__str_single_quotes_token1, STATE(5411), 1, sym_comment, - [140851] = 3, - ACTIONS(3), 1, + [140860] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9316), 1, - anon_sym_GT2, + ACTIONS(9330), 1, + aux_sym__str_back_ticks_token1, STATE(5412), 1, sym_comment, - [140861] = 3, + [140870] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9318), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(9332), 1, + aux_sym_comment_token1, STATE(5413), 1, sym_comment, - [140871] = 3, - ACTIONS(3), 1, + [140880] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9320), 1, - anon_sym_RBRACK, + ACTIONS(9334), 1, + sym__space, STATE(5414), 1, sym_comment, - [140881] = 3, + [140890] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9322), 1, - sym_raw_string_end, + ACTIONS(2638), 1, + sym__unquoted_pattern_in_record, STATE(5415), 1, sym_comment, - [140891] = 3, + [140900] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9324), 1, - sym_raw_string_content, + ACTIONS(9336), 1, + anon_sym_EQ, STATE(5416), 1, sym_comment, - [140901] = 3, + [140910] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4546), 1, - anon_sym_LBRACK2, + ACTIONS(369), 1, + anon_sym_RPAREN2, STATE(5417), 1, sym_comment, - [140911] = 3, - ACTIONS(105), 1, + [140920] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9326), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(2718), 1, + sym__unquoted_pattern_in_record, STATE(5418), 1, sym_comment, - [140921] = 3, - ACTIONS(105), 1, - anon_sym_POUND, - ACTIONS(9328), 1, - aux_sym__str_back_ticks_token1, - STATE(5419), 1, - sym_comment, - [140931] = 3, + [140930] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9330), 1, + ACTIONS(9338), 1, sym_raw_string_content, - STATE(5420), 1, + STATE(5419), 1, sym_comment, - [140941] = 3, + [140940] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5916), 1, + ACTIONS(4622), 1, anon_sym_LBRACK2, - STATE(5421), 1, + STATE(5420), 1, sym_comment, - [140951] = 3, + [140950] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9332), 1, + ACTIONS(9340), 1, aux_sym__str_single_quotes_token1, - STATE(5422), 1, + STATE(5421), 1, sym_comment, - [140961] = 3, + [140960] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9334), 1, + ACTIONS(9342), 1, aux_sym__str_back_ticks_token1, - STATE(5423), 1, + STATE(5422), 1, sym_comment, - [140971] = 3, + [140970] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9336), 1, + ACTIONS(9344), 1, sym_raw_string_content, - STATE(5424), 1, + STATE(5423), 1, sym_comment, - [140981] = 3, + [140980] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5971), 1, + ACTIONS(5909), 1, anon_sym_LBRACK2, - STATE(5425), 1, + STATE(5424), 1, sym_comment, - [140991] = 3, + [140990] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9338), 1, + ACTIONS(9346), 1, aux_sym__str_single_quotes_token1, - STATE(5426), 1, + STATE(5425), 1, sym_comment, - [141001] = 3, + [141000] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9348), 1, aux_sym__str_back_ticks_token1, - STATE(5427), 1, + STATE(5426), 1, sym_comment, - [141011] = 3, + [141010] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9342), 1, + ACTIONS(9350), 1, sym_raw_string_content, + STATE(5427), 1, + sym_comment, + [141020] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6064), 1, + anon_sym_LBRACK2, STATE(5428), 1, sym_comment, - [141021] = 3, + [141030] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9344), 1, + ACTIONS(9352), 1, aux_sym__str_single_quotes_token1, STATE(5429), 1, sym_comment, - [141031] = 3, + [141040] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9346), 1, + ACTIONS(9354), 1, aux_sym__str_back_ticks_token1, STATE(5430), 1, sym_comment, - [141041] = 3, + [141050] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9348), 1, + ACTIONS(9356), 1, sym_raw_string_content, STATE(5431), 1, sym_comment, - [141051] = 3, + [141060] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9350), 1, + ACTIONS(9358), 1, aux_sym__str_single_quotes_token1, STATE(5432), 1, sym_comment, - [141061] = 3, + [141070] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9352), 1, + ACTIONS(9360), 1, aux_sym__str_back_ticks_token1, STATE(5433), 1, sym_comment, - [141071] = 3, + [141080] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9354), 1, + ACTIONS(9362), 1, sym_raw_string_content, STATE(5434), 1, sym_comment, - [141081] = 3, + [141090] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9356), 1, + ACTIONS(9364), 1, aux_sym__str_single_quotes_token1, STATE(5435), 1, sym_comment, - [141091] = 3, + [141100] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9358), 1, + ACTIONS(9366), 1, aux_sym__str_back_ticks_token1, STATE(5436), 1, sym_comment, - [141101] = 3, + [141110] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9360), 1, + ACTIONS(9368), 1, sym_raw_string_content, STATE(5437), 1, sym_comment, - [141111] = 3, + [141120] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9362), 1, + ACTIONS(9370), 1, aux_sym__str_single_quotes_token1, STATE(5438), 1, sym_comment, - [141121] = 3, + [141130] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9364), 1, + ACTIONS(9372), 1, aux_sym__str_back_ticks_token1, STATE(5439), 1, sym_comment, - [141131] = 3, + [141140] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9366), 1, + ACTIONS(9374), 1, sym_raw_string_content, STATE(5440), 1, sym_comment, - [141141] = 3, + [141150] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9368), 1, + ACTIONS(9376), 1, aux_sym__str_single_quotes_token1, STATE(5441), 1, sym_comment, - [141151] = 3, + [141160] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9370), 1, + ACTIONS(9378), 1, aux_sym__str_back_ticks_token1, STATE(5442), 1, sym_comment, - [141161] = 3, + [141170] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9372), 1, + ACTIONS(9380), 1, sym_raw_string_content, STATE(5443), 1, sym_comment, - [141171] = 3, + [141180] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9374), 1, + ACTIONS(9382), 1, aux_sym__str_single_quotes_token1, STATE(5444), 1, sym_comment, - [141181] = 3, + [141190] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9376), 1, + ACTIONS(9384), 1, aux_sym__str_back_ticks_token1, STATE(5445), 1, sym_comment, - [141191] = 3, + [141200] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9378), 1, + ACTIONS(9386), 1, sym_raw_string_content, STATE(5446), 1, sym_comment, - [141201] = 3, + [141210] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9380), 1, + ACTIONS(9388), 1, aux_sym__str_single_quotes_token1, STATE(5447), 1, sym_comment, - [141211] = 3, + [141220] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9382), 1, + ACTIONS(9390), 1, aux_sym__str_back_ticks_token1, STATE(5448), 1, sym_comment, - [141221] = 3, + [141230] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9384), 1, + ACTIONS(9392), 1, sym_raw_string_content, STATE(5449), 1, sym_comment, - [141231] = 3, + [141240] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9386), 1, + ACTIONS(9394), 1, aux_sym__str_single_quotes_token1, STATE(5450), 1, sym_comment, - [141241] = 3, + [141250] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9388), 1, + ACTIONS(9396), 1, aux_sym__str_back_ticks_token1, STATE(5451), 1, sym_comment, - [141251] = 3, + [141260] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9390), 1, + ACTIONS(9398), 1, sym_raw_string_content, STATE(5452), 1, sym_comment, - [141261] = 3, + [141270] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9392), 1, + ACTIONS(9400), 1, aux_sym__str_single_quotes_token1, STATE(5453), 1, sym_comment, - [141271] = 3, + [141280] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9394), 1, + ACTIONS(9402), 1, aux_sym__str_back_ticks_token1, STATE(5454), 1, sym_comment, - [141281] = 3, + [141290] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9396), 1, + ACTIONS(9404), 1, sym_raw_string_content, STATE(5455), 1, sym_comment, - [141291] = 3, + [141300] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9398), 1, + ACTIONS(9406), 1, aux_sym__str_single_quotes_token1, STATE(5456), 1, sym_comment, - [141301] = 3, + [141310] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9400), 1, + ACTIONS(9408), 1, aux_sym__str_back_ticks_token1, STATE(5457), 1, sym_comment, - [141311] = 3, + [141320] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9402), 1, + ACTIONS(9410), 1, sym_raw_string_content, STATE(5458), 1, sym_comment, - [141321] = 3, + [141330] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9404), 1, + ACTIONS(9412), 1, aux_sym__str_single_quotes_token1, STATE(5459), 1, sym_comment, - [141331] = 3, + [141340] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9406), 1, + ACTIONS(9414), 1, aux_sym__str_back_ticks_token1, STATE(5460), 1, sym_comment, - [141341] = 3, + [141350] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9408), 1, + ACTIONS(9416), 1, sym_raw_string_content, STATE(5461), 1, sym_comment, - [141351] = 3, + [141360] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9410), 1, + ACTIONS(9418), 1, aux_sym__str_single_quotes_token1, STATE(5462), 1, sym_comment, - [141361] = 3, + [141370] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9412), 1, + ACTIONS(9420), 1, aux_sym__str_back_ticks_token1, STATE(5463), 1, sym_comment, - [141371] = 3, + [141380] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9414), 1, + ACTIONS(9422), 1, sym_raw_string_content, STATE(5464), 1, sym_comment, - [141381] = 3, + [141390] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9416), 1, + ACTIONS(9424), 1, aux_sym__str_single_quotes_token1, STATE(5465), 1, sym_comment, - [141391] = 3, + [141400] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9418), 1, + ACTIONS(9426), 1, aux_sym__str_back_ticks_token1, STATE(5466), 1, sym_comment, - [141401] = 3, + [141410] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9420), 1, + ACTIONS(9428), 1, sym_raw_string_content, STATE(5467), 1, sym_comment, - [141411] = 3, + [141420] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9422), 1, + ACTIONS(9430), 1, aux_sym__str_single_quotes_token1, STATE(5468), 1, sym_comment, - [141421] = 3, + [141430] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9424), 1, + ACTIONS(9432), 1, aux_sym__str_back_ticks_token1, STATE(5469), 1, sym_comment, - [141431] = 3, + [141440] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9426), 1, - ts_builtin_sym_end, + ACTIONS(9434), 1, + sym_raw_string_content, STATE(5470), 1, sym_comment, - [141441] = 3, + [141450] = 3, ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9428), 1, - aux_sym_comment_token1, + ACTIONS(9436), 1, + aux_sym__str_single_quotes_token1, STATE(5471), 1, sym_comment, - [141451] = 3, - ACTIONS(3), 1, + [141460] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(8674), 1, - anon_sym_LPAREN2, + ACTIONS(9438), 1, + aux_sym__str_back_ticks_token1, STATE(5472), 1, sym_comment, - [141461] = 3, - ACTIONS(105), 1, + [141470] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1935), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(9440), 1, + anon_sym_RBRACE, STATE(5473), 1, sym_comment, - [141471] = 3, + [141480] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9430), 1, - anon_sym_RBRACK, + ACTIONS(9442), 1, + sym_raw_string_end, STATE(5474), 1, sym_comment, - [141481] = 3, + [141490] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9432), 1, - anon_sym_RPAREN, + ACTIONS(8694), 1, + anon_sym_LPAREN2, STATE(5475), 1, sym_comment, - [141491] = 3, + [141500] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9434), 1, - anon_sym_in, + ACTIONS(9444), 1, + anon_sym_RBRACE, STATE(5476), 1, sym_comment, - [141501] = 3, + [141510] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9436), 1, - anon_sym_RBRACE, + ACTIONS(9446), 1, + sym_raw_string_content, STATE(5477), 1, sym_comment, - [141511] = 3, + [141520] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9438), 1, - anon_sym_GT2, + ACTIONS(9448), 1, + anon_sym_EQ_GT, STATE(5478), 1, sym_comment, - [141521] = 3, + [141530] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9440), 1, - anon_sym_RBRACE, + ACTIONS(9450), 1, + anon_sym_in, STATE(5479), 1, sym_comment, - [141531] = 3, - ACTIONS(3), 1, + [141540] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9442), 1, - anon_sym_RPAREN, + ACTIONS(9452), 1, + aux_sym_cmd_identifier_token6, STATE(5480), 1, sym_comment, - [141541] = 3, + [141550] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9444), 1, - sym__table_head_separator, + ACTIONS(9454), 1, + anon_sym_LBRACE, STATE(5481), 1, sym_comment, - [141551] = 3, + [141560] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9446), 1, - anon_sym_RBRACE, + ACTIONS(9454), 1, + anon_sym_LBRACE, STATE(5482), 1, sym_comment, - [141561] = 3, + [141570] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9448), 1, - anon_sym_RBRACE, + ACTIONS(9456), 1, + anon_sym_LBRACE, STATE(5483), 1, sym_comment, - [141571] = 3, + [141580] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9450), 1, - anon_sym_GT2, + ACTIONS(9458), 1, + anon_sym_RBRACK, STATE(5484), 1, sym_comment, - [141581] = 3, + [141590] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9452), 1, - anon_sym_DQUOTE, + ACTIONS(1697), 1, + sym__unquoted_pattern, STATE(5485), 1, sym_comment, - [141591] = 3, + [141600] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9454), 1, - anon_sym_SQUOTE2, + ACTIONS(9460), 1, + anon_sym_GT2, STATE(5486), 1, sym_comment, - [141601] = 3, + [141610] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9456), 1, - anon_sym_BQUOTE2, + ACTIONS(9462), 1, + anon_sym_RBRACE, STATE(5487), 1, sym_comment, - [141611] = 3, + [141620] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - sym__unquoted_pattern, + ACTIONS(9464), 1, + sym_identifier, STATE(5488), 1, sym_comment, - [141621] = 3, + [141630] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9458), 1, + ACTIONS(9466), 1, anon_sym_RBRACK, STATE(5489), 1, sym_comment, - [141631] = 3, + [141640] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9460), 1, - anon_sym_GT2, + ACTIONS(6788), 1, + sym__unquoted_pattern_in_list, STATE(5490), 1, sym_comment, - [141641] = 3, - ACTIONS(105), 1, + [141650] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9462), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(411), 1, + ts_builtin_sym_end, STATE(5491), 1, sym_comment, - [141651] = 3, + [141660] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9464), 1, - anon_sym_LT, + ACTIONS(9468), 1, + sym__table_head_separator, STATE(5492), 1, sym_comment, - [141661] = 3, + [141670] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9466), 1, - anon_sym_GT2, + ACTIONS(359), 1, + anon_sym_RPAREN2, STATE(5493), 1, sym_comment, - [141671] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9468), 1, - sym__table_head_separator, - STATE(5494), 1, - sym_comment, - [141681] = 3, + [141680] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9470), 1, - anon_sym_RPAREN, - STATE(5495), 1, + anon_sym_RBRACE, + STATE(5494), 1, sym_comment, - [141691] = 3, + [141690] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9472), 1, - anon_sym_RBRACE, - STATE(5496), 1, + anon_sym_LT, + STATE(5495), 1, sym_comment, - [141701] = 3, + [141700] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9474), 1, anon_sym_RBRACK, - STATE(5497), 1, + STATE(5496), 1, sym_comment, - [141711] = 3, + [141710] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9476), 1, - anon_sym_RPAREN, - STATE(5498), 1, + anon_sym_PIPE, + STATE(5497), 1, sym_comment, - [141721] = 3, + [141720] = 3, ACTIONS(105), 1, anon_sym_POUND, ACTIONS(9478), 1, - aux_sym_cmd_identifier_token6, - STATE(5499), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(5498), 1, sym_comment, - [141731] = 3, + [141730] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9480), 1, anon_sym_GT2, - STATE(5500), 1, + STATE(5499), 1, sym_comment, - [141741] = 3, + [141740] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9482), 1, + ts_builtin_sym_end, + STATE(5500), 1, + sym_comment, + [141750] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9484), 1, anon_sym_GT2, STATE(5501), 1, sym_comment, - [141751] = 3, + [141760] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9484), 1, - anon_sym_RBRACE, + ACTIONS(2614), 1, + sym__unquoted_pattern_in_record, STATE(5502), 1, sym_comment, - [141761] = 3, - ACTIONS(3), 1, + [141770] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1740), 1, - anon_sym_COLON2, + ACTIONS(9486), 1, + aux_sym__str_back_ticks_token1, STATE(5503), 1, sym_comment, - [141771] = 3, - ACTIONS(3), 1, + [141780] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern, + ACTIONS(9488), 1, + aux_sym__str_single_quotes_token1, STATE(5504), 1, sym_comment, - [141781] = 3, + [141790] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9486), 1, - anon_sym_RBRACE, + ACTIONS(2722), 1, + sym__unquoted_pattern_in_record, STATE(5505), 1, sym_comment, - [141791] = 3, + [141800] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6591), 1, - anon_sym_EQ, + ACTIONS(2992), 1, + anon_sym_LBRACK2, STATE(5506), 1, sym_comment, - [141801] = 3, + [141810] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9488), 1, - anon_sym_RBRACE, + ACTIONS(9490), 1, + anon_sym_GT2, STATE(5507), 1, sym_comment, - [141811] = 3, + [141820] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2686), 1, - sym__unquoted_pattern, + ACTIONS(8445), 1, + anon_sym_EQ_GT, STATE(5508), 1, sym_comment, - [141821] = 3, + [141830] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9490), 1, - anon_sym_RBRACE, + ACTIONS(9492), 1, + anon_sym_LPAREN2, STATE(5509), 1, sym_comment, - [141831] = 3, + [141840] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9492), 1, - sym_attribute_identifier, + ACTIONS(9494), 1, + anon_sym_RPAREN, STATE(5510), 1, sym_comment, - [141841] = 3, - ACTIONS(105), 1, + [141850] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9494), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9496), 1, + sym_attribute_identifier, STATE(5511), 1, sym_comment, - [141851] = 3, + [141860] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9496), 1, - anon_sym_RPAREN2, + ACTIONS(1636), 1, + sym__unquoted_pattern_in_record, STATE(5512), 1, sym_comment, - [141861] = 3, - ACTIONS(105), 1, + [141870] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2786), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(9498), 1, + anon_sym_RBRACK, STATE(5513), 1, sym_comment, - [141871] = 3, - ACTIONS(3), 1, + [141880] = 3, + ACTIONS(105), 1, anon_sym_POUND, - ACTIONS(9498), 1, - anon_sym_LT, + ACTIONS(2994), 1, + aux_sym_cmd_identifier_token2, STATE(5514), 1, sym_comment, - [141881] = 3, + [141890] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9500), 1, - sym_raw_string_end, + ACTIONS(7185), 1, + sym__unquoted_pattern_in_record, STATE(5515), 1, sym_comment, - [141891] = 3, + [141900] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9502), 1, - anon_sym_LT, + ACTIONS(9500), 1, + anon_sym_RBRACK, STATE(5516), 1, sym_comment, - [141901] = 3, + [141910] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9502), 1, + anon_sym_LT, STATE(5517), 1, sym_comment, - [141911] = 3, + [141920] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9504), 1, - anon_sym_RBRACK, + anon_sym_GT2, STATE(5518), 1, sym_comment, - [141921] = 3, + [141930] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9506), 1, - anon_sym_LT, + anon_sym_RBRACE, STATE(5519), 1, sym_comment, - [141931] = 3, + [141940] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9508), 1, - anon_sym_RBRACE, + anon_sym_GT2, STATE(5520), 1, sym_comment, - [141941] = 3, + [141950] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2990), 1, - anon_sym_LBRACK2, + ACTIONS(9510), 1, + anon_sym_GT2, STATE(5521), 1, sym_comment, - [141951] = 3, + [141960] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(369), 1, - anon_sym_RPAREN2, + ACTIONS(9512), 1, + anon_sym_GT2, STATE(5522), 1, sym_comment, - [141961] = 3, + [141970] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9510), 1, - anon_sym_RBRACE, + ACTIONS(9514), 1, + anon_sym_LT, STATE(5523), 1, sym_comment, - [141971] = 3, + [141980] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9512), 1, - anon_sym_RBRACE, + ACTIONS(9516), 1, + anon_sym_GT2, STATE(5524), 1, sym_comment, - [141981] = 3, - ACTIONS(105), 1, + [141990] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1915), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(9518), 1, + anon_sym_LBRACE, STATE(5525), 1, sym_comment, - [141991] = 3, - ACTIONS(105), 1, + [142000] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9514), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(8732), 1, + anon_sym_LBRACE, STATE(5526), 1, sym_comment, - [142001] = 3, + [142010] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, - anon_sym_DQUOTE, + ACTIONS(9520), 1, + anon_sym_GT2, STATE(5527), 1, sym_comment, - [142011] = 3, + [142020] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9518), 1, - anon_sym_SQUOTE2, + ACTIONS(9522), 1, + anon_sym_RBRACE, STATE(5528), 1, sym_comment, - [142021] = 3, + [142030] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9520), 1, - anon_sym_BQUOTE2, + ACTIONS(9524), 1, + anon_sym_RBRACE, STATE(5529), 1, sym_comment, - [142031] = 3, + [142040] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5350), 1, - anon_sym_EQ2, + ACTIONS(2718), 1, + sym__unquoted_pattern, STATE(5530), 1, sym_comment, - [142041] = 3, + [142050] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5076), 1, - sym__unquoted_pattern, + ACTIONS(2598), 1, + sym__unquoted_pattern_in_record, STATE(5531), 1, sym_comment, - [142051] = 1, - ACTIONS(9522), 1, + [142060] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9526), 1, + anon_sym_RBRACE, + STATE(5532), 1, + sym_comment, + [142070] = 3, + ACTIONS(105), 1, + anon_sym_POUND, + ACTIONS(9528), 1, + aux_sym_shebang_token1, + STATE(5533), 1, + sym_comment, + [142080] = 1, + ACTIONS(9530), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1289)] = 0, - [SMALL_STATE(1290)] = 99, - [SMALL_STATE(1291)] = 172, - [SMALL_STATE(1292)] = 245, - [SMALL_STATE(1293)] = 384, - [SMALL_STATE(1294)] = 457, - [SMALL_STATE(1295)] = 530, - [SMALL_STATE(1296)] = 603, - [SMALL_STATE(1297)] = 676, - [SMALL_STATE(1298)] = 819, - [SMALL_STATE(1299)] = 892, - [SMALL_STATE(1300)] = 1035, - [SMALL_STATE(1301)] = 1108, - [SMALL_STATE(1302)] = 1181, - [SMALL_STATE(1303)] = 1254, - [SMALL_STATE(1304)] = 1331, - [SMALL_STATE(1305)] = 1404, - [SMALL_STATE(1306)] = 1477, - [SMALL_STATE(1307)] = 1550, - [SMALL_STATE(1308)] = 1623, - [SMALL_STATE(1309)] = 1696, - [SMALL_STATE(1310)] = 1769, - [SMALL_STATE(1311)] = 1842, - [SMALL_STATE(1312)] = 1937, - [SMALL_STATE(1313)] = 2010, - [SMALL_STATE(1314)] = 2107, - [SMALL_STATE(1315)] = 2180, - [SMALL_STATE(1316)] = 2253, - [SMALL_STATE(1317)] = 2328, - [SMALL_STATE(1318)] = 2401, - [SMALL_STATE(1319)] = 2486, - [SMALL_STATE(1320)] = 2559, - [SMALL_STATE(1321)] = 2632, - [SMALL_STATE(1322)] = 2705, - [SMALL_STATE(1323)] = 2778, - [SMALL_STATE(1324)] = 2851, - [SMALL_STATE(1325)] = 2930, - [SMALL_STATE(1326)] = 3003, - [SMALL_STATE(1327)] = 3076, - [SMALL_STATE(1328)] = 3149, - [SMALL_STATE(1329)] = 3224, - [SMALL_STATE(1330)] = 3367, - [SMALL_STATE(1331)] = 3440, - [SMALL_STATE(1332)] = 3513, - [SMALL_STATE(1333)] = 3586, - [SMALL_STATE(1334)] = 3659, - [SMALL_STATE(1335)] = 3732, - [SMALL_STATE(1336)] = 3871, - [SMALL_STATE(1337)] = 3944, - [SMALL_STATE(1338)] = 4017, - [SMALL_STATE(1339)] = 4092, - [SMALL_STATE(1340)] = 4165, - [SMALL_STATE(1341)] = 4238, - [SMALL_STATE(1342)] = 4311, - [SMALL_STATE(1343)] = 4384, - [SMALL_STATE(1344)] = 4457, - [SMALL_STATE(1345)] = 4558, - [SMALL_STATE(1346)] = 4631, - [SMALL_STATE(1347)] = 4704, - [SMALL_STATE(1348)] = 4807, - [SMALL_STATE(1349)] = 4880, - [SMALL_STATE(1350)] = 4971, - [SMALL_STATE(1351)] = 5050, - [SMALL_STATE(1352)] = 5193, - [SMALL_STATE(1353)] = 5266, - [SMALL_STATE(1354)] = 5405, - [SMALL_STATE(1355)] = 5478, - [SMALL_STATE(1356)] = 5551, - [SMALL_STATE(1357)] = 5624, - [SMALL_STATE(1358)] = 5697, - [SMALL_STATE(1359)] = 5770, - [SMALL_STATE(1360)] = 5843, - [SMALL_STATE(1361)] = 5926, - [SMALL_STATE(1362)] = 5999, - [SMALL_STATE(1363)] = 6072, - [SMALL_STATE(1364)] = 6151, - [SMALL_STATE(1365)] = 6240, - [SMALL_STATE(1366)] = 6313, - [SMALL_STATE(1367)] = 6392, - [SMALL_STATE(1368)] = 6465, + [SMALL_STATE(1290)] = 73, + [SMALL_STATE(1291)] = 152, + [SMALL_STATE(1292)] = 295, + [SMALL_STATE(1293)] = 370, + [SMALL_STATE(1294)] = 443, + [SMALL_STATE(1295)] = 516, + [SMALL_STATE(1296)] = 589, + [SMALL_STATE(1297)] = 662, + [SMALL_STATE(1298)] = 735, + [SMALL_STATE(1299)] = 808, + [SMALL_STATE(1300)] = 881, + [SMALL_STATE(1301)] = 978, + [SMALL_STATE(1302)] = 1051, + [SMALL_STATE(1303)] = 1146, + [SMALL_STATE(1304)] = 1219, + [SMALL_STATE(1305)] = 1292, + [SMALL_STATE(1306)] = 1385, + [SMALL_STATE(1307)] = 1458, + [SMALL_STATE(1308)] = 1541, + [SMALL_STATE(1309)] = 1614, + [SMALL_STATE(1310)] = 1689, + [SMALL_STATE(1311)] = 1762, + [SMALL_STATE(1312)] = 1835, + [SMALL_STATE(1313)] = 1926, + [SMALL_STATE(1314)] = 1999, + [SMALL_STATE(1315)] = 2138, + [SMALL_STATE(1316)] = 2241, + [SMALL_STATE(1317)] = 2314, + [SMALL_STATE(1318)] = 2415, + [SMALL_STATE(1319)] = 2488, + [SMALL_STATE(1320)] = 2587, + [SMALL_STATE(1321)] = 2660, + [SMALL_STATE(1322)] = 2735, + [SMALL_STATE(1323)] = 2808, + [SMALL_STATE(1324)] = 2887, + [SMALL_STATE(1325)] = 2960, + [SMALL_STATE(1326)] = 3045, + [SMALL_STATE(1327)] = 3118, + [SMALL_STATE(1328)] = 3207, + [SMALL_STATE(1329)] = 3280, + [SMALL_STATE(1330)] = 3353, + [SMALL_STATE(1331)] = 3496, + [SMALL_STATE(1332)] = 3569, + [SMALL_STATE(1333)] = 3642, + [SMALL_STATE(1334)] = 3715, + [SMALL_STATE(1335)] = 3788, + [SMALL_STATE(1336)] = 3931, + [SMALL_STATE(1337)] = 4004, + [SMALL_STATE(1338)] = 4077, + [SMALL_STATE(1339)] = 4150, + [SMALL_STATE(1340)] = 4223, + [SMALL_STATE(1341)] = 4296, + [SMALL_STATE(1342)] = 4369, + [SMALL_STATE(1343)] = 4512, + [SMALL_STATE(1344)] = 4589, + [SMALL_STATE(1345)] = 4662, + [SMALL_STATE(1346)] = 4735, + [SMALL_STATE(1347)] = 4808, + [SMALL_STATE(1348)] = 4881, + [SMALL_STATE(1349)] = 4954, + [SMALL_STATE(1350)] = 5027, + [SMALL_STATE(1351)] = 5100, + [SMALL_STATE(1352)] = 5173, + [SMALL_STATE(1353)] = 5246, + [SMALL_STATE(1354)] = 5319, + [SMALL_STATE(1355)] = 5392, + [SMALL_STATE(1356)] = 5465, + [SMALL_STATE(1357)] = 5538, + [SMALL_STATE(1358)] = 5611, + [SMALL_STATE(1359)] = 5690, + [SMALL_STATE(1360)] = 5763, + [SMALL_STATE(1361)] = 5836, + [SMALL_STATE(1362)] = 5909, + [SMALL_STATE(1363)] = 5982, + [SMALL_STATE(1364)] = 6061, + [SMALL_STATE(1365)] = 6134, + [SMALL_STATE(1366)] = 6273, + [SMALL_STATE(1367)] = 6346, + [SMALL_STATE(1368)] = 6485, [SMALL_STATE(1369)] = 6558, [SMALL_STATE(1370)] = 6631, [SMALL_STATE(1371)] = 6704, [SMALL_STATE(1372)] = 6782, - [SMALL_STATE(1373)] = 6860, - [SMALL_STATE(1374)] = 7008, - [SMALL_STATE(1375)] = 7080, - [SMALL_STATE(1376)] = 7160, - [SMALL_STATE(1377)] = 7236, - [SMALL_STATE(1378)] = 7314, - [SMALL_STATE(1379)] = 7386, - [SMALL_STATE(1380)] = 7460, - [SMALL_STATE(1381)] = 7600, - [SMALL_STATE(1382)] = 7678, + [SMALL_STATE(1373)] = 6856, + [SMALL_STATE(1374)] = 6928, + [SMALL_STATE(1375)] = 7006, + [SMALL_STATE(1376)] = 7080, + [SMALL_STATE(1377)] = 7160, + [SMALL_STATE(1378)] = 7238, + [SMALL_STATE(1379)] = 7316, + [SMALL_STATE(1380)] = 7388, + [SMALL_STATE(1381)] = 7528, + [SMALL_STATE(1382)] = 7676, [SMALL_STATE(1383)] = 7752, [SMALL_STATE(1384)] = 7889, - [SMALL_STATE(1385)] = 7960, - [SMALL_STATE(1386)] = 8031, - [SMALL_STATE(1387)] = 8168, - [SMALL_STATE(1388)] = 8239, - [SMALL_STATE(1389)] = 8314, - [SMALL_STATE(1390)] = 8385, - [SMALL_STATE(1391)] = 8460, - [SMALL_STATE(1392)] = 8597, + [SMALL_STATE(1385)] = 8026, + [SMALL_STATE(1386)] = 8101, + [SMALL_STATE(1387)] = 8172, + [SMALL_STATE(1388)] = 8249, + [SMALL_STATE(1389)] = 8320, + [SMALL_STATE(1390)] = 8457, + [SMALL_STATE(1391)] = 8532, + [SMALL_STATE(1392)] = 8603, [SMALL_STATE(1393)] = 8674, [SMALL_STATE(1394)] = 8811, - [SMALL_STATE(1395)] = 8948, - [SMALL_STATE(1396)] = 9019, + [SMALL_STATE(1395)] = 8882, + [SMALL_STATE(1396)] = 8953, [SMALL_STATE(1397)] = 9090, - [SMALL_STATE(1398)] = 9224, - [SMALL_STATE(1399)] = 9364, - [SMALL_STATE(1400)] = 9434, - [SMALL_STATE(1401)] = 9504, - [SMALL_STATE(1402)] = 9592, - [SMALL_STATE(1403)] = 9680, - [SMALL_STATE(1404)] = 9814, - [SMALL_STATE(1405)] = 9948, - [SMALL_STATE(1406)] = 10090, - [SMALL_STATE(1407)] = 10224, - [SMALL_STATE(1408)] = 10366, + [SMALL_STATE(1398)] = 9160, + [SMALL_STATE(1399)] = 9294, + [SMALL_STATE(1400)] = 9428, + [SMALL_STATE(1401)] = 9562, + [SMALL_STATE(1402)] = 9704, + [SMALL_STATE(1403)] = 9838, + [SMALL_STATE(1404)] = 9908, + [SMALL_STATE(1405)] = 9996, + [SMALL_STATE(1406)] = 10138, + [SMALL_STATE(1407)] = 10278, + [SMALL_STATE(1408)] = 10412, [SMALL_STATE(1409)] = 10500, [SMALL_STATE(1410)] = 10573, [SMALL_STATE(1411)] = 10648, [SMALL_STATE(1412)] = 10733, - [SMALL_STATE(1413)] = 10801, - [SMALL_STATE(1414)] = 10883, + [SMALL_STATE(1413)] = 10815, + [SMALL_STATE(1414)] = 10887, [SMALL_STATE(1415)] = 10955, - [SMALL_STATE(1416)] = 11039, - [SMALL_STATE(1417)] = 11109, - [SMALL_STATE(1418)] = 11179, + [SMALL_STATE(1416)] = 11025, + [SMALL_STATE(1417)] = 11107, + [SMALL_STATE(1418)] = 11177, [SMALL_STATE(1419)] = 11261, - [SMALL_STATE(1420)] = 11328, - [SMALL_STATE(1421)] = 11395, - [SMALL_STATE(1422)] = 11466, - [SMALL_STATE(1423)] = 11537, - [SMALL_STATE(1424)] = 11670, - [SMALL_STATE(1425)] = 11751, - [SMALL_STATE(1426)] = 11832, + [SMALL_STATE(1420)] = 11386, + [SMALL_STATE(1421)] = 11467, + [SMALL_STATE(1422)] = 11548, + [SMALL_STATE(1423)] = 11619, + [SMALL_STATE(1424)] = 11690, + [SMALL_STATE(1425)] = 11757, + [SMALL_STATE(1426)] = 11890, [SMALL_STATE(1427)] = 11957, [SMALL_STATE(1428)] = 12082, [SMALL_STATE(1429)] = 12152, - [SMALL_STATE(1430)] = 12222, + [SMALL_STATE(1430)] = 12220, [SMALL_STATE(1431)] = 12290, - [SMALL_STATE(1432)] = 12370, + [SMALL_STATE(1432)] = 12358, [SMALL_STATE(1433)] = 12438, - [SMALL_STATE(1434)] = 12503, - [SMALL_STATE(1435)] = 12632, - [SMALL_STATE(1436)] = 12761, - [SMALL_STATE(1437)] = 12828, - [SMALL_STATE(1438)] = 12907, - [SMALL_STATE(1439)] = 12972, - [SMALL_STATE(1440)] = 13037, - [SMALL_STATE(1441)] = 13166, - [SMALL_STATE(1442)] = 13235, - [SMALL_STATE(1443)] = 13302, - [SMALL_STATE(1444)] = 13431, - [SMALL_STATE(1445)] = 13500, + [SMALL_STATE(1434)] = 12505, + [SMALL_STATE(1435)] = 12630, + [SMALL_STATE(1436)] = 12695, + [SMALL_STATE(1437)] = 12764, + [SMALL_STATE(1438)] = 12893, + [SMALL_STATE(1439)] = 13022, + [SMALL_STATE(1440)] = 13151, + [SMALL_STATE(1441)] = 13216, + [SMALL_STATE(1442)] = 13295, + [SMALL_STATE(1443)] = 13360, + [SMALL_STATE(1444)] = 13489, + [SMALL_STATE(1445)] = 13556, [SMALL_STATE(1446)] = 13625, [SMALL_STATE(1447)] = 13689, - [SMALL_STATE(1448)] = 13757, + [SMALL_STATE(1448)] = 13753, [SMALL_STATE(1449)] = 13821, - [SMALL_STATE(1450)] = 13885, + [SMALL_STATE(1450)] = 13887, [SMALL_STATE(1451)] = 13953, - [SMALL_STATE(1452)] = 14019, + [SMALL_STATE(1452)] = 14017, [SMALL_STATE(1453)] = 14085, [SMALL_STATE(1454)] = 14148, - [SMALL_STATE(1455)] = 14247, - [SMALL_STATE(1456)] = 14318, - [SMALL_STATE(1457)] = 14389, - [SMALL_STATE(1458)] = 14454, - [SMALL_STATE(1459)] = 14517, - [SMALL_STATE(1460)] = 14580, - [SMALL_STATE(1461)] = 14645, + [SMALL_STATE(1455)] = 14213, + [SMALL_STATE(1456)] = 14284, + [SMALL_STATE(1457)] = 14383, + [SMALL_STATE(1458)] = 14482, + [SMALL_STATE(1459)] = 14547, + [SMALL_STATE(1460)] = 14610, + [SMALL_STATE(1461)] = 14673, [SMALL_STATE(1462)] = 14744, - [SMALL_STATE(1463)] = 14842, + [SMALL_STATE(1463)] = 14814, [SMALL_STATE(1464)] = 14912, - [SMALL_STATE(1465)] = 14974, - [SMALL_STATE(1466)] = 15040, - [SMALL_STATE(1467)] = 15106, - [SMALL_STATE(1468)] = 15204, - [SMALL_STATE(1469)] = 15274, - [SMALL_STATE(1470)] = 15346, - [SMALL_STATE(1471)] = 15440, - [SMALL_STATE(1472)] = 15502, - [SMALL_STATE(1473)] = 15564, - [SMALL_STATE(1474)] = 15658, + [SMALL_STATE(1465)] = 14978, + [SMALL_STATE(1466)] = 15044, + [SMALL_STATE(1467)] = 15138, + [SMALL_STATE(1468)] = 15236, + [SMALL_STATE(1469)] = 15298, + [SMALL_STATE(1470)] = 15368, + [SMALL_STATE(1471)] = 15430, + [SMALL_STATE(1472)] = 15524, + [SMALL_STATE(1473)] = 15618, + [SMALL_STATE(1474)] = 15690, [SMALL_STATE(1475)] = 15752, - [SMALL_STATE(1476)] = 15819, + [SMALL_STATE(1476)] = 15817, [SMALL_STATE(1477)] = 15884, - [SMALL_STATE(1478)] = 15951, - [SMALL_STATE(1479)] = 16018, - [SMALL_STATE(1480)] = 16085, - [SMALL_STATE(1481)] = 16152, - [SMALL_STATE(1482)] = 16219, - [SMALL_STATE(1483)] = 16286, - [SMALL_STATE(1484)] = 16349, - [SMALL_STATE(1485)] = 16416, - [SMALL_STATE(1486)] = 16483, - [SMALL_STATE(1487)] = 16550, + [SMALL_STATE(1478)] = 15947, + [SMALL_STATE(1479)] = 16010, + [SMALL_STATE(1480)] = 16073, + [SMALL_STATE(1481)] = 16140, + [SMALL_STATE(1482)] = 16207, + [SMALL_STATE(1483)] = 16278, + [SMALL_STATE(1484)] = 16345, + [SMALL_STATE(1485)] = 16412, + [SMALL_STATE(1486)] = 16479, + [SMALL_STATE(1487)] = 16546, [SMALL_STATE(1488)] = 16613, - [SMALL_STATE(1489)] = 16676, - [SMALL_STATE(1490)] = 16747, + [SMALL_STATE(1489)] = 16678, + [SMALL_STATE(1490)] = 16745, [SMALL_STATE(1491)] = 16812, [SMALL_STATE(1492)] = 16879, [SMALL_STATE(1493)] = 16946, [SMALL_STATE(1494)] = 17006, [SMALL_STATE(1495)] = 17070, [SMALL_STATE(1496)] = 17134, - [SMALL_STATE(1497)] = 17194, - [SMALL_STATE(1498)] = 17258, - [SMALL_STATE(1499)] = 17322, - [SMALL_STATE(1500)] = 17386, - [SMALL_STATE(1501)] = 17450, - [SMALL_STATE(1502)] = 17514, - [SMALL_STATE(1503)] = 17578, - [SMALL_STATE(1504)] = 17638, - [SMALL_STATE(1505)] = 17698, - [SMALL_STATE(1506)] = 17760, - [SMALL_STATE(1507)] = 17822, - [SMALL_STATE(1508)] = 17886, - [SMALL_STATE(1509)] = 17950, - [SMALL_STATE(1510)] = 18014, - [SMALL_STATE(1511)] = 18074, + [SMALL_STATE(1497)] = 17196, + [SMALL_STATE(1498)] = 17260, + [SMALL_STATE(1499)] = 17320, + [SMALL_STATE(1500)] = 17384, + [SMALL_STATE(1501)] = 17446, + [SMALL_STATE(1502)] = 17508, + [SMALL_STATE(1503)] = 17568, + [SMALL_STATE(1504)] = 17628, + [SMALL_STATE(1505)] = 17692, + [SMALL_STATE(1506)] = 17756, + [SMALL_STATE(1507)] = 17816, + [SMALL_STATE(1508)] = 17880, + [SMALL_STATE(1509)] = 17944, + [SMALL_STATE(1510)] = 18008, + [SMALL_STATE(1511)] = 18072, [SMALL_STATE(1512)] = 18136, - [SMALL_STATE(1513)] = 18223, + [SMALL_STATE(1513)] = 18199, [SMALL_STATE(1514)] = 18286, - [SMALL_STATE(1515)] = 18345, - [SMALL_STATE(1516)] = 18404, - [SMALL_STATE(1517)] = 18467, - [SMALL_STATE(1518)] = 18530, - [SMALL_STATE(1519)] = 18593, - [SMALL_STATE(1520)] = 18684, - [SMALL_STATE(1521)] = 18743, - [SMALL_STATE(1522)] = 18830, - [SMALL_STATE(1523)] = 18891, + [SMALL_STATE(1515)] = 18349, + [SMALL_STATE(1516)] = 18412, + [SMALL_STATE(1517)] = 18475, + [SMALL_STATE(1518)] = 18536, + [SMALL_STATE(1519)] = 18599, + [SMALL_STATE(1520)] = 18686, + [SMALL_STATE(1521)] = 18749, + [SMALL_STATE(1522)] = 18810, + [SMALL_STATE(1523)] = 18897, [SMALL_STATE(1524)] = 18984, - [SMALL_STATE(1525)] = 19047, - [SMALL_STATE(1526)] = 19106, - [SMALL_STATE(1527)] = 19193, - [SMALL_STATE(1528)] = 19286, - [SMALL_STATE(1529)] = 19347, - [SMALL_STATE(1530)] = 19408, - [SMALL_STATE(1531)] = 19469, - [SMALL_STATE(1532)] = 19532, - [SMALL_STATE(1533)] = 19619, - [SMALL_STATE(1534)] = 19680, - [SMALL_STATE(1535)] = 19743, - [SMALL_STATE(1536)] = 19830, - [SMALL_STATE(1537)] = 19889, - [SMALL_STATE(1538)] = 19952, - [SMALL_STATE(1539)] = 20015, - [SMALL_STATE(1540)] = 20102, - [SMALL_STATE(1541)] = 20189, + [SMALL_STATE(1525)] = 19045, + [SMALL_STATE(1526)] = 19104, + [SMALL_STATE(1527)] = 19195, + [SMALL_STATE(1528)] = 19258, + [SMALL_STATE(1529)] = 19319, + [SMALL_STATE(1530)] = 19382, + [SMALL_STATE(1531)] = 19443, + [SMALL_STATE(1532)] = 19502, + [SMALL_STATE(1533)] = 19561, + [SMALL_STATE(1534)] = 19648, + [SMALL_STATE(1535)] = 19741, + [SMALL_STATE(1536)] = 19800, + [SMALL_STATE(1537)] = 19887, + [SMALL_STATE(1538)] = 19980, + [SMALL_STATE(1539)] = 20067, + [SMALL_STATE(1540)] = 20130, + [SMALL_STATE(1541)] = 20217, [SMALL_STATE(1542)] = 20276, - [SMALL_STATE(1543)] = 20350, - [SMALL_STATE(1544)] = 20430, - [SMALL_STATE(1545)] = 20510, - [SMALL_STATE(1546)] = 20590, - [SMALL_STATE(1547)] = 20670, - [SMALL_STATE(1548)] = 20758, - [SMALL_STATE(1549)] = 20838, - [SMALL_STATE(1550)] = 20918, - [SMALL_STATE(1551)] = 20978, - [SMALL_STATE(1552)] = 21038, - [SMALL_STATE(1553)] = 21118, - [SMALL_STATE(1554)] = 21198, - [SMALL_STATE(1555)] = 21278, - [SMALL_STATE(1556)] = 21358, - [SMALL_STATE(1557)] = 21438, - [SMALL_STATE(1558)] = 21518, - [SMALL_STATE(1559)] = 21598, - [SMALL_STATE(1560)] = 21678, + [SMALL_STATE(1543)] = 20358, + [SMALL_STATE(1544)] = 20446, + [SMALL_STATE(1545)] = 20516, + [SMALL_STATE(1546)] = 20594, + [SMALL_STATE(1547)] = 20674, + [SMALL_STATE(1548)] = 20754, + [SMALL_STATE(1549)] = 20834, + [SMALL_STATE(1550)] = 20916, + [SMALL_STATE(1551)] = 20996, + [SMALL_STATE(1552)] = 21076, + [SMALL_STATE(1553)] = 21156, + [SMALL_STATE(1554)] = 21236, + [SMALL_STATE(1555)] = 21326, + [SMALL_STATE(1556)] = 21392, + [SMALL_STATE(1557)] = 21452, + [SMALL_STATE(1558)] = 21516, + [SMALL_STATE(1559)] = 21604, + [SMALL_STATE(1560)] = 21684, [SMALL_STATE(1561)] = 21758, - [SMALL_STATE(1562)] = 21838, - [SMALL_STATE(1563)] = 21918, - [SMALL_STATE(1564)] = 21998, - [SMALL_STATE(1565)] = 22078, - [SMALL_STATE(1566)] = 22158, - [SMALL_STATE(1567)] = 22238, - [SMALL_STATE(1568)] = 22318, - [SMALL_STATE(1569)] = 22398, - [SMALL_STATE(1570)] = 22478, - [SMALL_STATE(1571)] = 22558, + [SMALL_STATE(1562)] = 21832, + [SMALL_STATE(1563)] = 21916, + [SMALL_STATE(1564)] = 21992, + [SMALL_STATE(1565)] = 22074, + [SMALL_STATE(1566)] = 22160, + [SMALL_STATE(1567)] = 22240, + [SMALL_STATE(1568)] = 22320, + [SMALL_STATE(1569)] = 22400, + [SMALL_STATE(1570)] = 22480, + [SMALL_STATE(1571)] = 22560, [SMALL_STATE(1572)] = 22638, - [SMALL_STATE(1573)] = 22718, - [SMALL_STATE(1574)] = 22798, - [SMALL_STATE(1575)] = 22878, - [SMALL_STATE(1576)] = 22958, - [SMALL_STATE(1577)] = 23038, - [SMALL_STATE(1578)] = 23118, - [SMALL_STATE(1579)] = 23198, - [SMALL_STATE(1580)] = 23278, - [SMALL_STATE(1581)] = 23358, - [SMALL_STATE(1582)] = 23438, - [SMALL_STATE(1583)] = 23518, - [SMALL_STATE(1584)] = 23598, - [SMALL_STATE(1585)] = 23658, - [SMALL_STATE(1586)] = 23738, - [SMALL_STATE(1587)] = 23818, - [SMALL_STATE(1588)] = 23898, - [SMALL_STATE(1589)] = 23978, - [SMALL_STATE(1590)] = 24058, - [SMALL_STATE(1591)] = 24138, - [SMALL_STATE(1592)] = 24218, - [SMALL_STATE(1593)] = 24278, - [SMALL_STATE(1594)] = 24358, - [SMALL_STATE(1595)] = 24434, - [SMALL_STATE(1596)] = 24508, - [SMALL_STATE(1597)] = 24576, - [SMALL_STATE(1598)] = 24640, - [SMALL_STATE(1599)] = 24726, - [SMALL_STATE(1600)] = 24814, - [SMALL_STATE(1601)] = 24904, - [SMALL_STATE(1602)] = 24982, - [SMALL_STATE(1603)] = 25056, - [SMALL_STATE(1604)] = 25128, - [SMALL_STATE(1605)] = 25208, - [SMALL_STATE(1606)] = 25290, - [SMALL_STATE(1607)] = 25374, - [SMALL_STATE(1608)] = 25450, - [SMALL_STATE(1609)] = 25524, - [SMALL_STATE(1610)] = 25596, - [SMALL_STATE(1611)] = 25664, - [SMALL_STATE(1612)] = 25730, - [SMALL_STATE(1613)] = 25794, - [SMALL_STATE(1614)] = 25856, - [SMALL_STATE(1615)] = 25942, - [SMALL_STATE(1616)] = 26026, - [SMALL_STATE(1617)] = 26114, - [SMALL_STATE(1618)] = 26200, - [SMALL_STATE(1619)] = 26290, - [SMALL_STATE(1620)] = 26378, - [SMALL_STATE(1621)] = 26456, - [SMALL_STATE(1622)] = 26532, - [SMALL_STATE(1623)] = 26604, + [SMALL_STATE(1573)] = 22700, + [SMALL_STATE(1574)] = 22762, + [SMALL_STATE(1575)] = 22832, + [SMALL_STATE(1576)] = 22908, + [SMALL_STATE(1577)] = 22996, + [SMALL_STATE(1578)] = 23082, + [SMALL_STATE(1579)] = 23166, + [SMALL_STATE(1580)] = 23228, + [SMALL_STATE(1581)] = 23294, + [SMALL_STATE(1582)] = 23358, + [SMALL_STATE(1583)] = 23430, + [SMALL_STATE(1584)] = 23504, + [SMALL_STATE(1585)] = 23570, + [SMALL_STATE(1586)] = 23654, + [SMALL_STATE(1587)] = 23722, + [SMALL_STATE(1588)] = 23794, + [SMALL_STATE(1589)] = 23874, + [SMALL_STATE(1590)] = 23954, + [SMALL_STATE(1591)] = 24028, + [SMALL_STATE(1592)] = 24108, + [SMALL_STATE(1593)] = 24188, + [SMALL_STATE(1594)] = 24268, + [SMALL_STATE(1595)] = 24342, + [SMALL_STATE(1596)] = 24418, + [SMALL_STATE(1597)] = 24504, + [SMALL_STATE(1598)] = 24584, + [SMALL_STATE(1599)] = 24664, + [SMALL_STATE(1600)] = 24746, + [SMALL_STATE(1601)] = 24832, + [SMALL_STATE(1602)] = 24912, + [SMALL_STATE(1603)] = 24992, + [SMALL_STATE(1604)] = 25072, + [SMALL_STATE(1605)] = 25152, + [SMALL_STATE(1606)] = 25232, + [SMALL_STATE(1607)] = 25316, + [SMALL_STATE(1608)] = 25396, + [SMALL_STATE(1609)] = 25476, + [SMALL_STATE(1610)] = 25556, + [SMALL_STATE(1611)] = 25636, + [SMALL_STATE(1612)] = 25696, + [SMALL_STATE(1613)] = 25784, + [SMALL_STATE(1614)] = 25864, + [SMALL_STATE(1615)] = 25952, + [SMALL_STATE(1616)] = 26038, + [SMALL_STATE(1617)] = 26124, + [SMALL_STATE(1618)] = 26184, + [SMALL_STATE(1619)] = 26268, + [SMALL_STATE(1620)] = 26358, + [SMALL_STATE(1621)] = 26446, + [SMALL_STATE(1622)] = 26534, + [SMALL_STATE(1623)] = 26612, [SMALL_STATE(1624)] = 26674, - [SMALL_STATE(1625)] = 26754, - [SMALL_STATE(1626)] = 26832, - [SMALL_STATE(1627)] = 26914, - [SMALL_STATE(1628)] = 26994, - [SMALL_STATE(1629)] = 27078, - [SMALL_STATE(1630)] = 27160, - [SMALL_STATE(1631)] = 27248, - [SMALL_STATE(1632)] = 27322, - [SMALL_STATE(1633)] = 27390, - [SMALL_STATE(1634)] = 27454, - [SMALL_STATE(1635)] = 27540, - [SMALL_STATE(1636)] = 27628, - [SMALL_STATE(1637)] = 27718, - [SMALL_STATE(1638)] = 27796, - [SMALL_STATE(1639)] = 27868, - [SMALL_STATE(1640)] = 27948, - [SMALL_STATE(1641)] = 28030, - [SMALL_STATE(1642)] = 28114, - [SMALL_STATE(1643)] = 28188, - [SMALL_STATE(1644)] = 28260, - [SMALL_STATE(1645)] = 28326, - [SMALL_STATE(1646)] = 28388, - [SMALL_STATE(1647)] = 28472, - [SMALL_STATE(1648)] = 28558, - [SMALL_STATE(1649)] = 28646, - [SMALL_STATE(1650)] = 28722, - [SMALL_STATE(1651)] = 28792, - [SMALL_STATE(1652)] = 28870, - [SMALL_STATE(1653)] = 28950, - [SMALL_STATE(1654)] = 29032, - [SMALL_STATE(1655)] = 29108, - [SMALL_STATE(1656)] = 29182, - [SMALL_STATE(1657)] = 29256, - [SMALL_STATE(1658)] = 29328, - [SMALL_STATE(1659)] = 29396, - [SMALL_STATE(1660)] = 29462, - [SMALL_STATE(1661)] = 29526, - [SMALL_STATE(1662)] = 29588, - [SMALL_STATE(1663)] = 29674, - [SMALL_STATE(1664)] = 29758, - [SMALL_STATE(1665)] = 29846, - [SMALL_STATE(1666)] = 29932, - [SMALL_STATE(1667)] = 30022, - [SMALL_STATE(1668)] = 30110, - [SMALL_STATE(1669)] = 30188, - [SMALL_STATE(1670)] = 30264, - [SMALL_STATE(1671)] = 30336, - [SMALL_STATE(1672)] = 30406, - [SMALL_STATE(1673)] = 30486, - [SMALL_STATE(1674)] = 30564, - [SMALL_STATE(1675)] = 30646, - [SMALL_STATE(1676)] = 30726, - [SMALL_STATE(1677)] = 30810, - [SMALL_STATE(1678)] = 30892, - [SMALL_STATE(1679)] = 30972, - [SMALL_STATE(1680)] = 31052, - [SMALL_STATE(1681)] = 31126, - [SMALL_STATE(1682)] = 31198, - [SMALL_STATE(1683)] = 31264, - [SMALL_STATE(1684)] = 31326, - [SMALL_STATE(1685)] = 31410, - [SMALL_STATE(1686)] = 31496, - [SMALL_STATE(1687)] = 31584, - [SMALL_STATE(1688)] = 31660, - [SMALL_STATE(1689)] = 31730, - [SMALL_STATE(1690)] = 31808, - [SMALL_STATE(1691)] = 31888, - [SMALL_STATE(1692)] = 31970, - [SMALL_STATE(1693)] = 32042, - [SMALL_STATE(1694)] = 32112, - [SMALL_STATE(1695)] = 32176, - [SMALL_STATE(1696)] = 32236, - [SMALL_STATE(1697)] = 32318, - [SMALL_STATE(1698)] = 32402, - [SMALL_STATE(1699)] = 32488, - [SMALL_STATE(1700)] = 32562, - [SMALL_STATE(1701)] = 32630, - [SMALL_STATE(1702)] = 32706, - [SMALL_STATE(1703)] = 32784, - [SMALL_STATE(1704)] = 32864, + [SMALL_STATE(1625)] = 26750, + [SMALL_STATE(1626)] = 26830, + [SMALL_STATE(1627)] = 26902, + [SMALL_STATE(1628)] = 26972, + [SMALL_STATE(1629)] = 27052, + [SMALL_STATE(1630)] = 27124, + [SMALL_STATE(1631)] = 27190, + [SMALL_STATE(1632)] = 27260, + [SMALL_STATE(1633)] = 27332, + [SMALL_STATE(1634)] = 27412, + [SMALL_STATE(1635)] = 27486, + [SMALL_STATE(1636)] = 27566, + [SMALL_STATE(1637)] = 27646, + [SMALL_STATE(1638)] = 27724, + [SMALL_STATE(1639)] = 27804, + [SMALL_STATE(1640)] = 27884, + [SMALL_STATE(1641)] = 27964, + [SMALL_STATE(1642)] = 28044, + [SMALL_STATE(1643)] = 28124, + [SMALL_STATE(1644)] = 28202, + [SMALL_STATE(1645)] = 28278, + [SMALL_STATE(1646)] = 28358, + [SMALL_STATE(1647)] = 28438, + [SMALL_STATE(1648)] = 28510, + [SMALL_STATE(1649)] = 28570, + [SMALL_STATE(1650)] = 28650, + [SMALL_STATE(1651)] = 28730, + [SMALL_STATE(1652)] = 28808, + [SMALL_STATE(1653)] = 28890, + [SMALL_STATE(1654)] = 28972, + [SMALL_STATE(1655)] = 29062, + [SMALL_STATE(1656)] = 29146, + [SMALL_STATE(1657)] = 29226, + [SMALL_STATE(1658)] = 29298, + [SMALL_STATE(1659)] = 29378, + [SMALL_STATE(1660)] = 29452, + [SMALL_STATE(1661)] = 29512, + [SMALL_STATE(1662)] = 29592, + [SMALL_STATE(1663)] = 29680, + [SMALL_STATE(1664)] = 29760, + [SMALL_STATE(1665)] = 29840, + [SMALL_STATE(1666)] = 29926, + [SMALL_STATE(1667)] = 30002, + [SMALL_STATE(1668)] = 30082, + [SMALL_STATE(1669)] = 30170, + [SMALL_STATE(1670)] = 30246, + [SMALL_STATE(1671)] = 30326, + [SMALL_STATE(1672)] = 30410, + [SMALL_STATE(1673)] = 30478, + [SMALL_STATE(1674)] = 30558, + [SMALL_STATE(1675)] = 30632, + [SMALL_STATE(1676)] = 30716, + [SMALL_STATE(1677)] = 30786, + [SMALL_STATE(1678)] = 30850, + [SMALL_STATE(1679)] = 30910, + [SMALL_STATE(1680)] = 30978, + [SMALL_STATE(1681)] = 31042, + [SMALL_STATE(1682)] = 31122, + [SMALL_STATE(1683)] = 31202, + [SMALL_STATE(1684)] = 31274, + [SMALL_STATE(1685)] = 31356, + [SMALL_STATE(1686)] = 31440, + [SMALL_STATE(1687)] = 31526, + [SMALL_STATE(1688)] = 31612, + [SMALL_STATE(1689)] = 31686, + [SMALL_STATE(1690)] = 31754, + [SMALL_STATE(1691)] = 31830, + [SMALL_STATE(1692)] = 31918, + [SMALL_STATE(1693)] = 31996, + [SMALL_STATE(1694)] = 32086, + [SMALL_STATE(1695)] = 32166, + [SMALL_STATE(1696)] = 32246, + [SMALL_STATE(1697)] = 32328, + [SMALL_STATE(1698)] = 32408, + [SMALL_STATE(1699)] = 32486, + [SMALL_STATE(1700)] = 32550, + [SMALL_STATE(1701)] = 32618, + [SMALL_STATE(1702)] = 32690, + [SMALL_STATE(1703)] = 32772, + [SMALL_STATE(1704)] = 32850, [SMALL_STATE(1705)] = 32924, [SMALL_STATE(1706)] = 33000, - [SMALL_STATE(1707)] = 33081, - [SMALL_STATE(1708)] = 33168, - [SMALL_STATE(1709)] = 33239, - [SMALL_STATE(1710)] = 33310, - [SMALL_STATE(1711)] = 33397, - [SMALL_STATE(1712)] = 33466, - [SMALL_STATE(1713)] = 33529, - [SMALL_STATE(1714)] = 33606, - [SMALL_STATE(1715)] = 33665, - [SMALL_STATE(1716)] = 33736, - [SMALL_STATE(1717)] = 33819, - [SMALL_STATE(1718)] = 33904, - [SMALL_STATE(1719)] = 33991, - [SMALL_STATE(1720)] = 34078, - [SMALL_STATE(1721)] = 34151, - [SMALL_STATE(1722)] = 34218, - [SMALL_STATE(1723)] = 34293, - [SMALL_STATE(1724)] = 34370, - [SMALL_STATE(1725)] = 34449, - [SMALL_STATE(1726)] = 34536, - [SMALL_STATE(1727)] = 34623, - [SMALL_STATE(1728)] = 34710, - [SMALL_STATE(1729)] = 34783, + [SMALL_STATE(1707)] = 33075, + [SMALL_STATE(1708)] = 33158, + [SMALL_STATE(1709)] = 33245, + [SMALL_STATE(1710)] = 33316, + [SMALL_STATE(1711)] = 33401, + [SMALL_STATE(1712)] = 33468, + [SMALL_STATE(1713)] = 33555, + [SMALL_STATE(1714)] = 33624, + [SMALL_STATE(1715)] = 33695, + [SMALL_STATE(1716)] = 33782, + [SMALL_STATE(1717)] = 33855, + [SMALL_STATE(1718)] = 33932, + [SMALL_STATE(1719)] = 34019, + [SMALL_STATE(1720)] = 34106, + [SMALL_STATE(1721)] = 34169, + [SMALL_STATE(1722)] = 34240, + [SMALL_STATE(1723)] = 34313, + [SMALL_STATE(1724)] = 34392, + [SMALL_STATE(1725)] = 34479, + [SMALL_STATE(1726)] = 34566, + [SMALL_STATE(1727)] = 34653, + [SMALL_STATE(1728)] = 34730, + [SMALL_STATE(1729)] = 34789, [SMALL_STATE(1730)] = 34870, [SMALL_STATE(1731)] = 34957, [SMALL_STATE(1732)] = 35044, [SMALL_STATE(1733)] = 35131, - [SMALL_STATE(1734)] = 35191, - [SMALL_STATE(1735)] = 35255, - [SMALL_STATE(1736)] = 35337, - [SMALL_STATE(1737)] = 35401, - [SMALL_STATE(1738)] = 35471, - [SMALL_STATE(1739)] = 35533, - [SMALL_STATE(1740)] = 35615, - [SMALL_STATE(1741)] = 35675, - [SMALL_STATE(1742)] = 35745, + [SMALL_STATE(1734)] = 35213, + [SMALL_STATE(1735)] = 35283, + [SMALL_STATE(1736)] = 35347, + [SMALL_STATE(1737)] = 35407, + [SMALL_STATE(1738)] = 35469, + [SMALL_STATE(1739)] = 35529, + [SMALL_STATE(1740)] = 35599, + [SMALL_STATE(1741)] = 35663, + [SMALL_STATE(1742)] = 35733, [SMALL_STATE(1743)] = 35815, [SMALL_STATE(1744)] = 35897, [SMALL_STATE(1745)] = 35961, [SMALL_STATE(1746)] = 36031, - [SMALL_STATE(1747)] = 36094, - [SMALL_STATE(1748)] = 36173, - [SMALL_STATE(1749)] = 36236, - [SMALL_STATE(1750)] = 36315, - [SMALL_STATE(1751)] = 36386, - [SMALL_STATE(1752)] = 36445, - [SMALL_STATE(1753)] = 36514, - [SMALL_STATE(1754)] = 36581, - [SMALL_STATE(1755)] = 36638, - [SMALL_STATE(1756)] = 36719, - [SMALL_STATE(1757)] = 36778, - [SMALL_STATE(1758)] = 36845, - [SMALL_STATE(1759)] = 36916, - [SMALL_STATE(1760)] = 36971, - [SMALL_STATE(1761)] = 37050, - [SMALL_STATE(1762)] = 37111, - [SMALL_STATE(1763)] = 37178, - [SMALL_STATE(1764)] = 37233, - [SMALL_STATE(1765)] = 37312, - [SMALL_STATE(1766)] = 37367, - [SMALL_STATE(1767)] = 37422, + [SMALL_STATE(1747)] = 36086, + [SMALL_STATE(1748)] = 36145, + [SMALL_STATE(1749)] = 36212, + [SMALL_STATE(1750)] = 36293, + [SMALL_STATE(1751)] = 36360, + [SMALL_STATE(1752)] = 36431, + [SMALL_STATE(1753)] = 36490, + [SMALL_STATE(1754)] = 36549, + [SMALL_STATE(1755)] = 36608, + [SMALL_STATE(1756)] = 36687, + [SMALL_STATE(1757)] = 36744, + [SMALL_STATE(1758)] = 36807, + [SMALL_STATE(1759)] = 36878, + [SMALL_STATE(1760)] = 36941, + [SMALL_STATE(1761)] = 37020, + [SMALL_STATE(1762)] = 37087, + [SMALL_STATE(1763)] = 37154, + [SMALL_STATE(1764)] = 37225, + [SMALL_STATE(1765)] = 37286, + [SMALL_STATE(1766)] = 37341, + [SMALL_STATE(1767)] = 37398, [SMALL_STATE(1768)] = 37477, - [SMALL_STATE(1769)] = 37556, - [SMALL_STATE(1770)] = 37619, - [SMALL_STATE(1771)] = 37686, - [SMALL_STATE(1772)] = 37753, + [SMALL_STATE(1769)] = 37532, + [SMALL_STATE(1770)] = 37601, + [SMALL_STATE(1771)] = 37682, + [SMALL_STATE(1772)] = 37761, [SMALL_STATE(1773)] = 37820, - [SMALL_STATE(1774)] = 37899, - [SMALL_STATE(1775)] = 37958, - [SMALL_STATE(1776)] = 38039, - [SMALL_STATE(1777)] = 38118, - [SMALL_STATE(1778)] = 38175, + [SMALL_STATE(1774)] = 37875, + [SMALL_STATE(1775)] = 37930, + [SMALL_STATE(1776)] = 38009, + [SMALL_STATE(1777)] = 38088, + [SMALL_STATE(1778)] = 38167, [SMALL_STATE(1779)] = 38246, - [SMALL_STATE(1780)] = 38305, - [SMALL_STATE(1781)] = 38384, - [SMALL_STATE(1782)] = 38455, - [SMALL_STATE(1783)] = 38514, - [SMALL_STATE(1784)] = 38593, - [SMALL_STATE(1785)] = 38664, - [SMALL_STATE(1786)] = 38743, - [SMALL_STATE(1787)] = 38804, - [SMALL_STATE(1788)] = 38883, + [SMALL_STATE(1780)] = 38309, + [SMALL_STATE(1781)] = 38364, + [SMALL_STATE(1782)] = 38425, + [SMALL_STATE(1783)] = 38504, + [SMALL_STATE(1784)] = 38571, + [SMALL_STATE(1785)] = 38650, + [SMALL_STATE(1786)] = 38729, + [SMALL_STATE(1787)] = 38796, + [SMALL_STATE(1788)] = 38867, [SMALL_STATE(1789)] = 38938, - [SMALL_STATE(1790)] = 39006, - [SMALL_STATE(1791)] = 39074, + [SMALL_STATE(1790)] = 39016, + [SMALL_STATE(1791)] = 39072, [SMALL_STATE(1792)] = 39128, - [SMALL_STATE(1793)] = 39206, - [SMALL_STATE(1794)] = 39264, - [SMALL_STATE(1795)] = 39332, - [SMALL_STATE(1796)] = 39386, - [SMALL_STATE(1797)] = 39446, - [SMALL_STATE(1798)] = 39502, - [SMALL_STATE(1799)] = 39556, - [SMALL_STATE(1800)] = 39634, - [SMALL_STATE(1801)] = 39692, - [SMALL_STATE(1802)] = 39770, - [SMALL_STATE(1803)] = 39848, - [SMALL_STATE(1804)] = 39926, - [SMALL_STATE(1805)] = 39982, - [SMALL_STATE(1806)] = 40036, - [SMALL_STATE(1807)] = 40114, - [SMALL_STATE(1808)] = 40168, - [SMALL_STATE(1809)] = 40236, - [SMALL_STATE(1810)] = 40292, - [SMALL_STATE(1811)] = 40348, - [SMALL_STATE(1812)] = 40426, - [SMALL_STATE(1813)] = 40480, - [SMALL_STATE(1814)] = 40548, - [SMALL_STATE(1815)] = 40602, - [SMALL_STATE(1816)] = 40680, - [SMALL_STATE(1817)] = 40734, - [SMALL_STATE(1818)] = 40790, - [SMALL_STATE(1819)] = 40868, - [SMALL_STATE(1820)] = 40922, - [SMALL_STATE(1821)] = 40978, - [SMALL_STATE(1822)] = 41036, - [SMALL_STATE(1823)] = 41104, - [SMALL_STATE(1824)] = 41182, - [SMALL_STATE(1825)] = 41250, - [SMALL_STATE(1826)] = 41328, + [SMALL_STATE(1793)] = 39182, + [SMALL_STATE(1794)] = 39238, + [SMALL_STATE(1795)] = 39292, + [SMALL_STATE(1796)] = 39346, + [SMALL_STATE(1797)] = 39404, + [SMALL_STATE(1798)] = 39482, + [SMALL_STATE(1799)] = 39550, + [SMALL_STATE(1800)] = 39628, + [SMALL_STATE(1801)] = 39682, + [SMALL_STATE(1802)] = 39736, + [SMALL_STATE(1803)] = 39814, + [SMALL_STATE(1804)] = 39892, + [SMALL_STATE(1805)] = 39948, + [SMALL_STATE(1806)] = 40006, + [SMALL_STATE(1807)] = 40060, + [SMALL_STATE(1808)] = 40128, + [SMALL_STATE(1809)] = 40188, + [SMALL_STATE(1810)] = 40266, + [SMALL_STATE(1811)] = 40320, + [SMALL_STATE(1812)] = 40398, + [SMALL_STATE(1813)] = 40476, + [SMALL_STATE(1814)] = 40554, + [SMALL_STATE(1815)] = 40632, + [SMALL_STATE(1816)] = 40688, + [SMALL_STATE(1817)] = 40766, + [SMALL_STATE(1818)] = 40834, + [SMALL_STATE(1819)] = 40890, + [SMALL_STATE(1820)] = 40958, + [SMALL_STATE(1821)] = 41012, + [SMALL_STATE(1822)] = 41090, + [SMALL_STATE(1823)] = 41144, + [SMALL_STATE(1824)] = 41212, + [SMALL_STATE(1825)] = 41280, + [SMALL_STATE(1826)] = 41348, [SMALL_STATE(1827)] = 41406, - [SMALL_STATE(1828)] = 41459, - [SMALL_STATE(1829)] = 41516, - [SMALL_STATE(1830)] = 41581, - [SMALL_STATE(1831)] = 41646, - [SMALL_STATE(1832)] = 41699, - [SMALL_STATE(1833)] = 41764, - [SMALL_STATE(1834)] = 41829, - [SMALL_STATE(1835)] = 41894, - [SMALL_STATE(1836)] = 41947, - [SMALL_STATE(1837)] = 42012, - [SMALL_STATE(1838)] = 42077, - [SMALL_STATE(1839)] = 42142, - [SMALL_STATE(1840)] = 42207, - [SMALL_STATE(1841)] = 42260, - [SMALL_STATE(1842)] = 42313, - [SMALL_STATE(1843)] = 42378, - [SMALL_STATE(1844)] = 42429, - [SMALL_STATE(1845)] = 42482, - [SMALL_STATE(1846)] = 42533, - [SMALL_STATE(1847)] = 42598, - [SMALL_STATE(1848)] = 42663, - [SMALL_STATE(1849)] = 42728, - [SMALL_STATE(1850)] = 42793, - [SMALL_STATE(1851)] = 42846, - [SMALL_STATE(1852)] = 42899, - [SMALL_STATE(1853)] = 42964, - [SMALL_STATE(1854)] = 43015, - [SMALL_STATE(1855)] = 43066, - [SMALL_STATE(1856)] = 43131, - [SMALL_STATE(1857)] = 43194, - [SMALL_STATE(1858)] = 43249, - [SMALL_STATE(1859)] = 43304, - [SMALL_STATE(1860)] = 43369, - [SMALL_STATE(1861)] = 43434, - [SMALL_STATE(1862)] = 43499, - [SMALL_STATE(1863)] = 43564, - [SMALL_STATE(1864)] = 43627, - [SMALL_STATE(1865)] = 43692, - [SMALL_STATE(1866)] = 43749, - [SMALL_STATE(1867)] = 43800, - [SMALL_STATE(1868)] = 43851, - [SMALL_STATE(1869)] = 43904, - [SMALL_STATE(1870)] = 43969, - [SMALL_STATE(1871)] = 44034, - [SMALL_STATE(1872)] = 44099, - [SMALL_STATE(1873)] = 44154, - [SMALL_STATE(1874)] = 44219, - [SMALL_STATE(1875)] = 44284, + [SMALL_STATE(1828)] = 41461, + [SMALL_STATE(1829)] = 41514, + [SMALL_STATE(1830)] = 41579, + [SMALL_STATE(1831)] = 41644, + [SMALL_STATE(1832)] = 41709, + [SMALL_STATE(1833)] = 41774, + [SMALL_STATE(1834)] = 41839, + [SMALL_STATE(1835)] = 41890, + [SMALL_STATE(1836)] = 41945, + [SMALL_STATE(1837)] = 41996, + [SMALL_STATE(1838)] = 42061, + [SMALL_STATE(1839)] = 42124, + [SMALL_STATE(1840)] = 42181, + [SMALL_STATE(1841)] = 42234, + [SMALL_STATE(1842)] = 42291, + [SMALL_STATE(1843)] = 42356, + [SMALL_STATE(1844)] = 42421, + [SMALL_STATE(1845)] = 42486, + [SMALL_STATE(1846)] = 42539, + [SMALL_STATE(1847)] = 42604, + [SMALL_STATE(1848)] = 42669, + [SMALL_STATE(1849)] = 42722, + [SMALL_STATE(1850)] = 42787, + [SMALL_STATE(1851)] = 42840, + [SMALL_STATE(1852)] = 42905, + [SMALL_STATE(1853)] = 42958, + [SMALL_STATE(1854)] = 43009, + [SMALL_STATE(1855)] = 43074, + [SMALL_STATE(1856)] = 43125, + [SMALL_STATE(1857)] = 43178, + [SMALL_STATE(1858)] = 43243, + [SMALL_STATE(1859)] = 43296, + [SMALL_STATE(1860)] = 43361, + [SMALL_STATE(1861)] = 43426, + [SMALL_STATE(1862)] = 43477, + [SMALL_STATE(1863)] = 43532, + [SMALL_STATE(1864)] = 43585, + [SMALL_STATE(1865)] = 43640, + [SMALL_STATE(1866)] = 43691, + [SMALL_STATE(1867)] = 43754, + [SMALL_STATE(1868)] = 43819, + [SMALL_STATE(1869)] = 43884, + [SMALL_STATE(1870)] = 43949, + [SMALL_STATE(1871)] = 44014, + [SMALL_STATE(1872)] = 44079, + [SMALL_STATE(1873)] = 44144, + [SMALL_STATE(1874)] = 44209, + [SMALL_STATE(1875)] = 44274, [SMALL_STATE(1876)] = 44339, - [SMALL_STATE(1877)] = 44399, - [SMALL_STATE(1878)] = 44451, - [SMALL_STATE(1879)] = 44511, - [SMALL_STATE(1880)] = 44563, - [SMALL_STATE(1881)] = 44615, - [SMALL_STATE(1882)] = 44667, - [SMALL_STATE(1883)] = 44721, - [SMALL_STATE(1884)] = 44773, - [SMALL_STATE(1885)] = 44825, - [SMALL_STATE(1886)] = 44877, - [SMALL_STATE(1887)] = 44929, - [SMALL_STATE(1888)] = 44981, - [SMALL_STATE(1889)] = 45033, - [SMALL_STATE(1890)] = 45095, - [SMALL_STATE(1891)] = 45157, - [SMALL_STATE(1892)] = 45209, + [SMALL_STATE(1877)] = 44391, + [SMALL_STATE(1878)] = 44445, + [SMALL_STATE(1879)] = 44505, + [SMALL_STATE(1880)] = 44559, + [SMALL_STATE(1881)] = 44611, + [SMALL_STATE(1882)] = 44673, + [SMALL_STATE(1883)] = 44725, + [SMALL_STATE(1884)] = 44777, + [SMALL_STATE(1885)] = 44829, + [SMALL_STATE(1886)] = 44881, + [SMALL_STATE(1887)] = 44933, + [SMALL_STATE(1888)] = 44985, + [SMALL_STATE(1889)] = 45037, + [SMALL_STATE(1890)] = 45097, + [SMALL_STATE(1891)] = 45149, + [SMALL_STATE(1892)] = 45201, [SMALL_STATE(1893)] = 45261, - [SMALL_STATE(1894)] = 45321, - [SMALL_STATE(1895)] = 45373, - [SMALL_STATE(1896)] = 45425, - [SMALL_STATE(1897)] = 45477, - [SMALL_STATE(1898)] = 45531, - [SMALL_STATE(1899)] = 45583, - [SMALL_STATE(1900)] = 45635, - [SMALL_STATE(1901)] = 45687, - [SMALL_STATE(1902)] = 45739, - [SMALL_STATE(1903)] = 45791, + [SMALL_STATE(1894)] = 45313, + [SMALL_STATE(1895)] = 45365, + [SMALL_STATE(1896)] = 45417, + [SMALL_STATE(1897)] = 45469, + [SMALL_STATE(1898)] = 45521, + [SMALL_STATE(1899)] = 45573, + [SMALL_STATE(1900)] = 45625, + [SMALL_STATE(1901)] = 45677, + [SMALL_STATE(1902)] = 45729, + [SMALL_STATE(1903)] = 45781, [SMALL_STATE(1904)] = 45843, [SMALL_STATE(1905)] = 45895, [SMALL_STATE(1906)] = 45955, [SMALL_STATE(1907)] = 46007, - [SMALL_STATE(1908)] = 46066, - [SMALL_STATE(1909)] = 46117, - [SMALL_STATE(1910)] = 46176, - [SMALL_STATE(1911)] = 46235, - [SMALL_STATE(1912)] = 46294, - [SMALL_STATE(1913)] = 46349, - [SMALL_STATE(1914)] = 46400, - [SMALL_STATE(1915)] = 46451, - [SMALL_STATE(1916)] = 46502, - [SMALL_STATE(1917)] = 46553, - [SMALL_STATE(1918)] = 46604, - [SMALL_STATE(1919)] = 46655, - [SMALL_STATE(1920)] = 46714, - [SMALL_STATE(1921)] = 46765, - [SMALL_STATE(1922)] = 46824, - [SMALL_STATE(1923)] = 46923, - [SMALL_STATE(1924)] = 46974, - [SMALL_STATE(1925)] = 47033, - [SMALL_STATE(1926)] = 47084, - [SMALL_STATE(1927)] = 47143, - [SMALL_STATE(1928)] = 47202, - [SMALL_STATE(1929)] = 47253, - [SMALL_STATE(1930)] = 47304, - [SMALL_STATE(1931)] = 47355, - [SMALL_STATE(1932)] = 47410, - [SMALL_STATE(1933)] = 47469, - [SMALL_STATE(1934)] = 47526, - [SMALL_STATE(1935)] = 47577, - [SMALL_STATE(1936)] = 47628, - [SMALL_STATE(1937)] = 47679, - [SMALL_STATE(1938)] = 47730, - [SMALL_STATE(1939)] = 47789, - [SMALL_STATE(1940)] = 47848, - [SMALL_STATE(1941)] = 47907, - [SMALL_STATE(1942)] = 47966, + [SMALL_STATE(1908)] = 46106, + [SMALL_STATE(1909)] = 46157, + [SMALL_STATE(1910)] = 46216, + [SMALL_STATE(1911)] = 46275, + [SMALL_STATE(1912)] = 46332, + [SMALL_STATE(1913)] = 46391, + [SMALL_STATE(1914)] = 46442, + [SMALL_STATE(1915)] = 46493, + [SMALL_STATE(1916)] = 46544, + [SMALL_STATE(1917)] = 46603, + [SMALL_STATE(1918)] = 46662, + [SMALL_STATE(1919)] = 46721, + [SMALL_STATE(1920)] = 46780, + [SMALL_STATE(1921)] = 46831, + [SMALL_STATE(1922)] = 46882, + [SMALL_STATE(1923)] = 46941, + [SMALL_STATE(1924)] = 47000, + [SMALL_STATE(1925)] = 47059, + [SMALL_STATE(1926)] = 47118, + [SMALL_STATE(1927)] = 47177, + [SMALL_STATE(1928)] = 47232, + [SMALL_STATE(1929)] = 47283, + [SMALL_STATE(1930)] = 47334, + [SMALL_STATE(1931)] = 47393, + [SMALL_STATE(1932)] = 47444, + [SMALL_STATE(1933)] = 47495, + [SMALL_STATE(1934)] = 47550, + [SMALL_STATE(1935)] = 47605, + [SMALL_STATE(1936)] = 47656, + [SMALL_STATE(1937)] = 47707, + [SMALL_STATE(1938)] = 47758, + [SMALL_STATE(1939)] = 47809, + [SMALL_STATE(1940)] = 47860, + [SMALL_STATE(1941)] = 47911, + [SMALL_STATE(1942)] = 47970, [SMALL_STATE(1943)] = 48021, [SMALL_STATE(1944)] = 48072, [SMALL_STATE(1945)] = 48123, [SMALL_STATE(1946)] = 48174, - [SMALL_STATE(1947)] = 48229, + [SMALL_STATE(1947)] = 48225, [SMALL_STATE(1948)] = 48280, - [SMALL_STATE(1949)] = 48376, - [SMALL_STATE(1950)] = 48430, - [SMALL_STATE(1951)] = 48482, - [SMALL_STATE(1952)] = 48532, - [SMALL_STATE(1953)] = 48584, - [SMALL_STATE(1954)] = 48636, - [SMALL_STATE(1955)] = 48690, - [SMALL_STATE(1956)] = 48744, - [SMALL_STATE(1957)] = 48800, - [SMALL_STATE(1958)] = 48850, - [SMALL_STATE(1959)] = 48900, - [SMALL_STATE(1960)] = 48954, - [SMALL_STATE(1961)] = 49008, - [SMALL_STATE(1962)] = 49058, - [SMALL_STATE(1963)] = 49108, - [SMALL_STATE(1964)] = 49158, - [SMALL_STATE(1965)] = 49208, - [SMALL_STATE(1966)] = 49304, - [SMALL_STATE(1967)] = 49356, + [SMALL_STATE(1949)] = 48334, + [SMALL_STATE(1950)] = 48388, + [SMALL_STATE(1951)] = 48440, + [SMALL_STATE(1952)] = 48496, + [SMALL_STATE(1953)] = 48550, + [SMALL_STATE(1954)] = 48606, + [SMALL_STATE(1955)] = 48658, + [SMALL_STATE(1956)] = 48708, + [SMALL_STATE(1957)] = 48758, + [SMALL_STATE(1958)] = 48854, + [SMALL_STATE(1959)] = 48950, + [SMALL_STATE(1960)] = 49004, + [SMALL_STATE(1961)] = 49056, + [SMALL_STATE(1962)] = 49106, + [SMALL_STATE(1963)] = 49156, + [SMALL_STATE(1964)] = 49206, + [SMALL_STATE(1965)] = 49258, + [SMALL_STATE(1966)] = 49312, + [SMALL_STATE(1967)] = 49362, [SMALL_STATE(1968)] = 49412, [SMALL_STATE(1969)] = 49463, - [SMALL_STATE(1970)] = 49514, - [SMALL_STATE(1971)] = 49567, - [SMALL_STATE(1972)] = 49620, - [SMALL_STATE(1973)] = 49673, - [SMALL_STATE(1974)] = 49768, - [SMALL_STATE(1975)] = 49823, - [SMALL_STATE(1976)] = 49876, - [SMALL_STATE(1977)] = 49927, - [SMALL_STATE(1978)] = 49982, - [SMALL_STATE(1979)] = 50035, - [SMALL_STATE(1980)] = 50086, - [SMALL_STATE(1981)] = 50135, - [SMALL_STATE(1982)] = 50188, - [SMALL_STATE(1983)] = 50243, - [SMALL_STATE(1984)] = 50292, - [SMALL_STATE(1985)] = 50345, - [SMALL_STATE(1986)] = 50398, - [SMALL_STATE(1987)] = 50451, - [SMALL_STATE(1988)] = 50504, - [SMALL_STATE(1989)] = 50557, - [SMALL_STATE(1990)] = 50608, - [SMALL_STATE(1991)] = 50663, - [SMALL_STATE(1992)] = 50718, - [SMALL_STATE(1993)] = 50771, - [SMALL_STATE(1994)] = 50824, - [SMALL_STATE(1995)] = 50877, - [SMALL_STATE(1996)] = 50930, - [SMALL_STATE(1997)] = 50983, - [SMALL_STATE(1998)] = 51036, - [SMALL_STATE(1999)] = 51089, - [SMALL_STATE(2000)] = 51138, - [SMALL_STATE(2001)] = 51195, - [SMALL_STATE(2002)] = 51246, - [SMALL_STATE(2003)] = 51299, - [SMALL_STATE(2004)] = 51352, - [SMALL_STATE(2005)] = 51405, - [SMALL_STATE(2006)] = 51454, - [SMALL_STATE(2007)] = 51507, - [SMALL_STATE(2008)] = 51556, - [SMALL_STATE(2009)] = 51605, - [SMALL_STATE(2010)] = 51658, - [SMALL_STATE(2011)] = 51711, - [SMALL_STATE(2012)] = 51764, - [SMALL_STATE(2013)] = 51813, - [SMALL_STATE(2014)] = 51866, - [SMALL_STATE(2015)] = 51915, - [SMALL_STATE(2016)] = 52010, - [SMALL_STATE(2017)] = 52063, + [SMALL_STATE(1970)] = 49518, + [SMALL_STATE(1971)] = 49573, + [SMALL_STATE(1972)] = 49624, + [SMALL_STATE(1973)] = 49679, + [SMALL_STATE(1974)] = 49732, + [SMALL_STATE(1975)] = 49785, + [SMALL_STATE(1976)] = 49838, + [SMALL_STATE(1977)] = 49887, + [SMALL_STATE(1978)] = 49940, + [SMALL_STATE(1979)] = 49993, + [SMALL_STATE(1980)] = 50046, + [SMALL_STATE(1981)] = 50095, + [SMALL_STATE(1982)] = 50148, + [SMALL_STATE(1983)] = 50201, + [SMALL_STATE(1984)] = 50256, + [SMALL_STATE(1985)] = 50305, + [SMALL_STATE(1986)] = 50358, + [SMALL_STATE(1987)] = 50411, + [SMALL_STATE(1988)] = 50460, + [SMALL_STATE(1989)] = 50513, + [SMALL_STATE(1990)] = 50564, + [SMALL_STATE(1991)] = 50613, + [SMALL_STATE(1992)] = 50666, + [SMALL_STATE(1993)] = 50721, + [SMALL_STATE(1994)] = 50772, + [SMALL_STATE(1995)] = 50823, + [SMALL_STATE(1996)] = 50876, + [SMALL_STATE(1997)] = 50929, + [SMALL_STATE(1998)] = 50978, + [SMALL_STATE(1999)] = 51073, + [SMALL_STATE(2000)] = 51124, + [SMALL_STATE(2001)] = 51177, + [SMALL_STATE(2002)] = 51230, + [SMALL_STATE(2003)] = 51279, + [SMALL_STATE(2004)] = 51332, + [SMALL_STATE(2005)] = 51385, + [SMALL_STATE(2006)] = 51438, + [SMALL_STATE(2007)] = 51491, + [SMALL_STATE(2008)] = 51542, + [SMALL_STATE(2009)] = 51595, + [SMALL_STATE(2010)] = 51690, + [SMALL_STATE(2011)] = 51739, + [SMALL_STATE(2012)] = 51792, + [SMALL_STATE(2013)] = 51845, + [SMALL_STATE(2014)] = 51902, + [SMALL_STATE(2015)] = 51955, + [SMALL_STATE(2016)] = 52008, + [SMALL_STATE(2017)] = 52061, [SMALL_STATE(2018)] = 52114, - [SMALL_STATE(2019)] = 52174, - [SMALL_STATE(2020)] = 52236, - [SMALL_STATE(2021)] = 52306, - [SMALL_STATE(2022)] = 52378, - [SMALL_STATE(2023)] = 52452, - [SMALL_STATE(2024)] = 52500, - [SMALL_STATE(2025)] = 52564, - [SMALL_STATE(2026)] = 52626, - [SMALL_STATE(2027)] = 52682, - [SMALL_STATE(2028)] = 52734, - [SMALL_STATE(2029)] = 52808, - [SMALL_STATE(2030)] = 52884, - [SMALL_STATE(2031)] = 52962, - [SMALL_STATE(2032)] = 53028, - [SMALL_STATE(2033)] = 53096, - [SMALL_STATE(2034)] = 53164, - [SMALL_STATE(2035)] = 53234, - [SMALL_STATE(2036)] = 53306, - [SMALL_STATE(2037)] = 53372, - [SMALL_STATE(2038)] = 53436, - [SMALL_STATE(2039)] = 53500, - [SMALL_STATE(2040)] = 53562, - [SMALL_STATE(2041)] = 53620, - [SMALL_STATE(2042)] = 53676, - [SMALL_STATE(2043)] = 53730, - [SMALL_STATE(2044)] = 53782, - [SMALL_STATE(2045)] = 53858, - [SMALL_STATE(2046)] = 53932, - [SMALL_STATE(2047)] = 54010, - [SMALL_STATE(2048)] = 54086, - [SMALL_STATE(2049)] = 54166, - [SMALL_STATE(2050)] = 54244, - [SMALL_STATE(2051)] = 54312, - [SMALL_STATE(2052)] = 54378, - [SMALL_STATE(2053)] = 54440, - [SMALL_STATE(2054)] = 54510, - [SMALL_STATE(2055)] = 54578, - [SMALL_STATE(2056)] = 54650, - [SMALL_STATE(2057)] = 54720, - [SMALL_STATE(2058)] = 54794, - [SMALL_STATE(2059)] = 54866, - [SMALL_STATE(2060)] = 54930, - [SMALL_STATE(2061)] = 54992, - [SMALL_STATE(2062)] = 55048, - [SMALL_STATE(2063)] = 55100, - [SMALL_STATE(2064)] = 55174, - [SMALL_STATE(2065)] = 55250, - [SMALL_STATE(2066)] = 55328, - [SMALL_STATE(2067)] = 55394, - [SMALL_STATE(2068)] = 55454, - [SMALL_STATE(2069)] = 55522, - [SMALL_STATE(2070)] = 55592, - [SMALL_STATE(2071)] = 55664, - [SMALL_STATE(2072)] = 55714, - [SMALL_STATE(2073)] = 55766, - [SMALL_STATE(2074)] = 55816, - [SMALL_STATE(2075)] = 55866, - [SMALL_STATE(2076)] = 55914, - [SMALL_STATE(2077)] = 55964, - [SMALL_STATE(2078)] = 56018, - [SMALL_STATE(2079)] = 56072, - [SMALL_STATE(2080)] = 56120, - [SMALL_STATE(2081)] = 56170, - [SMALL_STATE(2082)] = 56220, - [SMALL_STATE(2083)] = 56270, - [SMALL_STATE(2084)] = 56320, - [SMALL_STATE(2085)] = 56368, - [SMALL_STATE(2086)] = 56416, - [SMALL_STATE(2087)] = 56464, - [SMALL_STATE(2088)] = 56518, - [SMALL_STATE(2089)] = 56572, - [SMALL_STATE(2090)] = 56624, - [SMALL_STATE(2091)] = 56672, - [SMALL_STATE(2092)] = 56726, - [SMALL_STATE(2093)] = 56776, - [SMALL_STATE(2094)] = 56826, - [SMALL_STATE(2095)] = 56874, - [SMALL_STATE(2096)] = 56926, - [SMALL_STATE(2097)] = 56980, - [SMALL_STATE(2098)] = 57028, - [SMALL_STATE(2099)] = 57074, - [SMALL_STATE(2100)] = 57128, - [SMALL_STATE(2101)] = 57184, - [SMALL_STATE(2102)] = 57236, - [SMALL_STATE(2103)] = 57288, - [SMALL_STATE(2104)] = 57336, - [SMALL_STATE(2105)] = 57388, - [SMALL_STATE(2106)] = 57440, - [SMALL_STATE(2107)] = 57488, - [SMALL_STATE(2108)] = 57536, - [SMALL_STATE(2109)] = 57584, - [SMALL_STATE(2110)] = 57636, - [SMALL_STATE(2111)] = 57692, - [SMALL_STATE(2112)] = 57744, - [SMALL_STATE(2113)] = 57796, - [SMALL_STATE(2114)] = 57848, - [SMALL_STATE(2115)] = 57896, - [SMALL_STATE(2116)] = 57944, - [SMALL_STATE(2117)] = 58010, - [SMALL_STATE(2118)] = 58074, - [SMALL_STATE(2119)] = 58132, - [SMALL_STATE(2120)] = 58186, - [SMALL_STATE(2121)] = 58262, - [SMALL_STATE(2122)] = 58340, - [SMALL_STATE(2123)] = 58420, - [SMALL_STATE(2124)] = 58488, - [SMALL_STATE(2125)] = 58542, - [SMALL_STATE(2126)] = 58604, - [SMALL_STATE(2127)] = 58674, - [SMALL_STATE(2128)] = 58728, - [SMALL_STATE(2129)] = 58800, - [SMALL_STATE(2130)] = 58874, - [SMALL_STATE(2131)] = 58928, - [SMALL_STATE(2132)] = 58982, - [SMALL_STATE(2133)] = 59032, - [SMALL_STATE(2134)] = 59080, - [SMALL_STATE(2135)] = 59134, - [SMALL_STATE(2136)] = 59200, - [SMALL_STATE(2137)] = 59264, - [SMALL_STATE(2138)] = 59328, - [SMALL_STATE(2139)] = 59390, - [SMALL_STATE(2140)] = 59448, - [SMALL_STATE(2141)] = 59504, - [SMALL_STATE(2142)] = 59558, - [SMALL_STATE(2143)] = 59610, - [SMALL_STATE(2144)] = 59686, - [SMALL_STATE(2145)] = 59760, - [SMALL_STATE(2146)] = 59838, - [SMALL_STATE(2147)] = 59914, - [SMALL_STATE(2148)] = 59994, - [SMALL_STATE(2149)] = 60072, - [SMALL_STATE(2150)] = 60140, - [SMALL_STATE(2151)] = 60206, - [SMALL_STATE(2152)] = 60268, - [SMALL_STATE(2153)] = 60328, - [SMALL_STATE(2154)] = 60398, - [SMALL_STATE(2155)] = 60466, - [SMALL_STATE(2156)] = 60538, - [SMALL_STATE(2157)] = 60608, - [SMALL_STATE(2158)] = 60682, - [SMALL_STATE(2159)] = 60754, - [SMALL_STATE(2160)] = 60820, - [SMALL_STATE(2161)] = 60884, - [SMALL_STATE(2162)] = 60942, - [SMALL_STATE(2163)] = 60996, - [SMALL_STATE(2164)] = 61072, - [SMALL_STATE(2165)] = 61150, - [SMALL_STATE(2166)] = 61230, + [SMALL_STATE(2019)] = 52172, + [SMALL_STATE(2020)] = 52228, + [SMALL_STATE(2021)] = 52282, + [SMALL_STATE(2022)] = 52332, + [SMALL_STATE(2023)] = 52382, + [SMALL_STATE(2024)] = 52432, + [SMALL_STATE(2025)] = 52480, + [SMALL_STATE(2026)] = 52530, + [SMALL_STATE(2027)] = 52584, + [SMALL_STATE(2028)] = 52640, + [SMALL_STATE(2029)] = 52694, + [SMALL_STATE(2030)] = 52766, + [SMALL_STATE(2031)] = 52812, + [SMALL_STATE(2032)] = 52864, + [SMALL_STATE(2033)] = 52920, + [SMALL_STATE(2034)] = 52996, + [SMALL_STATE(2035)] = 53070, + [SMALL_STATE(2036)] = 53148, + [SMALL_STATE(2037)] = 53224, + [SMALL_STATE(2038)] = 53304, + [SMALL_STATE(2039)] = 53380, + [SMALL_STATE(2040)] = 53458, + [SMALL_STATE(2041)] = 53526, + [SMALL_STATE(2042)] = 53604, + [SMALL_STATE(2043)] = 53658, + [SMALL_STATE(2044)] = 53710, + [SMALL_STATE(2045)] = 53776, + [SMALL_STATE(2046)] = 53824, + [SMALL_STATE(2047)] = 53894, + [SMALL_STATE(2048)] = 53962, + [SMALL_STATE(2049)] = 54010, + [SMALL_STATE(2050)] = 54076, + [SMALL_STATE(2051)] = 54138, + [SMALL_STATE(2052)] = 54212, + [SMALL_STATE(2053)] = 54264, + [SMALL_STATE(2054)] = 54324, + [SMALL_STATE(2055)] = 54386, + [SMALL_STATE(2056)] = 54442, + [SMALL_STATE(2057)] = 54492, + [SMALL_STATE(2058)] = 54554, + [SMALL_STATE(2059)] = 54608, + [SMALL_STATE(2060)] = 54670, + [SMALL_STATE(2061)] = 54734, + [SMALL_STATE(2062)] = 54782, + [SMALL_STATE(2063)] = 54832, + [SMALL_STATE(2064)] = 54882, + [SMALL_STATE(2065)] = 54952, + [SMALL_STATE(2066)] = 55000, + [SMALL_STATE(2067)] = 55068, + [SMALL_STATE(2068)] = 55128, + [SMALL_STATE(2069)] = 55202, + [SMALL_STATE(2070)] = 55274, + [SMALL_STATE(2071)] = 55350, + [SMALL_STATE(2072)] = 55418, + [SMALL_STATE(2073)] = 55488, + [SMALL_STATE(2074)] = 55568, + [SMALL_STATE(2075)] = 55630, + [SMALL_STATE(2076)] = 55684, + [SMALL_STATE(2077)] = 55756, + [SMALL_STATE(2078)] = 55804, + [SMALL_STATE(2079)] = 55872, + [SMALL_STATE(2080)] = 55926, + [SMALL_STATE(2081)] = 55996, + [SMALL_STATE(2082)] = 56048, + [SMALL_STATE(2083)] = 56128, + [SMALL_STATE(2084)] = 56198, + [SMALL_STATE(2085)] = 56260, + [SMALL_STATE(2086)] = 56334, + [SMALL_STATE(2087)] = 56382, + [SMALL_STATE(2088)] = 56450, + [SMALL_STATE(2089)] = 56522, + [SMALL_STATE(2090)] = 56600, + [SMALL_STATE(2091)] = 56654, + [SMALL_STATE(2092)] = 56708, + [SMALL_STATE(2093)] = 56786, + [SMALL_STATE(2094)] = 56844, + [SMALL_STATE(2095)] = 56908, + [SMALL_STATE(2096)] = 56974, + [SMALL_STATE(2097)] = 57048, + [SMALL_STATE(2098)] = 57118, + [SMALL_STATE(2099)] = 57192, + [SMALL_STATE(2100)] = 57264, + [SMALL_STATE(2101)] = 57318, + [SMALL_STATE(2102)] = 57372, + [SMALL_STATE(2103)] = 57444, + [SMALL_STATE(2104)] = 57520, + [SMALL_STATE(2105)] = 57596, + [SMALL_STATE(2106)] = 57672, + [SMALL_STATE(2107)] = 57728, + [SMALL_STATE(2108)] = 57782, + [SMALL_STATE(2109)] = 57836, + [SMALL_STATE(2110)] = 57902, + [SMALL_STATE(2111)] = 57966, + [SMALL_STATE(2112)] = 58030, + [SMALL_STATE(2113)] = 58078, + [SMALL_STATE(2114)] = 58126, + [SMALL_STATE(2115)] = 58178, + [SMALL_STATE(2116)] = 58226, + [SMALL_STATE(2117)] = 58274, + [SMALL_STATE(2118)] = 58336, + [SMALL_STATE(2119)] = 58384, + [SMALL_STATE(2120)] = 58448, + [SMALL_STATE(2121)] = 58502, + [SMALL_STATE(2122)] = 58560, + [SMALL_STATE(2123)] = 58612, + [SMALL_STATE(2124)] = 58664, + [SMALL_STATE(2125)] = 58716, + [SMALL_STATE(2126)] = 58790, + [SMALL_STATE(2127)] = 58854, + [SMALL_STATE(2128)] = 58906, + [SMALL_STATE(2129)] = 58986, + [SMALL_STATE(2130)] = 59042, + [SMALL_STATE(2131)] = 59100, + [SMALL_STATE(2132)] = 59178, + [SMALL_STATE(2133)] = 59226, + [SMALL_STATE(2134)] = 59274, + [SMALL_STATE(2135)] = 59350, + [SMALL_STATE(2136)] = 59428, + [SMALL_STATE(2137)] = 59478, + [SMALL_STATE(2138)] = 59526, + [SMALL_STATE(2139)] = 59578, + [SMALL_STATE(2140)] = 59628, + [SMALL_STATE(2141)] = 59678, + [SMALL_STATE(2142)] = 59732, + [SMALL_STATE(2143)] = 59798, + [SMALL_STATE(2144)] = 59870, + [SMALL_STATE(2145)] = 59932, + [SMALL_STATE(2146)] = 59996, + [SMALL_STATE(2147)] = 60068, + [SMALL_STATE(2148)] = 60132, + [SMALL_STATE(2149)] = 60202, + [SMALL_STATE(2150)] = 60254, + [SMALL_STATE(2151)] = 60332, + [SMALL_STATE(2152)] = 60398, + [SMALL_STATE(2153)] = 60464, + [SMALL_STATE(2154)] = 60530, + [SMALL_STATE(2155)] = 60584, + [SMALL_STATE(2156)] = 60654, + [SMALL_STATE(2157)] = 60714, + [SMALL_STATE(2158)] = 60766, + [SMALL_STATE(2159)] = 60826, + [SMALL_STATE(2160)] = 60878, + [SMALL_STATE(2161)] = 60926, + [SMALL_STATE(2162)] = 61000, + [SMALL_STATE(2163)] = 61068, + [SMALL_STATE(2164)] = 61118, + [SMALL_STATE(2165)] = 61186, + [SMALL_STATE(2166)] = 61238, [SMALL_STATE(2167)] = 61290, [SMALL_STATE(2168)] = 61337, [SMALL_STATE(2169)] = 61384, [SMALL_STATE(2170)] = 61431, [SMALL_STATE(2171)] = 61478, - [SMALL_STATE(2172)] = 61525, - [SMALL_STATE(2173)] = 61572, - [SMALL_STATE(2174)] = 61619, - [SMALL_STATE(2175)] = 61666, - [SMALL_STATE(2176)] = 61713, - [SMALL_STATE(2177)] = 61760, - [SMALL_STATE(2178)] = 61807, - [SMALL_STATE(2179)] = 61854, - [SMALL_STATE(2180)] = 61901, - [SMALL_STATE(2181)] = 61948, - [SMALL_STATE(2182)] = 61995, - [SMALL_STATE(2183)] = 62042, - [SMALL_STATE(2184)] = 62089, - [SMALL_STATE(2185)] = 62136, - [SMALL_STATE(2186)] = 62185, - [SMALL_STATE(2187)] = 62232, - [SMALL_STATE(2188)] = 62279, - [SMALL_STATE(2189)] = 62326, - [SMALL_STATE(2190)] = 62373, - [SMALL_STATE(2191)] = 62424, - [SMALL_STATE(2192)] = 62471, - [SMALL_STATE(2193)] = 62518, - [SMALL_STATE(2194)] = 62565, - [SMALL_STATE(2195)] = 62612, - [SMALL_STATE(2196)] = 62659, - [SMALL_STATE(2197)] = 62706, - [SMALL_STATE(2198)] = 62753, - [SMALL_STATE(2199)] = 62800, - [SMALL_STATE(2200)] = 62847, - [SMALL_STATE(2201)] = 62892, - [SMALL_STATE(2202)] = 62941, - [SMALL_STATE(2203)] = 62988, - [SMALL_STATE(2204)] = 63035, - [SMALL_STATE(2205)] = 63114, - [SMALL_STATE(2206)] = 63161, - [SMALL_STATE(2207)] = 63208, - [SMALL_STATE(2208)] = 63287, - [SMALL_STATE(2209)] = 63334, - [SMALL_STATE(2210)] = 63381, - [SMALL_STATE(2211)] = 63428, - [SMALL_STATE(2212)] = 63475, - [SMALL_STATE(2213)] = 63522, - [SMALL_STATE(2214)] = 63569, - [SMALL_STATE(2215)] = 63616, - [SMALL_STATE(2216)] = 63695, - [SMALL_STATE(2217)] = 63774, - [SMALL_STATE(2218)] = 63853, + [SMALL_STATE(2172)] = 61557, + [SMALL_STATE(2173)] = 61604, + [SMALL_STATE(2174)] = 61651, + [SMALL_STATE(2175)] = 61698, + [SMALL_STATE(2176)] = 61745, + [SMALL_STATE(2177)] = 61792, + [SMALL_STATE(2178)] = 61839, + [SMALL_STATE(2179)] = 61886, + [SMALL_STATE(2180)] = 61933, + [SMALL_STATE(2181)] = 61980, + [SMALL_STATE(2182)] = 62027, + [SMALL_STATE(2183)] = 62074, + [SMALL_STATE(2184)] = 62121, + [SMALL_STATE(2185)] = 62168, + [SMALL_STATE(2186)] = 62215, + [SMALL_STATE(2187)] = 62262, + [SMALL_STATE(2188)] = 62309, + [SMALL_STATE(2189)] = 62354, + [SMALL_STATE(2190)] = 62433, + [SMALL_STATE(2191)] = 62480, + [SMALL_STATE(2192)] = 62527, + [SMALL_STATE(2193)] = 62606, + [SMALL_STATE(2194)] = 62653, + [SMALL_STATE(2195)] = 62732, + [SMALL_STATE(2196)] = 62779, + [SMALL_STATE(2197)] = 62826, + [SMALL_STATE(2198)] = 62873, + [SMALL_STATE(2199)] = 62952, + [SMALL_STATE(2200)] = 62999, + [SMALL_STATE(2201)] = 63078, + [SMALL_STATE(2202)] = 63125, + [SMALL_STATE(2203)] = 63172, + [SMALL_STATE(2204)] = 63219, + [SMALL_STATE(2205)] = 63270, + [SMALL_STATE(2206)] = 63317, + [SMALL_STATE(2207)] = 63366, + [SMALL_STATE(2208)] = 63413, + [SMALL_STATE(2209)] = 63460, + [SMALL_STATE(2210)] = 63507, + [SMALL_STATE(2211)] = 63554, + [SMALL_STATE(2212)] = 63601, + [SMALL_STATE(2213)] = 63650, + [SMALL_STATE(2214)] = 63697, + [SMALL_STATE(2215)] = 63744, + [SMALL_STATE(2216)] = 63791, + [SMALL_STATE(2217)] = 63838, + [SMALL_STATE(2218)] = 63885, [SMALL_STATE(2219)] = 63932, [SMALL_STATE(2220)] = 63979, - [SMALL_STATE(2221)] = 64045, - [SMALL_STATE(2222)] = 64097, - [SMALL_STATE(2223)] = 64145, - [SMALL_STATE(2224)] = 64215, - [SMALL_STATE(2225)] = 64287, - [SMALL_STATE(2226)] = 64343, - [SMALL_STATE(2227)] = 64435, - [SMALL_STATE(2228)] = 64509, - [SMALL_STATE(2229)] = 64581, - [SMALL_STATE(2230)] = 64643, - [SMALL_STATE(2231)] = 64699, - [SMALL_STATE(2232)] = 64763, - [SMALL_STATE(2233)] = 64827, - [SMALL_STATE(2234)] = 64895, - [SMALL_STATE(2235)] = 64961, - [SMALL_STATE(2236)] = 65035, - [SMALL_STATE(2237)] = 65083, - [SMALL_STATE(2238)] = 65143, - [SMALL_STATE(2239)] = 65235, - [SMALL_STATE(2240)] = 65305, - [SMALL_STATE(2241)] = 65373, - [SMALL_STATE(2242)] = 65421, - [SMALL_STATE(2243)] = 65513, - [SMALL_STATE(2244)] = 65561, - [SMALL_STATE(2245)] = 65653, - [SMALL_STATE(2246)] = 65701, - [SMALL_STATE(2247)] = 65749, - [SMALL_STATE(2248)] = 65797, - [SMALL_STATE(2249)] = 65845, - [SMALL_STATE(2250)] = 65893, - [SMALL_STATE(2251)] = 65939, - [SMALL_STATE(2252)] = 65987, - [SMALL_STATE(2253)] = 66045, - [SMALL_STATE(2254)] = 66107, - [SMALL_STATE(2255)] = 66167, - [SMALL_STATE(2256)] = 66215, - [SMALL_STATE(2257)] = 66267, + [SMALL_STATE(2221)] = 64071, + [SMALL_STATE(2222)] = 64119, + [SMALL_STATE(2223)] = 64167, + [SMALL_STATE(2224)] = 64259, + [SMALL_STATE(2225)] = 64325, + [SMALL_STATE(2226)] = 64373, + [SMALL_STATE(2227)] = 64465, + [SMALL_STATE(2228)] = 64513, + [SMALL_STATE(2229)] = 64559, + [SMALL_STATE(2230)] = 64607, + [SMALL_STATE(2231)] = 64655, + [SMALL_STATE(2232)] = 64703, + [SMALL_STATE(2233)] = 64771, + [SMALL_STATE(2234)] = 64863, + [SMALL_STATE(2235)] = 64929, + [SMALL_STATE(2236)] = 64977, + [SMALL_STATE(2237)] = 65045, + [SMALL_STATE(2238)] = 65109, + [SMALL_STATE(2239)] = 65165, + [SMALL_STATE(2240)] = 65229, + [SMALL_STATE(2241)] = 65291, + [SMALL_STATE(2242)] = 65363, + [SMALL_STATE(2243)] = 65411, + [SMALL_STATE(2244)] = 65467, + [SMALL_STATE(2245)] = 65527, + [SMALL_STATE(2246)] = 65585, + [SMALL_STATE(2247)] = 65637, + [SMALL_STATE(2248)] = 65695, + [SMALL_STATE(2249)] = 65757, + [SMALL_STATE(2250)] = 65817, + [SMALL_STATE(2251)] = 65891, + [SMALL_STATE(2252)] = 65939, + [SMALL_STATE(2253)] = 66011, + [SMALL_STATE(2254)] = 66081, + [SMALL_STATE(2255)] = 66151, + [SMALL_STATE(2256)] = 66199, + [SMALL_STATE(2257)] = 66251, [SMALL_STATE(2258)] = 66325, [SMALL_STATE(2259)] = 66398, [SMALL_STATE(2260)] = 66449, - [SMALL_STATE(2261)] = 66522, - [SMALL_STATE(2262)] = 66595, - [SMALL_STATE(2263)] = 66668, + [SMALL_STATE(2261)] = 66494, + [SMALL_STATE(2262)] = 66567, + [SMALL_STATE(2263)] = 66640, [SMALL_STATE(2264)] = 66713, [SMALL_STATE(2265)] = 66786, [SMALL_STATE(2266)] = 66859, - [SMALL_STATE(2267)] = 66913, - [SMALL_STATE(2268)] = 66959, - [SMALL_STATE(2269)] = 67013, - [SMALL_STATE(2270)] = 67063, - [SMALL_STATE(2271)] = 67113, - [SMALL_STATE(2272)] = 67199, - [SMALL_STATE(2273)] = 67253, - [SMALL_STATE(2274)] = 67299, + [SMALL_STATE(2267)] = 66909, + [SMALL_STATE(2268)] = 66955, + [SMALL_STATE(2269)] = 67001, + [SMALL_STATE(2270)] = 67055, + [SMALL_STATE(2271)] = 67109, + [SMALL_STATE(2272)] = 67159, + [SMALL_STATE(2273)] = 67245, + [SMALL_STATE(2274)] = 67295, [SMALL_STATE(2275)] = 67349, [SMALL_STATE(2276)] = 67399, [SMALL_STATE(2277)] = 67442, - [SMALL_STATE(2278)] = 67491, - [SMALL_STATE(2279)] = 67536, + [SMALL_STATE(2278)] = 67485, + [SMALL_STATE(2279)] = 67534, [SMALL_STATE(2280)] = 67583, - [SMALL_STATE(2281)] = 67634, - [SMALL_STATE(2282)] = 67677, - [SMALL_STATE(2283)] = 67720, - [SMALL_STATE(2284)] = 67765, - [SMALL_STATE(2285)] = 67808, - [SMALL_STATE(2286)] = 67851, - [SMALL_STATE(2287)] = 67900, - [SMALL_STATE(2288)] = 67949, - [SMALL_STATE(2289)] = 67992, - [SMALL_STATE(2290)] = 68041, - [SMALL_STATE(2291)] = 68090, - [SMALL_STATE(2292)] = 68133, - [SMALL_STATE(2293)] = 68176, + [SMALL_STATE(2281)] = 67626, + [SMALL_STATE(2282)] = 67669, + [SMALL_STATE(2283)] = 67714, + [SMALL_STATE(2284)] = 67763, + [SMALL_STATE(2285)] = 67814, + [SMALL_STATE(2286)] = 67863, + [SMALL_STATE(2287)] = 67912, + [SMALL_STATE(2288)] = 67961, + [SMALL_STATE(2289)] = 68004, + [SMALL_STATE(2290)] = 68047, + [SMALL_STATE(2291)] = 68092, + [SMALL_STATE(2292)] = 68135, + [SMALL_STATE(2293)] = 68182, [SMALL_STATE(2294)] = 68225, - [SMALL_STATE(2295)] = 68303, + [SMALL_STATE(2295)] = 68267, [SMALL_STATE(2296)] = 68347, - [SMALL_STATE(2297)] = 68427, - [SMALL_STATE(2298)] = 68507, - [SMALL_STATE(2299)] = 68553, - [SMALL_STATE(2300)] = 68595, + [SMALL_STATE(2297)] = 68391, + [SMALL_STATE(2298)] = 68437, + [SMALL_STATE(2299)] = 68479, + [SMALL_STATE(2300)] = 68559, [SMALL_STATE(2301)] = 68637, [SMALL_STATE(2302)] = 68682, [SMALL_STATE(2303)] = 68727, [SMALL_STATE(2304)] = 68768, [SMALL_STATE(2305)] = 68812, - [SMALL_STATE(2306)] = 68894, - [SMALL_STATE(2307)] = 68938, - [SMALL_STATE(2308)] = 68982, - [SMALL_STATE(2309)] = 69026, + [SMALL_STATE(2306)] = 68852, + [SMALL_STATE(2307)] = 68896, + [SMALL_STATE(2308)] = 68940, + [SMALL_STATE(2309)] = 68984, [SMALL_STATE(2310)] = 69066, [SMALL_STATE(2311)] = 69148, [SMALL_STATE(2312)] = 69193, - [SMALL_STATE(2313)] = 69239, - [SMALL_STATE(2314)] = 69315, - [SMALL_STATE(2315)] = 69361, - [SMALL_STATE(2316)] = 69407, - [SMALL_STATE(2317)] = 69483, - [SMALL_STATE(2318)] = 69559, - [SMALL_STATE(2319)] = 69635, - [SMALL_STATE(2320)] = 69687, - [SMALL_STATE(2321)] = 69763, - [SMALL_STATE(2322)] = 69839, - [SMALL_STATE(2323)] = 69915, - [SMALL_STATE(2324)] = 69991, - [SMALL_STATE(2325)] = 70067, - [SMALL_STATE(2326)] = 70143, - [SMALL_STATE(2327)] = 70219, - [SMALL_STATE(2328)] = 70295, - [SMALL_STATE(2329)] = 70371, - [SMALL_STATE(2330)] = 70447, - [SMALL_STATE(2331)] = 70523, - [SMALL_STATE(2332)] = 70599, - [SMALL_STATE(2333)] = 70675, - [SMALL_STATE(2334)] = 70751, - [SMALL_STATE(2335)] = 70827, - [SMALL_STATE(2336)] = 70871, - [SMALL_STATE(2337)] = 70947, - [SMALL_STATE(2338)] = 71023, - [SMALL_STATE(2339)] = 71099, - [SMALL_STATE(2340)] = 71175, - [SMALL_STATE(2341)] = 71217, + [SMALL_STATE(2313)] = 69269, + [SMALL_STATE(2314)] = 69345, + [SMALL_STATE(2315)] = 69421, + [SMALL_STATE(2316)] = 69473, + [SMALL_STATE(2317)] = 69549, + [SMALL_STATE(2318)] = 69625, + [SMALL_STATE(2319)] = 69701, + [SMALL_STATE(2320)] = 69747, + [SMALL_STATE(2321)] = 69823, + [SMALL_STATE(2322)] = 69899, + [SMALL_STATE(2323)] = 69975, + [SMALL_STATE(2324)] = 70051, + [SMALL_STATE(2325)] = 70127, + [SMALL_STATE(2326)] = 70203, + [SMALL_STATE(2327)] = 70279, + [SMALL_STATE(2328)] = 70355, + [SMALL_STATE(2329)] = 70431, + [SMALL_STATE(2330)] = 70507, + [SMALL_STATE(2331)] = 70583, + [SMALL_STATE(2332)] = 70659, + [SMALL_STATE(2333)] = 70735, + [SMALL_STATE(2334)] = 70811, + [SMALL_STATE(2335)] = 70887, + [SMALL_STATE(2336)] = 70933, + [SMALL_STATE(2337)] = 71009, + [SMALL_STATE(2338)] = 71053, + [SMALL_STATE(2339)] = 71129, + [SMALL_STATE(2340)] = 71205, + [SMALL_STATE(2341)] = 71251, [SMALL_STATE(2342)] = 71293, [SMALL_STATE(2343)] = 71369, [SMALL_STATE(2344)] = 71445, [SMALL_STATE(2345)] = 71484, - [SMALL_STATE(2346)] = 71533, + [SMALL_STATE(2346)] = 71535, [SMALL_STATE(2347)] = 71584, [SMALL_STATE(2348)] = 71633, [SMALL_STATE(2349)] = 71682, [SMALL_STATE(2350)] = 71752, [SMALL_STATE(2351)] = 71822, - [SMALL_STATE(2352)] = 71870, - [SMALL_STATE(2353)] = 71940, - [SMALL_STATE(2354)] = 71980, - [SMALL_STATE(2355)] = 72020, - [SMALL_STATE(2356)] = 72068, - [SMALL_STATE(2357)] = 72116, - [SMALL_STATE(2358)] = 72162, - [SMALL_STATE(2359)] = 72208, - [SMALL_STATE(2360)] = 72254, - [SMALL_STATE(2361)] = 72300, - [SMALL_STATE(2362)] = 72370, - [SMALL_STATE(2363)] = 72440, - [SMALL_STATE(2364)] = 72510, - [SMALL_STATE(2365)] = 72580, - [SMALL_STATE(2366)] = 72650, - [SMALL_STATE(2367)] = 72704, - [SMALL_STATE(2368)] = 72774, - [SMALL_STATE(2369)] = 72844, - [SMALL_STATE(2370)] = 72914, + [SMALL_STATE(2352)] = 71868, + [SMALL_STATE(2353)] = 71908, + [SMALL_STATE(2354)] = 71956, + [SMALL_STATE(2355)] = 72002, + [SMALL_STATE(2356)] = 72072, + [SMALL_STATE(2357)] = 72142, + [SMALL_STATE(2358)] = 72212, + [SMALL_STATE(2359)] = 72282, + [SMALL_STATE(2360)] = 72352, + [SMALL_STATE(2361)] = 72398, + [SMALL_STATE(2362)] = 72444, + [SMALL_STATE(2363)] = 72514, + [SMALL_STATE(2364)] = 72584, + [SMALL_STATE(2365)] = 72638, + [SMALL_STATE(2366)] = 72686, + [SMALL_STATE(2367)] = 72756, + [SMALL_STATE(2368)] = 72826, + [SMALL_STATE(2369)] = 72896, + [SMALL_STATE(2370)] = 72936, [SMALL_STATE(2371)] = 72984, - [SMALL_STATE(2372)] = 73037, - [SMALL_STATE(2373)] = 73084, - [SMALL_STATE(2374)] = 73121, - [SMALL_STATE(2375)] = 73158, - [SMALL_STATE(2376)] = 73209, - [SMALL_STATE(2377)] = 73254, - [SMALL_STATE(2378)] = 73299, - [SMALL_STATE(2379)] = 73344, - [SMALL_STATE(2380)] = 73389, - [SMALL_STATE(2381)] = 73428, - [SMALL_STATE(2382)] = 73479, - [SMALL_STATE(2383)] = 73530, + [SMALL_STATE(2372)] = 73029, + [SMALL_STATE(2373)] = 73074, + [SMALL_STATE(2374)] = 73125, + [SMALL_STATE(2375)] = 73172, + [SMALL_STATE(2376)] = 73225, + [SMALL_STATE(2377)] = 73270, + [SMALL_STATE(2378)] = 73307, + [SMALL_STATE(2379)] = 73346, + [SMALL_STATE(2380)] = 73383, + [SMALL_STATE(2381)] = 73422, + [SMALL_STATE(2382)] = 73467, + [SMALL_STATE(2383)] = 73518, [SMALL_STATE(2384)] = 73569, - [SMALL_STATE(2385)] = 73603, - [SMALL_STATE(2386)] = 73639, - [SMALL_STATE(2387)] = 73677, - [SMALL_STATE(2388)] = 73715, - [SMALL_STATE(2389)] = 73761, - [SMALL_STATE(2390)] = 73795, - [SMALL_STATE(2391)] = 73843, - [SMALL_STATE(2392)] = 73891, - [SMALL_STATE(2393)] = 73939, - [SMALL_STATE(2394)] = 73977, - [SMALL_STATE(2395)] = 74011, - [SMALL_STATE(2396)] = 74045, - [SMALL_STATE(2397)] = 74079, - [SMALL_STATE(2398)] = 74127, - [SMALL_STATE(2399)] = 74177, - [SMALL_STATE(2400)] = 74227, - [SMALL_STATE(2401)] = 74261, - [SMALL_STATE(2402)] = 74301, - [SMALL_STATE(2403)] = 74351, - [SMALL_STATE(2404)] = 74391, - [SMALL_STATE(2405)] = 74429, - [SMALL_STATE(2406)] = 74469, - [SMALL_STATE(2407)] = 74505, - [SMALL_STATE(2408)] = 74543, - [SMALL_STATE(2409)] = 74585, - [SMALL_STATE(2410)] = 74619, - [SMALL_STATE(2411)] = 74653, + [SMALL_STATE(2385)] = 73607, + [SMALL_STATE(2386)] = 73649, + [SMALL_STATE(2387)] = 73687, + [SMALL_STATE(2388)] = 73727, + [SMALL_STATE(2389)] = 73763, + [SMALL_STATE(2390)] = 73811, + [SMALL_STATE(2391)] = 73859, + [SMALL_STATE(2392)] = 73899, + [SMALL_STATE(2393)] = 73947, + [SMALL_STATE(2394)] = 73983, + [SMALL_STATE(2395)] = 74033, + [SMALL_STATE(2396)] = 74083, + [SMALL_STATE(2397)] = 74117, + [SMALL_STATE(2398)] = 74151, + [SMALL_STATE(2399)] = 74185, + [SMALL_STATE(2400)] = 74219, + [SMALL_STATE(2401)] = 74253, + [SMALL_STATE(2402)] = 74291, + [SMALL_STATE(2403)] = 74331, + [SMALL_STATE(2404)] = 74369, + [SMALL_STATE(2405)] = 74403, + [SMALL_STATE(2406)] = 74437, + [SMALL_STATE(2407)] = 74487, + [SMALL_STATE(2408)] = 74535, + [SMALL_STATE(2409)] = 74573, + [SMALL_STATE(2410)] = 74607, + [SMALL_STATE(2411)] = 74641, [SMALL_STATE(2412)] = 74687, - [SMALL_STATE(2413)] = 74734, - [SMALL_STATE(2414)] = 74781, - [SMALL_STATE(2415)] = 74814, - [SMALL_STATE(2416)] = 74851, - [SMALL_STATE(2417)] = 74888, - [SMALL_STATE(2418)] = 74929, - [SMALL_STATE(2419)] = 74976, - [SMALL_STATE(2420)] = 75013, - [SMALL_STATE(2421)] = 75064, - [SMALL_STATE(2422)] = 75103, - [SMALL_STATE(2423)] = 75138, - [SMALL_STATE(2424)] = 75179, - [SMALL_STATE(2425)] = 75214, - [SMALL_STATE(2426)] = 75261, - [SMALL_STATE(2427)] = 75298, - [SMALL_STATE(2428)] = 75345, - [SMALL_STATE(2429)] = 75382, - [SMALL_STATE(2430)] = 75417, - [SMALL_STATE(2431)] = 75456, - [SMALL_STATE(2432)] = 75495, - [SMALL_STATE(2433)] = 75534, - [SMALL_STATE(2434)] = 75573, - [SMALL_STATE(2435)] = 75612, - [SMALL_STATE(2436)] = 75651, - [SMALL_STATE(2437)] = 75686, - [SMALL_STATE(2438)] = 75719, - [SMALL_STATE(2439)] = 75752, + [SMALL_STATE(2413)] = 74728, + [SMALL_STATE(2414)] = 74763, + [SMALL_STATE(2415)] = 74798, + [SMALL_STATE(2416)] = 74833, + [SMALL_STATE(2417)] = 74868, + [SMALL_STATE(2418)] = 74907, + [SMALL_STATE(2419)] = 74958, + [SMALL_STATE(2420)] = 75005, + [SMALL_STATE(2421)] = 75052, + [SMALL_STATE(2422)] = 75091, + [SMALL_STATE(2423)] = 75126, + [SMALL_STATE(2424)] = 75159, + [SMALL_STATE(2425)] = 75198, + [SMALL_STATE(2426)] = 75235, + [SMALL_STATE(2427)] = 75274, + [SMALL_STATE(2428)] = 75313, + [SMALL_STATE(2429)] = 75360, + [SMALL_STATE(2430)] = 75393, + [SMALL_STATE(2431)] = 75432, + [SMALL_STATE(2432)] = 75469, + [SMALL_STATE(2433)] = 75516, + [SMALL_STATE(2434)] = 75563, + [SMALL_STATE(2435)] = 75602, + [SMALL_STATE(2436)] = 75643, + [SMALL_STATE(2437)] = 75680, + [SMALL_STATE(2438)] = 75717, + [SMALL_STATE(2439)] = 75750, [SMALL_STATE(2440)] = 75787, - [SMALL_STATE(2441)] = 75827, - [SMALL_STATE(2442)] = 75861, - [SMALL_STATE(2443)] = 75901, - [SMALL_STATE(2444)] = 75937, - [SMALL_STATE(2445)] = 75973, - [SMALL_STATE(2446)] = 76005, - [SMALL_STATE(2447)] = 76053, - [SMALL_STATE(2448)] = 76089, + [SMALL_STATE(2441)] = 75835, + [SMALL_STATE(2442)] = 75867, + [SMALL_STATE(2443)] = 75903, + [SMALL_STATE(2444)] = 75941, + [SMALL_STATE(2445)] = 75977, + [SMALL_STATE(2446)] = 76011, + [SMALL_STATE(2447)] = 76047, + [SMALL_STATE(2448)] = 76083, [SMALL_STATE(2449)] = 76121, - [SMALL_STATE(2450)] = 76153, - [SMALL_STATE(2451)] = 76191, + [SMALL_STATE(2450)] = 76159, + [SMALL_STATE(2451)] = 76193, [SMALL_STATE(2452)] = 76225, [SMALL_STATE(2453)] = 76257, - [SMALL_STATE(2454)] = 76289, - [SMALL_STATE(2455)] = 76321, - [SMALL_STATE(2456)] = 76359, - [SMALL_STATE(2457)] = 76391, - [SMALL_STATE(2458)] = 76429, - [SMALL_STATE(2459)] = 76467, - [SMALL_STATE(2460)] = 76505, - [SMALL_STATE(2461)] = 76541, - [SMALL_STATE(2462)] = 76579, - [SMALL_STATE(2463)] = 76613, - [SMALL_STATE(2464)] = 76653, - [SMALL_STATE(2465)] = 76701, - [SMALL_STATE(2466)] = 76733, - [SMALL_STATE(2467)] = 76779, - [SMALL_STATE(2468)] = 76827, - [SMALL_STATE(2469)] = 76861, - [SMALL_STATE(2470)] = 76897, - [SMALL_STATE(2471)] = 76931, - [SMALL_STATE(2472)] = 76965, - [SMALL_STATE(2473)] = 76999, - [SMALL_STATE(2474)] = 77037, - [SMALL_STATE(2475)] = 77073, - [SMALL_STATE(2476)] = 77105, - [SMALL_STATE(2477)] = 77143, + [SMALL_STATE(2454)] = 76295, + [SMALL_STATE(2455)] = 76327, + [SMALL_STATE(2456)] = 76365, + [SMALL_STATE(2457)] = 76397, + [SMALL_STATE(2458)] = 76437, + [SMALL_STATE(2459)] = 76485, + [SMALL_STATE(2460)] = 76517, + [SMALL_STATE(2461)] = 76555, + [SMALL_STATE(2462)] = 76587, + [SMALL_STATE(2463)] = 76625, + [SMALL_STATE(2464)] = 76665, + [SMALL_STATE(2465)] = 76703, + [SMALL_STATE(2466)] = 76735, + [SMALL_STATE(2467)] = 76775, + [SMALL_STATE(2468)] = 76809, + [SMALL_STATE(2469)] = 76843, + [SMALL_STATE(2470)] = 76877, + [SMALL_STATE(2471)] = 76911, + [SMALL_STATE(2472)] = 76943, + [SMALL_STATE(2473)] = 76979, + [SMALL_STATE(2474)] = 77015, + [SMALL_STATE(2475)] = 77063, + [SMALL_STATE(2476)] = 77101, + [SMALL_STATE(2477)] = 77147, [SMALL_STATE(2478)] = 77181, - [SMALL_STATE(2479)] = 77218, - [SMALL_STATE(2480)] = 77249, - [SMALL_STATE(2481)] = 77284, - [SMALL_STATE(2482)] = 77321, - [SMALL_STATE(2483)] = 77360, - [SMALL_STATE(2484)] = 77395, - [SMALL_STATE(2485)] = 77426, - [SMALL_STATE(2486)] = 77455, - [SMALL_STATE(2487)] = 77484, - [SMALL_STATE(2488)] = 77513, - [SMALL_STATE(2489)] = 77546, - [SMALL_STATE(2490)] = 77581, - [SMALL_STATE(2491)] = 77616, - [SMALL_STATE(2492)] = 77649, - [SMALL_STATE(2493)] = 77680, - [SMALL_STATE(2494)] = 77711, - [SMALL_STATE(2495)] = 77742, - [SMALL_STATE(2496)] = 77781, - [SMALL_STATE(2497)] = 77814, - [SMALL_STATE(2498)] = 77859, - [SMALL_STATE(2499)] = 77904, - [SMALL_STATE(2500)] = 77941, - [SMALL_STATE(2501)] = 77972, - [SMALL_STATE(2502)] = 78017, - [SMALL_STATE(2503)] = 78048, - [SMALL_STATE(2504)] = 78079, - [SMALL_STATE(2505)] = 78110, - [SMALL_STATE(2506)] = 78155, + [SMALL_STATE(2479)] = 77212, + [SMALL_STATE(2480)] = 77247, + [SMALL_STATE(2481)] = 77280, + [SMALL_STATE(2482)] = 77317, + [SMALL_STATE(2483)] = 77354, + [SMALL_STATE(2484)] = 77387, + [SMALL_STATE(2485)] = 77432, + [SMALL_STATE(2486)] = 77463, + [SMALL_STATE(2487)] = 77494, + [SMALL_STATE(2488)] = 77535, + [SMALL_STATE(2489)] = 77566, + [SMALL_STATE(2490)] = 77597, + [SMALL_STATE(2491)] = 77628, + [SMALL_STATE(2492)] = 77667, + [SMALL_STATE(2493)] = 77698, + [SMALL_STATE(2494)] = 77731, + [SMALL_STATE(2495)] = 77776, + [SMALL_STATE(2496)] = 77813, + [SMALL_STATE(2497)] = 77848, + [SMALL_STATE(2498)] = 77883, + [SMALL_STATE(2499)] = 77928, + [SMALL_STATE(2500)] = 77957, + [SMALL_STATE(2501)] = 77988, + [SMALL_STATE(2502)] = 78027, + [SMALL_STATE(2503)] = 78058, + [SMALL_STATE(2504)] = 78089, + [SMALL_STATE(2505)] = 78124, + [SMALL_STATE(2506)] = 78161, [SMALL_STATE(2507)] = 78190, - [SMALL_STATE(2508)] = 78235, - [SMALL_STATE(2509)] = 78266, - [SMALL_STATE(2510)] = 78303, - [SMALL_STATE(2511)] = 78342, - [SMALL_STATE(2512)] = 78383, - [SMALL_STATE(2513)] = 78414, - [SMALL_STATE(2514)] = 78445, - [SMALL_STATE(2515)] = 78476, + [SMALL_STATE(2508)] = 78223, + [SMALL_STATE(2509)] = 78254, + [SMALL_STATE(2510)] = 78293, + [SMALL_STATE(2511)] = 78322, + [SMALL_STATE(2512)] = 78357, + [SMALL_STATE(2513)] = 78388, + [SMALL_STATE(2514)] = 78433, + [SMALL_STATE(2515)] = 78478, [SMALL_STATE(2516)] = 78509, - [SMALL_STATE(2517)] = 78545, - [SMALL_STATE(2518)] = 78573, - [SMALL_STATE(2519)] = 78603, - [SMALL_STATE(2520)] = 78633, - [SMALL_STATE(2521)] = 78665, - [SMALL_STATE(2522)] = 78697, - [SMALL_STATE(2523)] = 78735, - [SMALL_STATE(2524)] = 78773, - [SMALL_STATE(2525)] = 78825, - [SMALL_STATE(2526)] = 78855, - [SMALL_STATE(2527)] = 78885, - [SMALL_STATE(2528)] = 78913, - [SMALL_STATE(2529)] = 78949, - [SMALL_STATE(2530)] = 78981, - [SMALL_STATE(2531)] = 79015, - [SMALL_STATE(2532)] = 79045, - [SMALL_STATE(2533)] = 79081, - [SMALL_STATE(2534)] = 79117, - [SMALL_STATE(2535)] = 79149, - [SMALL_STATE(2536)] = 79183, - [SMALL_STATE(2537)] = 79219, - [SMALL_STATE(2538)] = 79249, - [SMALL_STATE(2539)] = 79287, + [SMALL_STATE(2517)] = 78543, + [SMALL_STATE(2518)] = 78575, + [SMALL_STATE(2519)] = 78627, + [SMALL_STATE(2520)] = 78679, + [SMALL_STATE(2521)] = 78711, + [SMALL_STATE(2522)] = 78741, + [SMALL_STATE(2523)] = 78773, + [SMALL_STATE(2524)] = 78803, + [SMALL_STATE(2525)] = 78833, + [SMALL_STATE(2526)] = 78869, + [SMALL_STATE(2527)] = 78901, + [SMALL_STATE(2528)] = 78933, + [SMALL_STATE(2529)] = 78963, + [SMALL_STATE(2530)] = 79001, + [SMALL_STATE(2531)] = 79029, + [SMALL_STATE(2532)] = 79061, + [SMALL_STATE(2533)] = 79097, + [SMALL_STATE(2534)] = 79125, + [SMALL_STATE(2535)] = 79155, + [SMALL_STATE(2536)] = 79185, + [SMALL_STATE(2537)] = 79217, + [SMALL_STATE(2538)] = 79247, + [SMALL_STATE(2539)] = 79285, [SMALL_STATE(2540)] = 79317, - [SMALL_STATE(2541)] = 79347, + [SMALL_STATE(2541)] = 79345, [SMALL_STATE(2542)] = 79383, [SMALL_STATE(2543)] = 79417, - [SMALL_STATE(2544)] = 79447, - [SMALL_STATE(2545)] = 79477, - [SMALL_STATE(2546)] = 79505, - [SMALL_STATE(2547)] = 79543, - [SMALL_STATE(2548)] = 79579, - [SMALL_STATE(2549)] = 79611, - [SMALL_STATE(2550)] = 79663, - [SMALL_STATE(2551)] = 79695, - [SMALL_STATE(2552)] = 79723, - [SMALL_STATE(2553)] = 79775, - [SMALL_STATE(2554)] = 79807, - [SMALL_STATE(2555)] = 79839, - [SMALL_STATE(2556)] = 79873, - [SMALL_STATE(2557)] = 79901, - [SMALL_STATE(2558)] = 79935, - [SMALL_STATE(2559)] = 79967, - [SMALL_STATE(2560)] = 79999, - [SMALL_STATE(2561)] = 80031, - [SMALL_STATE(2562)] = 80063, - [SMALL_STATE(2563)] = 80095, - [SMALL_STATE(2564)] = 80135, - [SMALL_STATE(2565)] = 80185, - [SMALL_STATE(2566)] = 80215, - [SMALL_STATE(2567)] = 80245, - [SMALL_STATE(2568)] = 80297, - [SMALL_STATE(2569)] = 80333, - [SMALL_STATE(2570)] = 80371, - [SMALL_STATE(2571)] = 80401, - [SMALL_STATE(2572)] = 80429, - [SMALL_STATE(2573)] = 80459, - [SMALL_STATE(2574)] = 80489, - [SMALL_STATE(2575)] = 80525, + [SMALL_STATE(2544)] = 79469, + [SMALL_STATE(2545)] = 79505, + [SMALL_STATE(2546)] = 79533, + [SMALL_STATE(2547)] = 79571, + [SMALL_STATE(2548)] = 79607, + [SMALL_STATE(2549)] = 79659, + [SMALL_STATE(2550)] = 79695, + [SMALL_STATE(2551)] = 79725, + [SMALL_STATE(2552)] = 79761, + [SMALL_STATE(2553)] = 79791, + [SMALL_STATE(2554)] = 79821, + [SMALL_STATE(2555)] = 79857, + [SMALL_STATE(2556)] = 79885, + [SMALL_STATE(2557)] = 79917, + [SMALL_STATE(2558)] = 79947, + [SMALL_STATE(2559)] = 79975, + [SMALL_STATE(2560)] = 80025, + [SMALL_STATE(2561)] = 80059, + [SMALL_STATE(2562)] = 80095, + [SMALL_STATE(2563)] = 80127, + [SMALL_STATE(2564)] = 80159, + [SMALL_STATE(2565)] = 80191, + [SMALL_STATE(2566)] = 80223, + [SMALL_STATE(2567)] = 80259, + [SMALL_STATE(2568)] = 80289, + [SMALL_STATE(2569)] = 80329, + [SMALL_STATE(2570)] = 80367, + [SMALL_STATE(2571)] = 80397, + [SMALL_STATE(2572)] = 80431, + [SMALL_STATE(2573)] = 80463, + [SMALL_STATE(2574)] = 80493, + [SMALL_STATE(2575)] = 80527, [SMALL_STATE(2576)] = 80557, - [SMALL_STATE(2577)] = 80588, + [SMALL_STATE(2577)] = 80592, [SMALL_STATE(2578)] = 80623, - [SMALL_STATE(2579)] = 80654, - [SMALL_STATE(2580)] = 80689, - [SMALL_STATE(2581)] = 80718, + [SMALL_STATE(2579)] = 80650, + [SMALL_STATE(2580)] = 80683, + [SMALL_STATE(2581)] = 80714, [SMALL_STATE(2582)] = 80747, - [SMALL_STATE(2583)] = 80778, - [SMALL_STATE(2584)] = 80809, - [SMALL_STATE(2585)] = 80838, - [SMALL_STATE(2586)] = 80869, - [SMALL_STATE(2587)] = 80898, - [SMALL_STATE(2588)] = 80929, - [SMALL_STATE(2589)] = 80960, - [SMALL_STATE(2590)] = 80991, + [SMALL_STATE(2583)] = 80776, + [SMALL_STATE(2584)] = 80805, + [SMALL_STATE(2585)] = 80836, + [SMALL_STATE(2586)] = 80867, + [SMALL_STATE(2587)] = 80894, + [SMALL_STATE(2588)] = 80925, + [SMALL_STATE(2589)] = 80958, + [SMALL_STATE(2590)] = 80989, [SMALL_STATE(2591)] = 81022, - [SMALL_STATE(2592)] = 81053, - [SMALL_STATE(2593)] = 81084, - [SMALL_STATE(2594)] = 81115, - [SMALL_STATE(2595)] = 81146, - [SMALL_STATE(2596)] = 81177, - [SMALL_STATE(2597)] = 81212, - [SMALL_STATE(2598)] = 81245, - [SMALL_STATE(2599)] = 81278, - [SMALL_STATE(2600)] = 81307, - [SMALL_STATE(2601)] = 81336, - [SMALL_STATE(2602)] = 81365, - [SMALL_STATE(2603)] = 81394, - [SMALL_STATE(2604)] = 81423, - [SMALL_STATE(2605)] = 81452, - [SMALL_STATE(2606)] = 81479, - [SMALL_STATE(2607)] = 81506, - [SMALL_STATE(2608)] = 81539, - [SMALL_STATE(2609)] = 81570, - [SMALL_STATE(2610)] = 81597, - [SMALL_STATE(2611)] = 81624, - [SMALL_STATE(2612)] = 81651, - [SMALL_STATE(2613)] = 81678, - [SMALL_STATE(2614)] = 81705, - [SMALL_STATE(2615)] = 81736, - [SMALL_STATE(2616)] = 81765, - [SMALL_STATE(2617)] = 81794, - [SMALL_STATE(2618)] = 81823, - [SMALL_STATE(2619)] = 81854, - [SMALL_STATE(2620)] = 81885, - [SMALL_STATE(2621)] = 81920, - [SMALL_STATE(2622)] = 81951, - [SMALL_STATE(2623)] = 81982, - [SMALL_STATE(2624)] = 82009, - [SMALL_STATE(2625)] = 82036, - [SMALL_STATE(2626)] = 82063, - [SMALL_STATE(2627)] = 82090, - [SMALL_STATE(2628)] = 82117, - [SMALL_STATE(2629)] = 82144, - [SMALL_STATE(2630)] = 82171, - [SMALL_STATE(2631)] = 82204, - [SMALL_STATE(2632)] = 82237, - [SMALL_STATE(2633)] = 82274, - [SMALL_STATE(2634)] = 82311, - [SMALL_STATE(2635)] = 82348, - [SMALL_STATE(2636)] = 82385, - [SMALL_STATE(2637)] = 82422, - [SMALL_STATE(2638)] = 82459, - [SMALL_STATE(2639)] = 82496, - [SMALL_STATE(2640)] = 82531, - [SMALL_STATE(2641)] = 82568, - [SMALL_STATE(2642)] = 82605, - [SMALL_STATE(2643)] = 82638, - [SMALL_STATE(2644)] = 82675, - [SMALL_STATE(2645)] = 82712, - [SMALL_STATE(2646)] = 82749, - [SMALL_STATE(2647)] = 82786, - [SMALL_STATE(2648)] = 82815, - [SMALL_STATE(2649)] = 82844, - [SMALL_STATE(2650)] = 82873, - [SMALL_STATE(2651)] = 82904, - [SMALL_STATE(2652)] = 82937, - [SMALL_STATE(2653)] = 82968, - [SMALL_STATE(2654)] = 83003, - [SMALL_STATE(2655)] = 83034, - [SMALL_STATE(2656)] = 83065, - [SMALL_STATE(2657)] = 83096, + [SMALL_STATE(2592)] = 81059, + [SMALL_STATE(2593)] = 81088, + [SMALL_STATE(2594)] = 81119, + [SMALL_STATE(2595)] = 81154, + [SMALL_STATE(2596)] = 81183, + [SMALL_STATE(2597)] = 81214, + [SMALL_STATE(2598)] = 81243, + [SMALL_STATE(2599)] = 81280, + [SMALL_STATE(2600)] = 81311, + [SMALL_STATE(2601)] = 81338, + [SMALL_STATE(2602)] = 81375, + [SMALL_STATE(2603)] = 81412, + [SMALL_STATE(2604)] = 81443, + [SMALL_STATE(2605)] = 81474, + [SMALL_STATE(2606)] = 81501, + [SMALL_STATE(2607)] = 81532, + [SMALL_STATE(2608)] = 81563, + [SMALL_STATE(2609)] = 81594, + [SMALL_STATE(2610)] = 81625, + [SMALL_STATE(2611)] = 81662, + [SMALL_STATE(2612)] = 81691, + [SMALL_STATE(2613)] = 81718, + [SMALL_STATE(2614)] = 81751, + [SMALL_STATE(2615)] = 81780, + [SMALL_STATE(2616)] = 81817, + [SMALL_STATE(2617)] = 81846, + [SMALL_STATE(2618)] = 81877, + [SMALL_STATE(2619)] = 81906, + [SMALL_STATE(2620)] = 81935, + [SMALL_STATE(2621)] = 81966, + [SMALL_STATE(2622)] = 81997, + [SMALL_STATE(2623)] = 82032, + [SMALL_STATE(2624)] = 82061, + [SMALL_STATE(2625)] = 82098, + [SMALL_STATE(2626)] = 82129, + [SMALL_STATE(2627)] = 82156, + [SMALL_STATE(2628)] = 82193, + [SMALL_STATE(2629)] = 82228, + [SMALL_STATE(2630)] = 82263, + [SMALL_STATE(2631)] = 82294, + [SMALL_STATE(2632)] = 82325, + [SMALL_STATE(2633)] = 82354, + [SMALL_STATE(2634)] = 82381, + [SMALL_STATE(2635)] = 82414, + [SMALL_STATE(2636)] = 82451, + [SMALL_STATE(2637)] = 82482, + [SMALL_STATE(2638)] = 82519, + [SMALL_STATE(2639)] = 82546, + [SMALL_STATE(2640)] = 82575, + [SMALL_STATE(2641)] = 82602, + [SMALL_STATE(2642)] = 82629, + [SMALL_STATE(2643)] = 82658, + [SMALL_STATE(2644)] = 82691, + [SMALL_STATE(2645)] = 82718, + [SMALL_STATE(2646)] = 82755, + [SMALL_STATE(2647)] = 82782, + [SMALL_STATE(2648)] = 82819, + [SMALL_STATE(2649)] = 82846, + [SMALL_STATE(2650)] = 82877, + [SMALL_STATE(2651)] = 82908, + [SMALL_STATE(2652)] = 82935, + [SMALL_STATE(2653)] = 82964, + [SMALL_STATE(2654)] = 82995, + [SMALL_STATE(2655)] = 83032, + [SMALL_STATE(2656)] = 83061, + [SMALL_STATE(2657)] = 83092, [SMALL_STATE(2658)] = 83127, [SMALL_STATE(2659)] = 83158, - [SMALL_STATE(2660)] = 83186, - [SMALL_STATE(2661)] = 83214, - [SMALL_STATE(2662)] = 83242, - [SMALL_STATE(2663)] = 83270, - [SMALL_STATE(2664)] = 83298, - [SMALL_STATE(2665)] = 83328, - [SMALL_STATE(2666)] = 83360, - [SMALL_STATE(2667)] = 83398, - [SMALL_STATE(2668)] = 83428, - [SMALL_STATE(2669)] = 83458, - [SMALL_STATE(2670)] = 83488, - [SMALL_STATE(2671)] = 83518, - [SMALL_STATE(2672)] = 83548, - [SMALL_STATE(2673)] = 83578, - [SMALL_STATE(2674)] = 83608, - [SMALL_STATE(2675)] = 83638, - [SMALL_STATE(2676)] = 83682, - [SMALL_STATE(2677)] = 83726, - [SMALL_STATE(2678)] = 83760, - [SMALL_STATE(2679)] = 83788, - [SMALL_STATE(2680)] = 83814, - [SMALL_STATE(2681)] = 83844, - [SMALL_STATE(2682)] = 83880, - [SMALL_STATE(2683)] = 83916, - [SMALL_STATE(2684)] = 83952, - [SMALL_STATE(2685)] = 83988, - [SMALL_STATE(2686)] = 84022, - [SMALL_STATE(2687)] = 84058, - [SMALL_STATE(2688)] = 84090, - [SMALL_STATE(2689)] = 84120, - [SMALL_STATE(2690)] = 84156, - [SMALL_STATE(2691)] = 84186, - [SMALL_STATE(2692)] = 84214, - [SMALL_STATE(2693)] = 84244, - [SMALL_STATE(2694)] = 84274, - [SMALL_STATE(2695)] = 84302, - [SMALL_STATE(2696)] = 84346, - [SMALL_STATE(2697)] = 84376, - [SMALL_STATE(2698)] = 84406, - [SMALL_STATE(2699)] = 84434, - [SMALL_STATE(2700)] = 84468, - [SMALL_STATE(2701)] = 84504, - [SMALL_STATE(2702)] = 84532, - [SMALL_STATE(2703)] = 84560, - [SMALL_STATE(2704)] = 84596, - [SMALL_STATE(2705)] = 84630, - [SMALL_STATE(2706)] = 84658, - [SMALL_STATE(2707)] = 84690, - [SMALL_STATE(2708)] = 84718, - [SMALL_STATE(2709)] = 84752, - [SMALL_STATE(2710)] = 84784, - [SMALL_STATE(2711)] = 84812, - [SMALL_STATE(2712)] = 84846, - [SMALL_STATE(2713)] = 84878, - [SMALL_STATE(2714)] = 84910, - [SMALL_STATE(2715)] = 84942, - [SMALL_STATE(2716)] = 84974, - [SMALL_STATE(2717)] = 85006, - [SMALL_STATE(2718)] = 85042, - [SMALL_STATE(2719)] = 85078, - [SMALL_STATE(2720)] = 85112, - [SMALL_STATE(2721)] = 85148, - [SMALL_STATE(2722)] = 85176, - [SMALL_STATE(2723)] = 85212, - [SMALL_STATE(2724)] = 85248, - [SMALL_STATE(2725)] = 85292, - [SMALL_STATE(2726)] = 85320, - [SMALL_STATE(2727)] = 85348, - [SMALL_STATE(2728)] = 85376, - [SMALL_STATE(2729)] = 85406, + [SMALL_STATE(2660)] = 83194, + [SMALL_STATE(2661)] = 83228, + [SMALL_STATE(2662)] = 83260, + [SMALL_STATE(2663)] = 83288, + [SMALL_STATE(2664)] = 83318, + [SMALL_STATE(2665)] = 83354, + [SMALL_STATE(2666)] = 83390, + [SMALL_STATE(2667)] = 83426, + [SMALL_STATE(2668)] = 83470, + [SMALL_STATE(2669)] = 83514, + [SMALL_STATE(2670)] = 83544, + [SMALL_STATE(2671)] = 83572, + [SMALL_STATE(2672)] = 83602, + [SMALL_STATE(2673)] = 83636, + [SMALL_STATE(2674)] = 83670, + [SMALL_STATE(2675)] = 83698, + [SMALL_STATE(2676)] = 83728, + [SMALL_STATE(2677)] = 83772, + [SMALL_STATE(2678)] = 83808, + [SMALL_STATE(2679)] = 83844, + [SMALL_STATE(2680)] = 83872, + [SMALL_STATE(2681)] = 83902, + [SMALL_STATE(2682)] = 83930, + [SMALL_STATE(2683)] = 83966, + [SMALL_STATE(2684)] = 84000, + [SMALL_STATE(2685)] = 84030, + [SMALL_STATE(2686)] = 84066, + [SMALL_STATE(2687)] = 84098, + [SMALL_STATE(2688)] = 84126, + [SMALL_STATE(2689)] = 84154, + [SMALL_STATE(2690)] = 84184, + [SMALL_STATE(2691)] = 84220, + [SMALL_STATE(2692)] = 84252, + [SMALL_STATE(2693)] = 84280, + [SMALL_STATE(2694)] = 84310, + [SMALL_STATE(2695)] = 84338, + [SMALL_STATE(2696)] = 84382, + [SMALL_STATE(2697)] = 84412, + [SMALL_STATE(2698)] = 84442, + [SMALL_STATE(2699)] = 84472, + [SMALL_STATE(2700)] = 84502, + [SMALL_STATE(2701)] = 84536, + [SMALL_STATE(2702)] = 84570, + [SMALL_STATE(2703)] = 84598, + [SMALL_STATE(2704)] = 84630, + [SMALL_STATE(2705)] = 84658, + [SMALL_STATE(2706)] = 84690, + [SMALL_STATE(2707)] = 84720, + [SMALL_STATE(2708)] = 84752, + [SMALL_STATE(2709)] = 84780, + [SMALL_STATE(2710)] = 84808, + [SMALL_STATE(2711)] = 84840, + [SMALL_STATE(2712)] = 84874, + [SMALL_STATE(2713)] = 84904, + [SMALL_STATE(2714)] = 84936, + [SMALL_STATE(2715)] = 84972, + [SMALL_STATE(2716)] = 85010, + [SMALL_STATE(2717)] = 85042, + [SMALL_STATE(2718)] = 85070, + [SMALL_STATE(2719)] = 85100, + [SMALL_STATE(2720)] = 85128, + [SMALL_STATE(2721)] = 85154, + [SMALL_STATE(2722)] = 85198, + [SMALL_STATE(2723)] = 85234, + [SMALL_STATE(2724)] = 85264, + [SMALL_STATE(2725)] = 85300, + [SMALL_STATE(2726)] = 85336, + [SMALL_STATE(2727)] = 85364, + [SMALL_STATE(2728)] = 85392, + [SMALL_STATE(2729)] = 85420, [SMALL_STATE(2730)] = 85450, - [SMALL_STATE(2731)] = 85479, - [SMALL_STATE(2732)] = 85506, - [SMALL_STATE(2733)] = 85533, - [SMALL_STATE(2734)] = 85560, - [SMALL_STATE(2735)] = 85591, - [SMALL_STATE(2736)] = 85618, - [SMALL_STATE(2737)] = 85645, - [SMALL_STATE(2738)] = 85672, - [SMALL_STATE(2739)] = 85699, - [SMALL_STATE(2740)] = 85726, - [SMALL_STATE(2741)] = 85757, - [SMALL_STATE(2742)] = 85788, - [SMALL_STATE(2743)] = 85817, - [SMALL_STATE(2744)] = 85846, - [SMALL_STATE(2745)] = 85879, - [SMALL_STATE(2746)] = 85912, - [SMALL_STATE(2747)] = 85943, - [SMALL_STATE(2748)] = 85974, - [SMALL_STATE(2749)] = 86001, - [SMALL_STATE(2750)] = 86028, - [SMALL_STATE(2751)] = 86059, - [SMALL_STATE(2752)] = 86090, - [SMALL_STATE(2753)] = 86123, - [SMALL_STATE(2754)] = 86156, - [SMALL_STATE(2755)] = 86183, - [SMALL_STATE(2756)] = 86210, - [SMALL_STATE(2757)] = 86237, - [SMALL_STATE(2758)] = 86264, - [SMALL_STATE(2759)] = 86295, - [SMALL_STATE(2760)] = 86326, - [SMALL_STATE(2761)] = 86355, - [SMALL_STATE(2762)] = 86384, - [SMALL_STATE(2763)] = 86417, - [SMALL_STATE(2764)] = 86450, - [SMALL_STATE(2765)] = 86481, - [SMALL_STATE(2766)] = 86512, - [SMALL_STATE(2767)] = 86539, - [SMALL_STATE(2768)] = 86566, - [SMALL_STATE(2769)] = 86597, - [SMALL_STATE(2770)] = 86628, - [SMALL_STATE(2771)] = 86659, - [SMALL_STATE(2772)] = 86692, - [SMALL_STATE(2773)] = 86725, - [SMALL_STATE(2774)] = 86750, - [SMALL_STATE(2775)] = 86787, - [SMALL_STATE(2776)] = 86818, - [SMALL_STATE(2777)] = 86849, - [SMALL_STATE(2778)] = 86874, - [SMALL_STATE(2779)] = 86899, - [SMALL_STATE(2780)] = 86924, - [SMALL_STATE(2781)] = 86949, - [SMALL_STATE(2782)] = 86974, - [SMALL_STATE(2783)] = 87005, - [SMALL_STATE(2784)] = 87030, - [SMALL_STATE(2785)] = 87055, - [SMALL_STATE(2786)] = 87080, - [SMALL_STATE(2787)] = 87105, - [SMALL_STATE(2788)] = 87130, - [SMALL_STATE(2789)] = 87157, - [SMALL_STATE(2790)] = 87184, - [SMALL_STATE(2791)] = 87213, - [SMALL_STATE(2792)] = 87242, - [SMALL_STATE(2793)] = 87267, - [SMALL_STATE(2794)] = 87292, - [SMALL_STATE(2795)] = 87319, - [SMALL_STATE(2796)] = 87346, - [SMALL_STATE(2797)] = 87375, - [SMALL_STATE(2798)] = 87404, - [SMALL_STATE(2799)] = 87437, - [SMALL_STATE(2800)] = 87468, - [SMALL_STATE(2801)] = 87493, - [SMALL_STATE(2802)] = 87524, - [SMALL_STATE(2803)] = 87557, - [SMALL_STATE(2804)] = 87590, - [SMALL_STATE(2805)] = 87623, - [SMALL_STATE(2806)] = 87650, - [SMALL_STATE(2807)] = 87677, - [SMALL_STATE(2808)] = 87708, - [SMALL_STATE(2809)] = 87739, - [SMALL_STATE(2810)] = 87772, - [SMALL_STATE(2811)] = 87805, - [SMALL_STATE(2812)] = 87832, - [SMALL_STATE(2813)] = 87859, - [SMALL_STATE(2814)] = 87890, - [SMALL_STATE(2815)] = 87921, - [SMALL_STATE(2816)] = 87954, - [SMALL_STATE(2817)] = 87987, - [SMALL_STATE(2818)] = 88022, - [SMALL_STATE(2819)] = 88057, - [SMALL_STATE(2820)] = 88090, - [SMALL_STATE(2821)] = 88123, - [SMALL_STATE(2822)] = 88156, - [SMALL_STATE(2823)] = 88189, - [SMALL_STATE(2824)] = 88220, - [SMALL_STATE(2825)] = 88251, - [SMALL_STATE(2826)] = 88282, - [SMALL_STATE(2827)] = 88313, - [SMALL_STATE(2828)] = 88344, - [SMALL_STATE(2829)] = 88375, - [SMALL_STATE(2830)] = 88402, - [SMALL_STATE(2831)] = 88429, - [SMALL_STATE(2832)] = 88458, - [SMALL_STATE(2833)] = 88487, - [SMALL_STATE(2834)] = 88518, - [SMALL_STATE(2835)] = 88549, - [SMALL_STATE(2836)] = 88576, - [SMALL_STATE(2837)] = 88603, - [SMALL_STATE(2838)] = 88630, - [SMALL_STATE(2839)] = 88663, - [SMALL_STATE(2840)] = 88690, - [SMALL_STATE(2841)] = 88721, - [SMALL_STATE(2842)] = 88752, - [SMALL_STATE(2843)] = 88783, - [SMALL_STATE(2844)] = 88814, - [SMALL_STATE(2845)] = 88843, - [SMALL_STATE(2846)] = 88874, - [SMALL_STATE(2847)] = 88905, - [SMALL_STATE(2848)] = 88940, - [SMALL_STATE(2849)] = 88969, - [SMALL_STATE(2850)] = 89002, - [SMALL_STATE(2851)] = 89035, - [SMALL_STATE(2852)] = 89066, - [SMALL_STATE(2853)] = 89097, - [SMALL_STATE(2854)] = 89124, - [SMALL_STATE(2855)] = 89151, - [SMALL_STATE(2856)] = 89180, - [SMALL_STATE(2857)] = 89209, - [SMALL_STATE(2858)] = 89240, + [SMALL_STATE(2731)] = 85481, + [SMALL_STATE(2732)] = 85514, + [SMALL_STATE(2733)] = 85547, + [SMALL_STATE(2734)] = 85578, + [SMALL_STATE(2735)] = 85609, + [SMALL_STATE(2736)] = 85638, + [SMALL_STATE(2737)] = 85665, + [SMALL_STATE(2738)] = 85696, + [SMALL_STATE(2739)] = 85727, + [SMALL_STATE(2740)] = 85760, + [SMALL_STATE(2741)] = 85793, + [SMALL_STATE(2742)] = 85822, + [SMALL_STATE(2743)] = 85851, + [SMALL_STATE(2744)] = 85882, + [SMALL_STATE(2745)] = 85913, + [SMALL_STATE(2746)] = 85940, + [SMALL_STATE(2747)] = 85967, + [SMALL_STATE(2748)] = 85994, + [SMALL_STATE(2749)] = 86021, + [SMALL_STATE(2750)] = 86054, + [SMALL_STATE(2751)] = 86087, + [SMALL_STATE(2752)] = 86118, + [SMALL_STATE(2753)] = 86149, + [SMALL_STATE(2754)] = 86176, + [SMALL_STATE(2755)] = 86203, + [SMALL_STATE(2756)] = 86234, + [SMALL_STATE(2757)] = 86265, + [SMALL_STATE(2758)] = 86298, + [SMALL_STATE(2759)] = 86331, + [SMALL_STATE(2760)] = 86360, + [SMALL_STATE(2761)] = 86391, + [SMALL_STATE(2762)] = 86420, + [SMALL_STATE(2763)] = 86451, + [SMALL_STATE(2764)] = 86478, + [SMALL_STATE(2765)] = 86505, + [SMALL_STATE(2766)] = 86534, + [SMALL_STATE(2767)] = 86561, + [SMALL_STATE(2768)] = 86592, + [SMALL_STATE(2769)] = 86623, + [SMALL_STATE(2770)] = 86650, + [SMALL_STATE(2771)] = 86679, + [SMALL_STATE(2772)] = 86708, + [SMALL_STATE(2773)] = 86739, + [SMALL_STATE(2774)] = 86766, + [SMALL_STATE(2775)] = 86799, + [SMALL_STATE(2776)] = 86826, + [SMALL_STATE(2777)] = 86857, + [SMALL_STATE(2778)] = 86888, + [SMALL_STATE(2779)] = 86915, + [SMALL_STATE(2780)] = 86946, + [SMALL_STATE(2781)] = 86983, + [SMALL_STATE(2782)] = 87010, + [SMALL_STATE(2783)] = 87043, + [SMALL_STATE(2784)] = 87076, + [SMALL_STATE(2785)] = 87107, + [SMALL_STATE(2786)] = 87138, + [SMALL_STATE(2787)] = 87165, + [SMALL_STATE(2788)] = 87192, + [SMALL_STATE(2789)] = 87225, + [SMALL_STATE(2790)] = 87258, + [SMALL_STATE(2791)] = 87289, + [SMALL_STATE(2792)] = 87318, + [SMALL_STATE(2793)] = 87349, + [SMALL_STATE(2794)] = 87376, + [SMALL_STATE(2795)] = 87409, + [SMALL_STATE(2796)] = 87442, + [SMALL_STATE(2797)] = 87469, + [SMALL_STATE(2798)] = 87498, + [SMALL_STATE(2799)] = 87531, + [SMALL_STATE(2800)] = 87564, + [SMALL_STATE(2801)] = 87591, + [SMALL_STATE(2802)] = 87622, + [SMALL_STATE(2803)] = 87653, + [SMALL_STATE(2804)] = 87680, + [SMALL_STATE(2805)] = 87705, + [SMALL_STATE(2806)] = 87730, + [SMALL_STATE(2807)] = 87759, + [SMALL_STATE(2808)] = 87788, + [SMALL_STATE(2809)] = 87819, + [SMALL_STATE(2810)] = 87854, + [SMALL_STATE(2811)] = 87881, + [SMALL_STATE(2812)] = 87912, + [SMALL_STATE(2813)] = 87939, + [SMALL_STATE(2814)] = 87974, + [SMALL_STATE(2815)] = 88009, + [SMALL_STATE(2816)] = 88044, + [SMALL_STATE(2817)] = 88075, + [SMALL_STATE(2818)] = 88106, + [SMALL_STATE(2819)] = 88141, + [SMALL_STATE(2820)] = 88176, + [SMALL_STATE(2821)] = 88201, + [SMALL_STATE(2822)] = 88228, + [SMALL_STATE(2823)] = 88263, + [SMALL_STATE(2824)] = 88292, + [SMALL_STATE(2825)] = 88317, + [SMALL_STATE(2826)] = 88344, + [SMALL_STATE(2827)] = 88369, + [SMALL_STATE(2828)] = 88394, + [SMALL_STATE(2829)] = 88419, + [SMALL_STATE(2830)] = 88450, + [SMALL_STATE(2831)] = 88475, + [SMALL_STATE(2832)] = 88500, + [SMALL_STATE(2833)] = 88525, + [SMALL_STATE(2834)] = 88556, + [SMALL_STATE(2835)] = 88587, + [SMALL_STATE(2836)] = 88618, + [SMALL_STATE(2837)] = 88643, + [SMALL_STATE(2838)] = 88674, + [SMALL_STATE(2839)] = 88705, + [SMALL_STATE(2840)] = 88736, + [SMALL_STATE(2841)] = 88761, + [SMALL_STATE(2842)] = 88786, + [SMALL_STATE(2843)] = 88817, + [SMALL_STATE(2844)] = 88844, + [SMALL_STATE(2845)] = 88871, + [SMALL_STATE(2846)] = 88900, + [SMALL_STATE(2847)] = 88931, + [SMALL_STATE(2848)] = 88960, + [SMALL_STATE(2849)] = 88991, + [SMALL_STATE(2850)] = 89016, + [SMALL_STATE(2851)] = 89047, + [SMALL_STATE(2852)] = 89080, + [SMALL_STATE(2853)] = 89105, + [SMALL_STATE(2854)] = 89136, + [SMALL_STATE(2855)] = 89163, + [SMALL_STATE(2856)] = 89190, + [SMALL_STATE(2857)] = 89217, + [SMALL_STATE(2858)] = 89244, [SMALL_STATE(2859)] = 89271, [SMALL_STATE(2860)] = 89298, - [SMALL_STATE(2861)] = 89325, - [SMALL_STATE(2862)] = 89352, - [SMALL_STATE(2863)] = 89379, - [SMALL_STATE(2864)] = 89410, - [SMALL_STATE(2865)] = 89441, - [SMALL_STATE(2866)] = 89470, - [SMALL_STATE(2867)] = 89499, - [SMALL_STATE(2868)] = 89532, - [SMALL_STATE(2869)] = 89557, - [SMALL_STATE(2870)] = 89590, - [SMALL_STATE(2871)] = 89621, - [SMALL_STATE(2872)] = 89652, - [SMALL_STATE(2873)] = 89687, - [SMALL_STATE(2874)] = 89722, - [SMALL_STATE(2875)] = 89757, - [SMALL_STATE(2876)] = 89792, - [SMALL_STATE(2877)] = 89827, - [SMALL_STATE(2878)] = 89862, + [SMALL_STATE(2861)] = 89329, + [SMALL_STATE(2862)] = 89360, + [SMALL_STATE(2863)] = 89389, + [SMALL_STATE(2864)] = 89420, + [SMALL_STATE(2865)] = 89449, + [SMALL_STATE(2866)] = 89476, + [SMALL_STATE(2867)] = 89509, + [SMALL_STATE(2868)] = 89542, + [SMALL_STATE(2869)] = 89573, + [SMALL_STATE(2870)] = 89604, + [SMALL_STATE(2871)] = 89635, + [SMALL_STATE(2872)] = 89662, + [SMALL_STATE(2873)] = 89695, + [SMALL_STATE(2874)] = 89728, + [SMALL_STATE(2875)] = 89755, + [SMALL_STATE(2876)] = 89790, + [SMALL_STATE(2877)] = 89825, + [SMALL_STATE(2878)] = 89856, [SMALL_STATE(2879)] = 89889, [SMALL_STATE(2880)] = 89916, - [SMALL_STATE(2881)] = 89949, - [SMALL_STATE(2882)] = 89984, - [SMALL_STATE(2883)] = 90011, - [SMALL_STATE(2884)] = 90046, - [SMALL_STATE(2885)] = 90073, - [SMALL_STATE(2886)] = 90100, - [SMALL_STATE(2887)] = 90127, - [SMALL_STATE(2888)] = 90154, - [SMALL_STATE(2889)] = 90183, - [SMALL_STATE(2890)] = 90212, - [SMALL_STATE(2891)] = 90239, - [SMALL_STATE(2892)] = 90270, - [SMALL_STATE(2893)] = 90301, - [SMALL_STATE(2894)] = 90328, + [SMALL_STATE(2881)] = 89945, + [SMALL_STATE(2882)] = 89972, + [SMALL_STATE(2883)] = 89999, + [SMALL_STATE(2884)] = 90028, + [SMALL_STATE(2885)] = 90059, + [SMALL_STATE(2886)] = 90090, + [SMALL_STATE(2887)] = 90117, + [SMALL_STATE(2888)] = 90144, + [SMALL_STATE(2889)] = 90171, + [SMALL_STATE(2890)] = 90198, + [SMALL_STATE(2891)] = 90231, + [SMALL_STATE(2892)] = 90262, + [SMALL_STATE(2893)] = 90291, + [SMALL_STATE(2894)] = 90322, [SMALL_STATE(2895)] = 90355, - [SMALL_STATE(2896)] = 90384, + [SMALL_STATE(2896)] = 90382, [SMALL_STATE(2897)] = 90413, - [SMALL_STATE(2898)] = 90444, - [SMALL_STATE(2899)] = 90475, - [SMALL_STATE(2900)] = 90506, - [SMALL_STATE(2901)] = 90535, - [SMALL_STATE(2902)] = 90566, - [SMALL_STATE(2903)] = 90597, - [SMALL_STATE(2904)] = 90628, - [SMALL_STATE(2905)] = 90657, - [SMALL_STATE(2906)] = 90690, - [SMALL_STATE(2907)] = 90721, - [SMALL_STATE(2908)] = 90752, - [SMALL_STATE(2909)] = 90783, - [SMALL_STATE(2910)] = 90810, - [SMALL_STATE(2911)] = 90841, - [SMALL_STATE(2912)] = 90872, - [SMALL_STATE(2913)] = 90899, - [SMALL_STATE(2914)] = 90930, - [SMALL_STATE(2915)] = 90961, - [SMALL_STATE(2916)] = 90988, + [SMALL_STATE(2898)] = 90448, + [SMALL_STATE(2899)] = 90483, + [SMALL_STATE(2900)] = 90510, + [SMALL_STATE(2901)] = 90539, + [SMALL_STATE(2902)] = 90568, + [SMALL_STATE(2903)] = 90599, + [SMALL_STATE(2904)] = 90632, + [SMALL_STATE(2905)] = 90665, + [SMALL_STATE(2906)] = 90696, + [SMALL_STATE(2907)] = 90727, + [SMALL_STATE(2908)] = 90758, + [SMALL_STATE(2909)] = 90789, + [SMALL_STATE(2910)] = 90820, + [SMALL_STATE(2911)] = 90849, + [SMALL_STATE(2912)] = 90876, + [SMALL_STATE(2913)] = 90905, + [SMALL_STATE(2914)] = 90932, + [SMALL_STATE(2915)] = 90959, + [SMALL_STATE(2916)] = 90986, [SMALL_STATE(2917)] = 91015, - [SMALL_STATE(2918)] = 91044, - [SMALL_STATE(2919)] = 91073, + [SMALL_STATE(2918)] = 91046, + [SMALL_STATE(2919)] = 91075, [SMALL_STATE(2920)] = 91102, [SMALL_STATE(2921)] = 91133, [SMALL_STATE(2922)] = 91160, - [SMALL_STATE(2923)] = 91188, - [SMALL_STATE(2924)] = 91214, - [SMALL_STATE(2925)] = 91242, - [SMALL_STATE(2926)] = 91272, - [SMALL_STATE(2927)] = 91302, - [SMALL_STATE(2928)] = 91354, - [SMALL_STATE(2929)] = 91382, - [SMALL_STATE(2930)] = 91412, - [SMALL_STATE(2931)] = 91438, - [SMALL_STATE(2932)] = 91464, - [SMALL_STATE(2933)] = 91516, - [SMALL_STATE(2934)] = 91568, - [SMALL_STATE(2935)] = 91598, - [SMALL_STATE(2936)] = 91626, - [SMALL_STATE(2937)] = 91656, - [SMALL_STATE(2938)] = 91688, - [SMALL_STATE(2939)] = 91718, - [SMALL_STATE(2940)] = 91750, - [SMALL_STATE(2941)] = 91774, - [SMALL_STATE(2942)] = 91804, - [SMALL_STATE(2943)] = 91834, - [SMALL_STATE(2944)] = 91864, - [SMALL_STATE(2945)] = 91896, - [SMALL_STATE(2946)] = 91922, - [SMALL_STATE(2947)] = 91950, - [SMALL_STATE(2948)] = 91974, - [SMALL_STATE(2949)] = 92000, - [SMALL_STATE(2950)] = 92024, - [SMALL_STATE(2951)] = 92048, - [SMALL_STATE(2952)] = 92078, - [SMALL_STATE(2953)] = 92102, - [SMALL_STATE(2954)] = 92132, - [SMALL_STATE(2955)] = 92184, - [SMALL_STATE(2956)] = 92236, - [SMALL_STATE(2957)] = 92266, - [SMALL_STATE(2958)] = 92290, - [SMALL_STATE(2959)] = 92320, - [SMALL_STATE(2960)] = 92350, - [SMALL_STATE(2961)] = 92376, - [SMALL_STATE(2962)] = 92400, - [SMALL_STATE(2963)] = 92426, - [SMALL_STATE(2964)] = 92452, - [SMALL_STATE(2965)] = 92476, - [SMALL_STATE(2966)] = 92520, - [SMALL_STATE(2967)] = 92552, - [SMALL_STATE(2968)] = 92576, - [SMALL_STATE(2969)] = 92606, + [SMALL_STATE(2923)] = 91184, + [SMALL_STATE(2924)] = 91208, + [SMALL_STATE(2925)] = 91234, + [SMALL_STATE(2926)] = 91260, + [SMALL_STATE(2927)] = 91286, + [SMALL_STATE(2928)] = 91316, + [SMALL_STATE(2929)] = 91346, + [SMALL_STATE(2930)] = 91398, + [SMALL_STATE(2931)] = 91428, + [SMALL_STATE(2932)] = 91458, + [SMALL_STATE(2933)] = 91488, + [SMALL_STATE(2934)] = 91518, + [SMALL_STATE(2935)] = 91542, + [SMALL_STATE(2936)] = 91568, + [SMALL_STATE(2937)] = 91594, + [SMALL_STATE(2938)] = 91620, + [SMALL_STATE(2939)] = 91646, + [SMALL_STATE(2940)] = 91678, + [SMALL_STATE(2941)] = 91704, + [SMALL_STATE(2942)] = 91734, + [SMALL_STATE(2943)] = 91762, + [SMALL_STATE(2944)] = 91814, + [SMALL_STATE(2945)] = 91866, + [SMALL_STATE(2946)] = 91896, + [SMALL_STATE(2947)] = 91922, + [SMALL_STATE(2948)] = 91966, + [SMALL_STATE(2949)] = 91994, + [SMALL_STATE(2950)] = 92026, + [SMALL_STATE(2951)] = 92058, + [SMALL_STATE(2952)] = 92084, + [SMALL_STATE(2953)] = 92108, + [SMALL_STATE(2954)] = 92134, + [SMALL_STATE(2955)] = 92164, + [SMALL_STATE(2956)] = 92210, + [SMALL_STATE(2957)] = 92234, + [SMALL_STATE(2958)] = 92260, + [SMALL_STATE(2959)] = 92288, + [SMALL_STATE(2960)] = 92312, + [SMALL_STATE(2961)] = 92336, + [SMALL_STATE(2962)] = 92362, + [SMALL_STATE(2963)] = 92386, + [SMALL_STATE(2964)] = 92418, + [SMALL_STATE(2965)] = 92470, + [SMALL_STATE(2966)] = 92522, + [SMALL_STATE(2967)] = 92546, + [SMALL_STATE(2968)] = 92574, + [SMALL_STATE(2969)] = 92604, [SMALL_STATE(2970)] = 92630, - [SMALL_STATE(2971)] = 92660, - [SMALL_STATE(2972)] = 92690, - [SMALL_STATE(2973)] = 92714, - [SMALL_STATE(2974)] = 92746, - [SMALL_STATE(2975)] = 92772, - [SMALL_STATE(2976)] = 92800, - [SMALL_STATE(2977)] = 92830, - [SMALL_STATE(2978)] = 92860, - [SMALL_STATE(2979)] = 92900, - [SMALL_STATE(2980)] = 92928, - [SMALL_STATE(2981)] = 92956, - [SMALL_STATE(2982)] = 92982, - [SMALL_STATE(2983)] = 93014, - [SMALL_STATE(2984)] = 93044, - [SMALL_STATE(2985)] = 93074, - [SMALL_STATE(2986)] = 93104, - [SMALL_STATE(2987)] = 93136, - [SMALL_STATE(2988)] = 93166, - [SMALL_STATE(2989)] = 93194, - [SMALL_STATE(2990)] = 93220, - [SMALL_STATE(2991)] = 93248, - [SMALL_STATE(2992)] = 93300, - [SMALL_STATE(2993)] = 93352, - [SMALL_STATE(2994)] = 93382, - [SMALL_STATE(2995)] = 93434, - [SMALL_STATE(2996)] = 93466, - [SMALL_STATE(2997)] = 93494, - [SMALL_STATE(2998)] = 93524, - [SMALL_STATE(2999)] = 93550, - [SMALL_STATE(3000)] = 93576, - [SMALL_STATE(3001)] = 93600, - [SMALL_STATE(3002)] = 93624, - [SMALL_STATE(3003)] = 93650, - [SMALL_STATE(3004)] = 93676, - [SMALL_STATE(3005)] = 93706, - [SMALL_STATE(3006)] = 93732, - [SMALL_STATE(3007)] = 93758, - [SMALL_STATE(3008)] = 93810, - [SMALL_STATE(3009)] = 93838, - [SMALL_STATE(3010)] = 93864, - [SMALL_STATE(3011)] = 93888, - [SMALL_STATE(3012)] = 93914, - [SMALL_STATE(3013)] = 93940, - [SMALL_STATE(3014)] = 93966, - [SMALL_STATE(3015)] = 93992, - [SMALL_STATE(3016)] = 94018, - [SMALL_STATE(3017)] = 94050, - [SMALL_STATE(3018)] = 94080, - [SMALL_STATE(3019)] = 94110, - [SMALL_STATE(3020)] = 94136, - [SMALL_STATE(3021)] = 94162, - [SMALL_STATE(3022)] = 94190, - [SMALL_STATE(3023)] = 94216, - [SMALL_STATE(3024)] = 94268, - [SMALL_STATE(3025)] = 94294, - [SMALL_STATE(3026)] = 94320, - [SMALL_STATE(3027)] = 94344, - [SMALL_STATE(3028)] = 94372, - [SMALL_STATE(3029)] = 94402, - [SMALL_STATE(3030)] = 94434, - [SMALL_STATE(3031)] = 94464, - [SMALL_STATE(3032)] = 94492, - [SMALL_STATE(3033)] = 94520, - [SMALL_STATE(3034)] = 94548, - [SMALL_STATE(3035)] = 94576, - [SMALL_STATE(3036)] = 94608, - [SMALL_STATE(3037)] = 94634, - [SMALL_STATE(3038)] = 94662, - [SMALL_STATE(3039)] = 94690, - [SMALL_STATE(3040)] = 94722, - [SMALL_STATE(3041)] = 94748, - [SMALL_STATE(3042)] = 94772, - [SMALL_STATE(3043)] = 94818, - [SMALL_STATE(3044)] = 94846, - [SMALL_STATE(3045)] = 94878, - [SMALL_STATE(3046)] = 94906, - [SMALL_STATE(3047)] = 94932, - [SMALL_STATE(3048)] = 94956, - [SMALL_STATE(3049)] = 94980, - [SMALL_STATE(3050)] = 95012, + [SMALL_STATE(2971)] = 92654, + [SMALL_STATE(2972)] = 92686, + [SMALL_STATE(2973)] = 92718, + [SMALL_STATE(2974)] = 92742, + [SMALL_STATE(2975)] = 92770, + [SMALL_STATE(2976)] = 92798, + [SMALL_STATE(2977)] = 92822, + [SMALL_STATE(2978)] = 92854, + [SMALL_STATE(2979)] = 92884, + [SMALL_STATE(2980)] = 92936, + [SMALL_STATE(2981)] = 92966, + [SMALL_STATE(2982)] = 93018, + [SMALL_STATE(2983)] = 93048, + [SMALL_STATE(2984)] = 93080, + [SMALL_STATE(2985)] = 93104, + [SMALL_STATE(2986)] = 93132, + [SMALL_STATE(2987)] = 93158, + [SMALL_STATE(2988)] = 93188, + [SMALL_STATE(2989)] = 93214, + [SMALL_STATE(2990)] = 93242, + [SMALL_STATE(2991)] = 93294, + [SMALL_STATE(2992)] = 93320, + [SMALL_STATE(2993)] = 93348, + [SMALL_STATE(2994)] = 93378, + [SMALL_STATE(2995)] = 93406, + [SMALL_STATE(2996)] = 93434, + [SMALL_STATE(2997)] = 93464, + [SMALL_STATE(2998)] = 93504, + [SMALL_STATE(2999)] = 93530, + [SMALL_STATE(3000)] = 93560, + [SMALL_STATE(3001)] = 93592, + [SMALL_STATE(3002)] = 93618, + [SMALL_STATE(3003)] = 93644, + [SMALL_STATE(3004)] = 93668, + [SMALL_STATE(3005)] = 93694, + [SMALL_STATE(3006)] = 93720, + [SMALL_STATE(3007)] = 93746, + [SMALL_STATE(3008)] = 93774, + [SMALL_STATE(3009)] = 93802, + [SMALL_STATE(3010)] = 93826, + [SMALL_STATE(3011)] = 93852, + [SMALL_STATE(3012)] = 93878, + [SMALL_STATE(3013)] = 93906, + [SMALL_STATE(3014)] = 93932, + [SMALL_STATE(3015)] = 93958, + [SMALL_STATE(3016)] = 93986, + [SMALL_STATE(3017)] = 94016, + [SMALL_STATE(3018)] = 94044, + [SMALL_STATE(3019)] = 94072, + [SMALL_STATE(3020)] = 94102, + [SMALL_STATE(3021)] = 94132, + [SMALL_STATE(3022)] = 94156, + [SMALL_STATE(3023)] = 94188, + [SMALL_STATE(3024)] = 94214, + [SMALL_STATE(3025)] = 94246, + [SMALL_STATE(3026)] = 94276, + [SMALL_STATE(3027)] = 94306, + [SMALL_STATE(3028)] = 94338, + [SMALL_STATE(3029)] = 94368, + [SMALL_STATE(3030)] = 94398, + [SMALL_STATE(3031)] = 94424, + [SMALL_STATE(3032)] = 94450, + [SMALL_STATE(3033)] = 94478, + [SMALL_STATE(3034)] = 94508, + [SMALL_STATE(3035)] = 94538, + [SMALL_STATE(3036)] = 94566, + [SMALL_STATE(3037)] = 94598, + [SMALL_STATE(3038)] = 94628, + [SMALL_STATE(3039)] = 94658, + [SMALL_STATE(3040)] = 94688, + [SMALL_STATE(3041)] = 94712, + [SMALL_STATE(3042)] = 94736, + [SMALL_STATE(3043)] = 94768, + [SMALL_STATE(3044)] = 94820, + [SMALL_STATE(3045)] = 94848, + [SMALL_STATE(3046)] = 94900, + [SMALL_STATE(3047)] = 94926, + [SMALL_STATE(3048)] = 94952, + [SMALL_STATE(3049)] = 94982, + [SMALL_STATE(3050)] = 95010, [SMALL_STATE(3051)] = 95038, [SMALL_STATE(3052)] = 95067, [SMALL_STATE(3053)] = 95096, - [SMALL_STATE(3054)] = 95125, - [SMALL_STATE(3055)] = 95154, - [SMALL_STATE(3056)] = 95183, - [SMALL_STATE(3057)] = 95210, - [SMALL_STATE(3058)] = 95237, + [SMALL_STATE(3054)] = 95121, + [SMALL_STATE(3055)] = 95146, + [SMALL_STATE(3056)] = 95177, + [SMALL_STATE(3057)] = 95214, + [SMALL_STATE(3058)] = 95239, [SMALL_STATE(3059)] = 95262, - [SMALL_STATE(3060)] = 95287, + [SMALL_STATE(3060)] = 95285, [SMALL_STATE(3061)] = 95312, - [SMALL_STATE(3062)] = 95335, - [SMALL_STATE(3063)] = 95364, - [SMALL_STATE(3064)] = 95393, - [SMALL_STATE(3065)] = 95416, + [SMALL_STATE(3062)] = 95337, + [SMALL_STATE(3063)] = 95362, + [SMALL_STATE(3064)] = 95387, + [SMALL_STATE(3065)] = 95418, [SMALL_STATE(3066)] = 95447, [SMALL_STATE(3067)] = 95476, - [SMALL_STATE(3068)] = 95505, - [SMALL_STATE(3069)] = 95530, - [SMALL_STATE(3070)] = 95553, - [SMALL_STATE(3071)] = 95582, - [SMALL_STATE(3072)] = 95611, - [SMALL_STATE(3073)] = 95634, - [SMALL_STATE(3074)] = 95663, - [SMALL_STATE(3075)] = 95692, - [SMALL_STATE(3076)] = 95721, - [SMALL_STATE(3077)] = 95764, - [SMALL_STATE(3078)] = 95793, - [SMALL_STATE(3079)] = 95816, - [SMALL_STATE(3080)] = 95841, - [SMALL_STATE(3081)] = 95866, - [SMALL_STATE(3082)] = 95889, - [SMALL_STATE(3083)] = 95914, - [SMALL_STATE(3084)] = 95945, - [SMALL_STATE(3085)] = 95968, - [SMALL_STATE(3086)] = 95991, - [SMALL_STATE(3087)] = 96014, - [SMALL_STATE(3088)] = 96039, - [SMALL_STATE(3089)] = 96076, - [SMALL_STATE(3090)] = 96107, + [SMALL_STATE(3068)] = 95501, + [SMALL_STATE(3069)] = 95526, + [SMALL_STATE(3070)] = 95563, + [SMALL_STATE(3071)] = 95588, + [SMALL_STATE(3072)] = 95613, + [SMALL_STATE(3073)] = 95638, + [SMALL_STATE(3074)] = 95669, + [SMALL_STATE(3075)] = 95698, + [SMALL_STATE(3076)] = 95727, + [SMALL_STATE(3077)] = 95756, + [SMALL_STATE(3078)] = 95785, + [SMALL_STATE(3079)] = 95814, + [SMALL_STATE(3080)] = 95845, + [SMALL_STATE(3081)] = 95884, + [SMALL_STATE(3082)] = 95909, + [SMALL_STATE(3083)] = 95934, + [SMALL_STATE(3084)] = 95961, + [SMALL_STATE(3085)] = 95986, + [SMALL_STATE(3086)] = 96011, + [SMALL_STATE(3087)] = 96036, + [SMALL_STATE(3088)] = 96061, + [SMALL_STATE(3089)] = 96086, + [SMALL_STATE(3090)] = 96111, [SMALL_STATE(3091)] = 96136, - [SMALL_STATE(3092)] = 96165, - [SMALL_STATE(3093)] = 96190, - [SMALL_STATE(3094)] = 96215, - [SMALL_STATE(3095)] = 96246, - [SMALL_STATE(3096)] = 96271, - [SMALL_STATE(3097)] = 96296, - [SMALL_STATE(3098)] = 96327, - [SMALL_STATE(3099)] = 96356, - [SMALL_STATE(3100)] = 96385, - [SMALL_STATE(3101)] = 96410, - [SMALL_STATE(3102)] = 96439, - [SMALL_STATE(3103)] = 96464, - [SMALL_STATE(3104)] = 96493, - [SMALL_STATE(3105)] = 96522, - [SMALL_STATE(3106)] = 96549, - [SMALL_STATE(3107)] = 96580, - [SMALL_STATE(3108)] = 96603, - [SMALL_STATE(3109)] = 96632, - [SMALL_STATE(3110)] = 96657, - [SMALL_STATE(3111)] = 96682, - [SMALL_STATE(3112)] = 96707, - [SMALL_STATE(3113)] = 96730, - [SMALL_STATE(3114)] = 96755, - [SMALL_STATE(3115)] = 96784, - [SMALL_STATE(3116)] = 96807, - [SMALL_STATE(3117)] = 96832, - [SMALL_STATE(3118)] = 96861, - [SMALL_STATE(3119)] = 96884, - [SMALL_STATE(3120)] = 96907, - [SMALL_STATE(3121)] = 96930, - [SMALL_STATE(3122)] = 96959, - [SMALL_STATE(3123)] = 96984, - [SMALL_STATE(3124)] = 97009, - [SMALL_STATE(3125)] = 97034, - [SMALL_STATE(3126)] = 97063, - [SMALL_STATE(3127)] = 97086, + [SMALL_STATE(3092)] = 96161, + [SMALL_STATE(3093)] = 96186, + [SMALL_STATE(3094)] = 96211, + [SMALL_STATE(3095)] = 96236, + [SMALL_STATE(3096)] = 96261, + [SMALL_STATE(3097)] = 96286, + [SMALL_STATE(3098)] = 96311, + [SMALL_STATE(3099)] = 96336, + [SMALL_STATE(3100)] = 96361, + [SMALL_STATE(3101)] = 96386, + [SMALL_STATE(3102)] = 96411, + [SMALL_STATE(3103)] = 96436, + [SMALL_STATE(3104)] = 96461, + [SMALL_STATE(3105)] = 96486, + [SMALL_STATE(3106)] = 96511, + [SMALL_STATE(3107)] = 96540, + [SMALL_STATE(3108)] = 96565, + [SMALL_STATE(3109)] = 96594, + [SMALL_STATE(3110)] = 96617, + [SMALL_STATE(3111)] = 96642, + [SMALL_STATE(3112)] = 96667, + [SMALL_STATE(3113)] = 96692, + [SMALL_STATE(3114)] = 96717, + [SMALL_STATE(3115)] = 96740, + [SMALL_STATE(3116)] = 96769, + [SMALL_STATE(3117)] = 96794, + [SMALL_STATE(3118)] = 96819, + [SMALL_STATE(3119)] = 96844, + [SMALL_STATE(3120)] = 96869, + [SMALL_STATE(3121)] = 96894, + [SMALL_STATE(3122)] = 96923, + [SMALL_STATE(3123)] = 96952, + [SMALL_STATE(3124)] = 96981, + [SMALL_STATE(3125)] = 97024, + [SMALL_STATE(3126)] = 97053, + [SMALL_STATE(3127)] = 97080, [SMALL_STATE(3128)] = 97109, - [SMALL_STATE(3129)] = 97132, - [SMALL_STATE(3130)] = 97161, - [SMALL_STATE(3131)] = 97186, - [SMALL_STATE(3132)] = 97211, - [SMALL_STATE(3133)] = 97236, - [SMALL_STATE(3134)] = 97261, - [SMALL_STATE(3135)] = 97286, - [SMALL_STATE(3136)] = 97311, - [SMALL_STATE(3137)] = 97336, - [SMALL_STATE(3138)] = 97361, - [SMALL_STATE(3139)] = 97386, - [SMALL_STATE(3140)] = 97411, - [SMALL_STATE(3141)] = 97442, - [SMALL_STATE(3142)] = 97469, - [SMALL_STATE(3143)] = 97498, - [SMALL_STATE(3144)] = 97527, - [SMALL_STATE(3145)] = 97552, - [SMALL_STATE(3146)] = 97577, - [SMALL_STATE(3147)] = 97606, - [SMALL_STATE(3148)] = 97633, - [SMALL_STATE(3149)] = 97662, - [SMALL_STATE(3150)] = 97699, - [SMALL_STATE(3151)] = 97728, - [SMALL_STATE(3152)] = 97757, - [SMALL_STATE(3153)] = 97786, + [SMALL_STATE(3129)] = 97134, + [SMALL_STATE(3130)] = 97159, + [SMALL_STATE(3131)] = 97184, + [SMALL_STATE(3132)] = 97213, + [SMALL_STATE(3133)] = 97242, + [SMALL_STATE(3134)] = 97271, + [SMALL_STATE(3135)] = 97300, + [SMALL_STATE(3136)] = 97325, + [SMALL_STATE(3137)] = 97354, + [SMALL_STATE(3138)] = 97383, + [SMALL_STATE(3139)] = 97406, + [SMALL_STATE(3140)] = 97429, + [SMALL_STATE(3141)] = 97454, + [SMALL_STATE(3142)] = 97479, + [SMALL_STATE(3143)] = 97508, + [SMALL_STATE(3144)] = 97537, + [SMALL_STATE(3145)] = 97566, + [SMALL_STATE(3146)] = 97595, + [SMALL_STATE(3147)] = 97624, + [SMALL_STATE(3148)] = 97653, + [SMALL_STATE(3149)] = 97682, + [SMALL_STATE(3150)] = 97711, + [SMALL_STATE(3151)] = 97736, + [SMALL_STATE(3152)] = 97765, + [SMALL_STATE(3153)] = 97788, [SMALL_STATE(3154)] = 97811, [SMALL_STATE(3155)] = 97836, [SMALL_STATE(3156)] = 97861, [SMALL_STATE(3157)] = 97884, - [SMALL_STATE(3158)] = 97913, - [SMALL_STATE(3159)] = 97938, - [SMALL_STATE(3160)] = 97967, - [SMALL_STATE(3161)] = 97996, - [SMALL_STATE(3162)] = 98021, - [SMALL_STATE(3163)] = 98046, - [SMALL_STATE(3164)] = 98071, - [SMALL_STATE(3165)] = 98096, - [SMALL_STATE(3166)] = 98121, - [SMALL_STATE(3167)] = 98146, - [SMALL_STATE(3168)] = 98171, - [SMALL_STATE(3169)] = 98196, - [SMALL_STATE(3170)] = 98219, - [SMALL_STATE(3171)] = 98244, - [SMALL_STATE(3172)] = 98281, - [SMALL_STATE(3173)] = 98306, - [SMALL_STATE(3174)] = 98331, - [SMALL_STATE(3175)] = 98356, - [SMALL_STATE(3176)] = 98385, - [SMALL_STATE(3177)] = 98410, - [SMALL_STATE(3178)] = 98435, - [SMALL_STATE(3179)] = 98458, - [SMALL_STATE(3180)] = 98483, - [SMALL_STATE(3181)] = 98508, - [SMALL_STATE(3182)] = 98537, - [SMALL_STATE(3183)] = 98560, - [SMALL_STATE(3184)] = 98585, - [SMALL_STATE(3185)] = 98612, - [SMALL_STATE(3186)] = 98637, - [SMALL_STATE(3187)] = 98662, - [SMALL_STATE(3188)] = 98687, - [SMALL_STATE(3189)] = 98712, - [SMALL_STATE(3190)] = 98743, - [SMALL_STATE(3191)] = 98786, - [SMALL_STATE(3192)] = 98811, - [SMALL_STATE(3193)] = 98836, - [SMALL_STATE(3194)] = 98861, - [SMALL_STATE(3195)] = 98888, - [SMALL_STATE(3196)] = 98913, - [SMALL_STATE(3197)] = 98938, - [SMALL_STATE(3198)] = 98977, - [SMALL_STATE(3199)] = 99006, - [SMALL_STATE(3200)] = 99031, - [SMALL_STATE(3201)] = 99060, - [SMALL_STATE(3202)] = 99089, - [SMALL_STATE(3203)] = 99114, - [SMALL_STATE(3204)] = 99139, - [SMALL_STATE(3205)] = 99164, - [SMALL_STATE(3206)] = 99189, - [SMALL_STATE(3207)] = 99214, - [SMALL_STATE(3208)] = 99239, - [SMALL_STATE(3209)] = 99264, - [SMALL_STATE(3210)] = 99289, - [SMALL_STATE(3211)] = 99314, - [SMALL_STATE(3212)] = 99339, - [SMALL_STATE(3213)] = 99368, - [SMALL_STATE(3214)] = 99397, - [SMALL_STATE(3215)] = 99424, - [SMALL_STATE(3216)] = 99449, - [SMALL_STATE(3217)] = 99478, - [SMALL_STATE(3218)] = 99507, - [SMALL_STATE(3219)] = 99534, - [SMALL_STATE(3220)] = 99563, - [SMALL_STATE(3221)] = 99592, - [SMALL_STATE(3222)] = 99619, - [SMALL_STATE(3223)] = 99644, - [SMALL_STATE(3224)] = 99669, - [SMALL_STATE(3225)] = 99698, - [SMALL_STATE(3226)] = 99727, - [SMALL_STATE(3227)] = 99752, - [SMALL_STATE(3228)] = 99781, - [SMALL_STATE(3229)] = 99810, - [SMALL_STATE(3230)] = 99839, - [SMALL_STATE(3231)] = 99864, - [SMALL_STATE(3232)] = 99889, - [SMALL_STATE(3233)] = 99912, - [SMALL_STATE(3234)] = 99941, - [SMALL_STATE(3235)] = 99970, - [SMALL_STATE(3236)] = 99997, - [SMALL_STATE(3237)] = 100020, - [SMALL_STATE(3238)] = 100043, - [SMALL_STATE(3239)] = 100072, - [SMALL_STATE(3240)] = 100097, - [SMALL_STATE(3241)] = 100122, - [SMALL_STATE(3242)] = 100151, - [SMALL_STATE(3243)] = 100176, - [SMALL_STATE(3244)] = 100201, - [SMALL_STATE(3245)] = 100224, - [SMALL_STATE(3246)] = 100253, - [SMALL_STATE(3247)] = 100282, - [SMALL_STATE(3248)] = 100307, - [SMALL_STATE(3249)] = 100330, - [SMALL_STATE(3250)] = 100359, + [SMALL_STATE(3158)] = 97907, + [SMALL_STATE(3159)] = 97950, + [SMALL_STATE(3160)] = 97979, + [SMALL_STATE(3161)] = 98008, + [SMALL_STATE(3162)] = 98037, + [SMALL_STATE(3163)] = 98062, + [SMALL_STATE(3164)] = 98091, + [SMALL_STATE(3165)] = 98116, + [SMALL_STATE(3166)] = 98145, + [SMALL_STATE(3167)] = 98174, + [SMALL_STATE(3168)] = 98203, + [SMALL_STATE(3169)] = 98228, + [SMALL_STATE(3170)] = 98253, + [SMALL_STATE(3171)] = 98278, + [SMALL_STATE(3172)] = 98307, + [SMALL_STATE(3173)] = 98336, + [SMALL_STATE(3174)] = 98361, + [SMALL_STATE(3175)] = 98390, + [SMALL_STATE(3176)] = 98413, + [SMALL_STATE(3177)] = 98450, + [SMALL_STATE(3178)] = 98475, + [SMALL_STATE(3179)] = 98504, + [SMALL_STATE(3180)] = 98533, + [SMALL_STATE(3181)] = 98562, + [SMALL_STATE(3182)] = 98591, + [SMALL_STATE(3183)] = 98620, + [SMALL_STATE(3184)] = 98649, + [SMALL_STATE(3185)] = 98674, + [SMALL_STATE(3186)] = 98699, + [SMALL_STATE(3187)] = 98728, + [SMALL_STATE(3188)] = 98753, + [SMALL_STATE(3189)] = 98782, + [SMALL_STATE(3190)] = 98807, + [SMALL_STATE(3191)] = 98832, + [SMALL_STATE(3192)] = 98861, + [SMALL_STATE(3193)] = 98888, + [SMALL_STATE(3194)] = 98915, + [SMALL_STATE(3195)] = 98944, + [SMALL_STATE(3196)] = 98973, + [SMALL_STATE(3197)] = 99002, + [SMALL_STATE(3198)] = 99025, + [SMALL_STATE(3199)] = 99054, + [SMALL_STATE(3200)] = 99083, + [SMALL_STATE(3201)] = 99112, + [SMALL_STATE(3202)] = 99135, + [SMALL_STATE(3203)] = 99162, + [SMALL_STATE(3204)] = 99193, + [SMALL_STATE(3205)] = 99218, + [SMALL_STATE(3206)] = 99249, + [SMALL_STATE(3207)] = 99272, + [SMALL_STATE(3208)] = 99297, + [SMALL_STATE(3209)] = 99322, + [SMALL_STATE(3210)] = 99347, + [SMALL_STATE(3211)] = 99372, + [SMALL_STATE(3212)] = 99397, + [SMALL_STATE(3213)] = 99424, + [SMALL_STATE(3214)] = 99447, + [SMALL_STATE(3215)] = 99472, + [SMALL_STATE(3216)] = 99497, + [SMALL_STATE(3217)] = 99522, + [SMALL_STATE(3218)] = 99547, + [SMALL_STATE(3219)] = 99572, + [SMALL_STATE(3220)] = 99597, + [SMALL_STATE(3221)] = 99620, + [SMALL_STATE(3222)] = 99643, + [SMALL_STATE(3223)] = 99670, + [SMALL_STATE(3224)] = 99695, + [SMALL_STATE(3225)] = 99720, + [SMALL_STATE(3226)] = 99749, + [SMALL_STATE(3227)] = 99774, + [SMALL_STATE(3228)] = 99801, + [SMALL_STATE(3229)] = 99826, + [SMALL_STATE(3230)] = 99849, + [SMALL_STATE(3231)] = 99876, + [SMALL_STATE(3232)] = 99901, + [SMALL_STATE(3233)] = 99926, + [SMALL_STATE(3234)] = 99953, + [SMALL_STATE(3235)] = 99976, + [SMALL_STATE(3236)] = 99999, + [SMALL_STATE(3237)] = 100028, + [SMALL_STATE(3238)] = 100051, + [SMALL_STATE(3239)] = 100076, + [SMALL_STATE(3240)] = 100101, + [SMALL_STATE(3241)] = 100126, + [SMALL_STATE(3242)] = 100149, + [SMALL_STATE(3243)] = 100172, + [SMALL_STATE(3244)] = 100197, + [SMALL_STATE(3245)] = 100226, + [SMALL_STATE(3246)] = 100255, + [SMALL_STATE(3247)] = 100278, + [SMALL_STATE(3248)] = 100303, + [SMALL_STATE(3249)] = 100328, + [SMALL_STATE(3250)] = 100355, [SMALL_STATE(3251)] = 100384, [SMALL_STATE(3252)] = 100409, - [SMALL_STATE(3253)] = 100434, - [SMALL_STATE(3254)] = 100459, - [SMALL_STATE(3255)] = 100484, - [SMALL_STATE(3256)] = 100513, - [SMALL_STATE(3257)] = 100540, - [SMALL_STATE(3258)] = 100563, - [SMALL_STATE(3259)] = 100592, - [SMALL_STATE(3260)] = 100617, + [SMALL_STATE(3253)] = 100438, + [SMALL_STATE(3254)] = 100463, + [SMALL_STATE(3255)] = 100488, + [SMALL_STATE(3256)] = 100511, + [SMALL_STATE(3257)] = 100536, + [SMALL_STATE(3258)] = 100559, + [SMALL_STATE(3259)] = 100588, + [SMALL_STATE(3260)] = 100619, [SMALL_STATE(3261)] = 100642, - [SMALL_STATE(3262)] = 100671, + [SMALL_STATE(3262)] = 100665, [SMALL_STATE(3263)] = 100696, [SMALL_STATE(3264)] = 100720, - [SMALL_STATE(3265)] = 100744, - [SMALL_STATE(3266)] = 100768, - [SMALL_STATE(3267)] = 100792, - [SMALL_STATE(3268)] = 100814, - [SMALL_STATE(3269)] = 100838, - [SMALL_STATE(3270)] = 100860, - [SMALL_STATE(3271)] = 100884, - [SMALL_STATE(3272)] = 100908, - [SMALL_STATE(3273)] = 100954, - [SMALL_STATE(3274)] = 100978, - [SMALL_STATE(3275)] = 101002, - [SMALL_STATE(3276)] = 101026, - [SMALL_STATE(3277)] = 101072, - [SMALL_STATE(3278)] = 101096, - [SMALL_STATE(3279)] = 101120, - [SMALL_STATE(3280)] = 101144, - [SMALL_STATE(3281)] = 101166, - [SMALL_STATE(3282)] = 101190, - [SMALL_STATE(3283)] = 101214, - [SMALL_STATE(3284)] = 101238, - [SMALL_STATE(3285)] = 101262, - [SMALL_STATE(3286)] = 101286, - [SMALL_STATE(3287)] = 101310, - [SMALL_STATE(3288)] = 101334, - [SMALL_STATE(3289)] = 101358, - [SMALL_STATE(3290)] = 101398, - [SMALL_STATE(3291)] = 101420, - [SMALL_STATE(3292)] = 101442, - [SMALL_STATE(3293)] = 101482, - [SMALL_STATE(3294)] = 101506, - [SMALL_STATE(3295)] = 101530, - [SMALL_STATE(3296)] = 101554, - [SMALL_STATE(3297)] = 101578, - [SMALL_STATE(3298)] = 101602, - [SMALL_STATE(3299)] = 101626, - [SMALL_STATE(3300)] = 101650, - [SMALL_STATE(3301)] = 101686, - [SMALL_STATE(3302)] = 101708, - [SMALL_STATE(3303)] = 101732, - [SMALL_STATE(3304)] = 101754, - [SMALL_STATE(3305)] = 101776, - [SMALL_STATE(3306)] = 101800, - [SMALL_STATE(3307)] = 101824, - [SMALL_STATE(3308)] = 101846, - [SMALL_STATE(3309)] = 101868, - [SMALL_STATE(3310)] = 101892, - [SMALL_STATE(3311)] = 101938, - [SMALL_STATE(3312)] = 101962, - [SMALL_STATE(3313)] = 101986, - [SMALL_STATE(3314)] = 102010, - [SMALL_STATE(3315)] = 102034, - [SMALL_STATE(3316)] = 102074, - [SMALL_STATE(3317)] = 102114, - [SMALL_STATE(3318)] = 102138, - [SMALL_STATE(3319)] = 102162, - [SMALL_STATE(3320)] = 102184, - [SMALL_STATE(3321)] = 102208, - [SMALL_STATE(3322)] = 102230, - [SMALL_STATE(3323)] = 102254, - [SMALL_STATE(3324)] = 102278, - [SMALL_STATE(3325)] = 102302, - [SMALL_STATE(3326)] = 102326, - [SMALL_STATE(3327)] = 102368, - [SMALL_STATE(3328)] = 102392, - [SMALL_STATE(3329)] = 102416, - [SMALL_STATE(3330)] = 102440, - [SMALL_STATE(3331)] = 102464, - [SMALL_STATE(3332)] = 102486, - [SMALL_STATE(3333)] = 102510, - [SMALL_STATE(3334)] = 102534, - [SMALL_STATE(3335)] = 102556, - [SMALL_STATE(3336)] = 102580, - [SMALL_STATE(3337)] = 102604, - [SMALL_STATE(3338)] = 102638, - [SMALL_STATE(3339)] = 102662, - [SMALL_STATE(3340)] = 102708, - [SMALL_STATE(3341)] = 102754, - [SMALL_STATE(3342)] = 102778, - [SMALL_STATE(3343)] = 102800, - [SMALL_STATE(3344)] = 102822, - [SMALL_STATE(3345)] = 102846, - [SMALL_STATE(3346)] = 102870, - [SMALL_STATE(3347)] = 102894, - [SMALL_STATE(3348)] = 102916, - [SMALL_STATE(3349)] = 102962, - [SMALL_STATE(3350)] = 102986, - [SMALL_STATE(3351)] = 103010, - [SMALL_STATE(3352)] = 103034, - [SMALL_STATE(3353)] = 103070, - [SMALL_STATE(3354)] = 103094, - [SMALL_STATE(3355)] = 103120, - [SMALL_STATE(3356)] = 103144, - [SMALL_STATE(3357)] = 103184, - [SMALL_STATE(3358)] = 103208, - [SMALL_STATE(3359)] = 103232, - [SMALL_STATE(3360)] = 103256, - [SMALL_STATE(3361)] = 103280, - [SMALL_STATE(3362)] = 103326, - [SMALL_STATE(3363)] = 103350, - [SMALL_STATE(3364)] = 103372, - [SMALL_STATE(3365)] = 103396, - [SMALL_STATE(3366)] = 103420, - [SMALL_STATE(3367)] = 103444, - [SMALL_STATE(3368)] = 103468, - [SMALL_STATE(3369)] = 103508, - [SMALL_STATE(3370)] = 103530, - [SMALL_STATE(3371)] = 103572, - [SMALL_STATE(3372)] = 103594, - [SMALL_STATE(3373)] = 103618, - [SMALL_STATE(3374)] = 103642, - [SMALL_STATE(3375)] = 103688, - [SMALL_STATE(3376)] = 103722, - [SMALL_STATE(3377)] = 103750, - [SMALL_STATE(3378)] = 103778, - [SMALL_STATE(3379)] = 103806, - [SMALL_STATE(3380)] = 103834, - [SMALL_STATE(3381)] = 103862, + [SMALL_STATE(3265)] = 100760, + [SMALL_STATE(3266)] = 100788, + [SMALL_STATE(3267)] = 100812, + [SMALL_STATE(3268)] = 100840, + [SMALL_STATE(3269)] = 100868, + [SMALL_STATE(3270)] = 100890, + [SMALL_STATE(3271)] = 100918, + [SMALL_STATE(3272)] = 100942, + [SMALL_STATE(3273)] = 100966, + [SMALL_STATE(3274)] = 100990, + [SMALL_STATE(3275)] = 101018, + [SMALL_STATE(3276)] = 101046, + [SMALL_STATE(3277)] = 101074, + [SMALL_STATE(3278)] = 101120, + [SMALL_STATE(3279)] = 101148, + [SMALL_STATE(3280)] = 101194, + [SMALL_STATE(3281)] = 101222, + [SMALL_STATE(3282)] = 101250, + [SMALL_STATE(3283)] = 101278, + [SMALL_STATE(3284)] = 101300, + [SMALL_STATE(3285)] = 101324, + [SMALL_STATE(3286)] = 101352, + [SMALL_STATE(3287)] = 101376, + [SMALL_STATE(3288)] = 101400, + [SMALL_STATE(3289)] = 101424, + [SMALL_STATE(3290)] = 101448, + [SMALL_STATE(3291)] = 101472, + [SMALL_STATE(3292)] = 101496, + [SMALL_STATE(3293)] = 101518, + [SMALL_STATE(3294)] = 101542, + [SMALL_STATE(3295)] = 101564, + [SMALL_STATE(3296)] = 101588, + [SMALL_STATE(3297)] = 101610, + [SMALL_STATE(3298)] = 101632, + [SMALL_STATE(3299)] = 101658, + [SMALL_STATE(3300)] = 101680, + [SMALL_STATE(3301)] = 101702, + [SMALL_STATE(3302)] = 101724, + [SMALL_STATE(3303)] = 101760, + [SMALL_STATE(3304)] = 101806, + [SMALL_STATE(3305)] = 101852, + [SMALL_STATE(3306)] = 101898, + [SMALL_STATE(3307)] = 101920, + [SMALL_STATE(3308)] = 101942, + [SMALL_STATE(3309)] = 101966, + [SMALL_STATE(3310)] = 101990, + [SMALL_STATE(3311)] = 102016, + [SMALL_STATE(3312)] = 102040, + [SMALL_STATE(3313)] = 102064, + [SMALL_STATE(3314)] = 102088, + [SMALL_STATE(3315)] = 102110, + [SMALL_STATE(3316)] = 102134, + [SMALL_STATE(3317)] = 102156, + [SMALL_STATE(3318)] = 102180, + [SMALL_STATE(3319)] = 102216, + [SMALL_STATE(3320)] = 102238, + [SMALL_STATE(3321)] = 102262, + [SMALL_STATE(3322)] = 102286, + [SMALL_STATE(3323)] = 102310, + [SMALL_STATE(3324)] = 102332, + [SMALL_STATE(3325)] = 102354, + [SMALL_STATE(3326)] = 102378, + [SMALL_STATE(3327)] = 102402, + [SMALL_STATE(3328)] = 102426, + [SMALL_STATE(3329)] = 102450, + [SMALL_STATE(3330)] = 102474, + [SMALL_STATE(3331)] = 102498, + [SMALL_STATE(3332)] = 102538, + [SMALL_STATE(3333)] = 102562, + [SMALL_STATE(3334)] = 102586, + [SMALL_STATE(3335)] = 102608, + [SMALL_STATE(3336)] = 102632, + [SMALL_STATE(3337)] = 102656, + [SMALL_STATE(3338)] = 102680, + [SMALL_STATE(3339)] = 102722, + [SMALL_STATE(3340)] = 102744, + [SMALL_STATE(3341)] = 102768, + [SMALL_STATE(3342)] = 102790, + [SMALL_STATE(3343)] = 102814, + [SMALL_STATE(3344)] = 102836, + [SMALL_STATE(3345)] = 102860, + [SMALL_STATE(3346)] = 102900, + [SMALL_STATE(3347)] = 102946, + [SMALL_STATE(3348)] = 102970, + [SMALL_STATE(3349)] = 102992, + [SMALL_STATE(3350)] = 103014, + [SMALL_STATE(3351)] = 103036, + [SMALL_STATE(3352)] = 103060, + [SMALL_STATE(3353)] = 103082, + [SMALL_STATE(3354)] = 103106, + [SMALL_STATE(3355)] = 103130, + [SMALL_STATE(3356)] = 103154, + [SMALL_STATE(3357)] = 103178, + [SMALL_STATE(3358)] = 103202, + [SMALL_STATE(3359)] = 103242, + [SMALL_STATE(3360)] = 103284, + [SMALL_STATE(3361)] = 103330, + [SMALL_STATE(3362)] = 103354, + [SMALL_STATE(3363)] = 103378, + [SMALL_STATE(3364)] = 103402, + [SMALL_STATE(3365)] = 103448, + [SMALL_STATE(3366)] = 103470, + [SMALL_STATE(3367)] = 103516, + [SMALL_STATE(3368)] = 103562, + [SMALL_STATE(3369)] = 103586, + [SMALL_STATE(3370)] = 103608, + [SMALL_STATE(3371)] = 103632, + [SMALL_STATE(3372)] = 103656, + [SMALL_STATE(3373)] = 103680, + [SMALL_STATE(3374)] = 103704, + [SMALL_STATE(3375)] = 103728, + [SMALL_STATE(3376)] = 103752, + [SMALL_STATE(3377)] = 103776, + [SMALL_STATE(3378)] = 103800, + [SMALL_STATE(3379)] = 103822, + [SMALL_STATE(3380)] = 103844, + [SMALL_STATE(3381)] = 103868, [SMALL_STATE(3382)] = 103890, - [SMALL_STATE(3383)] = 103918, - [SMALL_STATE(3384)] = 103946, - [SMALL_STATE(3385)] = 103974, - [SMALL_STATE(3386)] = 104002, - [SMALL_STATE(3387)] = 104030, - [SMALL_STATE(3388)] = 104058, - [SMALL_STATE(3389)] = 104082, - [SMALL_STATE(3390)] = 104128, - [SMALL_STATE(3391)] = 104162, - [SMALL_STATE(3392)] = 104184, - [SMALL_STATE(3393)] = 104218, - [SMALL_STATE(3394)] = 104258, - [SMALL_STATE(3395)] = 104280, - [SMALL_STATE(3396)] = 104304, - [SMALL_STATE(3397)] = 104328, - [SMALL_STATE(3398)] = 104352, - [SMALL_STATE(3399)] = 104376, - [SMALL_STATE(3400)] = 104402, - [SMALL_STATE(3401)] = 104448, - [SMALL_STATE(3402)] = 104470, - [SMALL_STATE(3403)] = 104494, - [SMALL_STATE(3404)] = 104516, - [SMALL_STATE(3405)] = 104538, - [SMALL_STATE(3406)] = 104560, - [SMALL_STATE(3407)] = 104582, - [SMALL_STATE(3408)] = 104606, - [SMALL_STATE(3409)] = 104630, - [SMALL_STATE(3410)] = 104654, - [SMALL_STATE(3411)] = 104678, - [SMALL_STATE(3412)] = 104700, - [SMALL_STATE(3413)] = 104722, - [SMALL_STATE(3414)] = 104746, - [SMALL_STATE(3415)] = 104768, - [SMALL_STATE(3416)] = 104790, + [SMALL_STATE(3383)] = 103914, + [SMALL_STATE(3384)] = 103936, + [SMALL_STATE(3385)] = 103960, + [SMALL_STATE(3386)] = 103984, + [SMALL_STATE(3387)] = 104024, + [SMALL_STATE(3388)] = 104048, + [SMALL_STATE(3389)] = 104072, + [SMALL_STATE(3390)] = 104096, + [SMALL_STATE(3391)] = 104120, + [SMALL_STATE(3392)] = 104144, + [SMALL_STATE(3393)] = 104168, + [SMALL_STATE(3394)] = 104192, + [SMALL_STATE(3395)] = 104216, + [SMALL_STATE(3396)] = 104240, + [SMALL_STATE(3397)] = 104280, + [SMALL_STATE(3398)] = 104304, + [SMALL_STATE(3399)] = 104328, + [SMALL_STATE(3400)] = 104352, + [SMALL_STATE(3401)] = 104376, + [SMALL_STATE(3402)] = 104400, + [SMALL_STATE(3403)] = 104424, + [SMALL_STATE(3404)] = 104448, + [SMALL_STATE(3405)] = 104482, + [SMALL_STATE(3406)] = 104506, + [SMALL_STATE(3407)] = 104540, + [SMALL_STATE(3408)] = 104574, + [SMALL_STATE(3409)] = 104608, + [SMALL_STATE(3410)] = 104632, + [SMALL_STATE(3411)] = 104656, + [SMALL_STATE(3412)] = 104680, + [SMALL_STATE(3413)] = 104704, + [SMALL_STATE(3414)] = 104728, + [SMALL_STATE(3415)] = 104752, + [SMALL_STATE(3416)] = 104792, [SMALL_STATE(3417)] = 104814, [SMALL_STATE(3418)] = 104838, [SMALL_STATE(3419)] = 104862, [SMALL_STATE(3420)] = 104883, [SMALL_STATE(3421)] = 104904, - [SMALL_STATE(3422)] = 104943, - [SMALL_STATE(3423)] = 104964, - [SMALL_STATE(3424)] = 104987, - [SMALL_STATE(3425)] = 105010, - [SMALL_STATE(3426)] = 105031, - [SMALL_STATE(3427)] = 105052, - [SMALL_STATE(3428)] = 105073, - [SMALL_STATE(3429)] = 105112, - [SMALL_STATE(3430)] = 105149, - [SMALL_STATE(3431)] = 105186, - [SMALL_STATE(3432)] = 105223, - [SMALL_STATE(3433)] = 105262, - [SMALL_STATE(3434)] = 105285, - [SMALL_STATE(3435)] = 105308, - [SMALL_STATE(3436)] = 105329, - [SMALL_STATE(3437)] = 105356, - [SMALL_STATE(3438)] = 105377, - [SMALL_STATE(3439)] = 105398, - [SMALL_STATE(3440)] = 105425, - [SMALL_STATE(3441)] = 105446, - [SMALL_STATE(3442)] = 105467, - [SMALL_STATE(3443)] = 105488, - [SMALL_STATE(3444)] = 105509, - [SMALL_STATE(3445)] = 105548, - [SMALL_STATE(3446)] = 105575, - [SMALL_STATE(3447)] = 105596, - [SMALL_STATE(3448)] = 105623, - [SMALL_STATE(3449)] = 105648, - [SMALL_STATE(3450)] = 105675, - [SMALL_STATE(3451)] = 105698, - [SMALL_STATE(3452)] = 105735, - [SMALL_STATE(3453)] = 105772, - [SMALL_STATE(3454)] = 105809, - [SMALL_STATE(3455)] = 105846, - [SMALL_STATE(3456)] = 105873, - [SMALL_STATE(3457)] = 105894, - [SMALL_STATE(3458)] = 105915, - [SMALL_STATE(3459)] = 105936, - [SMALL_STATE(3460)] = 105957, - [SMALL_STATE(3461)] = 105978, - [SMALL_STATE(3462)] = 106017, - [SMALL_STATE(3463)] = 106040, - [SMALL_STATE(3464)] = 106063, - [SMALL_STATE(3465)] = 106084, - [SMALL_STATE(3466)] = 106105, - [SMALL_STATE(3467)] = 106126, - [SMALL_STATE(3468)] = 106147, - [SMALL_STATE(3469)] = 106170, - [SMALL_STATE(3470)] = 106191, - [SMALL_STATE(3471)] = 106212, - [SMALL_STATE(3472)] = 106233, - [SMALL_STATE(3473)] = 106254, - [SMALL_STATE(3474)] = 106285, - [SMALL_STATE(3475)] = 106324, - [SMALL_STATE(3476)] = 106347, - [SMALL_STATE(3477)] = 106368, - [SMALL_STATE(3478)] = 106389, - [SMALL_STATE(3479)] = 106410, - [SMALL_STATE(3480)] = 106431, - [SMALL_STATE(3481)] = 106468, - [SMALL_STATE(3482)] = 106489, - [SMALL_STATE(3483)] = 106510, - [SMALL_STATE(3484)] = 106531, - [SMALL_STATE(3485)] = 106552, - [SMALL_STATE(3486)] = 106573, - [SMALL_STATE(3487)] = 106596, - [SMALL_STATE(3488)] = 106619, - [SMALL_STATE(3489)] = 106642, - [SMALL_STATE(3490)] = 106665, - [SMALL_STATE(3491)] = 106688, - [SMALL_STATE(3492)] = 106709, - [SMALL_STATE(3493)] = 106732, - [SMALL_STATE(3494)] = 106755, - [SMALL_STATE(3495)] = 106778, - [SMALL_STATE(3496)] = 106801, - [SMALL_STATE(3497)] = 106838, - [SMALL_STATE(3498)] = 106875, - [SMALL_STATE(3499)] = 106912, - [SMALL_STATE(3500)] = 106935, - [SMALL_STATE(3501)] = 106958, - [SMALL_STATE(3502)] = 106981, - [SMALL_STATE(3503)] = 107004, - [SMALL_STATE(3504)] = 107027, - [SMALL_STATE(3505)] = 107050, - [SMALL_STATE(3506)] = 107073, - [SMALL_STATE(3507)] = 107096, - [SMALL_STATE(3508)] = 107123, - [SMALL_STATE(3509)] = 107144, - [SMALL_STATE(3510)] = 107165, - [SMALL_STATE(3511)] = 107186, - [SMALL_STATE(3512)] = 107207, - [SMALL_STATE(3513)] = 107228, - [SMALL_STATE(3514)] = 107249, - [SMALL_STATE(3515)] = 107276, - [SMALL_STATE(3516)] = 107303, - [SMALL_STATE(3517)] = 107324, - [SMALL_STATE(3518)] = 107345, - [SMALL_STATE(3519)] = 107372, - [SMALL_STATE(3520)] = 107393, - [SMALL_STATE(3521)] = 107414, - [SMALL_STATE(3522)] = 107435, - [SMALL_STATE(3523)] = 107456, - [SMALL_STATE(3524)] = 107477, - [SMALL_STATE(3525)] = 107498, - [SMALL_STATE(3526)] = 107521, - [SMALL_STATE(3527)] = 107542, - [SMALL_STATE(3528)] = 107563, - [SMALL_STATE(3529)] = 107584, - [SMALL_STATE(3530)] = 107607, - [SMALL_STATE(3531)] = 107628, - [SMALL_STATE(3532)] = 107649, - [SMALL_STATE(3533)] = 107672, - [SMALL_STATE(3534)] = 107693, - [SMALL_STATE(3535)] = 107716, - [SMALL_STATE(3536)] = 107737, - [SMALL_STATE(3537)] = 107758, - [SMALL_STATE(3538)] = 107779, - [SMALL_STATE(3539)] = 107800, - [SMALL_STATE(3540)] = 107821, - [SMALL_STATE(3541)] = 107842, - [SMALL_STATE(3542)] = 107865, - [SMALL_STATE(3543)] = 107886, - [SMALL_STATE(3544)] = 107907, - [SMALL_STATE(3545)] = 107928, - [SMALL_STATE(3546)] = 107949, - [SMALL_STATE(3547)] = 107986, - [SMALL_STATE(3548)] = 108009, - [SMALL_STATE(3549)] = 108032, - [SMALL_STATE(3550)] = 108053, - [SMALL_STATE(3551)] = 108074, - [SMALL_STATE(3552)] = 108095, - [SMALL_STATE(3553)] = 108118, - [SMALL_STATE(3554)] = 108141, - [SMALL_STATE(3555)] = 108162, - [SMALL_STATE(3556)] = 108185, - [SMALL_STATE(3557)] = 108212, - [SMALL_STATE(3558)] = 108235, - [SMALL_STATE(3559)] = 108262, - [SMALL_STATE(3560)] = 108289, - [SMALL_STATE(3561)] = 108316, - [SMALL_STATE(3562)] = 108343, - [SMALL_STATE(3563)] = 108370, - [SMALL_STATE(3564)] = 108397, - [SMALL_STATE(3565)] = 108424, - [SMALL_STATE(3566)] = 108451, - [SMALL_STATE(3567)] = 108478, - [SMALL_STATE(3568)] = 108505, - [SMALL_STATE(3569)] = 108532, - [SMALL_STATE(3570)] = 108553, - [SMALL_STATE(3571)] = 108574, - [SMALL_STATE(3572)] = 108597, - [SMALL_STATE(3573)] = 108618, - [SMALL_STATE(3574)] = 108639, - [SMALL_STATE(3575)] = 108660, - [SMALL_STATE(3576)] = 108681, - [SMALL_STATE(3577)] = 108720, - [SMALL_STATE(3578)] = 108741, - [SMALL_STATE(3579)] = 108762, - [SMALL_STATE(3580)] = 108783, - [SMALL_STATE(3581)] = 108804, - [SMALL_STATE(3582)] = 108825, - [SMALL_STATE(3583)] = 108846, - [SMALL_STATE(3584)] = 108867, - [SMALL_STATE(3585)] = 108888, - [SMALL_STATE(3586)] = 108909, - [SMALL_STATE(3587)] = 108930, - [SMALL_STATE(3588)] = 108951, - [SMALL_STATE(3589)] = 108972, - [SMALL_STATE(3590)] = 108993, - [SMALL_STATE(3591)] = 109030, - [SMALL_STATE(3592)] = 109053, - [SMALL_STATE(3593)] = 109074, - [SMALL_STATE(3594)] = 109095, - [SMALL_STATE(3595)] = 109116, - [SMALL_STATE(3596)] = 109139, - [SMALL_STATE(3597)] = 109160, - [SMALL_STATE(3598)] = 109181, - [SMALL_STATE(3599)] = 109202, - [SMALL_STATE(3600)] = 109223, - [SMALL_STATE(3601)] = 109244, - [SMALL_STATE(3602)] = 109265, - [SMALL_STATE(3603)] = 109292, - [SMALL_STATE(3604)] = 109313, - [SMALL_STATE(3605)] = 109334, - [SMALL_STATE(3606)] = 109363, + [SMALL_STATE(3422)] = 104925, + [SMALL_STATE(3423)] = 104946, + [SMALL_STATE(3424)] = 104967, + [SMALL_STATE(3425)] = 104988, + [SMALL_STATE(3426)] = 105009, + [SMALL_STATE(3427)] = 105030, + [SMALL_STATE(3428)] = 105051, + [SMALL_STATE(3429)] = 105072, + [SMALL_STATE(3430)] = 105093, + [SMALL_STATE(3431)] = 105114, + [SMALL_STATE(3432)] = 105135, + [SMALL_STATE(3433)] = 105156, + [SMALL_STATE(3434)] = 105177, + [SMALL_STATE(3435)] = 105198, + [SMALL_STATE(3436)] = 105219, + [SMALL_STATE(3437)] = 105240, + [SMALL_STATE(3438)] = 105263, + [SMALL_STATE(3439)] = 105284, + [SMALL_STATE(3440)] = 105307, + [SMALL_STATE(3441)] = 105328, + [SMALL_STATE(3442)] = 105349, + [SMALL_STATE(3443)] = 105370, + [SMALL_STATE(3444)] = 105407, + [SMALL_STATE(3445)] = 105444, + [SMALL_STATE(3446)] = 105465, + [SMALL_STATE(3447)] = 105486, + [SMALL_STATE(3448)] = 105507, + [SMALL_STATE(3449)] = 105544, + [SMALL_STATE(3450)] = 105565, + [SMALL_STATE(3451)] = 105586, + [SMALL_STATE(3452)] = 105607, + [SMALL_STATE(3453)] = 105628, + [SMALL_STATE(3454)] = 105649, + [SMALL_STATE(3455)] = 105670, + [SMALL_STATE(3456)] = 105691, + [SMALL_STATE(3457)] = 105712, + [SMALL_STATE(3458)] = 105733, + [SMALL_STATE(3459)] = 105754, + [SMALL_STATE(3460)] = 105775, + [SMALL_STATE(3461)] = 105796, + [SMALL_STATE(3462)] = 105819, + [SMALL_STATE(3463)] = 105856, + [SMALL_STATE(3464)] = 105893, + [SMALL_STATE(3465)] = 105930, + [SMALL_STATE(3466)] = 105951, + [SMALL_STATE(3467)] = 105972, + [SMALL_STATE(3468)] = 106009, + [SMALL_STATE(3469)] = 106030, + [SMALL_STATE(3470)] = 106069, + [SMALL_STATE(3471)] = 106092, + [SMALL_STATE(3472)] = 106113, + [SMALL_STATE(3473)] = 106134, + [SMALL_STATE(3474)] = 106157, + [SMALL_STATE(3475)] = 106180, + [SMALL_STATE(3476)] = 106201, + [SMALL_STATE(3477)] = 106224, + [SMALL_STATE(3478)] = 106247, + [SMALL_STATE(3479)] = 106270, + [SMALL_STATE(3480)] = 106291, + [SMALL_STATE(3481)] = 106312, + [SMALL_STATE(3482)] = 106333, + [SMALL_STATE(3483)] = 106356, + [SMALL_STATE(3484)] = 106379, + [SMALL_STATE(3485)] = 106400, + [SMALL_STATE(3486)] = 106439, + [SMALL_STATE(3487)] = 106460, + [SMALL_STATE(3488)] = 106481, + [SMALL_STATE(3489)] = 106502, + [SMALL_STATE(3490)] = 106525, + [SMALL_STATE(3491)] = 106546, + [SMALL_STATE(3492)] = 106567, + [SMALL_STATE(3493)] = 106588, + [SMALL_STATE(3494)] = 106611, + [SMALL_STATE(3495)] = 106632, + [SMALL_STATE(3496)] = 106653, + [SMALL_STATE(3497)] = 106676, + [SMALL_STATE(3498)] = 106697, + [SMALL_STATE(3499)] = 106718, + [SMALL_STATE(3500)] = 106741, + [SMALL_STATE(3501)] = 106762, + [SMALL_STATE(3502)] = 106785, + [SMALL_STATE(3503)] = 106808, + [SMALL_STATE(3504)] = 106845, + [SMALL_STATE(3505)] = 106866, + [SMALL_STATE(3506)] = 106887, + [SMALL_STATE(3507)] = 106910, + [SMALL_STATE(3508)] = 106931, + [SMALL_STATE(3509)] = 106952, + [SMALL_STATE(3510)] = 106973, + [SMALL_STATE(3511)] = 106994, + [SMALL_STATE(3512)] = 107015, + [SMALL_STATE(3513)] = 107036, + [SMALL_STATE(3514)] = 107073, + [SMALL_STATE(3515)] = 107096, + [SMALL_STATE(3516)] = 107123, + [SMALL_STATE(3517)] = 107150, + [SMALL_STATE(3518)] = 107171, + [SMALL_STATE(3519)] = 107208, + [SMALL_STATE(3520)] = 107229, + [SMALL_STATE(3521)] = 107256, + [SMALL_STATE(3522)] = 107277, + [SMALL_STATE(3523)] = 107298, + [SMALL_STATE(3524)] = 107319, + [SMALL_STATE(3525)] = 107346, + [SMALL_STATE(3526)] = 107385, + [SMALL_STATE(3527)] = 107406, + [SMALL_STATE(3528)] = 107427, + [SMALL_STATE(3529)] = 107448, + [SMALL_STATE(3530)] = 107469, + [SMALL_STATE(3531)] = 107490, + [SMALL_STATE(3532)] = 107527, + [SMALL_STATE(3533)] = 107548, + [SMALL_STATE(3534)] = 107569, + [SMALL_STATE(3535)] = 107596, + [SMALL_STATE(3536)] = 107617, + [SMALL_STATE(3537)] = 107638, + [SMALL_STATE(3538)] = 107665, + [SMALL_STATE(3539)] = 107692, + [SMALL_STATE(3540)] = 107715, + [SMALL_STATE(3541)] = 107742, + [SMALL_STATE(3542)] = 107763, + [SMALL_STATE(3543)] = 107788, + [SMALL_STATE(3544)] = 107811, + [SMALL_STATE(3545)] = 107832, + [SMALL_STATE(3546)] = 107853, + [SMALL_STATE(3547)] = 107876, + [SMALL_STATE(3548)] = 107899, + [SMALL_STATE(3549)] = 107922, + [SMALL_STATE(3550)] = 107949, + [SMALL_STATE(3551)] = 107976, + [SMALL_STATE(3552)] = 108003, + [SMALL_STATE(3553)] = 108024, + [SMALL_STATE(3554)] = 108051, + [SMALL_STATE(3555)] = 108072, + [SMALL_STATE(3556)] = 108093, + [SMALL_STATE(3557)] = 108132, + [SMALL_STATE(3558)] = 108153, + [SMALL_STATE(3559)] = 108180, + [SMALL_STATE(3560)] = 108201, + [SMALL_STATE(3561)] = 108222, + [SMALL_STATE(3562)] = 108245, + [SMALL_STATE(3563)] = 108266, + [SMALL_STATE(3564)] = 108293, + [SMALL_STATE(3565)] = 108316, + [SMALL_STATE(3566)] = 108337, + [SMALL_STATE(3567)] = 108364, + [SMALL_STATE(3568)] = 108385, + [SMALL_STATE(3569)] = 108406, + [SMALL_STATE(3570)] = 108427, + [SMALL_STATE(3571)] = 108448, + [SMALL_STATE(3572)] = 108475, + [SMALL_STATE(3573)] = 108502, + [SMALL_STATE(3574)] = 108523, + [SMALL_STATE(3575)] = 108546, + [SMALL_STATE(3576)] = 108567, + [SMALL_STATE(3577)] = 108606, + [SMALL_STATE(3578)] = 108643, + [SMALL_STATE(3579)] = 108666, + [SMALL_STATE(3580)] = 108693, + [SMALL_STATE(3581)] = 108716, + [SMALL_STATE(3582)] = 108739, + [SMALL_STATE(3583)] = 108766, + [SMALL_STATE(3584)] = 108787, + [SMALL_STATE(3585)] = 108810, + [SMALL_STATE(3586)] = 108837, + [SMALL_STATE(3587)] = 108860, + [SMALL_STATE(3588)] = 108881, + [SMALL_STATE(3589)] = 108908, + [SMALL_STATE(3590)] = 108939, + [SMALL_STATE(3591)] = 108962, + [SMALL_STATE(3592)] = 108983, + [SMALL_STATE(3593)] = 109006, + [SMALL_STATE(3594)] = 109045, + [SMALL_STATE(3595)] = 109074, + [SMALL_STATE(3596)] = 109097, + [SMALL_STATE(3597)] = 109124, + [SMALL_STATE(3598)] = 109147, + [SMALL_STATE(3599)] = 109184, + [SMALL_STATE(3600)] = 109207, + [SMALL_STATE(3601)] = 109228, + [SMALL_STATE(3602)] = 109255, + [SMALL_STATE(3603)] = 109278, + [SMALL_STATE(3604)] = 109301, + [SMALL_STATE(3605)] = 109324, + [SMALL_STATE(3606)] = 109347, [SMALL_STATE(3607)] = 109386, [SMALL_STATE(3608)] = 109409, - [SMALL_STATE(3609)] = 109430, + [SMALL_STATE(3609)] = 109432, [SMALL_STATE(3610)] = 109453, [SMALL_STATE(3611)] = 109479, - [SMALL_STATE(3612)] = 109515, - [SMALL_STATE(3613)] = 109539, - [SMALL_STATE(3614)] = 109565, - [SMALL_STATE(3615)] = 109597, - [SMALL_STATE(3616)] = 109621, - [SMALL_STATE(3617)] = 109645, + [SMALL_STATE(3612)] = 109503, + [SMALL_STATE(3613)] = 109535, + [SMALL_STATE(3614)] = 109561, + [SMALL_STATE(3615)] = 109593, + [SMALL_STATE(3616)] = 109617, + [SMALL_STATE(3617)] = 109643, [SMALL_STATE(3618)] = 109669, - [SMALL_STATE(3619)] = 109693, - [SMALL_STATE(3620)] = 109729, - [SMALL_STATE(3621)] = 109761, + [SMALL_STATE(3619)] = 109691, + [SMALL_STATE(3620)] = 109727, + [SMALL_STATE(3621)] = 109751, [SMALL_STATE(3622)] = 109785, - [SMALL_STATE(3623)] = 109817, - [SMALL_STATE(3624)] = 109843, - [SMALL_STATE(3625)] = 109867, - [SMALL_STATE(3626)] = 109903, - [SMALL_STATE(3627)] = 109935, - [SMALL_STATE(3628)] = 109969, - [SMALL_STATE(3629)] = 110003, - [SMALL_STATE(3630)] = 110029, - [SMALL_STATE(3631)] = 110055, - [SMALL_STATE(3632)] = 110089, - [SMALL_STATE(3633)] = 110111, - [SMALL_STATE(3634)] = 110147, - [SMALL_STATE(3635)] = 110175, - [SMALL_STATE(3636)] = 110201, - [SMALL_STATE(3637)] = 110227, - [SMALL_STATE(3638)] = 110251, - [SMALL_STATE(3639)] = 110281, - [SMALL_STATE(3640)] = 110313, - [SMALL_STATE(3641)] = 110339, - [SMALL_STATE(3642)] = 110361, - [SMALL_STATE(3643)] = 110385, - [SMALL_STATE(3644)] = 110407, - [SMALL_STATE(3645)] = 110433, - [SMALL_STATE(3646)] = 110459, - [SMALL_STATE(3647)] = 110483, - [SMALL_STATE(3648)] = 110509, - [SMALL_STATE(3649)] = 110531, - [SMALL_STATE(3650)] = 110553, - [SMALL_STATE(3651)] = 110575, - [SMALL_STATE(3652)] = 110597, - [SMALL_STATE(3653)] = 110619, - [SMALL_STATE(3654)] = 110649, - [SMALL_STATE(3655)] = 110675, + [SMALL_STATE(3623)] = 109811, + [SMALL_STATE(3624)] = 109833, + [SMALL_STATE(3625)] = 109859, + [SMALL_STATE(3626)] = 109881, + [SMALL_STATE(3627)] = 109907, + [SMALL_STATE(3628)] = 109939, + [SMALL_STATE(3629)] = 109965, + [SMALL_STATE(3630)] = 109995, + [SMALL_STATE(3631)] = 110019, + [SMALL_STATE(3632)] = 110041, + [SMALL_STATE(3633)] = 110063, + [SMALL_STATE(3634)] = 110095, + [SMALL_STATE(3635)] = 110125, + [SMALL_STATE(3636)] = 110151, + [SMALL_STATE(3637)] = 110175, + [SMALL_STATE(3638)] = 110201, + [SMALL_STATE(3639)] = 110225, + [SMALL_STATE(3640)] = 110259, + [SMALL_STATE(3641)] = 110287, + [SMALL_STATE(3642)] = 110311, + [SMALL_STATE(3643)] = 110347, + [SMALL_STATE(3644)] = 110369, + [SMALL_STATE(3645)] = 110395, + [SMALL_STATE(3646)] = 110417, + [SMALL_STATE(3647)] = 110443, + [SMALL_STATE(3648)] = 110467, + [SMALL_STATE(3649)] = 110493, + [SMALL_STATE(3650)] = 110517, + [SMALL_STATE(3651)] = 110541, + [SMALL_STATE(3652)] = 110563, + [SMALL_STATE(3653)] = 110595, + [SMALL_STATE(3654)] = 110631, + [SMALL_STATE(3655)] = 110665, [SMALL_STATE(3656)] = 110701, [SMALL_STATE(3657)] = 110734, - [SMALL_STATE(3658)] = 110755, - [SMALL_STATE(3659)] = 110776, - [SMALL_STATE(3660)] = 110809, - [SMALL_STATE(3661)] = 110842, - [SMALL_STATE(3662)] = 110873, - [SMALL_STATE(3663)] = 110894, - [SMALL_STATE(3664)] = 110915, - [SMALL_STATE(3665)] = 110940, - [SMALL_STATE(3666)] = 110973, - [SMALL_STATE(3667)] = 111006, - [SMALL_STATE(3668)] = 111037, - [SMALL_STATE(3669)] = 111068, - [SMALL_STATE(3670)] = 111099, - [SMALL_STATE(3671)] = 111130, - [SMALL_STATE(3672)] = 111163, - [SMALL_STATE(3673)] = 111196, - [SMALL_STATE(3674)] = 111227, - [SMALL_STATE(3675)] = 111256, - [SMALL_STATE(3676)] = 111277, - [SMALL_STATE(3677)] = 111310, - [SMALL_STATE(3678)] = 111343, - [SMALL_STATE(3679)] = 111374, - [SMALL_STATE(3680)] = 111407, - [SMALL_STATE(3681)] = 111440, - [SMALL_STATE(3682)] = 111471, - [SMALL_STATE(3683)] = 111492, - [SMALL_STATE(3684)] = 111525, - [SMALL_STATE(3685)] = 111558, - [SMALL_STATE(3686)] = 111589, - [SMALL_STATE(3687)] = 111622, - [SMALL_STATE(3688)] = 111655, - [SMALL_STATE(3689)] = 111688, - [SMALL_STATE(3690)] = 111719, - [SMALL_STATE(3691)] = 111752, - [SMALL_STATE(3692)] = 111785, - [SMALL_STATE(3693)] = 111816, - [SMALL_STATE(3694)] = 111849, - [SMALL_STATE(3695)] = 111882, - [SMALL_STATE(3696)] = 111913, - [SMALL_STATE(3697)] = 111934, - [SMALL_STATE(3698)] = 111967, - [SMALL_STATE(3699)] = 111998, - [SMALL_STATE(3700)] = 112031, - [SMALL_STATE(3701)] = 112064, - [SMALL_STATE(3702)] = 112095, - [SMALL_STATE(3703)] = 112126, - [SMALL_STATE(3704)] = 112157, - [SMALL_STATE(3705)] = 112182, - [SMALL_STATE(3706)] = 112213, - [SMALL_STATE(3707)] = 112244, - [SMALL_STATE(3708)] = 112275, - [SMALL_STATE(3709)] = 112306, - [SMALL_STATE(3710)] = 112337, - [SMALL_STATE(3711)] = 112370, - [SMALL_STATE(3712)] = 112403, - [SMALL_STATE(3713)] = 112436, - [SMALL_STATE(3714)] = 112471, - [SMALL_STATE(3715)] = 112502, - [SMALL_STATE(3716)] = 112533, - [SMALL_STATE(3717)] = 112556, - [SMALL_STATE(3718)] = 112587, - [SMALL_STATE(3719)] = 112612, - [SMALL_STATE(3720)] = 112637, - [SMALL_STATE(3721)] = 112670, - [SMALL_STATE(3722)] = 112693, - [SMALL_STATE(3723)] = 112726, - [SMALL_STATE(3724)] = 112759, - [SMALL_STATE(3725)] = 112784, - [SMALL_STATE(3726)] = 112809, - [SMALL_STATE(3727)] = 112842, - [SMALL_STATE(3728)] = 112863, - [SMALL_STATE(3729)] = 112884, - [SMALL_STATE(3730)] = 112917, - [SMALL_STATE(3731)] = 112950, - [SMALL_STATE(3732)] = 112973, - [SMALL_STATE(3733)] = 113004, - [SMALL_STATE(3734)] = 113025, - [SMALL_STATE(3735)] = 113048, - [SMALL_STATE(3736)] = 113071, - [SMALL_STATE(3737)] = 113104, - [SMALL_STATE(3738)] = 113127, - [SMALL_STATE(3739)] = 113148, - [SMALL_STATE(3740)] = 113171, - [SMALL_STATE(3741)] = 113192, - [SMALL_STATE(3742)] = 113217, - [SMALL_STATE(3743)] = 113250, - [SMALL_STATE(3744)] = 113271, - [SMALL_STATE(3745)] = 113304, - [SMALL_STATE(3746)] = 113337, + [SMALL_STATE(3658)] = 110765, + [SMALL_STATE(3659)] = 110798, + [SMALL_STATE(3660)] = 110831, + [SMALL_STATE(3661)] = 110862, + [SMALL_STATE(3662)] = 110883, + [SMALL_STATE(3663)] = 110916, + [SMALL_STATE(3664)] = 110949, + [SMALL_STATE(3665)] = 110980, + [SMALL_STATE(3666)] = 111013, + [SMALL_STATE(3667)] = 111046, + [SMALL_STATE(3668)] = 111077, + [SMALL_STATE(3669)] = 111108, + [SMALL_STATE(3670)] = 111139, + [SMALL_STATE(3671)] = 111170, + [SMALL_STATE(3672)] = 111201, + [SMALL_STATE(3673)] = 111222, + [SMALL_STATE(3674)] = 111253, + [SMALL_STATE(3675)] = 111284, + [SMALL_STATE(3676)] = 111315, + [SMALL_STATE(3677)] = 111346, + [SMALL_STATE(3678)] = 111375, + [SMALL_STATE(3679)] = 111398, + [SMALL_STATE(3680)] = 111429, + [SMALL_STATE(3681)] = 111462, + [SMALL_STATE(3682)] = 111495, + [SMALL_STATE(3683)] = 111526, + [SMALL_STATE(3684)] = 111559, + [SMALL_STATE(3685)] = 111582, + [SMALL_STATE(3686)] = 111615, + [SMALL_STATE(3687)] = 111648, + [SMALL_STATE(3688)] = 111669, + [SMALL_STATE(3689)] = 111702, + [SMALL_STATE(3690)] = 111723, + [SMALL_STATE(3691)] = 111748, + [SMALL_STATE(3692)] = 111781, + [SMALL_STATE(3693)] = 111806, + [SMALL_STATE(3694)] = 111839, + [SMALL_STATE(3695)] = 111874, + [SMALL_STATE(3696)] = 111907, + [SMALL_STATE(3697)] = 111938, + [SMALL_STATE(3698)] = 111971, + [SMALL_STATE(3699)] = 112002, + [SMALL_STATE(3700)] = 112035, + [SMALL_STATE(3701)] = 112066, + [SMALL_STATE(3702)] = 112097, + [SMALL_STATE(3703)] = 112122, + [SMALL_STATE(3704)] = 112153, + [SMALL_STATE(3705)] = 112174, + [SMALL_STATE(3706)] = 112195, + [SMALL_STATE(3707)] = 112216, + [SMALL_STATE(3708)] = 112241, + [SMALL_STATE(3709)] = 112266, + [SMALL_STATE(3710)] = 112299, + [SMALL_STATE(3711)] = 112324, + [SMALL_STATE(3712)] = 112347, + [SMALL_STATE(3713)] = 112368, + [SMALL_STATE(3714)] = 112401, + [SMALL_STATE(3715)] = 112432, + [SMALL_STATE(3716)] = 112457, + [SMALL_STATE(3717)] = 112492, + [SMALL_STATE(3718)] = 112513, + [SMALL_STATE(3719)] = 112546, + [SMALL_STATE(3720)] = 112579, + [SMALL_STATE(3721)] = 112600, + [SMALL_STATE(3722)] = 112631, + [SMALL_STATE(3723)] = 112664, + [SMALL_STATE(3724)] = 112697, + [SMALL_STATE(3725)] = 112718, + [SMALL_STATE(3726)] = 112751, + [SMALL_STATE(3727)] = 112784, + [SMALL_STATE(3728)] = 112817, + [SMALL_STATE(3729)] = 112850, + [SMALL_STATE(3730)] = 112883, + [SMALL_STATE(3731)] = 112906, + [SMALL_STATE(3732)] = 112929, + [SMALL_STATE(3733)] = 112950, + [SMALL_STATE(3734)] = 112981, + [SMALL_STATE(3735)] = 113014, + [SMALL_STATE(3736)] = 113045, + [SMALL_STATE(3737)] = 113076, + [SMALL_STATE(3738)] = 113109, + [SMALL_STATE(3739)] = 113142, + [SMALL_STATE(3740)] = 113167, + [SMALL_STATE(3741)] = 113198, + [SMALL_STATE(3742)] = 113231, + [SMALL_STATE(3743)] = 113264, + [SMALL_STATE(3744)] = 113297, + [SMALL_STATE(3745)] = 113320, + [SMALL_STATE(3746)] = 113341, [SMALL_STATE(3747)] = 113372, - [SMALL_STATE(3748)] = 113397, + [SMALL_STATE(3748)] = 113395, [SMALL_STATE(3749)] = 113428, - [SMALL_STATE(3750)] = 113456, - [SMALL_STATE(3751)] = 113484, - [SMALL_STATE(3752)] = 113512, - [SMALL_STATE(3753)] = 113534, + [SMALL_STATE(3750)] = 113458, + [SMALL_STATE(3751)] = 113486, + [SMALL_STATE(3752)] = 113514, + [SMALL_STATE(3753)] = 113542, [SMALL_STATE(3754)] = 113562, [SMALL_STATE(3755)] = 113590, - [SMALL_STATE(3756)] = 113618, - [SMALL_STATE(3757)] = 113646, - [SMALL_STATE(3758)] = 113674, - [SMALL_STATE(3759)] = 113702, - [SMALL_STATE(3760)] = 113730, - [SMALL_STATE(3761)] = 113758, - [SMALL_STATE(3762)] = 113786, - [SMALL_STATE(3763)] = 113812, - [SMALL_STATE(3764)] = 113840, - [SMALL_STATE(3765)] = 113864, - [SMALL_STATE(3766)] = 113892, - [SMALL_STATE(3767)] = 113920, - [SMALL_STATE(3768)] = 113948, - [SMALL_STATE(3769)] = 113968, - [SMALL_STATE(3770)] = 113996, - [SMALL_STATE(3771)] = 114024, - [SMALL_STATE(3772)] = 114048, - [SMALL_STATE(3773)] = 114076, - [SMALL_STATE(3774)] = 114098, - [SMALL_STATE(3775)] = 114126, - [SMALL_STATE(3776)] = 114154, - [SMALL_STATE(3777)] = 114174, - [SMALL_STATE(3778)] = 114202, - [SMALL_STATE(3779)] = 114230, - [SMALL_STATE(3780)] = 114258, - [SMALL_STATE(3781)] = 114282, - [SMALL_STATE(3782)] = 114302, - [SMALL_STATE(3783)] = 114324, - [SMALL_STATE(3784)] = 114342, - [SMALL_STATE(3785)] = 114370, - [SMALL_STATE(3786)] = 114398, - [SMALL_STATE(3787)] = 114418, - [SMALL_STATE(3788)] = 114440, - [SMALL_STATE(3789)] = 114468, - [SMALL_STATE(3790)] = 114498, - [SMALL_STATE(3791)] = 114518, - [SMALL_STATE(3792)] = 114546, - [SMALL_STATE(3793)] = 114570, - [SMALL_STATE(3794)] = 114590, - [SMALL_STATE(3795)] = 114618, - [SMALL_STATE(3796)] = 114646, - [SMALL_STATE(3797)] = 114674, - [SMALL_STATE(3798)] = 114700, - [SMALL_STATE(3799)] = 114728, - [SMALL_STATE(3800)] = 114756, - [SMALL_STATE(3801)] = 114776, - [SMALL_STATE(3802)] = 114804, - [SMALL_STATE(3803)] = 114832, - [SMALL_STATE(3804)] = 114856, - [SMALL_STATE(3805)] = 114874, - [SMALL_STATE(3806)] = 114896, - [SMALL_STATE(3807)] = 114918, - [SMALL_STATE(3808)] = 114946, - [SMALL_STATE(3809)] = 114966, - [SMALL_STATE(3810)] = 114988, - [SMALL_STATE(3811)] = 115016, - [SMALL_STATE(3812)] = 115036, - [SMALL_STATE(3813)] = 115056, - [SMALL_STATE(3814)] = 115076, - [SMALL_STATE(3815)] = 115104, - [SMALL_STATE(3816)] = 115128, - [SMALL_STATE(3817)] = 115148, - [SMALL_STATE(3818)] = 115178, - [SMALL_STATE(3819)] = 115206, - [SMALL_STATE(3820)] = 115234, - [SMALL_STATE(3821)] = 115254, + [SMALL_STATE(3756)] = 113610, + [SMALL_STATE(3757)] = 113638, + [SMALL_STATE(3758)] = 113662, + [SMALL_STATE(3759)] = 113682, + [SMALL_STATE(3760)] = 113702, + [SMALL_STATE(3761)] = 113730, + [SMALL_STATE(3762)] = 113750, + [SMALL_STATE(3763)] = 113776, + [SMALL_STATE(3764)] = 113796, + [SMALL_STATE(3765)] = 113824, + [SMALL_STATE(3766)] = 113852, + [SMALL_STATE(3767)] = 113880, + [SMALL_STATE(3768)] = 113906, + [SMALL_STATE(3769)] = 113934, + [SMALL_STATE(3770)] = 113958, + [SMALL_STATE(3771)] = 113986, + [SMALL_STATE(3772)] = 114008, + [SMALL_STATE(3773)] = 114038, + [SMALL_STATE(3774)] = 114064, + [SMALL_STATE(3775)] = 114092, + [SMALL_STATE(3776)] = 114120, + [SMALL_STATE(3777)] = 114148, + [SMALL_STATE(3778)] = 114176, + [SMALL_STATE(3779)] = 114204, + [SMALL_STATE(3780)] = 114232, + [SMALL_STATE(3781)] = 114252, + [SMALL_STATE(3782)] = 114280, + [SMALL_STATE(3783)] = 114304, + [SMALL_STATE(3784)] = 114324, + [SMALL_STATE(3785)] = 114352, + [SMALL_STATE(3786)] = 114380, + [SMALL_STATE(3787)] = 114408, + [SMALL_STATE(3788)] = 114436, + [SMALL_STATE(3789)] = 114456, + [SMALL_STATE(3790)] = 114478, + [SMALL_STATE(3791)] = 114502, + [SMALL_STATE(3792)] = 114530, + [SMALL_STATE(3793)] = 114558, + [SMALL_STATE(3794)] = 114578, + [SMALL_STATE(3795)] = 114598, + [SMALL_STATE(3796)] = 114626, + [SMALL_STATE(3797)] = 114646, + [SMALL_STATE(3798)] = 114674, + [SMALL_STATE(3799)] = 114702, + [SMALL_STATE(3800)] = 114722, + [SMALL_STATE(3801)] = 114750, + [SMALL_STATE(3802)] = 114768, + [SMALL_STATE(3803)] = 114786, + [SMALL_STATE(3804)] = 114814, + [SMALL_STATE(3805)] = 114842, + [SMALL_STATE(3806)] = 114870, + [SMALL_STATE(3807)] = 114890, + [SMALL_STATE(3808)] = 114910, + [SMALL_STATE(3809)] = 114938, + [SMALL_STATE(3810)] = 114966, + [SMALL_STATE(3811)] = 114988, + [SMALL_STATE(3812)] = 115016, + [SMALL_STATE(3813)] = 115038, + [SMALL_STATE(3814)] = 115066, + [SMALL_STATE(3815)] = 115094, + [SMALL_STATE(3816)] = 115116, + [SMALL_STATE(3817)] = 115144, + [SMALL_STATE(3818)] = 115172, + [SMALL_STATE(3819)] = 115200, + [SMALL_STATE(3820)] = 115228, + [SMALL_STATE(3821)] = 115250, [SMALL_STATE(3822)] = 115274, - [SMALL_STATE(3823)] = 115300, - [SMALL_STATE(3824)] = 115328, - [SMALL_STATE(3825)] = 115356, - [SMALL_STATE(3826)] = 115378, - [SMALL_STATE(3827)] = 115406, - [SMALL_STATE(3828)] = 115434, + [SMALL_STATE(3823)] = 115302, + [SMALL_STATE(3824)] = 115330, + [SMALL_STATE(3825)] = 115358, + [SMALL_STATE(3826)] = 115386, + [SMALL_STATE(3827)] = 115410, + [SMALL_STATE(3828)] = 115432, [SMALL_STATE(3829)] = 115454, [SMALL_STATE(3830)] = 115482, - [SMALL_STATE(3831)] = 115507, - [SMALL_STATE(3832)] = 115526, - [SMALL_STATE(3833)] = 115551, - [SMALL_STATE(3834)] = 115578, - [SMALL_STATE(3835)] = 115605, - [SMALL_STATE(3836)] = 115632, - [SMALL_STATE(3837)] = 115651, - [SMALL_STATE(3838)] = 115680, - [SMALL_STATE(3839)] = 115705, - [SMALL_STATE(3840)] = 115730, - [SMALL_STATE(3841)] = 115751, - [SMALL_STATE(3842)] = 115778, - [SMALL_STATE(3843)] = 115797, - [SMALL_STATE(3844)] = 115816, - [SMALL_STATE(3845)] = 115841, - [SMALL_STATE(3846)] = 115866, - [SMALL_STATE(3847)] = 115885, - [SMALL_STATE(3848)] = 115910, - [SMALL_STATE(3849)] = 115935, - [SMALL_STATE(3850)] = 115960, - [SMALL_STATE(3851)] = 115991, - [SMALL_STATE(3852)] = 116010, - [SMALL_STATE(3853)] = 116033, - [SMALL_STATE(3854)] = 116052, - [SMALL_STATE(3855)] = 116075, - [SMALL_STATE(3856)] = 116094, - [SMALL_STATE(3857)] = 116121, - [SMALL_STATE(3858)] = 116148, - [SMALL_STATE(3859)] = 116169, - [SMALL_STATE(3860)] = 116194, - [SMALL_STATE(3861)] = 116213, - [SMALL_STATE(3862)] = 116238, - [SMALL_STATE(3863)] = 116259, - [SMALL_STATE(3864)] = 116280, - [SMALL_STATE(3865)] = 116305, - [SMALL_STATE(3866)] = 116330, - [SMALL_STATE(3867)] = 116353, - [SMALL_STATE(3868)] = 116378, - [SMALL_STATE(3869)] = 116397, - [SMALL_STATE(3870)] = 116418, - [SMALL_STATE(3871)] = 116437, - [SMALL_STATE(3872)] = 116456, - [SMALL_STATE(3873)] = 116481, - [SMALL_STATE(3874)] = 116504, - [SMALL_STATE(3875)] = 116529, - [SMALL_STATE(3876)] = 116550, + [SMALL_STATE(3831)] = 115501, + [SMALL_STATE(3832)] = 115520, + [SMALL_STATE(3833)] = 115547, + [SMALL_STATE(3834)] = 115572, + [SMALL_STATE(3835)] = 115591, + [SMALL_STATE(3836)] = 115616, + [SMALL_STATE(3837)] = 115635, + [SMALL_STATE(3838)] = 115660, + [SMALL_STATE(3839)] = 115685, + [SMALL_STATE(3840)] = 115704, + [SMALL_STATE(3841)] = 115723, + [SMALL_STATE(3842)] = 115748, + [SMALL_STATE(3843)] = 115773, + [SMALL_STATE(3844)] = 115792, + [SMALL_STATE(3845)] = 115817, + [SMALL_STATE(3846)] = 115836, + [SMALL_STATE(3847)] = 115861, + [SMALL_STATE(3848)] = 115882, + [SMALL_STATE(3849)] = 115907, + [SMALL_STATE(3850)] = 115932, + [SMALL_STATE(3851)] = 115959, + [SMALL_STATE(3852)] = 115978, + [SMALL_STATE(3853)] = 115997, + [SMALL_STATE(3854)] = 116018, + [SMALL_STATE(3855)] = 116041, + [SMALL_STATE(3856)] = 116068, + [SMALL_STATE(3857)] = 116091, + [SMALL_STATE(3858)] = 116116, + [SMALL_STATE(3859)] = 116143, + [SMALL_STATE(3860)] = 116166, + [SMALL_STATE(3861)] = 116191, + [SMALL_STATE(3862)] = 116210, + [SMALL_STATE(3863)] = 116229, + [SMALL_STATE(3864)] = 116252, + [SMALL_STATE(3865)] = 116273, + [SMALL_STATE(3866)] = 116298, + [SMALL_STATE(3867)] = 116325, + [SMALL_STATE(3868)] = 116352, + [SMALL_STATE(3869)] = 116373, + [SMALL_STATE(3870)] = 116398, + [SMALL_STATE(3871)] = 116417, + [SMALL_STATE(3872)] = 116446, + [SMALL_STATE(3873)] = 116471, + [SMALL_STATE(3874)] = 116502, + [SMALL_STATE(3875)] = 116527, + [SMALL_STATE(3876)] = 116548, [SMALL_STATE(3877)] = 116569, - [SMALL_STATE(3878)] = 116589, - [SMALL_STATE(3879)] = 116617, - [SMALL_STATE(3880)] = 116635, - [SMALL_STATE(3881)] = 116657, - [SMALL_STATE(3882)] = 116685, - [SMALL_STATE(3883)] = 116713, - [SMALL_STATE(3884)] = 116741, - [SMALL_STATE(3885)] = 116769, - [SMALL_STATE(3886)] = 116797, - [SMALL_STATE(3887)] = 116825, - [SMALL_STATE(3888)] = 116849, - [SMALL_STATE(3889)] = 116877, - [SMALL_STATE(3890)] = 116895, - [SMALL_STATE(3891)] = 116923, - [SMALL_STATE(3892)] = 116951, - [SMALL_STATE(3893)] = 116979, - [SMALL_STATE(3894)] = 117007, - [SMALL_STATE(3895)] = 117031, - [SMALL_STATE(3896)] = 117057, - [SMALL_STATE(3897)] = 117085, - [SMALL_STATE(3898)] = 117113, - [SMALL_STATE(3899)] = 117139, - [SMALL_STATE(3900)] = 117161, - [SMALL_STATE(3901)] = 117185, - [SMALL_STATE(3902)] = 117211, - [SMALL_STATE(3903)] = 117237, + [SMALL_STATE(3878)] = 116597, + [SMALL_STATE(3879)] = 116619, + [SMALL_STATE(3880)] = 116643, + [SMALL_STATE(3881)] = 116669, + [SMALL_STATE(3882)] = 116697, + [SMALL_STATE(3883)] = 116719, + [SMALL_STATE(3884)] = 116737, + [SMALL_STATE(3885)] = 116763, + [SMALL_STATE(3886)] = 116781, + [SMALL_STATE(3887)] = 116807, + [SMALL_STATE(3888)] = 116835, + [SMALL_STATE(3889)] = 116861, + [SMALL_STATE(3890)] = 116887, + [SMALL_STATE(3891)] = 116913, + [SMALL_STATE(3892)] = 116941, + [SMALL_STATE(3893)] = 116967, + [SMALL_STATE(3894)] = 116993, + [SMALL_STATE(3895)] = 117019, + [SMALL_STATE(3896)] = 117047, + [SMALL_STATE(3897)] = 117075, + [SMALL_STATE(3898)] = 117103, + [SMALL_STATE(3899)] = 117125, + [SMALL_STATE(3900)] = 117151, + [SMALL_STATE(3901)] = 117179, + [SMALL_STATE(3902)] = 117207, + [SMALL_STATE(3903)] = 117229, [SMALL_STATE(3904)] = 117255, - [SMALL_STATE(3905)] = 117281, - [SMALL_STATE(3906)] = 117307, - [SMALL_STATE(3907)] = 117333, + [SMALL_STATE(3905)] = 117283, + [SMALL_STATE(3906)] = 117311, + [SMALL_STATE(3907)] = 117329, [SMALL_STATE(3908)] = 117351, - [SMALL_STATE(3909)] = 117373, - [SMALL_STATE(3910)] = 117395, - [SMALL_STATE(3911)] = 117423, - [SMALL_STATE(3912)] = 117441, - [SMALL_STATE(3913)] = 117459, - [SMALL_STATE(3914)] = 117485, - [SMALL_STATE(3915)] = 117507, - [SMALL_STATE(3916)] = 117535, - [SMALL_STATE(3917)] = 117559, - [SMALL_STATE(3918)] = 117587, - [SMALL_STATE(3919)] = 117613, - [SMALL_STATE(3920)] = 117641, - [SMALL_STATE(3921)] = 117669, - [SMALL_STATE(3922)] = 117697, - [SMALL_STATE(3923)] = 117725, - [SMALL_STATE(3924)] = 117753, - [SMALL_STATE(3925)] = 117781, - [SMALL_STATE(3926)] = 117809, - [SMALL_STATE(3927)] = 117837, - [SMALL_STATE(3928)] = 117863, - [SMALL_STATE(3929)] = 117891, - [SMALL_STATE(3930)] = 117919, - [SMALL_STATE(3931)] = 117943, - [SMALL_STATE(3932)] = 117971, - [SMALL_STATE(3933)] = 117989, - [SMALL_STATE(3934)] = 118017, - [SMALL_STATE(3935)] = 118045, - [SMALL_STATE(3936)] = 118073, - [SMALL_STATE(3937)] = 118091, - [SMALL_STATE(3938)] = 118111, - [SMALL_STATE(3939)] = 118137, - [SMALL_STATE(3940)] = 118163, - [SMALL_STATE(3941)] = 118183, - [SMALL_STATE(3942)] = 118203, - [SMALL_STATE(3943)] = 118223, - [SMALL_STATE(3944)] = 118243, - [SMALL_STATE(3945)] = 118267, - [SMALL_STATE(3946)] = 118295, - [SMALL_STATE(3947)] = 118323, - [SMALL_STATE(3948)] = 118341, - [SMALL_STATE(3949)] = 118365, - [SMALL_STATE(3950)] = 118383, - [SMALL_STATE(3951)] = 118401, - [SMALL_STATE(3952)] = 118425, - [SMALL_STATE(3953)] = 118453, - [SMALL_STATE(3954)] = 118479, - [SMALL_STATE(3955)] = 118505, - [SMALL_STATE(3956)] = 118533, - [SMALL_STATE(3957)] = 118559, - [SMALL_STATE(3958)] = 118581, - [SMALL_STATE(3959)] = 118609, - [SMALL_STATE(3960)] = 118637, - [SMALL_STATE(3961)] = 118663, - [SMALL_STATE(3962)] = 118683, - [SMALL_STATE(3963)] = 118711, - [SMALL_STATE(3964)] = 118733, - [SMALL_STATE(3965)] = 118755, - [SMALL_STATE(3966)] = 118781, - [SMALL_STATE(3967)] = 118801, - [SMALL_STATE(3968)] = 118823, - [SMALL_STATE(3969)] = 118847, + [SMALL_STATE(3909)] = 117379, + [SMALL_STATE(3910)] = 117407, + [SMALL_STATE(3911)] = 117435, + [SMALL_STATE(3912)] = 117463, + [SMALL_STATE(3913)] = 117489, + [SMALL_STATE(3914)] = 117517, + [SMALL_STATE(3915)] = 117537, + [SMALL_STATE(3916)] = 117557, + [SMALL_STATE(3917)] = 117577, + [SMALL_STATE(3918)] = 117599, + [SMALL_STATE(3919)] = 117619, + [SMALL_STATE(3920)] = 117643, + [SMALL_STATE(3921)] = 117665, + [SMALL_STATE(3922)] = 117685, + [SMALL_STATE(3923)] = 117709, + [SMALL_STATE(3924)] = 117729, + [SMALL_STATE(3925)] = 117755, + [SMALL_STATE(3926)] = 117777, + [SMALL_STATE(3927)] = 117799, + [SMALL_STATE(3928)] = 117817, + [SMALL_STATE(3929)] = 117845, + [SMALL_STATE(3930)] = 117873, + [SMALL_STATE(3931)] = 117901, + [SMALL_STATE(3932)] = 117925, + [SMALL_STATE(3933)] = 117953, + [SMALL_STATE(3934)] = 117981, + [SMALL_STATE(3935)] = 118005, + [SMALL_STATE(3936)] = 118031, + [SMALL_STATE(3937)] = 118049, + [SMALL_STATE(3938)] = 118077, + [SMALL_STATE(3939)] = 118097, + [SMALL_STATE(3940)] = 118119, + [SMALL_STATE(3941)] = 118137, + [SMALL_STATE(3942)] = 118161, + [SMALL_STATE(3943)] = 118179, + [SMALL_STATE(3944)] = 118205, + [SMALL_STATE(3945)] = 118233, + [SMALL_STATE(3946)] = 118251, + [SMALL_STATE(3947)] = 118269, + [SMALL_STATE(3948)] = 118297, + [SMALL_STATE(3949)] = 118325, + [SMALL_STATE(3950)] = 118353, + [SMALL_STATE(3951)] = 118381, + [SMALL_STATE(3952)] = 118405, + [SMALL_STATE(3953)] = 118427, + [SMALL_STATE(3954)] = 118453, + [SMALL_STATE(3955)] = 118481, + [SMALL_STATE(3956)] = 118509, + [SMALL_STATE(3957)] = 118537, + [SMALL_STATE(3958)] = 118565, + [SMALL_STATE(3959)] = 118585, + [SMALL_STATE(3960)] = 118613, + [SMALL_STATE(3961)] = 118637, + [SMALL_STATE(3962)] = 118655, + [SMALL_STATE(3963)] = 118683, + [SMALL_STATE(3964)] = 118711, + [SMALL_STATE(3965)] = 118739, + [SMALL_STATE(3966)] = 118767, + [SMALL_STATE(3967)] = 118795, + [SMALL_STATE(3968)] = 118813, + [SMALL_STATE(3969)] = 118841, [SMALL_STATE(3970)] = 118869, - [SMALL_STATE(3971)] = 118895, - [SMALL_STATE(3972)] = 118921, - [SMALL_STATE(3973)] = 118949, - [SMALL_STATE(3974)] = 118971, - [SMALL_STATE(3975)] = 118989, - [SMALL_STATE(3976)] = 119007, - [SMALL_STATE(3977)] = 119035, - [SMALL_STATE(3978)] = 119057, - [SMALL_STATE(3979)] = 119085, - [SMALL_STATE(3980)] = 119113, - [SMALL_STATE(3981)] = 119141, - [SMALL_STATE(3982)] = 119167, - [SMALL_STATE(3983)] = 119193, - [SMALL_STATE(3984)] = 119221, + [SMALL_STATE(3971)] = 118897, + [SMALL_STATE(3972)] = 118925, + [SMALL_STATE(3973)] = 118953, + [SMALL_STATE(3974)] = 118981, + [SMALL_STATE(3975)] = 119007, + [SMALL_STATE(3976)] = 119029, + [SMALL_STATE(3977)] = 119057, + [SMALL_STATE(3978)] = 119081, + [SMALL_STATE(3979)] = 119107, + [SMALL_STATE(3980)] = 119133, + [SMALL_STATE(3981)] = 119159, + [SMALL_STATE(3982)] = 119185, + [SMALL_STATE(3983)] = 119203, + [SMALL_STATE(3984)] = 119231, [SMALL_STATE(3985)] = 119249, [SMALL_STATE(3986)] = 119277, - [SMALL_STATE(3987)] = 119302, - [SMALL_STATE(3988)] = 119323, + [SMALL_STATE(3987)] = 119300, + [SMALL_STATE(3988)] = 119325, [SMALL_STATE(3989)] = 119346, - [SMALL_STATE(3990)] = 119371, - [SMALL_STATE(3991)] = 119394, - [SMALL_STATE(3992)] = 119415, - [SMALL_STATE(3993)] = 119438, - [SMALL_STATE(3994)] = 119459, - [SMALL_STATE(3995)] = 119480, - [SMALL_STATE(3996)] = 119501, - [SMALL_STATE(3997)] = 119520, - [SMALL_STATE(3998)] = 119543, - [SMALL_STATE(3999)] = 119562, - [SMALL_STATE(4000)] = 119583, - [SMALL_STATE(4001)] = 119604, - [SMALL_STATE(4002)] = 119625, - [SMALL_STATE(4003)] = 119648, - [SMALL_STATE(4004)] = 119671, - [SMALL_STATE(4005)] = 119686, - [SMALL_STATE(4006)] = 119701, - [SMALL_STATE(4007)] = 119724, - [SMALL_STATE(4008)] = 119743, - [SMALL_STATE(4009)] = 119766, - [SMALL_STATE(4010)] = 119787, - [SMALL_STATE(4011)] = 119810, - [SMALL_STATE(4012)] = 119833, - [SMALL_STATE(4013)] = 119856, - [SMALL_STATE(4014)] = 119879, - [SMALL_STATE(4015)] = 119902, - [SMALL_STATE(4016)] = 119925, - [SMALL_STATE(4017)] = 119948, - [SMALL_STATE(4018)] = 119971, - [SMALL_STATE(4019)] = 119994, - [SMALL_STATE(4020)] = 120017, - [SMALL_STATE(4021)] = 120040, - [SMALL_STATE(4022)] = 120063, - [SMALL_STATE(4023)] = 120086, - [SMALL_STATE(4024)] = 120111, - [SMALL_STATE(4025)] = 120134, - [SMALL_STATE(4026)] = 120157, - [SMALL_STATE(4027)] = 120172, - [SMALL_STATE(4028)] = 120195, - [SMALL_STATE(4029)] = 120216, - [SMALL_STATE(4030)] = 120241, - [SMALL_STATE(4031)] = 120264, - [SMALL_STATE(4032)] = 120279, - [SMALL_STATE(4033)] = 120298, - [SMALL_STATE(4034)] = 120321, - [SMALL_STATE(4035)] = 120346, - [SMALL_STATE(4036)] = 120369, - [SMALL_STATE(4037)] = 120394, - [SMALL_STATE(4038)] = 120419, - [SMALL_STATE(4039)] = 120442, - [SMALL_STATE(4040)] = 120465, - [SMALL_STATE(4041)] = 120480, + [SMALL_STATE(3990)] = 119365, + [SMALL_STATE(3991)] = 119386, + [SMALL_STATE(3992)] = 119405, + [SMALL_STATE(3993)] = 119426, + [SMALL_STATE(3994)] = 119451, + [SMALL_STATE(3995)] = 119472, + [SMALL_STATE(3996)] = 119493, + [SMALL_STATE(3997)] = 119514, + [SMALL_STATE(3998)] = 119537, + [SMALL_STATE(3999)] = 119556, + [SMALL_STATE(4000)] = 119577, + [SMALL_STATE(4001)] = 119600, + [SMALL_STATE(4002)] = 119623, + [SMALL_STATE(4003)] = 119646, + [SMALL_STATE(4004)] = 119667, + [SMALL_STATE(4005)] = 119688, + [SMALL_STATE(4006)] = 119709, + [SMALL_STATE(4007)] = 119732, + [SMALL_STATE(4008)] = 119751, + [SMALL_STATE(4009)] = 119770, + [SMALL_STATE(4010)] = 119793, + [SMALL_STATE(4011)] = 119816, + [SMALL_STATE(4012)] = 119839, + [SMALL_STATE(4013)] = 119862, + [SMALL_STATE(4014)] = 119883, + [SMALL_STATE(4015)] = 119900, + [SMALL_STATE(4016)] = 119923, + [SMALL_STATE(4017)] = 119946, + [SMALL_STATE(4018)] = 119965, + [SMALL_STATE(4019)] = 119988, + [SMALL_STATE(4020)] = 120011, + [SMALL_STATE(4021)] = 120036, + [SMALL_STATE(4022)] = 120055, + [SMALL_STATE(4023)] = 120078, + [SMALL_STATE(4024)] = 120103, + [SMALL_STATE(4025)] = 120118, + [SMALL_STATE(4026)] = 120141, + [SMALL_STATE(4027)] = 120166, + [SMALL_STATE(4028)] = 120189, + [SMALL_STATE(4029)] = 120210, + [SMALL_STATE(4030)] = 120231, + [SMALL_STATE(4031)] = 120252, + [SMALL_STATE(4032)] = 120273, + [SMALL_STATE(4033)] = 120294, + [SMALL_STATE(4034)] = 120317, + [SMALL_STATE(4035)] = 120342, + [SMALL_STATE(4036)] = 120361, + [SMALL_STATE(4037)] = 120384, + [SMALL_STATE(4038)] = 120407, + [SMALL_STATE(4039)] = 120432, + [SMALL_STATE(4040)] = 120457, + [SMALL_STATE(4041)] = 120482, [SMALL_STATE(4042)] = 120501, - [SMALL_STATE(4043)] = 120522, - [SMALL_STATE(4044)] = 120545, - [SMALL_STATE(4045)] = 120568, - [SMALL_STATE(4046)] = 120589, - [SMALL_STATE(4047)] = 120614, - [SMALL_STATE(4048)] = 120637, - [SMALL_STATE(4049)] = 120662, - [SMALL_STATE(4050)] = 120683, - [SMALL_STATE(4051)] = 120706, - [SMALL_STATE(4052)] = 120729, - [SMALL_STATE(4053)] = 120750, - [SMALL_STATE(4054)] = 120773, - [SMALL_STATE(4055)] = 120794, - [SMALL_STATE(4056)] = 120817, - [SMALL_STATE(4057)] = 120840, - [SMALL_STATE(4058)] = 120863, - [SMALL_STATE(4059)] = 120886, - [SMALL_STATE(4060)] = 120907, - [SMALL_STATE(4061)] = 120926, - [SMALL_STATE(4062)] = 120951, - [SMALL_STATE(4063)] = 120974, - [SMALL_STATE(4064)] = 120995, - [SMALL_STATE(4065)] = 121016, - [SMALL_STATE(4066)] = 121035, - [SMALL_STATE(4067)] = 121060, - [SMALL_STATE(4068)] = 121083, - [SMALL_STATE(4069)] = 121104, - [SMALL_STATE(4070)] = 121125, - [SMALL_STATE(4071)] = 121148, - [SMALL_STATE(4072)] = 121173, - [SMALL_STATE(4073)] = 121192, - [SMALL_STATE(4074)] = 121217, - [SMALL_STATE(4075)] = 121242, - [SMALL_STATE(4076)] = 121265, - [SMALL_STATE(4077)] = 121284, - [SMALL_STATE(4078)] = 121309, - [SMALL_STATE(4079)] = 121328, - [SMALL_STATE(4080)] = 121351, - [SMALL_STATE(4081)] = 121374, - [SMALL_STATE(4082)] = 121397, - [SMALL_STATE(4083)] = 121416, - [SMALL_STATE(4084)] = 121439, - [SMALL_STATE(4085)] = 121456, - [SMALL_STATE(4086)] = 121479, - [SMALL_STATE(4087)] = 121502, - [SMALL_STATE(4088)] = 121525, - [SMALL_STATE(4089)] = 121548, - [SMALL_STATE(4090)] = 121571, - [SMALL_STATE(4091)] = 121594, - [SMALL_STATE(4092)] = 121615, - [SMALL_STATE(4093)] = 121638, - [SMALL_STATE(4094)] = 121661, - [SMALL_STATE(4095)] = 121682, - [SMALL_STATE(4096)] = 121703, - [SMALL_STATE(4097)] = 121724, - [SMALL_STATE(4098)] = 121745, - [SMALL_STATE(4099)] = 121768, - [SMALL_STATE(4100)] = 121793, + [SMALL_STATE(4043)] = 120520, + [SMALL_STATE(4044)] = 120539, + [SMALL_STATE(4045)] = 120562, + [SMALL_STATE(4046)] = 120577, + [SMALL_STATE(4047)] = 120600, + [SMALL_STATE(4048)] = 120615, + [SMALL_STATE(4049)] = 120638, + [SMALL_STATE(4050)] = 120661, + [SMALL_STATE(4051)] = 120684, + [SMALL_STATE(4052)] = 120707, + [SMALL_STATE(4053)] = 120730, + [SMALL_STATE(4054)] = 120755, + [SMALL_STATE(4055)] = 120778, + [SMALL_STATE(4056)] = 120803, + [SMALL_STATE(4057)] = 120818, + [SMALL_STATE(4058)] = 120833, + [SMALL_STATE(4059)] = 120848, + [SMALL_STATE(4060)] = 120871, + [SMALL_STATE(4061)] = 120894, + [SMALL_STATE(4062)] = 120917, + [SMALL_STATE(4063)] = 120940, + [SMALL_STATE(4064)] = 120963, + [SMALL_STATE(4065)] = 120986, + [SMALL_STATE(4066)] = 121009, + [SMALL_STATE(4067)] = 121032, + [SMALL_STATE(4068)] = 121055, + [SMALL_STATE(4069)] = 121078, + [SMALL_STATE(4070)] = 121101, + [SMALL_STATE(4071)] = 121124, + [SMALL_STATE(4072)] = 121149, + [SMALL_STATE(4073)] = 121174, + [SMALL_STATE(4074)] = 121197, + [SMALL_STATE(4075)] = 121222, + [SMALL_STATE(4076)] = 121241, + [SMALL_STATE(4077)] = 121264, + [SMALL_STATE(4078)] = 121287, + [SMALL_STATE(4079)] = 121308, + [SMALL_STATE(4080)] = 121331, + [SMALL_STATE(4081)] = 121354, + [SMALL_STATE(4082)] = 121377, + [SMALL_STATE(4083)] = 121400, + [SMALL_STATE(4084)] = 121423, + [SMALL_STATE(4085)] = 121444, + [SMALL_STATE(4086)] = 121465, + [SMALL_STATE(4087)] = 121488, + [SMALL_STATE(4088)] = 121513, + [SMALL_STATE(4089)] = 121538, + [SMALL_STATE(4090)] = 121561, + [SMALL_STATE(4091)] = 121584, + [SMALL_STATE(4092)] = 121607, + [SMALL_STATE(4093)] = 121630, + [SMALL_STATE(4094)] = 121653, + [SMALL_STATE(4095)] = 121676, + [SMALL_STATE(4096)] = 121695, + [SMALL_STATE(4097)] = 121718, + [SMALL_STATE(4098)] = 121741, + [SMALL_STATE(4099)] = 121764, + [SMALL_STATE(4100)] = 121787, [SMALL_STATE(4101)] = 121810, - [SMALL_STATE(4102)] = 121831, - [SMALL_STATE(4103)] = 121852, + [SMALL_STATE(4102)] = 121833, + [SMALL_STATE(4103)] = 121856, [SMALL_STATE(4104)] = 121875, - [SMALL_STATE(4105)] = 121898, + [SMALL_STATE(4105)] = 121896, [SMALL_STATE(4106)] = 121919, - [SMALL_STATE(4107)] = 121940, - [SMALL_STATE(4108)] = 121965, - [SMALL_STATE(4109)] = 121990, - [SMALL_STATE(4110)] = 122015, - [SMALL_STATE(4111)] = 122032, - [SMALL_STATE(4112)] = 122055, - [SMALL_STATE(4113)] = 122078, - [SMALL_STATE(4114)] = 122097, + [SMALL_STATE(4107)] = 121942, + [SMALL_STATE(4108)] = 121963, + [SMALL_STATE(4109)] = 121986, + [SMALL_STATE(4110)] = 122009, + [SMALL_STATE(4111)] = 122030, + [SMALL_STATE(4112)] = 122053, + [SMALL_STATE(4113)] = 122076, + [SMALL_STATE(4114)] = 122099, [SMALL_STATE(4115)] = 122120, [SMALL_STATE(4116)] = 122143, - [SMALL_STATE(4117)] = 122166, - [SMALL_STATE(4118)] = 122189, - [SMALL_STATE(4119)] = 122214, - [SMALL_STATE(4120)] = 122237, - [SMALL_STATE(4121)] = 122260, - [SMALL_STATE(4122)] = 122279, - [SMALL_STATE(4123)] = 122300, - [SMALL_STATE(4124)] = 122323, - [SMALL_STATE(4125)] = 122346, - [SMALL_STATE(4126)] = 122371, - [SMALL_STATE(4127)] = 122394, - [SMALL_STATE(4128)] = 122413, + [SMALL_STATE(4117)] = 122164, + [SMALL_STATE(4118)] = 122187, + [SMALL_STATE(4119)] = 122208, + [SMALL_STATE(4120)] = 122229, + [SMALL_STATE(4121)] = 122252, + [SMALL_STATE(4122)] = 122275, + [SMALL_STATE(4123)] = 122298, + [SMALL_STATE(4124)] = 122321, + [SMALL_STATE(4125)] = 122340, + [SMALL_STATE(4126)] = 122363, + [SMALL_STATE(4127)] = 122386, + [SMALL_STATE(4128)] = 122411, [SMALL_STATE(4129)] = 122436, [SMALL_STATE(4130)] = 122459, - [SMALL_STATE(4131)] = 122482, - [SMALL_STATE(4132)] = 122505, - [SMALL_STATE(4133)] = 122530, - [SMALL_STATE(4134)] = 122553, - [SMALL_STATE(4135)] = 122576, - [SMALL_STATE(4136)] = 122597, - [SMALL_STATE(4137)] = 122622, - [SMALL_STATE(4138)] = 122645, - [SMALL_STATE(4139)] = 122668, - [SMALL_STATE(4140)] = 122691, - [SMALL_STATE(4141)] = 122714, - [SMALL_STATE(4142)] = 122739, - [SMALL_STATE(4143)] = 122762, - [SMALL_STATE(4144)] = 122785, - [SMALL_STATE(4145)] = 122808, - [SMALL_STATE(4146)] = 122827, - [SMALL_STATE(4147)] = 122846, - [SMALL_STATE(4148)] = 122869, - [SMALL_STATE(4149)] = 122892, - [SMALL_STATE(4150)] = 122907, - [SMALL_STATE(4151)] = 122926, - [SMALL_STATE(4152)] = 122949, - [SMALL_STATE(4153)] = 122974, - [SMALL_STATE(4154)] = 122999, - [SMALL_STATE(4155)] = 123024, - [SMALL_STATE(4156)] = 123047, - [SMALL_STATE(4157)] = 123070, - [SMALL_STATE(4158)] = 123091, - [SMALL_STATE(4159)] = 123110, - [SMALL_STATE(4160)] = 123133, - [SMALL_STATE(4161)] = 123156, - [SMALL_STATE(4162)] = 123179, - [SMALL_STATE(4163)] = 123200, - [SMALL_STATE(4164)] = 123223, - [SMALL_STATE(4165)] = 123248, - [SMALL_STATE(4166)] = 123273, - [SMALL_STATE(4167)] = 123298, - [SMALL_STATE(4168)] = 123323, - [SMALL_STATE(4169)] = 123346, - [SMALL_STATE(4170)] = 123369, - [SMALL_STATE(4171)] = 123388, - [SMALL_STATE(4172)] = 123411, - [SMALL_STATE(4173)] = 123434, - [SMALL_STATE(4174)] = 123457, - [SMALL_STATE(4175)] = 123480, - [SMALL_STATE(4176)] = 123505, - [SMALL_STATE(4177)] = 123524, - [SMALL_STATE(4178)] = 123545, - [SMALL_STATE(4179)] = 123566, - [SMALL_STATE(4180)] = 123589, - [SMALL_STATE(4181)] = 123612, - [SMALL_STATE(4182)] = 123635, - [SMALL_STATE(4183)] = 123654, - [SMALL_STATE(4184)] = 123675, - [SMALL_STATE(4185)] = 123698, - [SMALL_STATE(4186)] = 123721, + [SMALL_STATE(4131)] = 122484, + [SMALL_STATE(4132)] = 122507, + [SMALL_STATE(4133)] = 122526, + [SMALL_STATE(4134)] = 122547, + [SMALL_STATE(4135)] = 122570, + [SMALL_STATE(4136)] = 122595, + [SMALL_STATE(4137)] = 122620, + [SMALL_STATE(4138)] = 122641, + [SMALL_STATE(4139)] = 122662, + [SMALL_STATE(4140)] = 122679, + [SMALL_STATE(4141)] = 122704, + [SMALL_STATE(4142)] = 122723, + [SMALL_STATE(4143)] = 122746, + [SMALL_STATE(4144)] = 122769, + [SMALL_STATE(4145)] = 122792, + [SMALL_STATE(4146)] = 122813, + [SMALL_STATE(4147)] = 122832, + [SMALL_STATE(4148)] = 122851, + [SMALL_STATE(4149)] = 122872, + [SMALL_STATE(4150)] = 122895, + [SMALL_STATE(4151)] = 122914, + [SMALL_STATE(4152)] = 122939, + [SMALL_STATE(4153)] = 122962, + [SMALL_STATE(4154)] = 122983, + [SMALL_STATE(4155)] = 123006, + [SMALL_STATE(4156)] = 123029, + [SMALL_STATE(4157)] = 123050, + [SMALL_STATE(4158)] = 123073, + [SMALL_STATE(4159)] = 123098, + [SMALL_STATE(4160)] = 123123, + [SMALL_STATE(4161)] = 123140, + [SMALL_STATE(4162)] = 123163, + [SMALL_STATE(4163)] = 123188, + [SMALL_STATE(4164)] = 123211, + [SMALL_STATE(4165)] = 123234, + [SMALL_STATE(4166)] = 123257, + [SMALL_STATE(4167)] = 123280, + [SMALL_STATE(4168)] = 123303, + [SMALL_STATE(4169)] = 123326, + [SMALL_STATE(4170)] = 123347, + [SMALL_STATE(4171)] = 123368, + [SMALL_STATE(4172)] = 123391, + [SMALL_STATE(4173)] = 123414, + [SMALL_STATE(4174)] = 123437, + [SMALL_STATE(4175)] = 123460, + [SMALL_STATE(4176)] = 123483, + [SMALL_STATE(4177)] = 123508, + [SMALL_STATE(4178)] = 123533, + [SMALL_STATE(4179)] = 123556, + [SMALL_STATE(4180)] = 123579, + [SMALL_STATE(4181)] = 123602, + [SMALL_STATE(4182)] = 123627, + [SMALL_STATE(4183)] = 123650, + [SMALL_STATE(4184)] = 123673, + [SMALL_STATE(4185)] = 123696, + [SMALL_STATE(4186)] = 123719, [SMALL_STATE(4187)] = 123744, - [SMALL_STATE(4188)] = 123767, - [SMALL_STATE(4189)] = 123786, - [SMALL_STATE(4190)] = 123805, - [SMALL_STATE(4191)] = 123828, + [SMALL_STATE(4188)] = 123763, + [SMALL_STATE(4189)] = 123784, + [SMALL_STATE(4190)] = 123807, + [SMALL_STATE(4191)] = 123826, [SMALL_STATE(4192)] = 123851, [SMALL_STATE(4193)] = 123874, - [SMALL_STATE(4194)] = 123897, - [SMALL_STATE(4195)] = 123920, + [SMALL_STATE(4194)] = 123899, + [SMALL_STATE(4195)] = 123922, [SMALL_STATE(4196)] = 123943, - [SMALL_STATE(4197)] = 123964, + [SMALL_STATE(4197)] = 123966, [SMALL_STATE(4198)] = 123987, [SMALL_STATE(4199)] = 124010, [SMALL_STATE(4200)] = 124033, [SMALL_STATE(4201)] = 124056, [SMALL_STATE(4202)] = 124079, [SMALL_STATE(4203)] = 124102, - [SMALL_STATE(4204)] = 124122, - [SMALL_STATE(4205)] = 124140, - [SMALL_STATE(4206)] = 124156, - [SMALL_STATE(4207)] = 124174, - [SMALL_STATE(4208)] = 124194, - [SMALL_STATE(4209)] = 124212, - [SMALL_STATE(4210)] = 124230, - [SMALL_STATE(4211)] = 124250, - [SMALL_STATE(4212)] = 124268, - [SMALL_STATE(4213)] = 124290, - [SMALL_STATE(4214)] = 124308, - [SMALL_STATE(4215)] = 124330, - [SMALL_STATE(4216)] = 124346, - [SMALL_STATE(4217)] = 124366, - [SMALL_STATE(4218)] = 124386, - [SMALL_STATE(4219)] = 124402, - [SMALL_STATE(4220)] = 124422, - [SMALL_STATE(4221)] = 124442, - [SMALL_STATE(4222)] = 124458, - [SMALL_STATE(4223)] = 124478, - [SMALL_STATE(4224)] = 124494, - [SMALL_STATE(4225)] = 124514, - [SMALL_STATE(4226)] = 124534, - [SMALL_STATE(4227)] = 124554, - [SMALL_STATE(4228)] = 124572, - [SMALL_STATE(4229)] = 124590, - [SMALL_STATE(4230)] = 124610, - [SMALL_STATE(4231)] = 124630, - [SMALL_STATE(4232)] = 124652, - [SMALL_STATE(4233)] = 124672, - [SMALL_STATE(4234)] = 124694, - [SMALL_STATE(4235)] = 124716, - [SMALL_STATE(4236)] = 124734, - [SMALL_STATE(4237)] = 124756, - [SMALL_STATE(4238)] = 124778, - [SMALL_STATE(4239)] = 124800, - [SMALL_STATE(4240)] = 124820, - [SMALL_STATE(4241)] = 124840, - [SMALL_STATE(4242)] = 124862, - [SMALL_STATE(4243)] = 124882, - [SMALL_STATE(4244)] = 124898, - [SMALL_STATE(4245)] = 124916, - [SMALL_STATE(4246)] = 124934, + [SMALL_STATE(4204)] = 124124, + [SMALL_STATE(4205)] = 124144, + [SMALL_STATE(4206)] = 124164, + [SMALL_STATE(4207)] = 124182, + [SMALL_STATE(4208)] = 124198, + [SMALL_STATE(4209)] = 124218, + [SMALL_STATE(4210)] = 124240, + [SMALL_STATE(4211)] = 124258, + [SMALL_STATE(4212)] = 124276, + [SMALL_STATE(4213)] = 124294, + [SMALL_STATE(4214)] = 124312, + [SMALL_STATE(4215)] = 124332, + [SMALL_STATE(4216)] = 124352, + [SMALL_STATE(4217)] = 124368, + [SMALL_STATE(4218)] = 124388, + [SMALL_STATE(4219)] = 124410, + [SMALL_STATE(4220)] = 124432, + [SMALL_STATE(4221)] = 124454, + [SMALL_STATE(4222)] = 124470, + [SMALL_STATE(4223)] = 124492, + [SMALL_STATE(4224)] = 124512, + [SMALL_STATE(4225)] = 124528, + [SMALL_STATE(4226)] = 124550, + [SMALL_STATE(4227)] = 124570, + [SMALL_STATE(4228)] = 124590, + [SMALL_STATE(4229)] = 124608, + [SMALL_STATE(4230)] = 124630, + [SMALL_STATE(4231)] = 124646, + [SMALL_STATE(4232)] = 124662, + [SMALL_STATE(4233)] = 124680, + [SMALL_STATE(4234)] = 124702, + [SMALL_STATE(4235)] = 124722, + [SMALL_STATE(4236)] = 124742, + [SMALL_STATE(4237)] = 124758, + [SMALL_STATE(4238)] = 124780, + [SMALL_STATE(4239)] = 124796, + [SMALL_STATE(4240)] = 124816, + [SMALL_STATE(4241)] = 124832, + [SMALL_STATE(4242)] = 124848, + [SMALL_STATE(4243)] = 124870, + [SMALL_STATE(4244)] = 124892, + [SMALL_STATE(4245)] = 124908, + [SMALL_STATE(4246)] = 124928, [SMALL_STATE(4247)] = 124950, - [SMALL_STATE(4248)] = 124966, - [SMALL_STATE(4249)] = 124986, - [SMALL_STATE(4250)] = 125008, - [SMALL_STATE(4251)] = 125030, - [SMALL_STATE(4252)] = 125046, + [SMALL_STATE(4248)] = 124970, + [SMALL_STATE(4249)] = 124990, + [SMALL_STATE(4250)] = 125010, + [SMALL_STATE(4251)] = 125026, + [SMALL_STATE(4252)] = 125048, [SMALL_STATE(4253)] = 125068, [SMALL_STATE(4254)] = 125090, - [SMALL_STATE(4255)] = 125106, - [SMALL_STATE(4256)] = 125122, - [SMALL_STATE(4257)] = 125138, - [SMALL_STATE(4258)] = 125160, - [SMALL_STATE(4259)] = 125176, - [SMALL_STATE(4260)] = 125198, - [SMALL_STATE(4261)] = 125220, - [SMALL_STATE(4262)] = 125242, - [SMALL_STATE(4263)] = 125258, - [SMALL_STATE(4264)] = 125278, - [SMALL_STATE(4265)] = 125298, - [SMALL_STATE(4266)] = 125316, - [SMALL_STATE(4267)] = 125332, - [SMALL_STATE(4268)] = 125350, - [SMALL_STATE(4269)] = 125368, - [SMALL_STATE(4270)] = 125386, - [SMALL_STATE(4271)] = 125404, - [SMALL_STATE(4272)] = 125424, - [SMALL_STATE(4273)] = 125442, - [SMALL_STATE(4274)] = 125460, - [SMALL_STATE(4275)] = 125478, - [SMALL_STATE(4276)] = 125494, - [SMALL_STATE(4277)] = 125510, - [SMALL_STATE(4278)] = 125528, - [SMALL_STATE(4279)] = 125544, - [SMALL_STATE(4280)] = 125560, - [SMALL_STATE(4281)] = 125582, - [SMALL_STATE(4282)] = 125598, - [SMALL_STATE(4283)] = 125620, - [SMALL_STATE(4284)] = 125636, - [SMALL_STATE(4285)] = 125656, - [SMALL_STATE(4286)] = 125678, - [SMALL_STATE(4287)] = 125700, - [SMALL_STATE(4288)] = 125720, - [SMALL_STATE(4289)] = 125742, - [SMALL_STATE(4290)] = 125758, - [SMALL_STATE(4291)] = 125774, - [SMALL_STATE(4292)] = 125796, - [SMALL_STATE(4293)] = 125814, - [SMALL_STATE(4294)] = 125832, - [SMALL_STATE(4295)] = 125852, - [SMALL_STATE(4296)] = 125874, - [SMALL_STATE(4297)] = 125892, - [SMALL_STATE(4298)] = 125908, - [SMALL_STATE(4299)] = 125924, - [SMALL_STATE(4300)] = 125942, - [SMALL_STATE(4301)] = 125964, - [SMALL_STATE(4302)] = 125984, - [SMALL_STATE(4303)] = 126006, - [SMALL_STATE(4304)] = 126022, - [SMALL_STATE(4305)] = 126044, - [SMALL_STATE(4306)] = 126060, - [SMALL_STATE(4307)] = 126076, - [SMALL_STATE(4308)] = 126096, - [SMALL_STATE(4309)] = 126116, - [SMALL_STATE(4310)] = 126138, - [SMALL_STATE(4311)] = 126156, - [SMALL_STATE(4312)] = 126176, - [SMALL_STATE(4313)] = 126198, - [SMALL_STATE(4314)] = 126216, - [SMALL_STATE(4315)] = 126236, - [SMALL_STATE(4316)] = 126258, - [SMALL_STATE(4317)] = 126280, - [SMALL_STATE(4318)] = 126300, - [SMALL_STATE(4319)] = 126320, - [SMALL_STATE(4320)] = 126340, - [SMALL_STATE(4321)] = 126356, - [SMALL_STATE(4322)] = 126372, - [SMALL_STATE(4323)] = 126392, - [SMALL_STATE(4324)] = 126414, - [SMALL_STATE(4325)] = 126434, - [SMALL_STATE(4326)] = 126454, - [SMALL_STATE(4327)] = 126474, - [SMALL_STATE(4328)] = 126494, - [SMALL_STATE(4329)] = 126514, - [SMALL_STATE(4330)] = 126534, - [SMALL_STATE(4331)] = 126556, - [SMALL_STATE(4332)] = 126576, - [SMALL_STATE(4333)] = 126596, - [SMALL_STATE(4334)] = 126616, - [SMALL_STATE(4335)] = 126636, - [SMALL_STATE(4336)] = 126656, - [SMALL_STATE(4337)] = 126676, - [SMALL_STATE(4338)] = 126698, - [SMALL_STATE(4339)] = 126718, - [SMALL_STATE(4340)] = 126738, - [SMALL_STATE(4341)] = 126760, - [SMALL_STATE(4342)] = 126778, - [SMALL_STATE(4343)] = 126794, - [SMALL_STATE(4344)] = 126814, - [SMALL_STATE(4345)] = 126834, - [SMALL_STATE(4346)] = 126856, - [SMALL_STATE(4347)] = 126878, - [SMALL_STATE(4348)] = 126900, - [SMALL_STATE(4349)] = 126916, - [SMALL_STATE(4350)] = 126936, - [SMALL_STATE(4351)] = 126956, - [SMALL_STATE(4352)] = 126978, - [SMALL_STATE(4353)] = 126998, - [SMALL_STATE(4354)] = 127020, - [SMALL_STATE(4355)] = 127040, - [SMALL_STATE(4356)] = 127060, - [SMALL_STATE(4357)] = 127082, - [SMALL_STATE(4358)] = 127098, - [SMALL_STATE(4359)] = 127114, - [SMALL_STATE(4360)] = 127136, - [SMALL_STATE(4361)] = 127158, + [SMALL_STATE(4255)] = 125110, + [SMALL_STATE(4256)] = 125128, + [SMALL_STATE(4257)] = 125148, + [SMALL_STATE(4258)] = 125168, + [SMALL_STATE(4259)] = 125190, + [SMALL_STATE(4260)] = 125210, + [SMALL_STATE(4261)] = 125230, + [SMALL_STATE(4262)] = 125246, + [SMALL_STATE(4263)] = 125264, + [SMALL_STATE(4264)] = 125284, + [SMALL_STATE(4265)] = 125306, + [SMALL_STATE(4266)] = 125328, + [SMALL_STATE(4267)] = 125350, + [SMALL_STATE(4268)] = 125368, + [SMALL_STATE(4269)] = 125386, + [SMALL_STATE(4270)] = 125402, + [SMALL_STATE(4271)] = 125420, + [SMALL_STATE(4272)] = 125440, + [SMALL_STATE(4273)] = 125462, + [SMALL_STATE(4274)] = 125484, + [SMALL_STATE(4275)] = 125502, + [SMALL_STATE(4276)] = 125524, + [SMALL_STATE(4277)] = 125544, + [SMALL_STATE(4278)] = 125566, + [SMALL_STATE(4279)] = 125588, + [SMALL_STATE(4280)] = 125608, + [SMALL_STATE(4281)] = 125626, + [SMALL_STATE(4282)] = 125648, + [SMALL_STATE(4283)] = 125666, + [SMALL_STATE(4284)] = 125688, + [SMALL_STATE(4285)] = 125706, + [SMALL_STATE(4286)] = 125726, + [SMALL_STATE(4287)] = 125746, + [SMALL_STATE(4288)] = 125768, + [SMALL_STATE(4289)] = 125784, + [SMALL_STATE(4290)] = 125800, + [SMALL_STATE(4291)] = 125818, + [SMALL_STATE(4292)] = 125834, + [SMALL_STATE(4293)] = 125854, + [SMALL_STATE(4294)] = 125876, + [SMALL_STATE(4295)] = 125896, + [SMALL_STATE(4296)] = 125918, + [SMALL_STATE(4297)] = 125938, + [SMALL_STATE(4298)] = 125958, + [SMALL_STATE(4299)] = 125974, + [SMALL_STATE(4300)] = 125994, + [SMALL_STATE(4301)] = 126016, + [SMALL_STATE(4302)] = 126032, + [SMALL_STATE(4303)] = 126048, + [SMALL_STATE(4304)] = 126070, + [SMALL_STATE(4305)] = 126092, + [SMALL_STATE(4306)] = 126112, + [SMALL_STATE(4307)] = 126134, + [SMALL_STATE(4308)] = 126152, + [SMALL_STATE(4309)] = 126174, + [SMALL_STATE(4310)] = 126190, + [SMALL_STATE(4311)] = 126212, + [SMALL_STATE(4312)] = 126234, + [SMALL_STATE(4313)] = 126254, + [SMALL_STATE(4314)] = 126274, + [SMALL_STATE(4315)] = 126296, + [SMALL_STATE(4316)] = 126316, + [SMALL_STATE(4317)] = 126338, + [SMALL_STATE(4318)] = 126356, + [SMALL_STATE(4319)] = 126376, + [SMALL_STATE(4320)] = 126398, + [SMALL_STATE(4321)] = 126420, + [SMALL_STATE(4322)] = 126440, + [SMALL_STATE(4323)] = 126462, + [SMALL_STATE(4324)] = 126482, + [SMALL_STATE(4325)] = 126498, + [SMALL_STATE(4326)] = 126518, + [SMALL_STATE(4327)] = 126534, + [SMALL_STATE(4328)] = 126554, + [SMALL_STATE(4329)] = 126570, + [SMALL_STATE(4330)] = 126590, + [SMALL_STATE(4331)] = 126610, + [SMALL_STATE(4332)] = 126628, + [SMALL_STATE(4333)] = 126644, + [SMALL_STATE(4334)] = 126660, + [SMALL_STATE(4335)] = 126680, + [SMALL_STATE(4336)] = 126696, + [SMALL_STATE(4337)] = 126716, + [SMALL_STATE(4338)] = 126736, + [SMALL_STATE(4339)] = 126756, + [SMALL_STATE(4340)] = 126774, + [SMALL_STATE(4341)] = 126790, + [SMALL_STATE(4342)] = 126812, + [SMALL_STATE(4343)] = 126832, + [SMALL_STATE(4344)] = 126852, + [SMALL_STATE(4345)] = 126868, + [SMALL_STATE(4346)] = 126888, + [SMALL_STATE(4347)] = 126906, + [SMALL_STATE(4348)] = 126922, + [SMALL_STATE(4349)] = 126938, + [SMALL_STATE(4350)] = 126958, + [SMALL_STATE(4351)] = 126974, + [SMALL_STATE(4352)] = 126994, + [SMALL_STATE(4353)] = 127014, + [SMALL_STATE(4354)] = 127032, + [SMALL_STATE(4355)] = 127050, + [SMALL_STATE(4356)] = 127066, + [SMALL_STATE(4357)] = 127084, + [SMALL_STATE(4358)] = 127104, + [SMALL_STATE(4359)] = 127122, + [SMALL_STATE(4360)] = 127140, + [SMALL_STATE(4361)] = 127162, [SMALL_STATE(4362)] = 127178, [SMALL_STATE(4363)] = 127191, [SMALL_STATE(4364)] = 127204, - [SMALL_STATE(4365)] = 127219, - [SMALL_STATE(4366)] = 127238, - [SMALL_STATE(4367)] = 127253, - [SMALL_STATE(4368)] = 127272, - [SMALL_STATE(4369)] = 127291, - [SMALL_STATE(4370)] = 127310, - [SMALL_STATE(4371)] = 127325, - [SMALL_STATE(4372)] = 127340, - [SMALL_STATE(4373)] = 127355, - [SMALL_STATE(4374)] = 127374, - [SMALL_STATE(4375)] = 127389, - [SMALL_STATE(4376)] = 127404, - [SMALL_STATE(4377)] = 127419, - [SMALL_STATE(4378)] = 127434, - [SMALL_STATE(4379)] = 127449, - [SMALL_STATE(4380)] = 127466, - [SMALL_STATE(4381)] = 127481, - [SMALL_STATE(4382)] = 127496, - [SMALL_STATE(4383)] = 127509, - [SMALL_STATE(4384)] = 127522, - [SMALL_STATE(4385)] = 127539, - [SMALL_STATE(4386)] = 127556, - [SMALL_STATE(4387)] = 127571, - [SMALL_STATE(4388)] = 127584, - [SMALL_STATE(4389)] = 127603, - [SMALL_STATE(4390)] = 127620, - [SMALL_STATE(4391)] = 127639, - [SMALL_STATE(4392)] = 127654, - [SMALL_STATE(4393)] = 127673, - [SMALL_STATE(4394)] = 127692, - [SMALL_STATE(4395)] = 127707, - [SMALL_STATE(4396)] = 127720, - [SMALL_STATE(4397)] = 127735, - [SMALL_STATE(4398)] = 127750, - [SMALL_STATE(4399)] = 127769, - [SMALL_STATE(4400)] = 127788, - [SMALL_STATE(4401)] = 127801, - [SMALL_STATE(4402)] = 127814, - [SMALL_STATE(4403)] = 127829, - [SMALL_STATE(4404)] = 127848, - [SMALL_STATE(4405)] = 127863, - [SMALL_STATE(4406)] = 127878, - [SMALL_STATE(4407)] = 127895, - [SMALL_STATE(4408)] = 127908, - [SMALL_STATE(4409)] = 127921, - [SMALL_STATE(4410)] = 127934, - [SMALL_STATE(4411)] = 127951, - [SMALL_STATE(4412)] = 127970, - [SMALL_STATE(4413)] = 127983, - [SMALL_STATE(4414)] = 128000, - [SMALL_STATE(4415)] = 128015, - [SMALL_STATE(4416)] = 128034, - [SMALL_STATE(4417)] = 128049, - [SMALL_STATE(4418)] = 128066, - [SMALL_STATE(4419)] = 128081, - [SMALL_STATE(4420)] = 128096, - [SMALL_STATE(4421)] = 128115, - [SMALL_STATE(4422)] = 128128, - [SMALL_STATE(4423)] = 128147, - [SMALL_STATE(4424)] = 128160, - [SMALL_STATE(4425)] = 128173, - [SMALL_STATE(4426)] = 128186, - [SMALL_STATE(4427)] = 128205, - [SMALL_STATE(4428)] = 128218, - [SMALL_STATE(4429)] = 128231, - [SMALL_STATE(4430)] = 128244, - [SMALL_STATE(4431)] = 128257, - [SMALL_STATE(4432)] = 128270, - [SMALL_STATE(4433)] = 128283, - [SMALL_STATE(4434)] = 128298, - [SMALL_STATE(4435)] = 128311, - [SMALL_STATE(4436)] = 128328, - [SMALL_STATE(4437)] = 128341, - [SMALL_STATE(4438)] = 128354, - [SMALL_STATE(4439)] = 128367, - [SMALL_STATE(4440)] = 128382, - [SMALL_STATE(4441)] = 128401, - [SMALL_STATE(4442)] = 128416, - [SMALL_STATE(4443)] = 128433, - [SMALL_STATE(4444)] = 128452, - [SMALL_STATE(4445)] = 128471, - [SMALL_STATE(4446)] = 128486, - [SMALL_STATE(4447)] = 128501, - [SMALL_STATE(4448)] = 128518, - [SMALL_STATE(4449)] = 128533, - [SMALL_STATE(4450)] = 128548, - [SMALL_STATE(4451)] = 128563, - [SMALL_STATE(4452)] = 128582, - [SMALL_STATE(4453)] = 128597, - [SMALL_STATE(4454)] = 128616, - [SMALL_STATE(4455)] = 128629, - [SMALL_STATE(4456)] = 128642, - [SMALL_STATE(4457)] = 128661, - [SMALL_STATE(4458)] = 128676, - [SMALL_STATE(4459)] = 128691, - [SMALL_STATE(4460)] = 128704, - [SMALL_STATE(4461)] = 128719, - [SMALL_STATE(4462)] = 128732, - [SMALL_STATE(4463)] = 128747, - [SMALL_STATE(4464)] = 128760, - [SMALL_STATE(4465)] = 128779, - [SMALL_STATE(4466)] = 128798, - [SMALL_STATE(4467)] = 128813, - [SMALL_STATE(4468)] = 128828, - [SMALL_STATE(4469)] = 128841, - [SMALL_STATE(4470)] = 128854, - [SMALL_STATE(4471)] = 128867, - [SMALL_STATE(4472)] = 128880, - [SMALL_STATE(4473)] = 128897, - [SMALL_STATE(4474)] = 128910, - [SMALL_STATE(4475)] = 128923, - [SMALL_STATE(4476)] = 128936, - [SMALL_STATE(4477)] = 128955, - [SMALL_STATE(4478)] = 128974, - [SMALL_STATE(4479)] = 128987, - [SMALL_STATE(4480)] = 129000, - [SMALL_STATE(4481)] = 129013, + [SMALL_STATE(4365)] = 127217, + [SMALL_STATE(4366)] = 127230, + [SMALL_STATE(4367)] = 127243, + [SMALL_STATE(4368)] = 127256, + [SMALL_STATE(4369)] = 127269, + [SMALL_STATE(4370)] = 127284, + [SMALL_STATE(4371)] = 127299, + [SMALL_STATE(4372)] = 127314, + [SMALL_STATE(4373)] = 127333, + [SMALL_STATE(4374)] = 127346, + [SMALL_STATE(4375)] = 127365, + [SMALL_STATE(4376)] = 127384, + [SMALL_STATE(4377)] = 127403, + [SMALL_STATE(4378)] = 127418, + [SMALL_STATE(4379)] = 127431, + [SMALL_STATE(4380)] = 127444, + [SMALL_STATE(4381)] = 127461, + [SMALL_STATE(4382)] = 127474, + [SMALL_STATE(4383)] = 127493, + [SMALL_STATE(4384)] = 127506, + [SMALL_STATE(4385)] = 127519, + [SMALL_STATE(4386)] = 127536, + [SMALL_STATE(4387)] = 127555, + [SMALL_STATE(4388)] = 127570, + [SMALL_STATE(4389)] = 127583, + [SMALL_STATE(4390)] = 127596, + [SMALL_STATE(4391)] = 127609, + [SMALL_STATE(4392)] = 127624, + [SMALL_STATE(4393)] = 127639, + [SMALL_STATE(4394)] = 127658, + [SMALL_STATE(4395)] = 127671, + [SMALL_STATE(4396)] = 127684, + [SMALL_STATE(4397)] = 127697, + [SMALL_STATE(4398)] = 127710, + [SMALL_STATE(4399)] = 127723, + [SMALL_STATE(4400)] = 127736, + [SMALL_STATE(4401)] = 127749, + [SMALL_STATE(4402)] = 127762, + [SMALL_STATE(4403)] = 127775, + [SMALL_STATE(4404)] = 127788, + [SMALL_STATE(4405)] = 127805, + [SMALL_STATE(4406)] = 127818, + [SMALL_STATE(4407)] = 127837, + [SMALL_STATE(4408)] = 127856, + [SMALL_STATE(4409)] = 127875, + [SMALL_STATE(4410)] = 127890, + [SMALL_STATE(4411)] = 127905, + [SMALL_STATE(4412)] = 127920, + [SMALL_STATE(4413)] = 127935, + [SMALL_STATE(4414)] = 127952, + [SMALL_STATE(4415)] = 127965, + [SMALL_STATE(4416)] = 127978, + [SMALL_STATE(4417)] = 127991, + [SMALL_STATE(4418)] = 128010, + [SMALL_STATE(4419)] = 128025, + [SMALL_STATE(4420)] = 128040, + [SMALL_STATE(4421)] = 128055, + [SMALL_STATE(4422)] = 128070, + [SMALL_STATE(4423)] = 128089, + [SMALL_STATE(4424)] = 128108, + [SMALL_STATE(4425)] = 128127, + [SMALL_STATE(4426)] = 128142, + [SMALL_STATE(4427)] = 128157, + [SMALL_STATE(4428)] = 128172, + [SMALL_STATE(4429)] = 128185, + [SMALL_STATE(4430)] = 128198, + [SMALL_STATE(4431)] = 128211, + [SMALL_STATE(4432)] = 128224, + [SMALL_STATE(4433)] = 128239, + [SMALL_STATE(4434)] = 128258, + [SMALL_STATE(4435)] = 128273, + [SMALL_STATE(4436)] = 128286, + [SMALL_STATE(4437)] = 128303, + [SMALL_STATE(4438)] = 128320, + [SMALL_STATE(4439)] = 128333, + [SMALL_STATE(4440)] = 128346, + [SMALL_STATE(4441)] = 128361, + [SMALL_STATE(4442)] = 128380, + [SMALL_STATE(4443)] = 128393, + [SMALL_STATE(4444)] = 128406, + [SMALL_STATE(4445)] = 128419, + [SMALL_STATE(4446)] = 128432, + [SMALL_STATE(4447)] = 128445, + [SMALL_STATE(4448)] = 128460, + [SMALL_STATE(4449)] = 128477, + [SMALL_STATE(4450)] = 128490, + [SMALL_STATE(4451)] = 128503, + [SMALL_STATE(4452)] = 128520, + [SMALL_STATE(4453)] = 128533, + [SMALL_STATE(4454)] = 128552, + [SMALL_STATE(4455)] = 128571, + [SMALL_STATE(4456)] = 128590, + [SMALL_STATE(4457)] = 128605, + [SMALL_STATE(4458)] = 128624, + [SMALL_STATE(4459)] = 128641, + [SMALL_STATE(4460)] = 128656, + [SMALL_STATE(4461)] = 128675, + [SMALL_STATE(4462)] = 128694, + [SMALL_STATE(4463)] = 128713, + [SMALL_STATE(4464)] = 128732, + [SMALL_STATE(4465)] = 128751, + [SMALL_STATE(4466)] = 128764, + [SMALL_STATE(4467)] = 128777, + [SMALL_STATE(4468)] = 128794, + [SMALL_STATE(4469)] = 128813, + [SMALL_STATE(4470)] = 128832, + [SMALL_STATE(4471)] = 128845, + [SMALL_STATE(4472)] = 128860, + [SMALL_STATE(4473)] = 128875, + [SMALL_STATE(4474)] = 128890, + [SMALL_STATE(4475)] = 128907, + [SMALL_STATE(4476)] = 128926, + [SMALL_STATE(4477)] = 128941, + [SMALL_STATE(4478)] = 128956, + [SMALL_STATE(4479)] = 128975, + [SMALL_STATE(4480)] = 128994, + [SMALL_STATE(4481)] = 129011, [SMALL_STATE(4482)] = 129026, - [SMALL_STATE(4483)] = 129045, - [SMALL_STATE(4484)] = 129058, - [SMALL_STATE(4485)] = 129075, - [SMALL_STATE(4486)] = 129088, - [SMALL_STATE(4487)] = 129101, - [SMALL_STATE(4488)] = 129114, - [SMALL_STATE(4489)] = 129127, - [SMALL_STATE(4490)] = 129140, - [SMALL_STATE(4491)] = 129159, - [SMALL_STATE(4492)] = 129178, - [SMALL_STATE(4493)] = 129193, - [SMALL_STATE(4494)] = 129208, - [SMALL_STATE(4495)] = 129225, - [SMALL_STATE(4496)] = 129244, - [SMALL_STATE(4497)] = 129263, - [SMALL_STATE(4498)] = 129276, - [SMALL_STATE(4499)] = 129295, - [SMALL_STATE(4500)] = 129314, - [SMALL_STATE(4501)] = 129329, - [SMALL_STATE(4502)] = 129344, - [SMALL_STATE(4503)] = 129359, - [SMALL_STATE(4504)] = 129374, - [SMALL_STATE(4505)] = 129389, - [SMALL_STATE(4506)] = 129408, - [SMALL_STATE(4507)] = 129423, - [SMALL_STATE(4508)] = 129438, - [SMALL_STATE(4509)] = 129453, - [SMALL_STATE(4510)] = 129468, - [SMALL_STATE(4511)] = 129481, - [SMALL_STATE(4512)] = 129500, - [SMALL_STATE(4513)] = 129513, - [SMALL_STATE(4514)] = 129526, - [SMALL_STATE(4515)] = 129539, - [SMALL_STATE(4516)] = 129552, - [SMALL_STATE(4517)] = 129571, - [SMALL_STATE(4518)] = 129584, - [SMALL_STATE(4519)] = 129603, - [SMALL_STATE(4520)] = 129620, + [SMALL_STATE(4483)] = 129041, + [SMALL_STATE(4484)] = 129054, + [SMALL_STATE(4485)] = 129071, + [SMALL_STATE(4486)] = 129090, + [SMALL_STATE(4487)] = 129109, + [SMALL_STATE(4488)] = 129124, + [SMALL_STATE(4489)] = 129143, + [SMALL_STATE(4490)] = 129158, + [SMALL_STATE(4491)] = 129173, + [SMALL_STATE(4492)] = 129190, + [SMALL_STATE(4493)] = 129205, + [SMALL_STATE(4494)] = 129222, + [SMALL_STATE(4495)] = 129237, + [SMALL_STATE(4496)] = 129252, + [SMALL_STATE(4497)] = 129269, + [SMALL_STATE(4498)] = 129288, + [SMALL_STATE(4499)] = 129303, + [SMALL_STATE(4500)] = 129320, + [SMALL_STATE(4501)] = 129337, + [SMALL_STATE(4502)] = 129356, + [SMALL_STATE(4503)] = 129371, + [SMALL_STATE(4504)] = 129390, + [SMALL_STATE(4505)] = 129407, + [SMALL_STATE(4506)] = 129424, + [SMALL_STATE(4507)] = 129441, + [SMALL_STATE(4508)] = 129454, + [SMALL_STATE(4509)] = 129467, + [SMALL_STATE(4510)] = 129480, + [SMALL_STATE(4511)] = 129497, + [SMALL_STATE(4512)] = 129514, + [SMALL_STATE(4513)] = 129529, + [SMALL_STATE(4514)] = 129542, + [SMALL_STATE(4515)] = 129557, + [SMALL_STATE(4516)] = 129572, + [SMALL_STATE(4517)] = 129585, + [SMALL_STATE(4518)] = 129600, + [SMALL_STATE(4519)] = 129613, + [SMALL_STATE(4520)] = 129626, [SMALL_STATE(4521)] = 129639, - [SMALL_STATE(4522)] = 129656, - [SMALL_STATE(4523)] = 129671, - [SMALL_STATE(4524)] = 129686, - [SMALL_STATE(4525)] = 129699, - [SMALL_STATE(4526)] = 129714, - [SMALL_STATE(4527)] = 129727, - [SMALL_STATE(4528)] = 129742, - [SMALL_STATE(4529)] = 129757, - [SMALL_STATE(4530)] = 129776, - [SMALL_STATE(4531)] = 129791, - [SMALL_STATE(4532)] = 129806, - [SMALL_STATE(4533)] = 129821, - [SMALL_STATE(4534)] = 129838, - [SMALL_STATE(4535)] = 129855, - [SMALL_STATE(4536)] = 129868, + [SMALL_STATE(4522)] = 129654, + [SMALL_STATE(4523)] = 129669, + [SMALL_STATE(4524)] = 129688, + [SMALL_STATE(4525)] = 129703, + [SMALL_STATE(4526)] = 129716, + [SMALL_STATE(4527)] = 129731, + [SMALL_STATE(4528)] = 129748, + [SMALL_STATE(4529)] = 129761, + [SMALL_STATE(4530)] = 129774, + [SMALL_STATE(4531)] = 129789, + [SMALL_STATE(4532)] = 129802, + [SMALL_STATE(4533)] = 129817, + [SMALL_STATE(4534)] = 129836, + [SMALL_STATE(4535)] = 129849, + [SMALL_STATE(4536)] = 129864, [SMALL_STATE(4537)] = 129881, - [SMALL_STATE(4538)] = 129894, - [SMALL_STATE(4539)] = 129907, + [SMALL_STATE(4538)] = 129898, + [SMALL_STATE(4539)] = 129911, [SMALL_STATE(4540)] = 129924, - [SMALL_STATE(4541)] = 129937, - [SMALL_STATE(4542)] = 129950, - [SMALL_STATE(4543)] = 129963, - [SMALL_STATE(4544)] = 129976, + [SMALL_STATE(4541)] = 129939, + [SMALL_STATE(4542)] = 129952, + [SMALL_STATE(4543)] = 129965, + [SMALL_STATE(4544)] = 129980, [SMALL_STATE(4545)] = 129993, - [SMALL_STATE(4546)] = 130006, - [SMALL_STATE(4547)] = 130023, - [SMALL_STATE(4548)] = 130042, - [SMALL_STATE(4549)] = 130057, - [SMALL_STATE(4550)] = 130070, - [SMALL_STATE(4551)] = 130083, - [SMALL_STATE(4552)] = 130102, - [SMALL_STATE(4553)] = 130121, - [SMALL_STATE(4554)] = 130138, - [SMALL_STATE(4555)] = 130151, - [SMALL_STATE(4556)] = 130166, - [SMALL_STATE(4557)] = 130185, - [SMALL_STATE(4558)] = 130198, - [SMALL_STATE(4559)] = 130211, - [SMALL_STATE(4560)] = 130224, - [SMALL_STATE(4561)] = 130237, - [SMALL_STATE(4562)] = 130250, - [SMALL_STATE(4563)] = 130263, - [SMALL_STATE(4564)] = 130276, - [SMALL_STATE(4565)] = 130289, + [SMALL_STATE(4546)] = 130008, + [SMALL_STATE(4547)] = 130021, + [SMALL_STATE(4548)] = 130034, + [SMALL_STATE(4549)] = 130049, + [SMALL_STATE(4550)] = 130064, + [SMALL_STATE(4551)] = 130077, + [SMALL_STATE(4552)] = 130090, + [SMALL_STATE(4553)] = 130109, + [SMALL_STATE(4554)] = 130124, + [SMALL_STATE(4555)] = 130139, + [SMALL_STATE(4556)] = 130158, + [SMALL_STATE(4557)] = 130177, + [SMALL_STATE(4558)] = 130190, + [SMALL_STATE(4559)] = 130203, + [SMALL_STATE(4560)] = 130216, + [SMALL_STATE(4561)] = 130231, + [SMALL_STATE(4562)] = 130244, + [SMALL_STATE(4563)] = 130257, + [SMALL_STATE(4564)] = 130270, + [SMALL_STATE(4565)] = 130287, [SMALL_STATE(4566)] = 130302, - [SMALL_STATE(4567)] = 130315, - [SMALL_STATE(4568)] = 130332, - [SMALL_STATE(4569)] = 130345, - [SMALL_STATE(4570)] = 130358, - [SMALL_STATE(4571)] = 130375, - [SMALL_STATE(4572)] = 130388, - [SMALL_STATE(4573)] = 130405, - [SMALL_STATE(4574)] = 130418, - [SMALL_STATE(4575)] = 130437, - [SMALL_STATE(4576)] = 130450, - [SMALL_STATE(4577)] = 130467, - [SMALL_STATE(4578)] = 130484, - [SMALL_STATE(4579)] = 130497, - [SMALL_STATE(4580)] = 130514, - [SMALL_STATE(4581)] = 130529, - [SMALL_STATE(4582)] = 130546, - [SMALL_STATE(4583)] = 130559, - [SMALL_STATE(4584)] = 130572, - [SMALL_STATE(4585)] = 130585, - [SMALL_STATE(4586)] = 130598, - [SMALL_STATE(4587)] = 130615, - [SMALL_STATE(4588)] = 130630, - [SMALL_STATE(4589)] = 130643, - [SMALL_STATE(4590)] = 130656, - [SMALL_STATE(4591)] = 130669, - [SMALL_STATE(4592)] = 130682, - [SMALL_STATE(4593)] = 130695, - [SMALL_STATE(4594)] = 130708, - [SMALL_STATE(4595)] = 130721, - [SMALL_STATE(4596)] = 130734, - [SMALL_STATE(4597)] = 130747, - [SMALL_STATE(4598)] = 130760, - [SMALL_STATE(4599)] = 130773, - [SMALL_STATE(4600)] = 130788, - [SMALL_STATE(4601)] = 130801, - [SMALL_STATE(4602)] = 130814, - [SMALL_STATE(4603)] = 130827, - [SMALL_STATE(4604)] = 130840, - [SMALL_STATE(4605)] = 130853, - [SMALL_STATE(4606)] = 130866, - [SMALL_STATE(4607)] = 130881, - [SMALL_STATE(4608)] = 130900, - [SMALL_STATE(4609)] = 130915, - [SMALL_STATE(4610)] = 130934, - [SMALL_STATE(4611)] = 130953, - [SMALL_STATE(4612)] = 130970, - [SMALL_STATE(4613)] = 130985, - [SMALL_STATE(4614)] = 131000, - [SMALL_STATE(4615)] = 131013, - [SMALL_STATE(4616)] = 131030, - [SMALL_STATE(4617)] = 131049, - [SMALL_STATE(4618)] = 131062, - [SMALL_STATE(4619)] = 131075, - [SMALL_STATE(4620)] = 131092, - [SMALL_STATE(4621)] = 131109, - [SMALL_STATE(4622)] = 131128, - [SMALL_STATE(4623)] = 131145, - [SMALL_STATE(4624)] = 131162, - [SMALL_STATE(4625)] = 131175, - [SMALL_STATE(4626)] = 131194, - [SMALL_STATE(4627)] = 131211, - [SMALL_STATE(4628)] = 131230, - [SMALL_STATE(4629)] = 131249, - [SMALL_STATE(4630)] = 131268, - [SMALL_STATE(4631)] = 131283, - [SMALL_STATE(4632)] = 131298, - [SMALL_STATE(4633)] = 131311, - [SMALL_STATE(4634)] = 131324, - [SMALL_STATE(4635)] = 131343, - [SMALL_STATE(4636)] = 131356, - [SMALL_STATE(4637)] = 131369, - [SMALL_STATE(4638)] = 131384, - [SMALL_STATE(4639)] = 131403, - [SMALL_STATE(4640)] = 131418, + [SMALL_STATE(4567)] = 130317, + [SMALL_STATE(4568)] = 130336, + [SMALL_STATE(4569)] = 130353, + [SMALL_STATE(4570)] = 130366, + [SMALL_STATE(4571)] = 130379, + [SMALL_STATE(4572)] = 130394, + [SMALL_STATE(4573)] = 130411, + [SMALL_STATE(4574)] = 130428, + [SMALL_STATE(4575)] = 130443, + [SMALL_STATE(4576)] = 130456, + [SMALL_STATE(4577)] = 130471, + [SMALL_STATE(4578)] = 130486, + [SMALL_STATE(4579)] = 130501, + [SMALL_STATE(4580)] = 130518, + [SMALL_STATE(4581)] = 130533, + [SMALL_STATE(4582)] = 130548, + [SMALL_STATE(4583)] = 130563, + [SMALL_STATE(4584)] = 130576, + [SMALL_STATE(4585)] = 130595, + [SMALL_STATE(4586)] = 130608, + [SMALL_STATE(4587)] = 130621, + [SMALL_STATE(4588)] = 130640, + [SMALL_STATE(4589)] = 130653, + [SMALL_STATE(4590)] = 130668, + [SMALL_STATE(4591)] = 130685, + [SMALL_STATE(4592)] = 130702, + [SMALL_STATE(4593)] = 130717, + [SMALL_STATE(4594)] = 130730, + [SMALL_STATE(4595)] = 130747, + [SMALL_STATE(4596)] = 130762, + [SMALL_STATE(4597)] = 130777, + [SMALL_STATE(4598)] = 130792, + [SMALL_STATE(4599)] = 130805, + [SMALL_STATE(4600)] = 130818, + [SMALL_STATE(4601)] = 130831, + [SMALL_STATE(4602)] = 130850, + [SMALL_STATE(4603)] = 130865, + [SMALL_STATE(4604)] = 130878, + [SMALL_STATE(4605)] = 130897, + [SMALL_STATE(4606)] = 130912, + [SMALL_STATE(4607)] = 130925, + [SMALL_STATE(4608)] = 130938, + [SMALL_STATE(4609)] = 130951, + [SMALL_STATE(4610)] = 130964, + [SMALL_STATE(4611)] = 130977, + [SMALL_STATE(4612)] = 130990, + [SMALL_STATE(4613)] = 131003, + [SMALL_STATE(4614)] = 131016, + [SMALL_STATE(4615)] = 131035, + [SMALL_STATE(4616)] = 131054, + [SMALL_STATE(4617)] = 131073, + [SMALL_STATE(4618)] = 131086, + [SMALL_STATE(4619)] = 131105, + [SMALL_STATE(4620)] = 131124, + [SMALL_STATE(4621)] = 131137, + [SMALL_STATE(4622)] = 131150, + [SMALL_STATE(4623)] = 131163, + [SMALL_STATE(4624)] = 131176, + [SMALL_STATE(4625)] = 131189, + [SMALL_STATE(4626)] = 131202, + [SMALL_STATE(4627)] = 131215, + [SMALL_STATE(4628)] = 131234, + [SMALL_STATE(4629)] = 131247, + [SMALL_STATE(4630)] = 131266, + [SMALL_STATE(4631)] = 131279, + [SMALL_STATE(4632)] = 131292, + [SMALL_STATE(4633)] = 131309, + [SMALL_STATE(4634)] = 131322, + [SMALL_STATE(4635)] = 131335, + [SMALL_STATE(4636)] = 131354, + [SMALL_STATE(4637)] = 131373, + [SMALL_STATE(4638)] = 131386, + [SMALL_STATE(4639)] = 131399, + [SMALL_STATE(4640)] = 131412, [SMALL_STATE(4641)] = 131431, [SMALL_STATE(4642)] = 131448, - [SMALL_STATE(4643)] = 131461, - [SMALL_STATE(4644)] = 131474, - [SMALL_STATE(4645)] = 131487, - [SMALL_STATE(4646)] = 131506, - [SMALL_STATE(4647)] = 131525, - [SMALL_STATE(4648)] = 131538, - [SMALL_STATE(4649)] = 131555, - [SMALL_STATE(4650)] = 131572, - [SMALL_STATE(4651)] = 131585, - [SMALL_STATE(4652)] = 131598, - [SMALL_STATE(4653)] = 131613, - [SMALL_STATE(4654)] = 131632, - [SMALL_STATE(4655)] = 131645, - [SMALL_STATE(4656)] = 131658, - [SMALL_STATE(4657)] = 131671, - [SMALL_STATE(4658)] = 131686, - [SMALL_STATE(4659)] = 131705, - [SMALL_STATE(4660)] = 131718, - [SMALL_STATE(4661)] = 131737, - [SMALL_STATE(4662)] = 131756, - [SMALL_STATE(4663)] = 131775, - [SMALL_STATE(4664)] = 131788, - [SMALL_STATE(4665)] = 131805, - [SMALL_STATE(4666)] = 131818, - [SMALL_STATE(4667)] = 131837, - [SMALL_STATE(4668)] = 131852, - [SMALL_STATE(4669)] = 131871, - [SMALL_STATE(4670)] = 131890, - [SMALL_STATE(4671)] = 131909, - [SMALL_STATE(4672)] = 131928, - [SMALL_STATE(4673)] = 131941, - [SMALL_STATE(4674)] = 131960, - [SMALL_STATE(4675)] = 131977, - [SMALL_STATE(4676)] = 131990, - [SMALL_STATE(4677)] = 132004, - [SMALL_STATE(4678)] = 132020, - [SMALL_STATE(4679)] = 132032, - [SMALL_STATE(4680)] = 132048, - [SMALL_STATE(4681)] = 132062, - [SMALL_STATE(4682)] = 132076, - [SMALL_STATE(4683)] = 132088, - [SMALL_STATE(4684)] = 132100, - [SMALL_STATE(4685)] = 132116, - [SMALL_STATE(4686)] = 132132, - [SMALL_STATE(4687)] = 132144, - [SMALL_STATE(4688)] = 132160, - [SMALL_STATE(4689)] = 132172, - [SMALL_STATE(4690)] = 132184, - [SMALL_STATE(4691)] = 132200, - [SMALL_STATE(4692)] = 132216, - [SMALL_STATE(4693)] = 132228, - [SMALL_STATE(4694)] = 132240, - [SMALL_STATE(4695)] = 132252, - [SMALL_STATE(4696)] = 132268, - [SMALL_STATE(4697)] = 132280, - [SMALL_STATE(4698)] = 132296, - [SMALL_STATE(4699)] = 132308, - [SMALL_STATE(4700)] = 132324, - [SMALL_STATE(4701)] = 132340, - [SMALL_STATE(4702)] = 132352, - [SMALL_STATE(4703)] = 132364, - [SMALL_STATE(4704)] = 132376, - [SMALL_STATE(4705)] = 132388, - [SMALL_STATE(4706)] = 132400, - [SMALL_STATE(4707)] = 132414, - [SMALL_STATE(4708)] = 132430, - [SMALL_STATE(4709)] = 132444, - [SMALL_STATE(4710)] = 132458, - [SMALL_STATE(4711)] = 132472, - [SMALL_STATE(4712)] = 132484, - [SMALL_STATE(4713)] = 132498, - [SMALL_STATE(4714)] = 132512, - [SMALL_STATE(4715)] = 132526, - [SMALL_STATE(4716)] = 132538, - [SMALL_STATE(4717)] = 132552, - [SMALL_STATE(4718)] = 132564, - [SMALL_STATE(4719)] = 132576, - [SMALL_STATE(4720)] = 132588, - [SMALL_STATE(4721)] = 132600, - [SMALL_STATE(4722)] = 132612, - [SMALL_STATE(4723)] = 132624, - [SMALL_STATE(4724)] = 132638, - [SMALL_STATE(4725)] = 132650, - [SMALL_STATE(4726)] = 132662, - [SMALL_STATE(4727)] = 132674, - [SMALL_STATE(4728)] = 132686, - [SMALL_STATE(4729)] = 132698, - [SMALL_STATE(4730)] = 132710, - [SMALL_STATE(4731)] = 132722, - [SMALL_STATE(4732)] = 132734, - [SMALL_STATE(4733)] = 132746, - [SMALL_STATE(4734)] = 132758, - [SMALL_STATE(4735)] = 132772, - [SMALL_STATE(4736)] = 132788, - [SMALL_STATE(4737)] = 132804, - [SMALL_STATE(4738)] = 132820, - [SMALL_STATE(4739)] = 132832, - [SMALL_STATE(4740)] = 132846, - [SMALL_STATE(4741)] = 132862, - [SMALL_STATE(4742)] = 132876, - [SMALL_STATE(4743)] = 132888, - [SMALL_STATE(4744)] = 132904, - [SMALL_STATE(4745)] = 132916, - [SMALL_STATE(4746)] = 132932, - [SMALL_STATE(4747)] = 132948, - [SMALL_STATE(4748)] = 132964, - [SMALL_STATE(4749)] = 132976, - [SMALL_STATE(4750)] = 132992, - [SMALL_STATE(4751)] = 133008, - [SMALL_STATE(4752)] = 133024, - [SMALL_STATE(4753)] = 133036, - [SMALL_STATE(4754)] = 133052, - [SMALL_STATE(4755)] = 133068, - [SMALL_STATE(4756)] = 133082, - [SMALL_STATE(4757)] = 133098, - [SMALL_STATE(4758)] = 133114, - [SMALL_STATE(4759)] = 133130, - [SMALL_STATE(4760)] = 133146, - [SMALL_STATE(4761)] = 133162, - [SMALL_STATE(4762)] = 133174, - [SMALL_STATE(4763)] = 133190, - [SMALL_STATE(4764)] = 133206, - [SMALL_STATE(4765)] = 133218, - [SMALL_STATE(4766)] = 133234, - [SMALL_STATE(4767)] = 133248, - [SMALL_STATE(4768)] = 133260, - [SMALL_STATE(4769)] = 133276, - [SMALL_STATE(4770)] = 133290, - [SMALL_STATE(4771)] = 133304, - [SMALL_STATE(4772)] = 133316, - [SMALL_STATE(4773)] = 133332, - [SMALL_STATE(4774)] = 133344, - [SMALL_STATE(4775)] = 133358, - [SMALL_STATE(4776)] = 133372, - [SMALL_STATE(4777)] = 133388, - [SMALL_STATE(4778)] = 133402, - [SMALL_STATE(4779)] = 133418, - [SMALL_STATE(4780)] = 133434, - [SMALL_STATE(4781)] = 133450, - [SMALL_STATE(4782)] = 133462, - [SMALL_STATE(4783)] = 133478, - [SMALL_STATE(4784)] = 133494, - [SMALL_STATE(4785)] = 133510, - [SMALL_STATE(4786)] = 133522, - [SMALL_STATE(4787)] = 133534, - [SMALL_STATE(4788)] = 133550, - [SMALL_STATE(4789)] = 133564, - [SMALL_STATE(4790)] = 133576, - [SMALL_STATE(4791)] = 133588, - [SMALL_STATE(4792)] = 133600, - [SMALL_STATE(4793)] = 133616, - [SMALL_STATE(4794)] = 133628, - [SMALL_STATE(4795)] = 133640, - [SMALL_STATE(4796)] = 133656, - [SMALL_STATE(4797)] = 133670, - [SMALL_STATE(4798)] = 133682, - [SMALL_STATE(4799)] = 133694, - [SMALL_STATE(4800)] = 133708, - [SMALL_STATE(4801)] = 133720, - [SMALL_STATE(4802)] = 133736, - [SMALL_STATE(4803)] = 133750, - [SMALL_STATE(4804)] = 133762, - [SMALL_STATE(4805)] = 133776, - [SMALL_STATE(4806)] = 133792, - [SMALL_STATE(4807)] = 133804, - [SMALL_STATE(4808)] = 133816, - [SMALL_STATE(4809)] = 133832, - [SMALL_STATE(4810)] = 133846, - [SMALL_STATE(4811)] = 133862, - [SMALL_STATE(4812)] = 133874, - [SMALL_STATE(4813)] = 133890, - [SMALL_STATE(4814)] = 133902, - [SMALL_STATE(4815)] = 133916, - [SMALL_STATE(4816)] = 133930, - [SMALL_STATE(4817)] = 133944, - [SMALL_STATE(4818)] = 133956, - [SMALL_STATE(4819)] = 133972, - [SMALL_STATE(4820)] = 133984, - [SMALL_STATE(4821)] = 134000, - [SMALL_STATE(4822)] = 134012, - [SMALL_STATE(4823)] = 134024, - [SMALL_STATE(4824)] = 134036, - [SMALL_STATE(4825)] = 134048, - [SMALL_STATE(4826)] = 134060, - [SMALL_STATE(4827)] = 134076, - [SMALL_STATE(4828)] = 134092, - [SMALL_STATE(4829)] = 134104, - [SMALL_STATE(4830)] = 134118, - [SMALL_STATE(4831)] = 134132, - [SMALL_STATE(4832)] = 134146, - [SMALL_STATE(4833)] = 134160, - [SMALL_STATE(4834)] = 134174, - [SMALL_STATE(4835)] = 134190, - [SMALL_STATE(4836)] = 134202, - [SMALL_STATE(4837)] = 134218, - [SMALL_STATE(4838)] = 134230, - [SMALL_STATE(4839)] = 134246, - [SMALL_STATE(4840)] = 134262, - [SMALL_STATE(4841)] = 134278, - [SMALL_STATE(4842)] = 134294, - [SMALL_STATE(4843)] = 134310, - [SMALL_STATE(4844)] = 134324, - [SMALL_STATE(4845)] = 134340, - [SMALL_STATE(4846)] = 134354, - [SMALL_STATE(4847)] = 134366, - [SMALL_STATE(4848)] = 134378, - [SMALL_STATE(4849)] = 134390, - [SMALL_STATE(4850)] = 134406, - [SMALL_STATE(4851)] = 134418, - [SMALL_STATE(4852)] = 134430, - [SMALL_STATE(4853)] = 134446, - [SMALL_STATE(4854)] = 134462, - [SMALL_STATE(4855)] = 134476, - [SMALL_STATE(4856)] = 134488, - [SMALL_STATE(4857)] = 134504, - [SMALL_STATE(4858)] = 134516, - [SMALL_STATE(4859)] = 134532, - [SMALL_STATE(4860)] = 134548, - [SMALL_STATE(4861)] = 134560, - [SMALL_STATE(4862)] = 134574, - [SMALL_STATE(4863)] = 134590, - [SMALL_STATE(4864)] = 134602, - [SMALL_STATE(4865)] = 134618, - [SMALL_STATE(4866)] = 134634, - [SMALL_STATE(4867)] = 134650, - [SMALL_STATE(4868)] = 134666, - [SMALL_STATE(4869)] = 134682, - [SMALL_STATE(4870)] = 134698, - [SMALL_STATE(4871)] = 134714, - [SMALL_STATE(4872)] = 134730, - [SMALL_STATE(4873)] = 134746, - [SMALL_STATE(4874)] = 134762, - [SMALL_STATE(4875)] = 134774, - [SMALL_STATE(4876)] = 134788, - [SMALL_STATE(4877)] = 134800, - [SMALL_STATE(4878)] = 134812, - [SMALL_STATE(4879)] = 134828, - [SMALL_STATE(4880)] = 134844, - [SMALL_STATE(4881)] = 134860, - [SMALL_STATE(4882)] = 134872, - [SMALL_STATE(4883)] = 134884, - [SMALL_STATE(4884)] = 134896, - [SMALL_STATE(4885)] = 134908, - [SMALL_STATE(4886)] = 134924, - [SMALL_STATE(4887)] = 134936, - [SMALL_STATE(4888)] = 134948, - [SMALL_STATE(4889)] = 134964, - [SMALL_STATE(4890)] = 134980, - [SMALL_STATE(4891)] = 134992, - [SMALL_STATE(4892)] = 135004, - [SMALL_STATE(4893)] = 135020, - [SMALL_STATE(4894)] = 135032, - [SMALL_STATE(4895)] = 135048, - [SMALL_STATE(4896)] = 135060, - [SMALL_STATE(4897)] = 135072, - [SMALL_STATE(4898)] = 135088, - [SMALL_STATE(4899)] = 135102, - [SMALL_STATE(4900)] = 135114, - [SMALL_STATE(4901)] = 135130, - [SMALL_STATE(4902)] = 135146, - [SMALL_STATE(4903)] = 135158, - [SMALL_STATE(4904)] = 135170, - [SMALL_STATE(4905)] = 135182, - [SMALL_STATE(4906)] = 135198, - [SMALL_STATE(4907)] = 135210, - [SMALL_STATE(4908)] = 135222, - [SMALL_STATE(4909)] = 135236, - [SMALL_STATE(4910)] = 135248, - [SMALL_STATE(4911)] = 135260, - [SMALL_STATE(4912)] = 135276, - [SMALL_STATE(4913)] = 135288, - [SMALL_STATE(4914)] = 135304, - [SMALL_STATE(4915)] = 135316, - [SMALL_STATE(4916)] = 135332, - [SMALL_STATE(4917)] = 135348, - [SMALL_STATE(4918)] = 135364, - [SMALL_STATE(4919)] = 135378, - [SMALL_STATE(4920)] = 135394, - [SMALL_STATE(4921)] = 135406, - [SMALL_STATE(4922)] = 135420, - [SMALL_STATE(4923)] = 135434, - [SMALL_STATE(4924)] = 135448, - [SMALL_STATE(4925)] = 135464, - [SMALL_STATE(4926)] = 135480, - [SMALL_STATE(4927)] = 135494, - [SMALL_STATE(4928)] = 135508, - [SMALL_STATE(4929)] = 135520, - [SMALL_STATE(4930)] = 135536, - [SMALL_STATE(4931)] = 135552, - [SMALL_STATE(4932)] = 135564, - [SMALL_STATE(4933)] = 135577, - [SMALL_STATE(4934)] = 135590, - [SMALL_STATE(4935)] = 135603, - [SMALL_STATE(4936)] = 135616, - [SMALL_STATE(4937)] = 135629, - [SMALL_STATE(4938)] = 135642, - [SMALL_STATE(4939)] = 135655, - [SMALL_STATE(4940)] = 135668, - [SMALL_STATE(4941)] = 135681, - [SMALL_STATE(4942)] = 135692, - [SMALL_STATE(4943)] = 135705, - [SMALL_STATE(4944)] = 135718, - [SMALL_STATE(4945)] = 135731, - [SMALL_STATE(4946)] = 135744, - [SMALL_STATE(4947)] = 135757, - [SMALL_STATE(4948)] = 135770, - [SMALL_STATE(4949)] = 135783, - [SMALL_STATE(4950)] = 135796, - [SMALL_STATE(4951)] = 135809, - [SMALL_STATE(4952)] = 135822, - [SMALL_STATE(4953)] = 135835, - [SMALL_STATE(4954)] = 135848, - [SMALL_STATE(4955)] = 135861, - [SMALL_STATE(4956)] = 135874, - [SMALL_STATE(4957)] = 135887, - [SMALL_STATE(4958)] = 135900, - [SMALL_STATE(4959)] = 135913, - [SMALL_STATE(4960)] = 135926, - [SMALL_STATE(4961)] = 135939, - [SMALL_STATE(4962)] = 135952, - [SMALL_STATE(4963)] = 135965, - [SMALL_STATE(4964)] = 135978, - [SMALL_STATE(4965)] = 135991, - [SMALL_STATE(4966)] = 136004, - [SMALL_STATE(4967)] = 136017, - [SMALL_STATE(4968)] = 136028, - [SMALL_STATE(4969)] = 136041, - [SMALL_STATE(4970)] = 136054, - [SMALL_STATE(4971)] = 136067, - [SMALL_STATE(4972)] = 136080, - [SMALL_STATE(4973)] = 136093, - [SMALL_STATE(4974)] = 136106, - [SMALL_STATE(4975)] = 136119, - [SMALL_STATE(4976)] = 136132, - [SMALL_STATE(4977)] = 136145, - [SMALL_STATE(4978)] = 136158, - [SMALL_STATE(4979)] = 136169, - [SMALL_STATE(4980)] = 136182, - [SMALL_STATE(4981)] = 136195, - [SMALL_STATE(4982)] = 136208, - [SMALL_STATE(4983)] = 136221, - [SMALL_STATE(4984)] = 136234, - [SMALL_STATE(4985)] = 136247, - [SMALL_STATE(4986)] = 136260, - [SMALL_STATE(4987)] = 136273, - [SMALL_STATE(4988)] = 136286, - [SMALL_STATE(4989)] = 136299, - [SMALL_STATE(4990)] = 136312, - [SMALL_STATE(4991)] = 136325, - [SMALL_STATE(4992)] = 136338, - [SMALL_STATE(4993)] = 136351, - [SMALL_STATE(4994)] = 136364, - [SMALL_STATE(4995)] = 136377, - [SMALL_STATE(4996)] = 136390, - [SMALL_STATE(4997)] = 136403, - [SMALL_STATE(4998)] = 136416, - [SMALL_STATE(4999)] = 136429, - [SMALL_STATE(5000)] = 136440, - [SMALL_STATE(5001)] = 136453, - [SMALL_STATE(5002)] = 136466, - [SMALL_STATE(5003)] = 136479, - [SMALL_STATE(5004)] = 136490, - [SMALL_STATE(5005)] = 136503, - [SMALL_STATE(5006)] = 136516, - [SMALL_STATE(5007)] = 136527, - [SMALL_STATE(5008)] = 136540, - [SMALL_STATE(5009)] = 136553, - [SMALL_STATE(5010)] = 136566, - [SMALL_STATE(5011)] = 136579, - [SMALL_STATE(5012)] = 136592, - [SMALL_STATE(5013)] = 136605, - [SMALL_STATE(5014)] = 136618, - [SMALL_STATE(5015)] = 136631, - [SMALL_STATE(5016)] = 136644, - [SMALL_STATE(5017)] = 136657, - [SMALL_STATE(5018)] = 136670, - [SMALL_STATE(5019)] = 136683, - [SMALL_STATE(5020)] = 136696, - [SMALL_STATE(5021)] = 136709, - [SMALL_STATE(5022)] = 136722, - [SMALL_STATE(5023)] = 136735, - [SMALL_STATE(5024)] = 136748, - [SMALL_STATE(5025)] = 136761, - [SMALL_STATE(5026)] = 136774, - [SMALL_STATE(5027)] = 136787, - [SMALL_STATE(5028)] = 136800, - [SMALL_STATE(5029)] = 136813, - [SMALL_STATE(5030)] = 136824, - [SMALL_STATE(5031)] = 136837, - [SMALL_STATE(5032)] = 136850, - [SMALL_STATE(5033)] = 136863, - [SMALL_STATE(5034)] = 136876, - [SMALL_STATE(5035)] = 136889, - [SMALL_STATE(5036)] = 136902, - [SMALL_STATE(5037)] = 136915, - [SMALL_STATE(5038)] = 136928, - [SMALL_STATE(5039)] = 136941, - [SMALL_STATE(5040)] = 136954, - [SMALL_STATE(5041)] = 136965, - [SMALL_STATE(5042)] = 136978, - [SMALL_STATE(5043)] = 136991, - [SMALL_STATE(5044)] = 137004, - [SMALL_STATE(5045)] = 137017, - [SMALL_STATE(5046)] = 137030, - [SMALL_STATE(5047)] = 137043, - [SMALL_STATE(5048)] = 137056, - [SMALL_STATE(5049)] = 137069, - [SMALL_STATE(5050)] = 137082, - [SMALL_STATE(5051)] = 137095, - [SMALL_STATE(5052)] = 137108, - [SMALL_STATE(5053)] = 137121, - [SMALL_STATE(5054)] = 137134, - [SMALL_STATE(5055)] = 137147, - [SMALL_STATE(5056)] = 137160, - [SMALL_STATE(5057)] = 137173, - [SMALL_STATE(5058)] = 137186, - [SMALL_STATE(5059)] = 137199, - [SMALL_STATE(5060)] = 137212, - [SMALL_STATE(5061)] = 137225, - [SMALL_STATE(5062)] = 137238, - [SMALL_STATE(5063)] = 137251, - [SMALL_STATE(5064)] = 137264, - [SMALL_STATE(5065)] = 137277, - [SMALL_STATE(5066)] = 137290, - [SMALL_STATE(5067)] = 137303, - [SMALL_STATE(5068)] = 137316, - [SMALL_STATE(5069)] = 137329, - [SMALL_STATE(5070)] = 137342, - [SMALL_STATE(5071)] = 137353, - [SMALL_STATE(5072)] = 137366, - [SMALL_STATE(5073)] = 137379, - [SMALL_STATE(5074)] = 137390, - [SMALL_STATE(5075)] = 137403, - [SMALL_STATE(5076)] = 137416, - [SMALL_STATE(5077)] = 137429, - [SMALL_STATE(5078)] = 137442, - [SMALL_STATE(5079)] = 137455, - [SMALL_STATE(5080)] = 137468, - [SMALL_STATE(5081)] = 137481, - [SMALL_STATE(5082)] = 137494, - [SMALL_STATE(5083)] = 137507, - [SMALL_STATE(5084)] = 137520, - [SMALL_STATE(5085)] = 137533, - [SMALL_STATE(5086)] = 137546, - [SMALL_STATE(5087)] = 137559, - [SMALL_STATE(5088)] = 137572, - [SMALL_STATE(5089)] = 137585, - [SMALL_STATE(5090)] = 137598, - [SMALL_STATE(5091)] = 137611, - [SMALL_STATE(5092)] = 137624, - [SMALL_STATE(5093)] = 137637, - [SMALL_STATE(5094)] = 137650, - [SMALL_STATE(5095)] = 137663, - [SMALL_STATE(5096)] = 137676, - [SMALL_STATE(5097)] = 137689, - [SMALL_STATE(5098)] = 137702, - [SMALL_STATE(5099)] = 137715, - [SMALL_STATE(5100)] = 137728, - [SMALL_STATE(5101)] = 137741, - [SMALL_STATE(5102)] = 137751, - [SMALL_STATE(5103)] = 137761, - [SMALL_STATE(5104)] = 137771, - [SMALL_STATE(5105)] = 137781, - [SMALL_STATE(5106)] = 137791, - [SMALL_STATE(5107)] = 137801, - [SMALL_STATE(5108)] = 137811, - [SMALL_STATE(5109)] = 137821, - [SMALL_STATE(5110)] = 137831, - [SMALL_STATE(5111)] = 137841, - [SMALL_STATE(5112)] = 137851, - [SMALL_STATE(5113)] = 137861, - [SMALL_STATE(5114)] = 137871, - [SMALL_STATE(5115)] = 137881, - [SMALL_STATE(5116)] = 137891, - [SMALL_STATE(5117)] = 137901, - [SMALL_STATE(5118)] = 137911, - [SMALL_STATE(5119)] = 137921, - [SMALL_STATE(5120)] = 137931, - [SMALL_STATE(5121)] = 137941, - [SMALL_STATE(5122)] = 137951, - [SMALL_STATE(5123)] = 137961, - [SMALL_STATE(5124)] = 137971, - [SMALL_STATE(5125)] = 137981, - [SMALL_STATE(5126)] = 137991, - [SMALL_STATE(5127)] = 138001, - [SMALL_STATE(5128)] = 138011, - [SMALL_STATE(5129)] = 138021, - [SMALL_STATE(5130)] = 138031, - [SMALL_STATE(5131)] = 138041, - [SMALL_STATE(5132)] = 138051, - [SMALL_STATE(5133)] = 138061, - [SMALL_STATE(5134)] = 138071, - [SMALL_STATE(5135)] = 138081, - [SMALL_STATE(5136)] = 138091, - [SMALL_STATE(5137)] = 138101, - [SMALL_STATE(5138)] = 138111, - [SMALL_STATE(5139)] = 138121, - [SMALL_STATE(5140)] = 138131, - [SMALL_STATE(5141)] = 138141, - [SMALL_STATE(5142)] = 138151, - [SMALL_STATE(5143)] = 138161, - [SMALL_STATE(5144)] = 138171, - [SMALL_STATE(5145)] = 138181, - [SMALL_STATE(5146)] = 138191, - [SMALL_STATE(5147)] = 138201, - [SMALL_STATE(5148)] = 138211, - [SMALL_STATE(5149)] = 138221, - [SMALL_STATE(5150)] = 138231, - [SMALL_STATE(5151)] = 138241, - [SMALL_STATE(5152)] = 138251, - [SMALL_STATE(5153)] = 138261, - [SMALL_STATE(5154)] = 138271, - [SMALL_STATE(5155)] = 138281, - [SMALL_STATE(5156)] = 138291, - [SMALL_STATE(5157)] = 138301, - [SMALL_STATE(5158)] = 138311, - [SMALL_STATE(5159)] = 138321, - [SMALL_STATE(5160)] = 138331, - [SMALL_STATE(5161)] = 138341, - [SMALL_STATE(5162)] = 138351, - [SMALL_STATE(5163)] = 138361, - [SMALL_STATE(5164)] = 138371, - [SMALL_STATE(5165)] = 138381, - [SMALL_STATE(5166)] = 138391, - [SMALL_STATE(5167)] = 138401, - [SMALL_STATE(5168)] = 138411, - [SMALL_STATE(5169)] = 138421, - [SMALL_STATE(5170)] = 138431, - [SMALL_STATE(5171)] = 138441, - [SMALL_STATE(5172)] = 138451, - [SMALL_STATE(5173)] = 138461, - [SMALL_STATE(5174)] = 138471, - [SMALL_STATE(5175)] = 138481, - [SMALL_STATE(5176)] = 138491, - [SMALL_STATE(5177)] = 138501, - [SMALL_STATE(5178)] = 138511, - [SMALL_STATE(5179)] = 138521, - [SMALL_STATE(5180)] = 138531, - [SMALL_STATE(5181)] = 138541, - [SMALL_STATE(5182)] = 138551, - [SMALL_STATE(5183)] = 138561, - [SMALL_STATE(5184)] = 138571, - [SMALL_STATE(5185)] = 138581, - [SMALL_STATE(5186)] = 138591, - [SMALL_STATE(5187)] = 138601, - [SMALL_STATE(5188)] = 138611, - [SMALL_STATE(5189)] = 138621, - [SMALL_STATE(5190)] = 138631, - [SMALL_STATE(5191)] = 138641, - [SMALL_STATE(5192)] = 138651, - [SMALL_STATE(5193)] = 138661, - [SMALL_STATE(5194)] = 138671, - [SMALL_STATE(5195)] = 138681, - [SMALL_STATE(5196)] = 138691, - [SMALL_STATE(5197)] = 138701, - [SMALL_STATE(5198)] = 138711, - [SMALL_STATE(5199)] = 138721, - [SMALL_STATE(5200)] = 138731, - [SMALL_STATE(5201)] = 138741, - [SMALL_STATE(5202)] = 138751, - [SMALL_STATE(5203)] = 138761, - [SMALL_STATE(5204)] = 138771, - [SMALL_STATE(5205)] = 138781, - [SMALL_STATE(5206)] = 138791, - [SMALL_STATE(5207)] = 138801, - [SMALL_STATE(5208)] = 138811, - [SMALL_STATE(5209)] = 138821, - [SMALL_STATE(5210)] = 138831, - [SMALL_STATE(5211)] = 138841, - [SMALL_STATE(5212)] = 138851, - [SMALL_STATE(5213)] = 138861, - [SMALL_STATE(5214)] = 138871, - [SMALL_STATE(5215)] = 138881, - [SMALL_STATE(5216)] = 138891, - [SMALL_STATE(5217)] = 138901, - [SMALL_STATE(5218)] = 138911, - [SMALL_STATE(5219)] = 138921, - [SMALL_STATE(5220)] = 138931, - [SMALL_STATE(5221)] = 138941, - [SMALL_STATE(5222)] = 138951, - [SMALL_STATE(5223)] = 138961, - [SMALL_STATE(5224)] = 138971, - [SMALL_STATE(5225)] = 138981, - [SMALL_STATE(5226)] = 138991, - [SMALL_STATE(5227)] = 139001, - [SMALL_STATE(5228)] = 139011, - [SMALL_STATE(5229)] = 139021, - [SMALL_STATE(5230)] = 139031, - [SMALL_STATE(5231)] = 139041, - [SMALL_STATE(5232)] = 139051, - [SMALL_STATE(5233)] = 139061, - [SMALL_STATE(5234)] = 139071, - [SMALL_STATE(5235)] = 139081, - [SMALL_STATE(5236)] = 139091, - [SMALL_STATE(5237)] = 139101, - [SMALL_STATE(5238)] = 139111, - [SMALL_STATE(5239)] = 139121, - [SMALL_STATE(5240)] = 139131, - [SMALL_STATE(5241)] = 139141, - [SMALL_STATE(5242)] = 139151, - [SMALL_STATE(5243)] = 139161, - [SMALL_STATE(5244)] = 139171, - [SMALL_STATE(5245)] = 139181, - [SMALL_STATE(5246)] = 139191, - [SMALL_STATE(5247)] = 139201, - [SMALL_STATE(5248)] = 139211, - [SMALL_STATE(5249)] = 139221, - [SMALL_STATE(5250)] = 139231, - [SMALL_STATE(5251)] = 139241, - [SMALL_STATE(5252)] = 139251, - [SMALL_STATE(5253)] = 139261, - [SMALL_STATE(5254)] = 139271, - [SMALL_STATE(5255)] = 139281, - [SMALL_STATE(5256)] = 139291, - [SMALL_STATE(5257)] = 139301, - [SMALL_STATE(5258)] = 139311, - [SMALL_STATE(5259)] = 139321, - [SMALL_STATE(5260)] = 139331, - [SMALL_STATE(5261)] = 139341, - [SMALL_STATE(5262)] = 139351, - [SMALL_STATE(5263)] = 139361, - [SMALL_STATE(5264)] = 139371, - [SMALL_STATE(5265)] = 139381, - [SMALL_STATE(5266)] = 139391, - [SMALL_STATE(5267)] = 139401, - [SMALL_STATE(5268)] = 139411, - [SMALL_STATE(5269)] = 139421, - [SMALL_STATE(5270)] = 139431, - [SMALL_STATE(5271)] = 139441, - [SMALL_STATE(5272)] = 139451, - [SMALL_STATE(5273)] = 139461, - [SMALL_STATE(5274)] = 139471, - [SMALL_STATE(5275)] = 139481, - [SMALL_STATE(5276)] = 139491, - [SMALL_STATE(5277)] = 139501, - [SMALL_STATE(5278)] = 139511, - [SMALL_STATE(5279)] = 139521, - [SMALL_STATE(5280)] = 139531, - [SMALL_STATE(5281)] = 139541, - [SMALL_STATE(5282)] = 139551, - [SMALL_STATE(5283)] = 139561, - [SMALL_STATE(5284)] = 139571, - [SMALL_STATE(5285)] = 139581, - [SMALL_STATE(5286)] = 139591, - [SMALL_STATE(5287)] = 139601, - [SMALL_STATE(5288)] = 139611, - [SMALL_STATE(5289)] = 139621, - [SMALL_STATE(5290)] = 139631, - [SMALL_STATE(5291)] = 139641, - [SMALL_STATE(5292)] = 139651, - [SMALL_STATE(5293)] = 139661, - [SMALL_STATE(5294)] = 139671, - [SMALL_STATE(5295)] = 139681, - [SMALL_STATE(5296)] = 139691, - [SMALL_STATE(5297)] = 139701, - [SMALL_STATE(5298)] = 139711, - [SMALL_STATE(5299)] = 139721, - [SMALL_STATE(5300)] = 139731, - [SMALL_STATE(5301)] = 139741, - [SMALL_STATE(5302)] = 139751, - [SMALL_STATE(5303)] = 139761, - [SMALL_STATE(5304)] = 139771, - [SMALL_STATE(5305)] = 139781, - [SMALL_STATE(5306)] = 139791, - [SMALL_STATE(5307)] = 139801, - [SMALL_STATE(5308)] = 139811, - [SMALL_STATE(5309)] = 139821, - [SMALL_STATE(5310)] = 139831, - [SMALL_STATE(5311)] = 139841, - [SMALL_STATE(5312)] = 139851, - [SMALL_STATE(5313)] = 139861, - [SMALL_STATE(5314)] = 139871, - [SMALL_STATE(5315)] = 139881, - [SMALL_STATE(5316)] = 139891, - [SMALL_STATE(5317)] = 139901, - [SMALL_STATE(5318)] = 139911, - [SMALL_STATE(5319)] = 139921, - [SMALL_STATE(5320)] = 139931, - [SMALL_STATE(5321)] = 139941, - [SMALL_STATE(5322)] = 139951, - [SMALL_STATE(5323)] = 139961, - [SMALL_STATE(5324)] = 139971, - [SMALL_STATE(5325)] = 139981, - [SMALL_STATE(5326)] = 139991, - [SMALL_STATE(5327)] = 140001, - [SMALL_STATE(5328)] = 140011, - [SMALL_STATE(5329)] = 140021, - [SMALL_STATE(5330)] = 140031, - [SMALL_STATE(5331)] = 140041, - [SMALL_STATE(5332)] = 140051, - [SMALL_STATE(5333)] = 140061, - [SMALL_STATE(5334)] = 140071, - [SMALL_STATE(5335)] = 140081, - [SMALL_STATE(5336)] = 140091, - [SMALL_STATE(5337)] = 140101, - [SMALL_STATE(5338)] = 140111, - [SMALL_STATE(5339)] = 140121, - [SMALL_STATE(5340)] = 140131, - [SMALL_STATE(5341)] = 140141, - [SMALL_STATE(5342)] = 140151, - [SMALL_STATE(5343)] = 140161, - [SMALL_STATE(5344)] = 140171, - [SMALL_STATE(5345)] = 140181, - [SMALL_STATE(5346)] = 140191, - [SMALL_STATE(5347)] = 140201, - [SMALL_STATE(5348)] = 140211, - [SMALL_STATE(5349)] = 140221, - [SMALL_STATE(5350)] = 140231, - [SMALL_STATE(5351)] = 140241, - [SMALL_STATE(5352)] = 140251, - [SMALL_STATE(5353)] = 140261, - [SMALL_STATE(5354)] = 140271, - [SMALL_STATE(5355)] = 140281, - [SMALL_STATE(5356)] = 140291, - [SMALL_STATE(5357)] = 140301, - [SMALL_STATE(5358)] = 140311, - [SMALL_STATE(5359)] = 140321, - [SMALL_STATE(5360)] = 140331, - [SMALL_STATE(5361)] = 140341, - [SMALL_STATE(5362)] = 140351, - [SMALL_STATE(5363)] = 140361, - [SMALL_STATE(5364)] = 140371, - [SMALL_STATE(5365)] = 140381, - [SMALL_STATE(5366)] = 140391, - [SMALL_STATE(5367)] = 140401, - [SMALL_STATE(5368)] = 140411, - [SMALL_STATE(5369)] = 140421, - [SMALL_STATE(5370)] = 140431, - [SMALL_STATE(5371)] = 140441, - [SMALL_STATE(5372)] = 140451, - [SMALL_STATE(5373)] = 140461, - [SMALL_STATE(5374)] = 140471, - [SMALL_STATE(5375)] = 140481, - [SMALL_STATE(5376)] = 140491, - [SMALL_STATE(5377)] = 140501, - [SMALL_STATE(5378)] = 140511, - [SMALL_STATE(5379)] = 140521, - [SMALL_STATE(5380)] = 140531, - [SMALL_STATE(5381)] = 140541, - [SMALL_STATE(5382)] = 140551, - [SMALL_STATE(5383)] = 140561, - [SMALL_STATE(5384)] = 140571, - [SMALL_STATE(5385)] = 140581, - [SMALL_STATE(5386)] = 140591, - [SMALL_STATE(5387)] = 140601, - [SMALL_STATE(5388)] = 140611, - [SMALL_STATE(5389)] = 140621, - [SMALL_STATE(5390)] = 140631, - [SMALL_STATE(5391)] = 140641, - [SMALL_STATE(5392)] = 140651, - [SMALL_STATE(5393)] = 140661, - [SMALL_STATE(5394)] = 140671, - [SMALL_STATE(5395)] = 140681, - [SMALL_STATE(5396)] = 140691, - [SMALL_STATE(5397)] = 140701, - [SMALL_STATE(5398)] = 140711, - [SMALL_STATE(5399)] = 140721, - [SMALL_STATE(5400)] = 140731, - [SMALL_STATE(5401)] = 140741, - [SMALL_STATE(5402)] = 140751, - [SMALL_STATE(5403)] = 140761, - [SMALL_STATE(5404)] = 140771, - [SMALL_STATE(5405)] = 140781, - [SMALL_STATE(5406)] = 140791, - [SMALL_STATE(5407)] = 140801, - [SMALL_STATE(5408)] = 140811, - [SMALL_STATE(5409)] = 140821, - [SMALL_STATE(5410)] = 140831, - [SMALL_STATE(5411)] = 140841, - [SMALL_STATE(5412)] = 140851, - [SMALL_STATE(5413)] = 140861, - [SMALL_STATE(5414)] = 140871, - [SMALL_STATE(5415)] = 140881, - [SMALL_STATE(5416)] = 140891, - [SMALL_STATE(5417)] = 140901, - [SMALL_STATE(5418)] = 140911, - [SMALL_STATE(5419)] = 140921, - [SMALL_STATE(5420)] = 140931, - [SMALL_STATE(5421)] = 140941, - [SMALL_STATE(5422)] = 140951, - [SMALL_STATE(5423)] = 140961, - [SMALL_STATE(5424)] = 140971, - [SMALL_STATE(5425)] = 140981, - [SMALL_STATE(5426)] = 140991, - [SMALL_STATE(5427)] = 141001, - [SMALL_STATE(5428)] = 141011, - [SMALL_STATE(5429)] = 141021, - [SMALL_STATE(5430)] = 141031, - [SMALL_STATE(5431)] = 141041, - [SMALL_STATE(5432)] = 141051, - [SMALL_STATE(5433)] = 141061, - [SMALL_STATE(5434)] = 141071, - [SMALL_STATE(5435)] = 141081, - [SMALL_STATE(5436)] = 141091, - [SMALL_STATE(5437)] = 141101, - [SMALL_STATE(5438)] = 141111, - [SMALL_STATE(5439)] = 141121, - [SMALL_STATE(5440)] = 141131, - [SMALL_STATE(5441)] = 141141, - [SMALL_STATE(5442)] = 141151, - [SMALL_STATE(5443)] = 141161, - [SMALL_STATE(5444)] = 141171, - [SMALL_STATE(5445)] = 141181, - [SMALL_STATE(5446)] = 141191, - [SMALL_STATE(5447)] = 141201, - [SMALL_STATE(5448)] = 141211, - [SMALL_STATE(5449)] = 141221, - [SMALL_STATE(5450)] = 141231, - [SMALL_STATE(5451)] = 141241, - [SMALL_STATE(5452)] = 141251, - [SMALL_STATE(5453)] = 141261, - [SMALL_STATE(5454)] = 141271, - [SMALL_STATE(5455)] = 141281, - [SMALL_STATE(5456)] = 141291, - [SMALL_STATE(5457)] = 141301, - [SMALL_STATE(5458)] = 141311, - [SMALL_STATE(5459)] = 141321, - [SMALL_STATE(5460)] = 141331, - [SMALL_STATE(5461)] = 141341, - [SMALL_STATE(5462)] = 141351, - [SMALL_STATE(5463)] = 141361, - [SMALL_STATE(5464)] = 141371, - [SMALL_STATE(5465)] = 141381, - [SMALL_STATE(5466)] = 141391, - [SMALL_STATE(5467)] = 141401, - [SMALL_STATE(5468)] = 141411, - [SMALL_STATE(5469)] = 141421, - [SMALL_STATE(5470)] = 141431, - [SMALL_STATE(5471)] = 141441, - [SMALL_STATE(5472)] = 141451, - [SMALL_STATE(5473)] = 141461, - [SMALL_STATE(5474)] = 141471, - [SMALL_STATE(5475)] = 141481, - [SMALL_STATE(5476)] = 141491, - [SMALL_STATE(5477)] = 141501, - [SMALL_STATE(5478)] = 141511, - [SMALL_STATE(5479)] = 141521, - [SMALL_STATE(5480)] = 141531, - [SMALL_STATE(5481)] = 141541, - [SMALL_STATE(5482)] = 141551, - [SMALL_STATE(5483)] = 141561, - [SMALL_STATE(5484)] = 141571, - [SMALL_STATE(5485)] = 141581, - [SMALL_STATE(5486)] = 141591, - [SMALL_STATE(5487)] = 141601, - [SMALL_STATE(5488)] = 141611, - [SMALL_STATE(5489)] = 141621, - [SMALL_STATE(5490)] = 141631, - [SMALL_STATE(5491)] = 141641, - [SMALL_STATE(5492)] = 141651, - [SMALL_STATE(5493)] = 141661, - [SMALL_STATE(5494)] = 141671, - [SMALL_STATE(5495)] = 141681, - [SMALL_STATE(5496)] = 141691, - [SMALL_STATE(5497)] = 141701, - [SMALL_STATE(5498)] = 141711, - [SMALL_STATE(5499)] = 141721, - [SMALL_STATE(5500)] = 141731, - [SMALL_STATE(5501)] = 141741, - [SMALL_STATE(5502)] = 141751, - [SMALL_STATE(5503)] = 141761, - [SMALL_STATE(5504)] = 141771, - [SMALL_STATE(5505)] = 141781, - [SMALL_STATE(5506)] = 141791, - [SMALL_STATE(5507)] = 141801, - [SMALL_STATE(5508)] = 141811, - [SMALL_STATE(5509)] = 141821, - [SMALL_STATE(5510)] = 141831, - [SMALL_STATE(5511)] = 141841, - [SMALL_STATE(5512)] = 141851, - [SMALL_STATE(5513)] = 141861, - [SMALL_STATE(5514)] = 141871, - [SMALL_STATE(5515)] = 141881, - [SMALL_STATE(5516)] = 141891, - [SMALL_STATE(5517)] = 141901, - [SMALL_STATE(5518)] = 141911, - [SMALL_STATE(5519)] = 141921, - [SMALL_STATE(5520)] = 141931, - [SMALL_STATE(5521)] = 141941, - [SMALL_STATE(5522)] = 141951, - [SMALL_STATE(5523)] = 141961, - [SMALL_STATE(5524)] = 141971, - [SMALL_STATE(5525)] = 141981, - [SMALL_STATE(5526)] = 141991, - [SMALL_STATE(5527)] = 142001, - [SMALL_STATE(5528)] = 142011, - [SMALL_STATE(5529)] = 142021, - [SMALL_STATE(5530)] = 142031, - [SMALL_STATE(5531)] = 142041, - [SMALL_STATE(5532)] = 142051, + [SMALL_STATE(4643)] = 131467, + [SMALL_STATE(4644)] = 131480, + [SMALL_STATE(4645)] = 131499, + [SMALL_STATE(4646)] = 131518, + [SMALL_STATE(4647)] = 131531, + [SMALL_STATE(4648)] = 131548, + [SMALL_STATE(4649)] = 131565, + [SMALL_STATE(4650)] = 131582, + [SMALL_STATE(4651)] = 131599, + [SMALL_STATE(4652)] = 131612, + [SMALL_STATE(4653)] = 131625, + [SMALL_STATE(4654)] = 131642, + [SMALL_STATE(4655)] = 131655, + [SMALL_STATE(4656)] = 131674, + [SMALL_STATE(4657)] = 131693, + [SMALL_STATE(4658)] = 131706, + [SMALL_STATE(4659)] = 131725, + [SMALL_STATE(4660)] = 131744, + [SMALL_STATE(4661)] = 131763, + [SMALL_STATE(4662)] = 131776, + [SMALL_STATE(4663)] = 131795, + [SMALL_STATE(4664)] = 131808, + [SMALL_STATE(4665)] = 131821, + [SMALL_STATE(4666)] = 131840, + [SMALL_STATE(4667)] = 131853, + [SMALL_STATE(4668)] = 131872, + [SMALL_STATE(4669)] = 131889, + [SMALL_STATE(4670)] = 131902, + [SMALL_STATE(4671)] = 131921, + [SMALL_STATE(4672)] = 131934, + [SMALL_STATE(4673)] = 131953, + [SMALL_STATE(4674)] = 131966, + [SMALL_STATE(4675)] = 131979, + [SMALL_STATE(4676)] = 131992, + [SMALL_STATE(4677)] = 132005, + [SMALL_STATE(4678)] = 132017, + [SMALL_STATE(4679)] = 132031, + [SMALL_STATE(4680)] = 132047, + [SMALL_STATE(4681)] = 132063, + [SMALL_STATE(4682)] = 132079, + [SMALL_STATE(4683)] = 132095, + [SMALL_STATE(4684)] = 132107, + [SMALL_STATE(4685)] = 132123, + [SMALL_STATE(4686)] = 132139, + [SMALL_STATE(4687)] = 132155, + [SMALL_STATE(4688)] = 132171, + [SMALL_STATE(4689)] = 132187, + [SMALL_STATE(4690)] = 132199, + [SMALL_STATE(4691)] = 132211, + [SMALL_STATE(4692)] = 132223, + [SMALL_STATE(4693)] = 132239, + [SMALL_STATE(4694)] = 132251, + [SMALL_STATE(4695)] = 132263, + [SMALL_STATE(4696)] = 132275, + [SMALL_STATE(4697)] = 132287, + [SMALL_STATE(4698)] = 132303, + [SMALL_STATE(4699)] = 132319, + [SMALL_STATE(4700)] = 132335, + [SMALL_STATE(4701)] = 132351, + [SMALL_STATE(4702)] = 132367, + [SMALL_STATE(4703)] = 132383, + [SMALL_STATE(4704)] = 132395, + [SMALL_STATE(4705)] = 132411, + [SMALL_STATE(4706)] = 132423, + [SMALL_STATE(4707)] = 132439, + [SMALL_STATE(4708)] = 132455, + [SMALL_STATE(4709)] = 132471, + [SMALL_STATE(4710)] = 132483, + [SMALL_STATE(4711)] = 132499, + [SMALL_STATE(4712)] = 132511, + [SMALL_STATE(4713)] = 132527, + [SMALL_STATE(4714)] = 132539, + [SMALL_STATE(4715)] = 132555, + [SMALL_STATE(4716)] = 132567, + [SMALL_STATE(4717)] = 132583, + [SMALL_STATE(4718)] = 132595, + [SMALL_STATE(4719)] = 132607, + [SMALL_STATE(4720)] = 132621, + [SMALL_STATE(4721)] = 132633, + [SMALL_STATE(4722)] = 132647, + [SMALL_STATE(4723)] = 132663, + [SMALL_STATE(4724)] = 132675, + [SMALL_STATE(4725)] = 132691, + [SMALL_STATE(4726)] = 132705, + [SMALL_STATE(4727)] = 132719, + [SMALL_STATE(4728)] = 132731, + [SMALL_STATE(4729)] = 132743, + [SMALL_STATE(4730)] = 132755, + [SMALL_STATE(4731)] = 132771, + [SMALL_STATE(4732)] = 132783, + [SMALL_STATE(4733)] = 132799, + [SMALL_STATE(4734)] = 132815, + [SMALL_STATE(4735)] = 132827, + [SMALL_STATE(4736)] = 132841, + [SMALL_STATE(4737)] = 132855, + [SMALL_STATE(4738)] = 132869, + [SMALL_STATE(4739)] = 132881, + [SMALL_STATE(4740)] = 132893, + [SMALL_STATE(4741)] = 132907, + [SMALL_STATE(4742)] = 132923, + [SMALL_STATE(4743)] = 132937, + [SMALL_STATE(4744)] = 132951, + [SMALL_STATE(4745)] = 132967, + [SMALL_STATE(4746)] = 132981, + [SMALL_STATE(4747)] = 132997, + [SMALL_STATE(4748)] = 133013, + [SMALL_STATE(4749)] = 133029, + [SMALL_STATE(4750)] = 133045, + [SMALL_STATE(4751)] = 133057, + [SMALL_STATE(4752)] = 133069, + [SMALL_STATE(4753)] = 133081, + [SMALL_STATE(4754)] = 133095, + [SMALL_STATE(4755)] = 133111, + [SMALL_STATE(4756)] = 133125, + [SMALL_STATE(4757)] = 133141, + [SMALL_STATE(4758)] = 133157, + [SMALL_STATE(4759)] = 133173, + [SMALL_STATE(4760)] = 133187, + [SMALL_STATE(4761)] = 133203, + [SMALL_STATE(4762)] = 133217, + [SMALL_STATE(4763)] = 133231, + [SMALL_STATE(4764)] = 133243, + [SMALL_STATE(4765)] = 133255, + [SMALL_STATE(4766)] = 133269, + [SMALL_STATE(4767)] = 133285, + [SMALL_STATE(4768)] = 133299, + [SMALL_STATE(4769)] = 133313, + [SMALL_STATE(4770)] = 133325, + [SMALL_STATE(4771)] = 133341, + [SMALL_STATE(4772)] = 133353, + [SMALL_STATE(4773)] = 133369, + [SMALL_STATE(4774)] = 133381, + [SMALL_STATE(4775)] = 133397, + [SMALL_STATE(4776)] = 133409, + [SMALL_STATE(4777)] = 133421, + [SMALL_STATE(4778)] = 133433, + [SMALL_STATE(4779)] = 133445, + [SMALL_STATE(4780)] = 133457, + [SMALL_STATE(4781)] = 133469, + [SMALL_STATE(4782)] = 133481, + [SMALL_STATE(4783)] = 133497, + [SMALL_STATE(4784)] = 133509, + [SMALL_STATE(4785)] = 133521, + [SMALL_STATE(4786)] = 133533, + [SMALL_STATE(4787)] = 133545, + [SMALL_STATE(4788)] = 133557, + [SMALL_STATE(4789)] = 133569, + [SMALL_STATE(4790)] = 133585, + [SMALL_STATE(4791)] = 133597, + [SMALL_STATE(4792)] = 133613, + [SMALL_STATE(4793)] = 133625, + [SMALL_STATE(4794)] = 133641, + [SMALL_STATE(4795)] = 133653, + [SMALL_STATE(4796)] = 133665, + [SMALL_STATE(4797)] = 133679, + [SMALL_STATE(4798)] = 133691, + [SMALL_STATE(4799)] = 133703, + [SMALL_STATE(4800)] = 133717, + [SMALL_STATE(4801)] = 133731, + [SMALL_STATE(4802)] = 133747, + [SMALL_STATE(4803)] = 133763, + [SMALL_STATE(4804)] = 133779, + [SMALL_STATE(4805)] = 133795, + [SMALL_STATE(4806)] = 133807, + [SMALL_STATE(4807)] = 133823, + [SMALL_STATE(4808)] = 133835, + [SMALL_STATE(4809)] = 133847, + [SMALL_STATE(4810)] = 133861, + [SMALL_STATE(4811)] = 133873, + [SMALL_STATE(4812)] = 133889, + [SMALL_STATE(4813)] = 133905, + [SMALL_STATE(4814)] = 133917, + [SMALL_STATE(4815)] = 133933, + [SMALL_STATE(4816)] = 133949, + [SMALL_STATE(4817)] = 133963, + [SMALL_STATE(4818)] = 133975, + [SMALL_STATE(4819)] = 133991, + [SMALL_STATE(4820)] = 134003, + [SMALL_STATE(4821)] = 134019, + [SMALL_STATE(4822)] = 134033, + [SMALL_STATE(4823)] = 134047, + [SMALL_STATE(4824)] = 134059, + [SMALL_STATE(4825)] = 134075, + [SMALL_STATE(4826)] = 134087, + [SMALL_STATE(4827)] = 134099, + [SMALL_STATE(4828)] = 134115, + [SMALL_STATE(4829)] = 134131, + [SMALL_STATE(4830)] = 134143, + [SMALL_STATE(4831)] = 134159, + [SMALL_STATE(4832)] = 134171, + [SMALL_STATE(4833)] = 134187, + [SMALL_STATE(4834)] = 134203, + [SMALL_STATE(4835)] = 134215, + [SMALL_STATE(4836)] = 134229, + [SMALL_STATE(4837)] = 134245, + [SMALL_STATE(4838)] = 134261, + [SMALL_STATE(4839)] = 134277, + [SMALL_STATE(4840)] = 134293, + [SMALL_STATE(4841)] = 134305, + [SMALL_STATE(4842)] = 134319, + [SMALL_STATE(4843)] = 134335, + [SMALL_STATE(4844)] = 134347, + [SMALL_STATE(4845)] = 134359, + [SMALL_STATE(4846)] = 134371, + [SMALL_STATE(4847)] = 134383, + [SMALL_STATE(4848)] = 134399, + [SMALL_STATE(4849)] = 134411, + [SMALL_STATE(4850)] = 134427, + [SMALL_STATE(4851)] = 134441, + [SMALL_STATE(4852)] = 134453, + [SMALL_STATE(4853)] = 134469, + [SMALL_STATE(4854)] = 134485, + [SMALL_STATE(4855)] = 134501, + [SMALL_STATE(4856)] = 134517, + [SMALL_STATE(4857)] = 134533, + [SMALL_STATE(4858)] = 134547, + [SMALL_STATE(4859)] = 134559, + [SMALL_STATE(4860)] = 134573, + [SMALL_STATE(4861)] = 134585, + [SMALL_STATE(4862)] = 134599, + [SMALL_STATE(4863)] = 134613, + [SMALL_STATE(4864)] = 134625, + [SMALL_STATE(4865)] = 134637, + [SMALL_STATE(4866)] = 134649, + [SMALL_STATE(4867)] = 134661, + [SMALL_STATE(4868)] = 134673, + [SMALL_STATE(4869)] = 134687, + [SMALL_STATE(4870)] = 134701, + [SMALL_STATE(4871)] = 134717, + [SMALL_STATE(4872)] = 134733, + [SMALL_STATE(4873)] = 134749, + [SMALL_STATE(4874)] = 134761, + [SMALL_STATE(4875)] = 134775, + [SMALL_STATE(4876)] = 134787, + [SMALL_STATE(4877)] = 134803, + [SMALL_STATE(4878)] = 134815, + [SMALL_STATE(4879)] = 134829, + [SMALL_STATE(4880)] = 134841, + [SMALL_STATE(4881)] = 134853, + [SMALL_STATE(4882)] = 134869, + [SMALL_STATE(4883)] = 134883, + [SMALL_STATE(4884)] = 134895, + [SMALL_STATE(4885)] = 134909, + [SMALL_STATE(4886)] = 134923, + [SMALL_STATE(4887)] = 134937, + [SMALL_STATE(4888)] = 134953, + [SMALL_STATE(4889)] = 134969, + [SMALL_STATE(4890)] = 134985, + [SMALL_STATE(4891)] = 135001, + [SMALL_STATE(4892)] = 135017, + [SMALL_STATE(4893)] = 135033, + [SMALL_STATE(4894)] = 135045, + [SMALL_STATE(4895)] = 135059, + [SMALL_STATE(4896)] = 135075, + [SMALL_STATE(4897)] = 135091, + [SMALL_STATE(4898)] = 135105, + [SMALL_STATE(4899)] = 135119, + [SMALL_STATE(4900)] = 135131, + [SMALL_STATE(4901)] = 135147, + [SMALL_STATE(4902)] = 135163, + [SMALL_STATE(4903)] = 135175, + [SMALL_STATE(4904)] = 135191, + [SMALL_STATE(4905)] = 135207, + [SMALL_STATE(4906)] = 135219, + [SMALL_STATE(4907)] = 135233, + [SMALL_STATE(4908)] = 135249, + [SMALL_STATE(4909)] = 135261, + [SMALL_STATE(4910)] = 135273, + [SMALL_STATE(4911)] = 135287, + [SMALL_STATE(4912)] = 135303, + [SMALL_STATE(4913)] = 135319, + [SMALL_STATE(4914)] = 135331, + [SMALL_STATE(4915)] = 135347, + [SMALL_STATE(4916)] = 135363, + [SMALL_STATE(4917)] = 135375, + [SMALL_STATE(4918)] = 135387, + [SMALL_STATE(4919)] = 135399, + [SMALL_STATE(4920)] = 135411, + [SMALL_STATE(4921)] = 135427, + [SMALL_STATE(4922)] = 135439, + [SMALL_STATE(4923)] = 135453, + [SMALL_STATE(4924)] = 135465, + [SMALL_STATE(4925)] = 135477, + [SMALL_STATE(4926)] = 135491, + [SMALL_STATE(4927)] = 135503, + [SMALL_STATE(4928)] = 135515, + [SMALL_STATE(4929)] = 135527, + [SMALL_STATE(4930)] = 135539, + [SMALL_STATE(4931)] = 135555, + [SMALL_STATE(4932)] = 135567, + [SMALL_STATE(4933)] = 135581, + [SMALL_STATE(4934)] = 135593, + [SMALL_STATE(4935)] = 135606, + [SMALL_STATE(4936)] = 135619, + [SMALL_STATE(4937)] = 135632, + [SMALL_STATE(4938)] = 135645, + [SMALL_STATE(4939)] = 135658, + [SMALL_STATE(4940)] = 135671, + [SMALL_STATE(4941)] = 135684, + [SMALL_STATE(4942)] = 135697, + [SMALL_STATE(4943)] = 135710, + [SMALL_STATE(4944)] = 135723, + [SMALL_STATE(4945)] = 135736, + [SMALL_STATE(4946)] = 135749, + [SMALL_STATE(4947)] = 135762, + [SMALL_STATE(4948)] = 135775, + [SMALL_STATE(4949)] = 135788, + [SMALL_STATE(4950)] = 135801, + [SMALL_STATE(4951)] = 135814, + [SMALL_STATE(4952)] = 135827, + [SMALL_STATE(4953)] = 135840, + [SMALL_STATE(4954)] = 135853, + [SMALL_STATE(4955)] = 135866, + [SMALL_STATE(4956)] = 135879, + [SMALL_STATE(4957)] = 135892, + [SMALL_STATE(4958)] = 135905, + [SMALL_STATE(4959)] = 135918, + [SMALL_STATE(4960)] = 135931, + [SMALL_STATE(4961)] = 135944, + [SMALL_STATE(4962)] = 135957, + [SMALL_STATE(4963)] = 135970, + [SMALL_STATE(4964)] = 135983, + [SMALL_STATE(4965)] = 135996, + [SMALL_STATE(4966)] = 136009, + [SMALL_STATE(4967)] = 136022, + [SMALL_STATE(4968)] = 136035, + [SMALL_STATE(4969)] = 136048, + [SMALL_STATE(4970)] = 136061, + [SMALL_STATE(4971)] = 136074, + [SMALL_STATE(4972)] = 136087, + [SMALL_STATE(4973)] = 136100, + [SMALL_STATE(4974)] = 136113, + [SMALL_STATE(4975)] = 136126, + [SMALL_STATE(4976)] = 136137, + [SMALL_STATE(4977)] = 136150, + [SMALL_STATE(4978)] = 136163, + [SMALL_STATE(4979)] = 136176, + [SMALL_STATE(4980)] = 136189, + [SMALL_STATE(4981)] = 136202, + [SMALL_STATE(4982)] = 136215, + [SMALL_STATE(4983)] = 136228, + [SMALL_STATE(4984)] = 136241, + [SMALL_STATE(4985)] = 136254, + [SMALL_STATE(4986)] = 136267, + [SMALL_STATE(4987)] = 136280, + [SMALL_STATE(4988)] = 136293, + [SMALL_STATE(4989)] = 136306, + [SMALL_STATE(4990)] = 136319, + [SMALL_STATE(4991)] = 136330, + [SMALL_STATE(4992)] = 136343, + [SMALL_STATE(4993)] = 136356, + [SMALL_STATE(4994)] = 136369, + [SMALL_STATE(4995)] = 136382, + [SMALL_STATE(4996)] = 136395, + [SMALL_STATE(4997)] = 136408, + [SMALL_STATE(4998)] = 136421, + [SMALL_STATE(4999)] = 136434, + [SMALL_STATE(5000)] = 136447, + [SMALL_STATE(5001)] = 136460, + [SMALL_STATE(5002)] = 136473, + [SMALL_STATE(5003)] = 136486, + [SMALL_STATE(5004)] = 136499, + [SMALL_STATE(5005)] = 136512, + [SMALL_STATE(5006)] = 136525, + [SMALL_STATE(5007)] = 136538, + [SMALL_STATE(5008)] = 136551, + [SMALL_STATE(5009)] = 136564, + [SMALL_STATE(5010)] = 136577, + [SMALL_STATE(5011)] = 136590, + [SMALL_STATE(5012)] = 136603, + [SMALL_STATE(5013)] = 136616, + [SMALL_STATE(5014)] = 136627, + [SMALL_STATE(5015)] = 136638, + [SMALL_STATE(5016)] = 136651, + [SMALL_STATE(5017)] = 136664, + [SMALL_STATE(5018)] = 136677, + [SMALL_STATE(5019)] = 136690, + [SMALL_STATE(5020)] = 136703, + [SMALL_STATE(5021)] = 136716, + [SMALL_STATE(5022)] = 136729, + [SMALL_STATE(5023)] = 136742, + [SMALL_STATE(5024)] = 136755, + [SMALL_STATE(5025)] = 136766, + [SMALL_STATE(5026)] = 136779, + [SMALL_STATE(5027)] = 136792, + [SMALL_STATE(5028)] = 136805, + [SMALL_STATE(5029)] = 136818, + [SMALL_STATE(5030)] = 136831, + [SMALL_STATE(5031)] = 136844, + [SMALL_STATE(5032)] = 136857, + [SMALL_STATE(5033)] = 136870, + [SMALL_STATE(5034)] = 136883, + [SMALL_STATE(5035)] = 136894, + [SMALL_STATE(5036)] = 136907, + [SMALL_STATE(5037)] = 136920, + [SMALL_STATE(5038)] = 136931, + [SMALL_STATE(5039)] = 136944, + [SMALL_STATE(5040)] = 136955, + [SMALL_STATE(5041)] = 136968, + [SMALL_STATE(5042)] = 136981, + [SMALL_STATE(5043)] = 136994, + [SMALL_STATE(5044)] = 137007, + [SMALL_STATE(5045)] = 137018, + [SMALL_STATE(5046)] = 137031, + [SMALL_STATE(5047)] = 137044, + [SMALL_STATE(5048)] = 137057, + [SMALL_STATE(5049)] = 137070, + [SMALL_STATE(5050)] = 137083, + [SMALL_STATE(5051)] = 137096, + [SMALL_STATE(5052)] = 137109, + [SMALL_STATE(5053)] = 137120, + [SMALL_STATE(5054)] = 137133, + [SMALL_STATE(5055)] = 137146, + [SMALL_STATE(5056)] = 137159, + [SMALL_STATE(5057)] = 137172, + [SMALL_STATE(5058)] = 137185, + [SMALL_STATE(5059)] = 137198, + [SMALL_STATE(5060)] = 137211, + [SMALL_STATE(5061)] = 137224, + [SMALL_STATE(5062)] = 137237, + [SMALL_STATE(5063)] = 137250, + [SMALL_STATE(5064)] = 137263, + [SMALL_STATE(5065)] = 137276, + [SMALL_STATE(5066)] = 137289, + [SMALL_STATE(5067)] = 137302, + [SMALL_STATE(5068)] = 137315, + [SMALL_STATE(5069)] = 137328, + [SMALL_STATE(5070)] = 137341, + [SMALL_STATE(5071)] = 137354, + [SMALL_STATE(5072)] = 137367, + [SMALL_STATE(5073)] = 137380, + [SMALL_STATE(5074)] = 137393, + [SMALL_STATE(5075)] = 137406, + [SMALL_STATE(5076)] = 137419, + [SMALL_STATE(5077)] = 137432, + [SMALL_STATE(5078)] = 137445, + [SMALL_STATE(5079)] = 137458, + [SMALL_STATE(5080)] = 137471, + [SMALL_STATE(5081)] = 137484, + [SMALL_STATE(5082)] = 137497, + [SMALL_STATE(5083)] = 137510, + [SMALL_STATE(5084)] = 137523, + [SMALL_STATE(5085)] = 137536, + [SMALL_STATE(5086)] = 137549, + [SMALL_STATE(5087)] = 137562, + [SMALL_STATE(5088)] = 137575, + [SMALL_STATE(5089)] = 137588, + [SMALL_STATE(5090)] = 137601, + [SMALL_STATE(5091)] = 137614, + [SMALL_STATE(5092)] = 137627, + [SMALL_STATE(5093)] = 137640, + [SMALL_STATE(5094)] = 137653, + [SMALL_STATE(5095)] = 137666, + [SMALL_STATE(5096)] = 137679, + [SMALL_STATE(5097)] = 137692, + [SMALL_STATE(5098)] = 137705, + [SMALL_STATE(5099)] = 137718, + [SMALL_STATE(5100)] = 137731, + [SMALL_STATE(5101)] = 137744, + [SMALL_STATE(5102)] = 137757, + [SMALL_STATE(5103)] = 137770, + [SMALL_STATE(5104)] = 137780, + [SMALL_STATE(5105)] = 137790, + [SMALL_STATE(5106)] = 137800, + [SMALL_STATE(5107)] = 137810, + [SMALL_STATE(5108)] = 137820, + [SMALL_STATE(5109)] = 137830, + [SMALL_STATE(5110)] = 137840, + [SMALL_STATE(5111)] = 137850, + [SMALL_STATE(5112)] = 137860, + [SMALL_STATE(5113)] = 137870, + [SMALL_STATE(5114)] = 137880, + [SMALL_STATE(5115)] = 137890, + [SMALL_STATE(5116)] = 137900, + [SMALL_STATE(5117)] = 137910, + [SMALL_STATE(5118)] = 137920, + [SMALL_STATE(5119)] = 137930, + [SMALL_STATE(5120)] = 137940, + [SMALL_STATE(5121)] = 137950, + [SMALL_STATE(5122)] = 137960, + [SMALL_STATE(5123)] = 137970, + [SMALL_STATE(5124)] = 137980, + [SMALL_STATE(5125)] = 137990, + [SMALL_STATE(5126)] = 138000, + [SMALL_STATE(5127)] = 138010, + [SMALL_STATE(5128)] = 138020, + [SMALL_STATE(5129)] = 138030, + [SMALL_STATE(5130)] = 138040, + [SMALL_STATE(5131)] = 138050, + [SMALL_STATE(5132)] = 138060, + [SMALL_STATE(5133)] = 138070, + [SMALL_STATE(5134)] = 138080, + [SMALL_STATE(5135)] = 138090, + [SMALL_STATE(5136)] = 138100, + [SMALL_STATE(5137)] = 138110, + [SMALL_STATE(5138)] = 138120, + [SMALL_STATE(5139)] = 138130, + [SMALL_STATE(5140)] = 138140, + [SMALL_STATE(5141)] = 138150, + [SMALL_STATE(5142)] = 138160, + [SMALL_STATE(5143)] = 138170, + [SMALL_STATE(5144)] = 138180, + [SMALL_STATE(5145)] = 138190, + [SMALL_STATE(5146)] = 138200, + [SMALL_STATE(5147)] = 138210, + [SMALL_STATE(5148)] = 138220, + [SMALL_STATE(5149)] = 138230, + [SMALL_STATE(5150)] = 138240, + [SMALL_STATE(5151)] = 138250, + [SMALL_STATE(5152)] = 138260, + [SMALL_STATE(5153)] = 138270, + [SMALL_STATE(5154)] = 138280, + [SMALL_STATE(5155)] = 138290, + [SMALL_STATE(5156)] = 138300, + [SMALL_STATE(5157)] = 138310, + [SMALL_STATE(5158)] = 138320, + [SMALL_STATE(5159)] = 138330, + [SMALL_STATE(5160)] = 138340, + [SMALL_STATE(5161)] = 138350, + [SMALL_STATE(5162)] = 138360, + [SMALL_STATE(5163)] = 138370, + [SMALL_STATE(5164)] = 138380, + [SMALL_STATE(5165)] = 138390, + [SMALL_STATE(5166)] = 138400, + [SMALL_STATE(5167)] = 138410, + [SMALL_STATE(5168)] = 138420, + [SMALL_STATE(5169)] = 138430, + [SMALL_STATE(5170)] = 138440, + [SMALL_STATE(5171)] = 138450, + [SMALL_STATE(5172)] = 138460, + [SMALL_STATE(5173)] = 138470, + [SMALL_STATE(5174)] = 138480, + [SMALL_STATE(5175)] = 138490, + [SMALL_STATE(5176)] = 138500, + [SMALL_STATE(5177)] = 138510, + [SMALL_STATE(5178)] = 138520, + [SMALL_STATE(5179)] = 138530, + [SMALL_STATE(5180)] = 138540, + [SMALL_STATE(5181)] = 138550, + [SMALL_STATE(5182)] = 138560, + [SMALL_STATE(5183)] = 138570, + [SMALL_STATE(5184)] = 138580, + [SMALL_STATE(5185)] = 138590, + [SMALL_STATE(5186)] = 138600, + [SMALL_STATE(5187)] = 138610, + [SMALL_STATE(5188)] = 138620, + [SMALL_STATE(5189)] = 138630, + [SMALL_STATE(5190)] = 138640, + [SMALL_STATE(5191)] = 138650, + [SMALL_STATE(5192)] = 138660, + [SMALL_STATE(5193)] = 138670, + [SMALL_STATE(5194)] = 138680, + [SMALL_STATE(5195)] = 138690, + [SMALL_STATE(5196)] = 138700, + [SMALL_STATE(5197)] = 138710, + [SMALL_STATE(5198)] = 138720, + [SMALL_STATE(5199)] = 138730, + [SMALL_STATE(5200)] = 138740, + [SMALL_STATE(5201)] = 138750, + [SMALL_STATE(5202)] = 138760, + [SMALL_STATE(5203)] = 138770, + [SMALL_STATE(5204)] = 138780, + [SMALL_STATE(5205)] = 138790, + [SMALL_STATE(5206)] = 138800, + [SMALL_STATE(5207)] = 138810, + [SMALL_STATE(5208)] = 138820, + [SMALL_STATE(5209)] = 138830, + [SMALL_STATE(5210)] = 138840, + [SMALL_STATE(5211)] = 138850, + [SMALL_STATE(5212)] = 138860, + [SMALL_STATE(5213)] = 138870, + [SMALL_STATE(5214)] = 138880, + [SMALL_STATE(5215)] = 138890, + [SMALL_STATE(5216)] = 138900, + [SMALL_STATE(5217)] = 138910, + [SMALL_STATE(5218)] = 138920, + [SMALL_STATE(5219)] = 138930, + [SMALL_STATE(5220)] = 138940, + [SMALL_STATE(5221)] = 138950, + [SMALL_STATE(5222)] = 138960, + [SMALL_STATE(5223)] = 138970, + [SMALL_STATE(5224)] = 138980, + [SMALL_STATE(5225)] = 138990, + [SMALL_STATE(5226)] = 139000, + [SMALL_STATE(5227)] = 139010, + [SMALL_STATE(5228)] = 139020, + [SMALL_STATE(5229)] = 139030, + [SMALL_STATE(5230)] = 139040, + [SMALL_STATE(5231)] = 139050, + [SMALL_STATE(5232)] = 139060, + [SMALL_STATE(5233)] = 139070, + [SMALL_STATE(5234)] = 139080, + [SMALL_STATE(5235)] = 139090, + [SMALL_STATE(5236)] = 139100, + [SMALL_STATE(5237)] = 139110, + [SMALL_STATE(5238)] = 139120, + [SMALL_STATE(5239)] = 139130, + [SMALL_STATE(5240)] = 139140, + [SMALL_STATE(5241)] = 139150, + [SMALL_STATE(5242)] = 139160, + [SMALL_STATE(5243)] = 139170, + [SMALL_STATE(5244)] = 139180, + [SMALL_STATE(5245)] = 139190, + [SMALL_STATE(5246)] = 139200, + [SMALL_STATE(5247)] = 139210, + [SMALL_STATE(5248)] = 139220, + [SMALL_STATE(5249)] = 139230, + [SMALL_STATE(5250)] = 139240, + [SMALL_STATE(5251)] = 139250, + [SMALL_STATE(5252)] = 139260, + [SMALL_STATE(5253)] = 139270, + [SMALL_STATE(5254)] = 139280, + [SMALL_STATE(5255)] = 139290, + [SMALL_STATE(5256)] = 139300, + [SMALL_STATE(5257)] = 139310, + [SMALL_STATE(5258)] = 139320, + [SMALL_STATE(5259)] = 139330, + [SMALL_STATE(5260)] = 139340, + [SMALL_STATE(5261)] = 139350, + [SMALL_STATE(5262)] = 139360, + [SMALL_STATE(5263)] = 139370, + [SMALL_STATE(5264)] = 139380, + [SMALL_STATE(5265)] = 139390, + [SMALL_STATE(5266)] = 139400, + [SMALL_STATE(5267)] = 139410, + [SMALL_STATE(5268)] = 139420, + [SMALL_STATE(5269)] = 139430, + [SMALL_STATE(5270)] = 139440, + [SMALL_STATE(5271)] = 139450, + [SMALL_STATE(5272)] = 139460, + [SMALL_STATE(5273)] = 139470, + [SMALL_STATE(5274)] = 139480, + [SMALL_STATE(5275)] = 139490, + [SMALL_STATE(5276)] = 139500, + [SMALL_STATE(5277)] = 139510, + [SMALL_STATE(5278)] = 139520, + [SMALL_STATE(5279)] = 139530, + [SMALL_STATE(5280)] = 139540, + [SMALL_STATE(5281)] = 139550, + [SMALL_STATE(5282)] = 139560, + [SMALL_STATE(5283)] = 139570, + [SMALL_STATE(5284)] = 139580, + [SMALL_STATE(5285)] = 139590, + [SMALL_STATE(5286)] = 139600, + [SMALL_STATE(5287)] = 139610, + [SMALL_STATE(5288)] = 139620, + [SMALL_STATE(5289)] = 139630, + [SMALL_STATE(5290)] = 139640, + [SMALL_STATE(5291)] = 139650, + [SMALL_STATE(5292)] = 139660, + [SMALL_STATE(5293)] = 139670, + [SMALL_STATE(5294)] = 139680, + [SMALL_STATE(5295)] = 139690, + [SMALL_STATE(5296)] = 139700, + [SMALL_STATE(5297)] = 139710, + [SMALL_STATE(5298)] = 139720, + [SMALL_STATE(5299)] = 139730, + [SMALL_STATE(5300)] = 139740, + [SMALL_STATE(5301)] = 139750, + [SMALL_STATE(5302)] = 139760, + [SMALL_STATE(5303)] = 139770, + [SMALL_STATE(5304)] = 139780, + [SMALL_STATE(5305)] = 139790, + [SMALL_STATE(5306)] = 139800, + [SMALL_STATE(5307)] = 139810, + [SMALL_STATE(5308)] = 139820, + [SMALL_STATE(5309)] = 139830, + [SMALL_STATE(5310)] = 139840, + [SMALL_STATE(5311)] = 139850, + [SMALL_STATE(5312)] = 139860, + [SMALL_STATE(5313)] = 139870, + [SMALL_STATE(5314)] = 139880, + [SMALL_STATE(5315)] = 139890, + [SMALL_STATE(5316)] = 139900, + [SMALL_STATE(5317)] = 139910, + [SMALL_STATE(5318)] = 139920, + [SMALL_STATE(5319)] = 139930, + [SMALL_STATE(5320)] = 139940, + [SMALL_STATE(5321)] = 139950, + [SMALL_STATE(5322)] = 139960, + [SMALL_STATE(5323)] = 139970, + [SMALL_STATE(5324)] = 139980, + [SMALL_STATE(5325)] = 139990, + [SMALL_STATE(5326)] = 140000, + [SMALL_STATE(5327)] = 140010, + [SMALL_STATE(5328)] = 140020, + [SMALL_STATE(5329)] = 140030, + [SMALL_STATE(5330)] = 140040, + [SMALL_STATE(5331)] = 140050, + [SMALL_STATE(5332)] = 140060, + [SMALL_STATE(5333)] = 140070, + [SMALL_STATE(5334)] = 140080, + [SMALL_STATE(5335)] = 140090, + [SMALL_STATE(5336)] = 140100, + [SMALL_STATE(5337)] = 140110, + [SMALL_STATE(5338)] = 140120, + [SMALL_STATE(5339)] = 140130, + [SMALL_STATE(5340)] = 140140, + [SMALL_STATE(5341)] = 140150, + [SMALL_STATE(5342)] = 140160, + [SMALL_STATE(5343)] = 140170, + [SMALL_STATE(5344)] = 140180, + [SMALL_STATE(5345)] = 140190, + [SMALL_STATE(5346)] = 140200, + [SMALL_STATE(5347)] = 140210, + [SMALL_STATE(5348)] = 140220, + [SMALL_STATE(5349)] = 140230, + [SMALL_STATE(5350)] = 140240, + [SMALL_STATE(5351)] = 140250, + [SMALL_STATE(5352)] = 140260, + [SMALL_STATE(5353)] = 140270, + [SMALL_STATE(5354)] = 140280, + [SMALL_STATE(5355)] = 140290, + [SMALL_STATE(5356)] = 140300, + [SMALL_STATE(5357)] = 140310, + [SMALL_STATE(5358)] = 140320, + [SMALL_STATE(5359)] = 140330, + [SMALL_STATE(5360)] = 140340, + [SMALL_STATE(5361)] = 140350, + [SMALL_STATE(5362)] = 140360, + [SMALL_STATE(5363)] = 140370, + [SMALL_STATE(5364)] = 140380, + [SMALL_STATE(5365)] = 140390, + [SMALL_STATE(5366)] = 140400, + [SMALL_STATE(5367)] = 140410, + [SMALL_STATE(5368)] = 140420, + [SMALL_STATE(5369)] = 140430, + [SMALL_STATE(5370)] = 140440, + [SMALL_STATE(5371)] = 140450, + [SMALL_STATE(5372)] = 140460, + [SMALL_STATE(5373)] = 140470, + [SMALL_STATE(5374)] = 140480, + [SMALL_STATE(5375)] = 140490, + [SMALL_STATE(5376)] = 140500, + [SMALL_STATE(5377)] = 140510, + [SMALL_STATE(5378)] = 140520, + [SMALL_STATE(5379)] = 140530, + [SMALL_STATE(5380)] = 140540, + [SMALL_STATE(5381)] = 140550, + [SMALL_STATE(5382)] = 140560, + [SMALL_STATE(5383)] = 140570, + [SMALL_STATE(5384)] = 140580, + [SMALL_STATE(5385)] = 140590, + [SMALL_STATE(5386)] = 140600, + [SMALL_STATE(5387)] = 140610, + [SMALL_STATE(5388)] = 140620, + [SMALL_STATE(5389)] = 140630, + [SMALL_STATE(5390)] = 140640, + [SMALL_STATE(5391)] = 140650, + [SMALL_STATE(5392)] = 140660, + [SMALL_STATE(5393)] = 140670, + [SMALL_STATE(5394)] = 140680, + [SMALL_STATE(5395)] = 140690, + [SMALL_STATE(5396)] = 140700, + [SMALL_STATE(5397)] = 140710, + [SMALL_STATE(5398)] = 140720, + [SMALL_STATE(5399)] = 140730, + [SMALL_STATE(5400)] = 140740, + [SMALL_STATE(5401)] = 140750, + [SMALL_STATE(5402)] = 140760, + [SMALL_STATE(5403)] = 140770, + [SMALL_STATE(5404)] = 140780, + [SMALL_STATE(5405)] = 140790, + [SMALL_STATE(5406)] = 140800, + [SMALL_STATE(5407)] = 140810, + [SMALL_STATE(5408)] = 140820, + [SMALL_STATE(5409)] = 140830, + [SMALL_STATE(5410)] = 140840, + [SMALL_STATE(5411)] = 140850, + [SMALL_STATE(5412)] = 140860, + [SMALL_STATE(5413)] = 140870, + [SMALL_STATE(5414)] = 140880, + [SMALL_STATE(5415)] = 140890, + [SMALL_STATE(5416)] = 140900, + [SMALL_STATE(5417)] = 140910, + [SMALL_STATE(5418)] = 140920, + [SMALL_STATE(5419)] = 140930, + [SMALL_STATE(5420)] = 140940, + [SMALL_STATE(5421)] = 140950, + [SMALL_STATE(5422)] = 140960, + [SMALL_STATE(5423)] = 140970, + [SMALL_STATE(5424)] = 140980, + [SMALL_STATE(5425)] = 140990, + [SMALL_STATE(5426)] = 141000, + [SMALL_STATE(5427)] = 141010, + [SMALL_STATE(5428)] = 141020, + [SMALL_STATE(5429)] = 141030, + [SMALL_STATE(5430)] = 141040, + [SMALL_STATE(5431)] = 141050, + [SMALL_STATE(5432)] = 141060, + [SMALL_STATE(5433)] = 141070, + [SMALL_STATE(5434)] = 141080, + [SMALL_STATE(5435)] = 141090, + [SMALL_STATE(5436)] = 141100, + [SMALL_STATE(5437)] = 141110, + [SMALL_STATE(5438)] = 141120, + [SMALL_STATE(5439)] = 141130, + [SMALL_STATE(5440)] = 141140, + [SMALL_STATE(5441)] = 141150, + [SMALL_STATE(5442)] = 141160, + [SMALL_STATE(5443)] = 141170, + [SMALL_STATE(5444)] = 141180, + [SMALL_STATE(5445)] = 141190, + [SMALL_STATE(5446)] = 141200, + [SMALL_STATE(5447)] = 141210, + [SMALL_STATE(5448)] = 141220, + [SMALL_STATE(5449)] = 141230, + [SMALL_STATE(5450)] = 141240, + [SMALL_STATE(5451)] = 141250, + [SMALL_STATE(5452)] = 141260, + [SMALL_STATE(5453)] = 141270, + [SMALL_STATE(5454)] = 141280, + [SMALL_STATE(5455)] = 141290, + [SMALL_STATE(5456)] = 141300, + [SMALL_STATE(5457)] = 141310, + [SMALL_STATE(5458)] = 141320, + [SMALL_STATE(5459)] = 141330, + [SMALL_STATE(5460)] = 141340, + [SMALL_STATE(5461)] = 141350, + [SMALL_STATE(5462)] = 141360, + [SMALL_STATE(5463)] = 141370, + [SMALL_STATE(5464)] = 141380, + [SMALL_STATE(5465)] = 141390, + [SMALL_STATE(5466)] = 141400, + [SMALL_STATE(5467)] = 141410, + [SMALL_STATE(5468)] = 141420, + [SMALL_STATE(5469)] = 141430, + [SMALL_STATE(5470)] = 141440, + [SMALL_STATE(5471)] = 141450, + [SMALL_STATE(5472)] = 141460, + [SMALL_STATE(5473)] = 141470, + [SMALL_STATE(5474)] = 141480, + [SMALL_STATE(5475)] = 141490, + [SMALL_STATE(5476)] = 141500, + [SMALL_STATE(5477)] = 141510, + [SMALL_STATE(5478)] = 141520, + [SMALL_STATE(5479)] = 141530, + [SMALL_STATE(5480)] = 141540, + [SMALL_STATE(5481)] = 141550, + [SMALL_STATE(5482)] = 141560, + [SMALL_STATE(5483)] = 141570, + [SMALL_STATE(5484)] = 141580, + [SMALL_STATE(5485)] = 141590, + [SMALL_STATE(5486)] = 141600, + [SMALL_STATE(5487)] = 141610, + [SMALL_STATE(5488)] = 141620, + [SMALL_STATE(5489)] = 141630, + [SMALL_STATE(5490)] = 141640, + [SMALL_STATE(5491)] = 141650, + [SMALL_STATE(5492)] = 141660, + [SMALL_STATE(5493)] = 141670, + [SMALL_STATE(5494)] = 141680, + [SMALL_STATE(5495)] = 141690, + [SMALL_STATE(5496)] = 141700, + [SMALL_STATE(5497)] = 141710, + [SMALL_STATE(5498)] = 141720, + [SMALL_STATE(5499)] = 141730, + [SMALL_STATE(5500)] = 141740, + [SMALL_STATE(5501)] = 141750, + [SMALL_STATE(5502)] = 141760, + [SMALL_STATE(5503)] = 141770, + [SMALL_STATE(5504)] = 141780, + [SMALL_STATE(5505)] = 141790, + [SMALL_STATE(5506)] = 141800, + [SMALL_STATE(5507)] = 141810, + [SMALL_STATE(5508)] = 141820, + [SMALL_STATE(5509)] = 141830, + [SMALL_STATE(5510)] = 141840, + [SMALL_STATE(5511)] = 141850, + [SMALL_STATE(5512)] = 141860, + [SMALL_STATE(5513)] = 141870, + [SMALL_STATE(5514)] = 141880, + [SMALL_STATE(5515)] = 141890, + [SMALL_STATE(5516)] = 141900, + [SMALL_STATE(5517)] = 141910, + [SMALL_STATE(5518)] = 141920, + [SMALL_STATE(5519)] = 141930, + [SMALL_STATE(5520)] = 141940, + [SMALL_STATE(5521)] = 141950, + [SMALL_STATE(5522)] = 141960, + [SMALL_STATE(5523)] = 141970, + [SMALL_STATE(5524)] = 141980, + [SMALL_STATE(5525)] = 141990, + [SMALL_STATE(5526)] = 142000, + [SMALL_STATE(5527)] = 142010, + [SMALL_STATE(5528)] = 142020, + [SMALL_STATE(5529)] = 142030, + [SMALL_STATE(5530)] = 142040, + [SMALL_STATE(5531)] = 142050, + [SMALL_STATE(5532)] = 142060, + [SMALL_STATE(5533)] = 142070, + [SMALL_STATE(5534)] = 142080, }; 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(5471), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5521), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5514), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5506), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4936), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5472), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), - [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3979), - [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1783), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4152), - [478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4153), - [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4154), - [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2981), - [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1630), - [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1965), - [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4849), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1749), - [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1747), - [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4340), - [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4852), - [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1256), - [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1287), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5143), - [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4853), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1386), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5143), - [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1093), - [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1094), - [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1095), - [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5510), - [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(350), - [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(29), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3847), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5472), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), - [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3757), - [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2321), - [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3620), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3766), - [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(102), - [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(102), - [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(116), - [574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(697), - [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(746), - [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5220), - [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(969), - [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4203), - [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5408), - [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5409), - [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4249), - [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4184), - [601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1470), - [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2272), - [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5406), - [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3980), - [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1785), - [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4165), - [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4166), - [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4167), - [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2981), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1630), - [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1965), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4849), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1749), - [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1747), - [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4340), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4852), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1256), - [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(951), - [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5143), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4233), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1386), - [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5143), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1093), - [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1094), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1095), - [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5510), - [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(350), - [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(29), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3847), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5472), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3757), - [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2310), - [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3620), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3766), - [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(102), - [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(102), - [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(116), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(697), - [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(746), - [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5220), - [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(969), - [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4203), - [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5408), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5409), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4249), - [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4184), - [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1474), - [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2266), - [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5406), - [751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5475), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), + [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3897), + [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1767), + [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4151), + [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4162), + [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4181), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2969), + [491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1668), + [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1958), + [497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4793), + [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1777), + [503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1778), + [506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4320), + [509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4712), + [512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1254), + [515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(989), + [518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5329), + [521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4203), + [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1383), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5329), + [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1090), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1092), + [536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1086), + [539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5511), + [542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(365), + [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(27), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3849), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5475), + [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(9), + [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3816), + [560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2309), + [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3627), + [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3811), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(105), + [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(105), + [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(129), + [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(710), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(709), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5224), + [587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(944), + [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4204), + [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5411), + [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5412), + [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4253), + [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4149), + [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1471), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2269), + [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5409), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3963), + [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1760), + [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4055), + [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4071), + [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4072), + [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2969), + [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1668), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1958), + [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4793), + [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1777), + [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1778), + [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4320), + [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4712), + [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1254), + [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1282), + [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5329), + [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4722), + [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1383), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5329), + [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1090), + [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1092), + [677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1086), + [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5511), + [683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(365), + [686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(27), + [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3849), + [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5475), + [695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(9), + [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3816), + [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2338), + [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3627), + [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3811), + [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(105), + [713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(105), + [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(129), + [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(710), + [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(709), + [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5224), + [728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(944), + [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4204), + [734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5411), + [737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5412), + [740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4253), + [743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4149), + [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1466), + [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2274), + [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5409), + [755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [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(102), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), [811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), - [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5421), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5423), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5143), - [1029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5143), - [1032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4234), - [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2981), - [1038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(988), - [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4233), - [1044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1386), - [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1093), - [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1094), - [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1095), - [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(350), - [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(29), - [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3847), - [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5472), - [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3757), - [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), - [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3620), - [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3766), - [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(118), - [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(118), - [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(697), - [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(746), - [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5220), - [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(969), - [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4203), - [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5408), - [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5409), - [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4249), - [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4184), - [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1474), - [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2266), - [1125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5406), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5143), - [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5143), - [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4234), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2981), - [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1286), - [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4853), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1386), - [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1093), - [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1094), - [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1095), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(350), - [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(29), - [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3847), - [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5472), - [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3757), - [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2321), - [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3620), - [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3766), - [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(118), - [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(118), - [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(697), - [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(746), - [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5220), - [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(969), - [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4203), - [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5408), - [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5409), - [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4249), - [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4184), - [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1470), - [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2272), - [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5406), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 32), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 32), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 32), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 32), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), - [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), + [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5329), + [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5329), + [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4360), + [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2969), + [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1280), + [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4722), + [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1383), + [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1090), + [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1092), + [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1086), + [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(365), + [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(27), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3849), + [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5475), + [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(9), + [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3816), + [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2338), + [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3627), + [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3811), + [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(132), + [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(132), + [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(138), + [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(710), + [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(709), + [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5224), + [1105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(944), + [1108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4204), + [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5411), + [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5412), + [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4253), + [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4149), + [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1466), + [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2274), + [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5409), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5329), + [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5329), + [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4360), + [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2969), + [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(987), + [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4203), + [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1383), + [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1090), + [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1092), + [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1086), + [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(365), + [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(27), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3849), + [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5475), + [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(9), + [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3816), + [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2309), + [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3627), + [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3811), + [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(132), + [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(132), + [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(138), + [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(710), + [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(709), + [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5224), + [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(944), + [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4204), + [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5411), + [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5412), + [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4253), + [1226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4149), + [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1471), + [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2269), + [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5409), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 32), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 32), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 32), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 32), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [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(369), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 22), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 22), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), - [1494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3692), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_single_quotes, 3, 0, 0), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_single_quotes, 3, 0, 0), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_back_ticks, 3, 0, 0), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_back_ticks, 3, 0, 0), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 0), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 0), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 2, 0, 0), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 2, 0, 0), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), - [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3709), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 22), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 22), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 20), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 30), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 30), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 31), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 31), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3667), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 129), - [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 129), - [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 130), - [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 130), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), - [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 128), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 128), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3714), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [1883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), - [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(649), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), - [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 3, 0, 48), - [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 3, 0, 48), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), - [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 102), - [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 102), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [1991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4348), - [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4477), - [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4862), - [2000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(351), - [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(28), - [2006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3864), - [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4), - [2012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3736), - [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(44), - [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3742), - [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5255), - [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3439), - [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3439), - [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3621), - [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4608), - [2036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4341), - [2039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5364), - [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4482), - [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4361), - [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5418), - [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5419), - [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4280), - [2057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4126), - [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(395), - [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4460), - [2066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5416), - [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3715), - [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 24), - [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 24), - [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 2, 0, 0), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 79), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 79), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 3, 0, 0), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), - [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), - [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(649), - [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(801), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 106), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 106), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 75), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 75), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 76), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 76), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 77), - [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 77), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 78), - [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 78), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5050), - [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5050), - [2204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(2923), - [2207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5513), - [2210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4973), - [2213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(51), - [2216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4643), - [2219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5306), - [2222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(44), - [2225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5255), - [2228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1942), - [2231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1942), - [2234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1952), - [2237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(697), - [2240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4344), - [2243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5221), - [2246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5222), - [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4249), - [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4184), - [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(463), - [2258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5216), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), - [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), - [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 106), - [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 106), - [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5050), - [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5050), - [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(2923), - [2294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5513), - [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4973), - [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(51), - [2303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4675), - [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5306), - [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(44), - [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5255), - [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1942), - [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1942), - [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1952), - [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(697), - [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4344), - [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5221), - [2333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5222), - [2336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4249), - [2339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4184), - [2342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(463), - [2345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5216), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), - [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), - [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(800), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), - [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 164), - [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 164), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 48), - [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 48), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), - [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 115), - [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 115), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 60), - [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 60), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 117), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 117), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 118), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 118), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 119), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 119), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 125), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 125), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 75), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 75), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 102), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 102), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 115), - [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 115), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 158), - [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 158), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 159), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 159), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 160), - [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 160), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 161), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 161), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 162), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 162), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 163), - [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 163), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 4), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 4), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 62), - [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 62), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 62), - [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 62), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), - [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 153), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 153), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 196), - [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 196), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), - [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 60), - [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 60), - [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), - [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 30), - [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 30), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2612] = {.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), - [2616] = {.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), - [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [2623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 42), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 42), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), - [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 120), - [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 120), - [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_minus, 4, 0, 0), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 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_val_range, 5, 0, 165), - [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 165), - [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 5, 0, 0), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), - [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 31), - [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 31), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 74), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 74), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_cellpath, 2, 0, 0), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_cellpath, 2, 0, 0), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 4, 0, 0), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 75), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 75), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 151), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 151), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 153), - [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 153), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 195), - [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 195), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 152), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 152), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 196), - [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 196), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 195), - [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 195), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 1, 0, 0), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 1, 0, 0), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 22), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 22), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_back_ticks, 3, 0, 0), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_back_ticks, 3, 0, 0), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 2, 0, 0), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 2, 0, 0), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 0), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 0), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_single_quotes, 3, 0, 0), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_single_quotes, 3, 0, 0), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), + [1562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3676), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), + [1571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3703), + [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 22), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 22), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 20), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 31), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 31), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 30), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 30), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3679), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 130), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 130), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 128), + [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 128), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), + [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 129), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 129), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3733), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 102), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 102), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 3, 0, 48), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 3, 0, 48), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), + [1940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(553), + [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4238), + [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4382), + [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4881), + [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(373), + [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(34), + [2036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3857), + [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(6), + [2042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3719), + [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(52), + [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3718), + [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5374), + [2054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3579), + [2057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3579), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3620), + [2063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4605), + [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4232), + [2069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5367), + [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4386), + [2075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4249), + [2078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5421), + [2081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5422), + [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4222), + [2087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4178), + [2090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(410), + [2093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4440), + [2096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5419), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 79), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 79), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 3, 0, 0), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), + [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), + [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(553), + [2122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(899), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 24), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 24), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 2, 0, 0), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3657), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 77), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 77), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 75), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 75), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), + [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4948), + [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4948), + [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3013), + [2171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5345), + [2174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4981), + [2177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(50), + [2180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4557), + [2183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5315), + [2186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(52), + [2189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5374), + [2192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1933), + [2195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1933), + [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1954), + [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(710), + [2204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4312), + [2207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5225), + [2210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5226), + [2213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4253), + [2216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4149), + [2219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(470), + [2222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5220), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), + [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), + [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 76), + [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 76), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 106), + [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 106), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 78), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 78), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(894), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 106), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 106), + [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), + [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), + [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [2322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4948), + [2325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4948), + [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3013), + [2331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5345), + [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4981), + [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(50), + [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4443), + [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5315), + [2346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(52), + [2349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5374), + [2352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1933), + [2355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1933), + [2358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1954), + [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(710), + [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4312), + [2367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5225), + [2370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5226), + [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4253), + [2376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4149), + [2379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(470), + [2382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5220), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 196), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 196), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 4), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 4), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 60), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 60), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 164), + [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 164), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 163), + [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 163), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 162), + [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 162), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 161), + [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 161), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 160), + [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 160), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 159), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 159), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 158), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 158), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 115), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 115), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 102), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 102), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 125), + [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 125), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_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 = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 75), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 75), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 119), + [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 119), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 118), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 118), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 117), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 117), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 60), + [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 60), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 115), + [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 115), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 48), + [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 48), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 153), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 153), + [2561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), + [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 30), + [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 30), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 62), + [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 62), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 62), + [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 62), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), + [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), + [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_cellpath, 2, 0, 0), + [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_cellpath, 2, 0, 0), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 74), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 74), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 42), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 42), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 31), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 31), + [2644] = {.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), + [2648] = {.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), + [2652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [2655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), + [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 120), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 120), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 4, 0, 0), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 165), + [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 165), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 5, 0, 0), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 5), + [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 5), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 196), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 196), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 153), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 153), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 195), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 195), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 151), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 151), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 152), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 152), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 75), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 75), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 74), [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 74), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), SHIFT(649), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 195), SHIFT(649), - [2916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), SHIFT(649), - [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4892), - [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [2967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), SHIFT(649), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), - [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [3074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1374), - [3077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1378), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), - [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), - [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), - [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [3108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(649), - [3111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1400), - [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), - [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), - [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), - [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4933), - [3130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1389), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), - [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), - [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), - [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), - [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [3222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4305), - [3225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4306), - [3228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4275), - [3231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1129), - [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [3237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4459), - [3240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(473), - [3243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4892), - [3246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3665), - [3249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3666), - [3252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3445), - [3255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3445), - [3258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3642), - [3261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(697), - [3264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(746), - [3267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5220), - [3270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4358), - [3273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4344), - [3276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5221), - [3279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5222), - [3282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(733), - [3285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5216), - [3288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5244), - [3291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5244), - [3294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5223), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), - [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), - [3301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1955), - [3304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1955), - [3307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1976), - [3310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5244), - [3313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5244), - [3316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5223), - [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1955), - [3326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1955), - [3329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1976), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5522), - [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1412), - [3463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1412), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [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}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4348), - [3589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4477), - [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4862), - [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1145), - [3598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(28), - [3601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4675), - [3604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(462), - [3607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3736), - [3610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3742), - [3613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3439), - [3616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3439), - [3619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3621), - [3622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4608), - [3625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4341), - [3628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5364), - [3631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5062), - [3634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4361), - [3637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5418), - [3640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5419), - [3643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4460), - [3646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5416), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 195), + [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 195), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), SHIFT(553), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), + [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [2955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), SHIFT(553), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [2986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 195), SHIFT(553), + [2989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), SHIFT(553), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [3050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1373), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [3081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1379), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), + [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), + [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(553), + [3105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1403), + [3108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1386), + [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4971), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), + [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), + [3174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), + [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), + [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), + [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4893), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [3340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5301), + [3343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5301), + [3346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5260), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), + [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), + [3353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1965), + [3356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1965), + [3359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1968), + [3362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4301), + [3365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4298), + [3368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4361), + [3371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1065), + [3374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(31), + [3377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4606), + [3380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(463), + [3383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4911), + [3386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3681), + [3389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3680), + [3392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3585), + [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3585), + [3398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3636), + [3401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(710), + [3404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(709), + [3407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5224), + [3410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4244), + [3413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4312), + [3416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5225), + [3419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5226), + [3422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(701), + [3425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5220), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [3440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5301), + [3443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5301), + [3446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5260), + [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1965), + [3456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1965), + [3459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1968), + [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1414), + [3467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1414), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [3490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1424), + [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1426), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [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(2303), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4238), + [3559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4382), + [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4881), + [3565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1047), + [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(34), + [3571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4557), + [3574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(471), + [3577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3719), + [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3718), + [3583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3579), + [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3579), + [3589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3620), + [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4605), + [3595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4232), + [3598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5367), + [3601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5036), + [3604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4249), + [3607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5421), + [3610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5422), + [3613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4440), + [3616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5419), + [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 34), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 12), - [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 34), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 12), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [3713] = {.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), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), - [3725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), - [3727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 50), - [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [3735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), - [3737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 20), - [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), - [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 51), - [3743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 50), - [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), - [3747] = {.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), - [3750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 20), REDUCE(sym_record_body, 2, 0, 20), - [3753] = {.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), - [3756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), - [3758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1504), - [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), - [3763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 4, 0, 107), - [3765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 50), REDUCE(sym_record_body, 3, 0, 50), - [3768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 107), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [3776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 20), - [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), - [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), - [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), - [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), - [3786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), - [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), - [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), + [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), + [3725] = {.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), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), + [3735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 51), + [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), + [3743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1503), + [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), + [3748] = {.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), + [3751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 50), REDUCE(sym_record_body, 3, 0, 50), + [3754] = {.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), + [3757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 50), + [3759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), + [3761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), + [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), + [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 4, 0, 107), + [3767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 20), REDUCE(sym_record_body, 2, 0, 20), + [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 50), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [3776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 20), + [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 20), + [3780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 107), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [3784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), + [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), + [3788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), + [3791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), + [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4821), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [4070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3748), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [4089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5321), - [4092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5321), - [4095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(4788), - [4098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(1955), - [4101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(1976), - [4104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(4361), - [4107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5418), - [4110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5419), - [4113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5416), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [4128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3681), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), - [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), - [4181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(2605), - [4184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(2565), - [4187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(2519), - [4190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(5492), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [4213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [4223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(4457), - [4226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(4208), - [4229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(4209), - [4232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(5519), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), - [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), - [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [4295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1962), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), - [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), - [4330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3698), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), - [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), - [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [4363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2075), - [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 86), - [4368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 91), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), - [4384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 93), - [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 141), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 93), - [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [4396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 142), - [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [4402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(1967), - [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 4, 0, 209), - [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [4415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 91), - [4417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 86), - [4419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 175), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [4423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 4, 0, 178), - [4425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 93), - [4427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 91), - [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [4445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2098), - [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 4, 0, 209), - [4456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 175), - [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 91), - [4460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 22), - [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 22), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2176), - [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [4538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 20), - [4540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 20), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [4544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 20), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [4548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 50), - [4550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 107), - [4552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), - [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), - [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), - [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [4574] = {.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), - [4578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [4581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2200), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), - [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5530), - [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [4611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2195), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), - [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), - [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [4624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [4628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2250), - [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 37), - [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 37), - [4635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 88), - [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 88), - [4639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 89), - [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 89), - [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 90), - [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 90), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), - [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), - [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), - [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), - [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), - [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), - [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), - [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [4777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2263), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 1, 0, 0), - [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2291), - [4805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), - [4807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 4, 0, 0), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [4821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2282), - [4824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 3, 0, 0), - [4826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 2, 0, 0), - [4828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 20), - [4830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 20), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [4834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 20), - [4836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2299), - [4839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2300), - [4842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 50), - [4844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 51), - [4846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 4, 0, 107), - [4848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5136), - [4851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5381), - [4854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5228), - [4857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(4179), - [4860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(4047), - [4863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(3852), - [4866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(3852), - [4869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(3943), - [4872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5402), - [4875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(4361), - [4878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5418), - [4881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5419), - [4884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(4262), - [4887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5416), - [4890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2303), - [4893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), - [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), - [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), - [4901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), - [4917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [4939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3732), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), - [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), - [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5249), + [4069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5249), + [4072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(4821), + [4075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(1965), + [4078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(1968), + [4081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(4249), + [4084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5421), + [4087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5422), + [4090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5419), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [4113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3670), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [4126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3735), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), + [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), + [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [4207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(2644), + [4210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(2524), + [4213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(2523), + [4216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(5495), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [4221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(4576), + [4224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(4307), + [4227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(4284), + [4230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(5523), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [4295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1966), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [4310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3664), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [4319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), + [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), + [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), + [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 93), + [4367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 93), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 93), + [4373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 141), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [4377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 142), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 4, 0, 209), + [4385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 91), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [4389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 91), + [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 175), + [4393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 86), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [4403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 91), + [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 86), + [4407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2045), + [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 175), + [4412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 4, 0, 178), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 22), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 22), + [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 91), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [4446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2030), + [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 4, 0, 209), + [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [4467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(1951), + [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [4482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 20), + [4484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 50), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 20), + [4490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2207), + [4493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2184), + [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [4516] = {.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), + [4520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), + [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [4570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 107), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [4595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 20), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [4607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), + [4609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2188), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), + [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5240), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [4628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 37), + [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 37), + [4632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [4644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 90), + [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 90), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [4652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2228), + [4655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 89), + [4657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 89), + [4659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 88), + [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 88), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), + [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), + [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), + [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [4735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2260), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), + [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 1, 0, 0), + [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), + [4808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 3, 0, 0), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), + [4814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2277), + [4817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2289), + [4820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 4, 0, 0), + [4822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 2, 0, 0), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [4832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 20), + [4834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 4, 0, 107), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 20), + [4840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2298), + [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 50), + [4845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 51), + [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 20), + [4849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2294), + [4852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2303), + [4855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5531), + [4858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5502), + [4861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5515), + [4864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(4192), + [4867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(4189), + [4870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(3859), + [4873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(3859), + [4876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(3958), + [4879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5505), + [4882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(4249), + [4885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5421), + [4888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5422), + [4891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(4216), + [4894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5419), + [4897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), + [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), + [4905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), + [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [4943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3746), + [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), + [5066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), [5090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 169), - [5092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 169), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [5092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 204), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 169), - [5098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2475), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [5103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3705), - [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), - [5116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), - [5118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 204), - [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 205), - [5122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 4, 0, 227), - [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [5126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2493), - [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [5147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [5175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3706), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [5098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2471), + [5101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 169), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [5107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 205), + [5109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 4, 0, 227), + [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [5125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3671), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [5134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [5136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [5170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3673), + [5173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2500), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), [5182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [5196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3701), - [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 85), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), - [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 74), - [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [5289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3695), - [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 5), - [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 42), - [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [5308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 42), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [5330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 58), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [5340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 58), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), - [5354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [5370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3707), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [5383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 75), - [5385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), - [5387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), - [5389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 202), - [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 206), - [5393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 207), - [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_type, 4, 0, 135), - [5397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 228), - [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [5403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [5405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [5407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 22), - [5409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 22), - [5411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), - [5413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), - [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [5419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [5421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [5423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), - [5425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), - [5427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [5433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3703), - [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), - [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [5458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), - [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [5468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 114), - [5470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 114), - [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 114), - [5474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 114), - [5476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 87), - [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [5482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3673), - [5485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 55), - [5487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 55), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [5493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), - [5495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), - [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [5499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 65), - [5501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 65), - [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [5507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [5531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 55), - [5533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 55), - [5535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 58), - [5537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 58), - [5539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 135), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [5543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 71), - [5545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 71), - [5547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), - [5549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), - [5551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 121), - [5553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 122), - [5555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), SHIFT(649), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [5560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), SHIFT(649), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [5577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), - [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), - [5581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), SHIFT(649), - [5584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), SHIFT(649), - [5587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 193), - [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 150), - [5591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 123), - [5593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 74), - [5595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 193), SHIFT(649), - [5598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 150), SHIFT(649), - [5601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 194), - [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 152), - [5605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 194), SHIFT(649), - [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_let_shortcut, 2, 0, 10), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 152), SHIFT(649), - [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [5617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [5619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1329), - [5622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3652), - [5625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1847), - [5628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [5630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 25), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 26), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [5646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 8), - [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), - [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 121), - [5654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 122), - [5656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 123), - [5658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 74), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [5676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 109), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [5680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 110), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [5684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 121), - [5686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 122), - [5688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 121), SHIFT(649), - [5691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 122), SHIFT(649), - [5694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 123), - [5696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 74), - [5698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 123), SHIFT(649), - [5701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 74), SHIFT(649), - [5704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 109), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [5708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 110), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [5712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 25), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [5718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 26), - [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [5742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), - [5744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 190), - [5746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 221), - [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), - [5750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 192), - [5752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 221), SHIFT(649), - [5755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 222), SHIFT(649), - [5758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 222), - [5760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), - [5762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 193), - [5764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 150), - [5766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 223), - [5768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 195), - [5770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 194), - [5772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 152), - [5774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 223), SHIFT(649), - [5777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 195), SHIFT(649), - [5780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [5786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 25), - [5788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 26), - [5790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 221), - [5792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 222), - [5794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 223), - [5796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 195), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 22), - [5804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 22), - [5806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 86), - [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 174), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [5816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), - [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), - [5834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 5), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [5848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 108), SHIFT(649), - [5851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 108), - [5853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4140), - [5856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(649), - [5859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [5861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 197), - [5863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 197), - [5865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [5873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 15), SHIFT(649), - [5876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 15), - [5878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), - [5882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), SHIFT_REPEAT(110), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [5891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 42), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [5901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 15), SHIFT(649), - [5904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 15), - [5906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 224), - [5908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 224), - [5910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [5914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 42), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), - [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [5922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [5932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 2), - [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [5946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(649), - [5949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), - [5951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(801), - [5954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 155), - [5956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 155), - [5958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 28), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [5968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(801), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [5973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4012), - [5976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 172), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [5982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 173), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [6000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 108), SHIFT(649), - [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 108), - [6005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4062), - [6008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4090), - [6011] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 4, 0, 15), SHIFT(649), - [6015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 4, 0, 15), - [6018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 29), - [6020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 64), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [6024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(3354), - [6027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), - [6029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5241), - [6032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4970), - [6035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5256), - [6038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5260), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [6045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 15), - [6047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4172), - [6050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4174), - [6053] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 5, 0, 108), SHIFT(649), - [6057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 5, 0, 108), - [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [6062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4120), - [6065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [6067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [6069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4092), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [6074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 219), SHIFT(649), - [6077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 219), - [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 106), - [6081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 106), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [6085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 85), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [6089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 208), - [6091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [6093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [6095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 106), - [6097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 106), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [6101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 148), SHIFT(649), - [6104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 148), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [6108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 149), SHIFT(649), - [6111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 149), - [6113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 127), - [6115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 127), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [6119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 46), SHIFT(649), - [6122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 46), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [6126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 135), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [6130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 185), SHIFT(649), - [6133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 185), - [6135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 174), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), - [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [6149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 95), SHIFT(649), - [6152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 95), - [6154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [6158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 95), - [6160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), - [6162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), - [6164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(649), - [6167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [6169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(801), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [6174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 46), SHIFT(649), - [6177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 46), - [6179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(649), - [6182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), - [6184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(801), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [6189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 187), SHIFT(649), - [6192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 187), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [6196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 95), SHIFT(649), - [6199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 95), - [6201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), - [6203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), SHIFT_REPEAT(124), - [6206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 28), - [6208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 37), - [6210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 37), - [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 29), - [6214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 28), - [6216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 29), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [6222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 86), - [6224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(239), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [6231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 217), SHIFT(649), - [6234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 217), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [6240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4129), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [6245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 238), SHIFT(649), - [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 238), - [6250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 136), - [6252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4186), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [6257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 219), SHIFT(649), - [6260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 219), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [6264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 242), SHIFT(649), - [6267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 242), - [6269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 22), - [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 22), - [6273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [6276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 64), - [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), - [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [6286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [6288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [6290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), - [6292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), - [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [6300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4035), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [6305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 238), SHIFT(649), - [6308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 238), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [6312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 256), SHIFT(649), - [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 256), - [6317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4015), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [6322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 242), SHIFT(649), - [6325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 242), - [6327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 73), SHIFT_REPEAT(117), - [6330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 73), SHIFT_REPEAT(117), - [6333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 73), - [6335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 64), - [6337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4083), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [6344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 256), SHIFT(649), - [6347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 256), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [6351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 184), SHIFT(649), - [6354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 184), - [6356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 69), - [6358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 69), - [6360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 88), - [6362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 88), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [6366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 184), SHIFT(649), - [6369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 184), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [6373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 148), SHIFT(649), - [6376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 148), - [6378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(234), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [6383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 149), SHIFT(649), - [6386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 149), - [6388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 171), - [6390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(236), - [6393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3365), - [6396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(206), - [6399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 66), - [6401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 66), - [6403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4139), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [6408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 217), SHIFT(649), - [6411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 217), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [6415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 185), SHIFT(649), - [6418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 185), - [6420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 67), - [6422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 67), - [6424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 68), - [6426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 68), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [6430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 187), SHIFT(649), - [6433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 187), - [6435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 70), - [6437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 70), - [6439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), - [6441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 97), - [6443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 46), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [6447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), - [6449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), - [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), - [6453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 100), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), - [6461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 202), - [6463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 206), - [6465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 207), - [6467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_type, 4, 0, 135), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [6473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 228), - [6475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 96), - [6477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 74), - [6479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 97), - [6481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [6483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [6485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 68), - [6487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 68), - [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), - [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), - [6499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 2, 0, 0), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [6503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [6505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [6517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_let_shortcut, 3, 0, 36), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [6525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 100), - [6527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [6529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [6539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 87), - [6541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 54), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [6545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 54), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [6571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(253), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [6576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(257), - [6579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(259), - [6582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(262), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [6589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 145), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [6593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 146), - [6595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 6, 0, 179), - [6597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 1), - [6599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [6601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 3), - [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [6605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 220), - [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), - [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), - [6615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 188), - [6617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 22), - [6619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 22), - [6621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 22), - [6623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 22), - [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), - [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), - [6635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 172), - [6637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 173), - [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), - [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [6657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3652), - [6660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [6663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [6669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 3), - [6671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 21), - [6673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 96), - [6675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 59), - [6677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 59), - [6679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [6681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [6683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 229), - [6685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 230), - [6687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 231), - [6689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 232), - [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), - [6695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 233), - [6697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 234), - [6699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 235), - [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 236), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4307), - [6707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 237), - [6709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 239), - [6711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 240), - [6713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 241), - [6715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 243), - [6717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [6719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [6721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 56), - [6723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 56), - [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [6729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), - [6731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 146), - [6733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 246), - [6735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 247), - [6737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 248), - [6739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 249), - [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [6749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 250), - [6751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 251), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [6757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 252), - [6759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 253), - [6761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 254), - [6763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 255), - [6765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 257), - [6767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 154), - [6769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 154), - [6771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 258), - [6773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 259), - [6775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 260), - [6777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 261), - [6779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 263), - [6781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 264), - [6783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 136), - [6785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 265), - [6787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 266), - [6789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 267), - [6791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 268), - [6793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 269), - [6795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 270), - [6797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 271), - [6799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 272), - [6801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 273), - [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [6809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 171), - [6811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 274), - [6813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 275), - [6815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 276), - [6817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 277), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [6823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 208), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [6837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(221), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [6842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(225), - [6845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(227), - [6848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(230), - [6851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 1), - [6853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 278), - [6855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 279), - [6857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 280), - [6859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 281), - [6861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 211), - [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), - [6865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 282), - [6867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 186), - [6869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 212), - [6871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 283), - [6873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 284), - [6875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 285), - [6877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 213), - [6879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 286), - [6881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 287), - [6883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 214), - [6885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 288), - [6887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 215), - [6889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 216), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [6893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 289), - [6895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 290), - [6897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 12, 0, 291), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [6901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 218), - [6903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 12, 0, 292), - [6905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 12, 0, 293), - [6907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 13, 0, 294), - [6909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 74), - [6911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 53), - [6913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [6917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 112), - [6919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 112), - [6921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 113), - [6923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 113), - [6925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 179), - [6927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 57), - [6929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 57), - [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [6943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [6945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(3728), - [6948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [6950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 55), - [6952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 55), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [6968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 114), - [6970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 114), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [6980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3689), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [7001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 58), - [7003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 58), - [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), - [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), - [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), - [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), - [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), - [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), - [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), - [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), - [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), - [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), - [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), - [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), - [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5439), - [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), - [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), - [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), - [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), - [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), - [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), - [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), - [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), - [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), - [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), - [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), - [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), - [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), - [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), - [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), - [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), - [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), - [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), - [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), - [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), - [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), - [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), - [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), - [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5457), - [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), - [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4329), - [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), - [7189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), - [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), - [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), - [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), - [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), - [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), - [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), - [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), - [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), - [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5468), - [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), - [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), - [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), - [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), - [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), - [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), - [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [5246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3667), + [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 85), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [5287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 42), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [5293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [5299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [5305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 42), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [5313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), + [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [5325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 5), + [5327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 58), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), + [5339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 58), + [5341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3660), + [5344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 74), + [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [5354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), + [5356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [5362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), + [5364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 228), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [5372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), + [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [5377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_type, 4, 0, 135), + [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 75), + [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 207), + [5403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [5405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [5407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), + [5409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), + [5411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 206), + [5413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 202), + [5415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [5417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [5429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), + [5431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 22), + [5433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 22), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [5437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3669), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [5444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), + [5446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), + [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [5454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 58), + [5456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 58), + [5458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 114), + [5460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 114), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [5466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 55), + [5468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 55), + [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [5474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3714), + [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [5491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 55), + [5493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 55), + [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [5513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), + [5515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), + [5517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [5519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 65), + [5521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 65), + [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), + [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [5531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), + [5533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [5537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 87), + [5539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 114), + [5541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 114), + [5543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), SHIFT(553), + [5546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [5552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_let_shortcut, 2, 0, 10), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [5556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 194), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [5562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 152), SHIFT(553), + [5565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 152), + [5567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 194), SHIFT(553), + [5570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 74), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [5576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 123), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 150), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [5586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 193), + [5588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 150), SHIFT(553), + [5591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 193), SHIFT(553), + [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), + [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), + [5598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), SHIFT(553), + [5601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), SHIFT(553), + [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 122), + [5606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 121), + [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), + [5610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), SHIFT(553), + [5613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 135), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [5625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 86), + [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [5639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [5641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1291), + [5644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3643), + [5647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1851), + [5650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 122), + [5654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 74), + [5656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 123), + [5658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 74), SHIFT(553), + [5661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 123), SHIFT(553), + [5664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 121), + [5666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 122), SHIFT(553), + [5669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 74), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [5675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 121), SHIFT(553), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 123), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [5688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 110), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [5692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 109), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [5696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 122), + [5698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 121), + [5700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 221), + [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [5708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), + [5710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 174), + [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [5716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [5720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 22), + [5722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 22), + [5724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 71), + [5726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 71), + [5728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), + [5732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 26), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 190), + [5738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 25), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [5742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [5746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 8), + [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 221), + [5750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 222), + [5752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), + [5754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 192), + [5756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 221), SHIFT(553), + [5759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 222), SHIFT(553), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [5768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 193), + [5770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 26), + [5772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 25), + [5774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 150), + [5776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 110), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [5780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 109), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [5786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 223), + [5788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 195), + [5790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 194), + [5792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 152), + [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [5796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 223), SHIFT(553), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [5801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 195), SHIFT(553), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [5806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 25), + [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 26), + [5810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 195), + [5812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 223), + [5814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 222), + [5816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [5842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 15), SHIFT(553), + [5845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 15), + [5847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 42), + [5849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 224), + [5851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 224), + [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [5871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 108), SHIFT(553), + [5874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 108), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [5880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 15), SHIFT(553), + [5883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 15), + [5885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(3298), + [5890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), + [5892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5105), + [5895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5072), + [5898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5158), + [5901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5172), + [5904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), + [5906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), SHIFT_REPEAT(109), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [5921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 15), + [5923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(553), + [5928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), + [5930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(553), + [5933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [5935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(899), + [5938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 28), + [5940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 29), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [5962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(899), + [5965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 64), + [5967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 42), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [5973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4096), + [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [5986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 2), + [5988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 5), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [5994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 108), SHIFT(553), + [5997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 108), + [5999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4163), + [6002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4161), + [6005] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 4, 0, 15), SHIFT(553), + [6009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 4, 0, 15), + [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [6026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 197), + [6028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 197), + [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [6032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [6036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 155), + [6038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 155), + [6040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 172), + [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 173), + [6044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4122), + [6047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4120), + [6050] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 5, 0, 108), SHIFT(553), + [6054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 5, 0, 108), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [6061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4106), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [6068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 256), SHIFT(553), + [6071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 256), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [6081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(553), + [6084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), + [6086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 28), + [6088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 29), + [6090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 28), + [6092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 29), + [6094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(553), + [6097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [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(131), + [6110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 64), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [6114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 46), SHIFT(553), + [6117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 46), + [6119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 64), + [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [6129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 73), SHIFT_REPEAT(133), + [6132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 73), SHIFT_REPEAT(133), + [6135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 73), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [6139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 148), SHIFT(553), + [6142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 148), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [6146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 149), SHIFT(553), + [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 149), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [6153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 46), SHIFT(553), + [6156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 46), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [6160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 95), SHIFT(553), + [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 95), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [6167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 184), SHIFT(553), + [6170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 184), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [6174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 148), SHIFT(553), + [6177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 148), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [6181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 149), SHIFT(553), + [6184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 149), + [6186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(250), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [6191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 185), SHIFT(553), + [6194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 185), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [6198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 174), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [6202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 187), SHIFT(553), + [6205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 187), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [6209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 95), SHIFT(553), + [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 95), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [6226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 184), SHIFT(553), + [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 184), + [6231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(273), + [6234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(271), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [6239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 217), SHIFT(553), + [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 217), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [6246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 185), SHIFT(553), + [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 185), + [6251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 135), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [6255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 187), SHIFT(553), + [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 187), + [6260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4090), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [6265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 219), SHIFT(553), + [6268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 219), + [6270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 127), + [6272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 127), + [6274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(246), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [6279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 217), SHIFT(553), + [6282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 217), + [6284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4073), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [6289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 238), SHIFT(553), + [6292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 238), + [6294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4067), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [6299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 219), SHIFT(553), + [6302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 219), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [6306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 242), SHIFT(553), + [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 242), + [6311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4054), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [6316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 238), SHIFT(553), + [6319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 238), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [6323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 85), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [6329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 256), SHIFT(553), + [6332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 256), + [6334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4036), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [6339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 242), SHIFT(553), + [6342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 242), + [6344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4016), + [6347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4009), + [6350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4001), + [6353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(899), + [6356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(899), + [6359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 66), + [6361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 66), + [6363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 67), + [6365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 67), + [6367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3377), + [6370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 68), + [6372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 68), + [6374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 69), + [6376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 69), + [6378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 70), + [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 70), + [6382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), + [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), + [6386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [6392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 95), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [6396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 37), + [6398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 37), + [6400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), + [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), + [6404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [6406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [6408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 136), + [6410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [6413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 88), + [6415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 88), + [6417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 171), + [6419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [6421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [6423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 106), + [6425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 106), + [6427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 208), + [6429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 22), + [6431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 22), + [6433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [6435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [6437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 106), + [6439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 106), + [6441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 86), + [6443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(223), + [6446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(229), + [6449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(231), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [6454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(244), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [6469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 6, 0, 179), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [6475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_let_shortcut, 3, 0, 36), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [6479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 46), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [6483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [6485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [6487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 100), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [6491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 97), + [6493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 146), + [6495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 145), + [6497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 54), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [6501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 54), + [6503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [6513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [6515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [6517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 100), + [6519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 97), + [6521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 96), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [6525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 74), + [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), + [6535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 2, 0, 0), + [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [6541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 3), + [6543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [6545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 1), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [6551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 68), + [6553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 68), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [6569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [6571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [6579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 228), + [6581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_type, 4, 0, 135), + [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), + [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [6593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 207), + [6595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 206), + [6597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 202), + [6599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), + [6601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), + [6603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 87), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [6607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 269), + [6609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 21), + [6611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 240), + [6613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 239), + [6615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 258), + [6617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 257), + [6619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 237), + [6621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 261), + [6623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 236), + [6625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 235), + [6627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 234), + [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 233), + [6631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 232), + [6633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 231), + [6635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 230), + [6637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 229), + [6639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 255), + [6641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 254), + [6643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 220), + [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), + [6651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 253), + [6653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 179), + [6655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 252), + [6657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 251), + [6659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 218), + [6661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 250), + [6663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 249), + [6665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 216), + [6667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 215), + [6669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 248), + [6671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 214), + [6673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 213), + [6675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 247), + [6677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 212), + [6679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 211), + [6681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 243), + [6683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 260), + [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4983), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [6689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 259), + [6691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 241), + [6693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 265), + [6695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [6697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [6699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 263), + [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 188), + [6703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 172), + [6705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 173), + [6707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 186), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), + [6715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 264), + [6717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 146), + [6719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [6723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 266), + [6725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 267), + [6727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 268), + [6729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 270), + [6731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 271), + [6733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 154), + [6735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 154), + [6737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 272), + [6739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 273), + [6741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 274), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [6747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 275), + [6749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 1), + [6751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [6753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 3), + [6755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 276), + [6757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 96), + [6759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 277), + [6761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 56), + [6763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 56), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [6773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 278), + [6775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(251), + [6778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 279), + [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), + [6790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 280), + [6792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 281), + [6794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 282), + [6796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 283), + [6798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(238), + [6801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 74), + [6803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(234), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [6808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [6810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [6812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [6815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [6817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 246), + [6819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3643), + [6822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 22), + [6824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 22), + [6826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 285), + [6828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 286), + [6830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 22), + [6832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 22), + [6834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 113), + [6836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 113), + [6838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 112), + [6840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 112), + [6842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(260), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [6849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [6851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 287), + [6853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 288), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [6857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 289), + [6859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 290), + [6861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 12, 0, 291), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [6867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 12, 0, 292), + [6869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 12, 0, 293), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [6875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 13, 0, 294), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [6879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 284), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), + [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [6893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 136), + [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [6915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 53), + [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [6921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 171), + [6923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 208), + [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), + [6927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 59), + [6929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 59), + [6931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 57), + [6933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 57), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [6947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 114), + [6949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 114), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [6953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 58), + [6955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 58), + [6957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 55), + [6959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 55), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [6969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3696), + [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [6996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [6998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(3720), + [7001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), + [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), + [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), + [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), + [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4330), + [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), + [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), + [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), + [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), + [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), + [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), + [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), + [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5466), + [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), + [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5468), + [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), + [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), + [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), + [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), + [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), + [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), + [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), + [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), + [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), + [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5421), + [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), + [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5472), + [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), + [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), + [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5439), + [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), + [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), + [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), + [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), + [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), + [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), + [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), + [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), + [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), + [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4329), + [7233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), + [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5457), + [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), - [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), - [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), - [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), - [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), - [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), - [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), - [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), - [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5466), - [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [7369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 6), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [7383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [7387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [7401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [7413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [7417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [7420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [7422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [7428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 181), - [7430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), - [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [7436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [7440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [7442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [7444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [7448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), - [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [7452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [7456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [7468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [7474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [7476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [7478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [7496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [7540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [7548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 181), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [7552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [7564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [7570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [7582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), - [7584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [7590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [7601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [7615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [7619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [7631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3708), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [7636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [7638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [7648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [7652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), - [7656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [7666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [7668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [7674] = {.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), - [7678] = {.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), - [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [7684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), - [7686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [7688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), - [7690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [7694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [7708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), - [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [7714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), - [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [7726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [7738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [7742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [7744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [7748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [7750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 50), - [7752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), SHIFT(2299), - [7755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 14), - [7757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 1, 0, 20), - [7759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [7763] = {.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), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [7769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [7775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3678), - [7778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), - [7780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [7790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), - [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), - [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [7812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [7818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), - [7822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 35), - [7824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(75), - [7827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(4396), - [7830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 63), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [7836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [7846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 157), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [7858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [7862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [7866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [7878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [7896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [7900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 81), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [7908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), - [7910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), - [7912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), - [7914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), - [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), - [7920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 43), - [7922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [7925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [7934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), - [7936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), - [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), - [7940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), - [7942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5510), - [7945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3661), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), - [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), - [7956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3685), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [7965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [7971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), - [7975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), - [7977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), - [7979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [7991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(80), - [7994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 63), - [7996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(4898), - [7999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [8001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [8007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), - [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [8017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(4162), - [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [8026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(4489), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [8035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 111), - [8037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 111), - [8039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 116), - [8041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 116), - [8043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 156), - [8045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 156), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [8071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [8087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [8093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [8095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [8097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [8099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [8105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), - [8111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), REDUCE(sym_list_body, 1, 0, 0), - [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [8116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), - [8122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [8126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 182), - [8128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 182), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [8136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 183), - [8138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 183), - [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [8142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 132), - [8144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 45), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [8150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), - [8152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 210), - [8154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 107), - [8156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 181), - [8158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 107), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [8162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), SHIFT_REPEAT(204), - [8165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [8167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [8169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 27), - [8171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 27), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [8177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), - [8179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 80), - [8181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 82), - [8183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 83), - [8185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 84), - [8187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 92), - [8189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), - [8191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [8195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 94), - [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 9), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [8201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [8205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4863), - [8208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 9), - [8210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 9), - [8212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 2, 0, 86), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [8216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 2, 0, 86), - [8218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [8220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [8222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 13), - [8224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [8226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [8228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 13), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [8232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [8234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 170), - [8236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 170), - [8238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 133), - [8240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 134), - [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [8244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 137), - [8246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [8248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [8250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 138), - [8252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 139), - [8254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 140), - [8256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 144), - [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), - [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), - [8266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), - [8268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [8270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 49), - [8272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 49), - [8274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [8276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4843), - [8279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [8281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [8283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 166), - [8285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 167), - [8287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 103), - [8289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 168), - [8291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 104), - [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [8297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), - [8299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 177), - [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [8303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [8305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [8309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), + [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [7275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), + [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4912), + [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), + [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), + [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), + [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), + [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [7297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), + [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), + [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), + [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [7327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [7361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [7381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 6), + [7383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [7393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [7413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [7419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [7423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [7425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [7427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [7431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [7477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [7483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [7487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 181), + [7489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), + [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [7504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [7510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [7544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), + [7552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [7556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [7558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [7564] = {.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), + [7568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [7570] = {.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), + [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [7580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [7582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), + [7584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), + [7586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), + [7588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 181), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [7592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [7594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [7600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [7608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [7610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [7616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [7620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [7624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [7626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [7630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [7632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [7636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [7640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [7644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [7650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [7658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3675), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [7667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [7681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [7683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [7689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [7692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [7704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [7708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [7722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 14), + [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [7728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [7732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [7736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [7748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [7756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [7760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 43), + [7762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [7768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3740), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [7787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [7789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 35), + [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 81), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [7799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), + [7801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [7807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [7809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [7813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [7815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), + [7817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [7831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(73), + [7834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(4481), + [7837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 63), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [7841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [7847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [7855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [7859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [7865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 50), + [7867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), SHIFT(2298), + [7870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), + [7872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5511), + [7875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [7881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [7883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), + [7885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3682), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [7896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 157), + [7898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [7902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), + [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [7910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [7920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [7928] = {.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), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [7934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 1, 0, 20), + [7936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [7939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [7942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), + [7944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [7948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), + [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), + [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), + [7960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3698), + [7963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), + [7965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), + [7967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [7969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [7975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [7981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 156), + [7983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 156), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [7987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 116), + [7989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 116), + [7991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 111), + [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 111), + [7995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [7997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [8009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), REDUCE(sym_list_body, 1, 0, 0), + [8012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), + [8014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), + [8016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 182), + [8018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 182), + [8020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 183), + [8022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 183), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [8042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [8050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [8056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [8068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(65), + [8071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 63), + [8073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(4882), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [8098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [8110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [8116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [8120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), + [8122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [8124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [8128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(4384), + [8131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), + [8133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [8137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [8139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [8143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(3990), + [8146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 200), + [8148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 199), + [8150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 40), + [8152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 39), + [8154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 38), + [8156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), + [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [8162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 33), + [8164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 13), + [8166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 13), + [8168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 9), + [8170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 9), + [8172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 9), + [8174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [8176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [8178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), + [8180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [8182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 133), + [8184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 41), + [8186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3668), + [8189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 44), + [8191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 45), + [8193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 2, 0, 0), + [8195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 2, 0, 0), + [8197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), SHIFT_REPEAT(204), + [8200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 80), + [8202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 82), + [8204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 83), + [8206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 84), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [8220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 16), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [8224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [8226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [8232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), + [8234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 92), + [8236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), + [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [8242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 94), + [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [8246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), + [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [8252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4851), + [8255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [8257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [8259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), + [8261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [8263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [8265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 27), + [8267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 27), + [8269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 2, 0, 86), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [8273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 2, 0, 86), + [8275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [8287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [8291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [8295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [8299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 132), + [8301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 134), + [8303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [8305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [8307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 137), + [8309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 138), [8311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 47), - [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [8315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [8317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [8319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [8321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [8323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), - [8325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 6, 0, 198), - [8327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 199), - [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [8333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 200), - [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [8339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 201), - [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [8345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [8347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 180), - [8349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 16), - [8351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 181), - [8353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [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_stmt_const, 3, 0, 33), - [8369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 106), - [8371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 106), - [8373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3702), - [8376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [8378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 106), - [8380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 106), - [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), - [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [8388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 51), - [8390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [8392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 50), - [8394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 51), - [8396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), - [8398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 38), - [8400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 39), - [8402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 40), - [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [8406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(5162), - [8409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1435), - [8412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), - [8414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 41), - [8416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), - [8418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), - [8420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 4, 0, 147), - [8422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [8424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4850), - [8427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [8429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 98), - [8431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 99), - [8433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 44), - [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), - [8443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [8445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(5003), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [8450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 107), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), - [8454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 20), - [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 61), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [8464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 98), - [8466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 105), SHIFT_REPEAT(397), - [8469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), - [8471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 20), - [8473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 227), - [8475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 126), - [8477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 126), SHIFT_REPEAT(4706), - [8480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 209), - [8482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 83), - [8484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 1, 0, 169), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [8488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [8491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [8493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [8496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 84), - [8498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 50), REDUCE(sym_record_body, 2, 0, 50), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [8505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 107), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [8511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 103), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [8515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 33), - [8517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 1, 0, 91), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [8521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 1, 0, 93), - [8523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 50), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [8527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 86), - [8529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 175), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [8545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 3, 0, 101), - [8547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 178), - [8549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 87), - [8551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 87), - [8553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 2, 0, 2), - [8555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 104), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [8559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 180), - [8561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 181), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [8565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), - [8567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 210), - [8569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 181), - [8571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 147), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [8313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 139), + [8315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [8317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 107), + [8319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 181), + [8321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 107), + [8323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 210), + [8325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [8327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 140), + [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [8331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 166), + [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), + [8335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 167), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [8341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [8343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4885), + [8346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), + [8352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 168), + [8354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 9, 0, 262), + [8356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4858), + [8359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [8363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 98), + [8365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 99), + [8367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 144), + [8369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 245), + [8371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 177), + [8373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [8375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [8377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 49), + [8379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 49), + [8381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 106), + [8383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 106), + [8385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 244), + [8387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [8389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 4, 0, 147), + [8391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 226), + [8393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(5497), + [8396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1438), + [8399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), + [8401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 225), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [8407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 201), + [8409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 51), + [8411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 50), + [8413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [8415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 51), + [8417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [8419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 181), + [8421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 180), + [8423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 104), + [8425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [8427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [8429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 6, 0, 198), + [8431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 103), + [8433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 106), + [8435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 106), + [8437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), + [8439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [8441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 170), + [8443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 170), + [8445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [8449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 50), + [8451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 9), + [8453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), + [8455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [8457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 20), REDUCE(sym_record_body, 1, 0, 20), + [8460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 178), + [8462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 9), + [8464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 175), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [8468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 175), + [8470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 86), + [8472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 1, 0, 91), + [8474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 9), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [8480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 1, 0, 169), + [8482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 86), + [8484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 205), + [8486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 204), + [8488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 209), + [8490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 3, 0, 0), + [8492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 2, 0, 2), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [8498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 210), + [8500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 84), + [8502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 83), + [8504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 180), + [8506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 147), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [8516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 141), + [8518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 181), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [8528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [8536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 142), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [8540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 50), + [8542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), + [8544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 1, 0, 91), + [8546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 1, 0, 49), + [8548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 137), + [8550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 181), + [8552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 126), + [8554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 126), SHIFT_REPEAT(4884), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [8559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 107), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [8575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 132), + [8577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 33), [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [8581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 204), - [8583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 205), - [8585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), - [8587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), - [8589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 1, 0, 49), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [8595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 86), - [8597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 175), - [8599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 50), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [8605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 209), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [8613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [8617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 20), REDUCE(sym_record_body, 1, 0, 20), - [8620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 9), - [8622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [8624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 9), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [8628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 132), - [8630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 137), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [8634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 9), - [8636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 1, 0, 91), - [8638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 1, 0, 0), - [8640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [8642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [8654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 3, 0, 0), - [8656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 141), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [8660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 142), - [8662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 27), - [8664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 27), - [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [8668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [8670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [8676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [8680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [8682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 3, 0, 72), - [8684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 3, 0, 72), - [8686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [8691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), - [8693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), - [8695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [8697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 203), - [8699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 203), - [8701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), - [8703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), - [8705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4969), - [8708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [8714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), - [8716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), - [8718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [8720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [8722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 19), - [8724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 19), - [8726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [8728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 3, 0, 136), - [8730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 3, 0, 136), - [8732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 6), - [8734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), - [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), - [8738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 124), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [8742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [8744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4975), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [8749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 182), - [8751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 182), - [8753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 183), - [8755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 183), - [8757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), - [8759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 19), - [8761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 19), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [8765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), - [8767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), - [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), - [8771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(5036), - [8774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [8776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [8778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), - [8788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [8790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [8796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [8798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [8800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 176), - [8802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 176), - [8804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [8806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [8808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [8810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [8812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [8814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [8816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [8581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 107), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [8585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 105), SHIFT_REPEAT(406), + [8588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 104), + [8590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 103), + [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [8594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 3, 0, 101), + [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [8600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 227), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [8604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(4975), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [8609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 209), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [8613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 27), + [8615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 27), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [8619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [8621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [8623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 61), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [8627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), + [8629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), + [8631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 20), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [8641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [8644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [8647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), + [8649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 50), REDUCE(sym_record_body, 2, 0, 50), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [8654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 20), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [8658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 98), + [8660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 1, 0, 0), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [8668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [8672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 87), + [8674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 87), + [8676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [8678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [8680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 1, 0, 93), + [8682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 3, 0, 136), + [8684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 3, 0, 136), + [8686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [8688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [8690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [8692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [8696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), + [8698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), + [8700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), + [8702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 19), + [8704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 19), + [8706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 19), + [8708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 19), + [8710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), + [8712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), + [8714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 6), + [8716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [8720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [8726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 182), + [8728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 182), + [8730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 176), + [8732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 176), + [8734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), + [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), + [8738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 3, 0, 72), + [8740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 3, 0, 72), + [8742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 183), + [8744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 183), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [8750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [8752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [8754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(5061), + [8757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 124), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [8761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [8767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(5033), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [8772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [8774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [8776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [8778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [8780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(5000), + [8783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [8785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [8787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [8789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [8792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [8794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), + [8796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), + [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), + [8804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [8806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 203), + [8808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 203), + [8810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), + [8812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), + [8814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), + [8816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [8818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [8822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [8824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [8826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [8838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [8960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [9008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [9028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [9054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [9060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [9076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [9086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [9098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 86), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), - [9104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [9112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [9116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [9126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [9134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [9146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 91), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [9154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [9172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4796), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [9182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), - [9184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [9194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [9224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [9230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [9250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [9258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), - [9260] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [9274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 86), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [9280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [9288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), - [9290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [9296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [9300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [8884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [8888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [8902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [8958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [8960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [8972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [8986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [9000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [9040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [9088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [9100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [9116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [9134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [9148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [9150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), + [9152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [9156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [9166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [9174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [9186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 91), + [9188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [9190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [9210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [9274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [9280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [9318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), - [9426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), - [9428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [9478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [9494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [9514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [9522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [9322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [9332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), + [9448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [9452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [9454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 86), + [9456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [9478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [9482] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [9518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 86), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [9528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [9530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -266551,7 +266526,7 @@ void tree_sitter_nu_external_scanner_deserialize(void *, const char *, unsigned) TS_PUBLIC const TSLanguage *tree_sitter_nu(void) { static const TSLanguage language = { - .abi_version = LANGUAGE_VERSION, + .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, @@ -266559,7 +266534,6 @@ TS_PUBLIC const TSLanguage *tree_sitter_nu(void) { .state_count = STATE_COUNT, .large_state_count = LARGE_STATE_COUNT, .production_id_count = PRODUCTION_ID_COUNT, - .supertype_count = SUPERTYPE_COUNT, .field_count = FIELD_COUNT, .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, .parse_table = &ts_parse_table[0][0], @@ -266574,7 +266548,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_nu(void) { .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, .alias_sequences = &ts_alias_sequences[0][0], - .lex_modes = (const void*)ts_lex_modes, + .lex_modes = ts_lex_modes, .lex_fn = ts_lex, .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_identifier, @@ -266588,13 +266562,6 @@ TS_PUBLIC const TSLanguage *tree_sitter_nu(void) { tree_sitter_nu_external_scanner_deserialize, }, .primary_state_ids = ts_primary_state_ids, - .name = "nu", - .max_reserved_word_set_size = 0, - .metadata = { - .major_version = 0, - .minor_version = 0, - .patch_version = 1, - }, }; return &language; } diff --git a/src/tree_sitter/alloc.h b/src/tree_sitter/alloc.h index 1abdd120..1f4466d7 100644 --- a/src/tree_sitter/alloc.h +++ b/src/tree_sitter/alloc.h @@ -12,10 +12,10 @@ extern "C" { // Allow clients to override allocation functions #ifdef TREE_SITTER_REUSE_ALLOCATOR -extern void *(*ts_current_malloc)(size_t size); -extern void *(*ts_current_calloc)(size_t count, size_t size); -extern void *(*ts_current_realloc)(void *ptr, size_t size); -extern void (*ts_current_free)(void *ptr); +extern void *(*ts_current_malloc)(size_t); +extern void *(*ts_current_calloc)(size_t, size_t); +extern void *(*ts_current_realloc)(void *, size_t); +extern void (*ts_current_free)(void *); #ifndef ts_malloc #define ts_malloc ts_current_malloc diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h index 56fc8cd4..15a3b233 100644 --- a/src/tree_sitter/array.h +++ b/src/tree_sitter/array.h @@ -14,7 +14,6 @@ extern "C" { #include #ifdef _MSC_VER -#pragma warning(push) #pragma warning(disable : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -52,96 +51,67 @@ extern "C" { /// Reserve `new_capacity` elements of space in the array. If `new_capacity` is /// less than the array's current capacity, this function has no effect. -#define array_reserve(self, new_capacity) \ - ((self)->contents = _array__reserve( \ - (void *)(self)->contents, &(self)->capacity, \ - array_elem_size(self), new_capacity) \ - ) +#define array_reserve(self, new_capacity) \ + _array__reserve((Array *)(self), array_elem_size(self), new_capacity) /// Free any memory allocated for this array. Note that this does not free any /// memory allocated for the array's contents. -#define array_delete(self) \ - do { \ - if ((self)->contents) ts_free((self)->contents); \ - (self)->contents = NULL; \ - (self)->size = 0; \ - (self)->capacity = 0; \ - } while (0) +#define array_delete(self) _array__delete((Array *)(self)) /// Push a new `element` onto the end of the array. -#define array_push(self, element) \ - do { \ - (self)->contents = _array__grow( \ - (void *)(self)->contents, (self)->size, &(self)->capacity, \ - 1, array_elem_size(self) \ - ); \ - (self)->contents[(self)->size++] = (element); \ - } while(0) +#define array_push(self, element) \ + (_array__grow((Array *)(self), 1, array_elem_size(self)), \ + (self)->contents[(self)->size++] = (element)) /// Increase the array's size by `count` elements. /// New elements are zero-initialized. -#define array_grow_by(self, count) \ - do { \ - if ((count) == 0) break; \ - (self)->contents = _array__grow( \ - (self)->contents, (self)->size, &(self)->capacity, \ - count, array_elem_size(self) \ - ); \ +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ - (self)->size += (count); \ + (self)->size += (count); \ } while (0) /// Append all elements from one array to the end of another. -#define array_push_all(self, other) \ +#define array_push_all(self, other) \ array_extend((self), (other)->size, (other)->contents) /// Append `count` elements to the end of the array, reading their values from the /// `contents` pointer. -#define array_extend(self, count, other_contents) \ - (self)->contents = _array__splice( \ - (void*)(self)->contents, &(self)->size, &(self)->capacity, \ - array_elem_size(self), (self)->size, 0, count, other_contents \ +#define array_extend(self, count, contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), (self)->size, \ + 0, count, contents \ ) /// Remove `old_count` elements from the array starting at the given `index`. At /// the same index, insert `new_count` new elements, reading their values from the /// `new_contents` pointer. -#define array_splice(self, _index, old_count, new_count, new_contents) \ - (self)->contents = _array__splice( \ - (void *)(self)->contents, &(self)->size, &(self)->capacity, \ - array_elem_size(self), _index, old_count, new_count, new_contents \ +#define array_splice(self, _index, old_count, new_count, new_contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), _index, \ + old_count, new_count, new_contents \ ) /// Insert one `element` into the array at the given `index`. -#define array_insert(self, _index, element) \ - (self)->contents = _array__splice( \ - (void *)(self)->contents, &(self)->size, &(self)->capacity, \ - array_elem_size(self), _index, 0, 1, &(element) \ - ) +#define array_insert(self, _index, element) \ + _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) /// Remove one element from the array at the given `index`. #define array_erase(self, _index) \ - _array__erase((void *)(self)->contents, &(self)->size, array_elem_size(self), _index) + _array__erase((Array *)(self), array_elem_size(self), _index) /// Pop the last element off the array, returning the element by value. #define array_pop(self) ((self)->contents[--(self)->size]) /// Assign the contents of one array to another, reallocating if necessary. -#define array_assign(self, other) \ - (self)->contents = _array__assign( \ - (void *)(self)->contents, &(self)->size, &(self)->capacity, \ - (const void *)(other)->contents, (other)->size, array_elem_size(self) \ - ) +#define array_assign(self, other) \ + _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) /// Swap one array with another -#define array_swap(self, other) \ - do { \ - void *_array_swap_tmp = (void *)(self)->contents; \ - (self)->contents = (other)->contents; \ - (other)->contents = _array_swap_tmp; \ - _array__swap(&(self)->size, &(self)->capacity, \ - &(other)->size, &(other)->capacity); \ - } while (0) +#define array_swap(self, other) \ + _array__swap((Array *)(self), (Array *)(other)) /// Get the size of the array contents #define array_elem_size(self) (sizeof *(self)->contents) @@ -186,90 +156,82 @@ extern "C" { // Private -// Pointers to individual `Array` fields (rather than the entire `Array` itself) -// are passed to the various `_array__*` functions below to address strict aliasing -// violations that arises when the _entire_ `Array` struct is passed as `Array(void)*`. -// -// The `Array` type itself was not altered as a solution in order to avoid breakage -// with existing consumers (in particular, parsers with external scanners). +typedef Array(void) Array; + +/// This is not what you're looking for, see `array_delete`. +static inline void _array__delete(Array *self) { + if (self->contents) { + ts_free(self->contents); + self->contents = NULL; + self->size = 0; + self->capacity = 0; + } +} /// This is not what you're looking for, see `array_erase`. -static inline void _array__erase(void* self_contents, uint32_t *size, - size_t element_size, uint32_t index) { - assert(index < *size); - char *contents = (char *)self_contents; +static inline void _array__erase(Array *self, size_t element_size, + uint32_t index) { + assert(index < self->size); + char *contents = (char *)self->contents; memmove(contents + index * element_size, contents + (index + 1) * element_size, - (*size - index - 1) * element_size); - (*size)--; + (self->size - index - 1) * element_size); + self->size--; } /// This is not what you're looking for, see `array_reserve`. -static inline void *_array__reserve(void *contents, uint32_t *capacity, - size_t element_size, uint32_t new_capacity) { - void *new_contents = contents; - if (new_capacity > *capacity) { - if (contents) { - new_contents = ts_realloc(contents, new_capacity * element_size); +static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { + if (new_capacity > self->capacity) { + if (self->contents) { + self->contents = ts_realloc(self->contents, new_capacity * element_size); } else { - new_contents = ts_malloc(new_capacity * element_size); + self->contents = ts_malloc(new_capacity * element_size); } - *capacity = new_capacity; + self->capacity = new_capacity; } - return new_contents; } /// This is not what you're looking for, see `array_assign`. -static inline void *_array__assign(void* self_contents, uint32_t *self_size, uint32_t *self_capacity, - const void *other_contents, uint32_t other_size, size_t element_size) { - void *new_contents = _array__reserve(self_contents, self_capacity, element_size, other_size); - *self_size = other_size; - memcpy(new_contents, other_contents, *self_size * element_size); - return new_contents; +static inline void _array__assign(Array *self, const Array *other, size_t element_size) { + _array__reserve(self, element_size, other->size); + self->size = other->size; + memcpy(self->contents, other->contents, self->size * element_size); } /// This is not what you're looking for, see `array_swap`. -static inline void _array__swap(uint32_t *self_size, uint32_t *self_capacity, - uint32_t *other_size, uint32_t *other_capacity) { - uint32_t tmp_size = *self_size; - uint32_t tmp_capacity = *self_capacity; - *self_size = *other_size; - *self_capacity = *other_capacity; - *other_size = tmp_size; - *other_capacity = tmp_capacity; +static inline void _array__swap(Array *self, Array *other) { + Array swap = *other; + *other = *self; + *self = swap; } /// This is not what you're looking for, see `array_push` or `array_grow_by`. -static inline void *_array__grow(void *contents, uint32_t size, uint32_t *capacity, - uint32_t count, size_t element_size) { - void *new_contents = contents; - uint32_t new_size = size + count; - if (new_size > *capacity) { - uint32_t new_capacity = *capacity * 2; +static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { + uint32_t new_size = self->size + count; + if (new_size > self->capacity) { + uint32_t new_capacity = self->capacity * 2; if (new_capacity < 8) new_capacity = 8; if (new_capacity < new_size) new_capacity = new_size; - new_contents = _array__reserve(contents, capacity, element_size, new_capacity); + _array__reserve(self, element_size, new_capacity); } - return new_contents; } /// This is not what you're looking for, see `array_splice`. -static inline void *_array__splice(void *self_contents, uint32_t *size, uint32_t *capacity, - size_t element_size, +static inline void _array__splice(Array *self, size_t element_size, uint32_t index, uint32_t old_count, uint32_t new_count, const void *elements) { - uint32_t new_size = *size + new_count - old_count; + uint32_t new_size = self->size + new_count - old_count; uint32_t old_end = index + old_count; uint32_t new_end = index + new_count; - assert(old_end <= *size); + assert(old_end <= self->size); - void *new_contents = _array__reserve(self_contents, capacity, element_size, new_size); + _array__reserve(self, element_size, new_size); - char *contents = (char *)new_contents; - if (*size > old_end) { + char *contents = (char *)self->contents; + if (self->size > old_end) { memmove( contents + new_end * element_size, contents + old_end * element_size, - (*size - old_end) * element_size + (self->size - old_end) * element_size ); } if (new_count > 0) { @@ -287,9 +249,7 @@ static inline void *_array__splice(void *self_contents, uint32_t *size, uint32_t ); } } - *size += new_count - old_count; - - return new_contents; + self->size += new_count - old_count; } /// A binary search routine, based on Rust's `std::slice::binary_search_by`. @@ -318,7 +278,7 @@ static inline void *_array__splice(void *self_contents, uint32_t *size, uint32_t #define _compare_int(a, b) ((int)*(a) - (int)(b)) #ifdef _MSC_VER -#pragma warning(pop) +#pragma warning(default : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic pop #endif diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 858107de..799f599b 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -18,11 +18,6 @@ typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; -typedef struct TSLanguageMetadata { - uint8_t major_version; - uint8_t minor_version; - uint8_t patch_version; -} TSLanguageMetadata; #endif typedef struct { @@ -31,11 +26,10 @@ typedef struct { bool inherited; } TSFieldMapEntry; -// Used to index the field and supertype maps. typedef struct { uint16_t index; uint16_t length; -} TSMapSlice; +} TSFieldMapSlice; typedef struct { bool visible; @@ -85,12 +79,6 @@ typedef struct { uint16_t external_lex_state; } TSLexMode; -typedef struct { - uint16_t lex_state; - uint16_t external_lex_state; - uint16_t reserved_word_set_id; -} TSLexerMode; - typedef union { TSParseAction action; struct { @@ -105,7 +93,7 @@ typedef struct { } TSCharacterRange; struct TSLanguage { - uint32_t abi_version; + uint32_t version; uint32_t symbol_count; uint32_t alias_count; uint32_t token_count; @@ -121,13 +109,13 @@ struct TSLanguage { const TSParseActionEntry *parse_actions; const char * const *symbol_names; const char * const *field_names; - const TSMapSlice *field_map_slices; + const TSFieldMapSlice *field_map_slices; const TSFieldMapEntry *field_map_entries; const TSSymbolMetadata *symbol_metadata; const TSSymbol *public_symbol_map; const uint16_t *alias_map; const TSSymbol *alias_sequences; - const TSLexerMode *lex_modes; + const TSLexMode *lex_modes; bool (*lex_fn)(TSLexer *, TSStateId); bool (*keyword_lex_fn)(TSLexer *, TSStateId); TSSymbol keyword_capture_token; @@ -141,23 +129,15 @@ struct TSLanguage { void (*deserialize)(void *, const char *, unsigned); } external_scanner; const TSStateId *primary_state_ids; - const char *name; - const TSSymbol *reserved_words; - uint16_t max_reserved_word_set_size; - uint32_t supertype_count; - const TSSymbol *supertype_symbols; - const TSMapSlice *supertype_map_slices; - const TSSymbol *supertype_map_entries; - TSLanguageMetadata metadata; }; -static inline bool set_contains(const TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { +static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { uint32_t index = 0; uint32_t size = len - index; while (size > 1) { uint32_t half_size = size / 2; uint32_t mid_index = index + half_size; - const TSCharacterRange *range = &ranges[mid_index]; + TSCharacterRange *range = &ranges[mid_index]; if (lookahead >= range->start && lookahead <= range->end) { return true; } else if (lookahead > range->end) { @@ -165,7 +145,7 @@ static inline bool set_contains(const TSCharacterRange *ranges, uint32_t len, in } size -= half_size; } - const TSCharacterRange *range = &ranges[index]; + TSCharacterRange *range = &ranges[index]; return (lookahead >= range->start && lookahead <= range->end); } diff --git a/test/corpus/expr/values.nu b/test/corpus/expr/values.nu index dec4eaaa..4a99a814 100644 --- a/test/corpus/expr/values.nu +++ b/test/corpus/expr/values.nu @@ -290,3 +290,20 @@ values-009-dummy-parenthesized (pipeline (pipe_element (expr_parenthesized)))) + +===== +values-010-interpolated-comment-same-line +===== + +$"foo (## this is a comment) bar" + +----- + +(nu_script + (pipeline + (pipe_element + (val_interpolated + (escaped_interpolated_content) + (expr_interpolated + (comment)) + (escaped_interpolated_content))))) From d98f6959d0d061d6d0ab5d9cd428943f3e266f5a Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Wed, 1 Jul 2026 09:01:19 -0500 Subject: [PATCH 2/2] allow old node --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ea19ae3d..358908fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,6 +25,8 @@ jobs: test: name: Test parser runs-on: ${{matrix.os}} + env: + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true strategy: fail-fast: false matrix: